commit 918564fb7111e63f3950ca909c6b2291c9e53da4 Author: liuchen864 <23082234@qq.com> Date: Wed Sep 27 13:38:38 2023 +0800 fix: 增加大屏 diff --git a/.commitlintrc.js b/.commitlintrc.js new file mode 100644 index 0000000..21ca9ba --- /dev/null +++ b/.commitlintrc.js @@ -0,0 +1,3 @@ +module.exports = { + extends: ["@commitlint/config-conventional"] +}; \ No newline at end of file diff --git a/.env b/.env new file mode 100644 index 0000000..046190f --- /dev/null +++ b/.env @@ -0,0 +1,15 @@ +# port +VITE_DEV_PORT = '8080' + +# development path +# VITE_DEV_PATH = 'https://demo.mtruning.club' +VITE_DEV_PATH = 'http://locahost:12080' + +# production path +VITE_PRO_PATH = 'https://demo.mtruning.club' + +# 租户开关 +VITE_APP_TENANT_ENABLE=true + +# 验证码的开关 +VITE_APP_CAPTCHA_ENABLE=true diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..0e3e0f8 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,11 @@ +node_modules/ +public/ +es/ +lib/ +dist/ +package.json +src/assets/ +plop-templates/ +handlebars/ +website/ +build/ diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..25f7f0d --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,30 @@ +module.exports = { + root: true, + parser: 'vue-eslint-parser', + globals: { + postMessage: true + }, + parserOptions: { + parser: '@typescript-eslint/parser', + sourceType: 'module', + ecmaFeatures: { + jsx: true, + tsx: true + } + }, + env: { + node: true, + // The Follow config only works with eslint-plugin-vue v8.0.0+ + 'vue/setup-compiler-macros': true + }, + extends: ['plugin:vue/vue3-essential', 'eslint:recommended'], + rules: { + 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-unused-vars': 'off', + 'vue/no-unused-vars': 'off', + 'vue/multi-word-component-names': 'off', + 'vue/valid-template-root': 'off', + 'vue/no-mutating-props': 'off' + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60a4aff --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +node_modules +.DS_Store +dist +dist-ssr +*.local +.vscode diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100644 index 0000000..42cdacd --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,4 @@ +#!/usr/bin/env sh +. "$(dirname -- "$0")/_/husky.sh" + +npx --no-install commitlint -e diff --git a/.workflow/branch-pipeline.yml b/.workflow/branch-pipeline.yml new file mode 100644 index 0000000..1128d8a --- /dev/null +++ b/.workflow/branch-pipeline.yml @@ -0,0 +1,51 @@ +version: '1.0' +name: branch-pipeline +displayName: BranchPipeline +stages: + - stage: + name: compile + displayName: 编译 + steps: + - step: build@nodejs + name: build_nodejs + displayName: Nodejs 构建 + # 支持8.16.2、10.17.0、12.16.1、14.16.0、15.12.0五个版本 + nodeVersion: 14.16.0 + # 构建命令:安装依赖 -> 清除上次打包产物残留 -> 执行构建 【请根据项目实际产出进行填写】 + commands: + - npm install && rm -rf ./dist && npm run build + # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 + artifacts: + # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 + - name: BUILD_ARTIFACT + # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径 + path: + - ./dist + - step: publish@general_artifacts + name: publish_general_artifacts + displayName: 上传制品 + # 上游构建任务定义的产物名,默认BUILD_ARTIFACT + dependArtifact: BUILD_ARTIFACT + # 上传到制品库时的制品命名,默认output + artifactName: output + dependsOn: build_nodejs + - stage: + name: release + displayName: 发布 + steps: + - step: publish@release_artifacts + name: publish_release_artifacts + displayName: '发布' + # 上游上传制品任务的产出 + dependArtifact: output + # 发布制品版本号 + version: '1.0.0.0' + # 是否开启版本号自增,默认开启 + autoIncrement: true +triggers: + push: + branches: + exclude: + - master + include: + - .* diff --git a/.workflow/master-pipeline.yml b/.workflow/master-pipeline.yml new file mode 100644 index 0000000..8faf2bc --- /dev/null +++ b/.workflow/master-pipeline.yml @@ -0,0 +1,49 @@ +version: '1.0' +name: master-pipeline +displayName: MasterPipeline +stages: + - stage: + name: compile + displayName: 编译 + steps: + - step: build@nodejs + name: build_nodejs + displayName: Nodejs 构建 + # 支持8.16.2、10.17.0、12.16.1、14.16.0、15.12.0五个版本 + nodeVersion: 14.16.0 + # 构建命令:安装依赖 -> 清除上次打包产物残留 -> 执行构建 【请根据项目实际产出进行填写】 + commands: + - npm install && rm -rf ./dist && npm run build + # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 + artifacts: + # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 + - name: BUILD_ARTIFACT + # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径 + path: + - ./dist + - step: publish@general_artifacts + name: publish_general_artifacts + displayName: 上传制品 + # 上游构建任务定义的产物名,默认BUILD_ARTIFACT + dependArtifact: BUILD_ARTIFACT + # 上传到制品库时的制品命名,默认output + artifactName: output + dependsOn: build_nodejs + - stage: + name: release + displayName: 发布 + steps: + - step: publish@release_artifacts + name: publish_release_artifacts + displayName: '发布' + # 上游上传制品任务的产出 + dependArtifact: output + # 发布制品版本号 + version: '1.0.0.0' + # 是否开启版本号自增,默认开启 + autoIncrement: true +triggers: + push: + branches: + include: + - master diff --git a/.workflow/pr-pipeline.yml b/.workflow/pr-pipeline.yml new file mode 100644 index 0000000..1a05dd0 --- /dev/null +++ b/.workflow/pr-pipeline.yml @@ -0,0 +1,36 @@ +version: '1.0' +name: pr-pipeline +displayName: PRPipeline +stages: + - stage: + name: compile + displayName: 编译 + steps: + - step: build@nodejs + name: build_nodejs + displayName: Nodejs 构建 + # 支持8.16.2、10.17.0、12.16.1、14.16.0、15.12.0五个版本 + nodeVersion: 14.16.0 + # 构建命令:安装依赖 -> 清除上次打包产物残留 -> 执行构建 【请根据项目实际产出进行填写】 + commands: + - npm install && rm -rf ./dist && npm run build + # 非必填字段,开启后表示将构建产物暂存,但不会上传到制品库中,7天后自动清除 + artifacts: + # 构建产物名字,作为产物的唯一标识可向下传递,支持自定义,默认为BUILD_ARTIFACT。在下游可以通过${BUILD_ARTIFACT}方式引用来获取构建物地址 + - name: BUILD_ARTIFACT + # 构建产物获取路径,是指代码编译完毕之后构建物的所在路径 + path: + - ./dist + - step: publish@general_artifacts + name: publish_general_artifacts + displayName: 上传制品 + # 上游构建任务定义的产物名,默认BUILD_ARTIFACT + dependArtifact: BUILD_ARTIFACT + # 上传到制品库时的制品命名,默认output + artifactName: output + dependsOn: build_nodejs +triggers: + pr: + branches: + include: + - master diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a44f18f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021-present GoView + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..37f8901 --- /dev/null +++ b/Makefile @@ -0,0 +1,25 @@ +.PHONY: dist test +default: help +dev: + npm run dev + +dist: + npm run build + +view: + npm run preview + +lint: + npm run lint + +new: + npm run new + + + +help: + @echo " make dev [npm run dev] 开发模式" + @echo " make dist [npm run build] 编译模式" + @echo " make view [npm run preview] 预览打包文件" + @echo " make new [npm run lint] 通过自动化流程创建代码" + @echo " make lint [npm run new] 格式校验" \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..308a56a --- /dev/null +++ b/README.md @@ -0,0 +1,92 @@ +## 总览 + +

+ go-view +

+ +

开源、精美、便捷的「数据可视化」低代码开发平台

+ +由 [闻荫](https://doc.iocoder.cn/) 与 GoView 共同建设,基于 Vue3 搭建的低代码数据可视化开发平台,将图表或页面元素封装为基础组件,无需编写代码即可完成业务需求。 + +* 框架:基于 Vue3 框架编写,使用 hooks 写法抽离部分逻辑,使代码结构更加清晰 +* 类型:使用 TypeScript 进行类型约束,减少未知错误发生概率,可以大胆修改逻辑内容 +* 性能:多处性能优化,使用页面懒加载、组件动态注册、数据滚动加载等方式,提升页面渲染速度 +* 存储:拥有本地记忆,部分配置项采用 storage 存储本地,提升使用体验 +* 封装:项目进行了详细的工具类封装如:路由、存储、加/解密、文件处理、主题、NaiveUI 全局方法、组件等 +* 入选 NaiveUI 社区精选资源推荐:[查看 NaiveUI 推荐列表](https://www.naiveui.com/zh-CN/light/docs/community) + +## 项目地址 + +![preview](readme/preview.png) + +* 前端: +* Boot 后端: +* Cloud 后端: + +## 文档地址 + +* 演示环境: 「报表管理 - 大屏设计器」 +* 文档地址: + +## 技术栈 + +主要技术栈为: + +| 名称 | 版本 | 名称 | 版本 | +|-------------------|-------|-------------|--------| +| Vue | 3.2.x | TypeScript4 | 4.6.x | +| Vite | 2.9.x | NaiveUI | 2.27.x | +| ECharts | 5.3.x | Pinia | 2.0.x | +| 详见 `package.json` | ?? | ?? | ?? | + +开发环境: + +| 名称 | 版本 | 名称 | 版本 | +|------|---------|---------|-------| +| node | 16.14.x | npm | 8.5.x | +| pnpm | 7.1.x | windows | 11 | + +已完成图表: + +| 分类 | 名称 | 名称 | 名称 | 名称 | +|-----|--------------|----------|---------|----------------| +| 图表 | 柱状图 | 横向柱状图 | 折线图 | 单/多 折线面积图(渐变色) | +| \* | 饼图 | 环形图 | 水球图 | 雷达图 | +| \* | NaiveUI 多种进度 | 散点图 | 对数回归散点图 | 热力图 | +| \* | 漏斗图 | 中国地图 | 高德地图 | ?? | +| 信息 | 文字 | 渐变文字 | 词云 | 嵌套网页 | +| \* | 图片 | 视频 | ?? | ?? | +| 列表 | 滚动排名列表 | 滚动表格 | ?? | ?? | +| 小组件 | 边框-01~13 | 装饰-01~05 | 数字翻牌 | 通用时间 | +| \* | 数字计数 | 倒计时 | 时钟 | ?? | + +## 项目截图 + +#### 工作台 + + +![工作台](readme/go-view-canvas.png) + +#### 请求配置 + +![请求配置](readme/go-view-fetch.png) + +#### 数据过滤 + +![数据过滤](readme/go-view-filter.png) + +#### 高级事件编辑 + +![高级事件编辑](readme/go-view-event.png) + +#### 快捷主页 + +![快捷主页](readme/go-view-indexpage.png) + +#### 主题色 + +![主题色](readme/go-view-color.png) + +#### 亮白主题 + +![亮白主题](readme/go-view-theme.png) diff --git a/build/constant.ts b/build/constant.ts new file mode 100644 index 0000000..1d033f1 --- /dev/null +++ b/build/constant.ts @@ -0,0 +1,41 @@ +import path from 'path' +export const OUTPUT_DIR = 'dist' + +// monaco-editor 路径 +export const prefix = `monaco-editor/esm/vs` + +// chunk 警告大小 +export const chunkSizeWarningLimit = 2000 + +// 禁用 brotliSize 压缩大小报告 +export const brotliSize = false + +// 分包 +export const rollupOptions = { + output: { + chunkFileNames: 'static/js/[name]-[hash].js', + entryFileNames: 'static/js/[name]-[hash].js', + assetFileNames: (chunkInfo) => { + if(['.png', '.jpg', '.jpeg'].includes(path.extname(chunkInfo.name))) { + return `static/[ext]/[name].[ext]` + } + return `static/[ext]/[name]-[hash].[ext]` + }, + manualChunks: { + jsonWorker: [`${prefix}/language/json/json.worker`], + cssWorker: [`${prefix}/language/css/css.worker`], + htmlWorker: [`${prefix}/language/html/html.worker`], + tsWorker: [`${prefix}/language/typescript/ts.worker`], + editorWorker: [`${prefix}/editor/editor.worker`] + } + } +} + +// 去除开发代码 +export const terserOptions = { + compress: { + keep_infinity: true, + drop_console: true, + drop_debugger: true + } +} diff --git a/index.css b/index.css new file mode 100644 index 0000000..b93daf3 --- /dev/null +++ b/index.css @@ -0,0 +1,85 @@ +* { + margin: 0; +} +.first-loading-wrp { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + background-color: #17171a; +} +.first-loading-wrp > h1 { + font-size: 128px; +} +.first-loading-wrp .loading-wrp { + padding: 98px; + display: flex; + justify-content: center; + align-items: center; +} +.dot { + animation: antRotate 1.2s infinite linear; + transform: rotate(45deg); + position: relative; + display: inline-block; + font-size: 32px; + width: 32px; + height: 32px; + box-sizing: border-box; +} +.dot i { + width: 14px; + height: 14px; + position: absolute; + display: block; + background-color: #1890ff; + border-radius: 100%; + transform: scale(0.75); + transform-origin: 50% 50%; + opacity: 0.3; + animation: antSpinMove 1s infinite linear alternate; +} +.dot i:nth-child(1) { + top: 0; + left: 0; +} +.dot i:nth-child(2) { + top: 0; + right: 0; + -webkit-animation-delay: 0.4s; + animation-delay: 0.4s; +} +.dot i:nth-child(3) { + right: 0; + bottom: 0; + -webkit-animation-delay: 0.8s; + animation-delay: 0.8s; +} +.dot i:nth-child(4) { + bottom: 0; + left: 0; + -webkit-animation-delay: 1.2s; + animation-delay: 1.2s; +} +@keyframes antRotate { + to { + -webkit-transform: rotate(405deg); + transform: rotate(405deg); + } +} +@-webkit-keyframes antRotate { + to { + -webkit-transform: rotate(405deg); + transform: rotate(405deg); + } +} +@keyframes antSpinMove { + to { + opacity: 1; + } +} +@-webkit-keyframes antSpinMove { + to { + opacity: 1; + } +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..49904d9 --- /dev/null +++ b/index.html @@ -0,0 +1,29 @@ + + + + + + + + + + + + GoView + + + + +
+
+
+ +
+
+
+ + + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..d92969d --- /dev/null +++ b/package-lock.json @@ -0,0 +1,7078 @@ +{ + "name": "go-view", + "version": "2.1.6", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmmirror.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true + }, + "@amap/amap-jsapi-loader": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@amap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.1.tgz", + "integrity": "sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw==" + }, + "@amap/amap-jsapi-types": { + "version": "0.0.8", + "resolved": "https://registry.npmmirror.com/@amap/amap-jsapi-types/-/amap-jsapi-types-0.0.8.tgz", + "integrity": "sha512-q0FyZDIJcXjsMLGc3oS9rjfJsErOvt9rcp6AgzY4k14vo7bBhdq4eKwoSdVp/pYjR/rfaKBns5v10ycZOFwf/A==" + }, + "@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "dev": true, + "requires": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/compat-data": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.20.tgz", + "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==", + "dev": true + }, + "@babel/core": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/core/-/core-7.22.20.tgz", + "integrity": "sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.22.20", + "@babel/helpers": "^7.22.15", + "@babel/parser": "^7.22.16", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.20", + "@babel/types": "^7.22.19", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/generator/-/generator-7.22.15.tgz", + "integrity": "sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.15", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", + "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true + }, + "@babel/helper-function-name": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz", + "integrity": "sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==", + "dev": true, + "requires": { + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.15.tgz", + "integrity": "sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==", + "dev": true, + "requires": { + "@babel/types": "^7.22.15" + } + }, + "@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "requires": { + "@babel/types": "^7.22.15" + } + }, + "@babel/helper-module-transforms": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.20.tgz", + "integrity": "sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + } + }, + "@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", + "dev": true + }, + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true + }, + "@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "dev": true + }, + "@babel/helpers": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.22.15.tgz", + "integrity": "sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==", + "dev": true, + "requires": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.22.15", + "@babel/types": "^7.22.15" + } + }, + "@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.22.16", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.22.16.tgz", + "integrity": "sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==" + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmmirror.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.22.5" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.15.tgz", + "integrity": "sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" + } + }, + "@babel/runtime": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.22.15.tgz", + "integrity": "sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + } + }, + "@babel/traverse": { + "version": "7.22.20", + "resolved": "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.22.20.tgz", + "integrity": "sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.16", + "@babel/types": "^7.22.19", + "debug": "^4.1.0", + "globals": "^11.1.0" + } + }, + "@babel/types": { + "version": "7.22.19", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.22.19.tgz", + "integrity": "sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==", + "dev": true, + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.19", + "to-fast-properties": "^2.0.0" + } + }, + "@commitlint/cli": { + "version": "17.7.1", + "resolved": "https://registry.npmmirror.com/@commitlint/cli/-/cli-17.7.1.tgz", + "integrity": "sha512-BCm/AT06SNCQtvFv921iNhudOHuY16LswT0R3OeolVGLk8oP+Rk9TfQfgjH7QPMjhvp76bNqGFEcpKojxUNW1g==", + "dev": true, + "requires": { + "@commitlint/format": "^17.4.4", + "@commitlint/lint": "^17.7.0", + "@commitlint/load": "^17.7.1", + "@commitlint/read": "^17.5.1", + "@commitlint/types": "^17.4.4", + "execa": "^5.0.0", + "lodash.isfunction": "^3.0.9", + "resolve-from": "5.0.0", + "resolve-global": "1.0.0", + "yargs": "^17.0.0" + } + }, + "@commitlint/config-conventional": { + "version": "17.7.0", + "resolved": "https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-17.7.0.tgz", + "integrity": "sha512-iicqh2o6et+9kWaqsQiEYZzfLbtoWv9uZl8kbI8EGfnc0HeGafQBF7AJ0ylN9D/2kj6txltsdyQs8+2fTMwWEw==", + "dev": true, + "requires": { + "conventional-changelog-conventionalcommits": "^6.1.0" + } + }, + "@commitlint/config-validator": { + "version": "17.6.7", + "resolved": "https://registry.npmmirror.com/@commitlint/config-validator/-/config-validator-17.6.7.tgz", + "integrity": "sha512-vJSncmnzwMvpr3lIcm0I8YVVDJTzyjy7NZAeXbTXy+MPUdAr9pKyyg7Tx/ebOQ9kqzE6O9WT6jg2164br5UdsQ==", + "dev": true, + "requires": { + "@commitlint/types": "^17.4.4", + "ajv": "^8.11.0" + } + }, + "@commitlint/ensure": { + "version": "17.6.7", + "resolved": "https://registry.npmmirror.com/@commitlint/ensure/-/ensure-17.6.7.tgz", + "integrity": "sha512-mfDJOd1/O/eIb/h4qwXzUxkmskXDL9vNPnZ4AKYKiZALz4vHzwMxBSYtyL2mUIDeU9DRSpEUins8SeKtFkYHSw==", + "dev": true, + "requires": { + "@commitlint/types": "^17.4.4", + "lodash.camelcase": "^4.3.0", + "lodash.kebabcase": "^4.1.1", + "lodash.snakecase": "^4.1.1", + "lodash.startcase": "^4.4.0", + "lodash.upperfirst": "^4.3.1" + } + }, + "@commitlint/execute-rule": { + "version": "17.4.0", + "resolved": "https://registry.npmmirror.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz", + "integrity": "sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==", + "dev": true + }, + "@commitlint/format": { + "version": "17.4.4", + "resolved": "https://registry.npmmirror.com/@commitlint/format/-/format-17.4.4.tgz", + "integrity": "sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==", + "dev": true, + "requires": { + "@commitlint/types": "^17.4.4", + "chalk": "^4.1.0" + } + }, + "@commitlint/is-ignored": { + "version": "17.7.0", + "resolved": "https://registry.npmmirror.com/@commitlint/is-ignored/-/is-ignored-17.7.0.tgz", + "integrity": "sha512-043rA7m45tyEfW7Zv2vZHF++176MLHH9h70fnPoYlB1slKBeKl8BwNIlnPg4xBdRBVNPaCqvXxWswx2GR4c9Hw==", + "dev": true, + "requires": { + "@commitlint/types": "^17.4.4", + "semver": "7.5.4" + } + }, + "@commitlint/lint": { + "version": "17.7.0", + "resolved": "https://registry.npmmirror.com/@commitlint/lint/-/lint-17.7.0.tgz", + "integrity": "sha512-TCQihm7/uszA5z1Ux1vw+Nf3yHTgicus/+9HiUQk+kRSQawByxZNESeQoX9ujfVd3r4Sa+3fn0JQAguG4xvvbA==", + "dev": true, + "requires": { + "@commitlint/is-ignored": "^17.7.0", + "@commitlint/parse": "^17.7.0", + "@commitlint/rules": "^17.7.0", + "@commitlint/types": "^17.4.4" + } + }, + "@commitlint/load": { + "version": "17.7.1", + "resolved": "https://registry.npmmirror.com/@commitlint/load/-/load-17.7.1.tgz", + "integrity": "sha512-S/QSOjE1ztdogYj61p6n3UbkUvweR17FQ0zDbNtoTLc+Hz7vvfS7ehoTMQ27hPSjVBpp7SzEcOQu081RLjKHJQ==", + "dev": true, + "requires": { + "@commitlint/config-validator": "^17.6.7", + "@commitlint/execute-rule": "^17.4.0", + "@commitlint/resolve-extends": "^17.6.7", + "@commitlint/types": "^17.4.4", + "@types/node": "20.4.7", + "chalk": "^4.1.0", + "cosmiconfig": "^8.0.0", + "cosmiconfig-typescript-loader": "^4.0.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "lodash.uniq": "^4.5.0", + "resolve-from": "^5.0.0", + "ts-node": "^10.8.1", + "typescript": "^4.6.4 || ^5.0.0" + }, + "dependencies": { + "@types/node": { + "version": "20.4.7", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-20.4.7.tgz", + "integrity": "sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==", + "dev": true + }, + "typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "dev": true + } + } + }, + "@commitlint/message": { + "version": "17.4.2", + "resolved": "https://registry.npmmirror.com/@commitlint/message/-/message-17.4.2.tgz", + "integrity": "sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==", + "dev": true + }, + "@commitlint/parse": { + "version": "17.7.0", + "resolved": "https://registry.npmmirror.com/@commitlint/parse/-/parse-17.7.0.tgz", + "integrity": "sha512-dIvFNUMCUHqq5Abv80mIEjLVfw8QNuA4DS7OWip4pcK/3h5wggmjVnlwGCDvDChkw2TjK1K6O+tAEV78oxjxag==", + "dev": true, + "requires": { + "@commitlint/types": "^17.4.4", + "conventional-changelog-angular": "^6.0.0", + "conventional-commits-parser": "^4.0.0" + } + }, + "@commitlint/read": { + "version": "17.5.1", + "resolved": "https://registry.npmmirror.com/@commitlint/read/-/read-17.5.1.tgz", + "integrity": "sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==", + "dev": true, + "requires": { + "@commitlint/top-level": "^17.4.0", + "@commitlint/types": "^17.4.4", + "fs-extra": "^11.0.0", + "git-raw-commits": "^2.0.11", + "minimist": "^1.2.6" + } + }, + "@commitlint/resolve-extends": { + "version": "17.6.7", + "resolved": "https://registry.npmmirror.com/@commitlint/resolve-extends/-/resolve-extends-17.6.7.tgz", + "integrity": "sha512-PfeoAwLHtbOaC9bGn/FADN156CqkFz6ZKiVDMjuC2N5N0740Ke56rKU7Wxdwya8R8xzLK9vZzHgNbuGhaOVKIg==", + "dev": true, + "requires": { + "@commitlint/config-validator": "^17.6.7", + "@commitlint/types": "^17.4.4", + "import-fresh": "^3.0.0", + "lodash.mergewith": "^4.6.2", + "resolve-from": "^5.0.0", + "resolve-global": "^1.0.0" + } + }, + "@commitlint/rules": { + "version": "17.7.0", + "resolved": "https://registry.npmmirror.com/@commitlint/rules/-/rules-17.7.0.tgz", + "integrity": "sha512-J3qTh0+ilUE5folSaoK91ByOb8XeQjiGcdIdiB/8UT1/Rd1itKo0ju/eQVGyFzgTMYt8HrDJnGTmNWwcMR1rmA==", + "dev": true, + "requires": { + "@commitlint/ensure": "^17.6.7", + "@commitlint/message": "^17.4.2", + "@commitlint/to-lines": "^17.4.0", + "@commitlint/types": "^17.4.4", + "execa": "^5.0.0" + } + }, + "@commitlint/to-lines": { + "version": "17.4.0", + "resolved": "https://registry.npmmirror.com/@commitlint/to-lines/-/to-lines-17.4.0.tgz", + "integrity": "sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==", + "dev": true + }, + "@commitlint/top-level": { + "version": "17.4.0", + "resolved": "https://registry.npmmirror.com/@commitlint/top-level/-/top-level-17.4.0.tgz", + "integrity": "sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==", + "dev": true, + "requires": { + "find-up": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + } + } + }, + "@commitlint/types": { + "version": "17.4.4", + "resolved": "https://registry.npmmirror.com/@commitlint/types/-/types-17.4.4.tgz", + "integrity": "sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==", + "dev": true, + "requires": { + "chalk": "^4.1.0" + } + }, + "@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmmirror.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "requires": { + "@jridgewell/trace-mapping": "0.3.9" + } + }, + "@css-render/plugin-bem": { + "version": "0.15.12", + "resolved": "https://registry.npmmirror.com/@css-render/plugin-bem/-/plugin-bem-0.15.12.tgz", + "integrity": "sha512-Lq2jSOZn+wYQtsyaFj6QRz2EzAnd3iW5fZeHO1WSXQdVYwvwGX0ZiH3X2JQgtgYLT1yeGtrwrqJdNdMEUD2xTw==" + }, + "@css-render/vue3-ssr": { + "version": "0.15.12", + "resolved": "https://registry.npmmirror.com/@css-render/vue3-ssr/-/vue3-ssr-0.15.12.tgz", + "integrity": "sha512-AQLGhhaE0F+rwybRCkKUdzBdTEM/5PZBYy+fSYe1T9z9+yxMuV/k7ZRqa4M69X+EI1W8pa4kc9Iq2VjQkZx4rg==" + }, + "@emmetio/abbreviation": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/@emmetio/abbreviation/-/abbreviation-2.3.3.tgz", + "integrity": "sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==", + "dev": true, + "requires": { + "@emmetio/scanner": "^1.0.4" + } + }, + "@emmetio/css-abbreviation": { + "version": "2.1.8", + "resolved": "https://registry.npmmirror.com/@emmetio/css-abbreviation/-/css-abbreviation-2.1.8.tgz", + "integrity": "sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==", + "dev": true, + "requires": { + "@emmetio/scanner": "^1.0.4" + } + }, + "@emmetio/scanner": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/@emmetio/scanner/-/scanner-1.0.4.tgz", + "integrity": "sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==", + "dev": true + }, + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + }, + "@esbuild/linux-loong64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.14.54.tgz", + "integrity": "sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==", + "dev": true, + "optional": true + }, + "@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmmirror.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^3.3.0" + } + }, + "@eslint-community/regexpp": { + "version": "4.8.1", + "resolved": "https://registry.npmmirror.com/@eslint-community/regexpp/-/regexpp-4.8.1.tgz", + "integrity": "sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==", + "dev": true + }, + "@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "globals": { + "version": "13.22.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-13.22.0.tgz", + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "@eslint/js": { + "version": "8.50.0", + "resolved": "https://registry.npmmirror.com/@eslint/js/-/js-8.50.0.tgz", + "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==", + "dev": true + }, + "@humanwhocodes/config-array": { + "version": "0.11.11", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "dev": true, + "requires": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + } + }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, + "@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "@intlify/core-base": { + "version": "9.4.1", + "resolved": "https://registry.npmmirror.com/@intlify/core-base/-/core-base-9.4.1.tgz", + "integrity": "sha512-WIwx+elsZbxSMxRG5+LC+utRohFvmZMoDevfKOfnYMLbpCjCSavqTfHJAtfsY6ruowzqXeKkeLhRHbYbjoJx5g==", + "requires": { + "@intlify/message-compiler": "9.4.1", + "@intlify/shared": "9.4.1" + } + }, + "@intlify/message-compiler": { + "version": "9.4.1", + "resolved": "https://registry.npmmirror.com/@intlify/message-compiler/-/message-compiler-9.4.1.tgz", + "integrity": "sha512-aN2N+dUx320108QhH51Ycd2LEpZ+NKbzyQ2kjjhqMcxhHdxtOnkgdx+MDBhOy/CObwBmhC3Nygzc6hNlfKvPNw==", + "requires": { + "@intlify/shared": "9.4.1", + "source-map-js": "^1.0.2" + } + }, + "@intlify/shared": { + "version": "9.4.1", + "resolved": "https://registry.npmmirror.com/@intlify/shared/-/shared-9.4.1.tgz", + "integrity": "sha512-A51elBmZWf1FS80inf/32diO9DeXoqg9GR9aUDHFcfHoNDuT46Q+fpPOdj8jiJnSHSBh8E1E+6qWRhAZXdK3Ng==" + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@juggle/resize-observer": { + "version": "3.4.0", + "resolved": "https://registry.npmmirror.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", + "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" + }, + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "requires": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + } + }, + "@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmmirror.com/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmmirror.com/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "@types/color": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@types/color/-/color-3.0.4.tgz", + "integrity": "sha512-OpisS4bqJJwbkkQRrMvURf3DOxBoAg9mysHYI7WgrWpSYHqHGKYBULHdz4ih77SILcLDo/zyHGFyfIl9yb8NZQ==", + "requires": { + "@types/color-convert": "*" + } + }, + "@types/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/@types/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-GwXanrvq/tBHJtudbl1lSy9Ybt7KS9+rA+YY3bcuIIM+d6jSHUr+5yjO83gtiRpuaPiBccwFjSnAK2qSrIPA7w==", + "requires": { + "@types/color-name": "*" + } + }, + "@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + }, + "@types/crypto-js": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/@types/crypto-js/-/crypto-js-4.1.2.tgz", + "integrity": "sha512-t33RNmTu5ufG/sorROIafiCVJMx3jz95bXUMoPAZcUD14fxMXnuTzqzXZoxpR0tNx2xpw11Dlmem9vGCsrSOfA==" + }, + "@types/fined": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/@types/fined/-/fined-1.1.3.tgz", + "integrity": "sha512-CWYnSRnun3CGbt6taXeVo2lCbuaj4mchVJ4UF/BdU5TSuIn3AmS13pGMwCsBUoehGbhZrBrpNJZSZI5EVilXww==", + "dev": true + }, + "@types/inquirer": { + "version": "8.2.6", + "resolved": "https://registry.npmmirror.com/@types/inquirer/-/inquirer-8.2.6.tgz", + "integrity": "sha512-3uT88kxg8lNzY8ay2ZjP44DKcRaTGztqeIvN2zHvhzIBH/uAPaL75aBtdNRKbA7xXoMbBt5kX0M00VKAnfOYlA==", + "dev": true, + "requires": { + "@types/through": "*", + "rxjs": "^7.2.0" + } + }, + "@types/json-schema": { + "version": "7.0.13", + "resolved": "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.13.tgz", + "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmmirror.com/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "@types/katex": { + "version": "0.14.0", + "resolved": "https://registry.npmmirror.com/@types/katex/-/katex-0.14.0.tgz", + "integrity": "sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA==" + }, + "@types/keymaster": { + "version": "1.6.30", + "resolved": "https://registry.npmmirror.com/@types/keymaster/-/keymaster-1.6.30.tgz", + "integrity": "sha512-mtL/NuDBX72zmyIa3cYHA1bQj1WAYlSC4eZcIQj+DHJkcRyTRF2XJXo7DBmkkY8TEq7XaAf7B8TGxs5PHhjRtw==" + }, + "@types/liftoff": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/@types/liftoff/-/liftoff-4.0.1.tgz", + "integrity": "sha512-GUUFIP1wHuB6DEg65hkgJdqqmEeK5Vj+Wy5Tza26F9FuaHhtm4BxN00N3PhVUdCcryY9pn3SkcXGGQDLBisAPQ==", + "dev": true, + "requires": { + "@types/fined": "*", + "@types/node": "*" + } + }, + "@types/lodash": { + "version": "4.14.199", + "resolved": "https://registry.npmmirror.com/@types/lodash/-/lodash-4.14.199.tgz", + "integrity": "sha512-Vrjz5N5Ia4SEzWWgIVwnHNEnb1UE1XMkvY5DGXrAeOGE9imk0hgTHh5GyDjLDJi9OTCn9oo9dXH1uToK1VRfrg==" + }, + "@types/lodash-es": { + "version": "4.17.9", + "resolved": "https://registry.npmmirror.com/@types/lodash-es/-/lodash-es-4.17.9.tgz", + "integrity": "sha512-ZTcmhiI3NNU7dEvWLZJkzG6ao49zOIjEgIE0RgV7wbPxU0f2xT3VSAHw2gmst8swH6V0YkLRGp4qPlX/6I90MQ==", + "requires": { + "@types/lodash": "*" + } + }, + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmmirror.com/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "@types/mockjs": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/@types/mockjs/-/mockjs-1.0.7.tgz", + "integrity": "sha512-OCxXz6hEaJOVpRwuJMiVY5a6LtJcih+br9gwB/Q8ooOBikvk5FpBQ31OlNimXo3EqKha1Z7PFBni+q9m+8NCWg==", + "dev": true + }, + "@types/node": { + "version": "16.18.54", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-16.18.54.tgz", + "integrity": "sha512-oTmGy68gxZZ21FhTJVVvZBYpQHEBZxHKTsGshobMqm9qWpbqdZsA5jvsuPZcHu0KwpmLrOHWPdEfg7XDpNT9UA==", + "dev": true + }, + "@types/normalize-package-data": { + "version": "2.4.2", + "resolved": "https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", + "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", + "dev": true + }, + "@types/semver": { + "version": "7.5.2", + "resolved": "https://registry.npmmirror.com/@types/semver/-/semver-7.5.2.tgz", + "integrity": "sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==", + "dev": true + }, + "@types/three": { + "version": "0.144.0", + "resolved": "https://registry.npmmirror.com/@types/three/-/three-0.144.0.tgz", + "integrity": "sha512-psvEs6q5rLN50jUYZ3D4pZMfxTbdt3A243blt0my7/NcL6chaCZpHe2csbCtx0SOD9fI/XnF3wnVUAYZGqCSYg==", + "dev": true, + "requires": { + "@types/webxr": "*" + } + }, + "@types/through": { + "version": "0.0.31", + "resolved": "https://registry.npmmirror.com/@types/through/-/through-0.0.31.tgz", + "integrity": "sha512-LpKpmb7FGevYgXnBXYs6HWnmiFyVG07Pt1cnbgM1IhEacITTiUaBXXvOR3Y50ksaJWGSfhbEvQFivQEFGCC55w==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/webxr": { + "version": "0.5.4", + "resolved": "https://registry.npmmirror.com/@types/webxr/-/webxr-0.5.4.tgz", + "integrity": "sha512-41gfGLTtqXZhcmoDlLDHqMJDuwAMwhHwXf9Q2job3TUBsvkNfPNI/3IWVEtLH4tyY1ElWtfwIaoNeqeEX238/Q==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + } + }, + "@vicons/carbon": { + "version": "0.12.0", + "resolved": "https://registry.npmmirror.com/@vicons/carbon/-/carbon-0.12.0.tgz", + "integrity": "sha512-kCOgr/ZOhZzoiFLJ8pwxMa2TMxrkCUOA22qExPabus35F4+USqzcsxaPoYtqRd9ROOYiHrSqwapak/ywF0D9bg==", + "dev": true + }, + "@vicons/ionicons5": { + "version": "0.11.0", + "resolved": "https://registry.npmmirror.com/@vicons/ionicons5/-/ionicons5-0.11.0.tgz", + "integrity": "sha512-4IWamqtXUsuCdlW6NQc2xyoJ+PUXGMwzSrppQbdVCYg0pjYld89jOfLOIkuTWq8o2XUa+Q1/78jzWBtXMTojNg==", + "dev": true + }, + "@vitejs/plugin-vue": { + "version": "1.10.2", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-1.10.2.tgz", + "integrity": "sha512-/QJ0Z9qfhAFtKRY+r57ziY4BSbGUTGsPRMpB/Ron3QPwBZM4OZAZHdTa4a8PafCwU5DTatXG8TMDoP8z+oDqJw==", + "dev": true + }, + "@vitejs/plugin-vue-jsx": { + "version": "1.3.10", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-1.3.10.tgz", + "integrity": "sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw==", + "dev": true, + "requires": { + "@babel/core": "^7.17.9", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.16.8", + "@rollup/pluginutils": "^4.2.0", + "@vue/babel-plugin-jsx": "^1.1.1", + "hash-sum": "^2.0.0" + } + }, + "@volar/code-gen": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/@volar/code-gen/-/code-gen-0.28.10.tgz", + "integrity": "sha512-MybgBubg1im4MiFoiTUMmxKTC+KZJQfIO5g/TVnysEsCr4ssG0lG1rF3Gg3lbQKefdMiqsH5FNuMyqLC/bsWQg==", + "dev": true, + "requires": { + "@volar/shared": "0.28.10", + "@volar/source-map": "0.28.10" + } + }, + "@volar/html2pug": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/@volar/html2pug/-/html2pug-0.28.10.tgz", + "integrity": "sha512-orcNnKyUPZZVb7pRvRHU7R8gk4abKZQELT0zXt2T7EbC5B8usmWNav6Sis9kVzV5Etj5h/IYutv7Df7PiKwLOQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0", + "domhandler": "^4.2.2", + "htmlparser2": "^7.1.2", + "pug": "^3.0.2" + } + }, + "@volar/shared": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/@volar/shared/-/shared-0.28.10.tgz", + "integrity": "sha512-MzBEfBM5E5q4EfOd8Gkqmo+XTfbXiuT8IEWtfmpS8ax3GVeofkeAgzK/TadkatW/Nb2cKOaCYkmILpFKvDnDRQ==", + "dev": true, + "requires": { + "upath": "^2.0.1", + "vscode-jsonrpc": "^8.0.0-next.2", + "vscode-uri": "^3.0.2" + } + }, + "@volar/source-map": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/@volar/source-map/-/source-map-0.28.10.tgz", + "integrity": "sha512-hQ2gclwP7yvZIdaVEC1LixViDPIO6JGkCBxAS8Erg9p2d0ruTyzazfd0NLaLuHLoMnxExILYNK2W05yQmIpRIA==", + "dev": true, + "requires": { + "@volar/shared": "0.28.10" + } + }, + "@volar/transforms": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/@volar/transforms/-/transforms-0.28.10.tgz", + "integrity": "sha512-GOQN3amI733oFweKKjuBBOEOMwy0e/aEAnnJNavrrHa7LY6Ke/JfNsoWhi9Pb2FAPYd+WyruDDFX8yKHjQE1xw==", + "dev": true, + "requires": { + "@volar/shared": "0.28.10", + "vscode-languageserver": "^8.0.0-next.2" + } + }, + "@vscode/emmet-helper": { + "version": "2.9.2", + "resolved": "https://registry.npmmirror.com/@vscode/emmet-helper/-/emmet-helper-2.9.2.tgz", + "integrity": "sha512-MaGuyW+fa13q3aYsluKqclmh62Hgp0BpKIqS66fCxfOaBcVQ1OnMQxRRgQUYnCkxFISAQlkJ0qWWPyXjro1Qrg==", + "dev": true, + "requires": { + "emmet": "^2.4.3", + "jsonc-parser": "^2.3.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-languageserver-types": "^3.15.1", + "vscode-uri": "^2.1.2" + }, + "dependencies": { + "vscode-uri": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-2.1.2.tgz", + "integrity": "sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==", + "dev": true + } + } + }, + "@vue/babel-helper-vue-transform-on": { + "version": "1.1.5", + "resolved": "https://registry.npmmirror.com/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz", + "integrity": "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==", + "dev": true + }, + "@vue/babel-plugin-jsx": { + "version": "1.1.5", + "resolved": "https://registry.npmmirror.com/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz", + "integrity": "sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "@vue/babel-helper-vue-transform-on": "^1.1.5", + "camelcase": "^6.3.0", + "html-tags": "^3.3.1", + "svg-tags": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + } + } + }, + "@vue/compiler-core": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.3.4.tgz", + "integrity": "sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==", + "requires": { + "@babel/parser": "^7.21.3", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" + } + }, + "@vue/compiler-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz", + "integrity": "sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==", + "requires": { + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/compiler-sfc": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz", + "integrity": "sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==", + "requires": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-ssr": "3.3.4", + "@vue/reactivity-transform": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0", + "postcss": "^8.1.10", + "source-map-js": "^1.0.2" + } + }, + "@vue/compiler-ssr": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz", + "integrity": "sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==", + "requires": { + "@vue/compiler-dom": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/devtools-api": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.5.0.tgz", + "integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==" + }, + "@vue/reactivity": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.3.4.tgz", + "integrity": "sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==", + "requires": { + "@vue/shared": "3.3.4" + } + }, + "@vue/reactivity-transform": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/reactivity-transform/-/reactivity-transform-3.3.4.tgz", + "integrity": "sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==", + "requires": { + "@babel/parser": "^7.20.15", + "@vue/compiler-core": "3.3.4", + "@vue/shared": "3.3.4", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.0" + } + }, + "@vue/runtime-core": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.3.4.tgz", + "integrity": "sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==", + "requires": { + "@vue/reactivity": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/runtime-dom": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz", + "integrity": "sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==", + "requires": { + "@vue/runtime-core": "3.3.4", + "@vue/shared": "3.3.4", + "csstype": "^3.1.1" + } + }, + "@vue/server-renderer": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.3.4.tgz", + "integrity": "sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==", + "requires": { + "@vue/compiler-ssr": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "@vue/shared": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.3.4.tgz", + "integrity": "sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==" + }, + "@vueuse/core": { + "version": "7.7.1", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-7.7.1.tgz", + "integrity": "sha512-PRRgbATMpoeUmkCEBtUeJgOwtew8s+4UsEd+Pm7MhkjL2ihCNrSqxNVtM6NFE4uP2sWnkGcZpCjPuNSxowJ1Ow==", + "dev": true, + "requires": { + "@vueuse/shared": "7.7.1", + "vue-demi": "*" + } + }, + "@vueuse/shared": { + "version": "7.7.1", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-7.7.1.tgz", + "integrity": "sha512-rN2qd22AUl7VdBxihagWyhUNHCyVk9IpvBTTfHoLH9G7rGE552X1f+zeCfehuno0zXif13jPw+icW/wn2a0rnQ==", + "dev": true, + "requires": { + "vue-demi": "*" + } + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmmirror.com/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "dev": true, + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "acorn-walk": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/acorn-walk/-/acorn-walk-8.2.0.tgz", + "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", + "dev": true + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + }, + "dependencies": { + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "4.1.3", + "resolved": "https://registry.npmmirror.com/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + } + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true + }, + "array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true + }, + "array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmmirror.com/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + } + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + } + }, + "arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "assert-never": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/assert-never/-/assert-never-1.2.1.tgz", + "integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==", + "dev": true + }, + "async-validator": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true + }, + "axios": { + "version": "0.27.2", + "resolved": "https://registry.npmmirror.com/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", + "requires": { + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" + } + }, + "babel-plugin-import": { + "version": "1.13.8", + "resolved": "https://registry.npmmirror.com/babel-plugin-import/-/babel-plugin-import-1.13.8.tgz", + "integrity": "sha512-36babpjra5m3gca44V6tSTomeBlPA7cHUynrE2WiQIm3rEGD9xy28MKsx5IdO45EbnpJY7Jrgd00C6Dwt/l/2Q==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.0.0" + } + }, + "babel-walk": { + "version": "3.0.0-canary-5", + "resolved": "https://registry.npmmirror.com/babel-walk/-/babel-walk-3.0.0-canary-5.tgz", + "integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==", + "dev": true, + "requires": { + "@babel/types": "^7.9.6" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.11", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.11.tgz", + "integrity": "sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001538", + "electron-to-chromium": "^1.4.526", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dev": true, + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmmirror.com/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmmirror.com/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + } + }, + "caniuse-lite": { + "version": "1.0.30001538", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001538.tgz", + "integrity": "sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==", + "dev": true + }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dev": true, + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "character-parser": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/character-parser/-/character-parser-2.2.0.tgz", + "integrity": "sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==", + "dev": true, + "requires": { + "is-regex": "^1.0.3" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmmirror.com/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.9.1", + "resolved": "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.1.tgz", + "integrity": "sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true + }, + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmmirror.com/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "11.0.0", + "resolved": "https://registry.npmmirror.com/commander/-/commander-11.0.0.tgz", + "integrity": "sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==", + "dev": true + }, + "commitlint": { + "version": "17.7.1", + "resolved": "https://registry.npmmirror.com/commitlint/-/commitlint-17.7.1.tgz", + "integrity": "sha512-DVsF4pNpcGfQPu8KOVohNJAHE6ZBT7qTo33yG2SYiojrMnUOjh3eUOjQSjn5sP60/w2UndZqpQNsfQJrXU1bFA==", + "dev": true, + "requires": { + "@commitlint/cli": "^17.7.1", + "@commitlint/types": "^17.4.4" + } + }, + "compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "requires": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "connect": { + "version": "3.7.0", + "resolved": "https://registry.npmmirror.com/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "constantinople": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/constantinople/-/constantinople-4.0.1.tgz", + "integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==", + "dev": true, + "requires": { + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.1" + } + }, + "conventional-changelog-angular": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz", + "integrity": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==", + "dev": true, + "requires": { + "compare-func": "^2.0.0" + } + }, + "conventional-changelog-conventionalcommits": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz", + "integrity": "sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==", + "dev": true, + "requires": { + "compare-func": "^2.0.0" + } + }, + "conventional-commits-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz", + "integrity": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==", + "dev": true, + "requires": { + "JSONStream": "^1.3.5", + "is-text-path": "^1.0.1", + "meow": "^8.1.2", + "split2": "^3.2.2" + } + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + }, + "cosmiconfig-typescript-loader": { + "version": "4.4.0", + "resolved": "https://registry.npmmirror.com/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz", + "integrity": "sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==", + "dev": true + }, + "create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-js": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/crypto-js/-/crypto-js-4.1.1.tgz", + "integrity": "sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==" + }, + "css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "requires": { + "utrie": "^1.0.2" + } + }, + "css-render": { + "version": "0.15.12", + "resolved": "https://registry.npmmirror.com/css-render/-/css-render-0.15.12.tgz", + "integrity": "sha512-eWzS66patiGkTTik+ipO9qNGZ+uNuGyTmnz6/+EJIiFg8+3yZRpnMwgFo8YdXhQRsiePzehnusrxVvugNjXzbw==", + "requires": { + "@emotion/hash": "~0.8.0", + "csstype": "~3.0.5" + }, + "dependencies": { + "csstype": { + "version": "3.0.11", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.0.11.tgz", + "integrity": "sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==" + } + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "csstype": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.2.tgz", + "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" + }, + "dargs": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/dargs/-/dargs-7.0.0.tgz", + "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", + "dev": true + }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmmirror.com/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, + "date-fns-tz": { + "version": "1.3.8", + "resolved": "https://registry.npmmirror.com/date-fns-tz/-/date-fns-tz-1.3.8.tgz", + "integrity": "sha512-qwNXUFtMHTTU6CFSFjoJ80W8Fzzp24LntbjFFBgL/faqds4e5mo9mftoRLgr3Vi1trISsg4awSpYVsOQCRnapQ==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + } + } + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "default-passive-events": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/default-passive-events/-/default-passive-events-2.0.0.tgz", + "integrity": "sha512-eMtt76GpDVngZQ3ocgvRcNCklUMwID1PaNbCNxfpDXuiOXttSh0HzBbda1HU9SIUsDc02vb7g9+3I5tlqe/qMQ==", + "dev": true + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "requires": { + "clone": "^1.0.2" + } + }, + "define-data-property": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/define-data-property/-/define-data-property-1.1.0.tgz", + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "del": { + "version": "6.1.1", + "resolved": "https://registry.npmmirror.com/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "dev": true, + "requires": { + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "doctypes": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/doctypes/-/doctypes-1.1.0.tgz", + "integrity": "sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==", + "dev": true + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + } + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmmirror.com/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmmirror.com/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "requires": { + "is-obj": "^2.0.0" + } + }, + "echarts": { + "version": "5.4.3", + "resolved": "https://registry.npmmirror.com/echarts/-/echarts-5.4.3.tgz", + "integrity": "sha512-mYKxLxhzy6zyTi/FaEbJMOZU1ULGEQHaeIeuMR5L+JnJTpz+YR03mnnpBhbR4+UYJAgiXgpyTVLffPAjOTLkZA==", + "dev": true, + "requires": { + "tslib": "2.3.0", + "zrender": "5.4.4" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", + "dev": true + } + } + }, + "echarts-liquidfill": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/echarts-liquidfill/-/echarts-liquidfill-3.1.0.tgz", + "integrity": "sha512-5Dlqs/jTsdTUAsd+K5LPLLTgrbbNORUSBQyk8PSy1Mg2zgHDWm83FmvA4s0ooNepCJojFYRITTQ4GU1UUSKYLw==" + }, + "echarts-stat": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/echarts-stat/-/echarts-stat-1.2.0.tgz", + "integrity": "sha512-zLd7Kgs+tuTSeaK0VQEMNmnMivEkhvHIk1gpBtLzpRerfcIQ+Bd5XudOMmtwpaTc1WDZbA7d1V//iiBccR46Qg==" + }, + "echarts-wordcloud": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/echarts-wordcloud/-/echarts-wordcloud-2.1.0.tgz", + "integrity": "sha512-Kt1JmbcROgb+3IMI48KZECK2AP5lG6bSsOEs+AsuwaWJxQom31RTNd6NFYI01E/YaI1PFZeueaupjlmzSQasjQ==" + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.4.528", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.528.tgz", + "integrity": "sha512-UdREXMXzLkREF4jA8t89FQjA8WHI6ssP38PMY4/4KhXFQbtImnghh4GkCgrtiZwLKUKVD2iTVXvDVQjfomEQuA==", + "dev": true + }, + "emmet": { + "version": "2.4.6", + "resolved": "https://registry.npmmirror.com/emmet/-/emmet-2.4.6.tgz", + "integrity": "sha512-dJfbdY/hfeTyf/Ef7Y7ubLYzkBvPQ912wPaeVYpAxvFxkEBf/+hJu4H6vhAvFN6HlxqedlfVn2x1S44FfQ97pg==", + "dev": true, + "requires": { + "@emmetio/abbreviation": "^2.3.3", + "@emmetio/css-abbreviation": "^2.1.8" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true + }, + "entities": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + } + } + }, + "es-abstract": { + "version": "1.22.2", + "resolved": "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.22.2.tgz", + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "dev": true, + "requires": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.11" + } + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, + "es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "esbuild": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", + "dev": true, + "requires": { + "@esbuild/linux-loong64": "0.14.54", + "esbuild-android-64": "0.14.54", + "esbuild-android-arm64": "0.14.54", + "esbuild-darwin-64": "0.14.54", + "esbuild-darwin-arm64": "0.14.54", + "esbuild-freebsd-64": "0.14.54", + "esbuild-freebsd-arm64": "0.14.54", + "esbuild-linux-32": "0.14.54", + "esbuild-linux-64": "0.14.54", + "esbuild-linux-arm": "0.14.54", + "esbuild-linux-arm64": "0.14.54", + "esbuild-linux-mips64le": "0.14.54", + "esbuild-linux-ppc64le": "0.14.54", + "esbuild-linux-riscv64": "0.14.54", + "esbuild-linux-s390x": "0.14.54", + "esbuild-netbsd-64": "0.14.54", + "esbuild-openbsd-64": "0.14.54", + "esbuild-sunos-64": "0.14.54", + "esbuild-windows-32": "0.14.54", + "esbuild-windows-64": "0.14.54", + "esbuild-windows-arm64": "0.14.54" + } + }, + "esbuild-android-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.14.54.tgz", + "integrity": "sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==", + "dev": true, + "optional": true + }, + "esbuild-android-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.54.tgz", + "integrity": "sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==", + "dev": true, + "optional": true + }, + "esbuild-darwin-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", + "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", + "dev": true, + "optional": true + }, + "esbuild-darwin-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.54.tgz", + "integrity": "sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.54.tgz", + "integrity": "sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==", + "dev": true, + "optional": true + }, + "esbuild-freebsd-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.54.tgz", + "integrity": "sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==", + "dev": true, + "optional": true + }, + "esbuild-linux-32": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.14.54.tgz", + "integrity": "sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==", + "dev": true, + "optional": true + }, + "esbuild-linux-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.54.tgz", + "integrity": "sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.54.tgz", + "integrity": "sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==", + "dev": true, + "optional": true + }, + "esbuild-linux-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.54.tgz", + "integrity": "sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==", + "dev": true, + "optional": true + }, + "esbuild-linux-mips64le": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.54.tgz", + "integrity": "sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==", + "dev": true, + "optional": true + }, + "esbuild-linux-ppc64le": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.54.tgz", + "integrity": "sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==", + "dev": true, + "optional": true + }, + "esbuild-linux-riscv64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.54.tgz", + "integrity": "sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==", + "dev": true, + "optional": true + }, + "esbuild-linux-s390x": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.54.tgz", + "integrity": "sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==", + "dev": true, + "optional": true + }, + "esbuild-netbsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.54.tgz", + "integrity": "sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==", + "dev": true, + "optional": true + }, + "esbuild-openbsd-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.54.tgz", + "integrity": "sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==", + "dev": true, + "optional": true + }, + "esbuild-sunos-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.54.tgz", + "integrity": "sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==", + "dev": true, + "optional": true + }, + "esbuild-windows-32": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.14.54.tgz", + "integrity": "sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==", + "dev": true, + "optional": true + }, + "esbuild-windows-64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.14.54.tgz", + "integrity": "sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==", + "dev": true, + "optional": true + }, + "esbuild-windows-arm64": { + "version": "0.14.54", + "resolved": "https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.54.tgz", + "integrity": "sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==", + "dev": true, + "optional": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true + }, + "eslint": { + "version": "8.50.0", + "resolved": "https://registry.npmmirror.com/eslint/-/eslint-8.50.0.tgz", + "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.50.0", + "@humanwhocodes/config-array": "^0.11.11", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "13.22.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-13.22.0.tgz", + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "eslint-config-prettier": { + "version": "8.10.0", + "resolved": "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "dev": true + }, + "eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmmirror.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "requires": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmmirror.com/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "requires": { + "debug": "^3.2.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "dev": true, + "requires": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "eslint-plugin-prettier": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", + "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-plugin-vue": { + "version": "8.7.1", + "resolved": "https://registry.npmmirror.com/eslint-plugin-vue/-/eslint-plugin-vue-8.7.1.tgz", + "integrity": "sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==", + "dev": true, + "requires": { + "eslint-utils": "^3.0.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.0.1", + "postcss-selector-parser": "^6.0.9", + "semver": "^7.3.5", + "vue-eslint-parser": "^8.0.1" + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmmirror.com/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "evtd": { + "version": "0.2.4", + "resolved": "https://registry.npmmirror.com/evtd/-/evtd-0.2.4.tgz", + "integrity": "sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==" + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmmirror.com/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "findup-sync": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/findup-sync/-/findup-sync-5.0.0.tgz", + "integrity": "sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.3", + "micromatch": "^4.0.4", + "resolve-dir": "^1.0.1" + } + }, + "fined": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/fined/-/fined-2.0.0.tgz", + "integrity": "sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^5.0.0", + "object.defaults": "^1.1.0", + "object.pick": "^1.3.0", + "parse-filepath": "^1.0.2" + } + }, + "flagged-respawn": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/flagged-respawn/-/flagged-respawn-2.0.0.tgz", + "integrity": "sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==", + "dev": true + }, + "flat-cache": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "dev": true, + "requires": { + "flatted": "^3.2.7", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmmirror.com/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==" + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmmirror.com/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "requires": { + "is-callable": "^1.1.3" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + } + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } + }, + "git-raw-commits": { + "version": "2.0.11", + "resolved": "https://registry.npmmirror.com/git-raw-commits/-/git-raw-commits-2.0.11.tgz", + "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", + "dev": true, + "requires": { + "dargs": "^7.0.0", + "lodash": "^4.17.15", + "meow": "^8.0.0", + "split2": "^3.0.0", + "through2": "^4.0.0" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmmirror.com/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "gsap": { + "version": "3.12.2", + "resolved": "https://registry.npmmirror.com/gsap/-/gsap-3.12.2.tgz", + "integrity": "sha512-EkYnpG8qHgYBFAwsgsGEqvT1WUidX0tt/ijepx7z8EUJHElykg91RvW1XbkT59T0gZzzszOpjQv7SE41XuIXyQ==" + }, + "handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmmirror.com/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + } + }, + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.1" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", + "dev": true + }, + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dev": true, + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "highlight.js": { + "version": "11.8.0", + "resolved": "https://registry.npmmirror.com/highlight.js/-/highlight.js-11.8.0.tgz", + "integrity": "sha512-MedQhoqVdr0U6SSnWPzfiadUcDHfN/Wzq25AkXiQv9oiOO/sG0S7XkvpFIqWBl9Yq1UYyYOOVORs5UW2XlPyzg==" + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true + }, + "html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", + "requires": { + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" + } + }, + "htmlparser2": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-7.2.0.tgz", + "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "husky": { + "version": "8.0.3", + "resolved": "https://registry.npmmirror.com/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmmirror.com/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmmirror.com/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "inquirer": { + "version": "8.2.6", + "resolved": "https://registry.npmmirror.com/inquirer/-/inquirer-8.2.6.tgz", + "integrity": "sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^6.0.1" + }, + "dependencies": { + "ora": { + "version": "5.4.1", + "resolved": "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + } + } + }, + "internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "dev": true + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + } + }, + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "requires": { + "has-bigints": "^1.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true + }, + "is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-expression": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/is-expression/-/is-expression-4.0.0.tgz", + "integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "object-assign": "^4.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + } + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + }, + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + }, + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==", + "dev": true + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "requires": { + "has-symbols": "^1.0.2" + } + }, + "is-text-path": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/is-text-path/-/is-text-path-1.0.1.tgz", + "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", + "dev": true, + "requires": { + "text-extensions": "^1.0.0" + } + }, + "is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmmirror.com/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "requires": { + "which-typed-array": "^1.1.11" + } + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "isbinaryfile": { + "version": "4.0.10", + "resolved": "https://registry.npmmirror.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz", + "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true + }, + "js-stringify": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/js-stringify/-/js-stringify-1.0.2.tgz", + "integrity": "sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "json5": { + "version": "2.2.3", + "resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true + }, + "jsonc-parser": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-2.3.1.tgz", + "integrity": "sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true + }, + "jstransformer": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/jstransformer/-/jstransformer-1.0.0.tgz", + "integrity": "sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==", + "dev": true, + "requires": { + "is-promise": "^2.0.0", + "promise": "^7.0.1" + } + }, + "keymaster": { + "version": "1.6.2", + "resolved": "https://registry.npmmirror.com/keymaster/-/keymaster-1.6.2.tgz", + "integrity": "sha512-OvA/AALN8IDKKkTk2Z+bDrzs/SQao4lo/QPbwSdDvm+frxfiYiYCSn1aHFUypJY3SruAO1y/c771agBmTXqUtg==" + }, + "keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmmirror.com/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "klona": { + "version": "2.0.6", + "resolved": "https://registry.npmmirror.com/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "liftoff": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/liftoff/-/liftoff-4.0.0.tgz", + "integrity": "sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==", + "dev": true, + "requires": { + "extend": "^3.0.2", + "findup-sync": "^5.0.0", + "fined": "^2.0.0", + "flagged-respawn": "^2.0.0", + "is-plain-object": "^5.0.0", + "object.map": "^1.0.1", + "rechoir": "^0.8.0", + "resolve": "^1.20.0" + } + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "dev": true + }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmmirror.com/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "dev": true + }, + "lodash.isfunction": { + "version": "3.0.9", + "resolved": "https://registry.npmmirror.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", + "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmmirror.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", + "dev": true + }, + "lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmmirror.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", + "dev": true + }, + "lodash.snakecase": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", + "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", + "dev": true + }, + "lodash.startcase": { + "version": "4.4.0", + "resolved": "https://registry.npmmirror.com/lodash.startcase/-/lodash.startcase-4.4.0.tgz", + "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", + "dev": true + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmmirror.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.30.3", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.3.tgz", + "integrity": "sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==", + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmmirror.com/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true + }, + "meow": { + "version": "8.1.2", + "resolved": "https://registry.npmmirror.com/meow/-/meow-8.1.2.tgz", + "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "dev": true, + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true + }, + "mockjs": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/mockjs/-/mockjs-1.1.0.tgz", + "integrity": "sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==", + "dev": true, + "requires": { + "commander": "*" + } + }, + "monaco-editor": { + "version": "0.33.0", + "resolved": "https://registry.npmmirror.com/monaco-editor/-/monaco-editor-0.33.0.tgz", + "integrity": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmmirror.com/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "naive-ui": { + "version": "2.34.3", + "resolved": "https://registry.npmmirror.com/naive-ui/-/naive-ui-2.34.3.tgz", + "integrity": "sha512-fUMr0dzb/iGsOTWgoblPVobY5X5dihQ1eam5dA+H74oyLYAvgX4pL96xQFPBLIYqvyRFBAsN85kHN5pLqdtpxA==", + "requires": { + "@css-render/plugin-bem": "^0.15.10", + "@css-render/vue3-ssr": "^0.15.10", + "@types/katex": "^0.14.0", + "@types/lodash": "^4.14.181", + "@types/lodash-es": "^4.17.6", + "async-validator": "^4.0.7", + "css-render": "^0.15.10", + "date-fns": "^2.28.0", + "date-fns-tz": "^1.3.3", + "evtd": "^0.2.4", + "highlight.js": "^11.5.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "seemly": "^0.3.6", + "treemate": "^0.3.11", + "vdirs": "^0.1.8", + "vooks": "^0.2.12", + "vueuc": "^0.4.47" + } + }, + "nanoid": { + "version": "3.3.6", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.6.tgz", + "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==" + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "node-plop": { + "version": "0.31.1", + "resolved": "https://registry.npmmirror.com/node-plop/-/node-plop-0.31.1.tgz", + "integrity": "sha512-qmXJJt3YETFt/e0dtMADVpvck6EvN01Jig086o+J3M6G++mWA7iJ3Pqz4m4kvlynh73Iz2/rcZzxq7xTiF+aIQ==", + "dev": true, + "requires": { + "@types/inquirer": "^8.2.1", + "change-case": "^4.1.2", + "del": "^6.0.0", + "globby": "^13.1.1", + "handlebars": "^4.4.3", + "inquirer": "^8.2.2", + "isbinaryfile": "^4.0.8", + "lodash.get": "^4.4.2", + "lower-case": "^2.0.2", + "mkdirp": "^1.0.4", + "resolve": "^1.20.0", + "title-case": "^3.0.3", + "upper-case": "^2.0.2" + }, + "dependencies": { + "globby": { + "version": "13.2.2", + "resolved": "https://registry.npmmirror.com/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true + } + } + }, + "node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "requires": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "requires": { + "boolbase": "^1.0.0" + } + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true + }, + "object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmmirror.com/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmmirror.com/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmmirror.com/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "requires": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + } + }, + "ora": { + "version": "6.3.1", + "resolved": "https://registry.npmmirror.com/ora/-/ora-6.3.1.tgz", + "integrity": "sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ==", + "dev": true, + "requires": { + "chalk": "^5.0.0", + "cli-cursor": "^4.0.0", + "cli-spinners": "^2.6.1", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^1.1.0", + "log-symbols": "^5.1.0", + "stdin-discarder": "^0.1.0", + "strip-ansi": "^7.0.1", + "wcwidth": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + }, + "cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", + "dev": true, + "requires": { + "restore-cursor": "^4.0.0" + } + }, + "is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", + "dev": true + }, + "is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true + }, + "log-symbols": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/log-symbols/-/log-symbols-5.1.0.tgz", + "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", + "dev": true, + "requires": { + "chalk": "^5.0.0", + "is-unicode-supported": "^1.1.0" + } + }, + "restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + } + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmmirror.com/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmmirror.com/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true + }, + "path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pinia": { + "version": "2.1.6", + "resolved": "https://registry.npmmirror.com/pinia/-/pinia-2.1.6.tgz", + "integrity": "sha512-bIU6QuE5qZviMmct5XwCesXelb5VavdOWKWaB17ggk++NUwQWWbP5YnsONTk3b752QkW9sACiR81rorpeOMSvQ==", + "requires": { + "@vue/devtools-api": "^6.5.0", + "vue-demi": ">=0.14.5" + }, + "dependencies": { + "vue-demi": { + "version": "0.14.6", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.14.6.tgz", + "integrity": "sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==" + } + } + }, + "plop": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/plop/-/plop-3.1.2.tgz", + "integrity": "sha512-39SOtQ3WlePXSNqKqAh/QlUSHXHO25iCnyCO3Qs/9UzPVmwVledRTDGvPd2csh+JnHVXz4c63F6fBwdqZHgbUg==", + "dev": true, + "requires": { + "@types/liftoff": "^4.0.0", + "chalk": "^5.0.1", + "interpret": "^2.2.0", + "liftoff": "^4.0.0", + "minimist": "^1.2.6", + "node-plop": "^0.31.1", + "ora": "^6.0.1", + "v8flags": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true + } + } + }, + "postcss": { + "version": "8.4.30", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.4.30.tgz", + "integrity": "sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==", + "requires": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmmirror.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmmirror.com/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmmirror.com/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dev": true, + "requires": { + "asap": "~2.0.3" + } + }, + "pug": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/pug/-/pug-3.0.2.tgz", + "integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==", + "dev": true, + "requires": { + "pug-code-gen": "^3.0.2", + "pug-filters": "^4.0.0", + "pug-lexer": "^5.0.1", + "pug-linker": "^4.0.0", + "pug-load": "^3.0.0", + "pug-parser": "^6.0.0", + "pug-runtime": "^3.0.1", + "pug-strip-comments": "^2.0.0" + } + }, + "pug-attrs": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/pug-attrs/-/pug-attrs-3.0.0.tgz", + "integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==", + "dev": true, + "requires": { + "constantinople": "^4.0.1", + "js-stringify": "^1.0.2", + "pug-runtime": "^3.0.0" + } + }, + "pug-code-gen": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/pug-code-gen/-/pug-code-gen-3.0.2.tgz", + "integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==", + "dev": true, + "requires": { + "constantinople": "^4.0.1", + "doctypes": "^1.1.0", + "js-stringify": "^1.0.2", + "pug-attrs": "^3.0.0", + "pug-error": "^2.0.0", + "pug-runtime": "^3.0.0", + "void-elements": "^3.1.0", + "with": "^7.0.0" + } + }, + "pug-error": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/pug-error/-/pug-error-2.0.0.tgz", + "integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==", + "dev": true + }, + "pug-filters": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/pug-filters/-/pug-filters-4.0.0.tgz", + "integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==", + "dev": true, + "requires": { + "constantinople": "^4.0.1", + "jstransformer": "1.0.0", + "pug-error": "^2.0.0", + "pug-walk": "^2.0.0", + "resolve": "^1.15.1" + } + }, + "pug-lexer": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/pug-lexer/-/pug-lexer-5.0.1.tgz", + "integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==", + "dev": true, + "requires": { + "character-parser": "^2.2.0", + "is-expression": "^4.0.0", + "pug-error": "^2.0.0" + } + }, + "pug-linker": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/pug-linker/-/pug-linker-4.0.0.tgz", + "integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==", + "dev": true, + "requires": { + "pug-error": "^2.0.0", + "pug-walk": "^2.0.0" + } + }, + "pug-load": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/pug-load/-/pug-load-3.0.0.tgz", + "integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "pug-walk": "^2.0.0" + } + }, + "pug-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/pug-parser/-/pug-parser-6.0.0.tgz", + "integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==", + "dev": true, + "requires": { + "pug-error": "^2.0.0", + "token-stream": "1.0.0" + } + }, + "pug-runtime": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/pug-runtime/-/pug-runtime-3.0.1.tgz", + "integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==", + "dev": true + }, + "pug-strip-comments": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz", + "integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==", + "dev": true, + "requires": { + "pug-error": "^2.0.0" + } + }, + "pug-walk": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/pug-walk/-/pug-walk-2.0.0.tgz", + "integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==", + "dev": true + }, + "punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmmirror.com/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "requires": { + "resolve": "^1.20.0" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" + }, + "regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + } + }, + "request-light": { + "version": "0.5.8", + "resolved": "https://registry.npmmirror.com/request-light/-/request-light-0.5.8.tgz", + "integrity": "sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "resize-detector": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/resize-detector/-/resize-detector-0.3.0.tgz", + "integrity": "sha512-R/tCuvuOHQ8o2boRP6vgx8hXCCy87H1eY9V5imBYeVNyNVpuL9ciReSccLj2gDcax9+2weXy3bc8Vv+NRXeEvQ==", + "dev": true + }, + "resolve": { + "version": "1.22.6", + "resolved": "https://registry.npmmirror.com/resolve/-/resolve-1.22.6.tgz", + "integrity": "sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "resolve-global": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/resolve-global/-/resolve-global-1.0.0.tgz", + "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", + "dev": true, + "requires": { + "global-dirs": "^0.1.1" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.79.1", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "dev": true, + "requires": { + "fsevents": "~2.3.2" + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmmirror.com/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "requires": { + "tslib": "^2.1.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sass": { + "version": "1.68.0", + "resolved": "https://registry.npmmirror.com/sass/-/sass-1.68.0.tgz", + "integrity": "sha512-Lmj9lM/fef0nQswm1J2HJcEsBUba4wgNx2fea6yJHODREoMFnwRpZydBnX/RjyXw2REIwdkbqE4hrTo4qfDBUA==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, + "sass-loader": { + "version": "12.6.0", + "resolved": "https://registry.npmmirror.com/sass-loader/-/sass-loader-12.6.0.tgz", + "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", + "dev": true, + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "screenfull": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/screenfull/-/screenfull-6.0.2.tgz", + "integrity": "sha512-AQdy8s4WhNvUZ6P8F6PB21tSPIYKniic+Ogx0AacBMjKP1GUHN2E9URxQHtCusiwxudnCKkdy4GrHXPPJSkCCw==" + }, + "seemly": { + "version": "0.3.6", + "resolved": "https://registry.npmmirror.com/seemly/-/seemly-0.3.6.tgz", + "integrity": "sha512-lEV5VB8BUKTo/AfktXJcy+JeXns26ylbMkIUco8CYREsQijuz4mrXres2Q+vMLdwkuLxJdIPQ8IlCIxLYm71Yw==" + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmmirror.com/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dev": true, + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "requires": { + "is-arrayish": "^0.3.1" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "sortablejs": { + "version": "1.14.0", + "resolved": "https://registry.npmmirror.com/sortablejs/-/sortablejs-1.14.0.tgz", + "integrity": "sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.15", + "resolved": "https://registry.npmmirror.com/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", + "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", + "dev": true + }, + "split2": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/split2/-/split2-3.2.2.tgz", + "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", + "dev": true, + "requires": { + "readable-stream": "^3.0.0" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + }, + "stdin-discarder": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/stdin-discarder/-/stdin-discarder-0.1.0.tgz", + "integrity": "sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==", + "dev": true, + "requires": { + "bl": "^5.0.0" + }, + "dependencies": { + "bl": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "dev": true, + "requires": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + } + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "text-extensions": { + "version": "1.9.0", + "resolved": "https://registry.npmmirror.com/text-extensions/-/text-extensions-1.9.0.tgz", + "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", + "dev": true + }, + "text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "requires": { + "utrie": "^1.0.2" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "three": { + "version": "0.145.0", + "resolved": "https://registry.npmmirror.com/three/-/three-0.145.0.tgz", + "integrity": "sha512-EKoHQEtEJ4CB6b2BGMBgLZrfwLjXcSUfoI/MiIXUuRpeYsfK5aPWbYhdtIVWOH+x6X0TouldHKHBuc/LAiFzAw==" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmmirror.com/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true + }, + "through2": { + "version": "4.0.2", + "resolved": "https://registry.npmmirror.com/through2/-/through2-4.0.2.tgz", + "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", + "dev": true, + "requires": { + "readable-stream": "3" + } + }, + "title-case": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/title-case/-/title-case-3.0.3.tgz", + "integrity": "sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmmirror.com/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "token-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/token-stream/-/token-stream-1.0.0.tgz", + "integrity": "sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==", + "dev": true + }, + "treemate": { + "version": "0.3.11", + "resolved": "https://registry.npmmirror.com/treemate/-/treemate-0.3.11.tgz", + "integrity": "sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==" + }, + "trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true + }, + "ts-node": { + "version": "10.9.1", + "resolved": "https://registry.npmmirror.com/ts-node/-/ts-node-10.9.1.tgz", + "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", + "dev": true, + "requires": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + } + }, + "tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmmirror.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmmirror.com/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + }, + "typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + } + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, + "typescript": { + "version": "4.6.3", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz", + "integrity": "sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==", + "dev": true + }, + "uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmmirror.com/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "dev": true, + "optional": true + }, + "unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + } + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmmirror.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true + }, + "upath": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true + }, + "update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dev": true, + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true + }, + "utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", + "requires": { + "base64-arraybuffer": "^1.0.2" + } + }, + "v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true + }, + "v8flags": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/v8flags/-/v8flags-4.0.1.tgz", + "integrity": "sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "vdirs": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/vdirs/-/vdirs-0.1.8.tgz", + "integrity": "sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==", + "requires": { + "evtd": "^0.2.2" + } + }, + "vite": { + "version": "2.9.9", + "resolved": "https://registry.npmmirror.com/vite/-/vite-2.9.9.tgz", + "integrity": "sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==", + "dev": true, + "requires": { + "esbuild": "^0.14.27", + "fsevents": "~2.3.2", + "postcss": "^8.4.13", + "resolve": "^1.22.0", + "rollup": "^2.59.0" + } + }, + "vite-plugin-compression": { + "version": "0.5.1", + "resolved": "https://registry.npmmirror.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz", + "integrity": "sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==", + "dev": true, + "requires": { + "chalk": "^4.1.2", + "debug": "^4.3.3", + "fs-extra": "^10.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + } + } + }, + "vite-plugin-importer": { + "version": "0.2.5", + "resolved": "https://registry.npmmirror.com/vite-plugin-importer/-/vite-plugin-importer-0.2.5.tgz", + "integrity": "sha512-6OtqJmVwnfw8+B4OIh7pIdXs+jLkN7g5PIqmZdpgrMYjIFMiZrcMB1zlyUQSTokKGC90KwXviO/lq1hcUBUG3Q==", + "dev": true, + "requires": { + "@babel/core": "^7.12.17", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "babel-plugin-import": "^1.13.3" + } + }, + "vite-plugin-mock": { + "version": "2.9.8", + "resolved": "https://registry.npmmirror.com/vite-plugin-mock/-/vite-plugin-mock-2.9.8.tgz", + "integrity": "sha512-YTQM5Sn7t+/DNOwTkr+W26QGTCk1PrDkhGHslTJ90lIPJhJtDTwuSkEYMAuLP9TcVQ/qExTFx/x/GE3kxJ05sw==", + "dev": true, + "requires": { + "@types/mockjs": "^1.0.4", + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "connect": "^3.7.0", + "debug": "^4.3.2", + "esbuild": "^0.14.36", + "fast-glob": "^3.2.7", + "path-to-regexp": "^6.2.0" + } + }, + "vite-plugin-monaco-editor": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/vite-plugin-monaco-editor/-/vite-plugin-monaco-editor-1.1.0.tgz", + "integrity": "sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==", + "dev": true + }, + "void-elements": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/void-elements/-/void-elements-3.1.0.tgz", + "integrity": "sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==", + "dev": true + }, + "vooks": { + "version": "0.2.12", + "resolved": "https://registry.npmmirror.com/vooks/-/vooks-0.2.12.tgz", + "integrity": "sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==", + "requires": { + "evtd": "^0.2.2" + } + }, + "vscode-css-languageservice": { + "version": "5.4.2", + "resolved": "https://registry.npmmirror.com/vscode-css-languageservice/-/vscode-css-languageservice-5.4.2.tgz", + "integrity": "sha512-DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg==", + "dev": true, + "requires": { + "vscode-languageserver-textdocument": "^1.0.4", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.3" + } + }, + "vscode-html-languageservice": { + "version": "4.2.5", + "resolved": "https://registry.npmmirror.com/vscode-html-languageservice/-/vscode-html-languageservice-4.2.5.tgz", + "integrity": "sha512-dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw==", + "dev": true, + "requires": { + "vscode-languageserver-textdocument": "^1.0.4", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.3" + } + }, + "vscode-json-languageservice": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/vscode-json-languageservice/-/vscode-json-languageservice-4.2.1.tgz", + "integrity": "sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==", + "dev": true, + "requires": { + "jsonc-parser": "^3.0.0", + "vscode-languageserver-textdocument": "^1.0.3", + "vscode-languageserver-types": "^3.16.0", + "vscode-nls": "^5.0.0", + "vscode-uri": "^3.0.3" + }, + "dependencies": { + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + } + } + }, + "vscode-jsonrpc": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", + "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", + "dev": true + }, + "vscode-languageserver": { + "version": "8.1.0", + "resolved": "https://registry.npmmirror.com/vscode-languageserver/-/vscode-languageserver-8.1.0.tgz", + "integrity": "sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==", + "dev": true, + "requires": { + "vscode-languageserver-protocol": "3.17.3" + } + }, + "vscode-languageserver-protocol": { + "version": "3.17.3", + "resolved": "https://registry.npmmirror.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3.tgz", + "integrity": "sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==", + "dev": true, + "requires": { + "vscode-jsonrpc": "8.1.0", + "vscode-languageserver-types": "3.17.3" + }, + "dependencies": { + "vscode-jsonrpc": { + "version": "8.1.0", + "resolved": "https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0.tgz", + "integrity": "sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==", + "dev": true + } + } + }, + "vscode-languageserver-textdocument": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.8.tgz", + "integrity": "sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==", + "dev": true + }, + "vscode-languageserver-types": { + "version": "3.17.3", + "resolved": "https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3.tgz", + "integrity": "sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==", + "dev": true + }, + "vscode-nls": { + "version": "5.2.0", + "resolved": "https://registry.npmmirror.com/vscode-nls/-/vscode-nls-5.2.0.tgz", + "integrity": "sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==", + "dev": true + }, + "vscode-pug-languageservice": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/vscode-pug-languageservice/-/vscode-pug-languageservice-0.28.10.tgz", + "integrity": "sha512-zhpNmMxltAlid4ZWVq0YrCbD0v2Nk/OsUl2q1pZkSJheGVMj/ZAlcYqDvWjLbMfGPtpvoC6nPxhSCc6sIDN9XA==", + "dev": true, + "requires": { + "@volar/code-gen": "0.28.10", + "@volar/shared": "0.28.10", + "@volar/source-map": "0.28.10", + "@volar/transforms": "0.28.10", + "pug-lexer": "^5.0.1", + "pug-parser": "^6.0.0", + "vscode-languageserver": "^8.0.0-next.2" + } + }, + "vscode-typescript-languageservice": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/vscode-typescript-languageservice/-/vscode-typescript-languageservice-0.28.10.tgz", + "integrity": "sha512-TTJSQss0YR784e0Rr8se5huxd0edqGzO7A51kejEQiPPhIcOlYCEeeFxDtqv3S+/fUUkeFVdRBZA9Ie7Jfrldw==", + "dev": true, + "requires": { + "@volar/shared": "0.28.10", + "semver": "^7.3.5", + "upath": "^2.0.1", + "vscode-languageserver": "^8.0.0-next.2", + "vscode-languageserver-textdocument": "^1.0.1" + } + }, + "vscode-uri": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.7.tgz", + "integrity": "sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==", + "dev": true + }, + "vscode-vue-languageservice": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/vscode-vue-languageservice/-/vscode-vue-languageservice-0.28.10.tgz", + "integrity": "sha512-xsA9aEiELiA9zHxzhI58Y6crcSfqxtt3EDKyey9rcNYe/bdY1NY0qLh3SRxdXF8YwoxzRvnn4iUw0oxCjHnFUQ==", + "dev": true, + "requires": { + "@volar/code-gen": "0.28.10", + "@volar/html2pug": "0.28.10", + "@volar/shared": "0.28.10", + "@volar/source-map": "0.28.10", + "@volar/transforms": "0.28.10", + "@vscode/emmet-helper": "^2.8.0", + "@vue/compiler-dom": "^3.2.20", + "@vue/reactivity": "^3.2.20", + "@vue/shared": "^3.2.20", + "request-light": "^0.5.4", + "upath": "^2.0.1", + "vscode-css-languageservice": "^5.1.7", + "vscode-html-languageservice": "^4.1.0", + "vscode-json-languageservice": "^4.1.8", + "vscode-languageserver": "^8.0.0-next.2", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-pug-languageservice": "0.28.10", + "vscode-typescript-languageservice": "0.28.10" + } + }, + "vue": { + "version": "3.3.4", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.3.4.tgz", + "integrity": "sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==", + "requires": { + "@vue/compiler-dom": "3.3.4", + "@vue/compiler-sfc": "3.3.4", + "@vue/runtime-dom": "3.3.4", + "@vue/server-renderer": "3.3.4", + "@vue/shared": "3.3.4" + } + }, + "vue-demi": { + "version": "0.13.11", + "resolved": "https://registry.npmmirror.com/vue-demi/-/vue-demi-0.13.11.tgz", + "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==" + }, + "vue-echarts": { + "version": "6.6.1", + "resolved": "https://registry.npmmirror.com/vue-echarts/-/vue-echarts-6.6.1.tgz", + "integrity": "sha512-EpreTzlNeJ+eaUn0AhXEmKJk98xJGecgTqAdyZovoXWnhTxnlW2HuBM0ei3y8rLw1JCUabf8/sYvxjlr8SzBKQ==", + "dev": true, + "requires": { + "resize-detector": "^0.3.0", + "vue-demi": "^0.13.11" + } + }, + "vue-eslint-parser": { + "version": "8.3.0", + "resolved": "https://registry.npmmirror.com/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", + "dev": true, + "requires": { + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.5" + }, + "dependencies": { + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } + } + }, + "vue-i18n": { + "version": "9.4.1", + "resolved": "https://registry.npmmirror.com/vue-i18n/-/vue-i18n-9.4.1.tgz", + "integrity": "sha512-vnQyYE9LBuNOqPpETIcCaGnAyLEqfeIvDcyZ9T+WBCWFTqWw1J8FuF1jfeDwpHBi5JKgAwgXyq1mt8jp/x/GPA==", + "requires": { + "@intlify/core-base": "9.4.1", + "@intlify/shared": "9.4.1", + "@vue/devtools-api": "^6.5.0" + } + }, + "vue-router": { + "version": "4.0.12", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.0.12.tgz", + "integrity": "sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==", + "requires": { + "@vue/devtools-api": "^6.0.0-beta.18" + } + }, + "vue-tsc": { + "version": "0.28.10", + "resolved": "https://registry.npmmirror.com/vue-tsc/-/vue-tsc-0.28.10.tgz", + "integrity": "sha512-tGD7eC74MHqKH2/F66AYkC1zNiLrgnhMzeYWou3p/wApMaUEM4h29HqYoKN6uE+pq87uvq/penYqUSBXhIwLiA==", + "dev": true, + "requires": { + "@volar/shared": "0.28.10", + "vscode-vue-languageservice": "0.28.10" + } + }, + "vue3-lazyload": { + "version": "0.2.5-beta", + "resolved": "https://registry.npmmirror.com/vue3-lazyload/-/vue3-lazyload-0.2.5-beta.tgz", + "integrity": "sha512-GVhJfL9Hcu+AvWsYmUwODivvt+gzpT0ztgAzZaUduoiTaGCv/qzhr0VwAQXfjGF3XFYFyOJsHlAi3/WE0P8XTQ==" + }, + "vue3-sketch-ruler": { + "version": "1.3.9", + "resolved": "https://registry.npmmirror.com/vue3-sketch-ruler/-/vue3-sketch-ruler-1.3.9.tgz", + "integrity": "sha512-sLlxGWEJOgDWcX5i7AE20WzBxQ/GvGwNP+oVOIeiYoCPe/NPSU15WsWgtc0b/enGvUgwJexqtA/+QnH1okBc9A==" + }, + "vuedraggable": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/vuedraggable/-/vuedraggable-4.1.0.tgz", + "integrity": "sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==", + "requires": { + "sortablejs": "1.14.0" + } + }, + "vueuc": { + "version": "0.4.51", + "resolved": "https://registry.npmmirror.com/vueuc/-/vueuc-0.4.51.tgz", + "integrity": "sha512-pLiMChM4f+W8czlIClGvGBYo656lc2Y0/mXFSCydcSmnCR1izlKPGMgiYBGjbY9FDkFG8a2HEVz7t0DNzBWbDw==", + "requires": { + "@css-render/vue3-ssr": "^0.15.10", + "@juggle/resize-observer": "^3.3.1", + "css-render": "^0.15.10", + "evtd": "^0.2.4", + "seemly": "^0.3.6", + "vdirs": "^0.1.4", + "vooks": "^0.2.4" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmmirror.com/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, + "with": { + "version": "7.0.2", + "resolved": "https://registry.npmmirror.com/with/-/with-7.0.2.tgz", + "integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==", + "dev": true, + "requires": { + "@babel/parser": "^7.9.6", + "@babel/types": "^7.9.6", + "assert-never": "^1.2.1", + "babel-walk": "3.0.0-canary-5" + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "dependencies": { + "yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true + } + } + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + }, + "yn": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + }, + "zrender": { + "version": "5.4.4", + "resolved": "https://registry.npmmirror.com/zrender/-/zrender-5.4.4.tgz", + "integrity": "sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==", + "dev": true, + "requires": { + "tslib": "2.3.0" + }, + "dependencies": { + "tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==", + "dev": true + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..12adbbf --- /dev/null +++ b/package.json @@ -0,0 +1,85 @@ +{ + "name": "go-view", + "version": "2.1.6", + "engines": { + "node": ">=16.14 <18.0.0" + }, + "scripts": { + "dev": "vite --host", + "build": "vue-tsc --noEmit && vite build", + "preview": "vite preview", + "new": "plop --plopfile ./plop/plopfile.js", + "postinstall": "husky install", + "lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue src", + "lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.vue src --fix" + }, + "dependencies": { + "@amap/amap-jsapi-loader": "^1.0.1", + "@amap/amap-jsapi-types": "^0.0.8", + "@types/color": "^3.0.3", + "@types/crypto-js": "^4.1.1", + "@types/keymaster": "^1.6.30", + "@types/lodash": "^4.14.184", + "animate.css": "^4.1.1", + "axios": "^0.27.2", + "color": "^4.2.3", + "crypto-js": "^4.1.1", + "dom-helpers": "^5.2.1", + "echarts-liquidfill": "^3.1.0", + "echarts-stat": "^1.2.0", + "echarts-wordcloud": "^2.0.0", + "gsap": "^3.11.3", + "highlight.js": "^11.5.0", + "html2canvas": "^1.4.1", + "keymaster": "^1.6.2", + "monaco-editor": "^0.33.0", + "naive-ui": "2.34.3", + "pinia": "^2.0.13", + "screenfull": "^6.0.1", + "three": "^0.145.0", + "vue": "^3.2.31", + "vue-demi": "^0.13.1", + "vue-i18n": "^9.2.2", + "vue-router": "4.0.12", + "vue3-lazyload": "^0.2.5-beta", + "vue3-sketch-ruler": "^1.3.3", + "vuedraggable": "^4.1.0" + }, + "devDependencies": { + "@commitlint/cli": "^17.0.2", + "@commitlint/config-conventional": "^17.0.2", + "@types/node": "^16.11.26", + "@types/three": "^0.144.0", + "@typescript-eslint/eslint-plugin": "^5.18.0", + "@typescript-eslint/parser": "^5.18.0", + "@vicons/carbon": "^0.12.0", + "@vicons/ionicons5": "~0.11.0", + "@vitejs/plugin-vue": "^1.10.2", + "@vitejs/plugin-vue-jsx": "^1.3.9", + "@vue/compiler-sfc": "^3.2.31", + "@vueuse/core": "^7.7.1", + "commitlint": "^17.0.2", + "default-passive-events": "^2.0.0", + "echarts": "^5.3.2", + "eslint": "^8.12.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-vue": "^8.5.0", + "husky": "^8.0.1", + "lodash": "~4.17.21", + "mockjs": "^1.1.0", + "plop": "^3.0.5", + "prettier": "^2.6.2", + "sass": "^1.49.11", + "sass-loader": "^12.6.0", + "typescript": "4.6.3", + "vite": "2.9.9", + "vite-plugin-compression": "^0.5.1", + "vite-plugin-importer": "^0.2.5", + "vite-plugin-mock": "^2.9.6", + "vite-plugin-monaco-editor": "^1.1.0", + "vue-echarts": "^6.0.2", + "vue-tsc": "^0.28.10" + } +} diff --git a/plop/plopfile.js b/plop/plopfile.js new file mode 100644 index 0000000..91f625e --- /dev/null +++ b/plop/plopfile.js @@ -0,0 +1,5 @@ +const storeGenerator = require('./store-template/prompt') + +module.exports = (plop) => { + plop.setGenerator('store', storeGenerator) +} diff --git a/plop/store-template/index.d.hbs b/plop/store-template/index.d.hbs new file mode 100644 index 0000000..f916f3d --- /dev/null +++ b/plop/store-template/index.d.hbs @@ -0,0 +1,3 @@ +export interface {{upperDataName}}StoreType { + +} \ No newline at end of file diff --git a/plop/store-template/index.hbs b/plop/store-template/index.hbs new file mode 100644 index 0000000..5722a89 --- /dev/null +++ b/plop/store-template/index.hbs @@ -0,0 +1,11 @@ +import { defineStore } from 'pinia' +import { {{upperDataName}}StoreType } from './{{name}}Store.d' +import { setLocalStorage, getLocalStorage } from '@/utils' +import { StorageEnum } from '@/enums/storageEnum' + +export const use{{upperDataName}}Store = defineStore({ + id: 'use{{upperDataName}}Store', + state: (): {{upperDataName}}StoreType => ({}), + getters: {}, + actions: {} +}) \ No newline at end of file diff --git a/plop/store-template/prompt.js b/plop/store-template/prompt.js new file mode 100644 index 0000000..4fab8a8 --- /dev/null +++ b/plop/store-template/prompt.js @@ -0,0 +1,45 @@ +module.exports = { + description: 'create a store', + prompts: [ + { + type: 'input', + name: 'name', + message: 'Please enter store name,such as "newStoreName" :', + validate (value) { + if (!value || value.trim === '') { + return 'name is required'; + } + return true; + }, + } + ], + actions: (data) => { + const dataName = data.name + + // 首字母大写 + const upperDataName = dataName.slice(0, 1).toUpperCase() + dataName.slice(1) + + const actions = [ + { + type: 'add', + path: `${process.cwd()}/src/store/modules/${dataName}Store/${dataName}Store.ts`, // 这里的name就是上面定义的键 + templateFile: './store-template/index.hbs', + data: { + name: data.name, + upperDataName, + } + }, + { + type: 'add', + path: `${process.cwd()}/src/store/modules/${dataName}Store/${dataName}Store.d.ts`, // 这里的name就是上面定义的键 + templateFile: './store-template/index.d.hbs', + data: { + name: data.name, + upperDataName, + } + }, + ] + + return actions + } +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..a621628 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,6397 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + '@amap/amap-jsapi-loader': + specifier: ^1.0.1 + version: 1.0.1 + '@amap/amap-jsapi-types': + specifier: ^0.0.8 + version: 0.0.8 + '@types/color': + specifier: ^3.0.3 + version: 3.0.3 + '@types/crypto-js': + specifier: ^4.1.1 + version: 4.1.1 + '@types/keymaster': + specifier: ^1.6.30 + version: 1.6.30 + '@types/lodash': + specifier: ^4.14.184 + version: 4.14.185 + animate.css: + specifier: ^4.1.1 + version: 4.1.1 + axios: + specifier: ^0.27.2 + version: 0.27.2 + color: + specifier: ^4.2.3 + version: 4.2.3 + crypto-js: + specifier: ^4.1.1 + version: 4.1.1 + dom-helpers: + specifier: ^5.2.1 + version: 5.2.1 + echarts-liquidfill: + specifier: ^3.1.0 + version: 3.1.0(echarts@5.3.3) + echarts-stat: + specifier: ^1.2.0 + version: 1.2.0 + echarts-wordcloud: + specifier: ^2.0.0 + version: 2.0.0(echarts@5.3.3) + gsap: + specifier: ^3.11.3 + version: 3.11.3 + highlight.js: + specifier: ^11.5.0 + version: 11.5.1 + html2canvas: + specifier: ^1.4.1 + version: 1.4.1 + keymaster: + specifier: ^1.6.2 + version: 1.6.2 + monaco-editor: + specifier: ^0.33.0 + version: 0.33.0 + naive-ui: + specifier: 2.34.3 + version: 2.34.3(vue@3.2.37) + pinia: + specifier: ^2.0.13 + version: 2.0.14(typescript@4.6.3)(vue@3.2.37) + screenfull: + specifier: ^6.0.1 + version: 6.0.1 + three: + specifier: ^0.145.0 + version: 0.145.0 + vue: + specifier: ^3.2.31 + version: 3.2.37 + vue-demi: + specifier: ^0.13.1 + version: 0.13.1(vue@3.2.37) + vue-i18n: + specifier: ^9.2.2 + version: 9.2.2(vue@3.2.37) + vue-router: + specifier: 4.0.12 + version: 4.0.12(vue@3.2.37) + vue3-lazyload: + specifier: ^0.2.5-beta + version: 0.2.5-beta(@vue/compiler-sfc@3.2.37)(vue@3.2.37) + vue3-sketch-ruler: + specifier: ^1.3.3 + version: 1.3.4(vue@3.2.37) + vuedraggable: + specifier: ^4.1.0 + version: 4.1.0(vue@3.2.37) + +devDependencies: + '@commitlint/cli': + specifier: ^17.0.2 + version: 17.0.2 + '@commitlint/config-conventional': + specifier: ^17.0.2 + version: 17.0.2 + '@types/node': + specifier: ^16.11.26 + version: 16.11.40 + '@types/three': + specifier: ^0.144.0 + version: 0.144.0 + '@typescript-eslint/eslint-plugin': + specifier: ^5.18.0 + version: 5.28.0(@typescript-eslint/parser@5.28.0)(eslint@8.17.0)(typescript@4.6.3) + '@typescript-eslint/parser': + specifier: ^5.18.0 + version: 5.28.0(eslint@8.17.0)(typescript@4.6.3) + '@vicons/carbon': + specifier: ^0.12.0 + version: 0.12.0 + '@vicons/ionicons5': + specifier: ~0.11.0 + version: 0.11.0 + '@vitejs/plugin-vue': + specifier: ^1.10.2 + version: 1.10.2(vite@2.9.9) + '@vitejs/plugin-vue-jsx': + specifier: ^1.3.9 + version: 1.3.10 + '@vue/compiler-sfc': + specifier: ^3.2.31 + version: 3.2.37 + '@vueuse/core': + specifier: ^7.7.1 + version: 7.7.1(vue@3.2.37) + commitlint: + specifier: ^17.0.2 + version: 17.0.2 + default-passive-events: + specifier: ^2.0.0 + version: 2.0.0 + echarts: + specifier: ^5.3.2 + version: 5.3.3 + eslint: + specifier: ^8.12.0 + version: 8.17.0 + eslint-config-prettier: + specifier: ^8.5.0 + version: 8.5.0(eslint@8.17.0) + eslint-plugin-import: + specifier: ^2.26.0 + version: 2.26.0(@typescript-eslint/parser@5.28.0)(eslint@8.17.0) + eslint-plugin-prettier: + specifier: ^4.0.0 + version: 4.0.0(eslint-config-prettier@8.5.0)(eslint@8.17.0)(prettier@2.7.0) + eslint-plugin-vue: + specifier: ^8.5.0 + version: 8.7.1(eslint@8.17.0) + husky: + specifier: ^8.0.1 + version: 8.0.1 + lodash: + specifier: ~4.17.21 + version: 4.17.21 + mockjs: + specifier: ^1.1.0 + version: 1.1.0 + plop: + specifier: ^3.0.5 + version: 3.1.0 + prettier: + specifier: ^2.6.2 + version: 2.7.0 + sass: + specifier: ^1.49.11 + version: 1.52.3 + sass-loader: + specifier: ^12.6.0 + version: 12.6.0(sass@1.52.3)(webpack@5.88.2) + typescript: + specifier: 4.6.3 + version: 4.6.3 + vite: + specifier: 2.9.9 + version: 2.9.9(sass@1.52.3) + vite-plugin-compression: + specifier: ^0.5.1 + version: 0.5.1(vite@2.9.9) + vite-plugin-importer: + specifier: ^0.2.5 + version: 0.2.5 + vite-plugin-mock: + specifier: ^2.9.6 + version: 2.9.6(mockjs@1.1.0)(rollup@2.75.6)(vite@2.9.9) + vite-plugin-monaco-editor: + specifier: ^1.1.0 + version: 1.1.0(monaco-editor@0.33.0) + vue-echarts: + specifier: ^6.0.2 + version: 6.0.3(echarts@5.3.3)(vue@3.2.37) + vue-tsc: + specifier: ^0.28.10 + version: 0.28.10(typescript@4.6.3) + +packages: + + /@amap/amap-jsapi-loader@1.0.1: + resolution: {integrity: sha512-nPyLKt7Ow/ThHLkSvn2etQlUzqxmTVgK7bIgwdBRTg2HK5668oN7xVxkaiRe3YZEzGzfV2XgH5Jmu2T73ljejw==} + dev: false + + /@amap/amap-jsapi-types@0.0.8: + resolution: {integrity: sha512-q0FyZDIJcXjsMLGc3oS9rjfJsErOvt9rcp6AgzY4k14vo7bBhdq4eKwoSdVp/pYjR/rfaKBns5v10ycZOFwf/A==} + dev: false + + /@ampproject/remapping@2.2.0: + resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.1.1 + '@jridgewell/trace-mapping': 0.3.13 + dev: true + + /@babel/code-frame@7.16.7: + resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.17.12 + dev: true + + /@babel/compat-data@7.18.5: + resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/core@7.18.5: + resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2(@babel/core@7.18.5) + '@babel/helper-module-transforms': 7.18.0 + '@babel/helpers': 7.18.2 + '@babel/parser': 7.18.5 + '@babel/template': 7.16.7 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator@7.18.2: + resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + '@jridgewell/gen-mapping': 0.3.1 + jsesc: 2.5.2 + dev: true + + /@babel/helper-annotate-as-pure@7.16.7: + resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-compilation-targets@7.18.2(@babel/core@7.18.5): + resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.18.5 + '@babel/core': 7.18.5 + '@babel/helper-validator-option': 7.16.7 + browserslist: 4.20.4 + semver: 6.3.0 + dev: true + + /@babel/helper-create-class-features-plugin@7.18.0(@babel/core@7.18.5): + resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-annotate-as-pure': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-member-expression-to-functions': 7.17.7 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 + '@babel/helper-split-export-declaration': 7.16.7 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor@7.18.2: + resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-function-name@7.17.9: + resolution: {integrity: sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.16.7 + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-hoist-variables@7.16.7: + resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-member-expression-to-functions@7.17.7: + resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-module-imports@7.16.7: + resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-module-transforms@7.18.0: + resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-simple-access': 7.18.2 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/helper-validator-identifier': 7.16.7 + '@babel/template': 7.16.7 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-optimise-call-expression@7.16.7: + resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-plugin-utils@7.17.12: + resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-replace-supers@7.18.2: + resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-member-expression-to-functions': 7.17.7 + '@babel/helper-optimise-call-expression': 7.16.7 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access@7.18.2: + resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-split-export-declaration@7.16.7: + resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /@babel/helper-validator-identifier@7.16.7: + resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-option@7.16.7: + resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helpers@7.18.2: + resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.16.7 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight@7.17.12: + resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser@7.18.5: + resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.18.4 + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.18.5): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + dev: true + + /@babel/plugin-syntax-jsx@7.17.12(@babel/core@7.18.5): + resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + dev: true + + /@babel/plugin-syntax-typescript@7.17.12(@babel/core@7.18.5): + resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + dev: true + + /@babel/plugin-transform-typescript@7.18.4(@babel/core@7.18.5): + resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0(@babel/core@7.18.5) + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-typescript': 7.17.12(@babel/core@7.18.5) + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/runtime@7.20.6: + resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.11 + dev: false + + /@babel/template@7.16.7: + resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 + dev: true + + /@babel/traverse@7.18.5: + resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types@7.18.4: + resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + to-fast-properties: 2.0.0 + + /@commitlint/cli@17.0.2: + resolution: {integrity: sha512-Axe89Js0YzGGd4gxo3JLlF7yIdjOVpG1LbOorGc6PfYF+drBh14PvarSDLzyd2TNqdylUCq9wb9/A88ZjIdyhA==} + engines: {node: '>=v14'} + hasBin: true + dependencies: + '@commitlint/format': 17.0.0 + '@commitlint/lint': 17.0.0 + '@commitlint/load': 17.0.0 + '@commitlint/read': 17.0.0 + '@commitlint/types': 17.0.0 + execa: 5.1.1 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.5.1 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /@commitlint/config-conventional@17.0.2: + resolution: {integrity: sha512-MfP0I/JbxKkzo+HXWB7B3WstGS4BiniotU3d3xQ9gK8cR0DbeZ4MuyGCWF65YDyrcDTS3WlrJ3ndSPA1pqhoPw==} + engines: {node: '>=v14'} + dependencies: + conventional-changelog-conventionalcommits: 5.0.0 + dev: true + + /@commitlint/config-validator@17.0.0: + resolution: {integrity: sha512-78IQjoZWR4kDHp/U5y17euEWzswJpPkA9TDL5F6oZZZaLIEreWzrDZD5PWtM8MsSRl/K2LDU/UrzYju2bKLMpA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.0.0 + ajv: 6.12.6 + dev: true + + /@commitlint/ensure@17.0.0: + resolution: {integrity: sha512-M2hkJnNXvEni59S0QPOnqCKIK52G1XyXBGw51mvh7OXDudCmZ9tZiIPpU882p475Mhx48Ien1MbWjCP1zlyC0A==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.0.0 + lodash: 4.17.21 + dev: true + + /@commitlint/execute-rule@17.0.0: + resolution: {integrity: sha512-nVjL/w/zuqjCqSJm8UfpNaw66V9WzuJtQvEnCrK4jDw6qKTmZB+1JQ8m6BQVZbNBcwfYdDNKnhIhqI0Rk7lgpQ==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/format@17.0.0: + resolution: {integrity: sha512-MZzJv7rBp/r6ZQJDEodoZvdRM0vXu1PfQvMTNWFb8jFraxnISMTnPBWMMjr2G/puoMashwaNM//fl7j8gGV5lA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.0.0 + chalk: 4.1.2 + dev: true + + /@commitlint/is-ignored@17.0.0: + resolution: {integrity: sha512-UmacD0XM/wWykgdXn5CEWVS4XGuqzU+ZGvM2hwv85+SXGnIOaG88XHrt81u37ZeVt1riWW+YdOxcJW6+nd5v5w==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.0.0 + semver: 7.3.7 + dev: true + + /@commitlint/lint@17.0.0: + resolution: {integrity: sha512-5FL7VLvGJQby24q0pd4UdM8FNFcL+ER1T/UBf8A9KRL5+QXV1Rkl6Zhcl7+SGpGlVo6Yo0pm6aLW716LVKWLGg==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/is-ignored': 17.0.0 + '@commitlint/parse': 17.0.0 + '@commitlint/rules': 17.0.0 + '@commitlint/types': 17.0.0 + dev: true + + /@commitlint/load@17.0.0: + resolution: {integrity: sha512-XaiHF4yWQOPAI0O6wXvk+NYLtJn/Xb7jgZEeKd4C1ZWd7vR7u8z5h0PkWxSr0uLZGQsElGxv3fiZ32C5+q6M8w==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/config-validator': 17.0.0 + '@commitlint/execute-rule': 17.0.0 + '@commitlint/resolve-extends': 17.0.0 + '@commitlint/types': 17.0.0 + '@types/node': 17.0.43 + chalk: 4.1.2 + cosmiconfig: 7.0.1 + cosmiconfig-typescript-loader: 2.0.1(@types/node@17.0.43)(cosmiconfig@7.0.1)(typescript@4.7.3) + lodash: 4.17.21 + resolve-from: 5.0.0 + typescript: 4.7.3 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /@commitlint/message@17.0.0: + resolution: {integrity: sha512-LpcwYtN+lBlfZijHUdVr8aNFTVpHjuHI52BnfoV01TF7iSLnia0jttzpLkrLmI8HNQz6Vhr9UrxDWtKZiMGsBw==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/parse@17.0.0: + resolution: {integrity: sha512-cKcpfTIQYDG1ywTIr5AG0RAiLBr1gudqEsmAGCTtj8ffDChbBRxm6xXs2nv7GvmJN7msOt7vOKleLvcMmRa1+A==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.0.0 + conventional-changelog-angular: 5.0.13 + conventional-commits-parser: 3.2.4 + dev: true + + /@commitlint/read@17.0.0: + resolution: {integrity: sha512-zkuOdZayKX3J6F6mPnVMzohK3OBrsEdOByIqp4zQjA9VLw1hMsDEFQ18rKgUc2adkZar+4S01QrFreDCfZgbxA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/top-level': 17.0.0 + '@commitlint/types': 17.0.0 + fs-extra: 10.1.0 + git-raw-commits: 2.0.11 + dev: true + + /@commitlint/resolve-extends@17.0.0: + resolution: {integrity: sha512-wi60WiJmwaQ7lzMXK8Vbc18Hq9tE2j/6iv2AFfPUGV7fvfY6Sf1iNKuUHirSqR0fquUyufIXe4y/K9A6LVIIvw==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/config-validator': 17.0.0 + '@commitlint/types': 17.0.0 + import-fresh: 3.3.0 + lodash: 4.17.21 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/rules@17.0.0: + resolution: {integrity: sha512-45nIy3dERKXWpnwX9HeBzK5SepHwlDxdGBfmedXhL30fmFCkJOdxHyOJsh0+B0RaVsLGT01NELpfzJUmtpDwdQ==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/ensure': 17.0.0 + '@commitlint/message': 17.0.0 + '@commitlint/to-lines': 17.0.0 + '@commitlint/types': 17.0.0 + execa: 5.1.1 + dev: true + + /@commitlint/to-lines@17.0.0: + resolution: {integrity: sha512-nEi4YEz04Rf2upFbpnEorG8iymyH7o9jYIVFBG1QdzebbIFET3ir+8kQvCZuBE5pKCtViE4XBUsRZz139uFrRQ==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/top-level@17.0.0: + resolution: {integrity: sha512-dZrEP1PBJvodNWYPOYiLWf6XZergdksKQaT6i1KSROLdjf5Ai0brLOv5/P+CPxBeoj3vBxK4Ax8H1Pg9t7sHIQ==} + engines: {node: '>=v14'} + dependencies: + find-up: 5.0.0 + dev: true + + /@commitlint/types@17.0.0: + resolution: {integrity: sha512-hBAw6U+SkAT5h47zDMeOu3HSiD0SODw4Aq7rRNh1ceUmL7GyLKYhPbUvlRWqZ65XjBLPHZhFyQlRaPNz8qvUyQ==} + engines: {node: '>=v14'} + dependencies: + chalk: 4.1.2 + dev: true + + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + dev: true + + /@css-render/plugin-bem@0.15.10(css-render@0.15.10): + resolution: {integrity: sha512-V7b08sM2PWJlXI7BJiVIa0Sg30H3u/jHay4AclNXfF2yRFwwb4ZJjggsMfzwj3WSihAdNf2WTqvOU5qsOD80Dg==} + peerDependencies: + css-render: ~0.15.10 + dependencies: + css-render: 0.15.10 + dev: false + + /@css-render/vue3-ssr@0.15.10(vue@3.2.37): + resolution: {integrity: sha512-keGKnkB2nyVGoA8GezMKNsmvTGXEzgLOGGlgshwOTSEzd1dsROyZ2m/khJ9jV5zbzDM4rWeAWbWF0zwHemsJcw==} + peerDependencies: + vue: ^3.0.11 + dependencies: + vue: 3.2.37 + dev: false + + /@emmetio/abbreviation@2.2.3: + resolution: {integrity: sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==} + dependencies: + '@emmetio/scanner': 1.0.0 + dev: true + + /@emmetio/css-abbreviation@2.1.4: + resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==} + dependencies: + '@emmetio/scanner': 1.0.0 + dev: true + + /@emmetio/scanner@1.0.0: + resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==} + dev: true + + /@emotion/hash@0.8.0: + resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + dev: false + + /@eslint/eslintrc@1.3.0: + resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.3.2 + globals: 13.15.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array@0.9.5: + resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@intlify/core-base@9.2.2: + resolution: {integrity: sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==} + engines: {node: '>= 14'} + dependencies: + '@intlify/devtools-if': 9.2.2 + '@intlify/message-compiler': 9.2.2 + '@intlify/shared': 9.2.2 + '@intlify/vue-devtools': 9.2.2 + dev: false + + /@intlify/devtools-if@9.2.2: + resolution: {integrity: sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==} + engines: {node: '>= 14'} + dependencies: + '@intlify/shared': 9.2.2 + dev: false + + /@intlify/message-compiler@9.2.2: + resolution: {integrity: sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==} + engines: {node: '>= 14'} + dependencies: + '@intlify/shared': 9.2.2 + source-map: 0.6.1 + dev: false + + /@intlify/shared@9.2.2: + resolution: {integrity: sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==} + engines: {node: '>= 14'} + dev: false + + /@intlify/vue-devtools@9.2.2: + resolution: {integrity: sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==} + engines: {node: '>= 14'} + dependencies: + '@intlify/core-base': 9.2.2 + '@intlify/shared': 9.2.2 + dev: false + + /@jridgewell/gen-mapping@0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.13 + dev: true + + /@jridgewell/gen-mapping@0.3.1: + resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.13 + '@jridgewell/trace-mapping': 0.3.13 + dev: true + + /@jridgewell/resolve-uri@3.0.7: + resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array@1.1.1: + resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/sourcemap-codec@1.4.13: + resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} + dev: true + + /@jridgewell/trace-mapping@0.3.13: + resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 + dev: true + + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 + dev: true + + /@juggle/resize-observer@3.3.1: + resolution: {integrity: sha512-zMM9Ds+SawiUkakS7y94Ymqx+S0ORzpG3frZirN3l+UlXUmSUR7hF4wxCVqW+ei94JzV5kt0uXBcoOEAuiydrw==} + dev: false + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.13.0 + dev: true + + /@rollup/plugin-node-resolve@13.3.0(rollup@2.75.6): + resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} + engines: {node: '>= 10.0.0'} + peerDependencies: + rollup: ^2.42.0 + dependencies: + '@rollup/pluginutils': 3.1.0(rollup@2.75.6) + '@types/resolve': 1.17.1 + deepmerge: 4.2.2 + is-builtin-module: 3.1.0 + is-module: 1.0.0 + resolve: 1.22.0 + rollup: registry.npmmirror.com/rollup@2.75.6 + dev: true + + /@rollup/pluginutils@3.1.0(rollup@2.75.6): + resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} + engines: {node: '>= 8.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0 + dependencies: + '@types/estree': 0.0.39 + estree-walker: 1.0.1 + picomatch: 2.3.1 + rollup: registry.npmmirror.com/rollup@2.75.6 + dev: true + + /@rollup/pluginutils@4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@tsconfig/node10@1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + dev: true + + /@tsconfig/node12@1.0.10: + resolution: {integrity: sha512-N+srakvPaYMGkwjNDx3ASx65Zl3QG8dJgVtIB+YMOkucU+zctlv/hdP5250VKdDHSDoW9PFZoCqbqNcAPjCjXA==} + dev: true + + /@tsconfig/node14@1.0.2: + resolution: {integrity: sha512-YwrUA5ysDXHFYfL0Xed9x3sNS4P+aKlCOnnbqUa2E5HdQshHFleCJVrj1PlGTb4GgFUCDyte1v3JWLy2sz8Oqg==} + dev: true + + /@tsconfig/node16@1.0.3: + resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + dev: true + + /@types/color-convert@2.0.0: + resolution: {integrity: sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==} + dependencies: + '@types/color-name': 1.1.1 + dev: false + + /@types/color-name@1.1.1: + resolution: {integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==} + dev: false + + /@types/color@3.0.3: + resolution: {integrity: sha512-X//qzJ3d3Zj82J9sC/C18ZY5f43utPbAJ6PhYt/M7uG6etcF6MRpKdN880KBy43B0BMzSfeT96MzrsNjFI3GbA==} + dependencies: + '@types/color-convert': 2.0.0 + dev: false + + /@types/crypto-js@4.1.1: + resolution: {integrity: sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==} + dev: false + + /@types/estree@0.0.39: + resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} + dev: true + + /@types/fined@1.1.3: + resolution: {integrity: sha512-CWYnSRnun3CGbt6taXeVo2lCbuaj4mchVJ4UF/BdU5TSuIn3AmS13pGMwCsBUoehGbhZrBrpNJZSZI5EVilXww==} + dev: true + + /@types/inquirer@8.2.1: + resolution: {integrity: sha512-wKW3SKIUMmltbykg4I5JzCVzUhkuD9trD6efAmYgN2MrSntY0SMRQzEnD3mkyJ/rv9NLbTC7g3hKKE86YwEDLw==} + dependencies: + '@types/through': 0.0.30 + rxjs: 7.5.5 + dev: true + + /@types/json-schema@7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + dev: true + + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true + + /@types/katex@0.14.0: + resolution: {integrity: sha512-+2FW2CcT0K3P+JMR8YG846bmDwplKUTsWgT2ENwdQ1UdVfRk3GQrh6Mi4sTopy30gI8Uau5CEqHTDZ6YvWIUPA==} + dev: false + + /@types/keymaster@1.6.30: + resolution: {integrity: sha512-mtL/NuDBX72zmyIa3cYHA1bQj1WAYlSC4eZcIQj+DHJkcRyTRF2XJXo7DBmkkY8TEq7XaAf7B8TGxs5PHhjRtw==} + dev: false + + /@types/liftoff@4.0.0: + resolution: {integrity: sha512-Ny/PJkO6nxWAQnaet8q/oWz15lrfwvdvBpuY4treB0CSsBO1CG0fVuNLngR3m3bepQLd+E4c3Y3DlC2okpUvPw==} + dependencies: + '@types/fined': 1.1.3 + '@types/node': 17.0.43 + dev: true + + /@types/lodash-es@4.17.6: + resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==} + dependencies: + '@types/lodash': 4.14.185 + dev: false + + /@types/lodash@4.14.185: + resolution: {integrity: sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA==} + dev: false + + /@types/minimist@1.2.2: + resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + dev: true + + /@types/mockjs@1.0.6: + resolution: {integrity: sha512-Yu5YlqbYZyqsd6LjO4e8ONJDN9pTSnciHDcRP4teNOh/au2b8helFhgRx+3w8xsTFEnwr9jtfTVJbAx+eYmlHA==} + dev: true + + /@types/node@16.11.40: + resolution: {integrity: sha512-7bOWglXUO6f21NG3YDI7hIpeMX3M59GG+DzZuzX2EkFKYUnRoxq3EOg4R0KNv2hxryY9M3UUqG5akwwsifrukw==} + dev: true + + /@types/node@17.0.43: + resolution: {integrity: sha512-jnUpgw8fL9kP2iszfIDyBQtw5Mf4/XSqy0Loc1J9pI14ejL83XcCEvSf50Gs/4ET0I9VCCDoOfufQysj0S66xA==} + + /@types/normalize-package-data@2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + dev: true + + /@types/parse-json@4.0.0: + resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + dev: true + + /@types/resolve@1.17.1: + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + dependencies: + '@types/node': 17.0.43 + dev: true + + /@types/three@0.144.0: + resolution: {integrity: sha512-psvEs6q5rLN50jUYZ3D4pZMfxTbdt3A243blt0my7/NcL6chaCZpHe2csbCtx0SOD9fI/XnF3wnVUAYZGqCSYg==} + dependencies: + '@types/webxr': 0.5.0 + dev: true + + /@types/through@0.0.30: + resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} + dependencies: + '@types/node': 17.0.43 + dev: true + + /@types/webxr@0.5.0: + resolution: {integrity: sha512-IUMDPSXnYIbEO2IereEFcgcqfDREOgmbGqtrMpVPpACTU6pltYLwHgVkrnYv0XhWEcjio9sYEfIEzgn3c7nDqA==} + dev: true + + /@typescript-eslint/eslint-plugin@5.28.0(@typescript-eslint/parser@5.28.0)(eslint@8.17.0)(typescript@4.6.3): + resolution: {integrity: sha512-DXVU6Cg29H2M6EybqSg2A+x8DgO9TCUBRp4QEXQHJceLS7ogVDP0g3Lkg/SZCqcvkAP/RruuQqK0gdlkgmhSUA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.28.0(eslint@8.17.0)(typescript@4.6.3) + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/type-utils': 5.28.0(eslint@8.17.0)(typescript@4.6.3) + '@typescript-eslint/utils': 5.28.0(eslint@8.17.0)(typescript@4.6.3) + debug: 4.3.4 + eslint: 8.17.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.6.3) + typescript: 4.6.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.28.0(eslint@8.17.0)(typescript@4.6.3): + resolution: {integrity: sha512-ekqoNRNK1lAcKhZESN/PdpVsWbP9jtiNqzFWkp/yAUdZvJalw2heCYuqRmM5eUJSIYEkgq5sGOjq+ZqsLMjtRA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/typescript-estree': 5.28.0(typescript@4.6.3) + debug: 4.3.4 + eslint: 8.17.0 + typescript: 4.6.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@5.28.0: + resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/visitor-keys': 5.28.0 + dev: true + + /@typescript-eslint/type-utils@5.28.0(eslint@8.17.0)(typescript@4.6.3): + resolution: {integrity: sha512-SyKjKh4CXPglueyC6ceAFytjYWMoPHMswPQae236zqe1YbhvCVQyIawesYywGiu98L9DwrxsBN69vGIVxJ4mQQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/utils': 5.28.0(eslint@8.17.0)(typescript@4.6.3) + debug: 4.3.4 + eslint: 8.17.0 + tsutils: 3.21.0(typescript@4.6.3) + typescript: 4.6.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@5.28.0: + resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree@5.28.0(typescript@4.6.3): + resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/visitor-keys': 5.28.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.6.3) + typescript: 4.6.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.28.0(eslint@8.17.0)(typescript@4.6.3): + resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/typescript-estree': 5.28.0(typescript@4.6.3) + eslint: 8.17.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.17.0) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@5.28.0: + resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.28.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /@vicons/carbon@0.12.0: + resolution: {integrity: sha512-kCOgr/ZOhZzoiFLJ8pwxMa2TMxrkCUOA22qExPabus35F4+USqzcsxaPoYtqRd9ROOYiHrSqwapak/ywF0D9bg==} + dev: true + + /@vicons/ionicons5@0.11.0: + resolution: {integrity: sha512-4IWamqtXUsuCdlW6NQc2xyoJ+PUXGMwzSrppQbdVCYg0pjYld89jOfLOIkuTWq8o2XUa+Q1/78jzWBtXMTojNg==} + dev: true + + /@vitejs/plugin-vue-jsx@1.3.10: + resolution: {integrity: sha512-Cf5zznh4yNMiEMBfTOztaDVDmK1XXfgxClzOSUVUc8WAmHzogrCUeM8B05ABzuGtg0D1amfng+mUmSIOFGP3Pw==} + engines: {node: '>=12.0.0'} + dependencies: + '@babel/core': 7.18.5 + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.5) + '@babel/plugin-transform-typescript': 7.18.4(@babel/core@7.18.5) + '@rollup/pluginutils': 4.2.1 + '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.18.5) + hash-sum: 2.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@vitejs/plugin-vue@1.10.2(vite@2.9.9): + resolution: {integrity: sha512-/QJ0Z9qfhAFtKRY+r57ziY4BSbGUTGsPRMpB/Ron3QPwBZM4OZAZHdTa4a8PafCwU5DTatXG8TMDoP8z+oDqJw==} + engines: {node: '>=12.0.0'} + peerDependencies: + vite: ^2.5.10 + dependencies: + vite: 2.9.9(sass@1.52.3) + dev: true + + /@volar/code-gen@0.28.10: + resolution: {integrity: sha512-MybgBubg1im4MiFoiTUMmxKTC+KZJQfIO5g/TVnysEsCr4ssG0lG1rF3Gg3lbQKefdMiqsH5FNuMyqLC/bsWQg==} + dependencies: + '@volar/shared': 0.28.10 + '@volar/source-map': 0.28.10 + dev: true + + /@volar/html2pug@0.28.10: + resolution: {integrity: sha512-orcNnKyUPZZVb7pRvRHU7R8gk4abKZQELT0zXt2T7EbC5B8usmWNav6Sis9kVzV5Etj5h/IYutv7Df7PiKwLOQ==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + htmlparser2: 7.2.0 + pug: 3.0.2 + dev: true + + /@volar/shared@0.28.10: + resolution: {integrity: sha512-MzBEfBM5E5q4EfOd8Gkqmo+XTfbXiuT8IEWtfmpS8ax3GVeofkeAgzK/TadkatW/Nb2cKOaCYkmILpFKvDnDRQ==} + dependencies: + upath: 2.0.1 + vscode-jsonrpc: 8.0.1 + vscode-uri: 3.0.3 + dev: true + + /@volar/source-map@0.28.10: + resolution: {integrity: sha512-hQ2gclwP7yvZIdaVEC1LixViDPIO6JGkCBxAS8Erg9p2d0ruTyzazfd0NLaLuHLoMnxExILYNK2W05yQmIpRIA==} + dependencies: + '@volar/shared': 0.28.10 + dev: true + + /@volar/transforms@0.28.10: + resolution: {integrity: sha512-GOQN3amI733oFweKKjuBBOEOMwy0e/aEAnnJNavrrHa7LY6Ke/JfNsoWhi9Pb2FAPYd+WyruDDFX8yKHjQE1xw==} + dependencies: + '@volar/shared': 0.28.10 + vscode-languageserver: 8.0.1 + dev: true + + /@vscode/emmet-helper@2.8.4: + resolution: {integrity: sha512-lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg==} + dependencies: + emmet: 2.3.6 + jsonc-parser: 2.3.1 + vscode-languageserver-textdocument: 1.0.5 + vscode-languageserver-types: 3.17.1 + vscode-nls: 5.0.1 + vscode-uri: 2.1.2 + dev: true + + /@vue/babel-helper-vue-transform-on@1.0.2: + resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} + dev: true + + /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.18.5): + resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} + dependencies: + '@babel/helper-module-imports': 7.16.7 + '@babel/plugin-syntax-jsx': 7.17.12(@babel/core@7.18.5) + '@babel/template': 7.16.7 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + '@vue/babel-helper-vue-transform-on': 1.0.2 + camelcase: 6.3.0 + html-tags: 3.2.0 + svg-tags: 1.0.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + + /@vue/compiler-core@3.2.37: + resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==} + dependencies: + '@babel/parser': 7.18.5 + '@vue/shared': 3.2.37 + estree-walker: 2.0.2 + source-map: 0.6.1 + + /@vue/compiler-dom@3.2.37: + resolution: {integrity: sha512-yxJLH167fucHKxaqXpYk7x8z7mMEnXOw3G2q62FTkmsvNxu4FQSu5+3UMb+L7fjKa26DEzhrmCxAgFLLIzVfqQ==} + dependencies: + '@vue/compiler-core': 3.2.37 + '@vue/shared': 3.2.37 + + /@vue/compiler-sfc@3.2.37: + resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==} + dependencies: + '@babel/parser': 7.18.5 + '@vue/compiler-core': 3.2.37 + '@vue/compiler-dom': 3.2.37 + '@vue/compiler-ssr': 3.2.37 + '@vue/reactivity-transform': 3.2.37 + '@vue/shared': 3.2.37 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.14 + source-map: 0.6.1 + + /@vue/compiler-ssr@3.2.37: + resolution: {integrity: sha512-7mQJD7HdXxQjktmsWp/J67lThEIcxLemz1Vb5I6rYJHR5vI+lON3nPGOH3ubmbvYGt8xEUaAr1j7/tIFWiEOqw==} + dependencies: + '@vue/compiler-dom': 3.2.37 + '@vue/shared': 3.2.37 + + /@vue/devtools-api@6.1.4: + resolution: {integrity: sha512-IiA0SvDrJEgXvVxjNkHPFfDx6SXw0b/TUkqMcDZWNg9fnCAHbTpoo59YfJ9QLFkwa3raau5vSlRVzMSLDnfdtQ==} + dev: false + + /@vue/devtools-api@6.4.5: + resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==} + dev: false + + /@vue/reactivity-transform@3.2.37: + resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==} + dependencies: + '@babel/parser': 7.18.5 + '@vue/compiler-core': 3.2.37 + '@vue/shared': 3.2.37 + estree-walker: 2.0.2 + magic-string: 0.25.9 + + /@vue/reactivity@3.2.37: + resolution: {integrity: sha512-/7WRafBOshOc6m3F7plwzPeCu/RCVv9uMpOwa/5PiY1Zz+WLVRWiy0MYKwmg19KBdGtFWsmZ4cD+LOdVPcs52A==} + dependencies: + '@vue/shared': 3.2.37 + + /@vue/runtime-core@3.2.37: + resolution: {integrity: sha512-JPcd9kFyEdXLl/i0ClS7lwgcs0QpUAWj+SKX2ZC3ANKi1U4DOtiEr6cRqFXsPwY5u1L9fAjkinIdB8Rz3FoYNQ==} + dependencies: + '@vue/reactivity': 3.2.37 + '@vue/shared': 3.2.37 + + /@vue/runtime-dom@3.2.37: + resolution: {integrity: sha512-HimKdh9BepShW6YozwRKAYjYQWg9mQn63RGEiSswMbW+ssIht1MILYlVGkAGGQbkhSh31PCdoUcfiu4apXJoPw==} + dependencies: + '@vue/runtime-core': 3.2.37 + '@vue/shared': 3.2.37 + csstype: 2.6.20 + + /@vue/server-renderer@3.2.37(vue@3.2.37): + resolution: {integrity: sha512-kLITEJvaYgZQ2h47hIzPh2K3jG8c1zCVbp/o/bzQOyvzaKiCquKS7AaioPI28GNxIsE/zSx+EwWYsNxDCX95MA==} + peerDependencies: + vue: 3.2.37 + dependencies: + '@vue/compiler-ssr': 3.2.37 + '@vue/shared': 3.2.37 + vue: 3.2.37 + + /@vue/shared@3.2.37: + resolution: {integrity: sha512-4rSJemR2NQIo9Klm1vabqWjD8rs/ZaJSzMxkMNeJS6lHiUjjUeYFbooN19NgFjztubEKh3WlZUeOLVdbbUWHsw==} + + /@vueuse/core@7.7.1(vue@3.2.37): + resolution: {integrity: sha512-PRRgbATMpoeUmkCEBtUeJgOwtew8s+4UsEd+Pm7MhkjL2ihCNrSqxNVtM6NFE4uP2sWnkGcZpCjPuNSxowJ1Ow==} + peerDependencies: + '@vue/composition-api': ^1.1.0 + vue: ^2.6.0 || ^3.2.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + vue: + optional: true + dependencies: + '@vueuse/shared': 7.7.1(vue@3.2.37) + vue: 3.2.37 + vue-demi: 0.13.1(vue@3.2.37) + dev: true + + /@vueuse/shared@7.7.1(vue@3.2.37): + resolution: {integrity: sha512-rN2qd22AUl7VdBxihagWyhUNHCyVk9IpvBTTfHoLH9G7rGE552X1f+zeCfehuno0zXif13jPw+icW/wn2a0rnQ==} + peerDependencies: + '@vue/composition-api': ^1.1.0 + vue: ^2.6.0 || ^3.2.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + vue: + optional: true + dependencies: + vue: 3.2.37 + vue-demi: 0.13.1(vue@3.2.37) + dev: true + + /JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /acorn-jsx@5.3.2(acorn@8.7.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.7.1 + dev: true + + /acorn-walk@8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + dev: true + + /acorn@7.4.1: + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /acorn@8.7.1: + resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + dev: true + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /animate.css@4.1.1: + resolution: {integrity: sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==} + dev: false + + /ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /anymatch@3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + dev: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /array-each@1.0.1: + resolution: {integrity: sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==} + engines: {node: '>=0.10.0'} + dev: true + + /array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true + + /array-includes@3.1.5: + resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + is-string: 1.0.7 + dev: true + + /array-slice@1.1.0: + resolution: {integrity: sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==} + engines: {node: '>=0.10.0'} + dev: true + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array.prototype.flat@1.3.0: + resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + dev: true + + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /asap@2.0.6: + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + dev: true + + /assert-never@1.2.1: + resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} + dev: true + + /async-validator@4.1.1: + resolution: {integrity: sha512-p4DO/JXwjs8klJyJL8Q2oM4ks5fUTze/h5k10oPPKMiLe1fj3G1QMzPHNmN1Py4ycOk7WlO2DcGXv1qiESJCZA==} + dev: false + + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: false + + /axios@0.27.2: + resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} + dependencies: + follow-redirects: 1.15.1 + form-data: 4.0.0 + transitivePeerDependencies: + - debug + dev: false + + /babel-plugin-import@1.13.5: + resolution: {integrity: sha512-IkqnoV+ov1hdJVofly9pXRJmeDm9EtROfrc5i6eII0Hix2xMs5FEm8FG3ExMvazbnZBbgHIt6qdO8And6lCloQ==} + dependencies: + '@babel/helper-module-imports': 7.16.7 + dev: true + + /babel-walk@3.0.0-canary-5: + resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} + engines: {node: '>= 10.0.0'} + dependencies: + '@babel/types': 7.18.4 + dev: true + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base64-arraybuffer@1.0.2: + resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==} + engines: {node: '>= 0.6.0'} + dev: false + + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true + + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /bl@5.0.0: + resolution: {integrity: sha512-8vxFNZ0pflFfi0WXA3WQXlj6CaMEwsmh63I1CNp0q+wWv8sD0ARx1KovSQd0l2GkwrMIOyedq0EF1FxI+RCZLQ==} + dependencies: + buffer: 6.0.3 + inherits: 2.0.4 + readable-stream: 3.6.0 + dev: true + + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist@4.20.4: + resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001354 + electron-to-chromium: 1.4.155 + escalade: 3.1.1 + node-releases: 2.0.5 + picocolors: 1.0.0 + dev: true + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /buffer@6.0.3: + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true + + /call-bind@1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.2 + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camel-case@4.1.2: + resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} + dependencies: + pascal-case: 3.1.2 + tslib: 2.4.0 + dev: true + + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /caniuse-lite@1.0.30001354: + resolution: {integrity: sha512-mImKeCkyGDAHNywYFA4bqnLAzTUvVkqPvhY4DV47X+Gl2c5Z8c3KNETnXp14GQt11LvxE8AwjzGxJ+rsikiOzg==} + dev: true + + /capital-case@1.0.4: + resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + upper-case-first: 2.0.2 + dev: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /chalk@5.0.1: + resolution: {integrity: sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: true + + /change-case@4.1.2: + resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} + dependencies: + camel-case: 4.1.2 + capital-case: 1.0.4 + constant-case: 3.0.4 + dot-case: 3.0.4 + header-case: 2.0.4 + no-case: 3.0.4 + param-case: 3.0.4 + pascal-case: 3.1.2 + path-case: 3.0.4 + sentence-case: 3.0.4 + snake-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /character-parser@2.2.0: + resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} + dependencies: + is-regex: 1.1.4 + dev: true + + /chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + dev: true + + /chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents@2.3.2 + dev: true + + /clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + dev: true + + /cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + dependencies: + restore-cursor: 3.1.0 + dev: true + + /cli-cursor@4.0.0: + resolution: {integrity: sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + restore-cursor: 4.0.0 + dev: true + + /cli-spinners@2.6.1: + resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} + engines: {node: '>=6'} + dev: true + + /cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + dev: true + + /cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + dev: true + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + /color-string@1.9.1: + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + dependencies: + color-name: 1.1.4 + simple-swizzle: 0.2.2 + dev: false + + /color@4.2.3: + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} + dependencies: + color-convert: 2.0.1 + color-string: 1.9.1 + dev: false + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: false + + /commander@9.3.0: + resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} + engines: {node: ^12.20.0 || >=14} + dev: true + + /commitlint@17.0.2: + resolution: {integrity: sha512-7SKvi162t7F1WiNIZDtxLWYzMIqE0YNHVICyZ95CpFNdyGlJy8WpGojiTyCEzL2zX7V6oId+aBz6hy2P4qPpHw==} + engines: {node: '>=v14'} + hasBin: true + dependencies: + '@commitlint/cli': 17.0.2 + '@commitlint/types': 17.0.0 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /connect@3.7.0: + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} + dependencies: + debug: 2.6.9 + finalhandler: 1.1.2 + parseurl: 1.3.3 + utils-merge: 1.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /constant-case@3.0.4: + resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + upper-case: 2.0.2 + dev: true + + /constantinople@4.0.1: + resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} + dependencies: + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 + dev: true + + /conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-conventionalcommits@5.0.0: + resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /convert-source-map@1.8.0: + resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + dependencies: + safe-buffer: 5.1.2 + dev: true + + /cosmiconfig-typescript-loader@2.0.1(@types/node@17.0.43)(cosmiconfig@7.0.1)(typescript@4.7.3): + resolution: {integrity: sha512-B9s6sX/omXq7I6gC6+YgLmrBFMJhPWew7ty/X5Tuwtd2zOSgWaUdXjkuVwbe3qqcdETo60+1nSVMekq//LIXVA==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=7' + typescript: '>=3' + dependencies: + '@types/node': 17.0.43 + cosmiconfig: 7.0.1 + ts-node: 10.8.1(@types/node@17.0.43)(typescript@4.7.3) + typescript: 4.7.3 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /cosmiconfig@7.0.1: + resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==} + engines: {node: '>=10'} + dependencies: + '@types/parse-json': 4.0.0 + import-fresh: 3.3.0 + parse-json: 5.2.0 + path-type: 4.0.0 + yaml: 1.10.2 + dev: true + + /create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /crypto-js@4.1.1: + resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==} + dev: false + + /css-line-break@2.1.0: + resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==} + dependencies: + utrie: 1.0.2 + dev: false + + /css-render@0.15.10: + resolution: {integrity: sha512-6j5acvm81sXTHJiF47FNNICtDpF74YoWk1xEK3qQvdqgW6vc+OXrPqflL6m8f5GE6XuFYrbACNEd17kraCSBAQ==} + dependencies: + '@emotion/hash': 0.8.0 + '@types/node': 17.0.43 + csstype: 3.0.11 + dev: false + + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /csstype@2.6.20: + resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} + + /csstype@3.0.11: + resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==} + dev: false + + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + + /date-fns-tz@1.3.4(date-fns@2.28.0): + resolution: {integrity: sha512-O47vEyz85F2ax/ZdhMBJo187RivZGjH6V0cPjPzpm/yi6YffJg4upD/8ibezO11ezZwP3QYlBHh/t4JhRNx0Ow==} + peerDependencies: + date-fns: '>=2.0.0' + dependencies: + date-fns: 2.28.0 + dev: false + + /date-fns@2.28.0: + resolution: {integrity: sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==} + engines: {node: '>=0.11'} + dev: false + + /debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + dev: true + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /decamelize-keys@1.1.0: + resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /deepmerge@4.2.2: + resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} + engines: {node: '>=0.10.0'} + dev: true + + /default-passive-events@2.0.0: + resolution: {integrity: sha512-eMtt76GpDVngZQ3ocgvRcNCklUMwID1PaNbCNxfpDXuiOXttSh0HzBbda1HU9SIUsDc02vb7g9+3I5tlqe/qMQ==} + dev: true + + /defaults@1.0.3: + resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} + dependencies: + clone: 1.0.4 + dev: true + + /define-properties@1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /del@6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} + dependencies: + globby: 11.1.0 + graceful-fs: registry.npmmirror.com/graceful-fs@4.2.10 + is-glob: 4.0.3 + is-path-cwd: 2.2.0 + is-path-inside: 3.0.3 + p-map: 4.0.0 + rimraf: 3.0.2 + slash: 3.0.0 + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: false + + /detect-file@1.0.0: + resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==} + engines: {node: '>=0.10.0'} + dev: true + + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + dev: true + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctypes@1.1.0: + resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} + dev: true + + /dom-helpers@5.2.1: + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + dependencies: + '@babel/runtime': 7.20.6 + csstype: 3.0.11 + dev: false + + /dom-serializer@1.4.1: + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + entities: 2.2.0 + dev: true + + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domhandler@4.3.1: + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils@2.8.0: + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + dependencies: + dom-serializer: 1.4.1 + domelementtype: 2.3.0 + domhandler: 4.3.1 + dev: true + + /dot-case@3.0.4: + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /echarts-liquidfill@3.1.0(echarts@5.3.3): + resolution: {integrity: sha512-5Dlqs/jTsdTUAsd+K5LPLLTgrbbNORUSBQyk8PSy1Mg2zgHDWm83FmvA4s0ooNepCJojFYRITTQ4GU1UUSKYLw==} + peerDependencies: + echarts: ^5.0.1 + dependencies: + echarts: 5.3.3 + dev: false + + /echarts-stat@1.2.0: + resolution: {integrity: sha512-zLd7Kgs+tuTSeaK0VQEMNmnMivEkhvHIk1gpBtLzpRerfcIQ+Bd5XudOMmtwpaTc1WDZbA7d1V//iiBccR46Qg==} + dev: false + + /echarts-wordcloud@2.0.0(echarts@5.3.3): + resolution: {integrity: sha512-K7l6pTklqdW7ZWzT/1CS0KhBSINr/cd7c5N1fVMzZMwLQHEwT7x+nivK7g5hkVh7WNcAv4Dn6/ZS5zMKRozC1g==} + peerDependencies: + echarts: ^5.0.1 + dependencies: + echarts: 5.3.3 + dev: false + + /echarts@5.3.3: + resolution: {integrity: sha512-BRw2serInRwO5SIwRviZ6Xgm5Lb7irgz+sLiFMmy/HOaf4SQ+7oYqxKzRHAKp4xHQ05AuHw1xvoQWJjDQq/FGw==} + dependencies: + tslib: 2.3.0 + zrender: 5.3.2 + + /ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + dev: true + + /electron-to-chromium@1.4.155: + resolution: {integrity: sha512-niPzKBSYPG06gxLKO0c2kEmgdRMTtIbNrBlvD31Ld8Q57b/K0218U4j8u/OOt25XE1eFOn47FcmQVdx9R1qqxA==} + dev: true + + /emmet@2.3.6: + resolution: {integrity: sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==} + dependencies: + '@emmetio/abbreviation': 2.2.3 + '@emmetio/css-abbreviation': 2.1.4 + dev: true + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + dev: true + + /entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + dev: true + + /entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + dev: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.20.1: + resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.2 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.2 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + dev: true + + /es-shim-unscopables@1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /esbuild@0.11.3: + resolution: {integrity: sha512-BzVRHcCtFepjS9WcqRjqoIxLqgpK21a8J4Zi4msSGxDxiXVO1IbcqT1KjhdDDnJxKfe7bvzZrvMEX+bVO0Elcw==} + hasBin: true + requiresBuild: true + dev: true + + /esbuild@0.14.43: + resolution: {integrity: sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + esbuild-android-64: registry.npmmirror.com/esbuild-android-64@0.14.43 + esbuild-android-arm64: registry.npmmirror.com/esbuild-android-arm64@0.14.43 + esbuild-darwin-64: registry.npmmirror.com/esbuild-darwin-64@0.14.43 + esbuild-darwin-arm64: registry.npmmirror.com/esbuild-darwin-arm64@0.14.43 + esbuild-freebsd-64: registry.npmmirror.com/esbuild-freebsd-64@0.14.43 + esbuild-freebsd-arm64: registry.npmmirror.com/esbuild-freebsd-arm64@0.14.43 + esbuild-linux-32: registry.npmmirror.com/esbuild-linux-32@0.14.43 + esbuild-linux-64: registry.npmmirror.com/esbuild-linux-64@0.14.43 + esbuild-linux-arm: registry.npmmirror.com/esbuild-linux-arm@0.14.43 + esbuild-linux-arm64: registry.npmmirror.com/esbuild-linux-arm64@0.14.43 + esbuild-linux-mips64le: registry.npmmirror.com/esbuild-linux-mips64le@0.14.43 + esbuild-linux-ppc64le: registry.npmmirror.com/esbuild-linux-ppc64le@0.14.43 + esbuild-linux-riscv64: registry.npmmirror.com/esbuild-linux-riscv64@0.14.43 + esbuild-linux-s390x: registry.npmmirror.com/esbuild-linux-s390x@0.14.43 + esbuild-netbsd-64: registry.npmmirror.com/esbuild-netbsd-64@0.14.43 + esbuild-openbsd-64: registry.npmmirror.com/esbuild-openbsd-64@0.14.43 + esbuild-sunos-64: registry.npmmirror.com/esbuild-sunos-64@0.14.43 + esbuild-windows-32: registry.npmmirror.com/esbuild-windows-32@0.14.43 + esbuild-windows-64: registry.npmmirror.com/esbuild-windows-64@0.14.43 + esbuild-windows-arm64: registry.npmmirror.com/esbuild-windows-arm64@0.14.43 + dev: true + + /escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + dev: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-config-prettier@8.5.0(eslint@8.17.0): + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 8.17.0 + dev: true + + /eslint-import-resolver-node@0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + dependencies: + debug: 3.2.7 + resolve: 1.22.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.28.0)(eslint-import-resolver-node@0.3.6): + resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.28.0(eslint@8.17.0)(typescript@4.6.3) + debug: 3.2.7 + eslint-import-resolver-node: 0.3.6 + find-up: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.28.0)(eslint@8.17.0): + resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.28.0(eslint@8.17.0)(typescript@4.6.3) + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.17.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.28.0)(eslint-import-resolver-node@0.3.6) + has: 1.0.3 + is-core-module: 2.9.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.0 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-prettier@4.0.0(eslint-config-prettier@8.5.0)(eslint@8.17.0)(prettier@2.7.0): + resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} + engines: {node: '>=6.0.0'} + peerDependencies: + eslint: '>=7.28.0' + eslint-config-prettier: '*' + prettier: '>=2.0.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.17.0 + eslint-config-prettier: 8.5.0(eslint@8.17.0) + prettier: 2.7.0 + prettier-linter-helpers: 1.0.0 + dev: true + + /eslint-plugin-vue@8.7.1(eslint@8.17.0): + resolution: {integrity: sha512-28sbtm4l4cOzoO1LtzQPxfxhQABararUb1JtqusQqObJpWX2e/gmVyeYVfepizPFne0Q5cILkYGiBoV36L12Wg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.17.0 + eslint-utils: 3.0.0(eslint@8.17.0) + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.0.10 + semver: 7.3.7 + vue-eslint-parser: 8.3.0(eslint@8.17.0) + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope@7.1.1: + resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils@3.0.0(eslint@8.17.0): + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.17.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint-visitor-keys@3.3.0: + resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint@8.17.0: + resolution: {integrity: sha512-gq0m0BTJfci60Fz4nczYxNAlED+sMcihltndR8t9t1evnU/azx53x3t2UHXC/uRjcbvRw/XctpaNygSTcQD+Iw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint/eslintrc': 1.3.0 + '@humanwhocodes/config-array': 0.9.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0(eslint@8.17.0) + eslint-visitor-keys: 3.3.0 + espree: 9.3.2 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.15.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.3.2: + resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.7.1 + acorn-jsx: 5.3.2(acorn@8.7.1) + eslint-visitor-keys: 3.3.0 + dev: true + + /esquery@1.4.0: + resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker@1.0.1: + resolution: {integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==} + dev: true + + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /evtd@0.2.4: + resolution: {integrity: sha512-qaeGN5bx63s/AXgQo8gj6fBkxge+OoLddLniox5qtLAEY5HSnuSlISXVPxnSae1dWblvTh4/HoMIB+mbMsvZzw==} + dev: false + + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /expand-tilde@2.0.2: + resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==} + engines: {node: '>=0.10.0'} + dependencies: + homedir-polyfill: 1.0.3 + dev: true + + /extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + dev: true + + /external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-diff@1.2.0: + resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} + dev: true + + /fast-glob@3.2.11: + resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastq@1.13.0: + resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} + dependencies: + reusify: 1.0.4 + dev: true + + /figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /finalhandler@1.1.2: + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.3.0 + parseurl: 1.3.3 + statuses: 1.5.0 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /findup-sync@5.0.0: + resolution: {integrity: sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==} + engines: {node: '>= 10.13.0'} + dependencies: + detect-file: 1.0.0 + is-glob: 4.0.3 + micromatch: 4.0.5 + resolve-dir: 1.0.1 + dev: true + + /fined@2.0.0: + resolution: {integrity: sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==} + engines: {node: '>= 10.13.0'} + dependencies: + expand-tilde: 2.0.2 + is-plain-object: 5.0.0 + object.defaults: 1.1.0 + object.pick: 1.3.0 + parse-filepath: 1.0.2 + dev: true + + /flagged-respawn@2.0.0: + resolution: {integrity: sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==} + engines: {node: '>= 10.13.0'} + dev: true + + /flat-cache@3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.5 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.5: + resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} + dev: true + + /follow-redirects@1.15.1: + resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: false + + /for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + dev: true + + /for-own@1.0.0: + resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==} + engines: {node: '>=0.10.0'} + dependencies: + for-in: 1.0.2 + dev: true + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: false + + /fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /function-bind@1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + dev: true + + /function.prototype.name@1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + dev: true + + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-intrinsic@1.1.2: + resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + dev: true + + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + dev: true + + /git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + dependencies: + ini: 1.3.8 + dev: true + + /global-modules@1.0.0: + resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==} + engines: {node: '>=0.10.0'} + dependencies: + global-prefix: 1.0.2 + is-windows: 1.0.2 + resolve-dir: 1.0.1 + dev: true + + /global-prefix@1.0.2: + resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + homedir-polyfill: 1.0.3 + ini: 1.3.8 + is-windows: 1.0.2 + which: 1.3.1 + dev: true + + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + dev: true + + /globals@13.15.0: + resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /globby@13.1.2: + resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + + /graceful-fs@4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + dev: true + + /gsap@3.11.3: + resolution: {integrity: sha512-xc/iIJy+LWiMbRa4IdMtdnnKa/7PXEK6NNzV71gdOYUVeTZN7UWnLU0fB7Hi1iwiz4ZZoYkBZPPYGg+2+zzFHA==} + dev: false + + /handlebars@4.7.7: + resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} + engines: {node: '>=0.4.7'} + hasBin: true + dependencies: + minimist: 1.2.6 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: registry.npmmirror.com/uglify-js@3.17.4 + dev: true + + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.2 + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has@1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + dev: true + + /hash-sum@2.0.0: + resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} + dev: true + + /header-case@2.0.4: + resolution: {integrity: sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==} + dependencies: + capital-case: 1.0.4 + tslib: 2.4.0 + dev: true + + /highlight.js@11.5.1: + resolution: {integrity: sha512-LKzHqnxr4CrD2YsNoIf/o5nJ09j4yi/GcH5BnYz9UnVpZdS4ucMgvP61TDty5xJcFGRjnH4DpujkS9bHT3hq0Q==} + engines: {node: '>=12.0.0'} + dev: false + + /homedir-polyfill@1.0.3: + resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==} + engines: {node: '>=0.10.0'} + dependencies: + parse-passwd: 1.0.0 + dev: true + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /html-tags@3.2.0: + resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==} + engines: {node: '>=8'} + dev: true + + /html2canvas@1.4.1: + resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==} + engines: {node: '>=8.0.0'} + dependencies: + css-line-break: 2.1.0 + text-segmentation: 1.0.3 + dev: false + + /htmlparser2@7.2.0: + resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} + dependencies: + domelementtype: 2.3.0 + domhandler: 4.3.1 + domutils: 2.8.0 + entities: 3.0.1 + dev: true + + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /husky@8.0.1: + resolution: {integrity: sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw==} + engines: {node: '>=14'} + hasBin: true + dev: true + + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true + + /ignore@5.2.0: + resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + engines: {node: '>= 4'} + dev: true + + /immutable@4.1.0: + resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} + dev: true + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /inquirer@8.2.4: + resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} + engines: {node: '>=12.0.0'} + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.5.5 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + + /internal-slot@1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.2 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /interpret@2.2.0: + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} + dev: true + + /is-absolute@1.0.0: + resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} + engines: {node: '>=0.10.0'} + dependencies: + is-relative: 1.0.0 + is-windows: 1.0.2 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-arrayish@0.3.2: + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + dev: false + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-builtin-module@3.1.0: + resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==} + engines: {node: '>=6'} + dependencies: + builtin-modules: 3.3.0 + dev: true + + /is-callable@1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module@2.9.0: + resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} + dependencies: + has: 1.0.3 + dev: true + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-expression@4.0.0: + resolution: {integrity: sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==} + dependencies: + acorn: 7.4.1 + object-assign: 4.1.1 + dev: true + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + dev: true + + /is-interactive@2.0.0: + resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} + engines: {node: '>=12'} + dev: true + + /is-module@1.0.0: + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + dev: true + + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + dev: true + + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + dev: true + + /is-promise@2.2.2: + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + dev: true + + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-relative@1.0.0: + resolution: {integrity: sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==} + engines: {node: '>=0.10.0'} + dependencies: + is-unc-path: 1.0.0 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-unc-path@1.0.0: + resolution: {integrity: sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==} + engines: {node: '>=0.10.0'} + dependencies: + unc-path-regex: 0.1.2 + dev: true + + /is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + dev: true + + /is-unicode-supported@1.2.0: + resolution: {integrity: sha512-wH+U77omcRzevfIG8dDhTS0V9zZyweakfD01FULl97+0EHiJTTZtJqxPSkIIo/SDPv/i07k/C9jAPY+jwLLeUQ==} + engines: {node: '>=12'} + dev: true + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + dev: true + + /isbinaryfile@4.0.10: + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} + engines: {node: '>= 8.0.0'} + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + dev: true + + /js-stringify@1.0.2: + resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: true + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json5@1.0.1: + resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /json5@2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /jsonc-parser@2.3.1: + resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} + dev: true + + /jsonc-parser@3.0.0: + resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + dev: true + + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: registry.npmmirror.com/graceful-fs@4.2.10 + dev: true + + /jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true + + /jstransformer@1.0.0: + resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} + dependencies: + is-promise: 2.2.2 + promise: 7.3.1 + dev: true + + /keymaster@1.6.2: + resolution: {integrity: sha512-OvA/AALN8IDKKkTk2Z+bDrzs/SQao4lo/QPbwSdDvm+frxfiYiYCSn1aHFUypJY3SruAO1y/c771agBmTXqUtg==} + dev: false + + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + dev: true + + /klona@2.0.5: + resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} + engines: {node: '>= 8'} + dev: true + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /liftoff@4.0.0: + resolution: {integrity: sha512-rMGwYF8q7g2XhG2ulBmmJgWv25qBsqRbDn5gH0+wnuyeFt7QBJlHJmtg5qEdn4pN6WVAUMgXnIxytMFRX9c1aA==} + engines: {node: '>=10.13.0'} + dependencies: + extend: 3.0.2 + findup-sync: 5.0.0 + fined: 2.0.0 + flagged-respawn: 2.0.0 + is-plain-object: 5.0.0 + object.map: 1.0.1 + rechoir: 0.8.0 + resolve: 1.22.0 + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + dev: false + + /lodash.get@4.4.2: + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + /log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + dev: true + + /log-symbols@5.1.0: + resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==} + engines: {node: '>=12'} + dependencies: + chalk: 5.0.1 + is-unicode-supported: 1.2.0 + dev: true + + /lower-case@2.0.2: + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + dependencies: + tslib: 2.4.0 + dev: true + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + dependencies: + sourcemap-codec: 1.4.8 + + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + dev: true + + /make-iterator@1.0.1: + resolution: {integrity: sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==} + engines: {node: '>=0.10.0'} + dependencies: + kind-of: 6.0.3 + dev: true + + /map-cache@0.2.2: + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.2 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.0 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: false + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: false + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist@1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + + /mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + dev: true + + /mockjs@1.1.0: + resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==} + hasBin: true + dependencies: + commander: 9.3.0 + dev: true + + /monaco-editor@0.33.0: + resolution: {integrity: sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==} + + /ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + dev: true + + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true + + /naive-ui@2.34.3(vue@3.2.37): + resolution: {integrity: sha512-fUMr0dzb/iGsOTWgoblPVobY5X5dihQ1eam5dA+H74oyLYAvgX4pL96xQFPBLIYqvyRFBAsN85kHN5pLqdtpxA==} + peerDependencies: + vue: ^3.0.0 + dependencies: + '@css-render/plugin-bem': 0.15.10(css-render@0.15.10) + '@css-render/vue3-ssr': 0.15.10(vue@3.2.37) + '@types/katex': 0.14.0 + '@types/lodash': 4.14.185 + '@types/lodash-es': 4.17.6 + async-validator: 4.1.1 + css-render: 0.15.10 + date-fns: 2.28.0 + date-fns-tz: 1.3.4(date-fns@2.28.0) + evtd: 0.2.4 + highlight.js: 11.5.1 + lodash: 4.17.21 + lodash-es: 4.17.21 + seemly: 0.3.6 + treemate: 0.3.11 + vdirs: 0.1.8(vue@3.2.37) + vooks: 0.2.12(vue@3.2.37) + vue: 3.2.37 + vueuc: 0.4.49(vue@3.2.37) + dev: false + + /nanoid@3.3.4: + resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + dev: true + + /no-case@3.0.4: + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + dependencies: + lower-case: 2.0.2 + tslib: 2.4.0 + dev: true + + /node-plop@0.31.0: + resolution: {integrity: sha512-aKLPxiBoFTNUovvtK8j/Whc4PZREkYx6htw2HJPiU8wYquXmN8pkd9B3xlFo6AJ4ZlzFsQSf/NXR5xET8EqRYw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + '@types/inquirer': 8.2.1 + change-case: 4.1.2 + del: 6.1.1 + globby: 13.1.2 + handlebars: 4.7.7 + inquirer: 8.2.4 + isbinaryfile: 4.0.10 + lodash.get: 4.4.2 + lower-case: 2.0.2 + mkdirp: 1.0.4 + resolve: 1.22.0 + title-case: 3.0.3 + upper-case: 2.0.2 + dev: true + + /node-releases@2.0.5: + resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} + dev: true + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.0 + semver: 5.7.1 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.9.0 + semver: 7.3.7 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: true + + /object-inspect@1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.2: + resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.defaults@1.1.0: + resolution: {integrity: sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==} + engines: {node: '>=0.10.0'} + dependencies: + array-each: 1.0.1 + array-slice: 1.1.0 + for-own: 1.0.0 + isobject: 3.0.1 + dev: true + + /object.map@1.0.1: + resolution: {integrity: sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==} + engines: {node: '>=0.10.0'} + dependencies: + for-own: 1.0.0 + make-iterator: 1.0.1 + dev: true + + /object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + dependencies: + isobject: 3.0.1 + dev: true + + /object.values@1.1.5: + resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /on-finished@2.3.0: + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} + dependencies: + ee-first: 1.1.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /optionator@0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.6.1 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + dev: true + + /ora@6.1.0: + resolution: {integrity: sha512-CxEP6845hLK+NHFWZ+LplGO4zfw4QSfxTlqMfvlJ988GoiUeZDMzCvqsZkFHv69sPICmJH1MDxZoQFOKXerAVw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + bl: 5.0.0 + chalk: 5.0.1 + cli-cursor: 4.0.0 + cli-spinners: 2.6.1 + is-interactive: 2.0.0 + is-unicode-supported: 1.2.0 + log-symbols: 5.1.0 + strip-ansi: 7.0.1 + wcwidth: 1.0.1 + dev: true + + /os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + dev: true + + /p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-map@4.0.0: + resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} + engines: {node: '>=10'} + dependencies: + aggregate-error: 3.1.0 + dev: true + + /p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /param-case@3.0.4: + resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-filepath@1.0.2: + resolution: {integrity: sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==} + engines: {node: '>=0.8'} + dependencies: + is-absolute: 1.0.0 + map-cache: 0.2.2 + path-root: 0.1.1 + dev: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.16.7 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-passwd@1.0.0: + resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==} + engines: {node: '>=0.10.0'} + dev: true + + /parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + dev: true + + /pascal-case@3.1.2: + resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /path-case@3.0.4: + resolution: {integrity: sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==} + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + dev: true + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-root-regex@0.1.2: + resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} + engines: {node: '>=0.10.0'} + dev: true + + /path-root@0.1.1: + resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} + engines: {node: '>=0.10.0'} + dependencies: + path-root-regex: 0.1.2 + dev: true + + /path-to-regexp@6.2.1: + resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pinia@2.0.14(typescript@4.6.3)(vue@3.2.37): + resolution: {integrity: sha512-0nPuZR4TetT/WcLN+feMSjWJku3SQU7dBbXC6uw+R6FLQJCsg+/0pzXyD82T1FmAYe0lsx+jnEDQ1BLgkRKlxA==} + peerDependencies: + '@vue/composition-api': ^1.4.0 + typescript: '>=4.4.4' + vue: ^2.6.14 || ^3.2.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + typescript: + optional: true + dependencies: + '@vue/devtools-api': 6.1.4 + typescript: 4.6.3 + vue: 3.2.37 + vue-demi: 0.13.1(vue@3.2.37) + dev: false + + /plop@3.1.0: + resolution: {integrity: sha512-bkKZ5X7V2hjH1ha5x8eX2mzyxM/sR166icNdQAbuAK5L4iHTT7fNKjV7VOpF3hBWtRNnzBoctjC3hC5syX5iYg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + '@types/liftoff': 4.0.0 + chalk: 5.0.1 + interpret: 2.2.0 + liftoff: 4.0.0 + minimist: 1.2.6 + node-plop: 0.31.0 + ora: 6.1.0 + v8flags: 4.0.0 + dev: true + + /postcss-selector-parser@6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss@8.4.14: + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + dependencies: + fast-diff: 1.2.0 + dev: true + + /prettier@2.7.0: + resolution: {integrity: sha512-nwoX4GMFgxoPC6diHvSwmK/4yU8FFH3V8XWtLQrbj4IBsK2pkYhG4kf/ljF/haaZ/aii+wNJqISrCDPgxGWDVQ==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /promise@7.3.1: + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + dependencies: + asap: 2.0.6 + dev: true + + /pug-attrs@3.0.0: + resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} + dependencies: + constantinople: 4.0.1 + js-stringify: 1.0.2 + pug-runtime: 3.0.1 + dev: true + + /pug-code-gen@3.0.2: + resolution: {integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==} + dependencies: + constantinople: 4.0.1 + doctypes: 1.1.0 + js-stringify: 1.0.2 + pug-attrs: 3.0.0 + pug-error: 2.0.0 + pug-runtime: 3.0.1 + void-elements: 3.1.0 + with: 7.0.2 + dev: true + + /pug-error@2.0.0: + resolution: {integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==} + dev: true + + /pug-filters@4.0.0: + resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} + dependencies: + constantinople: 4.0.1 + jstransformer: 1.0.0 + pug-error: 2.0.0 + pug-walk: 2.0.0 + resolve: 1.22.0 + dev: true + + /pug-lexer@5.0.1: + resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} + dependencies: + character-parser: 2.2.0 + is-expression: 4.0.0 + pug-error: 2.0.0 + dev: true + + /pug-linker@4.0.0: + resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} + dependencies: + pug-error: 2.0.0 + pug-walk: 2.0.0 + dev: true + + /pug-load@3.0.0: + resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} + dependencies: + object-assign: 4.1.1 + pug-walk: 2.0.0 + dev: true + + /pug-parser@6.0.0: + resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} + dependencies: + pug-error: 2.0.0 + token-stream: 1.0.0 + dev: true + + /pug-runtime@3.0.1: + resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} + dev: true + + /pug-strip-comments@2.0.0: + resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} + dependencies: + pug-error: 2.0.0 + dev: true + + /pug-walk@2.0.0: + resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} + dev: true + + /pug@3.0.2: + resolution: {integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==} + dependencies: + pug-code-gen: 3.0.2 + pug-filters: 4.0.0 + pug-lexer: 5.0.1 + pug-linker: 4.0.0 + pug-load: 3.0.0 + pug-parser: 6.0.0 + pug-runtime: 3.0.1 + pug-strip-comments: 2.0.0 + dev: true + + /punycode@2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + dev: true + + /q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /readable-stream@3.6.0: + resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /rechoir@0.8.0: + resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} + engines: {node: '>= 10.13.0'} + dependencies: + resolve: 1.22.0 + dev: true + + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /regenerator-runtime@0.13.11: + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + dev: false + + /regexp.prototype.flags@1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + dev: true + + /regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + + /request-light@0.5.8: + resolution: {integrity: sha512-3Zjgh+8b5fhRJBQZoy+zbVKpAQGLyka0MPgW3zruTF4dFFJ8Fqcfu9YsAvi/rvdcaTeWG3MkbZv4WKxAn/84Lg==} + dev: true + + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /resize-detector@0.3.0: + resolution: {integrity: sha512-R/tCuvuOHQ8o2boRP6vgx8hXCCy87H1eY9V5imBYeVNyNVpuL9ciReSccLj2gDcax9+2weXy3bc8Vv+NRXeEvQ==} + dev: true + + /resolve-dir@1.0.1: + resolution: {integrity: sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==} + engines: {node: '>=0.10.0'} + dependencies: + expand-tilde: 2.0.2 + global-modules: 1.0.0 + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + dependencies: + global-dirs: 0.1.1 + dev: true + + /resolve@1.22.0: + resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} + hasBin: true + dependencies: + is-core-module: 2.9.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /restore-cursor@4.0.0: + resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + dev: true + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup@2.75.6: + resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents@2.3.2 + dev: true + + /run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /rxjs@7.5.5: + resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} + dependencies: + tslib: 2.4.0 + dev: true + + /safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + dev: true + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + dev: true + + /sass-loader@12.6.0(sass@1.52.3)(webpack@5.88.2): + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} + peerDependencies: + fibers: '>= 3.1.0' + node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 + sass: ^1.3.0 + sass-embedded: '*' + webpack: ^5.0.0 + peerDependenciesMeta: + fibers: + optional: true + node-sass: + optional: true + sass: + optional: true + sass-embedded: + optional: true + dependencies: + klona: 2.0.5 + neo-async: 2.6.2 + sass: 1.52.3 + webpack: registry.npmmirror.com/webpack@5.88.2 + dev: true + + /sass@1.52.3: + resolution: {integrity: sha512-LNNPJ9lafx+j1ArtA7GyEJm9eawXN8KlA1+5dF6IZyoONg1Tyo/g+muOsENWJH/2Q1FHbbV4UwliU0cXMa/VIA==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + chokidar: 3.5.3 + immutable: 4.1.0 + source-map-js: 1.0.2 + dev: true + + /screenfull@6.0.1: + resolution: {integrity: sha512-yzQW+j4zMUBQC51xxWaoDYjxOtl8Kn+xvue3p6v/fv2pIi1jH4AldgVLU8TBfFVgH2x3VXlf3+YiA/AYIPlaew==} + engines: {node: ^14.13.1 || >=16.0.0} + dev: false + + /seemly@0.3.6: + resolution: {integrity: sha512-lEV5VB8BUKTo/AfktXJcy+JeXns26ylbMkIUco8CYREsQijuz4mrXres2Q+vMLdwkuLxJdIPQ8IlCIxLYm71Yw==} + dev: false + + /semver@5.7.1: + resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + hasBin: true + dev: true + + /semver@6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + dev: true + + /semver@7.3.7: + resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /sentence-case@3.0.4: + resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} + dependencies: + no-case: 3.0.4 + tslib: 2.4.0 + upper-case-first: 2.0.2 + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + object-inspect: 1.12.2 + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /simple-swizzle@0.2.2: + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + dependencies: + is-arrayish: 0.3.2 + dev: false + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + dev: true + + /snake-case@3.0.4: + resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + dependencies: + dot-case: 3.0.4 + tslib: 2.4.0 + dev: true + + /sortablejs@1.14.0: + resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==} + dev: false + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + /sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + + /spdx-correct@3.1.1: + resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.11 + dev: true + + /spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.11 + dev: true + + /spdx-license-ids@3.0.11: + resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} + dev: true + + /split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /statuses@1.5.0: + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} + dev: true + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string.prototype.trimend@1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string.prototype.trimstart@1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-ansi@7.0.1: + resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /svg-tags@1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + dev: true + + /text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true + + /text-segmentation@1.0.3: + resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==} + dependencies: + utrie: 1.0.2 + dev: false + + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /three@0.145.0: + resolution: {integrity: sha512-EKoHQEtEJ4CB6b2BGMBgLZrfwLjXcSUfoI/MiIXUuRpeYsfK5aPWbYhdtIVWOH+x6X0TouldHKHBuc/LAiFzAw==} + dev: false + + /through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /title-case@3.0.3: + resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} + dependencies: + tslib: 2.4.0 + dev: true + + /tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + dependencies: + os-tmpdir: 1.0.2 + dev: true + + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /token-stream@1.0.0: + resolution: {integrity: sha512-VSsyNPPW74RpHwR8Fc21uubwHY7wMDeJLys2IX5zJNih+OnAnaifKHo+1LHT7DAdloQ7apeaaWg8l7qnf/TnEg==} + dev: true + + /treemate@0.3.11: + resolution: {integrity: sha512-M8RGFoKtZ8dF+iwJfAJTOH/SM4KluKOKRJpjCMhI8bG3qB74zrFoArKZ62ll0Fr3mqkMJiQOmWYkdYgDeITYQg==} + dev: false + + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /ts-node@10.8.1(@types/node@17.0.43)(typescript@4.7.3): + resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.10 + '@tsconfig/node14': 1.0.2 + '@tsconfig/node16': 1.0.3 + '@types/node': 17.0.43 + acorn: 8.7.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.7.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + + /tsconfig-paths@3.14.1: + resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.1 + minimist: 1.2.6 + strip-bom: 3.0.0 + dev: true + + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib@2.3.0: + resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} + + /tslib@2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + dev: true + + /tsutils@3.21.0(typescript@4.6.3): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 4.6.3 + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /typescript@4.6.3: + resolution: {integrity: sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==} + engines: {node: '>=4.2.0'} + hasBin: true + + /typescript@4.7.3: + resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} + engines: {node: '>=4.2.0'} + hasBin: true + dev: true + + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unc-path-regex@0.1.2: + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} + dev: true + + /universalify@2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + dev: true + + /unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + dev: true + + /upath@2.0.1: + resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} + engines: {node: '>=4'} + dev: true + + /upper-case-first@2.0.2: + resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} + dependencies: + tslib: 2.4.0 + dev: true + + /upper-case@2.0.2: + resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} + dependencies: + tslib: 2.4.0 + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.1.1 + dev: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + + /utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + dev: true + + /utrie@1.0.2: + resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==} + dependencies: + base64-arraybuffer: 1.0.2 + dev: false + + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + dev: true + + /v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + + /v8flags@4.0.0: + resolution: {integrity: sha512-83N0OkTbn6gOjJ2awNuzuK4czeGxwEwBoTqlhBZhnp8o0IJ72mXRQKphj/azwRf3acbDJZYZhbOPEJHd884ELg==} + engines: {node: '>= 10.13.0'} + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.1.1 + spdx-expression-parse: 3.0.1 + dev: true + + /vdirs@0.1.8(vue@3.2.37): + resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==} + peerDependencies: + vue: ^3.0.11 + dependencies: + evtd: 0.2.4 + vue: 3.2.37 + dev: false + + /vite-plugin-compression@0.5.1(vite@2.9.9): + resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==} + peerDependencies: + vite: '>=2.0.0' + dependencies: + chalk: 4.1.2 + debug: 4.3.4 + fs-extra: 10.1.0 + vite: 2.9.9(sass@1.52.3) + transitivePeerDependencies: + - supports-color + dev: true + + /vite-plugin-importer@0.2.5: + resolution: {integrity: sha512-6OtqJmVwnfw8+B4OIh7pIdXs+jLkN7g5PIqmZdpgrMYjIFMiZrcMB1zlyUQSTokKGC90KwXviO/lq1hcUBUG3Q==} + dependencies: + '@babel/core': 7.18.5 + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.18.5) + babel-plugin-import: 1.13.5 + transitivePeerDependencies: + - supports-color + dev: true + + /vite-plugin-mock@2.9.6(mockjs@1.1.0)(rollup@2.75.6)(vite@2.9.9): + resolution: {integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==} + engines: {node: '>=12.0.0'} + peerDependencies: + mockjs: '>=1.1.0' + vite: '>=2.0.0' + dependencies: + '@rollup/plugin-node-resolve': 13.3.0(rollup@2.75.6) + '@types/mockjs': 1.0.6 + chalk: 4.1.2 + chokidar: 3.5.3 + connect: 3.7.0 + debug: 4.3.4 + esbuild: 0.11.3 + fast-glob: 3.2.11 + mockjs: 1.1.0 + path-to-regexp: 6.2.1 + vite: 2.9.9(sass@1.52.3) + transitivePeerDependencies: + - rollup + - supports-color + dev: true + + /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.33.0): + resolution: {integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==} + peerDependencies: + monaco-editor: '>=0.33.0' + dependencies: + monaco-editor: 0.33.0 + dev: true + + /vite@2.9.9(sass@1.52.3): + resolution: {integrity: sha512-ffaam+NgHfbEmfw/Vuh6BHKKlI/XIAhxE5QSS7gFLIngxg171mg1P3a4LSRME0z2ZU1ScxoKzphkipcYwSD5Ew==} + engines: {node: '>=12.2.0'} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + dependencies: + esbuild: 0.14.43 + postcss: 8.4.14 + resolve: 1.22.0 + rollup: 2.75.6 + sass: 1.52.3 + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents@2.3.2 + dev: true + + /void-elements@3.1.0: + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} + dev: true + + /vooks@0.2.12(vue@3.2.37): + resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==} + peerDependencies: + vue: ^3.0.0 + dependencies: + evtd: 0.2.4 + vue: 3.2.37 + dev: false + + /vscode-css-languageservice@5.4.2: + resolution: {integrity: sha512-DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg==} + dependencies: + vscode-languageserver-textdocument: 1.0.5 + vscode-languageserver-types: 3.17.1 + vscode-nls: 5.0.1 + vscode-uri: 3.0.3 + dev: true + + /vscode-html-languageservice@4.2.5: + resolution: {integrity: sha512-dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw==} + dependencies: + vscode-languageserver-textdocument: 1.0.5 + vscode-languageserver-types: 3.17.1 + vscode-nls: 5.0.1 + vscode-uri: 3.0.3 + dev: true + + /vscode-json-languageservice@4.2.1: + resolution: {integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==} + dependencies: + jsonc-parser: 3.0.0 + vscode-languageserver-textdocument: 1.0.5 + vscode-languageserver-types: 3.17.1 + vscode-nls: 5.0.1 + vscode-uri: 3.0.3 + dev: true + + /vscode-jsonrpc@8.0.1: + resolution: {integrity: sha512-N/WKvghIajmEvXpatSzvTvOIz61ZSmOSa4BRA4pTLi+1+jozquQKP/MkaylP9iB68k73Oua1feLQvH3xQuigiQ==} + engines: {node: '>=14.0.0'} + dev: true + + /vscode-languageserver-protocol@3.17.1: + resolution: {integrity: sha512-BNlAYgQoYwlSgDLJhSG+DeA8G1JyECqRzM2YO6tMmMji3Ad9Mw6AW7vnZMti90qlAKb0LqAlJfSVGEdqMMNzKg==} + dependencies: + vscode-jsonrpc: 8.0.1 + vscode-languageserver-types: 3.17.1 + dev: true + + /vscode-languageserver-textdocument@1.0.5: + resolution: {integrity: sha512-1ah7zyQjKBudnMiHbZmxz5bYNM9KKZYz+5VQLj+yr8l+9w3g+WAhCkUkWbhMEdC5u0ub4Ndiye/fDyS8ghIKQg==} + dev: true + + /vscode-languageserver-types@3.17.1: + resolution: {integrity: sha512-K3HqVRPElLZVVPtMeKlsyL9aK0GxGQpvtAUTfX4k7+iJ4mc1M+JM+zQwkgGy2LzY0f0IAafe8MKqIkJrxfGGjQ==} + dev: true + + /vscode-languageserver@8.0.1: + resolution: {integrity: sha512-sn7SjBwWm3OlmLtgg7jbM0wBULppyL60rj8K5HF0ny/MzN+GzPBX1kCvYdybhl7UW63V5V5tRVnyB8iwC73lSQ==} + hasBin: true + dependencies: + vscode-languageserver-protocol: 3.17.1 + dev: true + + /vscode-nls@5.0.1: + resolution: {integrity: sha512-hHQV6iig+M21lTdItKPkJAaWrxALQb/nqpVffakO4knJOh3DrU2SXOMzUzNgo1eADPzu3qSsJY1weCzvR52q9A==} + dev: true + + /vscode-pug-languageservice@0.28.10: + resolution: {integrity: sha512-zhpNmMxltAlid4ZWVq0YrCbD0v2Nk/OsUl2q1pZkSJheGVMj/ZAlcYqDvWjLbMfGPtpvoC6nPxhSCc6sIDN9XA==} + deprecated: 'WARNING: This project has been renamed to @volar/pug-language-service. Install using @volar/pug-language-service instead.' + dependencies: + '@volar/code-gen': 0.28.10 + '@volar/shared': 0.28.10 + '@volar/source-map': 0.28.10 + '@volar/transforms': 0.28.10 + pug-lexer: 5.0.1 + pug-parser: 6.0.0 + vscode-languageserver: 8.0.1 + dev: true + + /vscode-typescript-languageservice@0.28.10: + resolution: {integrity: sha512-TTJSQss0YR784e0Rr8se5huxd0edqGzO7A51kejEQiPPhIcOlYCEeeFxDtqv3S+/fUUkeFVdRBZA9Ie7Jfrldw==} + deprecated: 'WARNING: This project has been renamed to @volar/typescript-language-service. Install using @volar/typescript-language-service instead.' + dependencies: + '@volar/shared': 0.28.10 + semver: 7.3.7 + upath: 2.0.1 + vscode-languageserver: 8.0.1 + vscode-languageserver-textdocument: 1.0.5 + dev: true + + /vscode-uri@2.1.2: + resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} + dev: true + + /vscode-uri@3.0.3: + resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==} + dev: true + + /vscode-vue-languageservice@0.28.10: + resolution: {integrity: sha512-xsA9aEiELiA9zHxzhI58Y6crcSfqxtt3EDKyey9rcNYe/bdY1NY0qLh3SRxdXF8YwoxzRvnn4iUw0oxCjHnFUQ==} + deprecated: 'WARNING: This project has been renamed to @volar/vue-language-service. Install using @volar/vue-language-service instead.' + dependencies: + '@volar/code-gen': 0.28.10 + '@volar/html2pug': 0.28.10 + '@volar/shared': 0.28.10 + '@volar/source-map': 0.28.10 + '@volar/transforms': 0.28.10 + '@vscode/emmet-helper': 2.8.4 + '@vue/compiler-dom': 3.2.37 + '@vue/reactivity': 3.2.37 + '@vue/shared': 3.2.37 + request-light: 0.5.8 + upath: 2.0.1 + vscode-css-languageservice: 5.4.2 + vscode-html-languageservice: 4.2.5 + vscode-json-languageservice: 4.2.1 + vscode-languageserver: 8.0.1 + vscode-languageserver-textdocument: 1.0.5 + vscode-pug-languageservice: 0.28.10 + vscode-typescript-languageservice: 0.28.10 + dev: true + + /vue-demi@0.12.5(vue@3.2.37): + resolution: {integrity: sha512-BREuTgTYlUr0zw0EZn3hnhC3I6gPWv+Kwh4MCih6QcAeaTlaIX0DwOVN0wHej7hSvDPecz4jygy/idsgKfW58Q==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + dependencies: + vue: 3.2.37 + dev: true + + /vue-demi@0.13.1(vue@3.2.37): + resolution: {integrity: sha512-xmkJ56koG3ptpLnpgmIzk9/4nFf4CqduSJbUM0OdPoU87NwRuZ6x49OLhjSa/fC15fV+5CbEnrxU4oyE022svg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + dependencies: + vue: 3.2.37 + + /vue-echarts@6.0.3(echarts@5.3.3)(vue@3.2.37): + resolution: {integrity: sha512-Nu+qb+szmBFCiVmNSZclquRx2lONGxfJXeppXODBYCl+KAdsP2TIaDwO2wfEFqU5jyxaL4b/qV7IYxswESTSFw==} + requiresBuild: true + peerDependencies: + '@vue/composition-api': ^1.0.5 + echarts: ^5.1.2 + vue: ^2.6.12 || ^3.1.1 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + dependencies: + echarts: 5.3.3 + resize-detector: 0.3.0 + vue: 3.2.37 + vue-demi: 0.12.5(vue@3.2.37) + dev: true + + /vue-eslint-parser@8.3.0(eslint@8.17.0): + resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.17.0 + eslint-scope: 7.1.1 + eslint-visitor-keys: 3.3.0 + espree: 9.3.2 + esquery: 1.4.0 + lodash: 4.17.21 + semver: 7.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /vue-i18n@9.2.2(vue@3.2.37): + resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==} + engines: {node: '>= 14'} + peerDependencies: + vue: ^3.0.0 + dependencies: + '@intlify/core-base': 9.2.2 + '@intlify/shared': 9.2.2 + '@intlify/vue-devtools': 9.2.2 + '@vue/devtools-api': 6.4.5 + vue: 3.2.37 + dev: false + + /vue-router@4.0.12(vue@3.2.37): + resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==} + peerDependencies: + vue: ^3.0.0 + dependencies: + '@vue/devtools-api': 6.1.4 + vue: 3.2.37 + dev: false + + /vue-tsc@0.28.10(typescript@4.6.3): + resolution: {integrity: sha512-tGD7eC74MHqKH2/F66AYkC1zNiLrgnhMzeYWou3p/wApMaUEM4h29HqYoKN6uE+pq87uvq/penYqUSBXhIwLiA==} + hasBin: true + peerDependencies: + typescript: '*' + dependencies: + '@volar/shared': 0.28.10 + typescript: 4.6.3 + vscode-vue-languageservice: 0.28.10 + dev: true + + /vue3-lazyload@0.2.5-beta(@vue/compiler-sfc@3.2.37)(vue@3.2.37): + resolution: {integrity: sha512-GVhJfL9Hcu+AvWsYmUwODivvt+gzpT0ztgAzZaUduoiTaGCv/qzhr0VwAQXfjGF3XFYFyOJsHlAi3/WE0P8XTQ==} + peerDependencies: + '@vue/compiler-sfc': '>=3.0.0' + vue: '>=3.0.0' + dependencies: + '@vue/compiler-sfc': 3.2.37 + vue: 3.2.37 + dev: false + + /vue3-sketch-ruler@1.3.4(vue@3.2.37): + resolution: {integrity: sha512-g7Hveep7QxIOcP6a2vc5x3ZxdTwkn7iRswwByhAMfmY2uk9m5BwtmHH95esR76NZp5QzgAOdqI7JNJp5LlG+Aw==} + hasBin: true + requiresBuild: true + peerDependencies: + '@vue/composition-api': ^1.1.0 + vue: ^2.6.0 || ^3.2.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + vue: + optional: true + dependencies: + vue: 3.2.37 + dev: false + + /vue@3.2.37: + resolution: {integrity: sha512-bOKEZxrm8Eh+fveCqS1/NkG/n6aMidsI6hahas7pa0w/l7jkbssJVsRhVDs07IdDq7h9KHswZOgItnwJAgtVtQ==} + dependencies: + '@vue/compiler-dom': 3.2.37 + '@vue/compiler-sfc': 3.2.37 + '@vue/runtime-dom': 3.2.37 + '@vue/server-renderer': 3.2.37(vue@3.2.37) + '@vue/shared': 3.2.37 + + /vuedraggable@4.1.0(vue@3.2.37): + resolution: {integrity: sha512-FU5HCWBmsf20GpP3eudURW3WdWTKIbEIQxh9/8GE806hydR9qZqRRxRE3RjqX7PkuLuMQG/A7n3cfj9rCEchww==} + peerDependencies: + vue: ^3.0.1 + dependencies: + sortablejs: 1.14.0 + vue: 3.2.37 + dev: false + + /vueuc@0.4.49(vue@3.2.37): + resolution: {integrity: sha512-WarAC44a/Yx78CxkAgROYLq+LkAeCGA/6wHidVoFmHLbzyF3SiP2nzRNGD/8zJeJInXv18EnWK6A//eGgMMq8w==} + peerDependencies: + vue: ^3.0.11 + dependencies: + '@css-render/vue3-ssr': 0.15.10(vue@3.2.37) + '@juggle/resize-observer': 3.3.1 + css-render: 0.15.10 + evtd: 0.2.4 + seemly: 0.3.6 + vdirs: 0.1.8(vue@3.2.37) + vooks: 0.2.12(vue@3.2.37) + vue: 3.2.37 + dev: false + + /wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + dependencies: + defaults: 1.0.3 + dev: true + + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /with@7.0.2: + resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} + engines: {node: '>= 10.0.0'} + dependencies: + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 + assert-never: 1.2.1 + babel-walk: 3.0.0-canary-5 + dev: true + + /word-wrap@1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + + /wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + dev: true + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + dev: true + + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs-parser@21.0.1: + resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} + engines: {node: '>=12'} + dev: true + + /yargs@17.5.1: + resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==} + engines: {node: '>=12'} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.0.1 + dev: true + + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + dev: true + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true + + /zrender@5.3.2: + resolution: {integrity: sha512-8IiYdfwHj2rx0UeIGZGGU4WEVSDEdeVCaIg/fomejg1Xu6OifAL1GVzIPHg2D+MyUkbNgPWji90t0a8IDk+39w==} + dependencies: + tslib: 2.3.0 + + registry.npmmirror.com/@jridgewell/gen-mapping@0.3.1: + resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz} + name: '@jridgewell/gen-mapping' + version: 0.3.1 + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array@1.1.1 + '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.13 + '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 + dev: true + + registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz} + name: '@jridgewell/resolve-uri' + version: 3.1.1 + engines: {node: '>=6.0.0'} + dev: true + + registry.npmmirror.com/@jridgewell/set-array@1.1.1: + resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.1.tgz} + name: '@jridgewell/set-array' + version: 1.1.1 + engines: {node: '>=6.0.0'} + dev: true + + registry.npmmirror.com/@jridgewell/source-map@0.3.5: + resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/source-map/-/source-map-0.3.5.tgz} + name: '@jridgewell/source-map' + version: 0.3.5 + dependencies: + '@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.1 + '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 + dev: true + + registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.13: + resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz} + name: '@jridgewell/sourcemap-codec' + version: 1.4.13 + dev: true + + registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz} + name: '@jridgewell/sourcemap-codec' + version: 1.4.15 + dev: true + + registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19: + resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz} + name: '@jridgewell/trace-mapping' + version: 0.3.19 + dependencies: + '@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1 + '@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15 + dev: true + + registry.npmmirror.com/@types/eslint-scope@3.7.5: + resolution: {integrity: sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz} + name: '@types/eslint-scope' + version: 3.7.5 + dependencies: + '@types/eslint': registry.npmmirror.com/@types/eslint@8.44.3 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + dev: true + + registry.npmmirror.com/@types/eslint@8.44.3: + resolution: {integrity: sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/eslint/-/eslint-8.44.3.tgz} + name: '@types/eslint' + version: 8.44.3 + dependencies: + '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@types/json-schema': registry.npmmirror.com/@types/json-schema@7.0.11 + dev: true + + registry.npmmirror.com/@types/estree@1.0.2: + resolution: {integrity: sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/estree/-/estree-1.0.2.tgz} + name: '@types/estree' + version: 1.0.2 + dev: true + + registry.npmmirror.com/@types/json-schema@7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz} + name: '@types/json-schema' + version: 7.0.11 + dev: true + + registry.npmmirror.com/@types/node@16.11.40: + resolution: {integrity: sha512-7bOWglXUO6f21NG3YDI7hIpeMX3M59GG+DzZuzX2EkFKYUnRoxq3EOg4R0KNv2hxryY9M3UUqG5akwwsifrukw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-16.11.40.tgz} + name: '@types/node' + version: 16.11.40 + dev: true + + registry.npmmirror.com/@webassemblyjs/ast@1.11.6: + resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ast/-/ast-1.11.6.tgz} + name: '@webassemblyjs/ast' + version: 1.11.6 + dependencies: + '@webassemblyjs/helper-numbers': registry.npmmirror.com/@webassemblyjs/helper-numbers@1.11.6 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser@1.11.6: + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz} + name: '@webassemblyjs/floating-point-hex-parser' + version: 1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.6: + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz} + name: '@webassemblyjs/helper-api-error' + version: 1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6: + resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz} + name: '@webassemblyjs/helper-buffer' + version: 1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-numbers@1.11.6: + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz} + name: '@webassemblyjs/helper-numbers' + version: 1.11.6 + dependencies: + '@webassemblyjs/floating-point-hex-parser': registry.npmmirror.com/@webassemblyjs/floating-point-hex-parser@1.11.6 + '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.6 + '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6: + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz} + name: '@webassemblyjs/helper-wasm-bytecode' + version: 1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/helper-wasm-section@1.11.6: + resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz} + name: '@webassemblyjs/helper-wasm-section' + version: 1.11.6 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 + '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/ieee754@1.11.6: + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz} + name: '@webassemblyjs/ieee754' + version: 1.11.6 + dependencies: + '@xtuc/ieee754': registry.npmmirror.com/@xtuc/ieee754@1.2.0 + dev: true + + registry.npmmirror.com/@webassemblyjs/leb128@1.11.6: + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz} + name: '@webassemblyjs/leb128' + version: 1.11.6 + dependencies: + '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 + dev: true + + registry.npmmirror.com/@webassemblyjs/utf8@1.11.6: + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz} + name: '@webassemblyjs/utf8' + version: 1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/wasm-edit@1.11.6: + resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz} + name: '@webassemblyjs/wasm-edit' + version: 1.11.6 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 + '@webassemblyjs/helper-wasm-section': registry.npmmirror.com/@webassemblyjs/helper-wasm-section@1.11.6 + '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6 + '@webassemblyjs/wasm-opt': registry.npmmirror.com/@webassemblyjs/wasm-opt@1.11.6 + '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6 + '@webassemblyjs/wast-printer': registry.npmmirror.com/@webassemblyjs/wast-printer@1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6: + resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz} + name: '@webassemblyjs/wasm-gen' + version: 1.11.6 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 + '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754@1.11.6 + '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128@1.11.6 + '@webassemblyjs/utf8': registry.npmmirror.com/@webassemblyjs/utf8@1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/wasm-opt@1.11.6: + resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz} + name: '@webassemblyjs/wasm-opt' + version: 1.11.6 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@webassemblyjs/helper-buffer': registry.npmmirror.com/@webassemblyjs/helper-buffer@1.11.6 + '@webassemblyjs/wasm-gen': registry.npmmirror.com/@webassemblyjs/wasm-gen@1.11.6 + '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6: + resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz} + name: '@webassemblyjs/wasm-parser' + version: 1.11.6 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@webassemblyjs/helper-api-error': registry.npmmirror.com/@webassemblyjs/helper-api-error@1.11.6 + '@webassemblyjs/helper-wasm-bytecode': registry.npmmirror.com/@webassemblyjs/helper-wasm-bytecode@1.11.6 + '@webassemblyjs/ieee754': registry.npmmirror.com/@webassemblyjs/ieee754@1.11.6 + '@webassemblyjs/leb128': registry.npmmirror.com/@webassemblyjs/leb128@1.11.6 + '@webassemblyjs/utf8': registry.npmmirror.com/@webassemblyjs/utf8@1.11.6 + dev: true + + registry.npmmirror.com/@webassemblyjs/wast-printer@1.11.6: + resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz} + name: '@webassemblyjs/wast-printer' + version: 1.11.6 + dependencies: + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@xtuc/long': registry.npmmirror.com/@xtuc/long@4.2.2 + dev: true + + registry.npmmirror.com/@xtuc/ieee754@1.2.0: + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz} + name: '@xtuc/ieee754' + version: 1.2.0 + dev: true + + registry.npmmirror.com/@xtuc/long@4.2.2: + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@xtuc/long/-/long-4.2.2.tgz} + name: '@xtuc/long' + version: 4.2.2 + dev: true + + registry.npmmirror.com/acorn-import-assertions@1.9.0(acorn@8.7.1): + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz} + id: registry.npmmirror.com/acorn-import-assertions/1.9.0 + name: acorn-import-assertions + version: 1.9.0 + peerDependencies: + acorn: ^8 + dependencies: + acorn: registry.npmmirror.com/acorn@8.7.1 + dev: true + + registry.npmmirror.com/acorn@8.10.0: + resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz} + name: acorn + version: 8.10.0 + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + registry.npmmirror.com/acorn@8.7.1: + resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.7.1.tgz} + name: acorn + version: 8.7.1 + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + registry.npmmirror.com/ajv-keywords@3.5.2(ajv@6.12.6): + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz} + id: registry.npmmirror.com/ajv-keywords/3.5.2 + name: ajv-keywords + version: 3.5.2 + peerDependencies: + ajv: ^6.9.1 + dependencies: + ajv: registry.npmmirror.com/ajv@6.12.6 + dev: true + + registry.npmmirror.com/ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz} + name: ajv + version: 6.12.6 + dependencies: + fast-deep-equal: registry.npmmirror.com/fast-deep-equal@3.1.3 + fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify@2.1.0 + json-schema-traverse: registry.npmmirror.com/json-schema-traverse@0.4.1 + uri-js: registry.npmmirror.com/uri-js@4.4.1 + dev: true + + registry.npmmirror.com/browserslist@4.20.4: + resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/browserslist/-/browserslist-4.20.4.tgz} + name: browserslist + version: 4.20.4 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: registry.npmmirror.com/caniuse-lite@1.0.30001354 + electron-to-chromium: registry.npmmirror.com/electron-to-chromium@1.4.155 + escalade: registry.npmmirror.com/escalade@3.1.1 + node-releases: registry.npmmirror.com/node-releases@2.0.5 + picocolors: registry.npmmirror.com/picocolors@1.0.0 + dev: true + + registry.npmmirror.com/buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz} + name: buffer-from + version: 1.1.2 + dev: true + + registry.npmmirror.com/caniuse-lite@1.0.30001354: + resolution: {integrity: sha512-mImKeCkyGDAHNywYFA4bqnLAzTUvVkqPvhY4DV47X+Gl2c5Z8c3KNETnXp14GQt11LvxE8AwjzGxJ+rsikiOzg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001354.tgz} + name: caniuse-lite + version: 1.0.30001354 + dev: true + + registry.npmmirror.com/chrome-trace-event@1.0.3: + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz} + name: chrome-trace-event + version: 1.0.3 + engines: {node: '>=6.0'} + dev: true + + registry.npmmirror.com/commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/commander/-/commander-2.20.3.tgz} + name: commander + version: 2.20.3 + dev: true + + registry.npmmirror.com/electron-to-chromium@1.4.155: + resolution: {integrity: sha512-niPzKBSYPG06gxLKO0c2kEmgdRMTtIbNrBlvD31Ld8Q57b/K0218U4j8u/OOt25XE1eFOn47FcmQVdx9R1qqxA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.155.tgz} + name: electron-to-chromium + version: 1.4.155 + dev: true + + registry.npmmirror.com/enhanced-resolve@5.15.0: + resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz} + name: enhanced-resolve + version: 5.15.0 + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: registry.npmmirror.com/graceful-fs@4.2.10 + tapable: registry.npmmirror.com/tapable@2.2.1 + dev: true + + registry.npmmirror.com/es-module-lexer@1.3.1: + resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz} + name: es-module-lexer + version: 1.3.1 + dev: true + + registry.npmmirror.com/esbuild-android-64@0.14.43: + resolution: {integrity: sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-64/-/esbuild-android-64-0.14.43.tgz} + name: esbuild-android-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-android-arm64@0.14.43: + resolution: {integrity: sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-android-arm64/-/esbuild-android-arm64-0.14.43.tgz} + name: esbuild-android-arm64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-darwin-64@0.14.43: + resolution: {integrity: sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.43.tgz} + name: esbuild-darwin-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-darwin-arm64@0.14.43: + resolution: {integrity: sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.43.tgz} + name: esbuild-darwin-arm64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-freebsd-64@0.14.43: + resolution: {integrity: sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.43.tgz} + name: esbuild-freebsd-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-freebsd-arm64@0.14.43: + resolution: {integrity: sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.43.tgz} + name: esbuild-freebsd-arm64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-32@0.14.43: + resolution: {integrity: sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-32/-/esbuild-linux-32-0.14.43.tgz} + name: esbuild-linux-32 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-64@0.14.43: + resolution: {integrity: sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-64/-/esbuild-linux-64-0.14.43.tgz} + name: esbuild-linux-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-arm64@0.14.43: + resolution: {integrity: sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.43.tgz} + name: esbuild-linux-arm64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-arm@0.14.43: + resolution: {integrity: sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-arm/-/esbuild-linux-arm-0.14.43.tgz} + name: esbuild-linux-arm + version: 0.14.43 + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-mips64le@0.14.43: + resolution: {integrity: sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.43.tgz} + name: esbuild-linux-mips64le + version: 0.14.43 + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-ppc64le@0.14.43: + resolution: {integrity: sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.43.tgz} + name: esbuild-linux-ppc64le + version: 0.14.43 + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-riscv64@0.14.43: + resolution: {integrity: sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.43.tgz} + name: esbuild-linux-riscv64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-linux-s390x@0.14.43: + resolution: {integrity: sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.43.tgz} + name: esbuild-linux-s390x + version: 0.14.43 + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-netbsd-64@0.14.43: + resolution: {integrity: sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.43.tgz} + name: esbuild-netbsd-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-openbsd-64@0.14.43: + resolution: {integrity: sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.43.tgz} + name: esbuild-openbsd-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-sunos-64@0.14.43: + resolution: {integrity: sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-sunos-64/-/esbuild-sunos-64-0.14.43.tgz} + name: esbuild-sunos-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-windows-32@0.14.43: + resolution: {integrity: sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-32/-/esbuild-windows-32-0.14.43.tgz} + name: esbuild-windows-32 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-windows-64@0.14.43: + resolution: {integrity: sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-64/-/esbuild-windows-64-0.14.43.tgz} + name: esbuild-windows-64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/esbuild-windows-arm64@0.14.43: + resolution: {integrity: sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.43.tgz} + name: esbuild-windows-arm64 + version: 0.14.43 + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/escalade/-/escalade-3.1.1.tgz} + name: escalade + version: 3.1.1 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/eslint-scope/-/eslint-scope-5.1.1.tgz} + name: eslint-scope + version: 5.1.1 + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: registry.npmmirror.com/esrecurse@4.3.0 + estraverse: registry.npmmirror.com/estraverse@4.3.0 + dev: true + + registry.npmmirror.com/esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz} + name: esrecurse + version: 4.3.0 + engines: {node: '>=4.0'} + dependencies: + estraverse: registry.npmmirror.com/estraverse@5.3.0 + dev: true + + registry.npmmirror.com/estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/-/estraverse-4.3.0.tgz} + name: estraverse + version: 4.3.0 + engines: {node: '>=4.0'} + dev: true + + registry.npmmirror.com/estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz} + name: estraverse + version: 5.3.0 + engines: {node: '>=4.0'} + dev: true + + registry.npmmirror.com/events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/events/-/events-3.3.0.tgz} + name: events + version: 3.3.0 + engines: {node: '>=0.8.x'} + dev: true + + registry.npmmirror.com/fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz} + name: fast-deep-equal + version: 3.1.3 + dev: true + + registry.npmmirror.com/fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz} + name: fast-json-stable-stringify + version: 2.1.0 + dev: true + + registry.npmmirror.com/fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/fsevents/-/fsevents-2.3.2.tgz} + name: fsevents + version: 2.3.2 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/glob-to-regexp@0.4.1: + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz} + name: glob-to-regexp + version: 0.4.1 + dev: true + + registry.npmmirror.com/graceful-fs@4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.10.tgz} + name: graceful-fs + version: 4.2.10 + dev: true + + registry.npmmirror.com/has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz} + name: has-flag + version: 4.0.0 + engines: {node: '>=8'} + dev: true + + registry.npmmirror.com/jest-worker@27.5.1: + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/jest-worker/-/jest-worker-27.5.1.tgz} + name: jest-worker + version: 27.5.1 + engines: {node: '>= 10.13.0'} + dependencies: + '@types/node': registry.npmmirror.com/@types/node@16.11.40 + merge-stream: registry.npmmirror.com/merge-stream@2.0.0 + supports-color: registry.npmmirror.com/supports-color@8.1.1 + dev: true + + registry.npmmirror.com/json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz} + name: json-parse-even-better-errors + version: 2.3.1 + dev: true + + registry.npmmirror.com/json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz} + name: json-schema-traverse + version: 0.4.1 + dev: true + + registry.npmmirror.com/loader-runner@4.3.0: + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/loader-runner/-/loader-runner-4.3.0.tgz} + name: loader-runner + version: 4.3.0 + engines: {node: '>=6.11.5'} + dev: true + + registry.npmmirror.com/merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/merge-stream/-/merge-stream-2.0.0.tgz} + name: merge-stream + version: 2.0.0 + dev: true + + registry.npmmirror.com/mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz} + name: mime-db + version: 1.52.0 + engines: {node: '>= 0.6'} + dev: true + + registry.npmmirror.com/mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz} + name: mime-types + version: 2.1.35 + engines: {node: '>= 0.6'} + dependencies: + mime-db: registry.npmmirror.com/mime-db@1.52.0 + dev: true + + registry.npmmirror.com/neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/neo-async/-/neo-async-2.6.2.tgz} + name: neo-async + version: 2.6.2 + dev: true + + registry.npmmirror.com/node-releases@2.0.5: + resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/node-releases/-/node-releases-2.0.5.tgz} + name: node-releases + version: 2.0.5 + dev: true + + registry.npmmirror.com/picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz} + name: picocolors + version: 1.0.0 + dev: true + + registry.npmmirror.com/punycode@2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz} + name: punycode + version: 2.1.1 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/randombytes@2.1.0: + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/randombytes/-/randombytes-2.1.0.tgz} + name: randombytes + version: 2.1.0 + dependencies: + safe-buffer: registry.npmmirror.com/safe-buffer@5.2.1 + dev: true + + registry.npmmirror.com/rollup@2.75.6: + resolution: {integrity: sha512-OEf0TgpC9vU6WGROJIk1JA3LR5vk/yvqlzxqdrE2CzzXnqKXNzbAwlWUXis8RS3ZPe7LAq+YUxsRa0l3r27MLA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/rollup/-/rollup-2.75.6.tgz} + name: rollup + version: 2.75.6 + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: registry.npmmirror.com/fsevents@2.3.2 + dev: true + + registry.npmmirror.com/safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz} + name: safe-buffer + version: 5.2.1 + dev: true + + registry.npmmirror.com/schema-utils@3.3.0: + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/schema-utils/-/schema-utils-3.3.0.tgz} + name: schema-utils + version: 3.3.0 + engines: {node: '>= 10.13.0'} + dependencies: + '@types/json-schema': registry.npmmirror.com/@types/json-schema@7.0.11 + ajv: registry.npmmirror.com/ajv@6.12.6 + ajv-keywords: registry.npmmirror.com/ajv-keywords@3.5.2(ajv@6.12.6) + dev: true + + registry.npmmirror.com/serialize-javascript@6.0.1: + resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz} + name: serialize-javascript + version: 6.0.1 + dependencies: + randombytes: registry.npmmirror.com/randombytes@2.1.0 + dev: true + + registry.npmmirror.com/source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz} + name: source-map-support + version: 0.5.21 + dependencies: + buffer-from: registry.npmmirror.com/buffer-from@1.1.2 + source-map: registry.npmmirror.com/source-map@0.6.1 + dev: true + + registry.npmmirror.com/source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz} + name: source-map + version: 0.6.1 + engines: {node: '>=0.10.0'} + dev: true + + registry.npmmirror.com/supports-color@8.1.1: + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz} + name: supports-color + version: 8.1.1 + engines: {node: '>=10'} + dependencies: + has-flag: registry.npmmirror.com/has-flag@4.0.0 + dev: true + + registry.npmmirror.com/tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/tapable/-/tapable-2.2.1.tgz} + name: tapable + version: 2.2.1 + engines: {node: '>=6'} + dev: true + + registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.88.2): + resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz} + id: registry.npmmirror.com/terser-webpack-plugin/5.3.9 + name: terser-webpack-plugin + version: 5.3.9 + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' + webpack: ^5.1.0 + peerDependenciesMeta: + '@swc/core': + optional: true + esbuild: + optional: true + uglify-js: + optional: true + dependencies: + '@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19 + jest-worker: registry.npmmirror.com/jest-worker@27.5.1 + schema-utils: registry.npmmirror.com/schema-utils@3.3.0 + serialize-javascript: registry.npmmirror.com/serialize-javascript@6.0.1 + terser: registry.npmmirror.com/terser@5.20.0 + webpack: registry.npmmirror.com/webpack@5.88.2 + dev: true + + registry.npmmirror.com/terser@5.20.0: + resolution: {integrity: sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/terser/-/terser-5.20.0.tgz} + name: terser + version: 5.20.0 + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': registry.npmmirror.com/@jridgewell/source-map@0.3.5 + acorn: registry.npmmirror.com/acorn@8.10.0 + commander: registry.npmmirror.com/commander@2.20.3 + source-map-support: registry.npmmirror.com/source-map-support@0.5.21 + dev: true + + registry.npmmirror.com/uglify-js@3.17.4: + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uglify-js/-/uglify-js-3.17.4.tgz} + name: uglify-js + version: 3.17.4 + engines: {node: '>=0.8.0'} + hasBin: true + requiresBuild: true + dev: true + optional: true + + registry.npmmirror.com/uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz} + name: uri-js + version: 4.4.1 + dependencies: + punycode: registry.npmmirror.com/punycode@2.1.1 + dev: true + + registry.npmmirror.com/watchpack@2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/watchpack/-/watchpack-2.4.0.tgz} + name: watchpack + version: 2.4.0 + engines: {node: '>=10.13.0'} + dependencies: + glob-to-regexp: registry.npmmirror.com/glob-to-regexp@0.4.1 + graceful-fs: registry.npmmirror.com/graceful-fs@4.2.10 + dev: true + + registry.npmmirror.com/webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack-sources/-/webpack-sources-3.2.3.tgz} + name: webpack-sources + version: 3.2.3 + engines: {node: '>=10.13.0'} + dev: true + + registry.npmmirror.com/webpack@5.88.2: + resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==, registry: http://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/webpack/-/webpack-5.88.2.tgz} + name: webpack + version: 5.88.2 + engines: {node: '>=10.13.0'} + hasBin: true + peerDependencies: + webpack-cli: '*' + peerDependenciesMeta: + webpack-cli: + optional: true + dependencies: + '@types/eslint-scope': registry.npmmirror.com/@types/eslint-scope@3.7.5 + '@types/estree': registry.npmmirror.com/@types/estree@1.0.2 + '@webassemblyjs/ast': registry.npmmirror.com/@webassemblyjs/ast@1.11.6 + '@webassemblyjs/wasm-edit': registry.npmmirror.com/@webassemblyjs/wasm-edit@1.11.6 + '@webassemblyjs/wasm-parser': registry.npmmirror.com/@webassemblyjs/wasm-parser@1.11.6 + acorn: registry.npmmirror.com/acorn@8.7.1 + acorn-import-assertions: registry.npmmirror.com/acorn-import-assertions@1.9.0(acorn@8.7.1) + browserslist: registry.npmmirror.com/browserslist@4.20.4 + chrome-trace-event: registry.npmmirror.com/chrome-trace-event@1.0.3 + enhanced-resolve: registry.npmmirror.com/enhanced-resolve@5.15.0 + es-module-lexer: registry.npmmirror.com/es-module-lexer@1.3.1 + eslint-scope: registry.npmmirror.com/eslint-scope@5.1.1 + events: registry.npmmirror.com/events@3.3.0 + glob-to-regexp: registry.npmmirror.com/glob-to-regexp@0.4.1 + graceful-fs: registry.npmmirror.com/graceful-fs@4.2.10 + json-parse-even-better-errors: registry.npmmirror.com/json-parse-even-better-errors@2.3.1 + loader-runner: registry.npmmirror.com/loader-runner@4.3.0 + mime-types: registry.npmmirror.com/mime-types@2.1.35 + neo-async: registry.npmmirror.com/neo-async@2.6.2 + schema-utils: registry.npmmirror.com/schema-utils@3.3.0 + tapable: registry.npmmirror.com/tapable@2.2.1 + terser-webpack-plugin: registry.npmmirror.com/terser-webpack-plugin@5.3.9(webpack@5.88.2) + watchpack: registry.npmmirror.com/watchpack@2.4.0 + webpack-sources: registry.npmmirror.com/webpack-sources@3.2.3 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - uglify-js + dev: true diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 0000000..a6e6dee --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,12 @@ +module.exports = { + printWidth: 120, + tabWidth: 2, + useTabs: false, + singleQuote: true, + semi: false, + trailingComma: "none", + bracketSpacing: true, + jsxSingleQuote: true, + jsxBracketSameLine: false, + arrowParens: "avoid" +} \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..5602246 Binary files /dev/null and b/public/favicon.ico differ diff --git a/readme/go-view-canvas.png b/readme/go-view-canvas.png new file mode 100644 index 0000000..da77041 Binary files /dev/null and b/readme/go-view-canvas.png differ diff --git a/readme/go-view-color.png b/readme/go-view-color.png new file mode 100644 index 0000000..6543dbc Binary files /dev/null and b/readme/go-view-color.png differ diff --git a/readme/go-view-doc.png b/readme/go-view-doc.png new file mode 100644 index 0000000..39d62eb Binary files /dev/null and b/readme/go-view-doc.png differ diff --git a/readme/go-view-event.png b/readme/go-view-event.png new file mode 100644 index 0000000..4dc1e07 Binary files /dev/null and b/readme/go-view-event.png differ diff --git a/readme/go-view-fetch.png b/readme/go-view-fetch.png new file mode 100644 index 0000000..baad22f Binary files /dev/null and b/readme/go-view-fetch.png differ diff --git a/readme/go-view-filter.png b/readme/go-view-filter.png new file mode 100644 index 0000000..7aca460 Binary files /dev/null and b/readme/go-view-filter.png differ diff --git a/readme/go-view-indexpage.png b/readme/go-view-indexpage.png new file mode 100644 index 0000000..ba0dc20 Binary files /dev/null and b/readme/go-view-indexpage.png differ diff --git a/readme/go-view-qq.png b/readme/go-view-qq.png new file mode 100644 index 0000000..bb32597 Binary files /dev/null and b/readme/go-view-qq.png differ diff --git a/readme/go-view-theme.png b/readme/go-view-theme.png new file mode 100644 index 0000000..3acae15 Binary files /dev/null and b/readme/go-view-theme.png differ diff --git a/readme/logo-poster.png b/readme/logo-poster.png new file mode 100644 index 0000000..218ca30 Binary files /dev/null and b/readme/logo-poster.png differ diff --git a/readme/logo-t-y.png b/readme/logo-t-y.png new file mode 100644 index 0000000..cb52c6f Binary files /dev/null and b/readme/logo-t-y.png differ diff --git a/readme/logo.png b/readme/logo.png new file mode 100644 index 0000000..50111df Binary files /dev/null and b/readme/logo.png differ diff --git a/readme/preview.png b/readme/preview.png new file mode 100644 index 0000000..f35579f Binary files /dev/null and b/readme/preview.png differ diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..f623f13 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,37 @@ + + + diff --git a/src/api/axios.config.ts b/src/api/axios.config.ts new file mode 100644 index 0000000..f6ef25b --- /dev/null +++ b/src/api/axios.config.ts @@ -0,0 +1,12 @@ +import { ModuleTypeEnum } from '@/enums/httpEnum' + +// 接口白名单(免登录) +export const fetchAllowList = [ + // 登录 + `${ModuleTypeEnum.SYSTEM}/auth-login`, + // 预览获取数据 + `${ModuleTypeEnum.PROJECT}/getData`, +] + +// 接口黑名单 +export const fetchBlockList = [] diff --git a/src/api/axios.ts b/src/api/axios.ts new file mode 100644 index 0000000..8668030 --- /dev/null +++ b/src/api/axios.ts @@ -0,0 +1,97 @@ +import axios, { AxiosResponse, AxiosRequestConfig, Axios } from 'axios' +import { ResultEnum, ModuleTypeEnum } from "@/enums/httpEnum" +import { PageEnum, ErrorPageNameMap } from "@/enums/pageEnum" +import { StorageEnum } from '@/enums/storageEnum' +import { axiosPre } from '@/settings/httpSetting' +import { SystemStoreEnum, SystemStoreUserInfoEnum } from '@/store/modules/systemStore/systemStore.d' +import { redirectErrorPage, getLocalStorage, routerTurnByName, isPreview } from '@/utils' +import { fetchAllowList } from './axios.config' +import includes from 'lodash/includes' + +export interface MyResponseType { + code: ResultEnum + data: T + message: string +} + +export interface MyRequestInstance extends Axios { + (config: AxiosRequestConfig): Promise> +} + +const axiosInstance = axios.create({ + baseURL: `${import.meta.env.PROD ? import.meta.env.VITE_PRO_PATH : ''}${axiosPre}`, + timeout: ResultEnum.TIMEOUT, +}) as unknown as MyRequestInstance + +axiosInstance.interceptors.request.use( + (config: AxiosRequestConfig) => { + // 获取 tenantId + const info = getLocalStorage(StorageEnum.GO_SYSTEM_STORE) + const tenantId = info ? info[SystemStoreEnum.TENANT_INFO]['tenantId'] : undefined + if (tenantId) { + config.headers = { + ...config.headers, + 'tenant-id': tenantId + } + } + + // 白名单校验 + if (includes(fetchAllowList, config.url)) return config + // 获取 token + // 重新登录 + if (!info) { + routerTurnByName(PageEnum.BASE_LOGIN_NAME) + return config + } + const userInfo = info[SystemStoreEnum.USER_INFO] + config.headers = { + ...config.headers, + [userInfo[SystemStoreUserInfoEnum.TOKEN_NAME] || 'token']: 'Bearer ' + userInfo[SystemStoreUserInfoEnum.USER_TOKEN] || '' + } + return config + }, + (err: AxiosRequestConfig) => { + Promise.reject(err) + } +) + +// 响应拦截器 +axiosInstance.interceptors.response.use( + (res: AxiosResponse) => { + // 预览页面错误不进行处理 + if (isPreview()) { + return Promise.resolve(res.data) + } + // 如果是验证码的返回,直接返回数据 + const { code } = res.data as { code: number } + + if (code === undefined || code === null) return Promise.resolve(res) + + // 成功 + if (code === ResultEnum.SUCCESS) { + return Promise.resolve(res.data) + } + + // 登录过期 + if (code === ResultEnum.TOKEN_OVERDUE) { + window['$message'].error(window['$t']('http.token_overdue_message')) + routerTurnByName(PageEnum.BASE_LOGIN_NAME) + return Promise.resolve(res.data) + } + + // 固定错误码重定向 + if (ErrorPageNameMap.get(code)) { + redirectErrorPage(code) + return Promise.resolve(res.data) + } + + // 提示错误 + window['$message'].error(window['$t']((res.data as any).msg)) + return Promise.resolve(res.data) + }, + (err: AxiosResponse) => { + Promise.reject(err) + } +) + +export default axiosInstance diff --git a/src/api/http.ts b/src/api/http.ts new file mode 100644 index 0000000..cb8fa0b --- /dev/null +++ b/src/api/http.ts @@ -0,0 +1,254 @@ +import axiosInstance from './axios' +import { + RequestHttpEnum, + ContentTypeEnum, + RequestBodyEnum, + RequestDataTypeEnum, + RequestContentTypeEnum, + RequestParamsObjType +} from '@/enums/httpEnum' +import type { RequestGlobalConfigType, RequestConfigType } from '@/store/modules/chartEditStore/chartEditStore.d' +import { getLocalStorage } from "@/utils"; +import { StorageEnum } from "@/enums/storageEnum"; +import { SystemStoreEnum, SystemStoreUserInfoEnum } from '@/store/modules/systemStore/systemStore.d' + +export const get = (url: string, params?: object) => { + return axiosInstance({ + url: url, + method: RequestHttpEnum.GET, + params: params, + }) +} + +export const post = (url: string, data?: object, headersType?: string) => { + return axiosInstance({ + url: url, + method: RequestHttpEnum.POST, + data: data, + headers: { + 'Content-Type': headersType || ContentTypeEnum.JSON + } + }) +} + +export const patch = (url: string, data?: object, headersType?: string) => { + return axiosInstance({ + url: url, + method: RequestHttpEnum.PATCH, + data: data, + headers: { + 'Content-Type': headersType || ContentTypeEnum.JSON + } + }) +} + +export const put = (url: string, data?: object, headersType?: ContentTypeEnum) => { + return axiosInstance({ + url: url, + method: RequestHttpEnum.PUT, + data: data, + headers: { + 'Content-Type': headersType || ContentTypeEnum.JSON + } + }) +} + +export const del = (url: string, params?: object) => { + return axiosInstance({ + url: url, + method: RequestHttpEnum.DELETE, + params + }) +} + +// 获取请求函数,默认get +export const http = (type?: RequestHttpEnum) => { + switch (type) { + case RequestHttpEnum.GET: + return get + + case RequestHttpEnum.POST: + return post + + case RequestHttpEnum.PATCH: + return patch + + case RequestHttpEnum.PUT: + return put + + case RequestHttpEnum.DELETE: + return del + + default: + return get + } +} +const prefix = 'javascript:' +// 对输入字符进行转义处理 +export const translateStr = (target: string | Record) => { + if (typeof target === 'string') { + if (target.startsWith(prefix)) { + const funcStr = target.split(prefix)[1] + let result + try { + result = new Function(`${funcStr}`)() + } catch (error) { + console.log(error) + window['$message'].error('js内容解析有误!') + } + return result + } else { + return target + } + } + for (const key in target) { + if (Object.prototype.hasOwnProperty.call(target, key)) { + const subTarget = target[key] + target[key] = translateStr(subTarget) + } + } + return target +} + +// 处理 token 和多租户的头;注意:只拼接属于 VITE_DEV_PATH 或 VITE_PROD_PATH 开头的 URL 地址,就是自己的后端 +export const appendTokenAndTenant = (headers: RequestParamsObjType, requestUrl: string) => { + if (requestUrl.indexOf(import.meta.env.VITE_DEV_PATH) === -1 + || requestUrl.indexOf(import.meta.env.VITE_PROD_PATH) === -1) { + return headers + } + const info = getLocalStorage(StorageEnum.GO_SYSTEM_STORE) + if (!info) { + return headers; + } + // ① 获取 tenantId + const tenantId = info ? info[SystemStoreEnum.TENANT_INFO]['tenantId'] : undefined + if (tenantId) { + headers['tenant-id'] = tenantId + } + // ② 获取 token + const userInfo = info[SystemStoreEnum.USER_INFO] + if (!userInfo) { + return headers + } + headers[userInfo[SystemStoreUserInfoEnum.TOKEN_NAME] || 'token'] = 'Bearer ' + userInfo[SystemStoreUserInfoEnum.USER_TOKEN] + return headers +} + +/** + * * 自定义请求 + * @param targetParams 当前组件参数 + * @param globalParams 全局参数 + */ +export const customizeHttp = (targetParams: RequestConfigType, globalParams: RequestGlobalConfigType) => { + if (!targetParams || !globalParams) { + return + } + // 全局 + const { + // 全局请求源地址 + requestOriginUrl, + // 全局请求内容 + requestParams: globalRequestParams + } = globalParams + + // 目标组件(优先级 > 全局组件) + const { + // 请求地址 + requestUrl, + // 普通 / sql + requestContentType, + // 获取数据的方式 + requestDataType, + // 请求方式 get/post/del/put/patch + requestHttpType, + // 请求体类型 none / form-data / x-www-form-urlencoded / json /xml + requestParamsBodyType, + // SQL 请求对象 + requestSQLContent, + // 请求内容 params / cookie / header / body: 同 requestParamsBodyType + requestParams: targetRequestParams + } = targetParams + + // 静态排除 + if (requestDataType === RequestDataTypeEnum.STATIC) return + + if (!requestUrl) { + return + } + + // 处理头部 + let headers: RequestParamsObjType = { + ...globalRequestParams.Header, + ...targetRequestParams.Header + } + headers = translateStr(headers) + // 处理 token 和多租户的头 + headers = appendTokenAndTenant(headers, requestUrl) + + // data 参数 + let data: RequestParamsObjType | FormData | string = {} + // params 参数 + let params: RequestParamsObjType = { ...targetRequestParams.Params } + params = translateStr(params) + // form 类型处理 + let formData: FormData = new FormData() + formData.set('default', 'defaultData') + // 类型处理 + + switch (requestParamsBodyType) { + case RequestBodyEnum.NONE: + break + + case RequestBodyEnum.JSON: + headers['Content-Type'] = ContentTypeEnum.JSON + data = translateStr(JSON.parse(targetRequestParams.Body['json'])) + // json 赋值给 data + break + + case RequestBodyEnum.XML: + headers['Content-Type'] = ContentTypeEnum.XML + // xml 字符串赋值给 data + data = translateStr(targetRequestParams.Body['xml']) + break + + case RequestBodyEnum.X_WWW_FORM_URLENCODED: { + headers['Content-Type'] = ContentTypeEnum.FORM_URLENCODED + const bodyFormData = targetRequestParams.Body['x-www-form-urlencoded'] + for (const i in bodyFormData) formData.set(i, translateStr(bodyFormData[i])) + // FormData 赋值给 data + data = formData + break + } + + case RequestBodyEnum.FORM_DATA: { + headers['Content-Type'] = ContentTypeEnum.FORM_DATA + const bodyFormUrlencoded = targetRequestParams.Body['form-data'] + for (const i in bodyFormUrlencoded) { + formData.set(i, translateStr(bodyFormUrlencoded[i])) + } + // FormData 赋值给 data + data = formData + break + } + } + + // sql 处理 + if (requestContentType === RequestContentTypeEnum.SQL) { + headers['Content-Type'] = ContentTypeEnum.JSON + data = requestSQLContent + } + + try { + const url = (new Function("return `" + `${requestOriginUrl}${requestUrl}`.trim() + "`"))(); + return axiosInstance({ + url, + method: requestHttpType, + data, + params, + headers + }) + } catch (error) { + console.log(error) + window['$message'].error('URL地址格式有误!') + } +} diff --git a/src/api/mock/heatMapData.json b/src/api/mock/heatMapData.json new file mode 100644 index 0000000..47248f8 --- /dev/null +++ b/src/api/mock/heatMapData.json @@ -0,0 +1,199 @@ +{ + "xAxis": [ + "12a", + "1a", + "2a", + "3a", + "4a", + "5a", + "6a", + "7a", + "8a", + "9a", + "10a", + "11a", + "12p", + "1p", + "2p", + "3p", + "4p", + "5p", + "6p", + "7p", + "8p", + "9p", + "10p", + "11p" + ], + "yAxis": ["Saturday", "Friday", "Thursday", "Wednesday", "Tuesday", "Monday", "Sunday"], + "seriesData": [ + [0, 0, "@integer(0, 10)"], + [1, 0, "@integer(0, 10)"], + [2, 0, "-"], + [3, 0, "-"], + [4, 0, "-"], + [5, 0, "-"], + [6, 0, "-"], + [7, 0, "-"], + [8, 0, "-"], + [9, 0, "-"], + [10, 0, "-"], + [11, 0, "@integer(0, 10)"], + [12, 0, "@integer(0, 10)"], + [13, 0, "@integer(0, 10)"], + [14, 0, "@integer(0, 10)"], + [15, 0, "@integer(0, 10)"], + [16, 0, "@integer(0, 10)"], + [17, 0, "@integer(0, 10)"], + [18, 0, "@integer(0, 10)"], + [19, 0, "@integer(0, 10)"], + [20, 0, "@integer(0, 10)"], + [21, 0, "@integer(0, 10)"], + [22, 0, "@integer(0, 10)"], + [23, 0, "@integer(0, 10)"], + [0, 1, 7], + [1, 1, "-"], + [2, 1, "-"], + [3, 1, "-"], + [4, 1, "-"], + [5, 1, "-"], + [6, 1, "-"], + [7, 1, "-"], + [8, 1, "-"], + [9, 1, "-"], + [10, 1, "@integer(0, 10)"], + [11, 1, "@integer(0, 10)"], + [12, 1, "@integer(0, 10)"], + [13, 1, "@integer(0, 10)"], + [14, 1, "@integer(0, 10)"], + [15, 1, "@integer(0, 10)"], + [16, 1, "@integer(0, 10)"], + [17, 1, "@integer(0, 10)"], + [18, 1, "@integer(0, 10)"], + [19, 1, "@integer(0, 10)"], + [20, 1, "@integer(0, 10)"], + [21, 1, "@integer(0, 10)"], + [22, 1, "@integer(0, 10)"], + [23, 1, "@integer(0, 10)"], + [0, 2, 1], + [1, 2, 1], + [2, 2, "-"], + [3, 2, "-"], + [4, 2, "-"], + [5, 2, "-"], + [6, 2, "-"], + [7, 2, "-"], + [8, 2, "-"], + [9, 2, "-"], + [10, 2, "@integer(0, 10)"], + [11, 2, "@integer(0, 10)"], + [12, 2, "@integer(0, 10)"], + [13, 2, "@integer(0, 10)"], + [14, 2, "@integer(0, 10)"], + [15, 2, "@integer(0, 10)"], + [16, 2, "@integer(0, 10)"], + [17, 2, "@integer(0, 10)"], + [18, 2, "@integer(0, 10)"], + [19, 2, "@integer(0, 10)"], + [20, 2, "@integer(0, 10)"], + [21, 2, "@integer(0, 10)"], + [22, 2, "@integer(0, 10)"], + [23, 2, "@integer(0, 10)"], + [0, 3, 7], + [1, 3, 3], + [2, 3, "-"], + [3, 3, "-"], + [4, 3, "-"], + [5, 3, "-"], + [6, 3, "-"], + [7, 3, "-"], + [8, 3, 1], + [9, 3, "-"], + [10, 3, "@integer(0, 10)"], + [11, 3, "@integer(0, 10)"], + [12, 3, "@integer(0, 10)"], + [13, 3, "@integer(0, 10)"], + [14, 3, "@integer(0, 10)"], + [15, 3, "@integer(0, 10)"], + [16, 3, "@integer(0, 10)"], + [17, 3, "@integer(0, 10)"], + [18, 3, "@integer(0, 10)"], + [19, 3, "@integer(0, 10)"], + [20, 3, "@integer(0, 10)"], + [21, 3, "@integer(0, 10)"], + [22, 3, "@integer(0, 10)"], + [23, 3, "@integer(0, 10)"], + [0, 4, "@integer(0, 10)"], + [1, 4, "@integer(0, 10)"], + [2, 4, "-"], + [3, 4, "-"], + [4, 4, "-"], + [5, 4, "@integer(0, 10)"], + [6, 4, "-"], + [7, 4, "-"], + [8, 4, "-"], + [9, 4, "@integer(0, 10)"], + [10, 4, "@integer(0, 10)"], + [11, 4, "@integer(0, 10)"], + [12, 4, "@integer(0, 10)"], + [13, 4, "@integer(0, 10)"], + [14, 4, "@integer(0, 10)"], + [15, 4, "@integer(0, 10)"], + [16, 4, "@integer(0, 10)"], + [17, 4, "@integer(0, 10)"], + [18, 4, "@integer(0, 10)"], + [19, 4, "@integer(0, 10)"], + [20, 4, "@integer(0, 10)"], + [21, 4, "@integer(0, 10)"], + [22, 4, "@integer(0, 10)"], + [23, 4, "-"], + [0, 5, "@integer(0, 10)"], + [1, 5, "@integer(0, 10)"], + [2, 5, "-"], + [3, 5, "@integer(0, 10)"], + [4, 5, "-"], + [5, 5, "-"], + [6, 5, "-"], + [7, 5, "-"], + [8, 5, "@integer(0, 10)"], + [9, 5, "-"], + [10, 5, "@integer(0, 10)"], + [11, 5, "@integer(0, 10)"], + [12, 5, "@integer(0, 10)"], + [13, 5, "@integer(0, 10)"], + [14, 5, "@integer(0, 10)"], + [15, 5, "@integer(0, 10)"], + [16, 5, "@integer(0, 10)"], + [17, 5, "@integer(0, 10)"], + [18, 5, "-"], + [19, 5, "@integer(0, 10)"], + [20, 5, "@integer(0, 10)"], + [21, 5, "@integer(0, 10)"], + [22, 5, "@integer(0, 10)"], + [23, 5, "-"], + [0, 6, "@integer(0, 10)"], + [1, 6, "-"], + [2, 6, "-"], + [3, 6, "-"], + [4, 6, "-"], + [5, 6, "-"], + [6, 6, "-"], + [7, 6, "-"], + [8, 6, "-"], + [9, 6, "-"], + [10, 6, "@integer(0, 10)"], + [11, 6, "-"], + [12, 6, "@integer(0, 10)"], + [13, 6, "@integer(0, 10)"], + [14, 6, "@integer(0, 10)"], + [15, 6, "@integer(0, 10)"], + [16, 6, "-"], + [17, 6, "-"], + [18, 6, "-"], + [19, 6, "-"], + [20, 6, "@integer(0, 10)"], + [21, 6, "@integer(0, 10)"], + [22, 6, "@integer(0, 10)"], + [23, 6, "@integer(0, 10)"] + ] +} diff --git a/src/api/mock/index.ts b/src/api/mock/index.ts new file mode 100644 index 0000000..eea6610 --- /dev/null +++ b/src/api/mock/index.ts @@ -0,0 +1,108 @@ +import test from './test.mock' +import { MockMethod } from 'vite-plugin-mock' +import { RequestHttpEnum } from '@/enums/httpEnum' + +// 单个X数据 +export const chartDataUrl = '/mock/chartData' +export const chartSingleDataUrl = '/mock/chartSingleData' +export const numberFloatUrl = '/mock/number/float' +export const numberIntUrl = '/mock/number/int' +export const textUrl = '/mock/text' +export const imageUrl = '/mock/image' +export const rankListUrl = '/mock/rankList' +export const scrollBoardUrl = '/mock/scrollBoard' +export const radarUrl = '/mock/radarData' +export const heatMapUrl = '/mock/heatMapData' +export const scatterBasicUrl = '/mock/scatterBasic' +export const mapUrl = '/mock/map' +export const capsuleUrl = '/mock/capsule' +export const wordCloudUrl = '/mock/wordCloud' +export const treemapUrl = '/mock/treemap' +export const threeEarth01Url = '/mock/threeEarth01Data' + +const mockObject: MockMethod[] = [ + { + // 正则 + // url: /\/mock\/mockData(|\?\S*)$/, + url: chartDataUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchMockData + }, + { + url: chartSingleDataUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchMockSingleData + }, + { + url: numberFloatUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchNumberFloat + }, + { + url: numberIntUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchNumberInt + }, + { + url: textUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchText + }, + { + url: imageUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchImage(Math.round(Math.random() * 10)) + }, + { + url: rankListUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchRankList + }, + { + url: scrollBoardUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchScrollBoard + }, + { + url: radarUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchRadar + }, + { + url: heatMapUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchHeatmap + }, + { + url: scatterBasicUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchScatterBasic + }, + { + url: mapUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchMap + }, + { + url: capsuleUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchCapsule + }, + { + url: wordCloudUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchWordCloud + }, + { + url: treemapUrl, + method: RequestHttpEnum.GET, + response: () => test.fetchTreemap + }, + { + url: threeEarth01Url, + method: RequestHttpEnum.GET, + response: () => test.threeEarth01Data + }, +] + +export default mockObject diff --git a/src/api/mock/map.json b/src/api/mock/map.json new file mode 100644 index 0000000..246e68a --- /dev/null +++ b/src/api/mock/map.json @@ -0,0 +1,9 @@ +{ + "markers|50": [ + { + "name": "某某地市", + "value": "@integer(2, 20)", + "position": ["@float(115, 117, 1, 6)", "@float(38, 40, 1, 6)"] + } + ] +} diff --git a/src/api/mock/scatter.json b/src/api/mock/scatter.json new file mode 100644 index 0000000..df623bc --- /dev/null +++ b/src/api/mock/scatter.json @@ -0,0 +1,56 @@ +[ + { + "dimensions": ["data1"], + "source": [ + [10.0, "@integer(0, 100)"], + [8.07, "@integer(0, 100)"], + [13.0, "@integer(0, 100)"], + [9.05, "@integer(0, 100)"], + [11.0, "@integer(0, 100)"], + [14.0, "@integer(0, 100)"], + [13.4, "@integer(0, 100)"], + [10.0, "@integer(0, 100)"], + [14.0, "@integer(0, 100)"], + [12.5, "@integer(0, 100)"], + [9.15, "@integer(0, 100)"], + [11.5, "@integer(0, 100)"], + [3.03, "@integer(0, 100)"], + [12.2, "@integer(0, 100)"], + [2.02, "@integer(0, 100)"], + [1.05, "@integer(0, 100)"], + [4.05, "@integer(0, 100)"], + [6.03, "@integer(0, 100)"], + [12.0, "@integer(0, 100)"], + [12.0, "@integer(0, 100)"], + [7.08, "@integer(0, 100)"], + [5.02, "@integer(0, 100)"] + ] + }, + { + "dimensions": ["data2"], + "source": [ + [10.0, "@integer(0, 70)"], + [8.07, "@integer(0, 70)"], + [13.0, "@integer(0, 70)"], + [9.05, "@integer(0, 70)"], + [11.0, "@integer(0, 70)"], + [14.0, "@integer(0, 70)"], + [13.4, "@integer(0, 70)"], + [10.0, "@integer(0, 70)"], + [14.0, "@integer(0, 70)"], + [12.5, "@integer(0, 70)"], + [9.15, "@integer(0, 70)"], + [11.5, "@integer(0, 70)"], + [3.03, "@integer(0, 70)"], + [12.2, "@integer(0, 70)"], + [2.02, "@integer(0, 70)"], + [1.05, "@integer(0, 70)"], + [4.05, "@integer(0, 70)"], + [6.03, "@integer(0, 70)"], + [12.0, "@integer(0, 70)"], + [12.0, "@integer(0, 70)"], + [7.08, "@integer(0, 70)"], + [5.02, "@integer(0, 70)"] + ] + } +] diff --git a/src/api/mock/test.mock.ts b/src/api/mock/test.mock.ts new file mode 100644 index 0000000..9db8cc7 --- /dev/null +++ b/src/api/mock/test.mock.ts @@ -0,0 +1,223 @@ +import heatmapJson from './heatMapData.json' +import scatterJson from './scatter.json' +import mapJson from './map.json' +import tTreemapJson from './treemap.json' + +export default { + // 单图表 + fetchMockSingleData: { + code: 0, + status: 200, + msg: '请求成功', + data: { + dimensions: ['product', 'dataOne'], + 'source|20': [ + { + product: '@name', + 'dataOne|0-900': 3 + } + ] + } + }, + // 胶囊图 + fetchCapsule: { + code: 0, + status: 200, + msg: '请求成功', + data: { + dimensions: ['name', 'value'], + "source|2-5": [ + { 'name|+1': ["厦门","福州","北京","上海","新疆","郑州","湖南","内蒙古"], 'value|0-40': 20 }, + ] + } + }, + // 图表 + fetchMockData: { + code: 0, + status: 200, + msg: '请求成功', + data: { + dimensions: ['product', 'dataOne', 'dataTwo', 'dataThree'], + 'source|20': [ + { + product: '@name', + 'dataOne|100-900': 3, + 'dataTwo|100-900': 3, + 'dataThree|100-900': 3 + } + ] + } + }, + // 排名列表 + fetchRankList: { + code: 0, + status: 200, + msg: '请求成功', + 'data|50': [{ name: '@name', 'value|100-900': 5 }] + }, + // 轮播表格 + fetchScrollBoard: { + code: 0, + status: 200, + msg: '请求成功', + data: [ + ['行1列1', '行1列2', '1'], + ['行2列1', '行2列2', '2'], + ['行3列1', '行3列2', '3'], + ['行4列1', '行4列2', '4'], + ['行5列1', '行5列2', '5'], + ['行6列1', '行6列2', '6'], + ['行7列1', '行7列2', '行7列3'], + ['行8列1', '行8列2', '行8列3'], + ['行9列1', '行9列2', '行9列3'], + ['行10列1', '行10列2', '行10列3'] + ] + }, + // 获取数字-浮点型 + fetchNumberFloat: { + code: 0, + status: 200, + msg: '请求成功', + data: '@float(0, 0.99, 1, 4)' + }, + // 获取数字-整型 + fetchNumberInt: { + code: 0, + status: 200, + msg: '请求成功', + data: '@integer(0, 100)' + }, + // 文字 + fetchText: { + code: 0, + status: 200, + msg: '请求成功', + data: '@paragraph(1, 10)' + }, + // 图片 + fetchImage: (num: number) => ({ + code: 0, + status: 200, + msg: '请求成功', + data: `https://robohash.org/${num}` + }), + // 雷达 + fetchRadar: { + code: 0, + status: 200, + msg: '请求成功', + data: { + radarIndicator: [ + { name: '@name', max: 10000 }, + { name: '@name', max: 10000 }, + { name: '@name', max: 10000 }, + { name: '@name', max: 10000 }, + { name: '@name', max: 10000 }, + { name: '@name', max: 10000 } + ], + seriesData: [ + { + value: [ + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)' + ], + name: 'data1' + }, + { + value: [ + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)', + '@integer(0, 10000)' + ], + name: 'data2' + } + ] + } + }, + // 热力图 + fetchHeatmap: { + code: 0, + status: 200, + msg: '请求成功', + data: heatmapJson + }, + // 散点图 + fetchScatterBasic: { + code: 0, + status: 200, + msg: '请求成功', + data: scatterJson + }, + // 中国地图 + fetchMap: { + code: 0, + status: 200, + msg: '请求成功', + data: mapJson + }, + // 词云 + fetchWordCloud: { + code: 0, + status: 200, + msg: '请求成功', + data: [ + { + name: '@name', + value: 8000, + textStyle: { + color: '#78fbb2' + }, + emphasis: { + textStyle: { + color: 'red' + } + } + }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' }, + { name: '@name', value: '@integer(10, 8000)' } + ] + }, + // 树图 + fetchTreemap: { + code: 0, + status: 200, + msg: '请求成功', + data: tTreemapJson + }, + // 三维地球 + threeEarth01Data: { + code: 0, + status: 200, + msg: '请求成功', + data: [ + { + startArray: { name: '@name', N: '@integer(10, 100)', E: '@integer(10, 100)' }, + 'endArray|10': [{ name: '@name', N: '@integer(10, 100)', E: '@integer(10, 100)' }] + } + ] + } +} diff --git a/src/api/mock/treemap.json b/src/api/mock/treemap.json new file mode 100644 index 0000000..1f5d7e3 --- /dev/null +++ b/src/api/mock/treemap.json @@ -0,0 +1,50 @@ +[ + { + "name": "@name", + "value": "@integer(0, 1000)", + "children": [ + { + "name": "@name", + "value": "@integer(0, 500)" + }, + { + "name": "@name", + "value": "@integer(0, 500)" + } + ] + }, + { + "name": "@name", + "value": "@integer(0, 1000)", + "children": [ + { + "name": "@name", + "value": "@integer(0, 00)" + }, + { + "name": "@name", + "value": "@integer(0, 500)" + } + ] + }, + { + "name": "@name", + "value": "@integer(0, 1000)", + "children": [ + { + "name": "@name", + "value": "@integer(0, 1000)" + } + ] + }, + { + "name": "@name", + "value": "@integer(0, 1000)", + "children": [ + { + "name": "@name", + "value": "@integer(0, 1000)" + } + ] + } +] diff --git a/src/api/path/index.ts b/src/api/path/index.ts new file mode 100644 index 0000000..427c9a7 --- /dev/null +++ b/src/api/path/index.ts @@ -0,0 +1,3 @@ +export * from '@/api/path/project.api' +export * from '@/api/path/system.api' +export * from '@/api/path/infra.api' diff --git a/src/api/path/infra.api.ts b/src/api/path/infra.api.ts new file mode 100644 index 0000000..ee85c21 --- /dev/null +++ b/src/api/path/infra.api.ts @@ -0,0 +1,13 @@ +import { http } from '@/api/http' +import { httpErrorHandle } from '@/utils' +import { RequestHttpEnum, ModuleTypeEnum, ContentTypeEnum } from '@/enums/httpEnum' + +// * 上传文件 +export const uploadFile = async (data: object) => { + try { + const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.INFRA}/file/upload`, data, ContentTypeEnum.FORM_DATA) + return res + } catch { + httpErrorHandle() + } +} diff --git a/src/api/path/project.api.ts b/src/api/path/project.api.ts new file mode 100644 index 0000000..b04272d --- /dev/null +++ b/src/api/path/project.api.ts @@ -0,0 +1,77 @@ +import { http } from '@/api/http' +import { httpErrorHandle } from '@/utils' +import { ContentTypeEnum, RequestHttpEnum, ModuleTypeEnum } from '@/enums/httpEnum' +import { ProjectItem, ProjectDetail } from './project' // TODO 分页返回,优化使用 ProjectItem + +// * 项目列表 +export const projectListApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.GET)<{ + list: ProjectItem[], + count: number + }>(`${ModuleTypeEnum.PROJECT}/my-page`, data) + return res + } catch { + httpErrorHandle() + } +} + +// * 新增项目 +export const createProjectApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.PROJECT}/create`, data) + return res + } catch { + httpErrorHandle() + } +} + +// * 获取项目 +export const fetchProjectApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.GET)(`${ModuleTypeEnum.PROJECT}/get`, data) + return res + } catch { + httpErrorHandle() + } +} + +// * 保存项目 +export const saveProjectApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.PUT)(`${ModuleTypeEnum.PROJECT}/update`, data) + return res + } catch { + httpErrorHandle() + } +} + +// * 修改项目基础信息 +export const updateProjectApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.PUT)(`${ModuleTypeEnum.PROJECT}/update`, data) + return res + } catch { + httpErrorHandle() + } +} + +// * 删除项目 +export const deleteProjectApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.DELETE)(`${ModuleTypeEnum.PROJECT}/delete`, data) + return res + } catch { + httpErrorHandle() + } +} + +// * 修改发布状态 [0 已发布, 1 未发布] +export const changeProjectReleaseApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.PUT)(`${ModuleTypeEnum.PROJECT}/update`, data) + return res + } catch { + httpErrorHandle() + } +} diff --git a/src/api/path/project.d.ts b/src/api/path/project.d.ts new file mode 100644 index 0000000..bc15fe1 --- /dev/null +++ b/src/api/path/project.d.ts @@ -0,0 +1,40 @@ +export type ProjectItem = { + /** + * 项目 id + */ + id: string + /** + * 项目名称 + */ + name: string + /** + * 项目状态: + * + * 0 - 已发布 + * 1 - 未发布 + */ + status: number + /** + * 创建时间 + */ + createTime: number + /** + * 预览图片 URL + */ + picUrl: string + /** + * 创建者 + */ + creator: string + /** + * 项目备注 + */ + remark: string +} + +export interface ProjectDetail extends ProjectItem { + /** + * 项目参数 + */ + content: string +} diff --git a/src/api/path/system.api.ts b/src/api/path/system.api.ts new file mode 100644 index 0000000..0bd0c6e --- /dev/null +++ b/src/api/path/system.api.ts @@ -0,0 +1,66 @@ +import { http } from '@/api/http' +import { httpErrorHandle } from '@/utils' +import { RequestHttpEnum, ModuleTypeEnum } from '@/enums/httpEnum' +import {AuthLoginRespVO, ProfileVO} from './system' + +// * 登录 +export const loginApi = async (data: object) => { + try { + const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.SYSTEM}/auth/login`, data) + console.log(res) + return res + } catch (err) { + httpErrorHandle() + } +} + +// * 登出 +export const logoutApi = async () => { + try { + const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.SYSTEM}/auth/logout`) + return res + } catch (err) { + httpErrorHandle() + } +} + +// 查询用户个人信息 +export const getUserProfileApi = async () => { + try { + const res = await http(RequestHttpEnum.GET)(`${ModuleTypeEnum.SYSTEM}/user/profile/get`) + return res + } catch (err) { + httpErrorHandle() + } +} + + +// 获取验证图片 以及token +export const getCodeApi = async (data: any) => { + try { + const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.SYSTEM}/captcha/get`, data) + return res.data + } catch (err) { + httpErrorHandle() + } +} + +// 滑动或者点选验证 +export const reqCheckApi = async (data: any) => { + try { + const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.SYSTEM}/captcha/check`, data) + return res.data + } catch (err) { + httpErrorHandle() + } +} + +// 使用租户名,获得租户编号 +export const getTenantIdByNameApi = async (name: string) => { + try { + const res = await http(RequestHttpEnum.GET)(`${ModuleTypeEnum.SYSTEM}/tenant/get-id-by-name?name=` + name) + return res + } catch (err) { + httpErrorHandle() + } +} diff --git a/src/api/path/system.d.ts b/src/api/path/system.d.ts new file mode 100644 index 0000000..7b6a412 --- /dev/null +++ b/src/api/path/system.d.ts @@ -0,0 +1,23 @@ +export interface AuthLoginRespVO { + /** + * 用户编号 + */ + userId: number + /** + * 访问令牌 + */ + accessToken: string + /** + * 刷新令牌 + */ + refreshToken: string + /** + * 过期时间 + */ + expiresTime: number +} + +export interface ProfileVO { + id: number + nickname: string +} diff --git a/src/assets/images/Error.svg b/src/assets/images/Error.svg new file mode 100644 index 0000000..181e5f1 --- /dev/null +++ b/src/assets/images/Error.svg @@ -0,0 +1,255 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/assets/images/canvas/noData.png b/src/assets/images/canvas/noData.png new file mode 100644 index 0000000..d65bc8e Binary files /dev/null and b/src/assets/images/canvas/noData.png differ diff --git a/src/assets/images/canvas/noImage.png b/src/assets/images/canvas/noImage.png new file mode 100644 index 0000000..ee1bc8f Binary files /dev/null and b/src/assets/images/canvas/noImage.png differ diff --git a/src/assets/images/chart/charts/bar_x.png b/src/assets/images/chart/charts/bar_x.png new file mode 100644 index 0000000..1f77416 Binary files /dev/null and b/src/assets/images/chart/charts/bar_x.png differ diff --git a/src/assets/images/chart/charts/bar_y.png b/src/assets/images/chart/charts/bar_y.png new file mode 100644 index 0000000..8163a6f Binary files /dev/null and b/src/assets/images/chart/charts/bar_y.png differ diff --git a/src/assets/images/chart/charts/capsule.png b/src/assets/images/chart/charts/capsule.png new file mode 100644 index 0000000..6dae56b Binary files /dev/null and b/src/assets/images/chart/charts/capsule.png differ diff --git a/src/assets/images/chart/charts/funnel.png b/src/assets/images/chart/charts/funnel.png new file mode 100644 index 0000000..f5c4b66 Binary files /dev/null and b/src/assets/images/chart/charts/funnel.png differ diff --git a/src/assets/images/chart/charts/heatmap.png b/src/assets/images/chart/charts/heatmap.png new file mode 100644 index 0000000..96a17df Binary files /dev/null and b/src/assets/images/chart/charts/heatmap.png differ diff --git a/src/assets/images/chart/charts/line.png b/src/assets/images/chart/charts/line.png new file mode 100644 index 0000000..8389461 Binary files /dev/null and b/src/assets/images/chart/charts/line.png differ diff --git a/src/assets/images/chart/charts/line_gradient.png b/src/assets/images/chart/charts/line_gradient.png new file mode 100644 index 0000000..1103e60 Binary files /dev/null and b/src/assets/images/chart/charts/line_gradient.png differ diff --git a/src/assets/images/chart/charts/line_gradient_single.png b/src/assets/images/chart/charts/line_gradient_single.png new file mode 100644 index 0000000..536637f Binary files /dev/null and b/src/assets/images/chart/charts/line_gradient_single.png differ diff --git a/src/assets/images/chart/charts/line_linear_single.png b/src/assets/images/chart/charts/line_linear_single.png new file mode 100644 index 0000000..d5689a4 Binary files /dev/null and b/src/assets/images/chart/charts/line_linear_single.png differ diff --git a/src/assets/images/chart/charts/map.png b/src/assets/images/chart/charts/map.png new file mode 100644 index 0000000..d0359da Binary files /dev/null and b/src/assets/images/chart/charts/map.png differ diff --git a/src/assets/images/chart/charts/map_amap.png b/src/assets/images/chart/charts/map_amap.png new file mode 100644 index 0000000..d9e4381 Binary files /dev/null and b/src/assets/images/chart/charts/map_amap.png differ diff --git a/src/assets/images/chart/charts/pie-circle.png b/src/assets/images/chart/charts/pie-circle.png new file mode 100644 index 0000000..7d99ed0 Binary files /dev/null and b/src/assets/images/chart/charts/pie-circle.png differ diff --git a/src/assets/images/chart/charts/pie.png b/src/assets/images/chart/charts/pie.png new file mode 100644 index 0000000..8890144 Binary files /dev/null and b/src/assets/images/chart/charts/pie.png differ diff --git a/src/assets/images/chart/charts/process.png b/src/assets/images/chart/charts/process.png new file mode 100644 index 0000000..e88df5a Binary files /dev/null and b/src/assets/images/chart/charts/process.png differ diff --git a/src/assets/images/chart/charts/radar.png b/src/assets/images/chart/charts/radar.png new file mode 100644 index 0000000..adb328e Binary files /dev/null and b/src/assets/images/chart/charts/radar.png differ diff --git a/src/assets/images/chart/charts/scatter-logarithmic-regression.png b/src/assets/images/chart/charts/scatter-logarithmic-regression.png new file mode 100644 index 0000000..7900b52 Binary files /dev/null and b/src/assets/images/chart/charts/scatter-logarithmic-regression.png differ diff --git a/src/assets/images/chart/charts/scatter-multi.png b/src/assets/images/chart/charts/scatter-multi.png new file mode 100644 index 0000000..8aac56f Binary files /dev/null and b/src/assets/images/chart/charts/scatter-multi.png differ diff --git a/src/assets/images/chart/charts/scatter.png b/src/assets/images/chart/charts/scatter.png new file mode 100644 index 0000000..b454fe8 Binary files /dev/null and b/src/assets/images/chart/charts/scatter.png differ diff --git a/src/assets/images/chart/charts/tree_map.png b/src/assets/images/chart/charts/tree_map.png new file mode 100644 index 0000000..56bcb73 Binary files /dev/null and b/src/assets/images/chart/charts/tree_map.png differ diff --git a/src/assets/images/chart/charts/water_WaterPolo.png b/src/assets/images/chart/charts/water_WaterPolo.png new file mode 100644 index 0000000..2953e58 Binary files /dev/null and b/src/assets/images/chart/charts/water_WaterPolo.png differ diff --git a/src/assets/images/chart/decorates/border.png b/src/assets/images/chart/decorates/border.png new file mode 100644 index 0000000..4a258c6 Binary files /dev/null and b/src/assets/images/chart/decorates/border.png differ diff --git a/src/assets/images/chart/decorates/border01.png b/src/assets/images/chart/decorates/border01.png new file mode 100644 index 0000000..11609f3 Binary files /dev/null and b/src/assets/images/chart/decorates/border01.png differ diff --git a/src/assets/images/chart/decorates/border02.png b/src/assets/images/chart/decorates/border02.png new file mode 100644 index 0000000..8f8ee46 Binary files /dev/null and b/src/assets/images/chart/decorates/border02.png differ diff --git a/src/assets/images/chart/decorates/border03.png b/src/assets/images/chart/decorates/border03.png new file mode 100644 index 0000000..c548955 Binary files /dev/null and b/src/assets/images/chart/decorates/border03.png differ diff --git a/src/assets/images/chart/decorates/border04.png b/src/assets/images/chart/decorates/border04.png new file mode 100644 index 0000000..c25c44f Binary files /dev/null and b/src/assets/images/chart/decorates/border04.png differ diff --git a/src/assets/images/chart/decorates/border05.png b/src/assets/images/chart/decorates/border05.png new file mode 100644 index 0000000..0c1565e Binary files /dev/null and b/src/assets/images/chart/decorates/border05.png differ diff --git a/src/assets/images/chart/decorates/border06.png b/src/assets/images/chart/decorates/border06.png new file mode 100644 index 0000000..5beb77d Binary files /dev/null and b/src/assets/images/chart/decorates/border06.png differ diff --git a/src/assets/images/chart/decorates/border07.png b/src/assets/images/chart/decorates/border07.png new file mode 100644 index 0000000..e60f096 Binary files /dev/null and b/src/assets/images/chart/decorates/border07.png differ diff --git a/src/assets/images/chart/decorates/border08.png b/src/assets/images/chart/decorates/border08.png new file mode 100644 index 0000000..5fd56fd Binary files /dev/null and b/src/assets/images/chart/decorates/border08.png differ diff --git a/src/assets/images/chart/decorates/border09.png b/src/assets/images/chart/decorates/border09.png new file mode 100644 index 0000000..7672b8d Binary files /dev/null and b/src/assets/images/chart/decorates/border09.png differ diff --git a/src/assets/images/chart/decorates/border10.png b/src/assets/images/chart/decorates/border10.png new file mode 100644 index 0000000..d68123e Binary files /dev/null and b/src/assets/images/chart/decorates/border10.png differ diff --git a/src/assets/images/chart/decorates/border11.png b/src/assets/images/chart/decorates/border11.png new file mode 100644 index 0000000..5ee28ea Binary files /dev/null and b/src/assets/images/chart/decorates/border11.png differ diff --git a/src/assets/images/chart/decorates/border12.png b/src/assets/images/chart/decorates/border12.png new file mode 100644 index 0000000..b320552 Binary files /dev/null and b/src/assets/images/chart/decorates/border12.png differ diff --git a/src/assets/images/chart/decorates/border13.png b/src/assets/images/chart/decorates/border13.png new file mode 100644 index 0000000..c46f7c3 Binary files /dev/null and b/src/assets/images/chart/decorates/border13.png differ diff --git a/src/assets/images/chart/decorates/clock.png b/src/assets/images/chart/decorates/clock.png new file mode 100644 index 0000000..78cc965 Binary files /dev/null and b/src/assets/images/chart/decorates/clock.png differ diff --git a/src/assets/images/chart/decorates/countdown.png b/src/assets/images/chart/decorates/countdown.png new file mode 100644 index 0000000..c414a31 Binary files /dev/null and b/src/assets/images/chart/decorates/countdown.png differ diff --git a/src/assets/images/chart/decorates/decorates01.png b/src/assets/images/chart/decorates/decorates01.png new file mode 100644 index 0000000..9bc27e0 Binary files /dev/null and b/src/assets/images/chart/decorates/decorates01.png differ diff --git a/src/assets/images/chart/decorates/decorates02.png b/src/assets/images/chart/decorates/decorates02.png new file mode 100644 index 0000000..652c801 Binary files /dev/null and b/src/assets/images/chart/decorates/decorates02.png differ diff --git a/src/assets/images/chart/decorates/decorates03.png b/src/assets/images/chart/decorates/decorates03.png new file mode 100644 index 0000000..92c32cb Binary files /dev/null and b/src/assets/images/chart/decorates/decorates03.png differ diff --git a/src/assets/images/chart/decorates/decorates04.png b/src/assets/images/chart/decorates/decorates04.png new file mode 100644 index 0000000..7a3d352 Binary files /dev/null and b/src/assets/images/chart/decorates/decorates04.png differ diff --git a/src/assets/images/chart/decorates/decorates05.png b/src/assets/images/chart/decorates/decorates05.png new file mode 100644 index 0000000..cfd0849 Binary files /dev/null and b/src/assets/images/chart/decorates/decorates05.png differ diff --git a/src/assets/images/chart/decorates/decorates06.png b/src/assets/images/chart/decorates/decorates06.png new file mode 100644 index 0000000..8744206 Binary files /dev/null and b/src/assets/images/chart/decorates/decorates06.png differ diff --git a/src/assets/images/chart/decorates/flipper-number.png b/src/assets/images/chart/decorates/flipper-number.png new file mode 100644 index 0000000..b64d4fd Binary files /dev/null and b/src/assets/images/chart/decorates/flipper-number.png differ diff --git a/src/assets/images/chart/decorates/number.png b/src/assets/images/chart/decorates/number.png new file mode 100644 index 0000000..b93289a Binary files /dev/null and b/src/assets/images/chart/decorates/number.png differ diff --git a/src/assets/images/chart/decorates/threeEarth01.png b/src/assets/images/chart/decorates/threeEarth01.png new file mode 100644 index 0000000..84ab4ae Binary files /dev/null and b/src/assets/images/chart/decorates/threeEarth01.png differ diff --git a/src/assets/images/chart/decorates/time.png b/src/assets/images/chart/decorates/time.png new file mode 100644 index 0000000..5d927de Binary files /dev/null and b/src/assets/images/chart/decorates/time.png differ diff --git a/src/assets/images/chart/informations/iframe.png b/src/assets/images/chart/informations/iframe.png new file mode 100644 index 0000000..7204274 Binary files /dev/null and b/src/assets/images/chart/informations/iframe.png differ diff --git a/src/assets/images/chart/informations/photo.png b/src/assets/images/chart/informations/photo.png new file mode 100644 index 0000000..ea542b1 Binary files /dev/null and b/src/assets/images/chart/informations/photo.png differ diff --git a/src/assets/images/chart/informations/text_barrage.png b/src/assets/images/chart/informations/text_barrage.png new file mode 100644 index 0000000..3b7db8e Binary files /dev/null and b/src/assets/images/chart/informations/text_barrage.png differ diff --git a/src/assets/images/chart/informations/text_gradient.png b/src/assets/images/chart/informations/text_gradient.png new file mode 100644 index 0000000..87ead7c Binary files /dev/null and b/src/assets/images/chart/informations/text_gradient.png differ diff --git a/src/assets/images/chart/informations/text_static.png b/src/assets/images/chart/informations/text_static.png new file mode 100644 index 0000000..8e4dfd0 Binary files /dev/null and b/src/assets/images/chart/informations/text_static.png differ diff --git a/src/assets/images/chart/informations/video.png b/src/assets/images/chart/informations/video.png new file mode 100644 index 0000000..d881730 Binary files /dev/null and b/src/assets/images/chart/informations/video.png differ diff --git a/src/assets/images/chart/informations/words_cloud.png b/src/assets/images/chart/informations/words_cloud.png new file mode 100644 index 0000000..25a7715 Binary files /dev/null and b/src/assets/images/chart/informations/words_cloud.png differ diff --git a/src/assets/images/chart/tables/table_scrollboard.png b/src/assets/images/chart/tables/table_scrollboard.png new file mode 100644 index 0000000..355ca73 Binary files /dev/null and b/src/assets/images/chart/tables/table_scrollboard.png differ diff --git a/src/assets/images/chart/tables/tables_list.png b/src/assets/images/chart/tables/tables_list.png new file mode 100644 index 0000000..bcac1c1 Binary files /dev/null and b/src/assets/images/chart/tables/tables_list.png differ diff --git a/src/assets/images/exception/403.svg b/src/assets/images/exception/403.svg new file mode 100644 index 0000000..37ec713 --- /dev/null +++ b/src/assets/images/exception/403.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/exception/404.svg b/src/assets/images/exception/404.svg new file mode 100644 index 0000000..1e54e83 --- /dev/null +++ b/src/assets/images/exception/404.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/exception/500.svg b/src/assets/images/exception/500.svg new file mode 100644 index 0000000..09ff765 --- /dev/null +++ b/src/assets/images/exception/500.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/exception/developing.svg b/src/assets/images/exception/developing.svg new file mode 100644 index 0000000..9ddbd07 --- /dev/null +++ b/src/assets/images/exception/developing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/exception/image-404.png b/src/assets/images/exception/image-404.png new file mode 100644 index 0000000..3223115 Binary files /dev/null and b/src/assets/images/exception/image-404.png differ diff --git a/src/assets/images/exception/load-error.svg b/src/assets/images/exception/load-error.svg new file mode 100644 index 0000000..852a330 --- /dev/null +++ b/src/assets/images/exception/load-error.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/exception/nodata.svg b/src/assets/images/exception/nodata.svg new file mode 100644 index 0000000..ea1f7c8 --- /dev/null +++ b/src/assets/images/exception/nodata.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/assets/images/exception/texture.png b/src/assets/images/exception/texture.png new file mode 100644 index 0000000..39a084a Binary files /dev/null and b/src/assets/images/exception/texture.png differ diff --git a/src/assets/images/exception/theme-color.png b/src/assets/images/exception/theme-color.png new file mode 100644 index 0000000..9d7dd3f Binary files /dev/null and b/src/assets/images/exception/theme-color.png differ diff --git a/src/assets/images/login/input.png b/src/assets/images/login/input.png new file mode 100644 index 0000000..dc26467 Binary files /dev/null and b/src/assets/images/login/input.png differ diff --git a/src/assets/images/login/login-bg.png b/src/assets/images/login/login-bg.png new file mode 100644 index 0000000..1a73ba6 Binary files /dev/null and b/src/assets/images/login/login-bg.png differ diff --git a/src/assets/images/login/one.png b/src/assets/images/login/one.png new file mode 100644 index 0000000..8ebba30 Binary files /dev/null and b/src/assets/images/login/one.png differ diff --git a/src/assets/images/login/three.png b/src/assets/images/login/three.png new file mode 100644 index 0000000..47e45db Binary files /dev/null and b/src/assets/images/login/three.png differ diff --git a/src/assets/images/login/two.png b/src/assets/images/login/two.png new file mode 100644 index 0000000..149cfac Binary files /dev/null and b/src/assets/images/login/two.png differ diff --git a/src/assets/images/tips/loadingSvg.svg b/src/assets/images/tips/loadingSvg.svg new file mode 100644 index 0000000..fb2f0e5 --- /dev/null +++ b/src/assets/images/tips/loadingSvg.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/logo.png b/src/assets/logo.png new file mode 100644 index 0000000..d2ce955 Binary files /dev/null and b/src/assets/logo.png differ diff --git a/src/assets/videos/earth.mp4 b/src/assets/videos/earth.mp4 new file mode 100644 index 0000000..75355f6 Binary files /dev/null and b/src/assets/videos/earth.mp4 differ diff --git a/src/components/GoAppProvider/index.ts b/src/components/GoAppProvider/index.ts new file mode 100644 index 0000000..5032efb --- /dev/null +++ b/src/components/GoAppProvider/index.ts @@ -0,0 +1,3 @@ +import GoAppProvider from './index.vue'; + +export { GoAppProvider }; diff --git a/src/components/GoAppProvider/index.vue b/src/components/GoAppProvider/index.vue new file mode 100644 index 0000000..3c62adf --- /dev/null +++ b/src/components/GoAppProvider/index.vue @@ -0,0 +1,28 @@ + + + diff --git a/src/components/GoLangSelect/index.ts b/src/components/GoLangSelect/index.ts new file mode 100644 index 0000000..8c08c41 --- /dev/null +++ b/src/components/GoLangSelect/index.ts @@ -0,0 +1,3 @@ +import GoLangSelect from './index.vue'; + +export { GoLangSelect }; diff --git a/src/components/GoLangSelect/index.vue b/src/components/GoLangSelect/index.vue new file mode 100644 index 0000000..0cf4a88 --- /dev/null +++ b/src/components/GoLangSelect/index.vue @@ -0,0 +1,32 @@ + + + diff --git a/src/components/GoLoading/LoadingSkeleton.vue b/src/components/GoLoading/LoadingSkeleton.vue new file mode 100644 index 0000000..c974729 --- /dev/null +++ b/src/components/GoLoading/LoadingSkeleton.vue @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/src/components/GoLoading/index.ts b/src/components/GoLoading/index.ts new file mode 100644 index 0000000..0320b59 --- /dev/null +++ b/src/components/GoLoading/index.ts @@ -0,0 +1,17 @@ +import type { App } from 'vue' +import GoLoading from './index.vue' +import AsyncLoading from './index.vue' +import AsyncSkeletonLoading from './LoadingSkeleton.vue' + +// 正常组件 +export { GoLoading } + +// 异步 +AsyncLoading.install = (app: App): void => { + app.component('AsyncLoading', AsyncLoading) +} + +AsyncSkeletonLoading.install = (app: App): void => { + app.component('AsyncSkeletonLoading', AsyncSkeletonLoading) +} +export { AsyncLoading, AsyncSkeletonLoading } diff --git a/src/components/GoLoading/index.vue b/src/components/GoLoading/index.vue new file mode 100644 index 0000000..34ff91f --- /dev/null +++ b/src/components/GoLoading/index.vue @@ -0,0 +1,16 @@ + + diff --git a/src/components/GoReload/index.ts b/src/components/GoReload/index.ts new file mode 100644 index 0000000..abdf194 --- /dev/null +++ b/src/components/GoReload/index.ts @@ -0,0 +1,3 @@ +import GoReload from './index.vue'; + +export { GoReload }; diff --git a/src/components/GoReload/index.vue b/src/components/GoReload/index.vue new file mode 100644 index 0000000..f8be83a --- /dev/null +++ b/src/components/GoReload/index.vue @@ -0,0 +1,20 @@ + + + + + diff --git a/src/components/GoSkeleton/index.ts b/src/components/GoSkeleton/index.ts new file mode 100644 index 0000000..428c042 --- /dev/null +++ b/src/components/GoSkeleton/index.ts @@ -0,0 +1,3 @@ +import GoSkeleton from './index.vue'; + +export { GoSkeleton }; diff --git a/src/components/GoSkeleton/index.vue b/src/components/GoSkeleton/index.vue new file mode 100644 index 0000000..394e6b0 --- /dev/null +++ b/src/components/GoSkeleton/index.vue @@ -0,0 +1,39 @@ + + + + + \ No newline at end of file diff --git a/src/components/GoSystemInfo/index.ts b/src/components/GoSystemInfo/index.ts new file mode 100644 index 0000000..d2bf262 --- /dev/null +++ b/src/components/GoSystemInfo/index.ts @@ -0,0 +1,3 @@ +import GoSystemInfo from './index.vue'; + +export { GoSystemInfo }; diff --git a/src/components/GoSystemInfo/index.vue b/src/components/GoSystemInfo/index.vue new file mode 100644 index 0000000..7c5f33b --- /dev/null +++ b/src/components/GoSystemInfo/index.vue @@ -0,0 +1,106 @@ + + + + + diff --git a/src/components/GoSystemSet/index.d.ts b/src/components/GoSystemSet/index.d.ts new file mode 100644 index 0000000..ba8370b --- /dev/null +++ b/src/components/GoSystemSet/index.d.ts @@ -0,0 +1,12 @@ +export type ListType = { + key: any + type: string + name: string + desc: string + value: any + suffix?: string + step?: number + min?: number + tip?: string + options?: { label: string; value: any }[] +} diff --git a/src/components/GoSystemSet/index.ts b/src/components/GoSystemSet/index.ts new file mode 100644 index 0000000..162c181 --- /dev/null +++ b/src/components/GoSystemSet/index.ts @@ -0,0 +1,3 @@ +import GoSystemSet from './index.vue'; + +export { GoSystemSet }; diff --git a/src/components/GoSystemSet/index.vue b/src/components/GoSystemSet/index.vue new file mode 100644 index 0000000..45129a8 --- /dev/null +++ b/src/components/GoSystemSet/index.vue @@ -0,0 +1,207 @@ + + + + + diff --git a/src/components/GoThemeSelect/index.ts b/src/components/GoThemeSelect/index.ts new file mode 100644 index 0000000..46de3ee --- /dev/null +++ b/src/components/GoThemeSelect/index.ts @@ -0,0 +1,3 @@ +import GoThemeSelect from './index.vue'; + +export { GoThemeSelect }; diff --git a/src/components/GoThemeSelect/index.vue b/src/components/GoThemeSelect/index.vue new file mode 100644 index 0000000..a1989ba --- /dev/null +++ b/src/components/GoThemeSelect/index.vue @@ -0,0 +1,22 @@ + + + diff --git a/src/components/GoUserInfo/index.ts b/src/components/GoUserInfo/index.ts new file mode 100644 index 0000000..86bca11 --- /dev/null +++ b/src/components/GoUserInfo/index.ts @@ -0,0 +1,3 @@ +import GoUserInfo from './index.vue'; + +export { GoUserInfo }; diff --git a/src/components/GoUserInfo/index.vue b/src/components/GoUserInfo/index.vue new file mode 100644 index 0000000..c49d6bb --- /dev/null +++ b/src/components/GoUserInfo/index.vue @@ -0,0 +1,152 @@ + + + + + \ No newline at end of file diff --git a/src/components/GoUserInfo/person.png b/src/components/GoUserInfo/person.png new file mode 100644 index 0000000..2f1232c Binary files /dev/null and b/src/components/GoUserInfo/person.png differ diff --git a/src/components/I18n/index.ts b/src/components/I18n/index.ts new file mode 100644 index 0000000..579f847 --- /dev/null +++ b/src/components/I18n/index.ts @@ -0,0 +1,3 @@ +import I18n from './index.vue'; + +export { I18n }; diff --git a/src/components/I18n/index.vue b/src/components/I18n/index.vue new file mode 100644 index 0000000..4f5cced --- /dev/null +++ b/src/components/I18n/index.vue @@ -0,0 +1,8 @@ + + + + diff --git a/src/components/Pages/ChartGlobImage/index.ts b/src/components/Pages/ChartGlobImage/index.ts new file mode 100644 index 0000000..9203fcd --- /dev/null +++ b/src/components/Pages/ChartGlobImage/index.ts @@ -0,0 +1,3 @@ +import ChartGlobImage from './index.vue' + +export { ChartGlobImage } diff --git a/src/components/Pages/ChartGlobImage/index.vue b/src/components/Pages/ChartGlobImage/index.vue new file mode 100644 index 0000000..efd6bf4 --- /dev/null +++ b/src/components/Pages/ChartGlobImage/index.vue @@ -0,0 +1,31 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/CollapseItem.vue b/src/components/Pages/ChartItemSetting/CollapseItem.vue new file mode 100644 index 0000000..73b0969 --- /dev/null +++ b/src/components/Pages/ChartItemSetting/CollapseItem.vue @@ -0,0 +1,36 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/GlobalSetting.vue b/src/components/Pages/ChartItemSetting/GlobalSetting.vue new file mode 100644 index 0000000..35a7423 --- /dev/null +++ b/src/components/Pages/ChartItemSetting/GlobalSetting.vue @@ -0,0 +1,322 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/GlobalSettingPosition.vue b/src/components/Pages/ChartItemSetting/GlobalSettingPosition.vue new file mode 100644 index 0000000..68a10ee --- /dev/null +++ b/src/components/Pages/ChartItemSetting/GlobalSettingPosition.vue @@ -0,0 +1,29 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/NameSetting.vue b/src/components/Pages/ChartItemSetting/NameSetting.vue new file mode 100644 index 0000000..701d93c --- /dev/null +++ b/src/components/Pages/ChartItemSetting/NameSetting.vue @@ -0,0 +1,42 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/PositionSetting.vue b/src/components/Pages/ChartItemSetting/PositionSetting.vue new file mode 100644 index 0000000..82f17bd --- /dev/null +++ b/src/components/Pages/ChartItemSetting/PositionSetting.vue @@ -0,0 +1,128 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/SettingItem.vue b/src/components/Pages/ChartItemSetting/SettingItem.vue new file mode 100644 index 0000000..c9a0178 --- /dev/null +++ b/src/components/Pages/ChartItemSetting/SettingItem.vue @@ -0,0 +1,32 @@ + + + + + diff --git a/src/components/Pages/ChartItemSetting/SettingItemBox.vue b/src/components/Pages/ChartItemSetting/SettingItemBox.vue new file mode 100644 index 0000000..9589359 --- /dev/null +++ b/src/components/Pages/ChartItemSetting/SettingItemBox.vue @@ -0,0 +1,59 @@ + + + + + diff --git a/src/components/Pages/ChartItemSetting/SizeSetting.vue b/src/components/Pages/ChartItemSetting/SizeSetting.vue new file mode 100644 index 0000000..5aa8c87 --- /dev/null +++ b/src/components/Pages/ChartItemSetting/SizeSetting.vue @@ -0,0 +1,43 @@ + + + diff --git a/src/components/Pages/ChartItemSetting/StylesSetting.vue b/src/components/Pages/ChartItemSetting/StylesSetting.vue new file mode 100644 index 0000000..2727544 --- /dev/null +++ b/src/components/Pages/ChartItemSetting/StylesSetting.vue @@ -0,0 +1,184 @@ + + + + + diff --git a/src/components/Pages/ChartItemSetting/index.ts b/src/components/Pages/ChartItemSetting/index.ts new file mode 100644 index 0000000..676766e --- /dev/null +++ b/src/components/Pages/ChartItemSetting/index.ts @@ -0,0 +1,20 @@ +// 设置项布局 +import SettingItem from './SettingItem.vue' +import SettingItemBox from './SettingItemBox.vue' +import CollapseItem from './CollapseItem.vue' + +// 全局配置属性 +import GlobalSetting from './GlobalSetting.vue' +// 全局配置属性-位置 +import GlobalSettingPosition from './GlobalSettingPosition.vue' + +// 名称 +import NameSetting from './NameSetting.vue' +// 方向 +import PositionSetting from './PositionSetting.vue' +// 尺寸 +import SizeSetting from './SizeSetting.vue' +// 样式 +import StylesSetting from './StylesSetting.vue' + +export { CollapseItem, SettingItemBox, SettingItem, GlobalSetting, GlobalSettingPosition, NameSetting, PositionSetting, SizeSetting, StylesSetting } diff --git a/src/components/Pages/Flipper/index.ts b/src/components/Pages/Flipper/index.ts new file mode 100644 index 0000000..dbe9b5c --- /dev/null +++ b/src/components/Pages/Flipper/index.ts @@ -0,0 +1,5 @@ +import Flipper from './index.vue' + +type FlipType = 'up' | 'down' + +export { Flipper, FlipType } diff --git a/src/components/Pages/Flipper/index.vue b/src/components/Pages/Flipper/index.vue new file mode 100644 index 0000000..9b2c628 --- /dev/null +++ b/src/components/Pages/Flipper/index.vue @@ -0,0 +1,218 @@ + + + + + diff --git a/src/components/Pages/MonacoEditor/EditorWorker.vue b/src/components/Pages/MonacoEditor/EditorWorker.vue new file mode 100644 index 0000000..a1689e6 --- /dev/null +++ b/src/components/Pages/MonacoEditor/EditorWorker.vue @@ -0,0 +1,24 @@ + + + diff --git a/src/components/Pages/MonacoEditor/index.hook.ts b/src/components/Pages/MonacoEditor/index.hook.ts new file mode 100644 index 0000000..89b5a75 --- /dev/null +++ b/src/components/Pages/MonacoEditor/index.hook.ts @@ -0,0 +1,76 @@ +import { ref, onBeforeUnmount, nextTick } from 'vue' +import { useDesignStore } from '@/store/modules/designStore/designStore' +import * as monaco from 'monaco-editor/esm/vs/editor/editor.api.js' + +export const useMonacoEditor = (language = 'javascript') => { +const designStore = useDesignStore() + + let monacoEditor: monaco.editor.IStandaloneCodeEditor | null = null + let initReadOnly = false + const el = ref(null) + + // 格式化 + const onFormatDoc = async () => { + await monacoEditor?.getAction('monacoEditor.action.formatDocument')?.run() + } + + // 更新 + const updateVal = (val: string) => { + nextTick(async () => { + monacoEditor?.setValue(val) + initReadOnly && monacoEditor?.updateOptions({ readOnly: false }) + await onFormatDoc() + initReadOnly && monacoEditor?.updateOptions({ readOnly: true }) + }) + } + + // 创建实例 + const createEditor = (editorOption: monaco.editor.IStandaloneEditorConstructionOptions = {}) => { + if (!el.value) return + const javascriptModel = monaco.editor.createModel('', language) + initReadOnly = !!editorOption.readOnly + // 创建 + monacoEditor = monaco.editor.create(el.value, { + model: javascriptModel, + // 是否启用预览图 + minimap: { enabled: false }, + // 圆角 + roundedSelection: true, + // 主题 + theme: designStore.getDarkTheme ? 'vs-dark' : 'vs', + // 主键 + multiCursorModifier: 'ctrlCmd', + // 滚动条 + scrollbar: { + verticalScrollbarSize: 8, + horizontalScrollbarSize: 8 + }, + // 行号 + lineNumbers: 'off', + // tab大小 + tabSize: 2, + //字体大小 + fontSize: 16, + // 控制编辑器在用户键入、粘贴、移动或缩进行时是否应自动调整缩进 + autoIndent: 'advanced', + // 自动布局 + automaticLayout: true, + ...editorOption + }) + + return monacoEditor + } + + // 卸载 + onBeforeUnmount(() => { + if (monacoEditor) monacoEditor.dispose() + }) + + return { + el, + updateVal, + getEditor: () => monacoEditor, + createEditor, + onFormatDoc + } +} diff --git a/src/components/Pages/MonacoEditor/index.ts b/src/components/Pages/MonacoEditor/index.ts new file mode 100644 index 0000000..675bfe9 --- /dev/null +++ b/src/components/Pages/MonacoEditor/index.ts @@ -0,0 +1,4 @@ +import MonacoEditor from './index.vue'; +import EditorWorker from './EditorWorker.vue'; + +export { MonacoEditor, EditorWorker }; diff --git a/src/components/Pages/MonacoEditor/index.vue b/src/components/Pages/MonacoEditor/index.vue new file mode 100644 index 0000000..1a1349c --- /dev/null +++ b/src/components/Pages/MonacoEditor/index.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/src/components/Pages/ThemeColorSelect/components/ColorList.vue b/src/components/Pages/ThemeColorSelect/components/ColorList.vue new file mode 100644 index 0000000..ea41c17 --- /dev/null +++ b/src/components/Pages/ThemeColorSelect/components/ColorList.vue @@ -0,0 +1,114 @@ + + + + + diff --git a/src/components/Pages/ThemeColorSelect/index.ts b/src/components/Pages/ThemeColorSelect/index.ts new file mode 100644 index 0000000..6cdfbdd --- /dev/null +++ b/src/components/Pages/ThemeColorSelect/index.ts @@ -0,0 +1,3 @@ +import ThemeColorSelect from './index.vue'; + +export { ThemeColorSelect }; diff --git a/src/components/Pages/ThemeColorSelect/index.vue b/src/components/Pages/ThemeColorSelect/index.vue new file mode 100644 index 0000000..38c9d81 --- /dev/null +++ b/src/components/Pages/ThemeColorSelect/index.vue @@ -0,0 +1,163 @@ + + + + + diff --git a/src/components/Plugins/DialogContent/index.ts b/src/components/Plugins/DialogContent/index.ts new file mode 100644 index 0000000..80103ec --- /dev/null +++ b/src/components/Plugins/DialogContent/index.ts @@ -0,0 +1,3 @@ +import DialogContent from './index.vue'; + +export { DialogContent }; diff --git a/src/components/Plugins/DialogContent/index.vue b/src/components/Plugins/DialogContent/index.vue new file mode 100644 index 0000000..30163fb --- /dev/null +++ b/src/components/Plugins/DialogContent/index.vue @@ -0,0 +1,7 @@ + + + diff --git a/src/components/Plugins/LoadingContent/index.ts b/src/components/Plugins/LoadingContent/index.ts new file mode 100644 index 0000000..d557abc --- /dev/null +++ b/src/components/Plugins/LoadingContent/index.ts @@ -0,0 +1,3 @@ +import LoadingContent from './index.vue'; + +export { LoadingContent }; diff --git a/src/components/Plugins/LoadingContent/index.vue b/src/components/Plugins/LoadingContent/index.vue new file mode 100644 index 0000000..31e33db --- /dev/null +++ b/src/components/Plugins/LoadingContent/index.vue @@ -0,0 +1,9 @@ + + + + diff --git a/src/components/Plugins/MessageContent/index.ts b/src/components/Plugins/MessageContent/index.ts new file mode 100644 index 0000000..b1f036b --- /dev/null +++ b/src/components/Plugins/MessageContent/index.ts @@ -0,0 +1,3 @@ +import MessageContent from './index.vue'; + +export { MessageContent }; diff --git a/src/components/Plugins/MessageContent/index.vue b/src/components/Plugins/MessageContent/index.vue new file mode 100644 index 0000000..881071a --- /dev/null +++ b/src/components/Plugins/MessageContent/index.vue @@ -0,0 +1,8 @@ + + + + diff --git a/src/components/Tips/MacOsControlBtn/index.ts b/src/components/Tips/MacOsControlBtn/index.ts new file mode 100644 index 0000000..a3a9877 --- /dev/null +++ b/src/components/Tips/MacOsControlBtn/index.ts @@ -0,0 +1,3 @@ +import MacOsControlBtn from './index.vue'; + +export { MacOsControlBtn }; diff --git a/src/components/Tips/MacOsControlBtn/index.vue b/src/components/Tips/MacOsControlBtn/index.vue new file mode 100644 index 0000000..fbfd2c1 --- /dev/null +++ b/src/components/Tips/MacOsControlBtn/index.vue @@ -0,0 +1,142 @@ + + + + diff --git a/src/components/Verifition/index.ts b/src/components/Verifition/index.ts new file mode 100644 index 0000000..bcfe6d9 --- /dev/null +++ b/src/components/Verifition/index.ts @@ -0,0 +1,3 @@ +import Verify from './src/Verify.vue' + +export { Verify } diff --git a/src/components/Verifition/src/Verify.vue b/src/components/Verifition/src/Verify.vue new file mode 100644 index 0000000..d3ca959 --- /dev/null +++ b/src/components/Verifition/src/Verify.vue @@ -0,0 +1,444 @@ + + + diff --git a/src/components/Verifition/src/Verify/VerifyPoints.vue b/src/components/Verifition/src/Verify/VerifyPoints.vue new file mode 100644 index 0000000..a0cde6c --- /dev/null +++ b/src/components/Verifition/src/Verify/VerifyPoints.vue @@ -0,0 +1,251 @@ + + diff --git a/src/components/Verifition/src/Verify/VerifySlide.vue b/src/components/Verifition/src/Verify/VerifySlide.vue new file mode 100644 index 0000000..72bc99a --- /dev/null +++ b/src/components/Verifition/src/Verify/VerifySlide.vue @@ -0,0 +1,378 @@ + + diff --git a/src/components/Verifition/src/Verify/index.ts b/src/components/Verifition/src/Verify/index.ts new file mode 100644 index 0000000..0daa63a --- /dev/null +++ b/src/components/Verifition/src/Verify/index.ts @@ -0,0 +1,4 @@ +import VerifySlide from './VerifySlide.vue' +import VerifyPoints from './VerifyPoints.vue' + +export { VerifySlide, VerifyPoints } diff --git a/src/components/Verifition/src/utils/ase.ts b/src/components/Verifition/src/utils/ase.ts new file mode 100644 index 0000000..a7f7a57 --- /dev/null +++ b/src/components/Verifition/src/utils/ase.ts @@ -0,0 +1,14 @@ +import CryptoJS from 'crypto-js' +/** + * @word 要加密的内容 + * @keyWord String 服务器随机返回的关键字 + * */ +export function aesEncrypt(word : string, keyWord = 'XwKsGlMcdPMEhR1B') { + const key = CryptoJS.enc.Utf8.parse(keyWord) + const srcs = CryptoJS.enc.Utf8.parse(word) + const encrypted = CryptoJS.AES.encrypt(srcs, key, { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7 + }) + return encrypted.toString() +} diff --git a/src/components/Verifition/src/utils/util.ts b/src/components/Verifition/src/utils/util.ts new file mode 100644 index 0000000..daacdb1 --- /dev/null +++ b/src/components/Verifition/src/utils/util.ts @@ -0,0 +1,97 @@ +export function resetSize(vm: any) { + let img_width, img_height, bar_width, bar_height //图片的宽度、高度,移动条的宽度、高度 + const EmployeeWindow = window as any + const parentWidth = vm.$el.parentNode.offsetWidth || EmployeeWindow.offsetWidth + const parentHeight = vm.$el.parentNode.offsetHeight || EmployeeWindow.offsetHeight + if (vm.imgSize.width.indexOf('%') != -1) { + img_width = (parseInt(vm.imgSize.width) / 100) * parentWidth + 'px' + } else { + img_width = vm.imgSize.width + } + + if (vm.imgSize.height.indexOf('%') != -1) { + img_height = (parseInt(vm.imgSize.height) / 100) * parentHeight + 'px' + } else { + img_height = vm.imgSize.height + } + + if (vm.barSize.width.indexOf('%') != -1) { + bar_width = (parseInt(vm.barSize.width) / 100) * parentWidth + 'px' + } else { + bar_width = vm.barSize.width + } + + if (vm.barSize.height.indexOf('%') != -1) { + bar_height = (parseInt(vm.barSize.height) / 100) * parentHeight + 'px' + } else { + bar_height = vm.barSize.height + } + + return { imgWidth: img_width, imgHeight: img_height, barWidth: bar_width, barHeight: bar_height } +} + +export const _code_chars = [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 'a', + 'b', + 'c', + 'd', + 'e', + 'f', + 'g', + 'h', + 'i', + 'j', + 'k', + 'l', + 'm', + 'n', + 'o', + 'p', + 'q', + 'r', + 's', + 't', + 'u', + 'v', + 'w', + 'x', + 'y', + 'z', + 'A', + 'B', + 'C', + 'D', + 'E', + 'F', + 'G', + 'H', + 'I', + 'J', + 'K', + 'L', + 'M', + 'N', + 'O', + 'P', + 'Q', + 'R', + 'S', + 'T', + 'U', + 'V', + 'W', + 'X', + 'Y', + 'Z' +] +export const _code_color1 = ['#fffff0', '#f0ffff', '#f0fff0', '#fff0f0'] +export const _code_color2 = ['#FF0033', '#006699', '#993366', '#FF9900', '#66CC66', '#FF33CC'] diff --git a/src/directives/index.ts b/src/directives/index.ts new file mode 100644 index 0000000..56004c9 --- /dev/null +++ b/src/directives/index.ts @@ -0,0 +1 @@ +export default {} \ No newline at end of file diff --git a/src/enums/editPageEnum.ts b/src/enums/editPageEnum.ts new file mode 100644 index 0000000..b28f732 --- /dev/null +++ b/src/enums/editPageEnum.ts @@ -0,0 +1,95 @@ +// 鼠标点击左右键 +export enum MouseEventButton { + LEFT = 1, + RIGHT = 2 +} + +// 页面拖拽键名 +export enum DragKeyEnum { + DRAG_KEY = 'ChartData' +} + +// 不同页面保存操作 +export enum SavePageEnum { + CHART = 'SaveChart', + JSON = 'SaveJSON' +} + +// 操作枚举 +export enum MenuEnum { + // 移动 + ARROW_UP = 'up', + ARROW_RIGHT = 'right', + ARROW_DOWN = 'down', + ARROW_LEFT = 'left', + // 删除 + DELETE = 'delete', + // 复制 + COPY = 'copy', + // 剪切 + CUT = 'cut', + // 粘贴 + PARSE = 'parse', + // 置顶 + TOP = 'top', + // 置底 + BOTTOM = 'bottom', + // 上移 + UP = 'up', + // 下移 + DOWN = 'down', + // 清空剪贴板 + CLEAR = 'clear', + // 成组 + GROUP = 'group', + // 解组 + UN_GROUP = 'unGroup', + // 后退 + BACK = 'back', + FORWORD = 'forward', + // 保存 + SAVE = 'save', + // 锁定 + LOCK = 'lock', + // 解除锁定 + UNLOCK = 'unLock', + // 隐藏 + HIDE = 'hide', + // 显示 + SHOW = 'show' +} + +// Win 键盘枚举 +export enum WinKeyboard { + CTRL = 'ctrl', + SHIFT = 'shift', + ALT = ' alt', + CTRL_SOURCE_KEY = 'control', + SHIFT_SOURCE_KEY = 'shift', + ALT_SOURCE_KEY = 'alt', + SPACE = 'Space' +} + +// Mac 键盘枚举 +export enum MacKeyboard { + // 还是用 Command 吧 + CTRL = '⌘', + SHIFT = '⇧', + ALT = '⌥', + CTRL_SOURCE_KEY = '⌘', + SHIFT_SOURCE_KEY = '⇧', + ALT_SOURCE_KEY = '⌥', + SPACE = 'Space' +} + +// 同步状态枚举 +export enum SyncEnum { + // 等待 + PENDING, + // 开始 + START, + // 成功 + SUCCESS, + // 失败 + FAILURE +} diff --git a/src/enums/eventEnum.ts b/src/enums/eventEnum.ts new file mode 100644 index 0000000..a8110a7 --- /dev/null +++ b/src/enums/eventEnum.ts @@ -0,0 +1,31 @@ +// 基础事件类型(vue不加 on) +export enum BaseEvent { + // 点击 + ON_CLICK = 'click', + // 双击 + ON_DBL_CLICK = 'dblclick', + // 移入 + ON_MOUSE_ENTER = 'mouseenter', + // 移出 + ON_MOUSE_LEAVE = 'mouseleave', +} + +// vue3 生命周期事件 +export enum EventLife { + // 渲染之后 + VNODE_MOUNTED = 'vnodeMounted', + // 渲染之前 + VNODE_BEFORE_MOUNT = 'vnodeBeforeMount', +} + +// 内置字符串函数对象列表 +export const excludeParseEventKeyList = [ + EventLife.VNODE_BEFORE_MOUNT, + EventLife.VNODE_MOUNTED, + BaseEvent.ON_CLICK, + BaseEvent.ON_DBL_CLICK, + BaseEvent.ON_MOUSE_ENTER, + BaseEvent.ON_MOUSE_LEAVE, + //过滤器 + 'filter' +] \ No newline at end of file diff --git a/src/enums/fileTypeEnum.ts b/src/enums/fileTypeEnum.ts new file mode 100644 index 0000000..bbc50db --- /dev/null +++ b/src/enums/fileTypeEnum.ts @@ -0,0 +1,10 @@ +// 文件上传时的格式映射 +export enum FileTypeEnum { + // 文档 + TXT = 'text/plain', + JSON = 'application/json', + // 图片 + PNG = 'image/png', + JPEG = 'image/jpeg', + GIF = 'image/gif', +} diff --git a/src/enums/httpEnum.ts b/src/enums/httpEnum.ts new file mode 100644 index 0000000..54d215b --- /dev/null +++ b/src/enums/httpEnum.ts @@ -0,0 +1,136 @@ +// 模块 Path 前缀分类 +export enum ModuleTypeEnum { + SYSTEM = 'system', + INFRA = 'infra', + PROJECT = 'report/go-view/project', +} + +// 请求结果集 +export enum ResultEnum { + // DATA_SUCCESS = 0, + SUCCESS = 0, + SERVER_ERROR = 500, + SERVER_FORBIDDEN = 403, + NOT_FOUND = 404, + TOKEN_OVERDUE = 401, // 修改 by 闻荫源码:使用浏览器标准的状态码,401 为未认证 + TIMEOUT = 60000, +} + +// 数据相关 +export enum RequestDataTypeEnum { + // 静态数据 + STATIC = 0, + // 请求数据 + AJAX = 1, + // 数据池 + Pond = 2 +} + +// 请求主体类型 +export enum RequestContentTypeEnum { + // 普通请求 + DEFAULT = 0, + // SQL请求 + SQL = 1 +} + +// 头部 +export enum RequestHttpHeaderEnum { + TOKEN = 'Token', + COOKIE = 'Cookie' +} + +// 请求方法 +export enum RequestHttpEnum { + GET = 'get', + POST = 'post', + PATCH = 'patch', + PUT = 'put', + DELETE = 'delete' +} + +/** + * @description: 请求间隔 + */ +export enum RequestHttpIntervalEnum { + // 秒 + SECOND = 'second', + // 分 + MINUTE = 'minute', + // 时 + HOUR = 'hour', + // 天 + DAY = 'day' +} + +/** + * @description: 请求间隔名称 + */ +export const SelectHttpTimeNameObj = { + [RequestHttpIntervalEnum.SECOND]: '秒', + [RequestHttpIntervalEnum.MINUTE]: '分', + [RequestHttpIntervalEnum.HOUR]: '时', + [RequestHttpIntervalEnum.DAY]: '天' +} + +/** + * @description: 请求头部类型 + */ +export enum RequestBodyEnum { + NONE = 'none', + FORM_DATA = 'form-data', + X_WWW_FORM_URLENCODED = 'x-www-form-urlencoded', + JSON = 'json', + XML = 'xml' +} + +/** + * @description: 请求头部类型数组 + */ +export const RequestBodyEnumList = [ + RequestBodyEnum.NONE, + RequestBodyEnum.FORM_DATA, + RequestBodyEnum.X_WWW_FORM_URLENCODED, + RequestBodyEnum.JSON, + RequestBodyEnum.XML +] + +/** + * @description: 请求参数类型 + */ +export enum RequestParamsTypeEnum { + PARAMS = 'Params', + BODY = 'Body', + HEADER = 'Header', +} + +/** + * @description: 请求参数主体 + */ +export type RequestParamsObjType = { + [T: string]: string +} +export type RequestParams = { + [RequestParamsTypeEnum.PARAMS]: RequestParamsObjType + [RequestParamsTypeEnum.HEADER]: RequestParamsObjType + [RequestParamsTypeEnum.BODY]: { + [RequestBodyEnum.FORM_DATA]: RequestParamsObjType + [RequestBodyEnum.X_WWW_FORM_URLENCODED]: RequestParamsObjType + [RequestBodyEnum.JSON]: string + [RequestBodyEnum.XML]: string + } +} + +// 常用的contentTyp类型 +export enum ContentTypeEnum { + // json + JSON = 'application/json;charset=UTF-8', + // text + TEXT = 'text/plain;charset=UTF-8', + // xml + XML = 'application/xml;charset=UTF-8', + // application/x-www-form-urlencoded 一般配合qs + FORM_URLENCODED = 'application/x-www-form-urlencoded;charset=UTF-8', + // form-data 上传 + FORM_DATA = 'multipart/form-data;charset=UTF-8' +} diff --git a/src/enums/pageEnum.ts b/src/enums/pageEnum.ts new file mode 100644 index 0000000..dc777ac --- /dev/null +++ b/src/enums/pageEnum.ts @@ -0,0 +1,64 @@ +import { ResultEnum } from '@/enums/httpEnum' + +export enum ChartEnum { + // 图表创建 + CHART_HOME = '/chart/home/:id(.*)*', + CHART_HOME_NAME = 'ChartHome', +} + +export enum PreviewEnum { + // 图表预览 + CHART_PREVIEW = '/chart/preview/:id(.*)*', + CHART_PREVIEW_NAME = 'ChartPreview', +} + +export enum EditEnum { + // 图表JSON编辑 + CHART_EDIT = '/chart/edit/:id(.*)*', + CHART_EDIT_NAME = 'ChartEdit', +} + +export enum PageEnum { + // 登录 + BASE_LOGIN = '/login', + BASE_LOGIN_NAME = 'Login', + + //重定向 + REDIRECT = '/redirect', + REDIRECT_NAME = 'Redirect', + + // 未发布 + REDIRECT_UN_PUBLISH = '/redirect/unPublish', + REDIRECT_UN_PUBLISH_NAME = 'redirect-un-publish', + + // 重载 + RELOAD = '/reload', + RELOAD_NAME = 'Reload', + + // 首页 + BASE_HOME = '/project', + BASE_HOME_NAME = 'Project', + + // 我的项目 + BASE_HOME_ITEMS = '/project/items', + BASE_HOME_ITEMS_NAME = 'Project-Items', + + // 我的模板 + BASE_HOME_TEMPLATE = '/project/my-template', + BASE_HOME_TEMPLATE_NAME = 'Project-My-Template', + + // 模板市场 + BASE_HOME_TEMPLATE_MARKET = '/project/template-market', + BASE_HOME_TEMPLATE_MARKET_NAME = 'Project-Template-Market', + + // 错误 + ERROR_PAGE_NAME_403 = 'ErrorPage403', + ERROR_PAGE_NAME_404 = 'ErrorPage404', + ERROR_PAGE_NAME_500 = 'ErrorPage500' +} + +export const ErrorPageNameMap = new Map([ + [ResultEnum.NOT_FOUND, PageEnum.ERROR_PAGE_NAME_404], + [ResultEnum.SERVER_FORBIDDEN, PageEnum.ERROR_PAGE_NAME_403] + // [ResultEnum.SERVER_ERROR, PageEnum.ERROR_PAGE_NAME_500] // 注释 by 闻荫源码:对于 500 错误,是服务端执行异常,提示即可,不用跳转到单独的页面 +]) diff --git a/src/enums/pluginEnum.ts b/src/enums/pluginEnum.ts new file mode 100644 index 0000000..08d8e3a --- /dev/null +++ b/src/enums/pluginEnum.ts @@ -0,0 +1,6 @@ +export enum DialogEnum { + DELETE = 'delete', + WARNING = 'warning', + ERROR = 'error', + SUCCESS = 'success' +} diff --git a/src/enums/storageEnum.ts b/src/enums/storageEnum.ts new file mode 100644 index 0000000..a36e99e --- /dev/null +++ b/src/enums/storageEnum.ts @@ -0,0 +1,14 @@ +export enum StorageEnum { + // 全局设置 + GO_SETTING_STORE = 'GO_SETTING', + // 登录信息 + GO_SYSTEM_STORE = 'GO_SYSTEM', + // 语言 + GO_LANG_STORE = 'GO_LANG', + // 当前选择的主题 + GO_DESIGN_STORE = 'GO_DESIGN', + // 工作台布局配置 + GO_CHART_LAYOUT_STORE = 'GO_CHART_LAYOUT', + // 工作台需要保存的数据 + GO_CHART_STORAGE_LIST = 'GO_CHART_STORAGE_LIST' +} diff --git a/src/enums/styleEnum.ts b/src/enums/styleEnum.ts new file mode 100644 index 0000000..54a8fd4 --- /dev/null +++ b/src/enums/styleEnum.ts @@ -0,0 +1,19 @@ +// 主题 +export enum ThemeEnum { + DARK = 'dark', + LIGHT = 'light' +} + +// 语言 +export enum LangEnum { + ZH = 'ZH', + EN = 'EN' +} + +// 预览展示 +export enum PreviewScaleEnum { + FIT = 'fit', + SCROLL_Y = 'scrollY', + SCROLL_X = 'scrollX', + FULL = 'full' +} \ No newline at end of file diff --git a/src/hooks/index.ts b/src/hooks/index.ts new file mode 100644 index 0000000..485d433 --- /dev/null +++ b/src/hooks/index.ts @@ -0,0 +1,8 @@ +export * from '@/hooks/useTheme.hook' +export * from '@/hooks/usePreviewScale.hook' +export * from '@/hooks/useCode.hook' +export * from '@/hooks/useChartDataFetch.hook' +export * from '@/hooks/useSystemInit.hook' +export * from '@/hooks/useChartDataPondFetch.hook' +export * from '@/hooks/useLifeHandler.hook' +export * from '@/hooks/useLang.hook' \ No newline at end of file diff --git a/src/hooks/useChartDataFetch.hook.ts b/src/hooks/useChartDataFetch.hook.ts new file mode 100644 index 0000000..0138d1b --- /dev/null +++ b/src/hooks/useChartDataFetch.hook.ts @@ -0,0 +1,111 @@ +import { ref, toRefs, toRaw } from 'vue' +import type VChart from 'vue-echarts' +import { customizeHttp } from '@/api/http' +import { useChartDataPondFetch } from '@/hooks/' +import { CreateComponentType, ChartFrameEnum } from '@/packages/index.d' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { RequestDataTypeEnum } from '@/enums/httpEnum' +import { isPreview, newFunctionHandle, intervalUnitHandle } from '@/utils' + +// 获取类型 +type ChartEditStoreType = typeof useChartEditStore + +/** + * setdata 数据监听与更改 + * @param targetComponent + * @param useChartEditStore 若直接引会报错,只能动态传递 + * @param updateCallback 自定义更新函数 + */ +export const useChartDataFetch = ( + targetComponent: CreateComponentType, + useChartEditStore: ChartEditStoreType, + updateCallback?: (...args: any) => any +) => { + const vChartRef = ref(null) + let fetchInterval: any = 0 + + // 数据池 + const { addGlobalDataInterface } = useChartDataPondFetch() + + // 组件类型 + const { chartFrame } = targetComponent.chartConfig + + // eCharts 组件配合 vChart 库更新方式 + const echartsUpdateHandle = (dataset: any) => { + if (chartFrame === ChartFrameEnum.ECHARTS) { + if (vChartRef.value) { + vChartRef.value.setOption({ dataset: dataset }) + } + } + } + + const requestIntervalFn = () => { + const chartEditStore = useChartEditStore() + + // 全局数据 + const { + requestOriginUrl, + requestIntervalUnit: globalUnit, + requestInterval: globalRequestInterval + } = toRefs(chartEditStore.getRequestGlobalConfig) + + // 目标组件 + const { + requestDataType, + requestUrl, + requestIntervalUnit: targetUnit, + requestInterval: targetInterval + } = toRefs(targetComponent.request) + + // 非请求类型 + if (requestDataType.value !== RequestDataTypeEnum.AJAX) return + + try { + // 处理地址 + // @ts-ignore + if (requestUrl?.value) { + // requestOriginUrl 允许为空 + const completePath = requestOriginUrl && requestOriginUrl.value + requestUrl.value + if (!completePath) return + + clearInterval(fetchInterval) + + const fetchFn = async () => { + const res = await customizeHttp(toRaw(targetComponent.request), toRaw(chartEditStore.getRequestGlobalConfig)) + if (res) { + try { + const filter = targetComponent.filter + echartsUpdateHandle(newFunctionHandle(res?.data, res, filter)) + // 更新回调函数 + if (updateCallback) { + updateCallback(newFunctionHandle(res?.data, res, filter)) + } + } catch (error) { + console.error(error) + } + } + } + + // 立即调用 + fetchFn() + // 定时时间 + const time = targetInterval && targetInterval.value ? targetInterval.value : globalRequestInterval.value + // 单位 + const unit = targetInterval && targetInterval.value ? targetUnit.value : globalUnit.value + // 开启轮询 + if (time) fetchInterval = setInterval(fetchFn, intervalUnitHandle(time, unit)) + } + // eslint-disable-next-line no-empty + } catch (error) { + console.log(error) + } + } + + if (isPreview()) { + // 判断是否是数据池类型 + targetComponent.request.requestDataType === RequestDataTypeEnum.Pond + ? addGlobalDataInterface(targetComponent, useChartEditStore, updateCallback || echartsUpdateHandle) + : requestIntervalFn() + } + return { vChartRef } +} diff --git a/src/hooks/useChartDataPondFetch.hook.ts b/src/hooks/useChartDataPondFetch.hook.ts new file mode 100644 index 0000000..24ac766 --- /dev/null +++ b/src/hooks/useChartDataPondFetch.hook.ts @@ -0,0 +1,115 @@ +import { toRaw } from 'vue' +import { customizeHttp } from '@/api/http' +import { CreateComponentType } from '@/packages/index.d' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { RequestGlobalConfigType, RequestDataPondItemType } from '@/store/modules/chartEditStore/chartEditStore.d' +import { newFunctionHandle, intervalUnitHandle } from '@/utils' + +// 获取类型 +type ChartEditStoreType = typeof useChartEditStore + +// 数据池存储的数据类型 +type DataPondMapType = { + updateCallback: (...args: any) => any + filter?: string | undefined +} + +// 数据池 Map 中请求对应 callback +const mittDataPondMap = new Map() + +// 创建单个数据项轮询接口 +const newPondItemInterval = ( + requestGlobalConfig: RequestGlobalConfigType, + requestDataPondItem: RequestDataPondItemType, + dataPondMapItem?: DataPondMapType[] +) => { + if (!dataPondMapItem) return + let fetchInterval: any = 0 + + clearInterval(fetchInterval) + + // 请求 + const fetchFn = async () => { + try { + const res = await customizeHttp(toRaw(requestDataPondItem.dataPondRequestConfig), toRaw(requestGlobalConfig)) + + if (res) { + try { + // 遍历更新回调函数 + dataPondMapItem.forEach(item => { + item.updateCallback(newFunctionHandle(res?.data, res, item.filter)) + }) + } catch (error) { + console.error(error) + return error + } + } + } catch (error) { + return error + } + } + + // 立即调用 + fetchFn() + + const targetInterval = requestDataPondItem.dataPondRequestConfig.requestInterval + const targetUnit = requestDataPondItem.dataPondRequestConfig.requestIntervalUnit + + const globalRequestInterval = requestGlobalConfig.requestInterval + const globalUnit = requestGlobalConfig.requestIntervalUnit + + // 定时时间 + const time = targetInterval ? targetInterval : globalRequestInterval + // 单位 + const unit = targetInterval ? targetUnit : globalUnit + // 开启轮询 + if (time) fetchInterval = setInterval(fetchFn, intervalUnitHandle(time, unit)) +} + +/** + * 数据池接口处理 + */ +export const useChartDataPondFetch = () => { + // 新增全局接口 + const addGlobalDataInterface = ( + targetComponent: CreateComponentType, + useChartEditStore: ChartEditStoreType, + updateCallback: (...args: any) => any + ) => { + const chartEditStore = useChartEditStore() + const { requestDataPond } = chartEditStore.getRequestGlobalConfig + + // 组件对应的数据池 Id + const requestDataPondId = targetComponent.request.requestDataPondId as string + // 新增数据项 + const mittPondIdArr = mittDataPondMap.get(requestDataPondId) || [] + mittPondIdArr.push({ + updateCallback: updateCallback, + filter: targetComponent.filter + }) + mittDataPondMap.set(requestDataPondId, mittPondIdArr) + } + + // 清除旧数据 + const clearMittDataPondMap = () => { + mittDataPondMap.clear() + } + + // 初始化数据池 + const initDataPond = (requestGlobalConfig: RequestGlobalConfigType) => { + const { requestDataPond } = requestGlobalConfig + // 根据 mapId 查找对应的数据池配置 + for (let pondKey of mittDataPondMap.keys()) { + const requestDataPondItem = requestDataPond.find(item => item.dataPondId === pondKey) + if (requestDataPondItem) { + newPondItemInterval(requestGlobalConfig, requestDataPondItem, mittDataPondMap.get(pondKey)) + } + } + } + + return { + addGlobalDataInterface, + clearMittDataPondMap, + initDataPond + } +} diff --git a/src/hooks/useCode.hook.ts b/src/hooks/useCode.hook.ts new file mode 100644 index 0000000..53cebd0 --- /dev/null +++ b/src/hooks/useCode.hook.ts @@ -0,0 +1,10 @@ +import hljs from 'highlight.js/lib/core' +import json from 'highlight.js/lib/languages/json' +import typescript from 'highlight.js/lib/languages/typescript' + +// * code 展示 +export const useCode = () => { + hljs.registerLanguage('json', json) + hljs.registerLanguage('typescript', typescript) + return hljs +} diff --git a/src/hooks/useLang.hook.ts b/src/hooks/useLang.hook.ts new file mode 100644 index 0000000..f165ce6 --- /dev/null +++ b/src/hooks/useLang.hook.ts @@ -0,0 +1,24 @@ +import { computed } from 'vue' +import { LangEnum } from '@/enums/styleEnum' +import { useLangStore } from '@/store/modules/langStore/langStore' +import { zhCN, enUS, dateEnUS, dateZhCN } from 'naive-ui' + +type LangStoreType = typeof useLangStore + +// 语言切换 +export const useLang = () => { + const lang = useLangStore() + + const locale = computed(() => { + return lang.getLang === LangEnum.ZH ? zhCN : enUS + }) + + const dateLocale = computed(() => { + return lang.getLang === LangEnum.ZH ? dateZhCN : dateEnUS + }) + + return { + locale, + dateLocale + } +} diff --git a/src/hooks/useLifeHandler.hook.ts b/src/hooks/useLifeHandler.hook.ts new file mode 100644 index 0000000..2412a79 --- /dev/null +++ b/src/hooks/useLifeHandler.hook.ts @@ -0,0 +1,79 @@ +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { EventLife } from '@/enums/eventEnum' +import * as echarts from 'echarts' + +// 所有图表组件集合对象 +const components: { [K in string]?: any } = {} + +// 项目提供的npm 包变量 +export const npmPkgs = { echarts } + +// 组件事件处理 hook +export const useLifeHandler = (chartConfig: CreateComponentType | CreateComponentGroupType) => { + if (!chartConfig.events) return {} + + // 处理基础事件 + const baseEvent: { [key: string]: any } = {} + for (const key in chartConfig.events.baseEvent) { + const fnStr: string | undefined = (chartConfig.events.baseEvent as any)[key] + // 动态绑定基础事件 + if (fnStr) { + baseEvent[key] = generateBaseFunc(fnStr) + } + } + + // 生成生命周期事件 + const events = chartConfig.events.advancedEvents || {} + const lifeEvents = { + [EventLife.VNODE_BEFORE_MOUNT](e: any) { + // 存储组件 + components[chartConfig.id] = e.component + const fnStr = (events[EventLife.VNODE_BEFORE_MOUNT] || '').trim() + generateFunc(fnStr, e) + }, + [EventLife.VNODE_MOUNTED](e: any) { + const fnStr = (events[EventLife.VNODE_MOUNTED] || '').trim() + generateFunc(fnStr, e) + } + } + return { ...baseEvent, ...lifeEvents } +} + +/** + * 生成基础函数 + * @param fnStr 用户方法体代码 + * @param event 鼠标事件 + */ + export function generateBaseFunc(fnStr: string) { + try { + return new Function(` + return ( + async function(mouseEvent){ + ${fnStr} + } + )`)() + } catch (error) { + console.error(error) + } +} + +/** + * 生成高级函数 + * @param fnStr 用户方法体代码 + * @param e 执行生命周期的动态组件实例 + */ +function generateFunc(fnStr: string, e: any) { + try { + // npmPkgs 便于拷贝 echarts 示例时设置option 的formatter等相关内容 + Function(` + "use strict"; + return ( + async function(e, components, node_modules){ + const {${Object.keys(npmPkgs).join()}} = node_modules; + ${fnStr} + } + )`)().bind(e?.component)(e, components, npmPkgs) + } catch (error) { + console.error(error) + } +} diff --git a/src/hooks/usePreviewScale.hook.ts b/src/hooks/usePreviewScale.hook.ts new file mode 100644 index 0000000..066f6b6 --- /dev/null +++ b/src/hooks/usePreviewScale.hook.ts @@ -0,0 +1,218 @@ +import throttle from 'lodash/throttle' + +// 拆出来是为了更好的分离单独复用 + +// * 屏幕缩放适配(两边留白) +export const usePreviewFitScale = ( + width: number, + height: number, + scaleDom: HTMLElement | null, + callback?: (scale: { + width: number; + height: number; + }) => void +) => { + // * 画布尺寸(px) + const baseWidth = width + const baseHeight = height + + // * 默认缩放值 + const scale = { + width: 1, + height: 1, + } + + // * 需保持的比例 + const baseProportion = parseFloat((baseWidth / baseHeight).toFixed(5)) + const calcRate = () => { + // 当前屏幕宽高比 + const currentRate = parseFloat( + (window.innerWidth / window.innerHeight).toFixed(5) + ) + if (scaleDom) { + if (currentRate > baseProportion) { + // 表示更宽 + scale.width = parseFloat(((window.innerHeight * baseProportion) / baseWidth).toFixed(5)) + scale.height = parseFloat((window.innerHeight / baseHeight).toFixed(5)) + scaleDom.style.transform = `scale(${scale.width}, ${scale.height})` + } else { + // 表示更高 + scale.height = parseFloat(((window.innerWidth / baseProportion) / baseHeight).toFixed(5)) + scale.width = parseFloat((window.innerWidth / baseWidth).toFixed(5)) + scaleDom.style.transform = `scale(${scale.width}, ${scale.height})` + } + if (callback) callback(scale) + } + } + + const resize = throttle(() => { + calcRate() + }, 200) + + // * 改变窗口大小重新绘制 + const windowResize = () => { + window.addEventListener('resize', resize) + } + + // * 改变窗口大小重新绘制 + const unWindowResize = () => { + window.removeEventListener('resize', resize) + } + + return { + calcRate, + windowResize, + unWindowResize, + } +} + +// * X轴撑满,Y轴滚动条 +export const usePreviewScrollYScale = ( + width: number, + height: number, + scaleDom: HTMLElement | null, + callback?: (scale: { + width: number; + height: number; + }) => void +) => { + // * 画布尺寸(px) + const baseWidth = width + const baseHeight = height + + // * 默认缩放值 + const scale = { + width: 1, + height: 1, + } + + // * 需保持的比例 + const baseProportion = parseFloat((baseWidth / baseHeight).toFixed(5)) + const calcRate = () => { + if (scaleDom) { + scale.height = parseFloat(((window.innerWidth / baseProportion) / baseHeight).toFixed(5)) + scale.width = parseFloat((window.innerWidth / baseWidth).toFixed(5)) + scaleDom.style.transform = `scale(${scale.width}, ${scale.height})` + if (callback) callback(scale) + } + } + + const resize = throttle(() => { + calcRate() + }, 200) + + // * 改变窗口大小重新绘制 + const windowResize = () => { + window.addEventListener('resize', resize) + } + + // * 改变窗口大小重新绘制 + const unWindowResize = () => { + window.removeEventListener('resize', resize) + } + + return { + calcRate, + windowResize, + unWindowResize, + } +} + +// * Y轴撑满,X轴滚动条 +export const usePreviewScrollXScale = ( + width: number, + height: number, + scaleDom: HTMLElement | null, + callback?: (scale: { + width: number; + height: number; + }) => void +) => { + // * 画布尺寸(px) + const baseWidth = width + const baseHeight = height + + // * 默认缩放值 + const scale = { + height: 1, + width: 1, + } + + // * 需保持的比例 + const baseProportion = parseFloat((baseWidth / baseHeight).toFixed(5)) + const calcRate = () => { + if (scaleDom) { + scale.width = parseFloat(((window.innerHeight * baseProportion) / baseWidth).toFixed(5)) + scale.height = parseFloat((window.innerHeight / baseHeight).toFixed(5)) + scaleDom.style.transform = `scale(${scale.width}, ${scale.height})` + if (callback) callback(scale) + } + } + + const resize = throttle(() => { + calcRate() + }, 200) + + // * 改变窗口大小重新绘制 + const windowResize = () => { + window.addEventListener('resize', resize) + } + + // * 改变窗口大小重新绘制 + const unWindowResize = () => { + window.removeEventListener('resize', resize) + } + + return { + calcRate, + windowResize, + unWindowResize, + } +} + +// * 变形内容,宽高铺满 +export const usePreviewFullScale = ( + width: number, + height: number, + scaleDom: HTMLElement | null, + callback?: (scale: { + width: number; + height: number; + }) => void +) => { + + // * 默认缩放值 + const scale = { + width: 1, + height: 1, + } + + const calcRate = () => { + if (scaleDom) { + scale.width = parseFloat((window.innerWidth / width).toFixed(5)) + scale.height = parseFloat((window.innerHeight / height).toFixed(5)) + scaleDom.style.transform = `scale(${scale.width}, ${scale.height})` + if (callback) callback(scale) + } + } + + const resize = throttle(() => { + calcRate() + }, 200) + + // * 改变窗口大小重新绘制 + const windowResize = () => { + window.addEventListener('resize', resize) + } + + // * 改变窗口大小重新绘制 + const unWindowResize = () => { + window.removeEventListener('resize', resize) + } + + return { + calcRate, + windowResize, + unWindowResize, + } +} \ No newline at end of file diff --git a/src/hooks/useSystemInit.hook.ts b/src/hooks/useSystemInit.hook.ts new file mode 100644 index 0000000..5b76d77 --- /dev/null +++ b/src/hooks/useSystemInit.hook.ts @@ -0,0 +1,8 @@ +import { useSystemStore } from '@/store/modules/systemStore/systemStore' +import { SystemStoreEnum } from '@/store/modules/systemStore/systemStore.d' +import { ResultEnum } from '@/enums/httpEnum' + +// * 初始化 +export const useSystemInit = async () => { + // TODO 芋艿:看看这里后续要不要拿下 URL 上的 token +} diff --git a/src/hooks/useTheme.hook.ts b/src/hooks/useTheme.hook.ts new file mode 100644 index 0000000..94d809d --- /dev/null +++ b/src/hooks/useTheme.hook.ts @@ -0,0 +1,50 @@ +import { computed, toRefs } from 'vue' +import { darkTheme, GlobalThemeOverrides } from 'naive-ui' +import { useDesignStore } from '@/store/modules/designStore/designStore' +import { borderRadius } from '@/settings/designSetting' +import { alpha, lighten } from '@/utils' + +/** + * * 设置全局主题 + */ +export const useThemeOverridesHook = () => { + const designStore = useDesignStore() + const { getAppTheme } = toRefs(designStore) + const darkTheme = computed( + (): GlobalThemeOverrides => { + // 通用 + const commonObj = { + common: { + primaryColor: getAppTheme.value, + primaryColorHover: lighten(alpha(getAppTheme.value), 0.1), + primaryColorPressed: lighten(alpha(getAppTheme.value), 0.1), + primaryColorSuppl: getAppTheme.value, + borderRadius + } + } + // 亮色主题 + const lightObject = { + common: { + ...commonObj.common + } + } + // 暗色主题 + const dartObject = { + common: { + ...commonObj.common + }, + LoadingBar: { + colorLoading: getAppTheme.value + } + } + return designStore.getDarkTheme ? dartObject : lightObject + } + ) + return darkTheme +} + +// 返回暗黑主题 +export const useDarkThemeHook = () => { + const designStore = useDesignStore() + return computed(() => (designStore.getDarkTheme ? darkTheme : undefined)) +} diff --git a/src/i18n/en/index.ts b/src/i18n/en/index.ts new file mode 100644 index 0000000..6d4fc80 --- /dev/null +++ b/src/i18n/en/index.ts @@ -0,0 +1,51 @@ +import login from './login' +import project from './project' + +const global = { + doc_addr: 'Document', + code_addr: 'Code', + form_tenant: 'Please enter your tenant', + form_account: 'Please enter your account', + form_password: 'Please enter your password', + // header + doc: 'Document', + help: 'Help', + contact: 'About Software', + logout: 'Logout', + logout_success: 'Logout success!', + logout_failure: 'Logout Failed!', + // system setting + sys_set: 'System Setting', + lang_set: 'Language Setting', + // right key + r_edit: 'Edit', + r_preview: 'Preview', + r_copy: 'Clone', + r_rename: 'Rename', + r_publish: 'Publish', + r_unpublish: 'Unpublish', + r_download: 'Download', + r_delete: 'Delete', + r_more: 'More', +} + +const http = { + error_message: 'The interface is abnormal, please check the interface!', + token_overdue_message: 'Login expired, please log in again!' +} + +const captcha = { + verification: 'Please complete security verification', + slide: 'Swipe right to complete verification', + point: 'Please click', + success: 'Verification succeeded', + fail: 'verification failed' +} + +export default { + global, + http, + login, + project, + captcha +} diff --git a/src/i18n/en/login.ts b/src/i18n/en/login.ts new file mode 100644 index 0000000..eabe86c --- /dev/null +++ b/src/i18n/en/login.ts @@ -0,0 +1,7 @@ +export default { + desc: "Login", + form_auto: "Sign in automatically", + form_button: "Login", + login_success: "Login success!", + login_message: "Please complete the letter!", +} \ No newline at end of file diff --git a/src/i18n/en/project.ts b/src/i18n/en/project.ts new file mode 100644 index 0000000..dae8146 --- /dev/null +++ b/src/i18n/en/project.ts @@ -0,0 +1,17 @@ +export default { + create_btn: 'Creat', + create_success: 'Creat Success!', + create_failure: 'Failed to create, please try again later!', + create_tip: 'Please select a content for development!', + project: 'Project', + my: 'My', + new_project: 'New Project', + all_project: 'All Project', + my_templete: 'My Templete', + template_market: 'Template Market', + + // items + release: 'Release', + unreleased: 'Unrelease', + last_edit: 'Last edit time' +} diff --git a/src/i18n/index.ts b/src/i18n/index.ts new file mode 100644 index 0000000..b6d851c --- /dev/null +++ b/src/i18n/index.ts @@ -0,0 +1,36 @@ +//语言 +import { lang } from '@/settings/designSetting' +import { createI18n } from 'vue-i18n' //引入vue-i18n组件 +import { getLocalStorage } from '@/utils' +import { StorageEnum }from '@/enums/storageEnum' +import { LangEnum } from '@/enums/styleEnum' +import { LangStateType } from '@/store/modules/langStore/langStore.d' +import zh from './zh/index' +import en from './en/index' + +const langStorage: LangStateType = getLocalStorage(StorageEnum.GO_LANG_STORE) + +// 语言数组 +export const langList = [ + { + label: '中文', + key: LangEnum.ZH + }, + { + label: 'English', + key: LangEnum.EN + } +] + +const i18n = createI18n({ + legacy: false, + globalInjection:true, + locale: langStorage?.lang || lang, + fallbackLocale: langStorage?.lang || lang, + messages: { + [LangEnum.ZH]: zh, + [LangEnum.EN]: en + } +}) + +export default i18n diff --git a/src/i18n/zh/index.ts b/src/i18n/zh/index.ts new file mode 100644 index 0000000..a19d943 --- /dev/null +++ b/src/i18n/zh/index.ts @@ -0,0 +1,56 @@ +import login from './login' +import project from './project' + +const global = { + doc_addr: '文档地址', + code_addr: '仓库地址', + tenant_account: '请输入租户名', + form_account: '请输入账号', + form_password: '请输入密码', + // 头部 + doc: '说明文档', + help: '帮助中心', + contact: '关于软件', + logout: '退出登录', + logout_success: '退出成功!', + logout_failure: '退出失败!', + // 系统设置 + sys_set: '系统设置', + lang_set: '语言设置', + // 功能键 + r_edit: '编辑', + r_preview: '预览', + r_copy: '克隆', + r_copy_success: '克隆成功!', + r_rename: '重命名', + r_rename_success: '重命名成功!', + r_publish: '发布', + r_publish_success: '成功发布!', + r_unpublish: '取消发布', + r_unpublish_success: '取消成功!', + r_download: '下载', + r_delete: '删除', + r_delete_success: '删除成功!', + r_more: '更多', +} + +const http = { + error_message: '获取数据失败,请稍后重试!', + token_overdue_message: '登录过期,请重新登录!' +} + +const captcha = { + verification: '请完成安全验证', + slide: '向右滑动完成验证', + point: '请依次点击', + success: '验证成功', + fail: '验证失败', +} + +export default { + global, + http, + login, + project, + captcha +} diff --git a/src/i18n/zh/login.ts b/src/i18n/zh/login.ts new file mode 100644 index 0000000..9618269 --- /dev/null +++ b/src/i18n/zh/login.ts @@ -0,0 +1,7 @@ +export default { + desc: "登录", + form_auto: "自动登录", + form_button: "登录", + login_message: "请填写完整信息", + login_success: "登录成功!", +} \ No newline at end of file diff --git a/src/i18n/zh/project.ts b/src/i18n/zh/project.ts new file mode 100644 index 0000000..d6f2568 --- /dev/null +++ b/src/i18n/zh/project.ts @@ -0,0 +1,18 @@ +export default { + // aside + create_btn: '新建', + create_success: '新建成功!', + create_failure: '新建失败,请稍后重试!', + create_tip: '从哪里出发好呢?', + project: '项目', + my: '我的', + new_project: '新项目', + all_project: '全部项目', + my_templete: '我的模板', + template_market: '模板市场', + + // items + release: '已发布', + unreleased: '未发布', + last_edit: '最后编辑' +} diff --git a/src/layout/components/LayoutFooter/index.ts b/src/layout/components/LayoutFooter/index.ts new file mode 100644 index 0000000..9bf22e3 --- /dev/null +++ b/src/layout/components/LayoutFooter/index.ts @@ -0,0 +1,3 @@ +import LayoutFooter from './index.vue' + +export { LayoutFooter } \ No newline at end of file diff --git a/src/layout/components/LayoutFooter/index.vue b/src/layout/components/LayoutFooter/index.vue new file mode 100644 index 0000000..56229e6 --- /dev/null +++ b/src/layout/components/LayoutFooter/index.vue @@ -0,0 +1,29 @@ + + + + + diff --git a/src/layout/components/LayoutHeader/index.ts b/src/layout/components/LayoutHeader/index.ts new file mode 100644 index 0000000..a77dcf1 --- /dev/null +++ b/src/layout/components/LayoutHeader/index.ts @@ -0,0 +1,3 @@ +import LayoutHeader from './index.vue' + +export { LayoutHeader } \ No newline at end of file diff --git a/src/layout/components/LayoutHeader/index.vue b/src/layout/components/LayoutHeader/index.vue new file mode 100644 index 0000000..91c8082 --- /dev/null +++ b/src/layout/components/LayoutHeader/index.vue @@ -0,0 +1,55 @@ + + + + + diff --git a/src/layout/components/LayoutHeaderPro/index.ts b/src/layout/components/LayoutHeaderPro/index.ts new file mode 100644 index 0000000..b83135d --- /dev/null +++ b/src/layout/components/LayoutHeaderPro/index.ts @@ -0,0 +1,3 @@ +import LayoutHeaderPro from './index.vue' + +export { LayoutHeaderPro } \ No newline at end of file diff --git a/src/layout/components/LayoutHeaderPro/index.vue b/src/layout/components/LayoutHeaderPro/index.vue new file mode 100644 index 0000000..f89ca7b --- /dev/null +++ b/src/layout/components/LayoutHeaderPro/index.vue @@ -0,0 +1,21 @@ + + diff --git a/src/layout/components/LayoutMain/index.ts b/src/layout/components/LayoutMain/index.ts new file mode 100644 index 0000000..e58df03 --- /dev/null +++ b/src/layout/components/LayoutMain/index.ts @@ -0,0 +1,3 @@ +import LayoutMain from './index.vue'; + +export { LayoutMain }; diff --git a/src/layout/components/LayoutMain/index.vue b/src/layout/components/LayoutMain/index.vue new file mode 100644 index 0000000..9c9d9a2 --- /dev/null +++ b/src/layout/components/LayoutMain/index.vue @@ -0,0 +1,14 @@ + diff --git a/src/layout/components/LayoutTransitionMain/index.ts b/src/layout/components/LayoutTransitionMain/index.ts new file mode 100644 index 0000000..ea4d731 --- /dev/null +++ b/src/layout/components/LayoutTransitionMain/index.ts @@ -0,0 +1,3 @@ +import LayoutTransitionMain from './index.vue'; + +export { LayoutTransitionMain }; diff --git a/src/layout/components/LayoutTransitionMain/index.vue b/src/layout/components/LayoutTransitionMain/index.vue new file mode 100644 index 0000000..41f67cc --- /dev/null +++ b/src/layout/components/LayoutTransitionMain/index.vue @@ -0,0 +1,14 @@ + diff --git a/src/layout/index.vue b/src/layout/index.vue new file mode 100644 index 0000000..1835c88 --- /dev/null +++ b/src/layout/index.vue @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/src/layout/parentLayout.vue b/src/layout/parentLayout.vue new file mode 100644 index 0000000..a44ab87 --- /dev/null +++ b/src/layout/parentLayout.vue @@ -0,0 +1,3 @@ + diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..cf9b86d --- /dev/null +++ b/src/main.ts @@ -0,0 +1,56 @@ +import { createApp } from 'vue' +import App from './App.vue' +import router, { setupRouter } from '@/router' +import i18n from '@/i18n/index' +import { setupStore } from '@/store' +import { setupNaive, setupDirectives, setupCustomComponents } from '@/plugins' +import { GoAppProvider } from '@/components/GoAppProvider/index' +import { setHtmlTheme } from '@/utils' + +// 引入全局样式 +import '@/styles/pages/index.scss' +// 引入动画 +import 'animate.css/animate.min.css' +// 引入标尺 +import 'vue3-sketch-ruler/lib/style.css' + +async function appInit() { + const goAppProvider = createApp(GoAppProvider) + + const app = createApp(App) + + // 注册全局常用的 naive-ui 组件 + setupNaive(app) + + // 注册全局自定义指令 + setupDirectives(app) + + // 注册全局自定义组件 + setupCustomComponents(app) + + // 挂载状态管理 + setupStore(app) + + // 解决路由守卫,Axios中可使用,Dialog,Message 等全局组件 + goAppProvider.mount('#appProvider', true) + + // 挂载路由 + setupRouter(app) + + // 路由准备就绪后挂载APP实例 + await router.isReady() + + // Store 准备就绪后处理主题色 + setHtmlTheme() + + // 语言注册 + app.use(i18n) + + // 挂载到页面 + app.mount('#app', true) + + // 挂载到 window + window['$vue'] = app +} + +void appInit() diff --git a/src/packages/chartConfiguration/echarts/axis.ts b/src/packages/chartConfiguration/echarts/axis.ts new file mode 100644 index 0000000..5c72418 --- /dev/null +++ b/src/packages/chartConfiguration/echarts/axis.ts @@ -0,0 +1,56 @@ +export const axisConfig = { + // X轴位置 + xposition: [ + { + label: '顶部', + value: 'top' + }, + { + label: '底部', + value: 'bottom' + } + ], + // Y轴位置 + yposition: [ + { + label: '左侧', + value: 'left' + }, + { + label: '右侧', + value: 'right' + } + ], + // 线条 + splitLint: { + lineStyle: { + type: [ + { + label: '实线', + value: 'solid' + }, + { + label: '虚线', + value: 'dashed' + }, + { + label: '点线', + value: 'dotted' + } + ] + } + }, + // 视觉映射 + visualMap: { + orient: [ + { + label: '竖直', + value: 'vertical' + }, + { + label: '水平', + value: 'horizontal' + } + ] + } +} diff --git a/src/packages/chartConfiguration/echarts/index.ts b/src/packages/chartConfiguration/echarts/index.ts new file mode 100644 index 0000000..29fa8f0 --- /dev/null +++ b/src/packages/chartConfiguration/echarts/index.ts @@ -0,0 +1,3 @@ +export * from './axis' +export * from './line' +export * from './label' \ No newline at end of file diff --git a/src/packages/chartConfiguration/echarts/label.ts b/src/packages/chartConfiguration/echarts/label.ts new file mode 100644 index 0000000..c907687 --- /dev/null +++ b/src/packages/chartConfiguration/echarts/label.ts @@ -0,0 +1,7 @@ +export const labelConfig = { + position: [ + { label: '外侧', value: 'outside' }, + { label: '内部', value: 'inside' }, + { label: '中心', value: 'center' } + ] +} diff --git a/src/packages/chartConfiguration/echarts/line.ts b/src/packages/chartConfiguration/echarts/line.ts new file mode 100644 index 0000000..6716ecb --- /dev/null +++ b/src/packages/chartConfiguration/echarts/line.ts @@ -0,0 +1,18 @@ +export const lineConf = { + lineStyle: { + type: [ + { + label: 'solid', + value: 'solid' + }, + { + label: 'dashed', + value: 'dashed' + }, + { + label: 'dotted', + value: 'dotted' + } + ] + } +} diff --git a/src/packages/components/Charts/Bars/BarCommon/config.ts b/src/packages/components/Charts/Bars/BarCommon/config.ts new file mode 100644 index 0000000..a57b6d9 --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCommon/config.ts @@ -0,0 +1,48 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { BarCommonConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] +export const seriesItem = { + type: 'bar', + barWidth: 15, + label: { + show: true, + position: 'top', + color: '#fff', + fontSize: 12 + }, + itemStyle: { + color: null, + borderRadius: 2 + } +} +export const option = { + tooltip: { + show: true, + trigger: 'axis', + axisPointer: { + show: true, + type: 'shadow' + } + }, +xAxis: { + show: true, + type: 'category' + }, + yAxis: { + show: true, + type: 'value' + }, + dataset: { ...dataJson }, + series: [seriesItem, seriesItem] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = BarCommonConfig.key + public chartConfig = cloneDeep(BarCommonConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Bars/BarCommon/config.vue b/src/packages/components/Charts/Bars/BarCommon/config.vue new file mode 100644 index 0000000..f7b4823 --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCommon/config.vue @@ -0,0 +1,62 @@ + + + diff --git a/src/packages/components/Charts/Bars/BarCommon/data.json b/src/packages/components/Charts/Bars/BarCommon/data.json new file mode 100644 index 0000000..a28d4ee --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCommon/data.json @@ -0,0 +1,40 @@ +{ + "dimensions": ["product", "data1", "data2"], + "source": [ + { + "product": "Mon", + "data1": 120, + "data2": 130 + }, + { + "product": "Tue", + "data1": 200, + "data2": 130 + }, + { + "product": "Wed", + "data1": 150, + "data2": 312 + }, + { + "product": "Thu", + "data1": 80, + "data2": 268 + }, + { + "product": "Fri", + "data1": 70, + "data2": 155 + }, + { + "product": "Sat", + "data1": 110, + "data2": 117 + }, + { + "product": "Sun", + "data1": 130, + "data2": 160 + } + ] +} diff --git a/src/packages/components/Charts/Bars/BarCommon/index.ts b/src/packages/components/Charts/Bars/BarCommon/index.ts new file mode 100644 index 0000000..f142acf --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCommon/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const BarCommonConfig: ConfigType = { + key: 'BarCommon', + chartKey: 'VBarCommon', + conKey: 'VCBarCommon', + title: '柱状图', + category: ChatCategoryEnum.BAR, + categoryName: ChatCategoryEnumName.BAR, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'bar_x.png' +} diff --git a/src/packages/components/Charts/Bars/BarCommon/index.vue b/src/packages/components/Charts/Bars/BarCommon/index.vue new file mode 100644 index 0000000..77f6da0 --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCommon/index.vue @@ -0,0 +1,79 @@ + + + diff --git a/src/packages/components/Charts/Bars/BarCrossrange/config.ts b/src/packages/components/Charts/Bars/BarCrossrange/config.ts new file mode 100644 index 0000000..340656a --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCrossrange/config.ts @@ -0,0 +1,48 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { BarCrossrangeConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] +export const seriesItem = { + type: 'bar', + barWidth: null, + label: { + show: true, + position: 'right', + color: '#fff', + fontSize: 12 + }, + itemStyle: { + color: null, + borderRadius: 0 + } +} +export const option = { + tooltip: { + show: true, + trigger: 'axis', + axisPointer: { + show: true, + type: 'shadow' + } + }, + xAxis: { + show: true, + type: 'value' + }, + yAxis: { + show: true, + type: 'category' + }, + dataset: { ...dataJson }, + series: [seriesItem, seriesItem] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = BarCrossrangeConfig.key + public chartConfig = cloneDeep(BarCrossrangeConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Bars/BarCrossrange/config.vue b/src/packages/components/Charts/Bars/BarCrossrange/config.vue new file mode 100644 index 0000000..b0752b7 --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCrossrange/config.vue @@ -0,0 +1,75 @@ + + + diff --git a/src/packages/components/Charts/Bars/BarCrossrange/data.json b/src/packages/components/Charts/Bars/BarCrossrange/data.json new file mode 100644 index 0000000..a28d4ee --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCrossrange/data.json @@ -0,0 +1,40 @@ +{ + "dimensions": ["product", "data1", "data2"], + "source": [ + { + "product": "Mon", + "data1": 120, + "data2": 130 + }, + { + "product": "Tue", + "data1": 200, + "data2": 130 + }, + { + "product": "Wed", + "data1": 150, + "data2": 312 + }, + { + "product": "Thu", + "data1": 80, + "data2": 268 + }, + { + "product": "Fri", + "data1": 70, + "data2": 155 + }, + { + "product": "Sat", + "data1": 110, + "data2": 117 + }, + { + "product": "Sun", + "data1": 130, + "data2": 160 + } + ] +} diff --git a/src/packages/components/Charts/Bars/BarCrossrange/index.ts b/src/packages/components/Charts/Bars/BarCrossrange/index.ts new file mode 100644 index 0000000..8888851 --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCrossrange/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const BarCrossrangeConfig: ConfigType = { + key: 'BarCrossrange', + chartKey: 'VBarCrossrange', + conKey: 'VCBarCrossrange', + title: '横向柱状图', + category: ChatCategoryEnum.BAR, + categoryName: ChatCategoryEnumName.BAR, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'bar_y.png' +} diff --git a/src/packages/components/Charts/Bars/BarCrossrange/index.vue b/src/packages/components/Charts/Bars/BarCrossrange/index.vue new file mode 100644 index 0000000..c8d2957 --- /dev/null +++ b/src/packages/components/Charts/Bars/BarCrossrange/index.vue @@ -0,0 +1,78 @@ + + + diff --git a/src/packages/components/Charts/Bars/CapsuleChart/config.ts b/src/packages/components/Charts/Bars/CapsuleChart/config.ts new file mode 100644 index 0000000..2d56284 --- /dev/null +++ b/src/packages/components/Charts/Bars/CapsuleChart/config.ts @@ -0,0 +1,25 @@ +import { PublicConfigClass } from '@/packages/public' +import { CapsuleChartConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import { chartInitConfig } from '@/settings/designSetting' + +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const option = { + dataset: dataJson, + colors: ['#c4ebad', '#6be6c1', '#a0a7e6', '#96dee8', '#3fb1e3' ], + unit: '', + itemHeight: 10, + valueFontSize: 16, + paddingRight: 50, + paddingLeft: 50, + showValue: true +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = CapsuleChartConfig.key + public attr = { ...chartInitConfig, zIndex: -1 } + public chartConfig = cloneDeep(CapsuleChartConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Charts/Bars/CapsuleChart/config.vue b/src/packages/components/Charts/Bars/CapsuleChart/config.vue new file mode 100644 index 0000000..0331451 --- /dev/null +++ b/src/packages/components/Charts/Bars/CapsuleChart/config.vue @@ -0,0 +1,53 @@ + + + diff --git a/src/packages/components/Charts/Bars/CapsuleChart/data.json b/src/packages/components/Charts/Bars/CapsuleChart/data.json new file mode 100644 index 0000000..a7a26af --- /dev/null +++ b/src/packages/components/Charts/Bars/CapsuleChart/data.json @@ -0,0 +1,10 @@ +{ + "dimensions": ["name", "value"], + "source": [ + { "name": "厦门", "value": 20 }, + { "name": "南阳", "value": 40 }, + { "name": "北京", "value": 60 }, + { "name": "上海", "value": 80 }, + { "name": "新疆", "value": 100 } + ] +} diff --git a/src/packages/components/Charts/Bars/CapsuleChart/index.ts b/src/packages/components/Charts/Bars/CapsuleChart/index.ts new file mode 100644 index 0000000..69d7596 --- /dev/null +++ b/src/packages/components/Charts/Bars/CapsuleChart/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const CapsuleChartConfig: ConfigType = { + key: 'CapsuleChart', + chartKey: 'VCapsuleChart', + conKey: 'VCCapsuleChart', + title: '胶囊柱图', + category: ChatCategoryEnum.BAR, + categoryName: ChatCategoryEnumName.BAR, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'capsule.png' +} diff --git a/src/packages/components/Charts/Bars/CapsuleChart/index.vue b/src/packages/components/Charts/Bars/CapsuleChart/index.vue new file mode 100644 index 0000000..804ae0d --- /dev/null +++ b/src/packages/components/Charts/Bars/CapsuleChart/index.vue @@ -0,0 +1,226 @@ + + + + + diff --git a/src/packages/components/Charts/Bars/index.ts b/src/packages/components/Charts/Bars/index.ts new file mode 100644 index 0000000..a101acb --- /dev/null +++ b/src/packages/components/Charts/Bars/index.ts @@ -0,0 +1,5 @@ +import { BarCommonConfig } from './BarCommon/index' +import { BarCrossrangeConfig } from './BarCrossrange/index' +import { CapsuleChartConfig } from './CapsuleChart/index' + +export default [BarCommonConfig, BarCrossrangeConfig, CapsuleChartConfig] diff --git a/src/packages/components/Charts/Lines/LineCommon/config.ts b/src/packages/components/Charts/Lines/LineCommon/config.ts new file mode 100644 index 0000000..917a506 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineCommon/config.ts @@ -0,0 +1,54 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { LineCommonConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] +export const seriesItem = { + type: 'line', + label: { + show: true, + position: 'top', + color: '#fff', + fontSize: 12 + }, + symbolSize: 5, //设定实心点的大小 + itemStyle: { + color: null, + borderRadius: 0 + }, + lineStyle: { + type: 'solid', + width: 3, + color: null + } +} + +export const option = { + tooltip: { + show: true, + trigger: 'axis', + axisPointer: { + type: 'line' + } + }, + xAxis: { + show: true, + type: 'category' + }, + yAxis: { + show: true, + type: 'value' + }, + dataset: { ...dataJson }, + series: [seriesItem, seriesItem] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = LineCommonConfig.key + public chartConfig = cloneDeep(LineCommonConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Lines/LineCommon/config.vue b/src/packages/components/Charts/Lines/LineCommon/config.vue new file mode 100644 index 0000000..0b15d2a --- /dev/null +++ b/src/packages/components/Charts/Lines/LineCommon/config.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineCommon/data.json b/src/packages/components/Charts/Lines/LineCommon/data.json new file mode 100644 index 0000000..a28d4ee --- /dev/null +++ b/src/packages/components/Charts/Lines/LineCommon/data.json @@ -0,0 +1,40 @@ +{ + "dimensions": ["product", "data1", "data2"], + "source": [ + { + "product": "Mon", + "data1": 120, + "data2": 130 + }, + { + "product": "Tue", + "data1": 200, + "data2": 130 + }, + { + "product": "Wed", + "data1": 150, + "data2": 312 + }, + { + "product": "Thu", + "data1": 80, + "data2": 268 + }, + { + "product": "Fri", + "data1": 70, + "data2": 155 + }, + { + "product": "Sat", + "data1": 110, + "data2": 117 + }, + { + "product": "Sun", + "data1": 130, + "data2": 160 + } + ] +} diff --git a/src/packages/components/Charts/Lines/LineCommon/index.ts b/src/packages/components/Charts/Lines/LineCommon/index.ts new file mode 100644 index 0000000..bdd9918 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineCommon/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const LineCommonConfig: ConfigType = { + key: 'LineCommon', + chartKey: 'VLineCommon', + conKey: 'VCLineCommon', + title: '折线图', + category: ChatCategoryEnum.LINE, + categoryName: ChatCategoryEnumName.LINE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'line.png' +} diff --git a/src/packages/components/Charts/Lines/LineCommon/index.vue b/src/packages/components/Charts/Lines/LineCommon/index.vue new file mode 100644 index 0000000..33149e8 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineCommon/index.vue @@ -0,0 +1,79 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineGradientSingle/config.ts b/src/packages/components/Charts/Lines/LineGradientSingle/config.ts new file mode 100644 index 0000000..592b704 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradientSingle/config.ts @@ -0,0 +1,65 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { LineGradientSingleConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import { graphic } from 'echarts/core' +import { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] + +const options = { + tooltip: { + show: true, + trigger: 'axis', + axisPointer: { + type: 'line' + } + }, + xAxis: { + show: true, + type: 'category' + }, + yAxis: { + show: true, + type: 'value' + }, + dataset: { ...dataJson }, + series: [ + { + type: 'line', + smooth: false, + symbolSize: 5, //设定实心点的大小 + label: { + show: true, + position: 'top', + color: '#fff', + fontSize: 12 + }, + lineStyle: { + type: 'solid', + width: 3 + }, + areaStyle: { + opacity: 0.8, + color: new graphic.LinearGradient(0, 0, 0, 1, [ + { + offset: 0, + color: chartColorsSearch[defaultTheme][3] + }, + { + offset: 1, + color: 'rgba(0,0,0,0)' + } + ]) + } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = LineGradientSingleConfig.key + public chartConfig = cloneDeep(LineGradientSingleConfig) + // 图表配置项 + public option = echartOptionProfixHandle(options, includes) +} diff --git a/src/packages/components/Charts/Lines/LineGradientSingle/config.vue b/src/packages/components/Charts/Lines/LineGradientSingle/config.vue new file mode 100644 index 0000000..6025008 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradientSingle/config.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineGradientSingle/data.json b/src/packages/components/Charts/Lines/LineGradientSingle/data.json new file mode 100644 index 0000000..b0dbe05 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradientSingle/data.json @@ -0,0 +1,33 @@ +{ + "dimensions": ["product", "data1"], + "source": [ + { + "product": "Mon", + "data1": 120 + }, + { + "product": "Tue", + "data1": 200 + }, + { + "product": "Wed", + "data1": 150 + }, + { + "product": "Thu", + "data1": 80 + }, + { + "product": "Fri", + "data1": 70 + }, + { + "product": "Sat", + "data1": 110 + }, + { + "product": "Sun", + "data1": 130 + } + ] +} diff --git a/src/packages/components/Charts/Lines/LineGradientSingle/index.ts b/src/packages/components/Charts/Lines/LineGradientSingle/index.ts new file mode 100644 index 0000000..69f6650 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradientSingle/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const LineGradientSingleConfig: ConfigType = { + key: 'LineGradientSingle', + chartKey: 'VLineGradientSingle', + conKey: 'VCLineGradientSingle', + title: '单折线渐变面积图', + category: ChatCategoryEnum.LINE, + categoryName: ChatCategoryEnumName.LINE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'line_gradient_single.png' +} diff --git a/src/packages/components/Charts/Lines/LineGradientSingle/index.vue b/src/packages/components/Charts/Lines/LineGradientSingle/index.vue new file mode 100644 index 0000000..e0d9fb7 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradientSingle/index.vue @@ -0,0 +1,81 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineGradients/config.ts b/src/packages/components/Charts/Lines/LineGradients/config.ts new file mode 100644 index 0000000..d470bab --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradients/config.ts @@ -0,0 +1,92 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { LineGradientsConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import { graphic } from 'echarts/core' +import { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] + +const option = { + tooltip: { + show: true, + trigger: 'axis', + axisPointer: { + type: 'line' + } + }, + xAxis: { + show: true, + type: 'category' + }, + yAxis: { + show: true, + type: 'value' + }, + dataset: { ...dataJson }, + series: [ + { + type: 'line', + smooth: false, + symbolSize: 5, //设定实心点的大小 + label: { + show: true, + position: 'top', + color: '#fff', + fontSize: 12 + }, + lineStyle: { + width: 3, + type: 'solid' + }, + areaStyle: { + opacity: 0.8, + color: new graphic.LinearGradient(0, 0, 0, 1, [ + { + offset: 0, + color: chartColorsSearch[defaultTheme][3] + }, + { + offset: 1, + color: 'rgba(0,0,0,0)' + } + ]) + } + }, + { + type: 'line', + smooth: false, + label: { + show: true, + position: 'top', + color: '#fff', + fontSize: 12 + }, + lineStyle: { + width: 3, + type: 'solid' + }, + areaStyle: { + opacity: 0.8, + color: new graphic.LinearGradient(0, 0, 0, 1, [ + { + offset: 0, + color: chartColorsSearch[defaultTheme][4] + }, + { + offset: 1, + color: 'rgba(0,0,0,0)' + } + ]) + } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = LineGradientsConfig.key + public chartConfig = cloneDeep(LineGradientsConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Lines/LineGradients/config.vue b/src/packages/components/Charts/Lines/LineGradients/config.vue new file mode 100644 index 0000000..3b33266 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradients/config.vue @@ -0,0 +1,95 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineGradients/data.json b/src/packages/components/Charts/Lines/LineGradients/data.json new file mode 100644 index 0000000..a28d4ee --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradients/data.json @@ -0,0 +1,40 @@ +{ + "dimensions": ["product", "data1", "data2"], + "source": [ + { + "product": "Mon", + "data1": 120, + "data2": 130 + }, + { + "product": "Tue", + "data1": 200, + "data2": 130 + }, + { + "product": "Wed", + "data1": 150, + "data2": 312 + }, + { + "product": "Thu", + "data1": 80, + "data2": 268 + }, + { + "product": "Fri", + "data1": 70, + "data2": 155 + }, + { + "product": "Sat", + "data1": 110, + "data2": 117 + }, + { + "product": "Sun", + "data1": 130, + "data2": 160 + } + ] +} diff --git a/src/packages/components/Charts/Lines/LineGradients/index.ts b/src/packages/components/Charts/Lines/LineGradients/index.ts new file mode 100644 index 0000000..1145dcb --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradients/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const LineGradientsConfig: ConfigType = { + key: 'LineGradients', + chartKey: 'VLineGradients', + conKey: 'VCLineGradients', + title: '双折线渐变面积图', + category: ChatCategoryEnum.LINE, + categoryName: ChatCategoryEnumName.LINE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'line_gradient.png' +} diff --git a/src/packages/components/Charts/Lines/LineGradients/index.vue b/src/packages/components/Charts/Lines/LineGradients/index.vue new file mode 100644 index 0000000..8643426 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineGradients/index.vue @@ -0,0 +1,79 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineLinearSingle/config.ts b/src/packages/components/Charts/Lines/LineLinearSingle/config.ts new file mode 100644 index 0000000..abcb2a3 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineLinearSingle/config.ts @@ -0,0 +1,61 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { LineLinearSingleConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import { defaultTheme, chartColorsSearch } from '@/settings/chartThemes/index' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] + +export const option = { + tooltip: { + show: true, + trigger: 'axis', + axisPointer: { + type: 'line' + } + }, + xAxis: { + show: true, + type: 'category' + }, + yAxis: { + show: true, + type: 'value' + }, + dataset: { ...dataJson }, + series: [ + { + type: 'line', + symbolSize: 5, //设定实心点的大小 + lineStyle: { + type: 'solid', + width: 3, + color: { + type: 'linear', + colorStops: [ + { + offset: 0, + color: chartColorsSearch[defaultTheme][0] // 0% 处的颜色 + }, + { + offset: 1, + color: chartColorsSearch[defaultTheme][1] // 100% 处的颜色 + } + ], + globalCoord: false // 缺省为 false + }, + shadowColor: chartColorsSearch[defaultTheme][2], + shadowBlur: 10, + shadowOffsetY: 20 + } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = LineLinearSingleConfig.key + public chartConfig = cloneDeep(LineLinearSingleConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Lines/LineLinearSingle/config.vue b/src/packages/components/Charts/Lines/LineLinearSingle/config.vue new file mode 100644 index 0000000..b1b841a --- /dev/null +++ b/src/packages/components/Charts/Lines/LineLinearSingle/config.vue @@ -0,0 +1,97 @@ + + + diff --git a/src/packages/components/Charts/Lines/LineLinearSingle/data.json b/src/packages/components/Charts/Lines/LineLinearSingle/data.json new file mode 100644 index 0000000..b0dbe05 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineLinearSingle/data.json @@ -0,0 +1,33 @@ +{ + "dimensions": ["product", "data1"], + "source": [ + { + "product": "Mon", + "data1": 120 + }, + { + "product": "Tue", + "data1": 200 + }, + { + "product": "Wed", + "data1": 150 + }, + { + "product": "Thu", + "data1": 80 + }, + { + "product": "Fri", + "data1": 70 + }, + { + "product": "Sat", + "data1": 110 + }, + { + "product": "Sun", + "data1": 130 + } + ] +} diff --git a/src/packages/components/Charts/Lines/LineLinearSingle/index.ts b/src/packages/components/Charts/Lines/LineLinearSingle/index.ts new file mode 100644 index 0000000..d96ecda --- /dev/null +++ b/src/packages/components/Charts/Lines/LineLinearSingle/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const LineLinearSingleConfig: ConfigType = { + key: 'LineLinearSingle', + chartKey: 'VLineLinearSingle', + conKey: 'VCLineLinearSingle', + title: '单折线渐变图', + category: ChatCategoryEnum.LINE, + categoryName: ChatCategoryEnumName.LINE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'line_linear_single.png' +} diff --git a/src/packages/components/Charts/Lines/LineLinearSingle/index.vue b/src/packages/components/Charts/Lines/LineLinearSingle/index.vue new file mode 100644 index 0000000..19f4ef7 --- /dev/null +++ b/src/packages/components/Charts/Lines/LineLinearSingle/index.vue @@ -0,0 +1,78 @@ + + + diff --git a/src/packages/components/Charts/Lines/index.ts b/src/packages/components/Charts/Lines/index.ts new file mode 100644 index 0000000..e8c37e0 --- /dev/null +++ b/src/packages/components/Charts/Lines/index.ts @@ -0,0 +1,6 @@ +import { LineCommonConfig } from './LineCommon/index' +import { LineLinearSingleConfig } from './LineLinearSingle/index' +import { LineGradientSingleConfig } from './LineGradientSingle/index' +import { LineGradientsConfig } from './LineGradients/index' + +export default [LineCommonConfig, LineLinearSingleConfig, LineGradientSingleConfig, LineGradientsConfig] diff --git a/src/packages/components/Charts/Maps/MapAmap/config.ts b/src/packages/components/Charts/Maps/MapAmap/config.ts new file mode 100644 index 0000000..97bf903 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapAmap/config.ts @@ -0,0 +1,83 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { MapAmapConfig } from './index' +import { chartInitConfig } from '@/settings/designSetting' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export enum ThemeEnum { + NORMAL = 'normal', + DARK = 'dark', + LIGHT = 'light', + WHITES_MOKE = 'whitesmoke', + FRESH = 'fresh', + GREY = 'grey', + GRAFFITI = 'graffiti', + MACARON = 'macaron', + BLUE = 'blue', + DARKBLUE = 'darkblue', + WINE = 'wine' +} + +export enum LangEnum { + ZH_CN = 'zh_cn', + EN = 'en', + ZH_EN = 'zh_en' +} + +export enum ViewModeEnum { + PLANE = '2D', + STEREOSCOPIC = '3D' +} + +export enum FeaturesEnum { + BG = 'bg', + POINT = 'point', + ROAD = 'road', + BUILDING = 'building' +} + +export enum MarkerEnum { + // 圆圈 + CIRCLE_MARKER = 'CircleMarker', + // 定位标点 + MARKER = 'Marker', + // 暂无 + NONE = 'none' +} + +export const option = { + dataset: dataJson, + mapOptions: { + pitch: 60, + skyColor: '#53A9DE', + amapKey: 'd5f3e16589dbecae64d05fe90e2ba4f2', + amapStyleKey: ThemeEnum.DARK, + amapStyleKeyCustom: '', + amapLon: 116.397428, + amapLat: 39.90923, + amapZindex: 11, + marker: { + fillColor: '#E98984FF', + fillOpacity: 0.5, + strokeColor: 'white', + strokeWeight: 2, + strokeOpacity: 0.5, + zIndex: 10, + bubble: true, + cursor: 'pointer', + clickable: true + }, + mapMarkerType: MarkerEnum.CIRCLE_MARKER, + viewMode: ViewModeEnum.PLANE, + lang: LangEnum.ZH_CN, + features: [FeaturesEnum.BG, FeaturesEnum.POINT, FeaturesEnum.ROAD, FeaturesEnum.BUILDING] + } +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = MapAmapConfig.key + public attr = { ...chartInitConfig, w: 1000, h: 800, zIndex: -1 } + public chartConfig = cloneDeep(MapAmapConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Charts/Maps/MapAmap/config.vue b/src/packages/components/Charts/Maps/MapAmap/config.vue new file mode 100644 index 0000000..be3864b --- /dev/null +++ b/src/packages/components/Charts/Maps/MapAmap/config.vue @@ -0,0 +1,199 @@ + + + diff --git a/src/packages/components/Charts/Maps/MapAmap/data.json b/src/packages/components/Charts/Maps/MapAmap/data.json new file mode 100644 index 0000000..97a5d9e --- /dev/null +++ b/src/packages/components/Charts/Maps/MapAmap/data.json @@ -0,0 +1,19 @@ +{ + "markers": [ + { + "name": "某某地市", + "value": 10, + "position": [116.300467, 39.907761] + }, + { + "name": "某某地市", + "value": 15, + "position": [116.400567, 39.908761] + }, + { + "name": "某某地市", + "value": 20, + "position": [116.200467, 39.937761] + } + ] +} diff --git a/src/packages/components/Charts/Maps/MapAmap/index.ts b/src/packages/components/Charts/Maps/MapAmap/index.ts new file mode 100644 index 0000000..27e9579 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapAmap/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const MapAmapConfig: ConfigType = { + key: 'MapAmap', + chartKey: 'VMapAmap', + conKey: 'VCMapAmap', + title: '高德地图', + category: ChatCategoryEnum.MAP, + categoryName: ChatCategoryEnumName.MAP, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'map_amap.png' +} diff --git a/src/packages/components/Charts/Maps/MapAmap/index.vue b/src/packages/components/Charts/Maps/MapAmap/index.vue new file mode 100644 index 0000000..741013c --- /dev/null +++ b/src/packages/components/Charts/Maps/MapAmap/index.vue @@ -0,0 +1,130 @@ + + + diff --git a/src/packages/components/Charts/Maps/MapBase/config.ts b/src/packages/components/Charts/Maps/MapBase/config.ts new file mode 100644 index 0000000..163814b --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/config.ts @@ -0,0 +1,157 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { MapBaseConfig } from './index' +import { chartInitConfig } from '@/settings/designSetting' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = [] + +export const option = { + dataset: dataJson, + mapRegion: { + adcode: 'china', + showHainanIsLands: true + }, + tooltip: { + show: true, + trigger: 'item' + }, + visualMap: { + show: true, + orient: 'vertical', + pieces: [ + { gte: 1000, label: '>1000' }, // 不指定 max,表示 max 为无限大(Infinity)。 + { gte: 600, lte: 999, label: '600-999' }, + { gte: 200, lte: 599, label: '200-599' }, + { gte: 50, lte: 199, label: '49-199' }, + { gte: 10, lte: 49, label: '10-49' }, + { lte: 9, label: '<9' } // 不指定 min,表示 min 为无限大(-Infinity)。 + ], + inRange: { + // 渐变颜色,从小到大 + color: ['#c3d7df', '#5cb3cc', '#8abcd1', '#66a9c9', '#2f90b9', '#1781b5'] + }, + textStyle: { + color: '#fff' + } + }, + geo: { + show: false, + type: 'map', + roam: false, + map: 'china', + selectedMode: false, //是否允许选中多个区域 + zoom: 1 + }, + series: [ + { + name: '', + type: 'effectScatter', + coordinateSystem: 'geo', + symbolSize: 4, + legendHoverLink: true, + showEffectOn: 'render', + rippleEffect: { + scale: 6, + color: '#FFFFFF', + brushType: 'fill' + }, + tooltip: { + show: true, + backgroundColor: 'rgba(0,0,0,.6)', + borderColor: 'rgba(147, 235, 248, .8)', + textStyle: { + color: '#FFF' + } + }, + label: { + formatter: '{b}', + fontSize: 11, + offset: [0, 2], + position: 'bottom', + textBorderColor: '#fff', + textShadowColor: '#000', + textShadowBlur: 10, + textBorderWidth: 0, + color: '#FFFFFF', + show: true + }, + itemStyle: { + color: '#FFFFFF', + borderColor: 'rgba(225,255,255,2)', + borderWidth: 4, + shadowColor: '#E1FFFF', + shadowBlur: 10 + }, + data: [] + }, + { + name: '区域', + type: 'map', + map: 'china', + data: [], + selectedMode: false, + zoom: 1, + geoIndex: 1, + tooltip: { + show: true, + backgroundColor: '#00000060', + borderColor: 'rgba(147, 235, 248, 0.8)', + textStyle: { + color: '#FFFFFF', + fontSize: 12, + } + }, + label: { + show: false, + color: '#FFFFFF', + fontSize: 12, + }, + emphasis: { + disabled: false, + label: { + color: '#FFFFFF', + fontSize: 12, + }, + itemStyle: { + areaColor: '#389BB7', + shadowColor: '#389BB7', + borderWidth: 1 + } + }, + itemStyle: { + borderColor: '#93EBF8', + borderWidth: 1, + areaColor: { + type: 'radial', + x: 0.5, + y: 0.5, + r: 0.8, + colorStops: [ + { + offset: 0, + color: '#93ebf800' // 0% 处的颜色 + }, + { + offset: 1, + color: '#93ebf820' // 100% 处的颜色 + } + ], + globalCoord: false + }, + shadowColor: '#80D9F842', + shadowOffsetX: -2, + shadowOffsetY: 2, + shadowBlur: 10 + } + } + ] +} +export const MapDefaultConfig = { ...option } +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = MapBaseConfig.key + public attr = { ...chartInitConfig, w: 750, h: 800, zIndex: -1 } + public chartConfig = cloneDeep(MapBaseConfig) + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Maps/MapBase/config.vue b/src/packages/components/Charts/Maps/MapBase/config.vue new file mode 100644 index 0000000..b3ef496 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/config.vue @@ -0,0 +1,277 @@ + + + diff --git a/src/packages/components/Charts/Maps/MapBase/data.json b/src/packages/components/Charts/Maps/MapBase/data.json new file mode 100644 index 0000000..3deec4f --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/data.json @@ -0,0 +1,79 @@ +{ + "point": [ + { + "name": "北京", + "value": [116.405285, 39.904989, 200] + }, + { + "name": "郑州", + "value": [113.665412, 34.757975, 888] + }, + { + "name": "青海", + "value": [101.778916, 36.623178, 666] + }, + { + "name": "宁夏回族自治区", + "value": [106.278179, 38.46637, 66] + }, + { + "name": "哈尔滨市", + "value": [126.642464, 45.756967, 101] + } + ], + "map": [ + { + "name": "北京市", + "value": 666 + }, + { + "name": "河北省", + "value": 98 + }, + + { + "name": "江苏省", + "value": 300 + }, + { + "name": "福建省", + "value": 1199 + }, + { + "name": "山东省", + "value": 86 + }, + { + "name": "河南省", + "value": 850 + }, + { + "name": "湖北省", + "value": 84 + }, + { + "name": "广西壮族自治区", + "value": 81 + }, + { + "name": "海南省", + "value": 900 + }, + { + "name": "青海省", + "value": 800 + }, + { + "name": "新疆维吾尔自治区", + "value": 7 + } + ], + "pieces": [ + { "gte": 1000, "label": ">1000" }, + { "gte": 600, "lte": 999, "label": "600-999" }, + { "gte": 200, "lte": 599, "label": "200-599" }, + { "gte": 50, "lte": 199, "label": "49-199" }, + { "gte": 10, "lte": 49, "label": "10-49" }, + { "lte": 9, "label": "<9" } + ] +} diff --git a/src/packages/components/Charts/Maps/MapBase/index.ts b/src/packages/components/Charts/Maps/MapBase/index.ts new file mode 100644 index 0000000..c173ca8 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const MapBaseConfig: ConfigType = { + key: 'MapBase', + chartKey: 'VMapBase', + conKey: 'VCMapBase', + title: '地图(可选省份)', + category: ChatCategoryEnum.MAP, + categoryName: ChatCategoryEnumName.MAP, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'map.png' +} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/index.vue b/src/packages/components/Charts/Maps/MapBase/index.vue new file mode 100644 index 0000000..f927e64 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/index.vue @@ -0,0 +1,152 @@ + + + diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/110000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/110000.json new file mode 100644 index 0000000..5426515 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/110000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/120000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/120000.json new file mode 100644 index 0000000..29b4406 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/120000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.222503,39.117489],[117.21414,39.126438],[117.213257,39.132029],[117.209768,39.133528],[117.198962,39.130495],[117.19421,39.13467],[117.190355,39.136852],[117.181164,39.137091],[117.179806,39.121256],[117.17929,39.101991],[117.190056,39.10095],[117.196315,39.102315],[117.213271,39.113636],[117.222503,39.117489]]]]},"properties":{"adcode":120101,"name":"和平区","center":[117.195907,39.118327],"centroid":[117.196207,39.118993],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":0,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.260624,39.159004],[117.248718,39.158391],[117.249926,39.149548],[117.229548,39.149837],[117.220928,39.144811],[117.215212,39.151405],[117.213651,39.147963],[117.206401,39.145356],[117.20351,39.140686],[117.211112,39.135676],[117.209768,39.133528],[117.213257,39.132029],[117.21414,39.126438],[117.222503,39.117489],[117.230404,39.10835],[117.241346,39.098614],[117.245025,39.089252],[117.248555,39.086216],[117.260149,39.080912],[117.266977,39.079803],[117.267873,39.085295],[117.272326,39.090531],[117.278843,39.090599],[117.279942,39.086881],[117.286092,39.087154],[117.286269,39.089099],[117.298189,39.086472],[117.300103,39.082106],[117.301949,39.086267],[117.304814,39.085568],[117.306918,39.089371],[117.30966,39.10095],[117.275815,39.108061],[117.269869,39.12637],[117.271756,39.129319],[117.286649,39.131739],[117.279942,39.14735],[117.29341,39.150621],[117.290314,39.157147],[117.276834,39.162991],[117.260624,39.159004]]]]},"properties":{"adcode":120102,"name":"河东区","center":[117.226568,39.122125],"centroid":[117.256682,39.122406],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":1,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.26729,39.039453],[117.266502,39.041227],[117.272476,39.04278],[117.267697,39.050357],[117.278042,39.053548],[117.280458,39.048924],[117.286825,39.051023],[117.283092,39.058991],[117.288468,39.060202],[117.285997,39.070473],[117.292446,39.077432],[117.266977,39.079803],[117.260149,39.080912],[117.248555,39.086216],[117.245025,39.089252],[117.241346,39.098614],[117.230404,39.10835],[117.222503,39.117489],[117.213271,39.113636],[117.196315,39.102315],[117.190056,39.10095],[117.17929,39.101991],[117.179725,39.089337],[117.183458,39.072878],[117.188535,39.066924],[117.203876,39.071718],[117.21414,39.060185],[117.21118,39.058155],[117.21771,39.056227],[117.217724,39.034315],[117.234572,39.033377],[117.251908,39.036995],[117.26729,39.039453]]]]},"properties":{"adcode":120103,"name":"河西区","center":[117.217536,39.101897],"centroid":[117.232522,39.072613],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":2,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.188535,39.066924],[117.183458,39.072878],[117.179725,39.089337],[117.17929,39.101991],[117.179806,39.121256],[117.181164,39.137091],[117.190355,39.136852],[117.19421,39.13467],[117.194441,39.146992],[117.189024,39.145867],[117.171688,39.146464],[117.171837,39.141931],[117.159877,39.14159],[117.144115,39.144061],[117.144319,39.148577],[117.136757,39.146464],[117.128475,39.15224],[117.126412,39.147673],[117.120941,39.146498],[117.122122,39.142936],[117.113569,39.135898],[117.109768,39.1345],[117.129643,39.117165],[117.131761,39.114624],[117.133824,39.097165],[117.136825,39.091094],[117.121402,39.084528],[117.132399,39.079854],[117.159062,39.062369],[117.164357,39.063052],[117.171443,39.061448],[117.188535,39.066924]]]]},"properties":{"adcode":120104,"name":"南开区","center":[117.164143,39.120474],"centroid":[117.155049,39.108953],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":3,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.233485,39.193054],[117.223982,39.184965],[117.221946,39.184692],[117.216122,39.191283],[117.210773,39.192918],[117.197265,39.186106],[117.191916,39.19193],[117.188603,39.190227],[117.171783,39.18631],[117.167547,39.183994],[117.173086,39.181422],[117.177661,39.18195],[117.180051,39.168408],[117.176127,39.165018],[117.177172,39.162054],[117.186486,39.155103],[117.194441,39.146992],[117.19421,39.13467],[117.198962,39.130495],[117.209768,39.133528],[117.211112,39.135676],[117.20351,39.140686],[117.206401,39.145356],[117.213651,39.147963],[117.215212,39.151405],[117.220928,39.144811],[117.229548,39.149837],[117.249926,39.149548],[117.248718,39.158391],[117.260624,39.159004],[117.260529,39.167557],[117.258655,39.169959],[117.251704,39.168102],[117.250781,39.170913],[117.240952,39.170759],[117.249967,39.178458],[117.233485,39.193054]]]]},"properties":{"adcode":120105,"name":"河北区","center":[117.201569,39.156632],"centroid":[117.213791,39.167182],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":4,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.194441,39.146992],[117.186486,39.155103],[117.177172,39.162054],[117.176127,39.165018],[117.180051,39.168408],[117.177661,39.18195],[117.173086,39.181422],[117.167547,39.183994],[117.159293,39.190346],[117.148568,39.189103],[117.141766,39.19113],[117.134313,39.185356],[117.131136,39.178867],[117.129901,39.171901],[117.126317,39.158919],[117.128475,39.15224],[117.136757,39.146464],[117.144319,39.148577],[117.144115,39.144061],[117.159877,39.14159],[117.171837,39.141931],[117.171688,39.146464],[117.189024,39.145867],[117.194441,39.146992]]],[[[117.130362,39.18987],[117.140775,39.193224],[117.14121,39.197737],[117.132032,39.203458],[117.125611,39.200887],[117.12857,39.19566],[117.12595,39.194944],[117.130362,39.18987]]]]},"properties":{"adcode":120106,"name":"红桥区","center":[117.163301,39.175066],"centroid":[117.155648,39.164723],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":5,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.266977,39.079803],[117.292446,39.077432],[117.305167,39.076801],[117.313366,39.075095],[117.328775,39.068323],[117.33764,39.059503],[117.347863,39.053872],[117.358751,39.051603],[117.371431,39.052149],[117.380242,39.053633],[117.384803,39.05121],[117.388428,39.041944],[117.393193,39.033667],[117.398773,39.029007],[117.412349,39.022742],[117.420399,39.020745],[117.437519,39.020472],[117.448732,39.022794],[117.459485,39.02858],[117.464345,39.032847],[117.468214,39.03336],[117.471798,39.029075],[117.469897,39.018577],[117.475328,39.014155],[117.481695,39.013353],[117.489705,39.016511],[117.495447,39.015692],[117.502765,39.007531],[117.508928,38.996466],[117.511766,38.995305],[117.523441,39.004662],[117.526984,39.005994],[117.52488,39.015077],[117.526346,39.021257],[117.525396,39.026378],[117.521988,39.023767],[117.517386,39.026686],[117.520576,39.036824],[117.518825,39.037899],[117.523712,39.04674],[117.52712,39.046176],[117.530134,39.057865],[117.538062,39.056227],[117.559539,39.054913],[117.557815,39.065747],[117.563775,39.078507],[117.552874,39.078984],[117.553362,39.099706],[117.536189,39.099978],[117.535496,39.106543],[117.517467,39.106731],[117.503226,39.107907],[117.509688,39.1375],[117.514331,39.150144],[117.518092,39.15149],[117.540791,39.142732],[117.552629,39.14723],[117.553091,39.153927],[117.555752,39.159175],[117.566164,39.161747],[117.56706,39.173485],[117.568798,39.177505],[117.549833,39.181167],[117.54743,39.180315],[117.537166,39.182614],[117.517739,39.191385],[117.51368,39.192441],[117.513734,39.204769],[117.509906,39.207493],[117.510693,39.202556],[117.502249,39.199644],[117.502792,39.195387],[117.491361,39.198554],[117.501828,39.201364],[117.503634,39.208804],[117.493004,39.204837],[117.486704,39.204752],[117.482985,39.206778],[117.487275,39.211052],[117.488008,39.220449],[117.472803,39.229368],[117.46577,39.228994],[117.45681,39.23136],[117.451285,39.236431],[117.447755,39.231904],[117.442026,39.230594],[117.426101,39.231343],[117.425355,39.228517],[117.417508,39.223649],[117.408181,39.225964],[117.410258,39.236619],[117.403144,39.240312],[117.395745,39.239784],[117.384627,39.233589],[117.386405,39.230492],[117.368295,39.233436],[117.347985,39.234185],[117.333567,39.235819],[117.326793,39.234593],[117.324526,39.237929],[117.299261,39.244362],[117.290314,39.248514],[117.282997,39.244345],[117.283689,39.242013],[117.292473,39.243698],[117.295052,39.240363],[117.297903,39.223258],[117.291482,39.219342],[117.27253,39.215751],[117.259728,39.210933],[117.247007,39.20448],[117.233485,39.193054],[117.249967,39.178458],[117.240952,39.170759],[117.250781,39.170913],[117.251704,39.168102],[117.258655,39.169959],[117.260529,39.167557],[117.260624,39.159004],[117.276834,39.162991],[117.290314,39.157147],[117.29341,39.150621],[117.279942,39.14735],[117.286649,39.131739],[117.271756,39.129319],[117.269869,39.12637],[117.275815,39.108061],[117.30966,39.10095],[117.306918,39.089371],[117.304814,39.085568],[117.301949,39.086267],[117.300103,39.082106],[117.298189,39.086472],[117.286269,39.089099],[117.286092,39.087154],[117.279942,39.086881],[117.278843,39.090599],[117.272326,39.090531],[117.267873,39.085295],[117.266977,39.079803]]]]},"properties":{"adcode":120110,"name":"东丽区","center":[117.313967,39.087764],"centroid":[117.409531,39.133692],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":6,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.128475,39.15224],[117.126317,39.158919],[117.129901,39.171901],[117.123792,39.173894],[117.104093,39.176244],[117.085603,39.174115],[117.073805,39.169482],[117.074552,39.159822],[117.067492,39.159226],[117.066746,39.164729],[117.064397,39.165427],[117.047929,39.160027],[117.03844,39.159975],[117.031977,39.156687],[117.029344,39.171424],[117.025678,39.170998],[117.026479,39.164507],[117.0228,39.163451],[117.023547,39.157011],[117.026534,39.155273],[117.012958,39.15057],[117.011654,39.161798],[117.008002,39.160878],[117.004255,39.170674],[116.993503,39.168528],[116.992309,39.171424],[116.973384,39.167659],[116.96798,39.168408],[116.967261,39.1742],[116.962401,39.177113],[116.958016,39.168902],[116.953821,39.170367],[116.949056,39.166143],[116.946503,39.159328],[116.940475,39.160759],[116.941562,39.163281],[116.928203,39.160487],[116.928854,39.156176],[116.938548,39.154302],[116.93833,39.150655],[116.923153,39.149411],[116.928352,39.135318],[116.923071,39.13421],[116.922162,39.131211],[116.926112,39.119636],[116.923696,39.118614],[116.919283,39.109237],[116.911097,39.111044],[116.909549,39.103065],[116.906047,39.103099],[116.901893,39.090974],[116.896707,39.091674],[116.894195,39.084323],[116.890638,39.084852],[116.886606,39.077279],[116.882818,39.077944],[116.881474,39.071718],[116.898186,39.066668],[116.897182,39.062761],[116.886769,39.0594],[116.888995,39.055067],[116.90101,39.061328],[116.905002,39.057421],[116.908667,39.061175],[116.921659,39.060117],[116.934706,39.054435],[116.940924,39.050101],[116.94558,39.057046],[116.948974,39.054282],[116.962387,39.050767],[116.960581,39.046688],[116.968388,39.045494],[116.970315,39.038838],[116.990218,39.036636],[117.015795,39.030304],[117.038209,39.021206],[117.033335,39.01559],[117.040517,39.012738],[117.037571,39.010468],[117.035317,38.997388],[117.057147,38.995868],[117.057975,39.000872],[117.063066,39.005021],[117.078611,38.993973],[117.108655,38.981813],[117.122529,38.975031],[117.13696,38.963603],[117.158736,38.936176],[117.168077,38.925203],[117.179005,38.910363],[117.193966,38.894854],[117.248799,38.851729],[117.258886,38.847365],[117.30423,38.833417],[117.312905,38.831072],[117.326929,38.823728],[117.331504,38.824687],[117.335998,38.828744],[117.33016,38.830182],[117.331314,38.832732],[117.327377,38.836737],[117.339256,38.843532],[117.336147,38.850035],[117.344523,38.851763],[117.342147,38.86102],[117.337912,38.861054],[117.337477,38.864921],[117.341089,38.865023],[117.336038,38.869249],[117.334002,38.876468],[117.32978,38.875493],[117.328639,38.883772],[117.324295,38.88709],[117.308018,38.885961],[117.269516,38.919869],[117.272489,38.92375],[117.261289,38.929305],[117.266041,38.94332],[117.245473,38.952992],[117.246573,38.954],[117.260379,38.952069],[117.268905,38.963603],[117.269951,38.967464],[117.273765,38.970265],[117.268566,38.972981],[117.273507,38.978516],[117.282305,38.972828],[117.284735,38.968899],[117.285916,38.980702],[117.292392,38.988269],[117.289799,38.99165],[117.294034,38.994126],[117.288536,38.996227],[117.295107,38.998174],[117.29121,39.002835],[117.28297,38.999403],[117.277607,39.002631],[117.274485,39.014855],[117.266611,39.02054],[117.262457,39.018936],[117.256904,39.020762],[117.259198,39.022742],[117.265253,39.020694],[117.262932,39.025952],[117.263719,39.033598],[117.26729,39.039453],[117.251908,39.036995],[117.234572,39.033377],[117.217724,39.034315],[117.21771,39.056227],[117.21118,39.058155],[117.21414,39.060185],[117.203876,39.071718],[117.188535,39.066924],[117.171443,39.061448],[117.164357,39.063052],[117.159062,39.062369],[117.132399,39.079854],[117.121402,39.084528],[117.136825,39.091094],[117.133824,39.097165],[117.131761,39.114624],[117.129643,39.117165],[117.109768,39.1345],[117.113569,39.135898],[117.122122,39.142936],[117.120941,39.146498],[117.126412,39.147673],[117.128475,39.15224]]]]},"properties":{"adcode":120111,"name":"西青区","center":[117.012247,39.139446],"centroid":[117.118438,39.028602],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":7,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.26729,39.039453],[117.263719,39.033598],[117.262932,39.025952],[117.265253,39.020694],[117.259198,39.022742],[117.256904,39.020762],[117.262457,39.018936],[117.266611,39.02054],[117.274485,39.014855],[117.277607,39.002631],[117.28297,38.999403],[117.29121,39.002835],[117.295107,38.998174],[117.288536,38.996227],[117.294034,38.994126],[117.289799,38.99165],[117.292392,38.988269],[117.285916,38.980702],[117.284735,38.968899],[117.282305,38.972828],[117.273507,38.978516],[117.268566,38.972981],[117.273765,38.970265],[117.269951,38.967464],[117.268905,38.963603],[117.260379,38.952069],[117.246573,38.954],[117.245473,38.952992],[117.266041,38.94332],[117.261289,38.929305],[117.272489,38.92375],[117.269516,38.919869],[117.308018,38.885961],[117.324295,38.88709],[117.328639,38.883772],[117.32978,38.875493],[117.334002,38.876468],[117.336038,38.869249],[117.341089,38.865023],[117.337477,38.864921],[117.337912,38.861054],[117.342147,38.86102],[117.344523,38.851763],[117.336147,38.850035],[117.339256,38.843532],[117.362946,38.857529],[117.387803,38.87279],[117.407529,38.887278],[117.437464,38.858607],[117.440587,38.869745],[117.448284,38.879444],[117.464494,38.89075],[117.486881,38.905473],[117.503294,38.907765],[117.497063,38.94279],[117.511508,38.947456],[117.512865,38.945183],[117.52169,38.952035],[117.529251,38.95318],[117.543615,38.943047],[117.550987,38.943029],[117.548679,38.958716],[117.550308,38.959109],[117.549357,38.968164],[117.555168,38.981317],[117.556974,38.981591],[117.560164,38.988884],[117.558005,38.991975],[117.549697,38.991497],[117.53999,39.001111],[117.531152,39.005841],[117.526984,39.005994],[117.523441,39.004662],[117.511766,38.995305],[117.508928,38.996466],[117.502765,39.007531],[117.495447,39.015692],[117.489705,39.016511],[117.481695,39.013353],[117.475328,39.014155],[117.469897,39.018577],[117.471798,39.029075],[117.468214,39.03336],[117.464345,39.032847],[117.459485,39.02858],[117.448732,39.022794],[117.437519,39.020472],[117.420399,39.020745],[117.412349,39.022742],[117.398773,39.029007],[117.393193,39.033667],[117.388428,39.041944],[117.384803,39.05121],[117.380242,39.053633],[117.371431,39.052149],[117.358751,39.051603],[117.347863,39.053872],[117.33764,39.059503],[117.328775,39.068323],[117.313366,39.075095],[117.305167,39.076801],[117.292446,39.077432],[117.285997,39.070473],[117.288468,39.060202],[117.283092,39.058991],[117.286825,39.051023],[117.280458,39.048924],[117.278042,39.053548],[117.267697,39.050357],[117.272476,39.04278],[117.266502,39.041227],[117.26729,39.039453]]]]},"properties":{"adcode":120112,"name":"津南区","center":[117.382549,38.989577],"centroid":[117.387949,38.963139],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":8,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.949056,39.166143],[116.940815,39.171287],[116.94444,39.173894],[116.940421,39.174439],[116.938928,39.180826],[116.941399,39.188592],[116.957839,39.189665],[116.964614,39.187775],[116.964328,39.192254],[116.967207,39.207919],[116.971198,39.208873],[116.968143,39.213844],[116.97208,39.216551],[116.967695,39.229419],[116.977334,39.231989],[116.979954,39.230764],[116.98939,39.239563],[116.990096,39.2454],[116.996178,39.24329],[117.005817,39.243017],[117.010772,39.248803],[117.011505,39.256698],[117.023004,39.256902],[117.025393,39.262618],[117.024131,39.270648],[117.017641,39.268232],[117.01684,39.272553],[117.019651,39.273029],[117.015795,39.280921],[117.017709,39.281007],[117.016637,39.287775],[117.037245,39.292197],[117.035371,39.289],[117.04835,39.291228],[117.05359,39.281092],[117.06422,39.281296],[117.075611,39.283081],[117.071036,39.284578],[117.069854,39.28769],[117.076575,39.289782],[117.075095,39.293897],[117.088847,39.299747],[117.079602,39.307823],[117.10507,39.312855],[117.11999,39.310764],[117.127254,39.311631],[117.134544,39.305902],[117.140653,39.304967],[117.146708,39.30614],[117.146233,39.308044],[117.153048,39.310203],[117.157664,39.315915],[117.155505,39.323242],[117.160026,39.324397],[117.1608,39.319145],[117.165321,39.32178],[117.164438,39.327559],[117.159659,39.326709],[117.160623,39.329938],[117.167506,39.332097],[117.168199,39.329021],[117.172529,39.329123],[117.172991,39.326233],[117.179711,39.326777],[117.184218,39.333626],[117.192663,39.333558],[117.191386,39.343772],[117.195758,39.345471],[117.195432,39.349413],[117.199315,39.346236],[117.204908,39.346321],[117.204935,39.35011],[117.222679,39.356141],[117.233689,39.353355],[117.233065,39.355445],[117.238563,39.357501],[117.250944,39.353814],[117.254515,39.348513],[117.263665,39.348071],[117.265104,39.344859],[117.268742,39.34542],[117.269407,39.351299],[117.274254,39.352166],[117.279549,39.347731],[117.285522,39.348852],[117.292052,39.347595],[117.296356,39.337263],[117.304827,39.336923],[117.306171,39.331961],[117.301908,39.32987],[117.303985,39.326437],[117.316747,39.328817],[117.317928,39.325281],[117.3242,39.329649],[117.331952,39.320828],[117.334708,39.323429],[117.339079,39.318941],[117.338305,39.313569],[117.332495,39.309642],[117.337722,39.306004],[117.343139,39.31039],[117.352167,39.302739],[117.36243,39.296023],[117.356199,39.2932],[117.364629,39.287367],[117.369041,39.291602],[117.384056,39.280054],[117.397239,39.284051],[117.401515,39.287622],[117.405452,39.282554],[117.407108,39.274475],[117.400402,39.259148],[117.393994,39.257276],[117.393913,39.248054],[117.399913,39.246387],[117.403144,39.240312],[117.395745,39.239784],[117.384627,39.233589],[117.386405,39.230492],[117.368295,39.233436],[117.347985,39.234185],[117.333567,39.235819],[117.326793,39.234593],[117.324526,39.237929],[117.299261,39.244362],[117.290314,39.248514],[117.282997,39.244345],[117.283689,39.242013],[117.292473,39.243698],[117.295052,39.240363],[117.297903,39.223258],[117.291482,39.219342],[117.27253,39.215751],[117.259728,39.210933],[117.247007,39.20448],[117.233485,39.193054],[117.223982,39.184965],[117.221946,39.184692],[117.216122,39.191283],[117.210773,39.192918],[117.197265,39.186106],[117.191916,39.19193],[117.188603,39.190227],[117.171783,39.18631],[117.167547,39.183994],[117.159293,39.190346],[117.148568,39.189103],[117.141766,39.19113],[117.134313,39.185356],[117.131136,39.178867],[117.129901,39.171901],[117.123792,39.173894],[117.104093,39.176244],[117.085603,39.174115],[117.073805,39.169482],[117.074552,39.159822],[117.067492,39.159226],[117.066746,39.164729],[117.064397,39.165427],[117.047929,39.160027],[117.03844,39.159975],[117.031977,39.156687],[117.029344,39.171424],[117.025678,39.170998],[117.026479,39.164507],[117.0228,39.163451],[117.023547,39.157011],[117.026534,39.155273],[117.012958,39.15057],[117.011654,39.161798],[117.008002,39.160878],[117.004255,39.170674],[116.993503,39.168528],[116.992309,39.171424],[116.973384,39.167659],[116.96798,39.168408],[116.967261,39.1742],[116.962401,39.177113],[116.958016,39.168902],[116.953821,39.170367],[116.949056,39.166143]],[[117.130362,39.18987],[117.140775,39.193224],[117.14121,39.197737],[117.132032,39.203458],[117.125611,39.200887],[117.12857,39.19566],[117.12595,39.194944],[117.130362,39.18987]]]},"properties":{"adcode":120113,"name":"北辰区","center":[117.13482,39.225555],"centroid":[117.173477,39.253486],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":9,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.3242,39.329649],[117.328015,39.339914],[117.322775,39.348717],[117.328504,39.350076],[117.320752,39.350552],[117.316312,39.355819],[117.316625,39.362665],[117.314928,39.366386],[117.303089,39.368917],[117.299519,39.379023],[117.305628,39.380568],[117.309253,39.386411],[117.313461,39.38945],[117.307922,39.399825],[117.313326,39.402508],[117.313041,39.40609],[117.320331,39.401727],[117.31896,39.394273],[117.325083,39.397499],[117.324241,39.401303],[117.332386,39.395105],[117.340179,39.400997],[117.337179,39.403951],[117.334463,39.418517],[117.329888,39.422777],[117.325626,39.43218],[117.325463,39.43666],[117.322286,39.441819],[117.327241,39.443804],[117.325327,39.446248],[117.320725,39.444687],[117.318865,39.448012],[117.310312,39.456071],[117.307502,39.460991],[117.304406,39.461941],[117.299519,39.46988],[117.293532,39.473136],[117.295161,39.477411],[117.299505,39.478377],[117.298189,39.483465],[117.295188,39.484856],[117.294509,39.491452],[117.288699,39.495827],[117.282359,39.49564],[117.278816,39.499506],[117.271865,39.498506],[117.270276,39.500863],[117.265552,39.50049],[117.266312,39.508339],[117.272028,39.51078],[117.270426,39.515713],[117.26357,39.522612],[117.255139,39.523646],[117.254392,39.527052],[117.261927,39.527866],[117.265647,39.526256],[117.275938,39.527612],[117.274879,39.532781],[117.254067,39.545422],[117.245527,39.545049],[117.245229,39.541389],[117.241848,39.546387],[117.233092,39.547878],[117.238712,39.553469],[117.227661,39.559771],[117.212212,39.571171],[117.200143,39.578945],[117.188983,39.587107],[117.173833,39.596539],[117.165606,39.602769],[117.146708,39.614348],[117.149681,39.616616],[117.147875,39.622608],[117.140083,39.620949],[117.136078,39.618072],[117.125109,39.621914],[117.127064,39.616971],[117.112659,39.621372],[117.112374,39.624402],[117.103278,39.625163],[117.10093,39.629648],[117.088277,39.633489],[117.078597,39.637906],[117.057066,39.644572],[117.04087,39.647956],[117.033131,39.65068],[117.015768,39.654063],[117.00788,39.648582],[117.004405,39.644505],[116.989919,39.641493],[116.977036,39.636366],[116.974565,39.636789],[116.975352,39.644843],[116.971388,39.648887],[116.964369,39.643591],[116.957744,39.651069],[116.955341,39.658665],[116.957513,39.666243],[116.945689,39.670792],[116.945471,39.67661],[116.951458,39.678149],[116.944141,39.686807],[116.944575,39.695143],[116.948377,39.702818],[116.952667,39.699657],[116.950848,39.706825],[116.937679,39.706402],[116.934828,39.703545],[116.932425,39.706672],[116.916921,39.706385],[116.916867,39.699352],[116.911287,39.695379],[116.91259,39.689225],[116.905952,39.687923],[116.90902,39.682867],[116.905205,39.68165],[116.906658,39.677422],[116.891154,39.674073],[116.883226,39.675359],[116.873166,39.671384],[116.863826,39.670336],[116.860486,39.667258],[116.849951,39.667545],[116.851404,39.652845],[116.839145,39.647533],[116.84076,39.644251],[116.833565,39.644116],[116.834556,39.641848],[116.826899,39.63821],[116.828922,39.635148],[116.82637,39.633134],[116.838439,39.622218],[116.834121,39.621491],[116.835398,39.617005],[116.825039,39.613874],[116.82398,39.617175],[116.819527,39.619002],[116.812386,39.615922],[116.81574,39.606561],[116.81206,39.60453],[116.813948,39.600145],[116.808164,39.60045],[116.807255,39.60458],[116.80982,39.608677],[116.799869,39.604005],[116.805232,39.603378],[116.803671,39.601381],[116.8083,39.597402],[116.804485,39.597893],[116.797901,39.594371],[116.800277,39.586091],[116.81164,39.576963],[116.808463,39.576489],[116.807227,39.571476],[116.796883,39.567885],[116.798104,39.566716],[116.791561,39.559754],[116.792375,39.556231],[116.78909,39.555756],[116.787502,39.548742],[116.795267,39.54576],[116.798471,39.536458],[116.801919,39.536712],[116.803019,39.530374],[116.806209,39.528849],[116.815672,39.529578],[116.819609,39.52851],[116.818373,39.533001],[116.821998,39.534458],[116.825636,39.527171],[116.823098,39.52734],[116.825677,39.512306],[116.813988,39.510289],[116.816405,39.501609],[116.811015,39.500829],[116.817274,39.496573],[116.820722,39.482397],[116.810716,39.480311],[116.811232,39.477546],[116.798498,39.475579],[116.799109,39.473408],[116.788859,39.472017],[116.785099,39.465894],[116.790149,39.465385],[116.791629,39.460838],[116.794425,39.461195],[116.79805,39.457344],[116.797969,39.450625],[116.792335,39.453883],[116.795973,39.446842],[116.799883,39.449641],[116.807431,39.44562],[116.810323,39.450795],[116.81574,39.451728],[116.826763,39.445671],[116.827075,39.438612],[116.832506,39.435489],[116.840244,39.439647],[116.847263,39.438663],[116.847181,39.441395],[116.855504,39.443346],[116.862848,39.43683],[116.868903,39.43722],[116.875881,39.434556],[116.87098,39.427377],[116.864314,39.430517],[116.864599,39.425204],[116.860771,39.424237],[116.852517,39.416853],[116.85196,39.413849],[116.844303,39.412542],[116.840081,39.413645],[116.838153,39.410436],[116.839226,39.40463],[116.834108,39.402678],[116.835099,39.397041],[116.839728,39.394035],[116.837923,39.391115],[116.841167,39.381519],[116.836959,39.377885],[116.837597,39.374097],[116.823749,39.372942],[116.818143,39.37352],[116.820627,39.366623],[116.826872,39.363617],[116.834922,39.365961],[116.83351,39.360423],[116.823138,39.357891],[116.829193,39.338861],[116.842932,39.340713],[116.847127,39.343755],[116.849164,39.339473],[116.857757,39.347612],[116.861586,39.349549],[116.860242,39.354188],[116.870749,39.357484],[116.874605,39.356328],[116.876071,39.352675],[116.872664,39.352777],[116.870967,39.346881],[116.872378,39.34124],[116.875772,39.339184],[116.881597,39.340662],[116.889606,39.338164],[116.889851,39.332692],[116.887068,39.332182],[116.88943,39.323106],[116.887081,39.314334],[116.882085,39.313722],[116.884217,39.305392],[116.867939,39.302518],[116.866907,39.298029],[116.862549,39.297485],[116.863215,39.292673],[116.86688,39.290768],[116.872392,39.291279],[116.874754,39.283166],[116.876329,39.270342],[116.871645,39.269287],[116.878759,39.255371],[116.875772,39.253839],[116.876628,39.240924],[116.882425,39.238661],[116.884923,39.24055],[116.8859,39.232738],[116.891941,39.231155],[116.890502,39.22753],[116.892634,39.223939],[116.887855,39.224449],[116.884651,39.221232],[116.883551,39.226202],[116.880307,39.225624],[116.879397,39.230049],[116.874591,39.230066],[116.875623,39.216483],[116.871659,39.217691],[116.855789,39.215682],[116.857051,39.205382],[116.860771,39.205604],[116.863174,39.201364],[116.863201,39.185816],[116.864328,39.182052],[116.863106,39.174967],[116.865713,39.173468],[116.865808,39.157522],[116.870071,39.153654],[116.893964,39.154728],[116.909251,39.150758],[116.914002,39.146157],[116.91536,39.138266],[116.918998,39.138573],[116.923804,39.124],[116.918455,39.12354],[116.919786,39.119943],[116.926112,39.119636],[116.922162,39.131211],[116.923071,39.13421],[116.928352,39.135318],[116.923153,39.149411],[116.93833,39.150655],[116.938548,39.154302],[116.928854,39.156176],[116.928203,39.160487],[116.941562,39.163281],[116.940475,39.160759],[116.946503,39.159328],[116.949056,39.166143],[116.940815,39.171287],[116.94444,39.173894],[116.940421,39.174439],[116.938928,39.180826],[116.941399,39.188592],[116.957839,39.189665],[116.964614,39.187775],[116.964328,39.192254],[116.967207,39.207919],[116.971198,39.208873],[116.968143,39.213844],[116.97208,39.216551],[116.967695,39.229419],[116.977334,39.231989],[116.979954,39.230764],[116.98939,39.239563],[116.990096,39.2454],[116.996178,39.24329],[117.005817,39.243017],[117.010772,39.248803],[117.011505,39.256698],[117.023004,39.256902],[117.025393,39.262618],[117.024131,39.270648],[117.017641,39.268232],[117.01684,39.272553],[117.019651,39.273029],[117.015795,39.280921],[117.017709,39.281007],[117.016637,39.287775],[117.037245,39.292197],[117.035371,39.289],[117.04835,39.291228],[117.05359,39.281092],[117.06422,39.281296],[117.075611,39.283081],[117.071036,39.284578],[117.069854,39.28769],[117.076575,39.289782],[117.075095,39.293897],[117.088847,39.299747],[117.079602,39.307823],[117.10507,39.312855],[117.11999,39.310764],[117.127254,39.311631],[117.134544,39.305902],[117.140653,39.304967],[117.146708,39.30614],[117.146233,39.308044],[117.153048,39.310203],[117.157664,39.315915],[117.155505,39.323242],[117.160026,39.324397],[117.1608,39.319145],[117.165321,39.32178],[117.164438,39.327559],[117.159659,39.326709],[117.160623,39.329938],[117.167506,39.332097],[117.168199,39.329021],[117.172529,39.329123],[117.172991,39.326233],[117.179711,39.326777],[117.184218,39.333626],[117.192663,39.333558],[117.191386,39.343772],[117.195758,39.345471],[117.195432,39.349413],[117.199315,39.346236],[117.204908,39.346321],[117.204935,39.35011],[117.222679,39.356141],[117.233689,39.353355],[117.233065,39.355445],[117.238563,39.357501],[117.250944,39.353814],[117.254515,39.348513],[117.263665,39.348071],[117.265104,39.344859],[117.268742,39.34542],[117.269407,39.351299],[117.274254,39.352166],[117.279549,39.347731],[117.285522,39.348852],[117.292052,39.347595],[117.296356,39.337263],[117.304827,39.336923],[117.306171,39.331961],[117.301908,39.32987],[117.303985,39.326437],[117.316747,39.328817],[117.317928,39.325281],[117.3242,39.329649]]]]},"properties":{"adcode":120114,"name":"武清区","center":[117.057959,39.376925],"centroid":[117.0282,39.451188],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":10,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.25723,39.829794],[117.237382,39.833911],[117.226236,39.830958],[117.22067,39.827195],[117.220113,39.830637],[117.21247,39.832308],[117.208438,39.831397],[117.207352,39.834991],[117.200672,39.832595],[117.199858,39.834586],[117.19216,39.833084],[117.195079,39.825491],[117.190531,39.826368],[117.167153,39.823736],[117.167194,39.819213],[117.162524,39.817829],[117.159089,39.821862],[117.156333,39.817491],[117.161669,39.807027],[117.157148,39.806757],[117.157501,39.79673],[117.167764,39.799667],[117.178734,39.795345],[117.180621,39.782463],[117.192242,39.775793],[117.205899,39.763852],[117.201745,39.7599],[117.194957,39.759832],[117.192825,39.754984],[117.186934,39.755795],[117.184734,39.75191],[117.173072,39.751876],[117.161872,39.748126],[117.166122,39.738022],[117.160365,39.739019],[117.160501,39.736468],[117.15374,39.736316],[117.155288,39.729236],[117.153184,39.722729],[117.158858,39.723389],[117.160705,39.720803],[117.166312,39.722189],[117.169203,39.717592],[117.163569,39.715817],[117.164289,39.711828],[117.169149,39.713535],[117.170697,39.708295],[117.168294,39.70816],[117.170357,39.689259],[117.16771,39.686875],[117.170113,39.673363],[117.166135,39.672974],[117.164655,39.666699],[117.159605,39.666852],[117.158899,39.661236],[117.163461,39.6588],[117.164017,39.651746],[117.169258,39.651797],[117.169068,39.648159],[117.177675,39.645621],[117.177892,39.642965],[117.173005,39.641205],[117.172828,39.636755],[117.157949,39.636603],[117.154989,39.631374],[117.150278,39.628633],[117.154161,39.626043],[117.147875,39.622608],[117.149681,39.616616],[117.146708,39.614348],[117.165606,39.602769],[117.173833,39.596539],[117.188983,39.587107],[117.200143,39.578945],[117.212212,39.571171],[117.227661,39.559771],[117.238712,39.553469],[117.233092,39.547878],[117.241848,39.546387],[117.245229,39.541389],[117.245527,39.545049],[117.254067,39.545422],[117.274879,39.532781],[117.275938,39.527612],[117.265647,39.526256],[117.261927,39.527866],[117.254392,39.527052],[117.255139,39.523646],[117.26357,39.522612],[117.270426,39.515713],[117.272028,39.51078],[117.266312,39.508339],[117.265552,39.50049],[117.270276,39.500863],[117.271865,39.498506],[117.278816,39.499506],[117.282359,39.49564],[117.288699,39.495827],[117.294509,39.491452],[117.295188,39.484856],[117.298189,39.483465],[117.299505,39.478377],[117.295161,39.477411],[117.293532,39.473136],[117.299519,39.46988],[117.304406,39.461941],[117.307502,39.460991],[117.310312,39.456071],[117.318865,39.448012],[117.320725,39.444687],[117.325327,39.446248],[117.327241,39.443804],[117.322286,39.441819],[117.325463,39.43666],[117.325626,39.43218],[117.329888,39.422777],[117.334463,39.418517],[117.337179,39.403951],[117.340179,39.400997],[117.332386,39.395105],[117.324241,39.401303],[117.325083,39.397499],[117.31896,39.394273],[117.320331,39.401727],[117.313041,39.40609],[117.313326,39.402508],[117.307922,39.399825],[117.313461,39.38945],[117.309253,39.386411],[117.305628,39.380568],[117.299519,39.379023],[117.303089,39.368917],[117.314928,39.366386],[117.316625,39.362665],[117.316312,39.355819],[117.320752,39.350552],[117.328504,39.350076],[117.330214,39.353593],[117.335088,39.353831],[117.337708,39.359267],[117.350483,39.361493],[117.370589,39.35976],[117.382427,39.360304],[117.38445,39.362665],[117.3895,39.36044],[117.389487,39.354408],[117.392555,39.352658],[117.415716,39.350535],[117.415186,39.346525],[117.433894,39.347119],[117.436514,39.352319],[117.43312,39.355377],[117.432903,39.360049],[117.43855,39.35784],[117.441727,39.361646],[117.448855,39.35886],[117.454801,39.361969],[117.46163,39.362444],[117.46539,39.35959],[117.47321,39.362071],[117.47135,39.36523],[117.477418,39.366572],[117.486093,39.372297],[117.483867,39.375065],[117.485645,39.379532],[117.508032,39.383608],[117.505874,39.386139],[117.501081,39.384865],[117.497619,39.392337],[117.497891,39.395513],[117.494986,39.40497],[117.496995,39.405394],[117.494986,39.414647],[117.491225,39.413679],[117.483256,39.445654],[117.483392,39.449064],[117.489148,39.448623],[117.492461,39.451847],[117.499344,39.454426],[117.496995,39.459397],[117.502928,39.462009],[117.509512,39.456326],[117.519287,39.45921],[117.517983,39.46318],[117.523156,39.463638],[117.524378,39.466403],[117.541334,39.464384],[117.55138,39.46776],[117.557055,39.471627],[117.564943,39.480769],[117.562227,39.485704],[117.5581,39.486585],[117.555887,39.494555],[117.567223,39.497692],[117.567549,39.493962],[117.572396,39.494928],[117.572857,39.49096],[117.577405,39.491774],[117.580188,39.485093],[117.59667,39.48745],[117.607503,39.48974],[117.605752,39.494199],[117.608902,39.499744],[117.610626,39.511899],[117.63065,39.516001],[117.637099,39.522069],[117.633365,39.534797],[117.634153,39.53717],[117.658291,39.531137],[117.659811,39.527612],[117.667672,39.530255],[117.668446,39.53234],[117.676646,39.533187],[117.681112,39.536593],[117.687941,39.534899],[117.690751,39.537542],[117.690398,39.547455],[117.69462,39.551097],[117.700879,39.551741],[117.708712,39.548217],[117.708441,39.555079],[117.703689,39.557501],[117.695774,39.557315],[117.689597,39.559517],[117.685674,39.56443],[117.688796,39.569223],[117.697295,39.564785],[117.704069,39.565378],[117.70825,39.568732],[117.708576,39.573796],[117.705861,39.576489],[117.693602,39.581045],[117.685877,39.588191],[117.681642,39.589986],[117.673795,39.589021],[117.67165,39.582044],[117.660816,39.575388],[117.655657,39.574914],[117.650702,39.579233],[117.655711,39.585329],[117.655779,39.588174],[117.651014,39.594168],[117.63938,39.593118],[117.637153,39.59769],[117.636827,39.6037],[117.632198,39.602346],[117.62651,39.594287],[117.621935,39.591679],[117.619056,39.603209],[117.620034,39.606476],[117.6245,39.602684],[117.630324,39.606121],[117.632144,39.613738],[117.641348,39.612841],[117.640113,39.619713],[117.64462,39.623691],[117.641986,39.628413],[117.643805,39.629699],[117.650892,39.627939],[117.652928,39.630003],[117.651503,39.634843],[117.6532,39.639158],[117.661997,39.636332],[117.666477,39.642914],[117.665337,39.64618],[117.66774,39.651526],[117.663586,39.657751],[117.667536,39.661574],[117.668324,39.667088],[117.663857,39.665854],[117.657028,39.668644],[117.660205,39.674462],[117.653214,39.678217],[117.657436,39.682816],[117.650797,39.68192],[117.649915,39.685404],[117.643968,39.688684],[117.648978,39.694838],[117.646969,39.69964],[117.642597,39.70133],[117.636909,39.696783],[117.634479,39.700959],[117.627134,39.703646],[117.620957,39.702953],[117.614902,39.705979],[117.602439,39.705371],[117.59352,39.710746],[117.592339,39.716747],[117.588443,39.719485],[117.580053,39.719451],[117.585171,39.722087],[117.578166,39.72327],[117.577623,39.726938],[117.583447,39.727326],[117.584003,39.731669],[117.587845,39.730841],[117.589936,39.737938],[117.593411,39.735201],[117.59743,39.736586],[117.591524,39.743024],[117.595896,39.746132],[117.581424,39.748937],[117.575016,39.752113],[117.573536,39.754917],[117.56759,39.756792],[117.559824,39.755542],[117.555453,39.762552],[117.548774,39.756809],[117.543316,39.760626],[117.539162,39.76044],[117.531912,39.761386],[117.533053,39.766251],[117.529346,39.765812],[117.52378,39.768598],[117.519938,39.764663],[117.516151,39.769071],[117.511576,39.765727],[117.50719,39.767197],[117.503525,39.773884],[117.492257,39.771419],[117.489881,39.77863],[117.483378,39.774948],[117.47021,39.777802],[117.47302,39.774357],[117.464141,39.768717],[117.460394,39.769122],[117.463544,39.775354],[117.457272,39.772922],[117.454597,39.768345],[117.449289,39.768885],[117.439935,39.764444],[117.437193,39.755542],[117.431233,39.755897],[117.426753,39.758295],[117.415648,39.760288],[117.412322,39.76267],[117.412417,39.768176],[117.407299,39.772246],[117.399099,39.770861],[117.392514,39.777177],[117.392786,39.782125],[117.388795,39.782361],[117.389908,39.785485],[117.382875,39.787545],[117.375544,39.78763],[117.374757,39.790601],[117.366258,39.790854],[117.366204,39.794062],[117.356185,39.792847],[117.349126,39.794721],[117.34565,39.797557],[117.342799,39.795447],[117.340125,39.7983],[117.334151,39.796763],[117.329305,39.79158],[117.322897,39.794028],[117.319191,39.800477],[117.319625,39.804596],[117.313557,39.807162],[117.306063,39.808073],[117.301827,39.805187],[117.295921,39.810977],[117.289609,39.813762],[117.285631,39.813103],[117.286147,39.819432],[117.27796,39.825373],[117.273345,39.824866],[117.268824,39.828342],[117.26619,39.826756],[117.25723,39.829794]]]]},"properties":{"adcode":120115,"name":"宝坻区","center":[117.308094,39.716965],"centroid":[117.405517,39.60949],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":11,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.526984,39.005994],[117.531152,39.005841],[117.53999,39.001111],[117.549697,38.991497],[117.558005,38.991975],[117.560164,38.988884],[117.556974,38.981591],[117.555168,38.981317],[117.549357,38.968164],[117.550308,38.959109],[117.548679,38.958716],[117.550987,38.943029],[117.543615,38.943047],[117.529251,38.95318],[117.52169,38.952035],[117.512865,38.945183],[117.511508,38.947456],[117.497063,38.94279],[117.503294,38.907765],[117.486881,38.905473],[117.464494,38.89075],[117.448284,38.879444],[117.440587,38.869745],[117.437464,38.858607],[117.407529,38.887278],[117.387803,38.87279],[117.362946,38.857529],[117.339256,38.843532],[117.327377,38.836737],[117.331314,38.832732],[117.33016,38.830182],[117.335998,38.828744],[117.331504,38.824687],[117.326929,38.823728],[117.312905,38.831072],[117.30423,38.833417],[117.258886,38.847365],[117.256388,38.843121],[117.247238,38.834803],[117.223154,38.811607],[117.207501,38.82027],[117.196735,38.809656],[117.204786,38.805187],[117.195201,38.795922],[117.21361,38.785287],[117.215905,38.783043],[117.193654,38.770744],[117.164411,38.755873],[117.161886,38.75834],[117.155057,38.759471],[117.15408,38.751092],[117.134734,38.741512],[117.137028,38.741152],[117.137164,38.733714],[117.141698,38.735736],[117.146355,38.733011],[117.146477,38.729069],[117.155994,38.726652],[117.160216,38.731366],[117.176792,38.733268],[117.17705,38.731246],[117.160488,38.729566],[117.157813,38.71508],[117.159048,38.705702],[117.158709,38.698054],[117.154555,38.690251],[117.149382,38.69164],[117.148323,38.687764],[117.149858,38.681812],[117.14736,38.681623],[117.148025,38.676134],[117.153822,38.676683],[117.153862,38.671554],[117.15875,38.670027],[117.161098,38.665687],[117.16065,38.660505],[117.157107,38.658772],[117.162347,38.657966],[117.163013,38.648391],[117.156442,38.632739],[117.157609,38.627607],[117.156428,38.621204],[117.15112,38.617719],[117.165334,38.617238],[117.167113,38.615126],[117.176602,38.618234],[117.183852,38.618182],[117.186092,38.616534],[117.189309,38.621358],[117.200238,38.62189],[117.203795,38.626439],[117.203225,38.629684],[117.210284,38.630044],[117.212972,38.63969],[117.216909,38.642917],[117.225109,38.643861],[117.230336,38.641698],[117.229671,38.635657],[117.225055,38.630782],[117.236608,38.631211],[117.230689,38.624002],[117.235115,38.62395],[117.237246,38.619212],[117.246532,38.618663],[117.255967,38.613804],[117.25894,38.608327],[117.259538,38.603056],[117.255126,38.602455],[117.256673,38.598351],[117.245351,38.595311],[117.237816,38.585264],[117.238359,38.581039],[117.261303,38.586724],[117.262348,38.583735],[117.24231,38.578737],[117.239432,38.57872],[117.245079,38.566935],[117.246491,38.566867],[117.253184,38.55618],[117.263543,38.562279],[117.265389,38.55673],[117.278938,38.56008],[117.292215,38.562417],[117.291591,38.571677],[117.299926,38.571471],[117.30408,38.564616],[117.305628,38.556609],[117.308289,38.555578],[117.315403,38.557692],[117.32492,38.564616],[117.346424,38.564925],[117.350483,38.561523],[117.350782,38.565819],[117.358045,38.570543],[117.354746,38.580747],[117.368865,38.582464],[117.369041,38.564753],[117.396302,38.574563],[117.409213,38.585144],[117.401203,38.588012],[117.410041,38.593937],[117.415553,38.590623],[117.432428,38.601321],[117.471513,38.611246],[117.476061,38.608894],[117.481505,38.611538],[117.478925,38.617238],[117.495393,38.615521],[117.502914,38.617908],[117.505358,38.613993],[117.511603,38.613942],[117.516436,38.610353],[117.523821,38.611624],[117.523224,38.606353],[117.526903,38.60661],[117.524201,38.601253],[117.529143,38.600772],[117.541443,38.603571],[117.538565,38.609735],[117.542271,38.611796],[117.546887,38.617856],[117.55453,38.617015],[117.557802,38.613804],[117.582143,38.61856],[117.639027,38.626714],[117.642231,38.64326],[117.649222,38.6545],[117.656716,38.660488],[117.729062,38.680062],[117.738783,38.689102],[117.740751,38.700026],[117.741267,38.753936],[117.73638,38.761373],[117.729076,38.764782],[117.671527,38.771995],[117.654463,38.778299],[117.646439,38.788849],[117.646086,38.829103],[117.657734,38.836172],[117.689217,38.837097],[117.752196,38.847502],[117.768677,38.86398],[117.778479,38.869078],[117.821949,38.857238],[117.834072,38.855254],[117.847377,38.85563],[117.859908,38.871695],[117.861075,38.881514],[117.859514,38.888988],[117.875574,38.920365],[117.892422,38.925066],[117.899088,38.94156],[117.897907,38.948618],[117.855346,38.95764],[117.852536,38.963022],[117.850717,38.992914],[117.847418,39.010724],[117.839055,39.032865],[117.837385,39.057012],[117.840426,39.073782],[117.84644,39.088416],[117.859039,39.106509],[117.871651,39.122586],[117.925697,39.151405],[117.964605,39.172684],[117.973267,39.188797],[117.977421,39.205944],[118.032838,39.219887],[118.034875,39.218593],[118.037074,39.230526],[118.064742,39.231206],[118.065611,39.235427],[118.064782,39.255932],[118.063656,39.256834],[118.036829,39.265034],[118.033408,39.271566],[118.035309,39.274679],[118.028426,39.27769],[118.031698,39.285394],[118.028412,39.290411],[118.024733,39.292435],[118.022222,39.286959],[118.016846,39.284119],[118.006406,39.28951],[117.995708,39.288796],[117.995206,39.29354],[117.992137,39.296669],[117.983761,39.295513],[117.982675,39.298676],[117.977625,39.300665],[117.97252,39.309965],[117.972276,39.314351],[117.966044,39.316425],[117.951654,39.315405],[117.947377,39.317785],[117.939476,39.317598],[117.933421,39.319043],[117.910315,39.319519],[117.90574,39.316136],[117.902618,39.320471],[117.892164,39.323072],[117.893019,39.327372],[117.888553,39.331893],[117.878534,39.331808],[117.867266,39.329853],[117.861347,39.334187],[117.855319,39.331995],[117.855753,39.329225],[117.849644,39.327372],[117.846875,39.328494],[117.845137,39.325757],[117.850676,39.32229],[117.849888,39.315524],[117.84587,39.314793],[117.844187,39.323667],[117.83915,39.317241],[117.842829,39.311971],[117.83767,39.309727],[117.83691,39.306055],[117.850744,39.300393],[117.852658,39.297876],[117.827325,39.26056],[117.825995,39.260322],[117.806092,39.268692],[117.813736,39.27951],[117.809093,39.279187],[117.788702,39.287809],[117.789923,39.289578],[117.789693,39.299152],[117.791308,39.301158],[117.784575,39.30427],[117.77404,39.301991],[117.765772,39.299016],[117.761061,39.295139],[117.732076,39.290462],[117.721691,39.290836],[117.720632,39.282435],[117.709282,39.283166],[117.70897,39.267977],[117.710436,39.267603],[117.715826,39.256919],[117.717998,39.257242],[117.721541,39.250096],[117.725438,39.251219],[117.725478,39.246063],[117.743249,39.237878],[117.721134,39.207834],[117.71588,39.19457],[117.719668,39.193514],[117.718785,39.173263],[117.682728,39.173365],[117.679985,39.17173],[117.680094,39.188797],[117.666572,39.18878],[117.652562,39.205008],[117.645747,39.211392],[117.643656,39.21507],[117.635157,39.212618],[117.635117,39.210507],[117.628383,39.207493],[117.6174,39.205042],[117.617807,39.186719],[117.620658,39.187264],[117.623238,39.183057],[117.616368,39.174353],[117.615242,39.166211],[117.591823,39.170197],[117.568798,39.177505],[117.56706,39.173485],[117.566164,39.161747],[117.555752,39.159175],[117.553091,39.153927],[117.552629,39.14723],[117.540791,39.142732],[117.518092,39.15149],[117.514331,39.150144],[117.509688,39.1375],[117.503226,39.107907],[117.517467,39.106731],[117.535496,39.106543],[117.536189,39.099978],[117.553362,39.099706],[117.552874,39.078984],[117.563775,39.078507],[117.557815,39.065747],[117.559539,39.054913],[117.538062,39.056227],[117.530134,39.057865],[117.52712,39.046176],[117.523712,39.04674],[117.518825,39.037899],[117.520576,39.036824],[117.517386,39.026686],[117.521988,39.023767],[117.525396,39.026378],[117.526346,39.021257],[117.52488,39.015077],[117.526984,39.005994]]]]},"properties":{"adcode":120116,"name":"滨海新区","center":[117.654173,39.032846],"centroid":[117.59762,38.911764],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":12,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[117.805291,39.373299],[117.803377,39.362037],[117.806771,39.35694],[117.816451,39.354341],[117.821012,39.356107],[117.833204,39.356311],[117.837032,39.350823],[117.853228,39.360729],[117.848096,39.367116],[117.852074,39.369613],[117.854749,39.366555],[117.853242,39.362971],[117.860668,39.364806],[117.862935,39.362274],[117.853337,39.351656],[117.84997,39.342361],[117.846155,39.342854],[117.841933,39.336414],[117.847974,39.332233],[117.846875,39.328494],[117.845137,39.325757],[117.850676,39.32229],[117.849888,39.315524],[117.84587,39.314793],[117.844187,39.323667],[117.83915,39.317241],[117.842829,39.311971],[117.83767,39.309727],[117.83691,39.306055],[117.850744,39.300393],[117.852658,39.297876],[117.827325,39.26056],[117.825995,39.260322],[117.806092,39.268692],[117.813736,39.27951],[117.809093,39.279187],[117.788702,39.287809],[117.789923,39.289578],[117.789693,39.299152],[117.791308,39.301158],[117.784575,39.30427],[117.77404,39.301991],[117.765772,39.299016],[117.761061,39.295139],[117.732076,39.290462],[117.721691,39.290836],[117.720632,39.282435],[117.709282,39.283166],[117.70897,39.267977],[117.710436,39.267603],[117.715826,39.256919],[117.717998,39.257242],[117.721541,39.250096],[117.725438,39.251219],[117.725478,39.246063],[117.743249,39.237878],[117.721134,39.207834],[117.71588,39.19457],[117.719668,39.193514],[117.718785,39.173263],[117.682728,39.173365],[117.679985,39.17173],[117.680094,39.188797],[117.666572,39.18878],[117.652562,39.205008],[117.645747,39.211392],[117.643656,39.21507],[117.635157,39.212618],[117.635117,39.210507],[117.628383,39.207493],[117.6174,39.205042],[117.617807,39.186719],[117.620658,39.187264],[117.623238,39.183057],[117.616368,39.174353],[117.615242,39.166211],[117.591823,39.170197],[117.568798,39.177505],[117.549833,39.181167],[117.54743,39.180315],[117.537166,39.182614],[117.517739,39.191385],[117.51368,39.192441],[117.513734,39.204769],[117.509906,39.207493],[117.510693,39.202556],[117.502249,39.199644],[117.502792,39.195387],[117.491361,39.198554],[117.501828,39.201364],[117.503634,39.208804],[117.493004,39.204837],[117.486704,39.204752],[117.482985,39.206778],[117.487275,39.211052],[117.488008,39.220449],[117.472803,39.229368],[117.46577,39.228994],[117.45681,39.23136],[117.451285,39.236431],[117.447755,39.231904],[117.442026,39.230594],[117.426101,39.231343],[117.425355,39.228517],[117.417508,39.223649],[117.408181,39.225964],[117.410258,39.236619],[117.403144,39.240312],[117.399913,39.246387],[117.393913,39.248054],[117.393994,39.257276],[117.400402,39.259148],[117.407108,39.274475],[117.405452,39.282554],[117.401515,39.287622],[117.397239,39.284051],[117.384056,39.280054],[117.369041,39.291602],[117.364629,39.287367],[117.356199,39.2932],[117.36243,39.296023],[117.352167,39.302739],[117.343139,39.31039],[117.337722,39.306004],[117.332495,39.309642],[117.338305,39.313569],[117.339079,39.318941],[117.334708,39.323429],[117.331952,39.320828],[117.3242,39.329649],[117.328015,39.339914],[117.322775,39.348717],[117.328504,39.350076],[117.330214,39.353593],[117.335088,39.353831],[117.337708,39.359267],[117.350483,39.361493],[117.370589,39.35976],[117.382427,39.360304],[117.38445,39.362665],[117.3895,39.36044],[117.389487,39.354408],[117.392555,39.352658],[117.415716,39.350535],[117.415186,39.346525],[117.433894,39.347119],[117.436514,39.352319],[117.43312,39.355377],[117.432903,39.360049],[117.43855,39.35784],[117.441727,39.361646],[117.448855,39.35886],[117.454801,39.361969],[117.46163,39.362444],[117.46539,39.35959],[117.47321,39.362071],[117.47135,39.36523],[117.477418,39.366572],[117.486093,39.372297],[117.483867,39.375065],[117.485645,39.379532],[117.508032,39.383608],[117.505874,39.386139],[117.501081,39.384865],[117.497619,39.392337],[117.497891,39.395513],[117.494986,39.40497],[117.496995,39.405394],[117.494986,39.414647],[117.491225,39.413679],[117.483256,39.445654],[117.483392,39.449064],[117.489148,39.448623],[117.492461,39.451847],[117.499344,39.454426],[117.496995,39.459397],[117.502928,39.462009],[117.509512,39.456326],[117.519287,39.45921],[117.517983,39.46318],[117.523156,39.463638],[117.524378,39.466403],[117.541334,39.464384],[117.55138,39.46776],[117.557055,39.471627],[117.564943,39.480769],[117.562227,39.485704],[117.5581,39.486585],[117.555887,39.494555],[117.567223,39.497692],[117.567549,39.493962],[117.572396,39.494928],[117.572857,39.49096],[117.577405,39.491774],[117.580188,39.485093],[117.59667,39.48745],[117.607503,39.48974],[117.605752,39.494199],[117.608902,39.499744],[117.610626,39.511899],[117.63065,39.516001],[117.637099,39.522069],[117.633365,39.534797],[117.634153,39.53717],[117.658291,39.531137],[117.659811,39.527612],[117.667672,39.530255],[117.668446,39.53234],[117.676646,39.533187],[117.681112,39.536593],[117.687941,39.534899],[117.690751,39.537542],[117.690398,39.547455],[117.69462,39.551097],[117.700879,39.551741],[117.708712,39.548217],[117.707192,39.543405],[117.708848,39.538085],[117.715948,39.530086],[117.723496,39.535119],[117.732945,39.536102],[117.738036,39.540423],[117.744878,39.548624],[117.736081,39.560822],[117.735783,39.567631],[117.737737,39.57405],[117.748177,39.574423],[117.753133,39.576015],[117.755155,39.58113],[117.747879,39.58941],[117.767713,39.59901],[117.775424,39.599129],[117.78934,39.597199],[117.793928,39.601059],[117.801952,39.60177],[117.817374,39.595489],[117.826565,39.590816],[117.839354,39.58963],[117.847051,39.591137],[117.851395,39.589258],[117.8535,39.592306],[117.857342,39.592035],[117.86827,39.596843],[117.8841,39.590121],[117.892585,39.59151],[117.899821,39.589512],[117.914849,39.582942],[117.930068,39.578149],[117.933992,39.574152],[117.931127,39.568173],[117.924787,39.563312],[117.917931,39.554621],[117.917117,39.548319],[117.913302,39.542151],[117.909813,39.541965],[117.909813,39.537983],[117.905387,39.535102],[117.905292,39.53012],[117.91041,39.528001],[117.909446,39.523171],[117.912691,39.521425],[117.912284,39.516154],[117.909053,39.512001],[117.898585,39.509695],[117.897038,39.489299],[117.892395,39.487043],[117.896522,39.485721],[117.899726,39.476885],[117.898192,39.472509],[117.888322,39.469167],[117.886313,39.466776],[117.878072,39.4672],[117.874081,39.454918],[117.870334,39.454952],[117.871854,39.411557],[117.847078,39.408077],[117.848137,39.401948],[117.859378,39.403289],[117.862501,39.39716],[117.860491,39.384661],[117.865704,39.378276],[117.858034,39.373486],[117.8524,39.380772],[117.849305,39.37904],[117.838973,39.37729],[117.820999,39.376917],[117.805291,39.373299]],[[117.765555,39.400657],[117.737289,39.410555],[117.699738,39.407601],[117.702331,39.388924],[117.673197,39.386665],[117.670808,39.405275],[117.669097,39.412015],[117.663748,39.412389],[117.655006,39.40974],[117.656295,39.407499],[117.64348,39.405853],[117.64185,39.400165],[117.635823,39.398501],[117.635103,39.404477],[117.631668,39.404308],[117.630976,39.408535],[117.614128,39.407109],[117.614305,39.411065],[117.611305,39.413017],[117.611087,39.417108],[117.60138,39.419484],[117.601788,39.416412],[117.597145,39.415037],[117.590642,39.405462],[117.575518,39.404206],[117.571133,39.404613],[117.571486,39.400318],[117.56869,39.397244],[117.560327,39.396497],[117.560924,39.393033],[117.553688,39.392575],[117.557883,39.385595],[117.552874,39.382572],[117.543981,39.381248],[117.545135,39.377953],[117.538931,39.377324],[117.535333,39.374012],[117.537261,39.363684],[117.534166,39.36241],[117.529428,39.366657],[117.526183,39.365604],[117.528545,39.36134],[117.520875,39.357229],[117.529279,39.347408],[117.533636,39.348954],[117.536229,39.338045],[117.569749,39.342616],[117.595285,39.349124],[117.597511,39.34508],[117.606947,39.346966],[117.609227,39.34316],[117.616667,39.344418],[117.617332,39.338079],[117.635307,39.343789],[117.642108,39.344367],[117.642163,39.339269],[117.637547,39.335972],[117.642556,39.331655],[117.646466,39.322732],[117.650811,39.32212],[117.650811,39.315201],[117.66383,39.316867],[117.669315,39.324142],[117.670944,39.35784],[117.687547,39.359217],[117.692204,39.357959],[117.706201,39.35152],[117.744607,39.354595],[117.784575,39.377002],[117.782362,39.39463],[117.765555,39.400657]]]},"properties":{"adcode":120117,"name":"宁河区","center":[117.82828,39.328886],"centroid":null,"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":13,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.258886,38.847365],[117.248799,38.851729],[117.193966,38.894854],[117.179005,38.910363],[117.168077,38.925203],[117.158736,38.936176],[117.13696,38.963603],[117.122529,38.975031],[117.108655,38.981813],[117.078611,38.993973],[117.063066,39.005021],[117.057975,39.000872],[117.057147,38.995868],[117.035317,38.997388],[117.037571,39.010468],[117.040517,39.012738],[117.033335,39.01559],[117.038209,39.021206],[117.015795,39.030304],[116.990218,39.036636],[116.970315,39.038838],[116.968388,39.045494],[116.960581,39.046688],[116.962387,39.050767],[116.948974,39.054282],[116.94558,39.057046],[116.940924,39.050101],[116.934706,39.054435],[116.921659,39.060117],[116.908667,39.061175],[116.905002,39.057421],[116.90101,39.061328],[116.888995,39.055067],[116.886769,39.0594],[116.897182,39.062761],[116.898186,39.066668],[116.881474,39.071718],[116.877809,39.072588],[116.86988,39.06991],[116.873722,39.060544],[116.869921,39.059622],[116.871645,39.054674],[116.860309,39.053531],[116.860445,39.050562],[116.842145,39.049385],[116.831474,39.049521],[116.821984,39.046757],[116.818984,39.050937],[116.802679,39.050903],[116.797073,39.054418],[116.7878,39.052678],[116.783347,39.050187],[116.785017,39.055698],[116.796136,39.056329],[116.797181,39.060253],[116.787325,39.061925],[116.786809,39.059332],[116.781596,39.058462],[116.781379,39.053446],[116.77884,39.049419],[116.774835,39.050425],[116.773016,39.046876],[116.760743,39.050562],[116.756616,39.050306],[116.751742,39.038958],[116.751715,39.034503],[116.759359,39.031636],[116.759087,39.021189],[116.75496,39.019123],[116.756331,39.01308],[116.754607,39.003228],[116.752394,39.003467],[116.750521,38.994007],[116.745457,38.991411],[116.740366,38.980839],[116.735329,38.980617],[116.734895,38.977867],[116.728609,38.975356],[116.725364,38.966456],[116.723043,38.966592],[116.722622,38.956529],[116.718359,38.942978],[116.716228,38.938962],[116.710186,38.93903],[116.709996,38.931937],[116.708136,38.931852],[116.708028,38.897026],[116.722337,38.89706],[116.723124,38.852533],[116.746027,38.851455],[116.743081,38.834923],[116.74376,38.831568],[116.751199,38.831277],[116.749082,38.82443],[116.746244,38.824636],[116.745253,38.816744],[116.738479,38.807053],[116.744018,38.805324],[116.74076,38.799228],[116.746095,38.798594],[116.745769,38.795751],[116.741425,38.796214],[116.737338,38.784482],[116.742769,38.78402],[116.742321,38.780834],[116.751308,38.7802],[116.747018,38.76288],[116.746299,38.754245],[116.758938,38.754879],[116.762807,38.750544],[116.76635,38.741941],[116.775025,38.742798],[116.778867,38.740621],[116.784515,38.740518],[116.78404,38.738342],[116.791221,38.740055],[116.791221,38.74506],[116.796543,38.746688],[116.812916,38.744323],[116.859115,38.741307],[116.86035,38.744974],[116.86745,38.745882],[116.870138,38.729892],[116.866487,38.717],[116.87284,38.716143],[116.875162,38.712629],[116.871903,38.701878],[116.875501,38.693166],[116.875596,38.682687],[116.877293,38.680697],[116.896069,38.680285],[116.903291,38.681915],[116.910364,38.685568],[116.921225,38.686923],[116.917722,38.679616],[116.92732,38.680062],[116.926805,38.687438],[116.930823,38.685757],[116.945594,38.685877],[116.947209,38.689616],[116.951173,38.689582],[116.994454,38.695721],[116.992838,38.692274],[117.002938,38.690422],[117.014464,38.689942],[117.015741,38.700403],[117.042309,38.70649],[117.045268,38.70577],[117.041644,38.701603],[117.039281,38.694435],[117.039064,38.688467],[117.045377,38.692549],[117.04459,38.68622],[117.052871,38.686718],[117.054351,38.684265],[117.063379,38.682961],[117.063257,38.68044],[117.068157,38.680646],[117.06198,38.674385],[117.056048,38.654191],[117.056319,38.644976],[117.051717,38.6435],[117.055586,38.639261],[117.060759,38.639107],[117.060501,38.635708],[117.064261,38.635708],[117.070085,38.616757],[117.071551,38.607383],[117.086336,38.60637],[117.087232,38.599862],[117.096871,38.600411],[117.097074,38.595517],[117.093001,38.594435],[117.097468,38.590708],[117.098201,38.586896],[117.109849,38.584869],[117.109483,38.589111],[117.119542,38.589661],[117.12166,38.597698],[117.124606,38.599931],[117.136431,38.598728],[117.138264,38.603932],[117.147577,38.606627],[117.150835,38.609323],[117.15112,38.617719],[117.156428,38.621204],[117.157609,38.627607],[117.156442,38.632739],[117.163013,38.648391],[117.162347,38.657966],[117.157107,38.658772],[117.16065,38.660505],[117.161098,38.665687],[117.15875,38.670027],[117.153862,38.671554],[117.153822,38.676683],[117.148025,38.676134],[117.14736,38.681623],[117.149858,38.681812],[117.148323,38.687764],[117.149382,38.69164],[117.154555,38.690251],[117.158709,38.698054],[117.159048,38.705702],[117.157813,38.71508],[117.160488,38.729566],[117.17705,38.731246],[117.176792,38.733268],[117.160216,38.731366],[117.155994,38.726652],[117.146477,38.729069],[117.146355,38.733011],[117.141698,38.735736],[117.137164,38.733714],[117.137028,38.741152],[117.134734,38.741512],[117.15408,38.751092],[117.155057,38.759471],[117.161886,38.75834],[117.164411,38.755873],[117.193654,38.770744],[117.215905,38.783043],[117.21361,38.785287],[117.195201,38.795922],[117.204786,38.805187],[117.196735,38.809656],[117.207501,38.82027],[117.223154,38.811607],[117.247238,38.834803],[117.256388,38.843121],[117.258886,38.847365]]]]},"properties":{"adcode":120118,"name":"静海区","center":[116.925304,38.935671],"centroid":[116.966349,38.85579],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":14,"acroutes":[100000,120000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.539162,39.76044],[117.546126,39.763667],[117.550376,39.762957],[117.554842,39.771419],[117.54614,39.776147],[117.548624,39.781027],[117.553118,39.784506],[117.554869,39.788727],[117.554652,39.795379],[117.560395,39.795008],[117.568242,39.799245],[117.56144,39.800038],[117.558426,39.811517],[117.548842,39.824073],[117.540859,39.82193],[117.537275,39.835159],[117.544334,39.833017],[117.543099,39.838163],[117.548108,39.839917],[117.548556,39.845535],[117.545746,39.848032],[117.544728,39.844591],[117.53718,39.85284],[117.534139,39.851962],[117.529808,39.860987],[117.521038,39.871375],[117.518811,39.891289],[117.516829,39.895166],[117.510082,39.893817],[117.50719,39.904168],[117.503932,39.904875],[117.507435,39.909055],[117.514359,39.906831],[117.512743,39.910522],[117.513625,39.916673],[117.504665,39.915696],[117.503484,39.918999],[117.514386,39.921442],[117.521961,39.920634],[117.522056,39.924796],[117.525504,39.929615],[117.512472,39.933675],[117.511141,39.941071],[117.514956,39.946681],[117.519612,39.948433],[117.524323,39.946647],[117.527283,39.952358],[117.532917,39.952493],[117.534424,39.961588],[117.536284,39.961537],[117.538945,39.970766],[117.547335,39.976844],[117.546289,39.981424],[117.537709,39.989977],[117.537492,39.997383],[117.544307,39.994454],[117.547063,39.998932],[117.563028,39.995666],[117.562132,39.992872],[117.566653,39.990987],[117.570604,39.995111],[117.57579,39.996424],[117.578912,39.993848],[117.584641,39.994135],[117.589244,39.996861],[117.592529,39.994673],[117.599643,39.993747],[117.603037,39.987754],[117.610924,39.982619],[117.615337,39.982535],[117.615622,39.978781],[117.611427,39.975278],[117.620007,39.970665],[117.631886,39.968711],[117.638049,39.972231],[117.657504,39.972163],[117.663219,39.974756],[117.674731,39.974807],[117.68209,39.979858],[117.68566,39.979488],[117.688986,39.984017],[117.695693,39.985751],[117.706689,39.98602],[117.711264,39.984842],[117.719437,39.979892],[117.723958,39.979959],[117.727718,39.972433],[117.733923,39.971119],[117.74162,39.973342],[117.752114,39.966084],[117.756445,39.965175],[117.763545,39.972719],[117.769071,39.969233],[117.772153,39.970193],[117.7819,39.966354],[117.787222,39.973477],[117.786665,39.981272],[117.791512,39.993747],[117.796467,39.996676],[117.792951,40.005631],[117.797064,40.010141],[117.791756,40.012464],[117.791946,40.015577],[117.785919,40.017916],[117.784154,40.015308],[117.782443,40.02352],[117.770347,40.023553],[117.76736,40.018943],[117.760654,40.020659],[117.757884,40.018135],[117.758454,40.012985],[117.755834,40.010394],[117.744145,40.018438],[117.744783,40.027928],[117.743738,40.031276],[117.746915,40.034439],[117.747906,40.047459],[117.758291,40.044347],[117.767116,40.047997],[117.772967,40.051782],[117.776144,40.05893],[117.769247,40.061688],[117.767808,40.066077],[117.758196,40.065959],[117.7543,40.068666],[117.753391,40.073324],[117.758454,40.07329],[117.755576,40.079545],[117.751639,40.081999],[117.744566,40.07862],[117.733868,40.077393],[117.730529,40.080554],[117.722003,40.079898],[117.711753,40.085849],[117.707884,40.094002],[117.703947,40.092237],[117.696467,40.094926],[117.690928,40.094187],[117.688253,40.082857],[117.67932,40.085664],[117.674908,40.082134],[117.674541,40.092153],[117.668106,40.100927],[117.663694,40.096439],[117.660802,40.097431],[117.657802,40.092741],[117.649589,40.091279],[117.644878,40.096204],[117.648313,40.098607],[117.650254,40.105246],[117.657558,40.109162],[117.653146,40.110758],[117.648516,40.126402],[117.650159,40.128183],[117.636013,40.132097],[117.63695,40.136851],[117.632334,40.140782],[117.630501,40.147836],[117.621527,40.14656],[117.618459,40.15133],[117.618595,40.157611],[117.613137,40.157779],[117.609974,40.160079],[117.60119,40.171212],[117.588633,40.168307],[117.584112,40.171766],[117.579673,40.177961],[117.576401,40.178599],[117.57317,40.190031],[117.575545,40.191894],[117.572246,40.194915],[117.57283,40.200319],[117.56926,40.204162],[117.563992,40.205236],[117.564467,40.211009],[117.569178,40.213895],[117.571649,40.219247],[117.569491,40.225455],[117.564264,40.229045],[117.554476,40.229682],[117.550905,40.228038],[117.546629,40.23292],[117.527134,40.228978],[117.524011,40.229632],[117.514318,40.227719],[117.505005,40.227216],[117.499194,40.230957],[117.488985,40.232534],[117.484071,40.235302],[117.481097,40.241726],[117.474106,40.241105],[117.472843,40.243185],[117.461439,40.248351],[117.458589,40.248183],[117.45028,40.252476],[117.438849,40.252996],[117.434179,40.248116],[117.42997,40.246539],[117.426739,40.248082],[117.41615,40.248921],[117.412647,40.24352],[117.415363,40.236862],[117.411561,40.235604],[117.405357,40.230185],[117.403009,40.233423],[117.397551,40.235168],[117.390016,40.227971],[117.393723,40.221663],[117.377594,40.21861],[117.378436,40.210304],[117.385686,40.207888],[117.393152,40.20339],[117.383446,40.20235],[117.382346,40.204565],[117.379563,40.198926],[117.381545,40.194797],[117.384382,40.195267],[117.384097,40.187832],[117.388346,40.188251],[117.397714,40.192917],[117.407692,40.187496],[117.404746,40.183232],[117.40123,40.183618],[117.391618,40.177608],[117.393193,40.174905],[117.380595,40.176903],[117.381219,40.172454],[117.377024,40.176316],[117.372028,40.176534],[117.368838,40.172991],[117.364018,40.176685],[117.362878,40.172152],[117.353741,40.17368],[117.351121,40.171665],[117.357339,40.16426],[117.360624,40.156973],[117.351719,40.150557],[117.355275,40.148592],[117.350524,40.144813],[117.356891,40.145048],[117.356348,40.140916],[117.351393,40.139925],[117.349071,40.136515],[117.330608,40.133693],[117.330934,40.135759],[117.323277,40.140715],[117.318566,40.138514],[117.31376,40.139959],[117.30761,40.136969],[117.302994,40.125931],[117.297062,40.121261],[117.297102,40.118858],[117.285414,40.121328],[117.275422,40.113464],[117.276657,40.109313],[117.274363,40.105801],[117.269923,40.107196],[117.266828,40.11217],[117.260393,40.114153],[117.255533,40.113279],[117.249261,40.116489],[117.245364,40.113229],[117.238224,40.11175],[117.235997,40.108389],[117.229019,40.103465],[117.228612,40.100255],[117.22439,40.098557],[117.22443,40.094624],[117.211262,40.096607],[117.211031,40.090775],[117.215117,40.085093],[117.209782,40.082235],[117.213027,40.07941],[117.215117,40.073677],[117.219733,40.071121],[117.22291,40.066648],[117.217873,40.064395],[117.209307,40.065791],[117.202532,40.064967],[117.192364,40.066279],[117.192025,40.061486],[117.184069,40.062579],[117.181775,40.059014],[117.183404,40.053026],[117.188712,40.047779],[117.186811,40.041875],[117.188318,40.032555],[117.187802,40.025858],[117.194088,40.021568],[117.193219,40.016772],[117.197672,40.010596],[117.195744,40.003948],[117.19812,39.992737],[117.190898,39.986475],[117.191142,39.981828],[117.188115,39.978797],[117.178625,39.977282],[117.17967,39.965596],[117.175937,39.959112],[117.172407,39.96307],[117.164873,39.963137],[117.166407,39.955373],[117.16452,39.952071],[117.158641,39.950774],[117.151039,39.944862],[117.146952,39.947271],[117.156863,39.938039],[117.155044,39.934147],[117.150726,39.936034],[117.146396,39.933136],[117.149871,39.92424],[117.137422,39.921645],[117.136716,39.919639],[117.142513,39.918797],[117.144767,39.911567],[117.158831,39.909207],[117.157582,39.904589],[117.150564,39.902061],[117.149124,39.896279],[117.15841,39.889316],[117.152152,39.877463],[117.153672,39.875625],[117.157759,39.878744],[117.16285,39.876586],[117.164642,39.872809],[117.168158,39.873028],[117.17052,39.877513],[117.173833,39.873062],[117.166841,39.868947],[117.168429,39.866687],[117.175584,39.866839],[117.177851,39.870886],[117.181042,39.869217],[117.180105,39.86527],[117.185739,39.866434],[117.192377,39.862117],[117.199125,39.862302],[117.211615,39.859519],[117.213189,39.856264],[117.220045,39.856551],[117.227797,39.852772],[117.230852,39.856905],[117.236893,39.855792],[117.239798,39.860447],[117.247455,39.861054],[117.259959,39.843393],[117.25556,39.842667],[117.252234,39.834603],[117.25723,39.829794],[117.26619,39.826756],[117.268824,39.828342],[117.273345,39.824866],[117.27796,39.825373],[117.286147,39.819432],[117.285631,39.813103],[117.289609,39.813762],[117.295921,39.810977],[117.301827,39.805187],[117.306063,39.808073],[117.313557,39.807162],[117.319625,39.804596],[117.319191,39.800477],[117.322897,39.794028],[117.329305,39.79158],[117.334151,39.796763],[117.340125,39.7983],[117.342799,39.795447],[117.34565,39.797557],[117.349126,39.794721],[117.356185,39.792847],[117.366204,39.794062],[117.366258,39.790854],[117.374757,39.790601],[117.375544,39.78763],[117.382875,39.787545],[117.389908,39.785485],[117.388795,39.782361],[117.392786,39.782125],[117.392514,39.777177],[117.399099,39.770861],[117.407299,39.772246],[117.412417,39.768176],[117.412322,39.76267],[117.415648,39.760288],[117.426753,39.758295],[117.431233,39.755897],[117.437193,39.755542],[117.439935,39.764444],[117.449289,39.768885],[117.454597,39.768345],[117.457272,39.772922],[117.463544,39.775354],[117.460394,39.769122],[117.464141,39.768717],[117.47302,39.774357],[117.47021,39.777802],[117.483378,39.774948],[117.489881,39.77863],[117.492257,39.771419],[117.503525,39.773884],[117.50719,39.767197],[117.511576,39.765727],[117.516151,39.769071],[117.519938,39.764663],[117.52378,39.768598],[117.529346,39.765812],[117.533053,39.766251],[117.531912,39.761386],[117.539162,39.76044]]]]},"properties":{"adcode":120119,"name":"蓟州区","center":[117.407449,40.045342],"centroid":[117.434984,40.003468],"childrenNum":0,"level":"district","parent":"{ \"adcode\": 120000 }","subFeatureIndex":15,"acroutes":[100000,120000]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/130000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/130000.json new file mode 100644 index 0000000..914e3ac --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/130000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/140000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/140000.json new file mode 100644 index 0000000..1b8f325 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/140000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/150000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/150000.json new file mode 100644 index 0000000..61d6bf6 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/150000.json @@ -0,0 +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]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/210000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/210000.json new file mode 100644 index 0000000..bab6d27 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/210000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/220000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/220000.json new file mode 100644 index 0000000..0d62e4b --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/220000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/230000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/230000.json new file mode 100644 index 0000000..05ecafb --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/230000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/310000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/310000.json new file mode 100644 index 0000000..23dfaf6 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/310000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/320000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/320000.json new file mode 100644 index 0000000..8d91228 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/320000.json @@ -0,0 +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]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/330000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/330000.json new file mode 100644 index 0000000..cc0d19d --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/330000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":330100,"name":"杭州市","center":[120.153576,30.287459],"centroid":[119.476498,29.898918],"childrenNum":13,"level":"city","parent":{"adcode":330000},"subFeatureIndex":0,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.721941,30.286334],[120.710868,30.297542],[120.706045,30.309444],[120.704126,30.330791],[120.70388,30.365867],[120.692955,30.377965],[120.658998,30.385607],[120.633899,30.389449],[120.567856,30.387855],[120.498761,30.38904],[120.460227,30.382665],[120.43882,30.373388],[120.413771,30.318319],[120.378091,30.344937],[120.388524,30.370118],[120.400926,30.377025],[120.398318,30.38479],[120.362835,30.374695],[120.342953,30.37163],[120.318642,30.380621],[120.315689,30.394311],[120.306388,30.396232],[120.322038,30.404731],[120.332963,30.417314],[120.330749,30.427282],[120.340345,30.433899],[120.337245,30.464324],[120.341379,30.472286],[120.329174,30.468407],[120.326123,30.500414],[120.317707,30.521596],[120.299892,30.5198],[120.285817,30.507802],[120.277451,30.504822],[120.25191,30.506536],[120.239262,30.50523],[120.224597,30.509761],[120.205404,30.505843],[120.201762,30.514413],[120.195659,30.503598],[120.185079,30.502618],[120.185915,30.494618],[120.173809,30.492046],[120.180551,30.482534],[120.175039,30.476818],[120.149793,30.467509],[120.146004,30.482697],[120.11121,30.476206],[120.096742,30.48678],[120.099252,30.495801],[120.068297,30.496618],[120.065836,30.483595],[120.059488,30.47343],[120.059242,30.459016],[120.0681,30.445948],[120.062145,30.434634],[120.064754,30.4301],[120.046102,30.427445],[120.041525,30.433368],[120.013818,30.435614],[120.00368,30.444273],[119.982962,30.445294],[119.965048,30.431571],[119.955895,30.433654],[119.950728,30.444232],[119.934979,30.446764],[119.931436,30.456443],[119.921544,30.462528],[119.90934,30.456321],[119.90304,30.459424],[119.890048,30.457056],[119.872578,30.462487],[119.880796,30.476206],[119.867115,30.477757],[119.854123,30.493964],[119.851121,30.502006],[119.836013,30.496577],[119.815884,30.510659],[119.794182,30.505638],[119.784044,30.511026],[119.766376,30.514087],[119.768936,30.551341],[119.743246,30.550158],[119.729073,30.551749],[119.71175,30.566516],[119.69241,30.556155],[119.695018,30.542325],[119.70486,30.525963],[119.709191,30.508822],[119.704713,30.494577],[119.708896,30.487964],[119.701711,30.467999],[119.695362,30.464488],[119.694919,30.452727],[119.709191,30.434062],[119.686012,30.417559],[119.681091,30.408735],[119.668099,30.399501],[119.6555,30.40518],[119.646691,30.39378],[119.633256,30.395292],[119.63739,30.410369],[119.631829,30.424667],[119.642951,30.428507],[119.650579,30.440352],[119.635569,30.441782],[119.627941,30.431775],[119.594968,30.421644],[119.581779,30.423646],[119.572823,30.431326],[119.565933,30.443375],[119.55176,30.43978],[119.535273,30.424055],[119.533452,30.409429],[119.513127,30.401666],[119.490391,30.408203],[119.467015,30.408122],[119.450234,30.410818],[119.441031,30.392472],[119.435716,30.391492],[119.418147,30.376085],[119.403038,30.373347],[119.399987,30.367788],[119.386159,30.363905],[119.375627,30.354789],[119.349446,30.349148],[119.342654,30.363169],[119.326562,30.371753],[119.300676,30.363701],[119.289455,30.349639],[119.278136,30.341585],[119.265046,30.338069],[119.247132,30.340808],[119.239997,30.327029],[119.245902,30.321631],[119.233747,30.293411],[119.225479,30.288789],[119.222624,30.299628],[119.205695,30.301551],[119.201069,30.291039],[119.188225,30.291652],[119.156729,30.299547],[119.151266,30.304577],[119.12853,30.3047],[119.11101,30.311285],[119.090242,30.324003],[119.073411,30.315865],[119.062978,30.304945],[119.050823,30.306745],[119.048313,30.312675],[119.028775,30.312593],[119.004464,30.328951],[118.988027,30.333489],[118.988126,30.348698],[118.975724,30.347145],[118.969031,30.351356],[118.959385,30.347267],[118.955399,30.359204],[118.936452,30.350824],[118.936354,30.34506],[118.917899,30.332467],[118.908401,30.330872],[118.899789,30.322572],[118.879857,30.314884],[118.881826,30.298524],[118.878086,30.282734],[118.8897,30.254258],[118.882417,30.247465],[118.892554,30.243249],[118.903184,30.217913],[118.924986,30.213861],[118.929858,30.20338],[118.920655,30.198999],[118.910812,30.187493],[118.864405,30.168983],[118.85284,30.166566],[118.845704,30.156122],[118.856383,30.148216],[118.865733,30.151493],[118.877348,30.147396],[118.896787,30.148093],[118.89595,30.138793],[118.888125,30.127239],[118.887239,30.117446],[118.871639,30.113021],[118.868883,30.101464],[118.872918,30.094619],[118.875478,30.072033],[118.878824,30.064653],[118.888125,30.062357],[118.897328,30.049646],[118.890586,30.04128],[118.902594,30.029059],[118.898017,30.017246],[118.89034,30.012037],[118.895015,30.000386],[118.892062,29.994806],[118.899493,29.98143],[118.891521,29.959885],[118.894867,29.939197],[118.88468,29.93891],[118.871983,29.946873],[118.863913,29.93698],[118.848263,29.941249],[118.838716,29.934476],[118.844916,29.915261],[118.845507,29.899082],[118.841324,29.891319],[118.807712,29.86766],[118.802593,29.860676],[118.778725,29.841899],[118.766963,29.848925],[118.755595,29.845432],[118.750969,29.831625],[118.76593,29.823077],[118.75781,29.816747],[118.745999,29.818186],[118.739946,29.813295],[118.736501,29.788465],[118.744325,29.779626],[118.74905,29.761121],[118.744719,29.738788],[118.72464,29.722621],[118.718686,29.709167],[118.700821,29.706452],[118.691668,29.693942],[118.682908,29.688345],[118.682367,29.681061],[118.673902,29.669083],[118.647327,29.643394],[118.640929,29.641912],[118.633498,29.648788],[118.620014,29.654099],[118.602051,29.643683],[118.573902,29.638371],[118.555053,29.613416],[118.549886,29.613416],[118.53522,29.590638],[118.515486,29.583305],[118.499689,29.573623],[118.494915,29.553721],[118.497868,29.543995],[118.495899,29.519553],[118.470407,29.507473],[118.459826,29.505577],[118.44895,29.51341],[118.430594,29.503721],[118.414994,29.509741],[118.393045,29.507308],[118.383005,29.510153],[118.379806,29.502567],[118.358694,29.477083],[118.344964,29.475681],[118.345751,29.465123],[118.352543,29.45279],[118.366371,29.45015],[118.372917,29.437815],[118.384137,29.433276],[118.390289,29.423951],[118.402051,29.425189],[118.413173,29.420568],[118.405397,29.408147],[118.425771,29.397623],[118.423655,29.387345],[118.441224,29.375911],[118.448754,29.37525],[118.456234,29.365879],[118.470112,29.360098],[118.479167,29.366539],[118.488813,29.367241],[118.505742,29.359273],[118.517504,29.363484],[118.524344,29.36142],[118.519079,29.344366],[118.528577,29.345275],[118.55151,29.335694],[118.571687,29.338337],[118.589059,29.327888],[118.596047,29.330821],[118.603823,29.323552],[118.603478,29.316447],[118.617209,29.303146],[118.614404,29.296577],[118.634138,29.272984],[118.63276,29.263149],[118.619177,29.276786],[118.610614,29.279472],[118.606677,29.267116],[118.615437,29.25075],[118.607612,29.239713],[118.620112,29.219291],[118.631825,29.219622],[118.633646,29.205605],[118.626855,29.19568],[118.638321,29.192165],[118.670162,29.200518],[118.68463,29.202545],[118.708843,29.188774],[118.743735,29.213668],[118.753036,29.213875],[118.765438,29.220614],[118.767259,29.234133],[118.763912,29.248311],[118.774985,29.250998],[118.784778,29.259099],[118.786402,29.266744],[118.793637,29.267943],[118.816865,29.281703],[118.82656,29.280298],[118.828775,29.287446],[118.855743,29.303311],[118.860664,29.31496],[118.878332,29.326567],[118.886354,29.322354],[118.900428,29.332638],[118.927053,29.310375],[118.94408,29.306286],[118.948017,29.301122],[118.962092,29.296164],[118.961895,29.290215],[118.949641,29.281744],[118.963322,29.267653],[118.966816,29.269348],[118.988224,29.243558],[118.984828,29.239465],[118.987141,29.226071],[118.998903,29.216355],[119.003234,29.207714],[119.013076,29.212386],[119.030596,29.215074],[119.062929,29.226278],[119.075675,29.224004],[119.085222,29.230578],[119.106384,29.227518],[119.12351,29.236737],[119.132565,29.235456],[119.12912,29.227063],[119.138126,29.220242],[119.151758,29.22789],[119.170459,29.217596],[119.177693,29.207259],[119.189504,29.205191],[119.194918,29.216314],[119.189504,29.227105],[119.201709,29.229379],[119.204465,29.223549],[119.213668,29.225203],[119.210272,29.23066],[119.2148,29.246947],[119.200922,29.257487],[119.192211,29.258479],[119.20038,29.272158],[119.200282,29.29038],[119.208156,29.284389],[119.228727,29.284182],[119.227103,29.276827],[119.239308,29.258933],[119.237782,29.250708],[119.260912,29.247815],[119.270656,29.251659],[119.288077,29.268852],[119.286011,29.279348],[119.318294,29.279885],[119.322625,29.296164],[119.328629,29.299263],[119.3242,29.307979],[119.348806,29.319504],[119.344278,29.324378],[119.348462,29.336231],[119.333058,29.355061],[119.340145,29.38235],[119.328629,29.393413],[119.337093,29.411159],[119.346395,29.408724],[119.360223,29.416276],[119.368294,29.415699],[119.378137,29.42981],[119.388521,29.429728],[119.39354,29.411242],[119.399938,29.411242],[119.404761,29.400677],[119.426759,29.405547],[119.43232,29.415162],[119.427793,29.422177],[119.437143,29.424116],[119.443147,29.404556],[119.451365,29.397292],[119.451858,29.385611],[119.457566,29.370379],[119.45481,29.365259],[119.461454,29.350932],[119.471493,29.349033],[119.480204,29.332968],[119.49231,29.331069],[119.500037,29.335735],[119.510421,29.333464],[119.522724,29.350024],[119.523905,29.366003],[119.536061,29.373145],[119.545411,29.367365],[119.558551,29.372154],[119.574594,29.372773],[119.582075,29.379131],[119.592901,29.377686],[119.604565,29.369636],[119.616277,29.368273],[119.617606,29.380369],[119.606238,29.388088],[119.625529,29.410499],[119.624939,29.417762],[119.642508,29.432946],[119.664408,29.424075],[119.673413,29.425024],[119.676317,29.419206],[119.688916,29.421764],[119.691179,29.438763],[119.707272,29.433235],[119.715835,29.448995],[119.707124,29.464215],[119.70678,29.472382],[119.719575,29.491146],[119.718837,29.505288],[119.726908,29.511555],[119.735422,29.510936],[119.74492,29.516419],[119.722626,29.542759],[119.741081,29.551908],[119.750678,29.550713],[119.764211,29.557347],[119.761652,29.566536],[119.769182,29.579556],[119.764949,29.594675],[119.779319,29.603984],[119.776514,29.626841],[119.79118,29.654963],[119.817607,29.673076],[119.824448,29.671841],[119.835422,29.678138],[119.852499,29.668877],[119.859536,29.671347],[119.879271,29.66793],[119.895708,29.660644],[119.911702,29.66649],[119.921249,29.66402],[119.924792,29.669906],[119.936161,29.666531],[119.973119,29.674804],[119.973464,29.68995],[119.967411,29.694889],[119.951269,29.699292],[119.937735,29.70748],[119.933454,29.699415],[119.922529,29.697769],[119.914655,29.704682],[119.912489,29.720399],[119.901367,29.728627],[119.900481,29.74467],[119.889064,29.753102],[119.890343,29.762931],[119.904369,29.754582],[119.913572,29.755857],[119.927204,29.744423],[119.944576,29.755528],[119.960275,29.755158],[119.973119,29.765809],[119.991968,29.753143],[120.010915,29.757214],[120.011505,29.761491],[120.030059,29.770538],[120.030059,29.78275],[120.036604,29.788548],[120.030059,29.806307],[120.038425,29.82283],[120.065639,29.822049],[120.074252,29.82731],[120.095807,29.816583],[120.102746,29.823981],[120.101122,29.830269],[120.109931,29.845967],[120.131289,29.858827],[120.144773,29.874109],[120.150285,29.887582],[120.150039,29.905036],[120.159587,29.906227],[120.166329,29.917273],[120.17627,29.913578],[120.185079,29.904502],[120.204813,29.924048],[120.200433,29.929467],[120.221004,29.942235],[120.250729,29.936693],[120.255207,29.94363],[120.264754,29.930986],[120.265296,29.924499],[120.2744,29.919531],[120.284144,29.922159],[120.291034,29.935666],[120.312048,29.927702],[120.325188,29.93854],[120.326073,29.946216],[120.340493,29.956068],[120.346447,29.973797],[120.360473,29.973674],[120.364312,29.978516],[120.360473,29.98857],[120.362835,29.99776],[120.35693,30.011708],[120.345808,30.019707],[120.343593,30.034924],[120.331831,30.037918],[120.324941,30.048621],[120.33818,30.060881],[120.338623,30.070229],[120.333701,30.09548],[120.313327,30.107078],[120.299302,30.097365],[120.286851,30.106791],[120.300286,30.118348],[120.303731,30.126666],[120.297825,30.128182],[120.312245,30.1374],[120.318002,30.12601],[120.327993,30.125191],[120.339607,30.142112],[120.353386,30.142194],[120.352008,30.150674],[120.358751,30.147847],[120.37317,30.155507],[120.387835,30.156163],[120.399007,30.136335],[120.411359,30.132607],[120.410867,30.149527],[120.420956,30.152763],[120.426074,30.144283],[120.422875,30.135884],[120.429617,30.132443],[120.44694,30.135434],[120.452304,30.15137],[120.459243,30.151165],[120.46131,30.168041],[120.484096,30.172218],[120.498072,30.169187],[120.506143,30.159767],[120.518495,30.155384],[120.529371,30.157514],[120.550927,30.15563],[120.563427,30.147929],[120.568348,30.151329],[120.593496,30.146782],[120.609145,30.152845],[120.612787,30.16628],[120.642708,30.217258],[120.669037,30.23314],[120.693939,30.262032],[120.721941,30.286334]]]]}},{"type":"Feature","properties":{"adcode":330200,"name":"宁波市","center":[121.549792,29.868388],"centroid":[121.479174,29.733017],"childrenNum":10,"level":"city","parent":{"adcode":330000},"subFeatureIndex":1,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.86702,30.271729],[120.893447,30.228843],[120.916233,30.188394],[120.92765,30.165215],[120.931194,30.146618],[120.939461,30.125723],[120.930455,30.115192],[120.93828,30.113021],[120.950141,30.091012],[120.959737,30.094537],[120.96766,30.089987],[120.973861,30.078305],[120.969924,30.07027],[120.98144,30.067359],[120.986656,30.054402],[120.992562,30.050425],[120.986509,30.044274],[120.990151,30.027787],[121.018202,30.010765],[121.039511,30.013923],[121.034737,30.003955],[121.038133,29.998704],[121.05142,30.006786],[121.064413,30.006827],[121.075781,30.001986],[121.082621,29.991072],[121.091627,29.987257],[121.085869,29.972648],[121.07647,29.970391],[121.066135,29.960829],[121.045072,29.955616],[121.042021,29.933203],[121.0308,29.918792],[121.031637,29.911073],[121.023172,29.897357],[121.016578,29.894934],[121.031096,29.874602],[121.060574,29.854143],[121.063133,29.859032],[121.077011,29.849007],[121.085771,29.849295],[121.10649,29.836228],[121.096499,29.815966],[121.104964,29.805485],[121.096007,29.797839],[121.092612,29.788959],[121.08208,29.778433],[121.055111,29.760669],[121.045515,29.76729],[121.033999,29.76877],[121.024796,29.763918],[121.03518,29.746439],[121.014954,29.741667],[121.010722,29.73525],[121.019727,29.723403],[121.035869,29.72114],[121.034787,29.715997],[121.009639,29.709003],[121.006785,29.698592],[121.01397,29.693119],[121.010229,29.68674],[120.992956,29.685259],[120.992414,29.675833],[121.017759,29.669742],[121.038428,29.675751],[121.054226,29.68567],[121.058802,29.683859],[121.068399,29.66686],[121.074895,29.66085],[121.074206,29.637259],[121.08774,29.628077],[121.101716,29.626265],[121.113281,29.613745],[121.110181,29.607444],[121.117562,29.605508],[121.105702,29.585447],[121.115643,29.586724],[121.120417,29.575601],[121.113478,29.56596],[121.112986,29.554834],[121.130948,29.554174],[121.140348,29.543006],[121.155702,29.54177],[121.169334,29.537112],[121.183557,29.538802],[121.20585,29.536947],[121.213183,29.530311],[121.225585,29.532908],[121.231539,29.51308],[121.216726,29.496795],[121.228488,29.490733],[121.219827,29.477785],[121.216972,29.452666],[121.224059,29.449242],[121.217514,29.439217],[121.209197,29.436742],[121.218252,29.421146],[121.215102,29.417267],[121.226815,29.414749],[121.231441,29.393825],[121.226421,29.384662],[121.230063,29.362658],[121.213134,29.353575],[121.20024,29.342384],[121.193399,29.341434],[121.194187,29.322189],[121.190742,29.312358],[121.201077,29.312482],[121.196992,29.303229],[121.180899,29.292033],[121.175289,29.278274],[121.179325,29.258727],[121.166824,29.258892],[121.158852,29.244756],[121.174403,29.223095],[121.164708,29.2116],[121.173517,29.20639],[121.202701,29.203578],[121.225338,29.203868],[121.233705,29.196797],[121.232966,29.186623],[121.238872,29.175745],[121.251028,29.163542],[121.253045,29.157172],[121.264364,29.1544],[121.257622,29.149311],[121.258754,29.129243],[121.256096,29.114055],[121.270713,29.11033],[121.271746,29.101803],[121.295221,29.092696],[121.298616,29.114593],[121.308213,29.11451],[121.316973,29.105653],[121.323813,29.117159],[121.336609,29.121959],[121.348715,29.135574],[121.345418,29.145173],[121.361904,29.173305],[121.356343,29.186044],[121.366924,29.189146],[121.378784,29.199236],[121.385378,29.196921],[121.403833,29.17864],[121.401225,29.160978],[121.407032,29.156882],[121.431048,29.159778],[121.450044,29.159612],[121.470517,29.147615],[121.484542,29.142856],[121.508361,29.140622],[121.529719,29.136277],[121.53592,29.139795],[121.555802,29.168961],[121.564267,29.173056],[121.60846,29.169127],[121.648814,29.150924],[121.715596,29.12498],[121.749947,29.136691],[121.768008,29.166686],[121.769386,29.148277],[121.780557,29.109626],[121.794238,29.105197],[121.811167,29.109916],[121.827014,29.101845],[121.842368,29.08835],[121.860036,29.086404],[121.884494,29.105446],[121.898077,29.103956],[121.909642,29.085866],[121.899406,29.076426],[121.903835,29.069056],[121.931591,29.070713],[121.935085,29.05183],[121.951621,29.04744],[121.966138,29.052866],[121.969829,29.075888],[121.984396,29.086942],[121.983314,29.091454],[121.968747,29.093028],[121.983363,29.101224],[121.98853,29.110992],[121.985381,29.137601],[121.979278,29.144842],[121.988284,29.149269],[121.98666,29.154855],[121.96043,29.170575],[121.949111,29.183314],[121.9373,29.182859],[121.948619,29.19324],[121.971896,29.193364],[121.977457,29.224087],[121.968008,29.243888],[121.968304,29.250006],[121.990991,29.260793],[122.001965,29.26009],[121.99852,29.266124],[122.000243,29.278811],[121.981099,29.2841],[121.967566,29.281414],[121.944829,29.284182],[121.940892,29.298271],[121.946552,29.316695],[121.958363,29.334373],[121.952064,29.344119],[121.935971,29.348124],[121.932231,29.353451],[121.938579,29.369512],[121.937693,29.384125],[121.945814,29.395311],[121.959642,29.407156],[121.975538,29.411159],[121.981493,29.429934],[121.991729,29.445942],[121.992074,29.461411],[121.973127,29.477991],[121.96668,29.506566],[121.968993,29.515595],[121.986414,29.541193],[121.995076,29.545108],[121.985774,29.563776],[121.987201,29.570616],[122.000292,29.58244],[121.999751,29.593686],[121.985381,29.606291],[121.966089,29.635859],[121.937595,29.642571],[121.923422,29.65167],[121.909593,29.650105],[121.893845,29.636559],[121.872486,29.632483],[121.858953,29.636601],[121.833559,29.653111],[121.863234,29.67925],[121.906443,29.719247],[121.925538,29.741256],[121.937595,29.748536],[121.959199,29.750017],[122.003146,29.762273],[122.015991,29.771936],[122.037595,29.813747],[122.04857,29.826036],[122.08479,29.844528],[122.102212,29.859649],[122.135922,29.872261],[122.143058,29.877724],[122.140155,29.901751],[122.11673,29.909964],[122.096257,29.905036],[122.080115,29.892634],[122.00979,29.891114],[122.003442,29.898999],[122.0029,29.923186],[121.994534,29.934599],[121.984396,29.937637],[121.981739,29.947037],[121.968008,29.956519],[121.9529,29.950732],[121.927113,29.931151],[121.919534,29.920804],[121.901817,29.923678],[121.859986,29.944],[121.835183,29.957956],[121.814366,29.974331],[121.784051,29.993493],[121.771453,29.99497],[121.724996,29.992221],[121.69975,30.008016],[121.667466,30.048867],[121.653096,30.071131],[121.63533,30.069819],[121.626029,30.07769],[121.619927,30.088512],[121.61471,30.108308],[121.591678,30.143546],[121.561462,30.184176],[121.527554,30.224913],[121.49778,30.258595],[121.476274,30.279421],[121.452701,30.298565],[121.395073,30.338437],[121.371894,30.370894],[121.328046,30.397131],[121.278784,30.405057],[121.225486,30.404649],[121.183212,30.434348],[121.119236,30.48976],[121.099501,30.443661],[121.086952,30.397131],[121.06018,30.376371],[121.040102,30.352868],[121.032572,30.337006],[121.01392,30.323635],[120.99517,30.319914],[120.954373,30.306418],[120.916036,30.285762],[120.86702,30.271729]]],[[[122.026375,29.178351],[122.013383,29.151504],[122.027605,29.155806],[122.037645,29.151959],[122.039859,29.163253],[122.056739,29.158454],[122.06791,29.165611],[122.074505,29.178144],[122.063235,29.174008],[122.049013,29.175083],[122.044534,29.1841],[122.057576,29.188939],[122.050095,29.193488],[122.056198,29.200518],[122.036217,29.207383],[122.031247,29.196342],[122.037005,29.190552],[122.029771,29.187367],[122.040843,29.17955],[122.026375,29.178351]]],[[[122.231297,28.859829],[122.238679,28.853315],[122.243797,28.861322],[122.231297,28.859829]]],[[[122.181936,29.407693],[122.190204,29.415905],[122.205362,29.418092],[122.207921,29.429645],[122.223866,29.428366],[122.22485,29.438392],[122.21112,29.44095],[122.199358,29.436247],[122.197242,29.425478],[122.187497,29.421806],[122.179771,29.424694],[122.181936,29.407693]]],[[[121.790892,29.082264],[121.791089,29.074232],[121.808559,29.059243],[121.817319,29.063052],[121.82352,29.051043],[121.832329,29.050381],[121.838628,29.057752],[121.840941,29.081519],[121.831591,29.095015],[121.820272,29.099402],[121.793795,29.099444],[121.788677,29.094601],[121.790892,29.082264]]],[[[122.184299,29.460627],[122.183216,29.455595],[122.194141,29.45345],[122.19483,29.465453],[122.184299,29.460627]]],[[[122.026473,29.621859],[122.022389,29.620211],[122.025686,29.604314],[122.037645,29.613457],[122.033855,29.624741],[122.026473,29.621859]]],[[[122.258807,28.886586],[122.267321,28.880364],[122.267025,28.886835],[122.258807,28.886586]]],[[[121.983461,29.227808],[121.991089,29.221441],[122.001818,29.221441],[121.993451,29.227808],[121.983461,29.227808]]],[[[121.980705,29.472671],[121.990843,29.467845],[121.987792,29.474898],[121.980705,29.472671]]],[[[121.976178,29.501124],[121.983806,29.497042],[121.984741,29.503886],[122.004574,29.500299],[122.004967,29.503763],[121.989908,29.510071],[121.976178,29.501124]]],[[[121.952064,29.187616],[121.951719,29.183107],[121.971404,29.163294],[121.983511,29.165404],[121.981788,29.175911],[121.971601,29.185093],[121.975636,29.192123],[121.952064,29.187616]]],[[[121.930459,29.036051],[121.940991,29.03369],[121.954524,29.043961],[121.948766,29.047233],[121.931,29.041394],[121.930459,29.036051]]],[[[122.006641,29.234877],[122.00103,29.227394],[122.008609,29.222971],[122.013826,29.23281],[122.006641,29.234877]]],[[[122.001621,29.410416],[122.003835,29.405051],[122.016286,29.404185],[122.018944,29.409674],[122.001621,29.410416]]],[[[121.981444,29.332638],[121.978688,29.340485],[121.985135,29.348454],[121.970223,29.340856],[121.981444,29.332638]]],[[[122.178295,29.406001],[122.173866,29.399769],[122.184348,29.399604],[122.178295,29.406001]]],[[[122.009987,29.902654],[122.02165,29.901546],[122.02416,29.909594],[122.011513,29.917027],[122.005312,29.913044],[122.009987,29.902654]]],[[[122.006247,29.899574],[122.014367,29.892634],[122.017221,29.900806],[122.006247,29.899574]]]]}},{"type":"Feature","properties":{"adcode":330300,"name":"温州市","center":[120.672111,28.000575],"centroid":[120.463912,27.894726],"childrenNum":12,"level":"city","parent":{"adcode":330000},"subFeatureIndex":2,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.108409,28.139011],[121.123271,28.148117],[121.136805,28.168583],[121.146401,28.236133],[121.147385,28.263132],[121.155358,28.274064],[121.173911,28.277485],[121.205949,28.318654],[121.21589,28.351512],[121.204866,28.368437],[121.222041,28.372897],[121.227553,28.384818],[121.246155,28.385776],[121.251274,28.405279],[121.25772,28.408113],[121.236165,28.422696],[121.222829,28.422029],[121.226815,28.435569],[121.214413,28.43836],[121.206096,28.455979],[121.209098,28.458853],[121.19463,28.467099],[121.195171,28.473012],[121.180949,28.478343],[121.16958,28.505905],[121.156736,28.520475],[121.145565,28.523929],[121.129866,28.521723],[121.121352,28.532503],[121.104816,28.537289],[121.088182,28.51727],[121.085131,28.500993],[121.078734,28.495331],[121.076864,28.484089],[121.070417,28.480341],[121.049895,28.478259],[121.036115,28.481715],[121.025436,28.472763],[121.01771,28.478592],[121.002946,28.478717],[120.99517,28.473346],[120.98705,28.481715],[120.965593,28.482965],[120.95767,28.494831],[120.962198,28.509027],[120.954471,28.509027],[120.954028,28.498911],[120.944776,28.503449],[120.92765,28.505031],[120.914412,28.495997],[120.91082,28.48921],[120.894481,28.485546],[120.86953,28.491167],[120.854323,28.515313],[120.845071,28.514189],[120.83267,28.524595],[120.843054,28.542034],[120.829225,28.555558],[120.825829,28.566335],[120.802601,28.572201],[120.798221,28.576528],[120.798713,28.588758],[120.793644,28.583766],[120.782916,28.590547],[120.758703,28.591586],[120.757817,28.604314],[120.743496,28.611592],[120.729372,28.603773],[120.709096,28.611509],[120.70201,28.606352],[120.701026,28.592751],[120.687344,28.582476],[120.669234,28.579606],[120.653043,28.585014],[120.63946,28.577443],[120.649647,28.563006],[120.640002,28.557847],[120.631291,28.564005],[120.621202,28.55639],[120.627157,28.547402],[120.624303,28.533377],[120.598811,28.53396],[120.583358,28.530797],[120.572236,28.537498],[120.567856,28.531879],[120.554716,28.535958],[120.549204,28.533585],[120.541232,28.543365],[120.528781,28.548359],[120.524056,28.55535],[120.501566,28.56001],[120.493495,28.577776],[120.471891,28.586928],[120.446349,28.584307],[120.441871,28.573324],[120.4307,28.568165],[120.434145,28.553727],[120.430503,28.534293],[120.422727,28.533627],[120.422186,28.522223],[120.414952,28.512358],[120.414952,28.496871],[120.419135,28.491875],[120.405995,28.480425],[120.398957,28.465017],[120.387786,28.479467],[120.384341,28.458894],[120.372137,28.446982],[120.381044,28.436277],[120.381684,28.42557],[120.374302,28.410821],[120.366723,28.424279],[120.34379,28.431903],[120.33818,28.427112],[120.338819,28.412363],[120.331684,28.407571],[120.337638,28.395528],[120.344725,28.392444],[120.33503,28.384484],[120.334686,28.371355],[120.353485,28.367228],[120.359883,28.359391],[120.360768,28.3453],[120.346595,28.335126],[120.357914,28.32883],[120.369971,28.331332],[120.377698,28.31757],[120.394971,28.315485],[120.402796,28.305976],[120.414164,28.302931],[120.417019,28.288832],[120.426418,28.268056],[120.421448,28.253827],[120.433505,28.246984],[120.438426,28.234463],[120.415788,28.213927],[120.41195,28.199482],[120.425188,28.196351],[120.431044,28.186915],[120.422087,28.182823],[120.413672,28.172633],[120.421546,28.160188],[120.385916,28.147365],[120.38567,28.14206],[120.408013,28.131617],[120.405601,28.124222],[120.411851,28.11457],[120.390542,28.094303],[120.383652,28.09539],[120.368446,28.088912],[120.362294,28.080093],[120.37381,28.066174],[120.372432,28.054929],[120.357176,28.050581],[120.350286,28.052588],[120.344922,28.040003],[120.34881,28.034902],[120.348711,28.021018],[120.344479,28.019011],[120.335522,27.990444],[120.349154,27.987683],[120.336064,27.970697],[120.328928,27.966681],[120.324646,27.978981],[120.295168,27.977057],[120.276516,27.959609],[120.265591,27.95714],[120.257471,27.96735],[120.248957,27.964003],[120.24561,27.943415],[120.241575,27.934961],[120.229961,27.931361],[120.218691,27.93563],[120.202057,27.935965],[120.187835,27.948562],[120.178337,27.952956],[120.174842,27.960404],[120.176713,27.972203],[120.171939,27.978563],[120.145758,27.979692],[120.143888,27.976596],[120.11746,27.982621],[120.096889,27.980613],[120.084389,27.967099],[120.074301,27.972287],[120.064311,27.961241],[120.063572,27.951073],[120.043001,27.951115],[120.031781,27.941322],[120.020511,27.939606],[120.009389,27.947892],[120.001269,27.941029],[119.966919,27.937597],[119.962145,27.950236],[119.968739,27.962496],[119.96244,27.97622],[119.928631,27.968814],[119.90683,27.954253],[119.892115,27.951366],[119.875235,27.974128],[119.86554,27.966388],[119.865688,27.950864],[119.861997,27.949525],[119.854861,27.961911],[119.833601,27.956178],[119.831436,27.951617],[119.85117,27.932198],[119.843099,27.92705],[119.83306,27.911353],[119.825284,27.911771],[119.815146,27.92073],[119.804713,27.922111],[119.786455,27.909302],[119.791032,27.898584],[119.800186,27.890545],[119.790097,27.867095],[119.785077,27.861651],[119.788965,27.85319],[119.785766,27.833503],[119.793886,27.826381],[119.785766,27.822485],[119.787882,27.808993],[119.785077,27.795793],[119.773069,27.794075],[119.768148,27.805306],[119.756189,27.795625],[119.734831,27.766622],[119.725874,27.767712],[119.719427,27.76046],[119.696986,27.753626],[119.680205,27.744193],[119.678581,27.734005],[119.665982,27.721886],[119.650726,27.717147],[119.650923,27.695547],[119.65614,27.69345],[119.646937,27.685732],[119.643,27.673188],[119.635569,27.668405],[119.644033,27.663496],[119.639654,27.652671],[119.647528,27.640543],[119.64113,27.625392],[119.626465,27.620481],[119.630894,27.582698],[119.645461,27.578205],[119.675038,27.574383],[119.672036,27.556409],[119.668837,27.556493],[119.659339,27.539693],[119.670559,27.536584],[119.690589,27.537256],[119.689506,27.534064],[119.708551,27.514276],[119.702892,27.500285],[119.709634,27.496797],[119.710717,27.482508],[119.706681,27.470656],[119.709929,27.46246],[119.704024,27.458508],[119.703433,27.447284],[119.693886,27.438665],[119.685471,27.438413],[119.689506,27.430845],[119.704713,27.424706],[119.704319,27.416927],[119.71303,27.402838],[119.724349,27.401703],[119.733847,27.388706],[119.739555,27.386813],[119.740294,27.375708],[119.750481,27.373226],[119.740491,27.362203],[119.74743,27.359973],[119.751022,27.350086],[119.769132,27.345415],[119.768394,27.335736],[119.781485,27.330476],[119.784979,27.323574],[119.777991,27.320164],[119.769772,27.324373],[119.77056,27.305685],[119.790491,27.302612],[119.795756,27.310441],[119.819526,27.296045],[119.822331,27.301433],[119.840146,27.298908],[119.844822,27.306653],[119.835077,27.312967],[119.8462,27.324037],[119.856731,27.314819],[119.871298,27.315408],[119.865589,27.306232],[119.887637,27.313304],[119.899054,27.311494],[119.903286,27.317597],[119.933503,27.316545],[119.944035,27.314146],[119.937932,27.3346],[119.960176,27.351853],[119.964015,27.360478],[119.960275,27.366116],[119.988326,27.371375],[119.994232,27.379199],[120.005206,27.376675],[120.009586,27.363928],[120.015984,27.36477],[120.026614,27.350801],[120.027549,27.342259],[120.052303,27.338682],[120.077007,27.369187],[120.09684,27.37962],[120.09625,27.390347],[120.107175,27.395562],[120.121594,27.397413],[120.128878,27.391608],[120.137195,27.402334],[120.131437,27.416716],[120.141821,27.422183],[120.163376,27.424874],[120.176909,27.419954],[120.202402,27.428364],[120.213228,27.420291],[120.221595,27.420291],[120.24689,27.434587],[120.249006,27.439885],[120.262441,27.432905],[120.26377,27.41802],[120.258209,27.412679],[120.273366,27.389421],[120.289508,27.395941],[120.302697,27.392197],[120.315148,27.393165],[120.315985,27.406708],[120.319823,27.399684],[120.331733,27.396025],[120.340739,27.399642],[120.351566,27.383574],[120.343249,27.366242],[120.355257,27.353873],[120.351467,27.346761],[120.358357,27.337546],[120.374794,27.329255],[120.383406,27.312714],[120.401369,27.298571],[120.4088,27.276636],[120.43006,27.258866],[120.422383,27.250822],[120.415395,27.256381],[120.401763,27.250864],[120.398515,27.242483],[120.413918,27.230942],[120.400926,27.211564],[120.404371,27.20398],[120.42568,27.183333],[120.426172,27.173472],[120.43759,27.161039],[120.445267,27.16087],[120.461655,27.142576],[120.467757,27.143166],[120.492462,27.136168],[120.522285,27.142154],[120.545956,27.156824],[120.55324,27.17343],[120.556143,27.204065],[120.564116,27.220243],[120.571497,27.228204],[120.576173,27.241135],[120.554765,27.252044],[120.552944,27.257771],[120.563427,27.277941],[120.574057,27.286699],[120.57573,27.293645],[120.571645,27.309978],[120.580307,27.321385],[120.612246,27.336915],[120.657079,27.352316],[120.670071,27.362834],[120.675041,27.382312],[120.673614,27.419954],[120.676813,27.431055],[120.699648,27.465654],[120.702797,27.478726],[120.686311,27.4923],[120.678191,27.516419],[120.662295,27.519612],[120.642807,27.556577],[120.637049,27.561449],[120.634884,27.577281],[120.652059,27.586854],[120.674992,27.609105],[120.685376,27.622999],[120.700681,27.669412],[120.708949,27.682585],[120.739658,27.702175],[120.761114,27.717692],[120.771646,27.734466],[120.777699,27.774712],[120.798713,27.762137],[120.809638,27.77555],[120.840642,27.758741],[120.883703,27.820934],[120.910869,27.864708],[120.941774,27.896784],[120.951469,27.895905],[120.974255,27.887196],[121.012149,27.846237],[121.020072,27.835891],[121.027798,27.832623],[121.069875,27.834215],[121.089856,27.817541],[121.107671,27.813686],[121.133015,27.813183],[121.152504,27.815362],[121.13144,27.797595],[121.13149,27.788836],[121.143842,27.791728],[121.15772,27.813895],[121.167169,27.811675],[121.184344,27.814105],[121.196647,27.833964],[121.200535,27.855159],[121.19586,27.869817],[121.185181,27.874801],[121.166775,27.876895],[121.160378,27.884641],[121.16274,27.902519],[121.157917,27.910306],[121.137395,27.908841],[121.116726,27.899798],[121.099452,27.895067],[121.075584,27.894439],[121.055899,27.900133],[120.991824,27.949734],[121.015249,27.981617],[121.02455,28.003745],[121.030948,28.033647],[121.039413,28.055849],[121.059098,28.096351],[121.07086,28.110517],[121.0902,28.127146],[121.108409,28.139011]]],[[[120.971745,27.649859],[120.974747,27.645033],[120.986509,27.655104],[120.988281,27.662783],[120.97957,27.670419],[120.967759,27.658042],[120.971745,27.649859]]],[[[121.199945,27.62493],[121.191677,27.62195],[121.198321,27.614646],[121.209,27.61855],[121.220811,27.630303],[121.213577,27.633324],[121.199945,27.62493]]],[[[121.113133,27.918344],[121.108163,27.910934],[121.113379,27.904403],[121.123911,27.911353],[121.123812,27.921274],[121.113133,27.918344]]],[[[121.131047,27.762472],[121.133114,27.753123],[121.144383,27.758531],[121.139118,27.765155],[121.131047,27.762472]]],[[[121.131047,27.770143],[121.136952,27.766999],[121.149846,27.772029],[121.138281,27.776682],[121.131047,27.770143]]],[[[121.107277,27.444005],[121.105407,27.454893],[121.089364,27.462628],[121.084147,27.472379],[121.066234,27.478222],[121.070515,27.471161],[121.055013,27.473893],[121.058852,27.463847],[121.050043,27.464688],[121.047976,27.458046],[121.066283,27.444972],[121.071942,27.444972],[121.063379,27.458298],[121.066381,27.461325],[121.086066,27.452413],[121.09399,27.453001],[121.107277,27.444005]]],[[[120.903388,27.69387],[120.911951,27.689171],[120.912099,27.699238],[120.903388,27.69387]]],[[[121.217415,27.613681],[121.224945,27.607048],[121.228685,27.616409],[121.217415,27.613681]]],[[[121.083655,27.791896],[121.073566,27.778023],[121.090545,27.776221],[121.096893,27.783053],[121.091037,27.793237],[121.083655,27.791896]]],[[[121.145761,27.760669],[121.146696,27.754171],[121.155013,27.756645],[121.145761,27.760669]]],[[[120.826223,27.686193],[120.832473,27.67688],[120.842758,27.675537],[120.833113,27.687368],[120.826223,27.686193]]],[[[121.224108,27.817876],[121.225043,27.824496],[121.213281,27.820096],[121.224108,27.817876]]],[[[120.824943,27.646208],[120.821991,27.634835],[120.8339,27.649985],[120.824943,27.646208]]],[[[121.204325,27.609735],[121.210033,27.608476],[121.216923,27.618928],[121.208951,27.618172],[121.204325,27.609735]]],[[[121.098173,27.937514],[121.125978,27.944126],[121.147385,27.953374],[121.152946,27.961576],[121.134049,27.980529],[121.120663,27.986637],[121.094334,27.984127],[121.076027,27.986344],[121.040544,27.964296],[121.03833,27.948939],[121.049993,27.94128],[121.063527,27.947809],[121.080259,27.947181],[121.098173,27.937514]]],[[[120.896548,27.711444],[120.887394,27.704523],[120.899451,27.706033],[120.896548,27.711444]]],[[[121.18587,27.962957],[121.206195,27.976889],[121.237543,27.988143],[121.24025,27.993748],[121.220122,27.991489],[121.194974,28.000148],[121.177356,27.990527],[121.171352,27.978605],[121.18587,27.962957]]],[[[121.04394,27.979316],[121.075436,27.990025],[121.08961,27.998684],[121.089068,28.004916],[121.074108,28.007426],[121.043251,27.993372],[121.04394,27.979316]]],[[[121.079029,27.428743],[121.090397,27.424538],[121.088084,27.431602],[121.076962,27.434125],[121.079029,27.428743]]],[[[121.112986,27.473136],[121.106539,27.473178],[121.112346,27.463511],[121.12337,27.466327],[121.112986,27.473136]]],[[[121.09458,27.494023],[121.085673,27.4923],[121.09458,27.486333],[121.09458,27.494023]]]]}},{"type":"Feature","properties":{"adcode":330400,"name":"嘉兴市","center":[120.750865,30.762653],"centroid":[120.783487,30.620063],"childrenNum":7,"level":"city","parent":{"adcode":330000},"subFeatureIndex":3,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.721941,30.286334],[120.739904,30.276639],[120.789362,30.263137],[120.825288,30.262687],[120.86702,30.271729],[120.916036,30.285762],[120.954373,30.306418],[120.99517,30.319914],[121.01392,30.323635],[121.032572,30.337006],[121.040102,30.352868],[121.06018,30.376371],[121.086952,30.397131],[121.099501,30.443661],[121.119236,30.48976],[121.093153,30.515842],[121.071598,30.542692],[121.058359,30.564028],[121.085377,30.575204],[121.11648,30.585482],[121.149206,30.60004],[121.15088,30.611783],[121.172632,30.625807],[121.188872,30.633063],[121.221008,30.63987],[121.231687,30.644109],[121.244974,30.654787],[121.257031,30.673653],[121.27465,30.677402],[121.270663,30.70156],[121.265841,30.709502],[121.272041,30.723268],[121.269778,30.73072],[121.256392,30.743954],[121.232277,30.755801],[121.226224,30.775096],[121.218006,30.784945],[121.200092,30.783277],[121.200338,30.773631],[121.191825,30.77884],[121.174649,30.772002],[121.1527,30.778962],[121.140643,30.776927],[121.122976,30.779003],[121.117267,30.785474],[121.126273,30.788567],[121.128143,30.809971],[121.137641,30.826245],[121.134639,30.833038],[121.120614,30.836333],[121.123566,30.847274],[121.114757,30.851463],[121.104816,30.849349],[121.09773,30.857116],[121.080456,30.848739],[121.060525,30.8452],[121.06205,30.837797],[121.039954,30.827221],[121.037936,30.813877],[121.030062,30.828564],[121.010918,30.834625],[120.994629,30.821485],[120.989117,30.832306],[120.997779,30.844061],[121.003979,30.846095],[121.016283,30.86285],[121.014806,30.871024],[121.021893,30.875171],[121.008507,30.888141],[120.993842,30.889645],[120.99266,30.90184],[121.002552,30.904848],[120.99896,30.909522],[121.000042,30.934719],[120.99143,30.968358],[121.000534,30.973923],[120.989511,31.01441],[120.963182,31.016603],[120.95831,31.028579],[120.949107,31.029959],[120.949993,31.017618],[120.936312,31.017131],[120.940101,31.010026],[120.918103,31.012786],[120.910081,31.016928],[120.895121,31.017374],[120.891331,31.003732],[120.868054,30.995367],[120.865642,30.989803],[120.853241,30.992971],[120.847335,30.9896],[120.840052,30.997803],[120.820908,31.006371],[120.802896,31.005397],[120.769923,30.996626],[120.769677,30.977294],[120.758457,30.974532],[120.745957,30.962509],[120.736114,30.963728],[120.725583,30.971527],[120.710081,30.971892],[120.705504,30.966449],[120.69822,30.970796],[120.684441,30.955156],[120.697581,30.950321],[120.709441,30.933175],[120.712689,30.919683],[120.709835,30.907531],[120.713279,30.885051],[120.702551,30.884034],[120.704274,30.872935],[120.699943,30.867811],[120.682817,30.88253],[120.673073,30.874927],[120.663082,30.861346],[120.658703,30.86529],[120.655405,30.847518],[120.644726,30.854839],[120.625681,30.855896],[120.616872,30.849999],[120.602994,30.848901],[120.588968,30.854432],[120.580897,30.845688],[120.56382,30.83552],[120.517462,30.772287],[120.50442,30.757959],[120.489066,30.763861],[120.469972,30.764431],[120.471891,30.746682],[120.486261,30.727992],[120.475287,30.710724],[120.462885,30.701397],[120.444479,30.701763],[120.441182,30.695572],[120.455011,30.68555],[120.407963,30.675691],[120.406093,30.670761],[120.379469,30.669375],[120.378288,30.656539],[120.364607,30.654542],[120.353977,30.662815],[120.344971,30.662733],[120.340099,30.631351],[120.332717,30.615044],[120.30939,30.612639],[120.303189,30.60901],[120.302599,30.595636],[120.319134,30.579079],[120.304715,30.564477],[120.295955,30.565537],[120.299498,30.557093],[120.301959,30.530002],[120.299892,30.5198],[120.317707,30.521596],[120.326123,30.500414],[120.329174,30.468407],[120.341379,30.472286],[120.337245,30.464324],[120.340345,30.433899],[120.330749,30.427282],[120.332963,30.417314],[120.322038,30.404731],[120.306388,30.396232],[120.315689,30.394311],[120.318642,30.380621],[120.342953,30.37163],[120.362835,30.374695],[120.398318,30.38479],[120.400926,30.377025],[120.388524,30.370118],[120.378091,30.344937],[120.413771,30.318319],[120.43882,30.373388],[120.460227,30.382665],[120.498761,30.38904],[120.567856,30.387855],[120.633899,30.389449],[120.658998,30.385607],[120.692955,30.377965],[120.70388,30.365867],[120.704126,30.330791],[120.706045,30.309444],[120.710868,30.297542],[120.721941,30.286334]]]]}},{"type":"Feature","properties":{"adcode":330500,"name":"湖州市","center":[120.102398,30.867198],"centroid":[119.873663,30.743058],"childrenNum":5,"level":"city","parent":{"adcode":330000},"subFeatureIndex":4,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.489066,30.763861],[120.477009,30.785596],[120.477255,30.800002],[120.455257,30.816847],[120.461015,30.828279],[120.460375,30.839872],[120.454469,30.849633],[120.44128,30.856303],[120.452353,30.867893],[120.439558,30.885213],[120.434489,30.887978],[120.442265,30.90058],[120.434981,30.920821],[120.423416,30.927445],[120.418003,30.925576],[120.423515,30.90306],[120.394676,30.890783],[120.37942,30.890783],[120.372432,30.882164],[120.364656,30.880457],[120.358012,30.887084],[120.360129,30.892775],[120.35693,30.908872],[120.362688,30.921674],[120.35944,30.931915],[120.371103,30.948777],[120.343347,30.939961],[120.308061,30.932281],[120.250778,30.926226],[120.221791,30.926876],[120.149646,30.937482],[120.135128,30.941911],[120.111014,30.955928],[120.09438,30.973233],[120.05245,31.005722],[120.017017,31.017821],[120.001712,31.027118],[119.988523,31.059223],[119.969773,31.074277],[119.946249,31.106245],[119.936751,31.146555],[119.921052,31.16119],[119.920954,31.170392],[119.900235,31.169176],[119.878729,31.160785],[119.866623,31.168324],[119.842164,31.16877],[119.837587,31.173675],[119.826465,31.173188],[119.823463,31.165811],[119.829762,31.161393],[119.823316,31.154136],[119.809881,31.148501],[119.800973,31.156325],[119.791278,31.156609],[119.793394,31.168041],[119.779319,31.178782],[119.755353,31.170756],[119.740491,31.173432],[119.713128,31.167635],[119.703876,31.151906],[119.682764,31.160501],[119.678039,31.168203],[119.663719,31.165973],[119.662537,31.159852],[119.641573,31.148136],[119.638128,31.135526],[119.623807,31.130254],[119.624152,31.11602],[119.649152,31.105109],[119.634683,31.093751],[119.629516,31.082311],[119.634978,31.064174],[119.631337,31.046317],[119.634043,31.019485],[119.624004,31.005316],[119.616277,31.002392],[119.607468,30.991875],[119.585864,30.976401],[119.579565,30.962671],[119.582173,30.947437],[119.580352,30.929152],[119.563817,30.919236],[119.556336,30.896718],[119.559092,30.891718],[119.558945,30.871186],[119.573758,30.853334],[119.575726,30.829743],[119.561208,30.829459],[119.554515,30.825635],[119.524496,30.776032],[119.507124,30.769642],[119.491523,30.777253],[119.479564,30.771229],[119.478777,30.753074],[119.484584,30.744605],[119.480303,30.738091],[119.482763,30.704452],[119.465982,30.683921],[119.45294,30.671616],[119.448314,30.655846],[119.433649,30.644476],[119.412684,30.642968],[119.400037,30.658862],[119.395657,30.678706],[119.391523,30.685224],[119.379367,30.679358],[119.372379,30.680376],[119.354564,30.66693],[119.343147,30.6642],[119.333648,30.652219],[119.323117,30.630291],[119.311946,30.621241],[119.291227,30.616023],[119.278383,30.617613],[119.255006,30.615126],[119.245853,30.618877],[119.240095,30.604933],[119.253678,30.596452],[119.254121,30.588663],[119.264751,30.582056],[119.264751,30.57345],[119.245508,30.561417],[119.236945,30.546731],[119.242556,30.530043],[119.261896,30.525554],[119.26165,30.51776],[119.272133,30.510495],[119.28793,30.512618],[119.313619,30.531186],[119.326562,30.532981],[119.328678,30.521637],[119.336355,30.507149],[119.330351,30.488249],[119.334485,30.478084],[119.336158,30.44558],[119.349692,30.438841],[119.352989,30.424831],[119.349544,30.408612],[119.360912,30.410737],[119.368934,30.399746],[119.366572,30.388386],[119.371444,30.383932],[119.393836,30.383033],[119.403038,30.373347],[119.418147,30.376085],[119.435716,30.391492],[119.441031,30.392472],[119.450234,30.410818],[119.467015,30.408122],[119.490391,30.408203],[119.513127,30.401666],[119.533452,30.409429],[119.535273,30.424055],[119.55176,30.43978],[119.565933,30.443375],[119.572823,30.431326],[119.581779,30.423646],[119.594968,30.421644],[119.627941,30.431775],[119.635569,30.441782],[119.650579,30.440352],[119.642951,30.428507],[119.631829,30.424667],[119.63739,30.410369],[119.633256,30.395292],[119.646691,30.39378],[119.6555,30.40518],[119.668099,30.399501],[119.681091,30.408735],[119.686012,30.417559],[119.709191,30.434062],[119.694919,30.452727],[119.695362,30.464488],[119.701711,30.467999],[119.708896,30.487964],[119.704713,30.494577],[119.709191,30.508822],[119.70486,30.525963],[119.695018,30.542325],[119.69241,30.556155],[119.71175,30.566516],[119.729073,30.551749],[119.743246,30.550158],[119.768936,30.551341],[119.766376,30.514087],[119.784044,30.511026],[119.794182,30.505638],[119.815884,30.510659],[119.836013,30.496577],[119.851121,30.502006],[119.854123,30.493964],[119.867115,30.477757],[119.880796,30.476206],[119.872578,30.462487],[119.890048,30.457056],[119.90304,30.459424],[119.90934,30.456321],[119.921544,30.462528],[119.931436,30.456443],[119.934979,30.446764],[119.950728,30.444232],[119.955895,30.433654],[119.965048,30.431571],[119.982962,30.445294],[120.00368,30.444273],[120.013818,30.435614],[120.041525,30.433368],[120.046102,30.427445],[120.064754,30.4301],[120.062145,30.434634],[120.0681,30.445948],[120.059242,30.459016],[120.059488,30.47343],[120.065836,30.483595],[120.068297,30.496618],[120.099252,30.495801],[120.096742,30.48678],[120.11121,30.476206],[120.146004,30.482697],[120.149793,30.467509],[120.175039,30.476818],[120.180551,30.482534],[120.173809,30.492046],[120.185915,30.494618],[120.185079,30.502618],[120.195659,30.503598],[120.201762,30.514413],[120.205404,30.505843],[120.224597,30.509761],[120.239262,30.50523],[120.25191,30.506536],[120.277451,30.504822],[120.285817,30.507802],[120.299892,30.5198],[120.301959,30.530002],[120.299498,30.557093],[120.295955,30.565537],[120.304715,30.564477],[120.319134,30.579079],[120.302599,30.595636],[120.303189,30.60901],[120.30939,30.612639],[120.332717,30.615044],[120.340099,30.631351],[120.344971,30.662733],[120.353977,30.662815],[120.364607,30.654542],[120.378288,30.656539],[120.379469,30.669375],[120.406093,30.670761],[120.407963,30.675691],[120.455011,30.68555],[120.441182,30.695572],[120.444479,30.701763],[120.462885,30.701397],[120.475287,30.710724],[120.486261,30.727992],[120.471891,30.746682],[120.469972,30.764431],[120.489066,30.763861]]]]}},{"type":"Feature","properties":{"adcode":330600,"name":"绍兴市","center":[120.582112,29.997117],"centroid":[120.640933,29.732893],"childrenNum":6,"level":"city","parent":{"adcode":330000},"subFeatureIndex":5,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.973119,29.674804],[119.988818,29.661179],[119.991082,29.654346],[120.002598,29.655087],[120.021692,29.647964],[120.029074,29.653275],[120.029468,29.667807],[120.037194,29.663979],[120.036702,29.653852],[120.024744,29.647923],[120.031732,29.636806],[120.044625,29.631618],[120.045216,29.626389],[120.035078,29.617452],[120.019232,29.617864],[120.006486,29.593563],[120.007076,29.57247],[120.02996,29.56596],[120.040147,29.570162],[120.054714,29.558213],[120.051122,29.549682],[120.05875,29.542635],[120.073612,29.537648],[120.08808,29.536412],[120.091722,29.532249],[120.085029,29.514523],[120.07558,29.513163],[120.079616,29.504711],[120.093346,29.500299],[120.102893,29.506608],[120.114212,29.497496],[120.127057,29.494279],[120.13877,29.508463],[120.157421,29.512544],[120.17125,29.521614],[120.185472,29.541357],[120.186506,29.548776],[120.200728,29.549476],[120.2119,29.535711],[120.207864,29.528951],[120.223809,29.52182],[120.227057,29.514441],[120.241821,29.512008],[120.249449,29.504793],[120.250925,29.496052],[120.268494,29.49865],[120.282077,29.489249],[120.269676,29.481042],[120.261801,29.469165],[120.267215,29.452253],[120.281536,29.440785],[120.277992,29.416771],[120.264016,29.400842],[120.261359,29.390358],[120.266723,29.376571],[120.278288,29.363443],[120.289902,29.355598],[120.307619,29.365714],[120.317953,29.379791],[120.325335,29.380658],[120.333308,29.395146],[120.334243,29.403483],[120.343692,29.41021],[120.361999,29.415038],[120.372825,29.414915],[120.369971,29.428655],[120.36441,29.433854],[120.367314,29.445571],[120.383997,29.456172],[120.398465,29.45576],[120.410375,29.450645],[120.427796,29.477207],[120.461458,29.48496],[120.474844,29.492877],[120.497777,29.474361],[120.496448,29.466773],[120.515247,29.468546],[120.522186,29.456997],[120.515592,29.451593],[120.511852,29.44029],[120.511163,29.419412],[120.523761,29.401461],[120.53823,29.391514],[120.550484,29.390936],[120.55949,29.379626],[120.553781,29.371493],[120.566675,29.367324],[120.57819,29.357704],[120.571399,29.34288],[120.579125,29.340113],[120.590986,29.348496],[120.600976,29.334166],[120.624106,29.336355],[120.645218,29.328054],[120.653683,29.33429],[120.670218,29.325534],[120.687935,29.341889],[120.697433,29.341847],[120.704667,29.347587],[120.707866,29.341311],[120.699844,29.318843],[120.711508,29.302113],[120.720415,29.303187],[120.725927,29.310251],[120.738723,29.30959],[120.749894,29.31591],[120.76141,29.313391],[120.773024,29.304633],[120.756784,29.28629],[120.759047,29.281125],[120.775091,29.276951],[120.772384,29.262859],[120.776567,29.242111],[120.773171,29.231859],[120.776518,29.225079],[120.806144,29.234009],[120.82391,29.229503],[120.838428,29.237895],[120.853634,29.253519],[120.862148,29.252362],[120.867266,29.24455],[120.882227,29.239217],[120.900042,29.240788],[120.897335,29.253478],[120.890692,29.260462],[120.891627,29.270009],[120.903782,29.276042],[120.904225,29.295462],[120.915347,29.303311],[120.928093,29.291702],[120.942611,29.289595],[120.956883,29.282447],[120.964806,29.306327],[120.990889,29.309219],[121.005554,29.319421],[121.020515,29.317728],[121.024009,29.308103],[121.04084,29.309549],[121.056539,29.322891],[121.074698,29.322106],[121.099501,29.317893],[121.096155,29.305707],[121.117513,29.304509],[121.120368,29.318719],[121.117956,29.33111],[121.122041,29.336396],[121.133704,29.338337],[121.149846,29.330903],[121.160574,29.340154],[121.163084,29.325039],[121.175092,29.323097],[121.180456,29.32921],[121.194187,29.322189],[121.193399,29.341434],[121.20024,29.342384],[121.213134,29.353575],[121.230063,29.362658],[121.226421,29.384662],[121.231441,29.393825],[121.226815,29.414749],[121.215102,29.417267],[121.218252,29.421146],[121.209197,29.436742],[121.217514,29.439217],[121.224059,29.449242],[121.216972,29.452666],[121.219827,29.477785],[121.228488,29.490733],[121.216726,29.496795],[121.231539,29.51308],[121.225585,29.532908],[121.213183,29.530311],[121.20585,29.536947],[121.183557,29.538802],[121.169334,29.537112],[121.155702,29.54177],[121.140348,29.543006],[121.130948,29.554174],[121.112986,29.554834],[121.113478,29.56596],[121.120417,29.575601],[121.115643,29.586724],[121.105702,29.585447],[121.117562,29.605508],[121.110181,29.607444],[121.113281,29.613745],[121.101716,29.626265],[121.08774,29.628077],[121.074206,29.637259],[121.074895,29.66085],[121.068399,29.66686],[121.058802,29.683859],[121.054226,29.68567],[121.038428,29.675751],[121.017759,29.669742],[120.992414,29.675833],[120.992956,29.685259],[121.010229,29.68674],[121.01397,29.693119],[121.006785,29.698592],[121.009639,29.709003],[121.034787,29.715997],[121.035869,29.72114],[121.019727,29.723403],[121.010722,29.73525],[121.014954,29.741667],[121.03518,29.746439],[121.024796,29.763918],[121.033999,29.76877],[121.045515,29.76729],[121.055111,29.760669],[121.08208,29.778433],[121.092612,29.788959],[121.096007,29.797839],[121.104964,29.805485],[121.096499,29.815966],[121.10649,29.836228],[121.085771,29.849295],[121.077011,29.849007],[121.063133,29.859032],[121.060574,29.854143],[121.031096,29.874602],[121.016578,29.894934],[121.023172,29.897357],[121.031637,29.911073],[121.0308,29.918792],[121.042021,29.933203],[121.045072,29.955616],[121.066135,29.960829],[121.07647,29.970391],[121.085869,29.972648],[121.091627,29.987257],[121.082621,29.991072],[121.075781,30.001986],[121.064413,30.006827],[121.05142,30.006786],[121.038133,29.998704],[121.034737,30.003955],[121.039511,30.013923],[121.018202,30.010765],[120.990151,30.027787],[120.986509,30.044274],[120.992562,30.050425],[120.986656,30.054402],[120.98144,30.067359],[120.969924,30.07027],[120.973861,30.078305],[120.96766,30.089987],[120.959737,30.094537],[120.950141,30.091012],[120.93828,30.113021],[120.930455,30.115192],[120.939461,30.125723],[120.931194,30.146618],[120.92765,30.165215],[120.916233,30.188394],[120.893447,30.228843],[120.86702,30.271729],[120.825288,30.262687],[120.789362,30.263137],[120.739904,30.276639],[120.721941,30.286334],[120.693939,30.262032],[120.669037,30.23314],[120.642708,30.217258],[120.612787,30.16628],[120.609145,30.152845],[120.593496,30.146782],[120.568348,30.151329],[120.563427,30.147929],[120.550927,30.15563],[120.529371,30.157514],[120.518495,30.155384],[120.506143,30.159767],[120.498072,30.169187],[120.484096,30.172218],[120.46131,30.168041],[120.459243,30.151165],[120.452304,30.15137],[120.44694,30.135434],[120.429617,30.132443],[120.422875,30.135884],[120.426074,30.144283],[120.420956,30.152763],[120.410867,30.149527],[120.411359,30.132607],[120.399007,30.136335],[120.387835,30.156163],[120.37317,30.155507],[120.358751,30.147847],[120.352008,30.150674],[120.353386,30.142194],[120.339607,30.142112],[120.327993,30.125191],[120.318002,30.12601],[120.312245,30.1374],[120.297825,30.128182],[120.303731,30.126666],[120.300286,30.118348],[120.286851,30.106791],[120.299302,30.097365],[120.313327,30.107078],[120.333701,30.09548],[120.338623,30.070229],[120.33818,30.060881],[120.324941,30.048621],[120.331831,30.037918],[120.343593,30.034924],[120.345808,30.019707],[120.35693,30.011708],[120.362835,29.99776],[120.360473,29.98857],[120.364312,29.978516],[120.360473,29.973674],[120.346447,29.973797],[120.340493,29.956068],[120.326073,29.946216],[120.325188,29.93854],[120.312048,29.927702],[120.291034,29.935666],[120.284144,29.922159],[120.2744,29.919531],[120.265296,29.924499],[120.264754,29.930986],[120.255207,29.94363],[120.250729,29.936693],[120.221004,29.942235],[120.200433,29.929467],[120.204813,29.924048],[120.185079,29.904502],[120.17627,29.913578],[120.166329,29.917273],[120.159587,29.906227],[120.150039,29.905036],[120.150285,29.887582],[120.144773,29.874109],[120.131289,29.858827],[120.109931,29.845967],[120.101122,29.830269],[120.102746,29.823981],[120.095807,29.816583],[120.074252,29.82731],[120.065639,29.822049],[120.038425,29.82283],[120.030059,29.806307],[120.036604,29.788548],[120.030059,29.78275],[120.030059,29.770538],[120.011505,29.761491],[120.010915,29.757214],[119.991968,29.753143],[119.973119,29.765809],[119.960275,29.755158],[119.944576,29.755528],[119.927204,29.744423],[119.913572,29.755857],[119.904369,29.754582],[119.890343,29.762931],[119.889064,29.753102],[119.900481,29.74467],[119.901367,29.728627],[119.912489,29.720399],[119.914655,29.704682],[119.922529,29.697769],[119.933454,29.699415],[119.937735,29.70748],[119.951269,29.699292],[119.967411,29.694889],[119.973464,29.68995],[119.973119,29.674804]]]]}},{"type":"Feature","properties":{"adcode":330700,"name":"金华市","center":[119.649506,29.089524],"centroid":[119.957007,29.115117],"childrenNum":9,"level":"city","parent":{"adcode":330000},"subFeatureIndex":6,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.322428,28.800897],[119.328629,28.800565],[119.327694,28.779806],[119.338422,28.761161],[119.346247,28.757008],[119.358206,28.761037],[119.359534,28.768304],[119.368737,28.774118],[119.371887,28.784789],[119.387684,28.786948],[119.412438,28.76166],[119.413619,28.751983],[119.421198,28.749159],[119.430696,28.755596],[119.470854,28.765356],[119.473019,28.749782],[119.479663,28.739647],[119.463767,28.742306],[119.460814,28.73944],[119.46421,28.70824],[119.458895,28.683848],[119.462241,28.661237],[119.455696,28.650886],[119.461208,28.634879],[119.468442,28.633632],[119.482025,28.639453],[119.488423,28.626438],[119.507911,28.615335],[119.509879,28.603357],[119.498068,28.584848],[119.494427,28.554018],[119.498413,28.54865],[119.514653,28.561675],[119.53488,28.555724],[119.535175,28.543782],[119.542458,28.532628],[119.568492,28.532295],[119.574201,28.523888],[119.613374,28.5278],[119.629171,28.525386],[119.638276,28.528508],[119.644722,28.541867],[119.660224,28.539953],[119.674742,28.530006],[119.703581,28.533211],[119.707813,28.545738],[119.717705,28.553769],[119.720461,28.56596],[119.739309,28.584848],[119.7399,28.591462],[119.754122,28.592668],[119.767065,28.588009],[119.773955,28.603233],[119.772725,28.608556],[119.749398,28.622696],[119.752449,28.635253],[119.764949,28.638704],[119.777252,28.630887],[119.794969,28.632883],[119.811751,28.65392],[119.813867,28.68684],[119.826367,28.695317],[119.849644,28.716591],[119.86618,28.718503],[119.874448,28.73541],[119.87179,28.742306],[119.882371,28.7492],[119.886751,28.744632],[119.89807,28.750363],[119.906731,28.768553],[119.921003,28.784],[119.921298,28.796164],[119.942164,28.793009],[119.948562,28.787197],[119.967607,28.787819],[119.971643,28.794255],[119.982421,28.796662],[120.005304,28.780886],[120.010669,28.772207],[120.025679,28.764151],[120.028976,28.758047],[120.049202,28.763155],[120.083946,28.787031],[120.097037,28.768553],[120.109882,28.767224],[120.111309,28.762324],[120.131437,28.759708],[120.145561,28.784],[120.165344,28.774325],[120.178435,28.775239],[120.183553,28.785162],[120.198858,28.783958],[120.209341,28.795832],[120.200335,28.80181],[120.20186,28.810029],[120.215148,28.825885],[120.216526,28.832608],[120.236506,28.844808],[120.241821,28.857256],[120.260719,28.865471],[120.261752,28.911429],[120.250729,28.913792],[120.258603,28.927103],[120.255453,28.931],[120.264951,28.93896],[120.271004,28.950112],[120.277894,28.930544],[120.303977,28.931664],[120.314312,28.9191],[120.303239,28.892808],[120.315394,28.887042],[120.316428,28.876879],[120.331388,28.868914],[120.338278,28.860244],[120.347284,28.858252],[120.357914,28.839372],[120.368446,28.838044],[120.388475,28.829454],[120.392855,28.834558],[120.392954,28.847132],[120.404715,28.853813],[120.406881,28.845182],[120.418101,28.851655],[120.426713,28.831985],[120.441773,28.841406],[120.473909,28.839206],[120.481143,28.828167],[120.486802,28.846012],[120.498466,28.849207],[120.502206,28.857215],[120.494972,28.86601],[120.509982,28.874888],[120.514706,28.890734],[120.525484,28.878663],[120.533948,28.879534],[120.533604,28.866301],[120.542757,28.867048],[120.56323,28.861696],[120.579962,28.869371],[120.590051,28.881111],[120.60447,28.890692],[120.619086,28.895628],[120.64699,28.90048],[120.663771,28.916488],[120.664953,28.923786],[120.659638,28.937136],[120.673417,28.959895],[120.673319,28.973158],[120.677699,28.977302],[120.696695,28.980037],[120.69886,28.972992],[120.717315,28.973779],[120.726665,28.98128],[120.72199,28.995245],[120.72952,28.99711],[120.72824,29.009829],[120.720317,29.012356],[120.724451,29.023873],[120.713575,29.035264],[120.701714,29.022713],[120.693151,29.040565],[120.70073,29.044334],[120.691626,29.052079],[120.702207,29.060195],[120.704864,29.075888],[120.694382,29.086942],[120.701222,29.097457],[120.709884,29.098409],[120.723614,29.119145],[120.736606,29.11331],[120.746843,29.122911],[120.734441,29.13127],[120.722187,29.130236],[120.712295,29.143767],[120.731095,29.164494],[120.749648,29.176035],[120.759884,29.189022],[120.77824,29.19965],[120.773171,29.205687],[120.783063,29.221193],[120.776518,29.225079],[120.773171,29.231859],[120.776567,29.242111],[120.772384,29.262859],[120.775091,29.276951],[120.759047,29.281125],[120.756784,29.28629],[120.773024,29.304633],[120.76141,29.313391],[120.749894,29.31591],[120.738723,29.30959],[120.725927,29.310251],[120.720415,29.303187],[120.711508,29.302113],[120.699844,29.318843],[120.707866,29.341311],[120.704667,29.347587],[120.697433,29.341847],[120.687935,29.341889],[120.670218,29.325534],[120.653683,29.33429],[120.645218,29.328054],[120.624106,29.336355],[120.600976,29.334166],[120.590986,29.348496],[120.579125,29.340113],[120.571399,29.34288],[120.57819,29.357704],[120.566675,29.367324],[120.553781,29.371493],[120.55949,29.379626],[120.550484,29.390936],[120.53823,29.391514],[120.523761,29.401461],[120.511163,29.419412],[120.511852,29.44029],[120.515592,29.451593],[120.522186,29.456997],[120.515247,29.468546],[120.496448,29.466773],[120.497777,29.474361],[120.474844,29.492877],[120.461458,29.48496],[120.427796,29.477207],[120.410375,29.450645],[120.398465,29.45576],[120.383997,29.456172],[120.367314,29.445571],[120.36441,29.433854],[120.369971,29.428655],[120.372825,29.414915],[120.361999,29.415038],[120.343692,29.41021],[120.334243,29.403483],[120.333308,29.395146],[120.325335,29.380658],[120.317953,29.379791],[120.307619,29.365714],[120.289902,29.355598],[120.278288,29.363443],[120.266723,29.376571],[120.261359,29.390358],[120.264016,29.400842],[120.277992,29.416771],[120.281536,29.440785],[120.267215,29.452253],[120.261801,29.469165],[120.269676,29.481042],[120.282077,29.489249],[120.268494,29.49865],[120.250925,29.496052],[120.249449,29.504793],[120.241821,29.512008],[120.227057,29.514441],[120.223809,29.52182],[120.207864,29.528951],[120.2119,29.535711],[120.200728,29.549476],[120.186506,29.548776],[120.185472,29.541357],[120.17125,29.521614],[120.157421,29.512544],[120.13877,29.508463],[120.127057,29.494279],[120.114212,29.497496],[120.102893,29.506608],[120.093346,29.500299],[120.079616,29.504711],[120.07558,29.513163],[120.085029,29.514523],[120.091722,29.532249],[120.08808,29.536412],[120.073612,29.537648],[120.05875,29.542635],[120.051122,29.549682],[120.054714,29.558213],[120.040147,29.570162],[120.02996,29.56596],[120.007076,29.57247],[120.006486,29.593563],[120.019232,29.617864],[120.035078,29.617452],[120.045216,29.626389],[120.044625,29.631618],[120.031732,29.636806],[120.024744,29.647923],[120.036702,29.653852],[120.037194,29.663979],[120.029468,29.667807],[120.029074,29.653275],[120.021692,29.647964],[120.002598,29.655087],[119.991082,29.654346],[119.988818,29.661179],[119.973119,29.674804],[119.936161,29.666531],[119.924792,29.669906],[119.921249,29.66402],[119.911702,29.66649],[119.895708,29.660644],[119.879271,29.66793],[119.859536,29.671347],[119.852499,29.668877],[119.835422,29.678138],[119.824448,29.671841],[119.817607,29.673076],[119.79118,29.654963],[119.776514,29.626841],[119.779319,29.603984],[119.764949,29.594675],[119.769182,29.579556],[119.761652,29.566536],[119.764211,29.557347],[119.750678,29.550713],[119.741081,29.551908],[119.722626,29.542759],[119.74492,29.516419],[119.735422,29.510936],[119.726908,29.511555],[119.718837,29.505288],[119.719575,29.491146],[119.70678,29.472382],[119.707124,29.464215],[119.715835,29.448995],[119.707272,29.433235],[119.691179,29.438763],[119.688916,29.421764],[119.676317,29.419206],[119.673413,29.425024],[119.664408,29.424075],[119.642508,29.432946],[119.624939,29.417762],[119.625529,29.410499],[119.606238,29.388088],[119.617606,29.380369],[119.616277,29.368273],[119.604565,29.369636],[119.592901,29.377686],[119.582075,29.379131],[119.574594,29.372773],[119.558551,29.372154],[119.545411,29.367365],[119.536061,29.373145],[119.523905,29.366003],[119.522724,29.350024],[119.510421,29.333464],[119.500037,29.335735],[119.49231,29.331069],[119.480204,29.332968],[119.471493,29.349033],[119.461454,29.350932],[119.45481,29.365259],[119.457566,29.370379],[119.451858,29.385611],[119.451365,29.397292],[119.443147,29.404556],[119.437143,29.424116],[119.427793,29.422177],[119.43232,29.415162],[119.426759,29.405547],[119.404761,29.400677],[119.399938,29.411242],[119.39354,29.411242],[119.388521,29.429728],[119.378137,29.42981],[119.368294,29.415699],[119.360223,29.416276],[119.346395,29.408724],[119.337093,29.411159],[119.328629,29.393413],[119.340145,29.38235],[119.333058,29.355061],[119.348462,29.336231],[119.344278,29.324378],[119.348806,29.319504],[119.3242,29.307979],[119.328629,29.299263],[119.322625,29.296164],[119.318294,29.279885],[119.286011,29.279348],[119.288077,29.268852],[119.270656,29.251659],[119.260912,29.247815],[119.244918,29.228634],[119.234928,29.221937],[119.233353,29.195845],[119.242162,29.189683],[119.241522,29.165735],[119.253333,29.154772],[119.251119,29.141656],[119.267162,29.133919],[119.267703,29.119104],[119.282762,29.118317],[119.292507,29.105901],[119.302595,29.100893],[119.299987,29.090709],[119.305351,29.085617],[119.32602,29.086238],[119.332517,29.075971],[119.327841,29.067649],[119.334288,29.052369],[119.332369,29.043423],[119.334682,29.022216],[119.327349,29.03808],[119.321542,29.00059],[119.328038,28.987579],[119.325922,28.979125],[119.316621,28.970256],[119.304613,28.969345],[119.311503,28.959853],[119.315587,28.943231],[119.327152,28.924739],[119.333796,28.907945],[119.34546,28.899734],[119.333599,28.865181],[119.319672,28.867794],[119.310912,28.85124],[119.311306,28.842153],[119.331926,28.846966],[119.338028,28.843149],[119.336355,28.835222],[119.345558,28.827711],[119.331631,28.807912],[119.322428,28.800897]]]]}},{"type":"Feature","properties":{"adcode":330800,"name":"衢州市","center":[118.87263,28.941708],"centroid":[118.679569,28.932446],"childrenNum":6,"level":"city","parent":{"adcode":330000},"subFeatureIndex":7,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.322428,28.800897],[119.331631,28.807912],[119.345558,28.827711],[119.336355,28.835222],[119.338028,28.843149],[119.331926,28.846966],[119.311306,28.842153],[119.310912,28.85124],[119.319672,28.867794],[119.333599,28.865181],[119.34546,28.899734],[119.333796,28.907945],[119.327152,28.924739],[119.315587,28.943231],[119.311503,28.959853],[119.304613,28.969345],[119.316621,28.970256],[119.325922,28.979125],[119.328038,28.987579],[119.321542,29.00059],[119.327349,29.03808],[119.334682,29.022216],[119.332369,29.043423],[119.334288,29.052369],[119.327841,29.067649],[119.332517,29.075971],[119.32602,29.086238],[119.305351,29.085617],[119.299987,29.090709],[119.302595,29.100893],[119.292507,29.105901],[119.282762,29.118317],[119.267703,29.119104],[119.267162,29.133919],[119.251119,29.141656],[119.253333,29.154772],[119.241522,29.165735],[119.242162,29.189683],[119.233353,29.195845],[119.234928,29.221937],[119.244918,29.228634],[119.260912,29.247815],[119.237782,29.250708],[119.239308,29.258933],[119.227103,29.276827],[119.228727,29.284182],[119.208156,29.284389],[119.200282,29.29038],[119.20038,29.272158],[119.192211,29.258479],[119.200922,29.257487],[119.2148,29.246947],[119.210272,29.23066],[119.213668,29.225203],[119.204465,29.223549],[119.201709,29.229379],[119.189504,29.227105],[119.194918,29.216314],[119.189504,29.205191],[119.177693,29.207259],[119.170459,29.217596],[119.151758,29.22789],[119.138126,29.220242],[119.12912,29.227063],[119.132565,29.235456],[119.12351,29.236737],[119.106384,29.227518],[119.085222,29.230578],[119.075675,29.224004],[119.062929,29.226278],[119.030596,29.215074],[119.013076,29.212386],[119.003234,29.207714],[118.998903,29.216355],[118.987141,29.226071],[118.984828,29.239465],[118.988224,29.243558],[118.966816,29.269348],[118.963322,29.267653],[118.949641,29.281744],[118.961895,29.290215],[118.962092,29.296164],[118.948017,29.301122],[118.94408,29.306286],[118.927053,29.310375],[118.900428,29.332638],[118.886354,29.322354],[118.878332,29.326567],[118.860664,29.31496],[118.855743,29.303311],[118.828775,29.287446],[118.82656,29.280298],[118.816865,29.281703],[118.793637,29.267943],[118.786402,29.266744],[118.784778,29.259099],[118.774985,29.250998],[118.763912,29.248311],[118.767259,29.234133],[118.765438,29.220614],[118.753036,29.213875],[118.743735,29.213668],[118.708843,29.188774],[118.68463,29.202545],[118.670162,29.200518],[118.638321,29.192165],[118.626855,29.19568],[118.633646,29.205605],[118.631825,29.219622],[118.620112,29.219291],[118.607612,29.239713],[118.615437,29.25075],[118.606677,29.267116],[118.610614,29.279472],[118.619177,29.276786],[118.63276,29.263149],[118.634138,29.272984],[118.614404,29.296577],[118.617209,29.303146],[118.603478,29.316447],[118.603823,29.323552],[118.596047,29.330821],[118.589059,29.327888],[118.571687,29.338337],[118.55151,29.335694],[118.528577,29.345275],[118.519079,29.344366],[118.524344,29.36142],[118.517504,29.363484],[118.505742,29.359273],[118.488813,29.367241],[118.479167,29.366539],[118.470112,29.360098],[118.456234,29.365879],[118.448754,29.37525],[118.441224,29.375911],[118.423655,29.387345],[118.425771,29.397623],[118.405397,29.408147],[118.413173,29.420568],[118.402051,29.425189],[118.390289,29.423951],[118.384137,29.433276],[118.372917,29.437815],[118.366371,29.45015],[118.352543,29.45279],[118.345751,29.465123],[118.344964,29.475681],[118.324442,29.496918],[118.310564,29.496011],[118.306627,29.479434],[118.315977,29.450562],[118.316125,29.42259],[118.291371,29.41999],[118.286154,29.426716],[118.277641,29.423374],[118.267798,29.427871],[118.255692,29.42618],[118.248507,29.431337],[118.232955,29.42391],[118.218093,29.420361],[118.204264,29.395394],[118.193044,29.39527],[118.194323,29.388253],[118.208792,29.377521],[118.204018,29.36786],[118.208694,29.360346],[118.207808,29.347587],[118.1833,29.332225],[118.179756,29.321404],[118.166567,29.313886],[118.176066,29.305914],[118.176607,29.297404],[118.169373,29.29761],[118.152886,29.28629],[118.136105,29.283893],[118.115878,29.293685],[118.105101,29.284926],[118.078132,29.290587],[118.071931,29.287033],[118.077886,29.278769],[118.080445,29.266331],[118.075573,29.24736],[118.081971,29.234587],[118.07326,29.217017],[118.057906,29.214784],[118.05141,29.217596],[118.042453,29.210319],[118.033447,29.177151],[118.028378,29.169251],[118.04137,29.160853],[118.045012,29.149104],[118.03891,29.126346],[118.053083,29.116248],[118.037974,29.101886],[118.045898,29.088846],[118.07577,29.074563],[118.076902,29.062845],[118.066961,29.053942],[118.072177,29.038991],[118.088073,29.029424],[118.090681,29.010451],[118.097079,28.998726],[118.10702,29.011984],[118.110662,29.003739],[118.099933,28.990397],[118.110022,28.991723],[118.113713,29.009208],[118.127296,29.016085],[118.132463,29.008379],[118.125918,28.994499],[118.133743,28.983891],[118.147867,28.977799],[118.147178,28.984803],[118.16514,28.986709],[118.186597,28.97697],[118.195997,28.965034],[118.199392,28.954672],[118.223802,28.947832],[118.227837,28.942443],[118.206036,28.919598],[118.196686,28.915949],[118.193487,28.908277],[118.199392,28.902969],[118.224983,28.911843],[118.237631,28.91852],[118.256824,28.92362],[118.269865,28.918644],[118.276115,28.89596],[118.28143,28.891356],[118.287926,28.864517],[118.293881,28.860866],[118.297424,28.847837],[118.304314,28.840078],[118.295308,28.835222],[118.310564,28.821983],[118.320554,28.821236],[118.331873,28.814803],[118.368192,28.811275],[118.371932,28.801769],[118.38335,28.787363],[118.378724,28.784622],[118.383694,28.774201],[118.386942,28.754807],[118.396293,28.754932],[118.392356,28.738858],[118.399738,28.727559],[118.401903,28.714473],[118.392503,28.710442],[118.39147,28.700512],[118.402247,28.703005],[118.418832,28.692242],[118.414994,28.686591],[118.432858,28.676533],[118.432612,28.651551],[118.422129,28.646812],[118.427789,28.63147],[118.433399,28.627062],[118.425279,28.611426],[118.417749,28.607558],[118.414059,28.595372],[118.421588,28.596287],[118.415683,28.583475],[118.417307,28.572825],[118.409433,28.569247],[118.41337,28.555142],[118.428084,28.54736],[118.420702,28.544739],[118.428133,28.534668],[118.425328,28.525261],[118.433251,28.516479],[118.437287,28.521682],[118.445555,28.513273],[118.430791,28.500785],[118.421933,28.502991],[118.415043,28.497412],[118.421785,28.492125],[118.438124,28.492999],[118.454315,28.476385],[118.461647,28.482631],[118.472179,28.479384],[118.482169,28.47118],[118.463321,28.455854],[118.465929,28.448232],[118.459334,28.42982],[118.450131,28.418154],[118.456529,28.415988],[118.44024,28.411946],[118.431135,28.398362],[118.455151,28.383984],[118.469275,28.355848],[118.473901,28.339046],[118.469423,28.328204],[118.48709,28.328996],[118.481923,28.32099],[118.47085,28.316694],[118.459679,28.30168],[118.433202,28.28829],[118.430446,28.280781],[118.438616,28.261255],[118.448852,28.261505],[118.445161,28.254745],[118.463862,28.243061],[118.481037,28.245982],[118.490683,28.238428],[118.502691,28.246817],[118.492947,28.262715],[118.495604,28.273104],[118.505643,28.279905],[118.514157,28.269641],[118.530201,28.270434],[118.546244,28.275024],[118.547474,28.28658],[118.558596,28.282324],[118.568833,28.285245],[118.584482,28.284327],[118.598016,28.270643],[118.595703,28.256999],[118.623016,28.256623],[118.632465,28.261297],[118.64024,28.27348],[118.651363,28.27711],[118.666668,28.269725],[118.674788,28.271435],[118.689896,28.291001],[118.700182,28.310397],[118.701904,28.327078],[118.717898,28.33817],[118.724001,28.338337],[118.742012,28.364435],[118.738371,28.369813],[118.757564,28.407488],[118.753233,28.417321],[118.734975,28.416779],[118.723459,28.411196],[118.723951,28.433153],[118.731136,28.456479],[118.725379,28.460894],[118.729709,28.479508],[118.723164,28.493249],[118.726953,28.499827],[118.7428,28.509152],[118.751215,28.52447],[118.765142,28.524096],[118.777298,28.518435],[118.780546,28.526552],[118.795359,28.534335],[118.809385,28.536249],[118.821786,28.547444],[118.83842,28.539911],[118.851019,28.53962],[118.854562,28.532212],[118.864552,28.529923],[118.868046,28.521723],[118.878332,28.522056],[118.889306,28.533003],[118.890192,28.539745],[118.902938,28.548859],[118.91406,28.563921],[118.908549,28.574447],[118.909139,28.589756],[118.917112,28.599739],[118.916619,28.610885],[118.923657,28.619244],[118.925527,28.63359],[118.930202,28.640534],[118.956974,28.647394],[118.962683,28.642405],[118.983992,28.663856],[118.991472,28.676491],[119.001659,28.683058],[119.007958,28.694569],[119.02971,28.709694],[119.043687,28.71227],[119.047575,28.722159],[119.063962,28.733541],[119.080793,28.740146],[119.087831,28.735203],[119.097132,28.743261],[119.122378,28.737072],[119.137683,28.738027],[119.161207,28.748162],[119.169573,28.748868],[119.187536,28.770173],[119.213569,28.768968],[119.238028,28.761992],[119.24851,28.763612],[119.255745,28.776152],[119.271148,28.786532],[119.276512,28.802931],[119.291325,28.806003],[119.302644,28.80401],[119.311503,28.811897],[119.322428,28.800897]]]]}},{"type":"Feature","properties":{"adcode":330900,"name":"舟山市","center":[122.106863,30.016028],"centroid":[122.146805,30.056563],"childrenNum":4,"level":"city","parent":{"adcode":330000},"subFeatureIndex":8,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.256887,30.065104],[122.256543,30.071828],[122.265943,30.076214],[122.281642,30.077403],[122.283413,30.073467],[122.300195,30.074984],[122.301671,30.086503],[122.293896,30.100316],[122.279525,30.102857],[122.258315,30.098595],[122.240746,30.108103],[122.191631,30.108677],[122.182429,30.117036],[122.169486,30.117118],[122.156641,30.112611],[122.144879,30.118798],[122.133019,30.136622],[122.121454,30.141088],[122.119978,30.14924],[122.110922,30.154811],[122.095716,30.158088],[122.072684,30.154114],[122.048767,30.147233],[122.036808,30.148912],[121.996306,30.161405],[121.977211,30.174471],[121.955164,30.184012],[121.949997,30.176068],[121.936414,30.167795],[121.935085,30.16161],[121.948471,30.147888],[121.983461,30.100316],[121.992221,30.074656],[121.978196,30.059282],[121.981247,30.048826],[121.99857,30.037548],[122.012005,30.021184],[122.026424,29.992426],[122.038875,29.989595],[122.073422,30.005145],[122.092468,30.006786],[122.108806,30.00494],[122.120863,29.98381],[122.139958,29.987092],[122.168944,29.989103],[122.192616,29.978886],[122.239958,29.962593],[122.279033,29.937514],[122.308955,29.943466],[122.324112,29.941291],[122.331986,29.962183],[122.341287,29.976834],[122.344289,29.995257],[122.340303,30.006539],[122.346898,30.011544],[122.343896,30.020446],[122.334102,30.021266],[122.32677,30.031848],[122.31176,30.038656],[122.291632,30.065145],[122.269929,30.062439],[122.256887,30.065104]]],[[[122.625097,30.817539],[122.637745,30.814447],[122.636269,30.819939],[122.622243,30.826001],[122.615845,30.82474],[122.625097,30.817539]]],[[[122.150932,30.190073],[122.1436,30.166935],[122.150686,30.146659],[122.162891,30.137933],[122.170125,30.139121],[122.176474,30.155138],[122.190696,30.161078],[122.184495,30.163453],[122.197586,30.175904],[122.208118,30.175167],[122.204181,30.18176],[122.218206,30.188885],[122.196356,30.193635],[122.178196,30.191752],[122.176621,30.199982],[122.166484,30.198385],[122.150932,30.190073]]],[[[122.207773,29.70316],[122.229082,29.693489],[122.24611,29.67999],[122.250391,29.688139],[122.270864,29.685135],[122.277606,29.677933],[122.281642,29.688633],[122.262301,29.688057],[122.229624,29.701637],[122.232773,29.706122],[122.226179,29.714105],[122.217813,29.711759],[122.208216,29.715627],[122.207773,29.70316]]],[[[122.427607,30.738538],[122.441681,30.733082],[122.442518,30.716345],[122.430264,30.706529],[122.427607,30.69602],[122.437055,30.691743],[122.444241,30.697079],[122.4499,30.691457],[122.487154,30.701193],[122.490501,30.695775],[122.499605,30.70323],[122.510136,30.69492],[122.513778,30.702049],[122.535186,30.698301],[122.539664,30.703678],[122.526672,30.713983],[122.536268,30.717567],[122.528345,30.724897],[122.50615,30.720051],[122.504871,30.713249],[122.486514,30.711132],[122.473621,30.715204],[122.467075,30.730272],[122.460432,30.730272],[122.450441,30.743017],[122.432183,30.742325],[122.427607,30.738538]]],[[[122.163088,30.329809],[122.144043,30.315538],[122.137743,30.32159],[122.133019,30.314515],[122.124357,30.319995],[122.092812,30.299996],[122.06791,30.301714],[122.058511,30.304618],[122.051867,30.300078],[122.057822,30.291775],[122.101031,30.275084],[122.134446,30.251884],[122.146356,30.246237],[122.194141,30.24374],[122.199604,30.234327],[122.208413,30.235514],[122.208856,30.229129],[122.230116,30.23269],[122.229427,30.260436],[122.237202,30.277007],[122.231395,30.277989],[122.224456,30.290425],[122.239466,30.296479],[122.248177,30.304496],[122.231887,30.305968],[122.221602,30.324657],[122.228344,30.329564],[122.213383,30.33443],[122.209003,30.32985],[122.191287,30.329155],[122.191877,30.337414],[122.18174,30.340971],[122.178147,30.350579],[122.173816,30.337578],[122.163088,30.329809]]],[[[122.317468,30.249593],[122.278,30.243004],[122.275982,30.23535],[122.284545,30.226837],[122.29173,30.226509],[122.298472,30.234082],[122.305559,30.228883],[122.309004,30.23531],[122.318403,30.236455],[122.32923,30.230193],[122.336809,30.23576],[122.34862,30.233222],[122.362055,30.239566],[122.363236,30.254871],[122.380707,30.253889],[122.381986,30.238134],[122.391534,30.239893],[122.397193,30.225241],[122.408217,30.227778],[122.407725,30.236005],[122.417174,30.23887],[122.418798,30.246278],[122.429477,30.250861],[122.409595,30.25704],[122.407233,30.27267],[122.400343,30.275657],[122.385727,30.270993],[122.358807,30.271238],[122.349457,30.267392],[122.322685,30.26997],[122.318699,30.26551],[122.317468,30.249593]]],[[[122.675245,30.848779],[122.669192,30.845566],[122.687991,30.838082],[122.695472,30.839018],[122.698523,30.848128],[122.690108,30.849105],[122.679133,30.861102],[122.675245,30.848779]]],[[[122.782824,30.789748],[122.775689,30.788038],[122.782135,30.7823],[122.782824,30.789748]]],[[[122.331002,29.938089],[122.327213,29.923103],[122.341337,29.908198],[122.362744,29.8944],[122.372341,29.893209],[122.376327,29.88676],[122.376819,29.871151],[122.369978,29.862031],[122.378345,29.84309],[122.386366,29.834009],[122.416189,29.828995],[122.413236,29.84835],[122.398079,29.853609],[122.401819,29.870042],[122.41929,29.873082],[122.418601,29.881462],[122.434053,29.883557],[122.432085,29.893989],[122.43489,29.906227],[122.41363,29.912551],[122.410923,29.91793],[122.430215,29.916904],[122.420618,29.937309],[122.424309,29.945765],[122.408955,29.951429],[122.410235,29.94478],[122.401573,29.945806],[122.397882,29.939648],[122.377164,29.949008],[122.372734,29.954139],[122.356691,29.950321],[122.351868,29.959105],[122.331002,29.938089]]],[[[122.430412,30.408653],[122.440796,30.413556],[122.432725,30.420092],[122.428542,30.430549],[122.432282,30.445376],[122.411268,30.452686],[122.402459,30.458281],[122.381445,30.455953],[122.373817,30.46167],[122.383414,30.472858],[122.372734,30.47886],[122.35615,30.464651],[122.337006,30.465794],[122.314959,30.470245],[122.303984,30.46657],[122.287596,30.47739],[122.278689,30.474369],[122.281838,30.460118],[122.279378,30.444477],[122.280411,30.420337],[122.285923,30.417028],[122.318305,30.407182],[122.348079,30.410696],[122.352409,30.421971],[122.365156,30.417151],[122.375441,30.419357],[122.378295,30.413556],[122.387695,30.417477],[122.404821,30.4176],[122.41112,30.411268],[122.430412,30.408653]]],[[[122.327163,30.519474],[122.317518,30.518046],[122.31924,30.512781],[122.343699,30.504006],[122.34611,30.528044],[122.340008,30.522371],[122.327163,30.519474]]],[[[122.450737,30.426097],[122.469634,30.414413],[122.485727,30.415762],[122.474211,30.429528],[122.476081,30.436023],[122.46427,30.436799],[122.459693,30.426424],[122.450737,30.426097]]],[[[122.477361,30.229784],[122.481445,30.221147],[122.503197,30.215907],[122.503493,30.22565],[122.489516,30.231298],[122.477361,30.229784]]],[[[122.264762,29.845391],[122.248374,29.848761],[122.234446,29.846542],[122.221257,29.835817],[122.23046,29.822707],[122.24109,29.820323],[122.248571,29.804334],[122.267862,29.792782],[122.28484,29.779667],[122.296799,29.778968],[122.310136,29.766796],[122.317222,29.774198],[122.328443,29.777693],[122.309447,29.794098],[122.31614,29.806389],[122.297045,29.811486],[122.297882,29.81798],[122.318354,29.817857],[122.323768,29.821844],[122.319289,29.829447],[122.302951,29.83368],[122.302065,29.838488],[122.282527,29.845515],[122.264762,29.845391]]],[[[122.302951,30.499108],[122.31427,30.491066],[122.321848,30.49425],[122.302951,30.499108]]],[[[122.217222,29.638577],[122.21983,29.629971],[122.231002,29.634748],[122.217222,29.638577]]],[[[122.703247,30.19732],[122.70807,30.188476],[122.711564,30.209357],[122.704724,30.207065],[122.703247,30.19732]]],[[[122.426918,30.032094],[122.433463,30.022004],[122.428197,30.038656],[122.426918,30.032094]]],[[[122.189564,29.810007],[122.195618,29.804704],[122.201179,29.815227],[122.190598,29.820652],[122.183708,29.815186],[122.189564,29.810007]]],[[[122.52554,30.221557],[122.529428,30.230439],[122.516682,30.231339],[122.52554,30.221557]]],[[[121.943697,30.77709],[121.955607,30.75686],[121.958609,30.740493],[121.961119,30.705877],[121.968205,30.688361],[121.997044,30.658821],[122.015007,30.645291],[122.024406,30.643701],[122.052851,30.625399],[122.071011,30.611294],[122.090745,30.600325],[122.123078,30.598368],[122.133265,30.595514],[122.136907,30.600244],[122.134298,30.612394],[122.12672,30.609826],[122.113629,30.613781],[122.11358,30.621078],[122.102113,30.622994],[122.07918,30.634775],[122.081592,30.639666],[122.072536,30.649448],[122.063284,30.650222],[122.034495,30.661633],[122.024357,30.662489],[122.010971,30.669497],[121.992812,30.695368],[121.988235,30.711172],[121.990794,30.739353],[121.987989,30.753318],[121.969731,30.789178],[121.943697,30.77709]]],[[[122.636072,30.204281],[122.643848,30.197853],[122.646308,30.18692],[122.654527,30.189704],[122.650344,30.210995],[122.640895,30.210913],[122.636072,30.204281]]],[[[122.269683,30.222621],[122.282823,30.227942],[122.274653,30.230234],[122.269683,30.222621]]],[[[122.18233,29.650764],[122.192517,29.655334],[122.211366,29.692255],[122.200785,29.711183],[122.182133,29.728833],[122.146651,29.749647],[122.141385,29.75779],[122.137842,29.774527],[122.131395,29.78863],[122.120863,29.790973],[122.10856,29.783655],[122.083659,29.783203],[122.071405,29.7728],[122.065155,29.749893],[122.047881,29.717972],[122.073816,29.701802],[122.079968,29.70139],[122.095962,29.716491],[122.109052,29.713899],[122.111168,29.70032],[122.125686,29.693119],[122.133117,29.683036],[122.132822,29.668548],[122.141484,29.660521],[122.158117,29.655293],[122.174358,29.659945],[122.18233,29.650764]]],[[[122.232626,29.682666],[122.234594,29.672005],[122.24296,29.675298],[122.232626,29.682666]]],[[[122.466239,30.74318],[122.470077,30.752585],[122.452607,30.757592],[122.452115,30.743343],[122.466239,30.74318]]],[[[122.358807,30.600081],[122.356543,30.593353],[122.374358,30.587399],[122.358807,30.600081]]],[[[122.077901,30.596411],[122.055164,30.591681],[122.055607,30.585482],[122.071749,30.572553],[122.085233,30.578834],[122.082231,30.587236],[122.100096,30.592415],[122.077901,30.596411]]],[[[122.36176,29.839556],[122.369289,29.828091],[122.375933,29.825748],[122.378788,29.834379],[122.371209,29.835529],[122.376868,29.841734],[122.36176,29.839556]]],[[[122.229968,29.661056],[122.245913,29.654716],[122.243502,29.661015],[122.229968,29.661056]]],[[[122.461367,29.943877],[122.459546,29.948638],[122.449162,29.939238],[122.456987,29.92569],[122.461367,29.943877]]],[[[122.570717,30.644313],[122.568798,30.65442],[122.582922,30.655113],[122.587893,30.665341],[122.575639,30.66583],[122.558709,30.679072],[122.555757,30.667419],[122.54803,30.663467],[122.547046,30.650752],[122.570717,30.644313]]],[[[122.179377,30.226428],[122.179082,30.214884],[122.186415,30.21779],[122.190942,30.212264],[122.204574,30.214106],[122.200244,30.226755],[122.186956,30.230644],[122.179377,30.226428]]],[[[122.424949,30.6212],[122.423965,30.612272],[122.432725,30.61745],[122.424949,30.6212]]],[[[122.209003,30.222375],[122.215746,30.218036],[122.228295,30.220451],[122.245322,30.218405],[122.23735,30.232322],[122.225441,30.229293],[122.216681,30.22082],[122.209003,30.222375]]],[[[122.15546,29.619429],[122.14419,29.608474],[122.152704,29.60695],[122.160824,29.619346],[122.15546,29.619429]]],[[[122.065204,30.179631],[122.065696,30.192202],[122.055755,30.200309],[122.04291,30.201497],[122.040056,30.196051],[122.030115,30.198057],[122.017664,30.186469],[122.024013,30.162593],[122.033068,30.161201],[122.059003,30.17832],[122.065204,30.179631]]],[[[122.391484,29.970309],[122.398571,29.975151],[122.393502,29.985123],[122.39675,29.999114],[122.414418,29.998458],[122.41801,30.006293],[122.403345,30.0154],[122.41053,30.024301],[122.40861,30.031725],[122.397784,30.026721],[122.380018,30.024506],[122.373128,30.001658],[122.372291,29.988364],[122.367813,29.980486],[122.376819,29.973305],[122.391484,29.970309]]],[[[121.888087,30.092078],[121.885774,30.094742],[121.85979,30.10171],[121.848667,30.101218],[121.854081,30.068179],[121.839809,30.047268],[121.843156,30.02869],[121.844041,30.007893],[121.835232,29.993001],[121.837004,29.987174],[121.85039,29.977285],[121.850882,29.969652],[121.874258,29.96481],[121.890941,29.974495],[121.915646,29.984097],[121.932821,29.994806],[121.934199,30.011749],[121.924849,30.037877],[121.92475,30.052598],[121.915597,30.057273],[121.906935,30.055797],[121.89537,30.073303],[121.893402,30.082691],[121.880114,30.085274],[121.888087,30.092078]]],[[[122.325638,30.226919],[122.332183,30.220247],[122.335628,30.227778],[122.325638,30.226919]]],[[[121.830803,30.066375],[121.847437,30.06166],[121.852506,30.065596],[121.844927,30.077239],[121.833264,30.082855],[121.821994,30.082076],[121.830803,30.066375]]],[[[122.32239,29.83257],[122.332872,29.826652],[122.323965,29.839515],[122.32239,29.83257]]],[[[122.038235,29.759229],[122.024357,29.756844],[122.011365,29.74611],[122.016335,29.714475],[122.029721,29.716944],[122.031837,29.736814],[122.043599,29.742654],[122.043944,29.753801],[122.038235,29.759229]]],[[[122.514516,30.649],[122.514221,30.641786],[122.522784,30.643579],[122.514516,30.649]]],[[[122.1436,30.610927],[122.149997,30.619081],[122.13607,30.61533],[122.1436,30.610927]]],[[[122.716486,30.17574],[122.718553,30.168368],[122.728051,30.17271],[122.72185,30.181965],[122.716486,30.17574]]],[[[122.526278,30.666767],[122.540894,30.657884],[122.544881,30.663344],[122.533365,30.672268],[122.526278,30.666767]]],[[[121.940351,30.114537],[121.923323,30.106628],[121.911266,30.095685],[121.916483,30.083265],[121.929623,30.078469],[121.928638,30.06658],[121.945961,30.064448],[121.957674,30.084659],[121.963481,30.10339],[121.950341,30.113594],[121.940351,30.114537]]],[[[121.957428,30.287684],[121.968304,30.294556],[121.979869,30.288502],[121.989022,30.289525],[122.000883,30.308504],[121.992763,30.328092],[121.986168,30.331036],[121.989121,30.340031],[121.981001,30.343384],[121.976079,30.337619],[121.940252,30.331731],[121.921502,30.307563],[121.931542,30.304414],[121.957428,30.287684]]],[[[122.680856,30.190523],[122.688434,30.191301],[122.689222,30.180982],[122.694094,30.187698],[122.687007,30.205345],[122.673178,30.208334],[122.680856,30.190523]]],[[[122.226572,29.808856],[122.224702,29.801867],[122.239023,29.801867],[122.226572,29.808856]]],[[[122.41678,30.682047],[122.408807,30.672472],[122.425737,30.668886],[122.435431,30.674672],[122.41678,30.682047]]],[[[121.618106,30.604811],[121.637397,30.608847],[121.617712,30.60848],[121.618106,30.604811]]],[[[122.127802,30.218364],[122.129476,30.207433],[122.140647,30.214393],[122.151917,30.21603],[122.146946,30.222007],[122.127802,30.218364]]],[[[121.863825,30.116955],[121.861168,30.104292],[121.870567,30.106628],[121.863825,30.116955]]],[[[122.225047,29.738294],[122.233561,29.731013],[122.241287,29.731918],[122.234299,29.739775],[122.225047,29.738294]]],[[[122.178492,29.978393],[122.16924,29.988241],[122.141877,29.974823],[122.14355,29.968462],[122.154426,29.971253],[122.170765,29.966164],[122.182921,29.955288],[122.19611,29.954713],[122.199309,29.960623],[122.178492,29.978393]]],[[[122.197734,29.726776],[122.217124,29.717355],[122.219683,29.724102],[122.206789,29.728833],[122.197734,29.726776]]],[[[122.287941,29.723938],[122.296848,29.729985],[122.313187,29.731466],[122.309545,29.743518],[122.296602,29.749606],[122.280017,29.746233],[122.258364,29.753307],[122.255706,29.76108],[122.261021,29.773622],[122.246159,29.783367],[122.233856,29.784477],[122.21422,29.780366],[122.213285,29.771525],[122.238236,29.741996],[122.251573,29.731178],[122.269978,29.730725],[122.287941,29.723938]]],[[[122.153836,30.578957],[122.167862,30.583687],[122.156739,30.584503],[122.153836,30.578957]]],[[[122.259053,30.519882],[122.25738,30.511842],[122.275244,30.513148],[122.277901,30.524493],[122.267567,30.526901],[122.259053,30.519882]]],[[[122.759941,30.137073],[122.767126,30.12347],[122.787943,30.128223],[122.775639,30.139203],[122.763435,30.142112],[122.759941,30.137073]]],[[[122.192468,29.796194],[122.175686,29.797181],[122.182429,29.788013],[122.198324,29.785217],[122.202015,29.790891],[122.192468,29.796194]]],[[[122.146257,29.96247],[122.132232,29.956519],[122.140696,29.943712],[122.166336,29.94634],[122.170273,29.957833],[122.163088,29.965713],[122.146257,29.96247]]],[[[122.452115,29.973469],[122.444683,29.968216],[122.450244,29.964728],[122.452115,29.973469]]],[[[122.467469,30.408857],[122.476376,30.403587],[122.477853,30.410491],[122.467469,30.408857]]],[[[122.331199,30.595677],[122.326031,30.590131],[122.341337,30.593597],[122.343207,30.599632],[122.331199,30.595677]]],[[[122.264122,30.269888],[122.254574,30.253235],[122.25423,30.237356],[122.261612,30.234736],[122.276277,30.244232],[122.291878,30.248324],[122.315844,30.250165],[122.312941,30.265142],[122.304821,30.262523],[122.30177,30.270052],[122.264122,30.269888]]],[[[122.283019,29.860388],[122.293403,29.852089],[122.309004,29.849582],[122.323915,29.852541],[122.329968,29.85895],[122.343305,29.86047],[122.342961,29.870782],[122.348423,29.878833],[122.340057,29.883598],[122.319191,29.878792],[122.301474,29.883844],[122.284545,29.875588],[122.283019,29.860388]]],[[[122.648375,30.812494],[122.660629,30.819858],[122.643355,30.826733],[122.640255,30.816318],[122.648375,30.812494]]],[[[122.78125,30.694187],[122.791732,30.698423],[122.787647,30.711498],[122.7906,30.717444],[122.799508,30.716467],[122.792815,30.729499],[122.782086,30.730028],[122.75748,30.713901],[122.758218,30.70213],[122.775196,30.704167],[122.78125,30.694187]]],[[[121.977999,30.100275],[121.966483,30.097447],[121.973865,30.084905],[121.982822,30.095234],[121.977999,30.100275]]],[[[122.069436,29.992385],[122.072241,29.972853],[122.078147,29.97273],[122.093796,29.985492],[122.076867,30.000714],[122.069436,29.992385]]],[[[122.145322,29.966328],[122.128393,29.96641],[122.129033,29.960541],[122.146454,29.963496],[122.145322,29.966328]]],[[[121.981001,30.06699],[121.99045,30.07109],[121.988579,30.083634],[121.981739,30.083224],[121.975538,30.075148],[121.981001,30.06699]]],[[[122.391583,30.740615],[122.395274,30.760523],[122.386366,30.759384],[122.391583,30.740615]]],[[[122.284988,30.635835],[122.295766,30.640726],[122.292616,30.650548],[122.284742,30.648714],[122.277212,30.638933],[122.284988,30.635835]]],[[[122.16422,29.799278],[122.174948,29.797222],[122.180017,29.802361],[122.174259,29.807664],[122.161218,29.8038],[122.16422,29.799278]]],[[[122.452804,29.956889],[122.444831,29.955042],[122.450687,29.945929],[122.458955,29.95106],[122.452804,29.956889]]],[[[122.83627,30.698708],[122.839911,30.703759],[122.836811,30.719155],[122.831053,30.728521],[122.814616,30.732879],[122.804232,30.723024],[122.810777,30.712476],[122.826821,30.709136],[122.83627,30.698708]]],[[[122.132379,29.983769],[122.143108,29.978311],[122.143206,29.987051],[122.132379,29.983769]]],[[[122.096208,29.944862],[122.090942,29.956314],[122.081542,29.953687],[122.079672,29.939566],[122.083511,29.935625],[122.097733,29.938745],[122.096208,29.944862]]],[[[122.227852,29.715627],[122.233364,29.70999],[122.235382,29.717725],[122.227852,29.715627]]],[[[122.213137,29.958161],[122.237399,29.944739],[122.273374,29.932259],[122.274604,29.93891],[122.239811,29.960049],[122.20482,29.973879],[122.19296,29.975972],[122.213137,29.958161]]],[[[122.108314,29.963086],[122.110922,29.958735],[122.125883,29.96087],[122.128245,29.973797],[122.112842,29.978434],[122.108314,29.963086]]],[[[121.969091,30.064038],[121.964071,30.053787],[121.974997,30.049523],[121.974406,30.062111],[121.969091,30.064038]]],[[[122.028983,29.955042],[122.031198,29.935215],[122.037005,29.929508],[122.047782,29.93423],[122.058462,29.952907],[122.05108,29.964974],[122.042271,29.964522],[122.028983,29.955042]]],[[[122.2561,29.864702],[122.274161,29.862401],[122.278246,29.867701],[122.267222,29.875793],[122.249899,29.875588],[122.2561,29.864702]]],[[[122.193747,29.766262],[122.189171,29.75524],[122.201277,29.755487],[122.200342,29.765151],[122.193747,29.766262]]],[[[122.288827,29.93074],[122.291435,29.924623],[122.30674,29.922118],[122.315352,29.931027],[122.311809,29.942029],[122.301573,29.941865],[122.288138,29.936118],[122.288827,29.93074]]],[[[122.212399,29.69172],[122.215844,29.684312],[122.229673,29.685423],[122.228836,29.690732],[122.212399,29.69172]]],[[[122.042418,29.981635],[122.051424,29.976834],[122.054672,29.988693],[122.046749,29.988693],[122.042418,29.981635]]],[[[122.300687,29.894646],[122.299899,29.890539],[122.314713,29.88943],[122.309496,29.896084],[122.300687,29.894646]]]]}},{"type":"Feature","properties":{"adcode":331000,"name":"台州市","center":[121.428599,28.661378],"centroid":[121.136679,28.757098],"childrenNum":9,"level":"city","parent":{"adcode":330000},"subFeatureIndex":9,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.60846,29.169127],[121.564267,29.173056],[121.555802,29.168961],[121.53592,29.139795],[121.529719,29.136277],[121.508361,29.140622],[121.484542,29.142856],[121.470517,29.147615],[121.450044,29.159612],[121.431048,29.159778],[121.407032,29.156882],[121.401225,29.160978],[121.403833,29.17864],[121.385378,29.196921],[121.378784,29.199236],[121.366924,29.189146],[121.356343,29.186044],[121.361904,29.173305],[121.345418,29.145173],[121.348715,29.135574],[121.336609,29.121959],[121.323813,29.117159],[121.316973,29.105653],[121.308213,29.11451],[121.298616,29.114593],[121.295221,29.092696],[121.271746,29.101803],[121.270713,29.11033],[121.256096,29.114055],[121.258754,29.129243],[121.257622,29.149311],[121.264364,29.1544],[121.253045,29.157172],[121.251028,29.163542],[121.238872,29.175745],[121.232966,29.186623],[121.233705,29.196797],[121.225338,29.203868],[121.202701,29.203578],[121.173517,29.20639],[121.164708,29.2116],[121.174403,29.223095],[121.158852,29.244756],[121.166824,29.258892],[121.179325,29.258727],[121.175289,29.278274],[121.180899,29.292033],[121.196992,29.303229],[121.201077,29.312482],[121.190742,29.312358],[121.194187,29.322189],[121.180456,29.32921],[121.175092,29.323097],[121.163084,29.325039],[121.160574,29.340154],[121.149846,29.330903],[121.133704,29.338337],[121.122041,29.336396],[121.117956,29.33111],[121.120368,29.318719],[121.117513,29.304509],[121.096155,29.305707],[121.099501,29.317893],[121.074698,29.322106],[121.056539,29.322891],[121.04084,29.309549],[121.024009,29.308103],[121.020515,29.317728],[121.005554,29.319421],[120.990889,29.309219],[120.964806,29.306327],[120.956883,29.282447],[120.942611,29.289595],[120.928093,29.291702],[120.915347,29.303311],[120.904225,29.295462],[120.903782,29.276042],[120.891627,29.270009],[120.890692,29.260462],[120.897335,29.253478],[120.900042,29.240788],[120.882227,29.239217],[120.867266,29.24455],[120.862148,29.252362],[120.853634,29.253519],[120.838428,29.237895],[120.82391,29.229503],[120.806144,29.234009],[120.776518,29.225079],[120.783063,29.221193],[120.773171,29.205687],[120.77824,29.19965],[120.759884,29.189022],[120.749648,29.176035],[120.731095,29.164494],[120.712295,29.143767],[120.722187,29.130236],[120.734441,29.13127],[120.746843,29.122911],[120.736606,29.11331],[120.723614,29.119145],[120.709884,29.098409],[120.701222,29.097457],[120.694382,29.086942],[120.704864,29.075888],[120.702207,29.060195],[120.691626,29.052079],[120.70073,29.044334],[120.693151,29.040565],[120.701714,29.022713],[120.713575,29.035264],[120.724451,29.023873],[120.720317,29.012356],[120.72824,29.009829],[120.72952,28.99711],[120.72199,28.995245],[120.726665,28.98128],[120.717315,28.973779],[120.69886,28.972992],[120.696695,28.980037],[120.677699,28.977302],[120.673319,28.973158],[120.673417,28.959895],[120.659638,28.937136],[120.664953,28.923786],[120.663771,28.916488],[120.64699,28.90048],[120.619086,28.895628],[120.60447,28.890692],[120.590051,28.881111],[120.579962,28.869371],[120.56323,28.861696],[120.542757,28.867048],[120.533604,28.866301],[120.533948,28.879534],[120.525484,28.878663],[120.514706,28.890734],[120.509982,28.874888],[120.494972,28.86601],[120.502206,28.857215],[120.498466,28.849207],[120.486802,28.846012],[120.481143,28.828167],[120.473909,28.839206],[120.441773,28.841406],[120.426713,28.831985],[120.415099,28.822315],[120.408111,28.806626],[120.409883,28.798572],[120.40068,28.785494],[120.386064,28.787114],[120.368987,28.763861],[120.369971,28.740893],[120.362934,28.734538],[120.347481,28.730218],[120.343101,28.721909],[120.351861,28.723986],[120.355503,28.712187],[120.349499,28.704334],[120.331585,28.701301],[120.324056,28.686341],[120.32253,28.6698],[120.336211,28.654378],[120.357471,28.646853],[120.356733,28.637665],[120.349745,28.633008],[120.353288,28.626896],[120.368839,28.618205],[120.371644,28.606394],[120.381733,28.599864],[120.3807,28.581852],[120.371152,28.573615],[120.361359,28.580188],[120.349597,28.574198],[120.332963,28.580563],[120.322481,28.573449],[120.326221,28.56388],[120.322087,28.554143],[120.311556,28.557639],[120.290935,28.539037],[120.292658,28.511983],[120.304223,28.506988],[120.313376,28.522181],[120.324252,28.512358],[120.336802,28.509236],[120.341034,28.49633],[120.36628,28.499785],[120.379715,28.498037],[120.387786,28.479467],[120.398957,28.465017],[120.405995,28.480425],[120.419135,28.491875],[120.414952,28.496871],[120.414952,28.512358],[120.422186,28.522223],[120.422727,28.533627],[120.430503,28.534293],[120.434145,28.553727],[120.4307,28.568165],[120.441871,28.573324],[120.446349,28.584307],[120.471891,28.586928],[120.493495,28.577776],[120.501566,28.56001],[120.524056,28.55535],[120.528781,28.548359],[120.541232,28.543365],[120.549204,28.533585],[120.554716,28.535958],[120.567856,28.531879],[120.572236,28.537498],[120.583358,28.530797],[120.598811,28.53396],[120.624303,28.533377],[120.627157,28.547402],[120.621202,28.55639],[120.631291,28.564005],[120.640002,28.557847],[120.649647,28.563006],[120.63946,28.577443],[120.653043,28.585014],[120.669234,28.579606],[120.687344,28.582476],[120.701026,28.592751],[120.70201,28.606352],[120.709096,28.611509],[120.729372,28.603773],[120.743496,28.611592],[120.757817,28.604314],[120.758703,28.591586],[120.782916,28.590547],[120.793644,28.583766],[120.798713,28.588758],[120.798221,28.576528],[120.802601,28.572201],[120.825829,28.566335],[120.829225,28.555558],[120.843054,28.542034],[120.83267,28.524595],[120.845071,28.514189],[120.854323,28.515313],[120.86953,28.491167],[120.894481,28.485546],[120.91082,28.48921],[120.914412,28.495997],[120.92765,28.505031],[120.944776,28.503449],[120.954028,28.498911],[120.954471,28.509027],[120.962198,28.509027],[120.95767,28.494831],[120.965593,28.482965],[120.98705,28.481715],[120.99517,28.473346],[121.002946,28.478717],[121.01771,28.478592],[121.025436,28.472763],[121.036115,28.481715],[121.049895,28.478259],[121.070417,28.480341],[121.076864,28.484089],[121.078734,28.495331],[121.085131,28.500993],[121.088182,28.51727],[121.104816,28.537289],[121.121352,28.532503],[121.129866,28.521723],[121.145565,28.523929],[121.156736,28.520475],[121.16958,28.505905],[121.180949,28.478343],[121.195171,28.473012],[121.19463,28.467099],[121.209098,28.458853],[121.206096,28.455979],[121.214413,28.43836],[121.226815,28.435569],[121.222829,28.422029],[121.236165,28.422696],[121.25772,28.408113],[121.251274,28.405279],[121.246155,28.385776],[121.227553,28.384818],[121.222041,28.372897],[121.204866,28.368437],[121.21589,28.351512],[121.205949,28.318654],[121.173911,28.277485],[121.155358,28.274064],[121.147385,28.263132],[121.146401,28.236133],[121.136805,28.168583],[121.123271,28.148117],[121.108409,28.139011],[121.121106,28.125266],[121.135279,28.070522],[121.13587,28.050581],[121.140988,28.031389],[121.149797,28.025284],[121.176175,28.022315],[121.238675,28.028838],[121.261165,28.034442],[121.282278,28.054636],[121.297829,28.06446],[121.307425,28.088494],[121.310083,28.110726],[121.328144,28.134165],[121.33774,28.135961],[121.343154,28.127397],[121.361215,28.126144],[121.37214,28.131282],[121.3778,28.150289],[121.391333,28.159102],[121.402357,28.197311],[121.419581,28.218018],[121.446402,28.238595],[121.456048,28.250322],[121.459739,28.271853],[121.477652,28.284327],[121.488774,28.301429],[121.499306,28.305934],[121.525979,28.303598],[121.564365,28.28804],[121.571452,28.279404],[121.571944,28.258709],[121.579523,28.24185],[121.624208,28.250489],[121.634297,28.259461],[121.637053,28.269767],[121.649011,28.278319],[121.645665,28.296674],[121.656935,28.318613],[121.669336,28.333375],[121.672633,28.347801],[121.666433,28.344091],[121.66033,28.355639],[121.635871,28.347468],[121.63656,28.359558],[121.646403,28.365102],[121.658854,28.378441],[121.658903,28.392403],[121.687151,28.400904],[121.692761,28.407321],[121.691826,28.418446],[121.681935,28.440318],[121.664513,28.444858],[121.671108,28.472596],[121.667811,28.485713],[121.652653,28.502616],[121.64222,28.520808],[121.63907,28.549108],[121.634247,28.562715],[121.615054,28.571743],[121.596157,28.575238],[121.586216,28.586553],[121.568844,28.626563],[121.557082,28.644982],[121.540842,28.655583],[121.587397,28.67221],[121.646305,28.682809],[121.679129,28.698891],[121.689415,28.719167],[121.694582,28.772872],[121.70472,28.804633],[121.702899,28.825262],[121.69222,28.855265],[121.687348,28.863355],[121.660084,28.869661],[121.668352,28.872939],[121.704228,28.863646],[121.738677,28.856592],[121.759051,28.85597],[121.774602,28.863895],[121.776423,28.879783],[121.772043,28.898365],[121.743352,28.954257],[121.718352,28.970422],[121.711265,28.986005],[121.71535,29.012274],[121.712643,29.028926],[121.699454,29.039985],[121.658952,29.058497],[121.651915,29.075888],[121.65536,29.092738],[121.661511,29.106108],[121.659936,29.118359],[121.616531,29.143518],[121.60846,29.169127]]],[[[121.84911,28.733666],[121.846797,28.729055],[121.859642,28.727891],[121.865547,28.721992],[121.873077,28.727518],[121.866089,28.738027],[121.880508,28.748702],[121.893008,28.752108],[121.896109,28.757341],[121.909544,28.761867],[121.893008,28.762532],[121.875833,28.749034],[121.851177,28.748868],[121.846994,28.741433],[121.855557,28.736075],[121.84911,28.733666]]],[[[121.749651,28.69058],[121.75226,28.683349],[121.768254,28.690746],[121.778687,28.687629],[121.781689,28.680066],[121.794041,28.679608],[121.800045,28.695317],[121.808559,28.699431],[121.801571,28.702423],[121.790006,28.690913],[121.772732,28.694195],[121.780508,28.699182],[121.765252,28.705124],[121.761856,28.689333],[121.749651,28.69058]]],[[[121.387347,28.119292],[121.401569,28.122968],[121.401323,28.129862],[121.387347,28.119292]]],[[[121.919928,28.707285],[121.920617,28.704916],[121.942664,28.720663],[121.916581,28.717215],[121.919928,28.707285]]],[[[121.837349,28.770505],[121.843254,28.770629],[121.862693,28.78209],[121.865498,28.799361],[121.872388,28.807871],[121.861561,28.813765],[121.850734,28.808286],[121.857034,28.803637],[121.852949,28.793092],[121.844386,28.788816],[121.850538,28.784747],[121.837349,28.770505]]],[[[121.687397,28.384526],[121.686118,28.374648],[121.69532,28.381317],[121.687397,28.384526]]],[[[121.889563,28.471513],[121.908313,28.479092],[121.918943,28.497371],[121.899455,28.500701],[121.896994,28.514231],[121.8873,28.511359],[121.880065,28.501909],[121.87037,28.500035],[121.871305,28.49429],[121.883658,28.495456],[121.883116,28.484089],[121.874111,28.47701],[121.876128,28.472554],[121.889563,28.471513]]],[[[121.678588,28.278319],[121.688775,28.273939],[121.686413,28.2895],[121.677604,28.285954],[121.678588,28.278319]]],[[[121.410674,28.079425],[121.410526,28.101617],[121.400831,28.092506],[121.40718,28.089873],[121.404227,28.077627],[121.410674,28.079425]]],[[[121.869534,28.423946],[121.88602,28.433986],[121.893451,28.430278],[121.910823,28.440068],[121.920617,28.45273],[121.889711,28.451189],[121.871256,28.433111],[121.869534,28.423946]]],[[[121.687397,29.09667],[121.697092,29.094062],[121.691777,29.11124],[121.681885,29.109336],[121.687397,29.09667]]],[[[121.695271,29.088474],[121.694385,29.084707],[121.710084,29.082719],[121.695271,29.088474]]],[[[121.672633,29.062224],[121.665842,29.059615],[121.680507,29.054688],[121.672633,29.062224]]],[[[121.67908,28.371063],[121.687348,28.366269],[121.688431,28.373064],[121.67908,28.371063]]],[[[121.851227,28.423487],[121.860872,28.426737],[121.855607,28.431819],[121.851227,28.423487]]],[[[121.634592,28.225448],[121.644828,28.222985],[121.644927,28.232836],[121.634592,28.225448]]],[[[121.502062,28.072235],[121.511068,28.077084],[121.516137,28.087199],[121.527111,28.086363],[121.532279,28.093426],[121.528834,28.101742],[121.504867,28.085736],[121.502062,28.072235]]],[[[121.346353,28.087784],[121.356786,28.089121],[121.372091,28.099903],[121.373961,28.10989],[121.359443,28.098065],[121.345565,28.096059],[121.346353,28.087784]]],[[[121.81727,28.610428],[121.803933,28.599115],[121.823274,28.607267],[121.81727,28.610428]]],[[[121.685576,29.115917],[121.694385,29.113061],[121.690153,29.120883],[121.685576,29.115917]]],[[[121.145122,28.013239],[121.166185,28.021771],[121.149649,28.019805],[121.145122,28.013239]]],[[[121.940105,28.441526],[121.945174,28.436652],[121.94355,28.450731],[121.940105,28.441526]]]]}},{"type":"Feature","properties":{"adcode":331100,"name":"丽水市","center":[119.921786,28.451993],"centroid":[119.517145,28.197644],"childrenNum":9,"level":"city","parent":{"adcode":330000},"subFeatureIndex":10,"acroutes":[100000,330000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.426713,28.831985],[120.418101,28.851655],[120.406881,28.845182],[120.404715,28.853813],[120.392954,28.847132],[120.392855,28.834558],[120.388475,28.829454],[120.368446,28.838044],[120.357914,28.839372],[120.347284,28.858252],[120.338278,28.860244],[120.331388,28.868914],[120.316428,28.876879],[120.315394,28.887042],[120.303239,28.892808],[120.314312,28.9191],[120.303977,28.931664],[120.277894,28.930544],[120.271004,28.950112],[120.264951,28.93896],[120.255453,28.931],[120.258603,28.927103],[120.250729,28.913792],[120.261752,28.911429],[120.260719,28.865471],[120.241821,28.857256],[120.236506,28.844808],[120.216526,28.832608],[120.215148,28.825885],[120.20186,28.810029],[120.200335,28.80181],[120.209341,28.795832],[120.198858,28.783958],[120.183553,28.785162],[120.178435,28.775239],[120.165344,28.774325],[120.145561,28.784],[120.131437,28.759708],[120.111309,28.762324],[120.109882,28.767224],[120.097037,28.768553],[120.083946,28.787031],[120.049202,28.763155],[120.028976,28.758047],[120.025679,28.764151],[120.010669,28.772207],[120.005304,28.780886],[119.982421,28.796662],[119.971643,28.794255],[119.967607,28.787819],[119.948562,28.787197],[119.942164,28.793009],[119.921298,28.796164],[119.921003,28.784],[119.906731,28.768553],[119.89807,28.750363],[119.886751,28.744632],[119.882371,28.7492],[119.87179,28.742306],[119.874448,28.73541],[119.86618,28.718503],[119.849644,28.716591],[119.826367,28.695317],[119.813867,28.68684],[119.811751,28.65392],[119.794969,28.632883],[119.777252,28.630887],[119.764949,28.638704],[119.752449,28.635253],[119.749398,28.622696],[119.772725,28.608556],[119.773955,28.603233],[119.767065,28.588009],[119.754122,28.592668],[119.7399,28.591462],[119.739309,28.584848],[119.720461,28.56596],[119.717705,28.553769],[119.707813,28.545738],[119.703581,28.533211],[119.674742,28.530006],[119.660224,28.539953],[119.644722,28.541867],[119.638276,28.528508],[119.629171,28.525386],[119.613374,28.5278],[119.574201,28.523888],[119.568492,28.532295],[119.542458,28.532628],[119.535175,28.543782],[119.53488,28.555724],[119.514653,28.561675],[119.498413,28.54865],[119.494427,28.554018],[119.498068,28.584848],[119.509879,28.603357],[119.507911,28.615335],[119.488423,28.626438],[119.482025,28.639453],[119.468442,28.633632],[119.461208,28.634879],[119.455696,28.650886],[119.462241,28.661237],[119.458895,28.683848],[119.46421,28.70824],[119.460814,28.73944],[119.463767,28.742306],[119.479663,28.739647],[119.473019,28.749782],[119.470854,28.765356],[119.430696,28.755596],[119.421198,28.749159],[119.413619,28.751983],[119.412438,28.76166],[119.387684,28.786948],[119.371887,28.784789],[119.368737,28.774118],[119.359534,28.768304],[119.358206,28.761037],[119.346247,28.757008],[119.338422,28.761161],[119.327694,28.779806],[119.328629,28.800565],[119.322428,28.800897],[119.311503,28.811897],[119.302644,28.80401],[119.291325,28.806003],[119.276512,28.802931],[119.271148,28.786532],[119.255745,28.776152],[119.24851,28.763612],[119.238028,28.761992],[119.213569,28.768968],[119.187536,28.770173],[119.169573,28.748868],[119.161207,28.748162],[119.137683,28.738027],[119.122378,28.737072],[119.097132,28.743261],[119.087831,28.735203],[119.080793,28.740146],[119.063962,28.733541],[119.047575,28.722159],[119.043687,28.71227],[119.02971,28.709694],[119.007958,28.694569],[119.001659,28.683058],[118.991472,28.676491],[118.983992,28.663856],[118.962683,28.642405],[118.956974,28.647394],[118.930202,28.640534],[118.925527,28.63359],[118.923657,28.619244],[118.916619,28.610885],[118.917112,28.599739],[118.909139,28.589756],[118.908549,28.574447],[118.91406,28.563921],[118.902938,28.548859],[118.890192,28.539745],[118.889306,28.533003],[118.878332,28.522056],[118.868046,28.521723],[118.864552,28.529923],[118.854562,28.532212],[118.851019,28.53962],[118.83842,28.539911],[118.821786,28.547444],[118.809385,28.536249],[118.795359,28.534335],[118.780546,28.526552],[118.777298,28.518435],[118.765142,28.524096],[118.751215,28.52447],[118.7428,28.509152],[118.726953,28.499827],[118.723164,28.493249],[118.729709,28.479508],[118.725379,28.460894],[118.731136,28.456479],[118.723951,28.433153],[118.723459,28.411196],[118.734975,28.416779],[118.753233,28.417321],[118.757564,28.407488],[118.738371,28.369813],[118.742012,28.364435],[118.724001,28.338337],[118.717898,28.33817],[118.701904,28.327078],[118.700182,28.310397],[118.713518,28.312899],[118.722327,28.31048],[118.730152,28.2968],[118.727298,28.281115],[118.739355,28.27736],[118.740881,28.267514],[118.754513,28.253452],[118.781186,28.243102],[118.802052,28.240431],[118.812387,28.225573],[118.804168,28.207874],[118.794769,28.205953],[118.782121,28.193178],[118.769276,28.185746],[118.760959,28.167413],[118.775182,28.167998],[118.782908,28.172633],[118.798115,28.168917],[118.805891,28.153088],[118.800428,28.13312],[118.802298,28.117286],[118.785369,28.106715],[118.773607,28.107968],[118.765142,28.102912],[118.763518,28.094721],[118.743144,28.088536],[118.73532,28.074994],[118.718784,28.063624],[118.720359,28.045438],[118.732662,28.035947],[118.733499,28.026455],[118.726609,28.014201],[118.72656,28.000399],[118.732514,27.990904],[118.729906,27.97258],[118.753479,27.948018],[118.754168,27.942745],[118.767111,27.941824],[118.804562,27.927092],[118.803725,27.918302],[118.81844,27.916711],[118.820408,27.89536],[118.831531,27.886316],[118.82656,27.874843],[118.835763,27.866509],[118.826314,27.846614],[118.835418,27.838195],[118.838814,27.820641],[118.847131,27.812513],[118.851462,27.796003],[118.839405,27.788585],[118.839995,27.779322],[118.853972,27.774251],[118.87218,27.734424],[118.880645,27.731153],[118.890438,27.718741],[118.897968,27.718909],[118.900084,27.704985],[118.878479,27.70532],[118.875035,27.700958],[118.880546,27.689297],[118.874641,27.682795],[118.879907,27.667944],[118.89531,27.655566],[118.903726,27.638864],[118.902643,27.623671],[118.913913,27.619138],[118.902741,27.592313],[118.90407,27.575979],[118.910222,27.570352],[118.896048,27.563129],[118.889011,27.547505],[118.869178,27.539903],[118.859631,27.527594],[118.857859,27.516671],[118.873607,27.517764],[118.879907,27.49957],[118.886501,27.501251],[118.89034,27.494107],[118.889454,27.481332],[118.897722,27.478978],[118.901462,27.464688],[118.910763,27.460862],[118.933352,27.463595],[118.949198,27.456364],[118.955448,27.449849],[118.966029,27.473346],[118.988322,27.477255],[118.990439,27.48856],[118.982761,27.49604],[118.990734,27.503352],[118.998903,27.496335],[119.020803,27.497931],[119.037191,27.480617],[119.055301,27.477591],[119.066423,27.466957],[119.072525,27.472253],[119.088126,27.464099],[119.115095,27.482845],[119.130744,27.4728],[119.131286,27.46309],[119.118884,27.461451],[119.125921,27.452203],[119.121394,27.438329],[119.12853,27.43177],[119.138766,27.434419],[119.147526,27.424832],[119.153973,27.428532],[119.16849,27.424874],[119.180252,27.428238],[119.19477,27.418735],[119.209485,27.422099],[119.222674,27.417053],[119.243441,27.419828],[119.24728,27.4295],[119.251069,27.420753],[119.267851,27.421468],[119.276463,27.435512],[119.285026,27.457626],[119.334682,27.480029],[119.347674,27.492763],[119.341867,27.506797],[119.360027,27.524402],[119.376808,27.534988],[119.394968,27.539272],[119.41667,27.539651],[119.422674,27.536584],[119.432861,27.513016],[119.438472,27.508772],[119.45171,27.51352],[119.466523,27.52646],[119.474643,27.539314],[119.477497,27.553847],[119.48483,27.570394],[119.481877,27.585679],[119.488718,27.59882],[119.500923,27.608224],[119.49797,27.625896],[119.501169,27.649901],[119.511503,27.653468],[119.52046,27.650069],[119.525923,27.660307],[119.537094,27.658923],[119.541917,27.663916],[119.539161,27.67537],[119.549299,27.670167],[119.550135,27.663832],[119.566523,27.663748],[119.578925,27.669832],[119.583945,27.665175],[119.595018,27.666895],[119.606238,27.67474],[119.635569,27.668405],[119.643,27.673188],[119.646937,27.685732],[119.65614,27.69345],[119.650923,27.695547],[119.650726,27.717147],[119.665982,27.721886],[119.678581,27.734005],[119.680205,27.744193],[119.696986,27.753626],[119.719427,27.76046],[119.725874,27.767712],[119.734831,27.766622],[119.756189,27.795625],[119.768148,27.805306],[119.773069,27.794075],[119.785077,27.795793],[119.787882,27.808993],[119.785766,27.822485],[119.793886,27.826381],[119.785766,27.833503],[119.788965,27.85319],[119.785077,27.861651],[119.790097,27.867095],[119.800186,27.890545],[119.791032,27.898584],[119.786455,27.909302],[119.804713,27.922111],[119.815146,27.92073],[119.825284,27.911771],[119.83306,27.911353],[119.843099,27.92705],[119.85117,27.932198],[119.831436,27.951617],[119.833601,27.956178],[119.854861,27.961911],[119.861997,27.949525],[119.865688,27.950864],[119.86554,27.966388],[119.875235,27.974128],[119.892115,27.951366],[119.90683,27.954253],[119.928631,27.968814],[119.96244,27.97622],[119.968739,27.962496],[119.962145,27.950236],[119.966919,27.937597],[120.001269,27.941029],[120.009389,27.947892],[120.020511,27.939606],[120.031781,27.941322],[120.043001,27.951115],[120.063572,27.951073],[120.064311,27.961241],[120.074301,27.972287],[120.084389,27.967099],[120.096889,27.980613],[120.11746,27.982621],[120.143888,27.976596],[120.145758,27.979692],[120.171939,27.978563],[120.176713,27.972203],[120.174842,27.960404],[120.178337,27.952956],[120.187835,27.948562],[120.202057,27.935965],[120.218691,27.93563],[120.229961,27.931361],[120.241575,27.934961],[120.24561,27.943415],[120.248957,27.964003],[120.257471,27.96735],[120.265591,27.95714],[120.276516,27.959609],[120.295168,27.977057],[120.324646,27.978981],[120.328928,27.966681],[120.336064,27.970697],[120.349154,27.987683],[120.335522,27.990444],[120.344479,28.019011],[120.348711,28.021018],[120.34881,28.034902],[120.344922,28.040003],[120.350286,28.052588],[120.357176,28.050581],[120.372432,28.054929],[120.37381,28.066174],[120.362294,28.080093],[120.368446,28.088912],[120.383652,28.09539],[120.390542,28.094303],[120.411851,28.11457],[120.405601,28.124222],[120.408013,28.131617],[120.38567,28.14206],[120.385916,28.147365],[120.421546,28.160188],[120.413672,28.172633],[120.422087,28.182823],[120.431044,28.186915],[120.425188,28.196351],[120.41195,28.199482],[120.415788,28.213927],[120.438426,28.234463],[120.433505,28.246984],[120.421448,28.253827],[120.426418,28.268056],[120.417019,28.288832],[120.414164,28.302931],[120.402796,28.305976],[120.394971,28.315485],[120.377698,28.31757],[120.369971,28.331332],[120.357914,28.32883],[120.346595,28.335126],[120.360768,28.3453],[120.359883,28.359391],[120.353485,28.367228],[120.334686,28.371355],[120.33503,28.384484],[120.344725,28.392444],[120.337638,28.395528],[120.331684,28.407571],[120.338819,28.412363],[120.33818,28.427112],[120.34379,28.431903],[120.366723,28.424279],[120.374302,28.410821],[120.381684,28.42557],[120.381044,28.436277],[120.372137,28.446982],[120.384341,28.458894],[120.387786,28.479467],[120.379715,28.498037],[120.36628,28.499785],[120.341034,28.49633],[120.336802,28.509236],[120.324252,28.512358],[120.313376,28.522181],[120.304223,28.506988],[120.292658,28.511983],[120.290935,28.539037],[120.311556,28.557639],[120.322087,28.554143],[120.326221,28.56388],[120.322481,28.573449],[120.332963,28.580563],[120.349597,28.574198],[120.361359,28.580188],[120.371152,28.573615],[120.3807,28.581852],[120.381733,28.599864],[120.371644,28.606394],[120.368839,28.618205],[120.353288,28.626896],[120.349745,28.633008],[120.356733,28.637665],[120.357471,28.646853],[120.336211,28.654378],[120.32253,28.6698],[120.324056,28.686341],[120.331585,28.701301],[120.349499,28.704334],[120.355503,28.712187],[120.351861,28.723986],[120.343101,28.721909],[120.347481,28.730218],[120.362934,28.734538],[120.369971,28.740893],[120.368987,28.763861],[120.386064,28.787114],[120.40068,28.785494],[120.409883,28.798572],[120.408111,28.806626],[120.415099,28.822315],[120.426713,28.831985]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/340000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/340000.json new file mode 100644 index 0000000..ecc42f0 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/340000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.032273,31.256607],[117.042235,31.252469],[117.055104,31.235386],[117.071358,31.236871],[117.079174,31.221643],[117.100147,31.190488],[117.109394,31.169571],[117.12212,31.148543],[117.121977,31.129264],[117.117163,31.12443],[117.122787,31.101798],[117.117306,31.08506],[117.13599,31.073155],[117.156248,31.072411],[117.175314,31.087451],[117.190566,31.0697],[117.212063,31.057315],[117.225409,31.03706],[117.229365,31.022331],[117.247049,31.011217],[117.277315,30.984728],[117.28518,30.98244],[117.298002,30.985526],[117.306343,30.999994],[117.314065,30.999835],[117.324789,30.989249],[117.337802,30.987653],[117.348907,30.992122],[117.356534,30.987919],[117.369498,30.963659],[117.365161,30.959029],[117.371453,30.950994],[117.383273,30.951899],[117.385466,30.964829],[117.412968,30.97728],[117.441567,30.967916],[117.44824,30.982706],[117.45925,30.988983],[117.494808,30.996005],[117.507534,31.003452],[117.493616,31.029988],[117.483941,31.035837],[117.485037,31.041952],[117.494427,31.046364],[117.51211,31.047162],[117.524169,31.066458],[117.528697,31.079267],[117.524217,31.095156],[117.512206,31.10658],[117.517401,31.114974],[117.527315,31.118055],[117.530842,31.137018],[117.552387,31.145197],[117.558774,31.159111],[117.555008,31.177216],[117.532463,31.19224],[117.525266,31.200573],[117.540328,31.205987],[117.555723,31.215062],[117.561395,31.233263],[117.573121,31.248066],[117.575409,31.255758],[117.57212,31.271034],[117.602673,31.275754],[117.6164,31.294156],[117.633845,31.297125],[117.647763,31.32077],[117.656104,31.34955],[117.677124,31.391459],[117.692901,31.407349],[117.697,31.431549],[117.705628,31.458707],[117.720642,31.467916],[117.740613,31.46437],[117.757105,31.471727],[117.768497,31.466011],[117.778459,31.4812],[117.795904,31.483423],[117.81559,31.479665],[117.830985,31.486016],[117.850146,31.483634],[117.890137,31.501254],[117.900146,31.504059],[117.917782,31.502366],[117.934226,31.488556],[117.945523,31.487815],[117.965399,31.498239],[117.952386,31.519823],[117.939565,31.525113],[117.952148,31.536961],[117.941662,31.540663],[117.92803,31.538441],[117.919784,31.54923],[117.908297,31.54685],[117.907248,31.556686],[117.913921,31.564987],[117.928268,31.568212],[117.935323,31.58053],[117.929603,31.587138],[117.936037,31.588935],[117.932129,31.604474],[117.937181,31.610446],[117.934608,31.618108],[117.941138,31.626932],[117.96273,31.627143],[117.960775,31.616681],[117.971929,31.620486],[117.973311,31.63845],[117.969021,31.642148],[117.963873,31.659368],[117.967639,31.662168],[117.949288,31.671357],[117.939183,31.671357],[117.941424,31.679067],[117.932272,31.681813],[117.913206,31.704042],[117.913063,31.715339],[117.92007,31.734129],[117.915256,31.75033],[117.924741,31.76141],[117.909441,31.767424],[117.905961,31.777553],[117.913445,31.787522],[117.901385,31.811782],[117.908011,31.832556],[117.913874,31.840885],[117.935751,31.855433],[117.94171,31.868873],[117.951862,31.906229],[117.929698,31.920819],[117.91516,31.922189],[117.900051,31.92914],[117.886562,31.926771],[117.868116,31.928982],[117.868592,31.945307],[117.865637,31.954311],[117.846428,31.962576],[117.844665,31.974526],[117.836085,31.979053],[117.82946,31.994789],[117.810918,32.002262],[117.832987,32.015259],[117.833416,32.03383],[117.842377,32.041773],[117.864207,32.047086],[117.885084,32.064125],[117.868259,32.075957],[117.866495,32.085841],[117.858059,32.093832],[117.868163,32.097354],[117.867019,32.106553],[117.851624,32.105975],[117.855342,32.123319],[117.872739,32.141028],[117.863921,32.195498],[117.847191,32.217445],[117.833225,32.221697],[117.819879,32.230516],[117.807391,32.221225],[117.791471,32.219755],[117.781605,32.231986],[117.770928,32.239177],[117.757439,32.240646],[117.741281,32.247154],[117.729126,32.245632],[117.712015,32.236553],[117.707487,32.243901],[117.697239,32.248781],[117.673216,32.250985],[117.672215,32.261061],[117.652434,32.260799],[117.631748,32.248886],[117.631986,32.256915],[117.622549,32.249988],[117.613921,32.250198],[117.605437,32.238914],[117.59395,32.239124],[117.576076,32.230726],[117.553864,32.215975],[117.498145,32.203532],[117.48232,32.212405],[117.46864,32.223482],[117.449098,32.233928],[117.435371,32.236762],[117.427268,32.242536],[117.425218,32.259539],[117.40825,32.26762],[117.395761,32.283727],[117.412587,32.319602],[117.423359,32.334546],[117.444903,32.343512],[117.44171,32.366524],[117.405342,32.375119],[117.392568,32.388115],[117.369546,32.382508],[117.359251,32.384971],[117.377315,32.398385],[117.382415,32.409177],[117.38232,32.43102],[117.39376,32.452805],[117.408297,32.468565],[117.394046,32.478302],[117.380938,32.464377],[117.365113,32.455895],[117.32722,32.441704],[117.30844,32.451234],[117.293045,32.443799],[117.28294,32.442751],[117.266877,32.451444],[117.244951,32.460136],[117.219546,32.463015],[117.209012,32.472544],[117.211586,32.476261],[117.209632,32.493953],[117.211205,32.516194],[117.2011,32.534035],[117.167115,32.534296],[117.157773,32.535866],[117.150766,32.526606],[117.139613,32.520432],[117.127649,32.524618],[117.115828,32.521949],[117.110681,32.527862],[117.09457,32.531995],[117.084847,32.530477],[117.07355,32.51656],[117.079603,32.511589],[117.074694,32.491754],[117.068116,32.482804],[117.070786,32.469141],[117.06702,32.461445],[117.047668,32.438824],[117.048336,32.430601],[117.039661,32.415987],[117.026601,32.413787],[117.009203,32.404567],[117.00458,32.386228],[117.017687,32.383084],[117.042282,32.38539],[117.045619,32.381145],[117.043712,32.347863],[117.037897,32.342148],[117.043331,32.332973],[117.052053,32.33549],[117.057297,32.32815],[117.047621,32.320179],[117.035705,32.29469],[117.038374,32.281156],[117.046238,32.276329],[117.05763,32.284146],[117.067354,32.280054],[117.072215,32.266256],[117.059727,32.23461],[117.047239,32.225162],[117.013636,32.2228],[117.003102,32.212458],[117.004389,32.202902],[117.025314,32.190877],[117.024456,32.177642],[117.019022,32.168923],[117.007392,32.16199],[116.983274,32.161937],[116.978412,32.152271],[116.985943,32.128206],[116.997573,32.117696],[117.010299,32.115015],[117.020309,32.095514],[117.02355,32.074432],[117.030557,32.064599],[117.047001,32.051767],[117.046715,32.041247],[117.040757,32.024256],[117.029937,32.006998],[117.020738,32.001052],[116.996572,31.993421],[116.996667,32.006419],[116.985562,32.013944],[116.971358,32.016311],[116.96254,32.013154],[116.957106,32.022362],[116.940423,32.027728],[116.923789,32.013523],[116.929175,31.998736],[116.937421,31.989474],[116.921024,31.980579],[116.879175,31.974315],[116.865352,31.96942],[116.859346,31.960523],[116.841424,31.94815],[116.831606,31.935881],[116.810157,31.921188],[116.790042,31.922557],[116.771072,31.911286],[116.764256,31.904227],[116.716067,31.884207],[116.714113,31.878938],[116.721596,31.87135],[116.724647,31.85828],[116.740567,31.857911],[116.732607,31.848371],[116.702006,31.832082],[116.692521,31.820272],[116.694809,31.809356],[116.714113,31.791847],[116.719785,31.779083],[116.728746,31.782406],[116.734752,31.77481],[116.731129,31.76542],[116.752101,31.765525],[116.758012,31.762465],[116.759442,31.7469],[116.752149,31.728746],[116.762254,31.711327],[116.763255,31.685879],[116.767926,31.672097],[116.757583,31.659157],[116.75315,31.647061],[116.754628,31.636918],[116.765638,31.618584],[116.766782,31.589358],[116.763255,31.58238],[116.767497,31.571331],[116.789756,31.550605],[116.792854,31.543941],[116.804485,31.539235],[116.806725,31.532624],[116.815733,31.531936],[116.829747,31.519083],[116.845476,31.526488],[116.879318,31.531672],[116.902054,31.528234],[116.934561,31.537754],[116.95253,31.532042],[116.966925,31.539816],[116.975457,31.540239],[116.987135,31.533787],[116.990662,31.537542],[116.990852,31.558536],[117.002101,31.56081],[117.006868,31.548013],[117.039613,31.538864],[117.055009,31.544735],[117.065971,31.553513],[117.112301,31.540081],[117.124265,31.54447],[117.132082,31.542884],[117.13375,31.551028],[117.144999,31.554835],[117.153817,31.545158],[117.187039,31.552085],[117.198288,31.551979],[117.220023,31.540239],[117.228316,31.544788],[117.242282,31.508185],[117.251386,31.502947],[117.250719,31.49681],[117.237277,31.490461],[117.184513,31.492842],[117.166448,31.490619],[117.149194,31.483317],[117.142473,31.472045],[117.113064,31.438485],[117.094379,31.408831],[117.074837,31.374401],[117.074074,31.360678],[117.081367,31.345947],[117.073693,31.335453],[117.070023,31.321724],[117.070786,31.301102],[117.063874,31.289436],[117.045809,31.282967],[117.045285,31.269018],[117.032273,31.256607]]]]},"properties":{"adcode":340100,"name":"合肥市","center":[117.283042,31.86119],"centroid":[117.360447,31.762594],"childrenNum":9,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":0,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.656866,31.304654],[118.617543,31.294103],[118.598001,31.295004],[118.575122,31.291345],[118.572548,31.300306],[118.55515,31.318862],[118.55129,31.331955],[118.557724,31.346371],[118.543663,31.365606],[118.522929,31.381924],[118.524979,31.401788],[118.510775,31.406289],[118.490946,31.403588],[118.484512,31.392465],[118.470403,31.393737],[118.461347,31.399722],[118.444998,31.393472],[118.44352,31.405389],[118.436371,31.425777],[118.430031,31.436155],[118.424598,31.456166],[118.431795,31.461512],[118.431747,31.472997],[118.420355,31.481465],[118.415255,31.49771],[118.392853,31.507868],[118.376552,31.532518],[118.347953,31.465058],[118.340089,31.453519],[118.326171,31.444149],[118.317305,31.44399],[118.314636,31.45336],[118.316781,31.474267],[118.321976,31.485487],[118.311204,31.496757],[118.309965,31.506598],[118.304054,31.507815],[118.303149,31.497233],[118.291948,31.499403],[118.267686,31.510195],[118.269831,31.515327],[118.249955,31.529291],[118.248239,31.533576],[118.219593,31.525483],[118.202434,31.526541],[118.198144,31.535004],[118.18537,31.538071],[118.167877,31.531724],[118.157153,31.522098],[118.135084,31.51702],[118.136657,31.499244],[118.144903,31.477337],[118.15067,31.468287],[118.14109,31.471568],[118.127696,31.461353],[118.131652,31.437267],[118.148096,31.437002],[118.171214,31.429484],[118.162682,31.413757],[118.168592,31.403376],[118.16516,31.399139],[117.991233,31.438537],[117.97965,31.432872],[117.974646,31.437584],[117.976076,31.448226],[117.969355,31.45569],[117.968354,31.465641],[117.98027,31.466805],[117.986895,31.474479],[117.963016,31.486545],[117.965399,31.498239],[117.945523,31.487815],[117.934226,31.488556],[117.917782,31.502366],[117.900146,31.504059],[117.890137,31.501254],[117.850146,31.483634],[117.830985,31.486016],[117.81559,31.479665],[117.795904,31.483423],[117.778459,31.4812],[117.768497,31.466011],[117.757105,31.471727],[117.740613,31.46437],[117.720642,31.467916],[117.705628,31.458707],[117.697,31.431549],[117.692901,31.407349],[117.677124,31.391459],[117.656104,31.34955],[117.647763,31.32077],[117.633845,31.297125],[117.6164,31.294156],[117.602673,31.275754],[117.57212,31.271034],[117.575409,31.255758],[117.573121,31.248066],[117.561395,31.233263],[117.555723,31.215062],[117.540328,31.205987],[117.525266,31.200573],[117.532463,31.19224],[117.555008,31.177216],[117.558774,31.159111],[117.552387,31.145197],[117.530842,31.137018],[117.527315,31.118055],[117.517401,31.114974],[117.512206,31.10658],[117.524217,31.095156],[117.528697,31.079267],[117.524169,31.066458],[117.51211,31.047162],[117.494427,31.046364],[117.485037,31.041952],[117.483941,31.035837],[117.493616,31.029988],[117.507534,31.003452],[117.523168,30.994569],[117.536943,30.992015],[117.532892,30.973662],[117.54905,30.967596],[117.560966,30.974194],[117.568926,30.968607],[117.583512,30.970735],[117.592568,30.978131],[117.62641,30.972119],[117.650671,30.957646],[117.65129,30.950409],[117.66049,30.940031],[117.66721,30.956049],[117.665828,30.966639],[117.683082,30.968767],[117.686181,30.98526],[117.693759,30.98893],[117.700432,31.002494],[117.697525,31.0101],[117.70763,31.01127],[117.718306,31.019087],[117.721023,31.0101],[117.731414,31.00994],[117.752339,31.057688],[117.767496,31.096113],[117.781319,31.111468],[117.807391,31.129742],[117.831938,31.139143],[117.850718,31.140205],[117.869879,31.133141],[117.88027,31.122039],[117.890423,31.086016],[117.897954,31.07831],[117.923788,31.068318],[117.935466,31.067681],[117.95863,31.074643],[117.973311,31.084316],[117.985513,31.079745],[118.005818,31.078204],[118.021881,31.064704],[118.009679,31.045407],[118.013778,31.034508],[118.025933,31.030414],[118.03251,31.017173],[118.070975,31.011376],[118.083654,30.993824],[118.097572,30.985579],[118.105198,30.970948],[118.124836,30.967862],[118.143807,30.970682],[118.159059,30.963925],[118.160346,30.952697],[118.152911,30.932207],[118.154579,30.923211],[118.164779,30.907186],[118.1572,30.901383],[118.134369,30.902075],[118.099097,30.885515],[118.079412,30.866608],[118.056914,30.872254],[118.039612,30.857553],[118.048144,30.855156],[118.041566,30.843276],[118.024217,30.845673],[118.013397,30.862347],[117.993473,30.854623],[117.980413,30.843808],[117.989612,30.828836],[117.966781,30.799099],[117.968783,30.794941],[117.983702,30.794035],[117.997477,30.778949],[118.030461,30.774097],[118.051671,30.758635],[118.071357,30.746849],[118.095952,30.738849],[118.115732,30.71938],[118.124979,30.717833],[118.128506,30.701295],[118.134941,30.700281],[118.126075,30.690783],[118.105723,30.662978],[118.099574,30.651341],[118.100956,30.641251],[118.1368,30.652195],[118.153578,30.666554],[118.171214,30.691637],[118.205437,30.702148],[118.218354,30.709458],[118.229221,30.709244],[118.242901,30.703482],[118.267591,30.714206],[118.278745,30.712659],[118.293282,30.699961],[118.30496,30.698146],[118.314445,30.705083],[118.297191,30.715966],[118.294712,30.722421],[118.275694,30.736449],[118.276647,30.743169],[118.294569,30.757088],[118.297906,30.772391],[118.307582,30.77639],[118.302577,30.793822],[118.305008,30.800964],[118.312872,30.795101],[118.306724,30.806934],[118.318687,30.821749],[118.33823,30.826812],[118.34762,30.824414],[118.358916,30.84578],[118.376409,30.845513],[118.409536,30.84871],[118.424502,30.841091],[118.4368,30.824733],[118.429841,30.813916],[118.419498,30.813649],[118.4317,30.796434],[118.446476,30.800911],[118.455198,30.790144],[118.451671,30.779162],[118.48027,30.76642],[118.480699,30.780602],[118.48475,30.79025],[118.502863,30.801497],[118.503101,30.810451],[118.495522,30.819884],[118.482224,30.822549],[118.477982,30.833579],[118.490899,30.842849],[118.490041,30.848656],[118.498239,30.859843],[118.485513,30.864051],[118.47741,30.857553],[118.483987,30.870762],[118.472119,30.875077],[118.475742,30.88184],[118.485846,30.87726],[118.492948,30.883491],[118.489707,30.900052],[118.511537,30.914054],[118.509154,30.928694],[118.495713,30.941042],[118.515255,30.937582],[118.510251,30.9511],[118.550956,30.970682],[118.570975,30.972278],[118.582462,30.981855],[118.581223,30.994728],[118.572262,31.016269],[118.584273,31.026107],[118.596142,31.047853],[118.603768,31.044238],[118.600956,31.028021],[118.606819,31.020204],[118.627314,31.020576],[118.650003,31.036848],[118.663396,31.054445],[118.682653,31.074909],[118.676123,31.081393],[118.676838,31.08963],[118.685513,31.096272],[118.683082,31.111893],[118.690327,31.124961],[118.702004,31.135797],[118.717305,31.144188],[118.733558,31.149446],[118.718401,31.173978],[118.708963,31.177004],[118.695045,31.189108],[118.682986,31.214054],[118.66821,31.22488],[118.663587,31.236871],[118.647286,31.245519],[118.651861,31.261009],[118.66006,31.269761],[118.661442,31.290762],[118.656866,31.304654]]]]},"properties":{"adcode":340200,"name":"芜湖市","center":[118.376451,31.326319],"centroid":[118.13997,31.160935],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":1,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.735657,32.928663],[116.757869,32.923767],[116.761301,32.916371],[116.768403,32.921476],[116.78499,32.917204],[116.790996,32.905014],[116.804866,32.902566],[116.817831,32.894021],[116.836467,32.890843],[116.840614,32.88657],[116.834179,32.877607],[116.882225,32.8443],[116.889232,32.847271],[116.898336,32.842996],[116.897239,32.834289],[116.923312,32.816508],[116.921072,32.80952],[116.935037,32.808737],[116.960919,32.791786],[116.991901,32.783752],[117.001958,32.779161],[117.018736,32.757403],[117.029318,32.758081],[117.028698,32.747696],[117.033607,32.747435],[117.04009,32.732873],[117.054437,32.729688],[117.04376,32.721388],[117.046334,32.716167],[117.066448,32.723946],[117.074837,32.717525],[117.0909,32.727757],[117.081701,32.735117],[117.084561,32.744095],[117.125266,32.75782],[117.146143,32.751349],[117.15906,32.749888],[117.160395,32.739919],[117.179365,32.74112],[117.182034,32.735952],[117.195905,32.734699],[117.202673,32.745399],[117.214112,32.752027],[117.231796,32.77217],[117.244665,32.794602],[117.255819,32.80566],[117.265542,32.800862],[117.280366,32.808842],[117.284942,32.817447],[117.307678,32.818959],[117.314017,32.828241],[117.325218,32.825894],[117.350814,32.829232],[117.361729,32.840129],[117.368354,32.837783],[117.395857,32.836427],[117.415113,32.831995],[117.422168,32.846593],[117.432272,32.842266],[117.457773,32.841484],[117.471167,32.837157],[117.479222,32.842944],[117.491281,32.864681],[117.508249,32.868747],[117.513588,32.875261],[117.512253,32.886153],[117.49967,32.897408],[117.505151,32.908557],[117.512396,32.93283],[117.528602,32.938976],[117.528173,32.967041],[117.531224,32.980576],[117.548526,32.969592],[117.56864,32.951369],[117.576839,32.941059],[117.589994,32.933924],[117.603483,32.922257],[117.626886,32.924809],[117.64619,32.912308],[117.657534,32.910745],[117.671834,32.918819],[117.679174,32.943871],[117.694665,32.96928],[117.698287,32.985],[117.707963,33.00254],[117.718545,33.006391],[117.737039,33.001083],[117.746333,33.009825],[117.762587,33.040833],[117.773359,33.047335],[117.787515,33.045202],[117.800146,33.031209],[117.822406,33.02814],[117.860346,33.035995],[117.880222,33.041977],[117.886752,33.046607],[117.893711,33.035059],[117.890613,33.031781],[117.89762,33.019607],[117.895237,33.013884],[117.879698,33.002748],[117.899384,32.990257],[117.913492,32.987655],[117.937706,33.008576],[117.947858,33.014508],[117.970642,33.001967],[117.982796,33.01175],[118.003721,33.002227],[118.011347,33.001759],[118.031462,33.014716],[118.0368,33.027099],[118.018306,33.034539],[118.005151,33.031417],[117.99843,33.040625],[118.004341,33.055293],[118.018116,33.06143],[118.032749,33.073962],[118.061681,33.07469],[118.072691,33.081034],[118.065017,33.09741],[118.07455,33.117318],[118.073835,33.135143],[118.05129,33.124854],[118.044617,33.127192],[118.050337,33.133792],[118.067925,33.135143],[118.070451,33.140391],[118.046905,33.138416],[118.03823,33.135195],[118.037086,33.15234],[118.025694,33.155977],[118.017448,33.1646],[118.005866,33.170314],[118.001528,33.178624],[117.989183,33.179663],[117.981509,33.201006],[117.993616,33.205627],[117.993473,33.211286],[117.977458,33.226237],[117.953816,33.223953],[117.942377,33.225043],[117.938993,33.234282],[117.948049,33.252135],[117.939469,33.262617],[117.970404,33.277195],[117.98313,33.296388],[117.985894,33.320243],[117.992996,33.332946],[117.978983,33.334139],[117.972691,33.330095],[117.952148,33.32885],[117.916018,33.330095],[117.909155,33.344455],[117.897954,33.340308],[117.894379,33.330613],[117.870976,33.329213],[117.859202,33.324962],[117.85353,33.304323],[117.846619,33.295247],[117.824836,33.299085],[117.809536,33.296232],[117.808345,33.283161],[117.793283,33.277559],[117.775408,33.282383],[117.737801,33.275068],[117.728125,33.284821],[117.710585,33.282954],[117.692663,33.291668],[117.690184,33.304997],[117.677124,33.309924],[117.66783,33.327917],[117.642997,33.333465],[117.631939,33.343677],[117.62374,33.345336],[117.609393,33.339789],[117.58966,33.323303],[117.577982,33.32548],[117.56416,33.333257],[117.539756,33.327813],[117.528793,33.339686],[117.507344,33.346062],[117.484274,33.345544],[117.477077,33.347772],[117.433607,33.379024],[117.424169,33.399955],[117.40172,33.424766],[117.391519,33.456249],[117.365399,33.470951],[117.34519,33.475661],[117.320404,33.476127],[117.309632,33.490877],[117.261967,33.497035],[117.24314,33.501537],[117.241996,33.489945],[117.231367,33.47328],[117.208011,33.453091],[117.202721,33.423472],[117.15968,33.457543],[117.154818,33.439059],[117.139708,33.442011],[117.128793,33.434554],[117.126839,33.422384],[117.134656,33.419743],[117.14376,33.409694],[117.133417,33.387366],[117.125504,33.380993],[117.107344,33.392702],[117.108774,33.398194],[117.094808,33.398246],[117.08232,33.406638],[117.060728,33.392288],[117.051243,33.371406],[117.062873,33.373946],[117.084894,33.365498],[117.096572,33.353941],[117.093521,33.346788],[117.080795,33.344507],[117.074932,33.333931],[117.064303,33.332842],[117.065018,33.321591],[117.092092,33.316147],[117.099289,33.307746],[117.095523,33.284873],[117.034132,33.293276],[117.025409,33.29644],[117.012444,33.279219],[117.002578,33.278025],[116.986658,33.281657],[116.974599,33.278389],[116.953531,33.286637],[116.937897,33.301315],[116.923407,33.30702],[116.904532,33.299656],[116.878841,33.299656],[116.869832,33.286118],[116.849909,33.281553],[116.841186,33.284977],[116.820452,33.302197],[116.807344,33.30702],[116.801911,33.303908],[116.800481,33.27595],[116.805485,33.275587],[116.813159,33.250319],[116.825981,33.230804],[116.826553,33.210819],[116.821405,33.202771],[116.815304,33.155405],[116.805247,33.156081],[116.791853,33.169015],[116.777078,33.151821],[116.77131,33.15525],[116.756868,33.141222],[116.754723,33.13109],[116.764589,33.114823],[116.764637,33.090704],[116.749098,33.075522],[116.748622,33.060858],[116.752483,33.053108],[116.781558,33.040105],[116.802197,33.032666],[116.814923,33.021532],[116.816162,33.013051],[116.810586,32.99541],[116.802483,33.000042],[116.79886,32.994161],[116.777459,32.996607],[116.778174,33.00332],[116.768784,33.000406],[116.76826,33.006078],[116.755152,33.002696],[116.754628,32.98906],[116.747526,32.978962],[116.740424,32.959752],[116.742711,32.94736],[116.735657,32.928663]]]]},"properties":{"adcode":340300,"name":"蚌埠市","center":[117.363228,32.939667],"centroid":[117.330324,33.107951],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":2,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.771072,31.911286],[116.790042,31.922557],[116.810157,31.921188],[116.831606,31.935881],[116.841424,31.94815],[116.859346,31.960523],[116.865352,31.96942],[116.879175,31.974315],[116.921024,31.980579],[116.937421,31.989474],[116.929175,31.998736],[116.923789,32.013523],[116.940423,32.027728],[116.957106,32.022362],[116.96254,32.013154],[116.971358,32.016311],[116.985562,32.013944],[116.996667,32.006419],[116.996572,31.993421],[117.020738,32.001052],[117.029937,32.006998],[117.040757,32.024256],[117.046715,32.041247],[117.047001,32.051767],[117.030557,32.064599],[117.02355,32.074432],[117.020309,32.095514],[117.010299,32.115015],[116.997573,32.117696],[116.985943,32.128206],[116.978412,32.152271],[116.983274,32.161937],[117.007392,32.16199],[117.019022,32.168923],[117.024456,32.177642],[117.025314,32.190877],[117.004389,32.202902],[117.003102,32.212458],[117.013636,32.2228],[117.047239,32.225162],[117.059727,32.23461],[117.072215,32.266256],[117.067354,32.280054],[117.05763,32.284146],[117.046238,32.276329],[117.038374,32.281156],[117.035705,32.29469],[117.047621,32.320179],[117.057297,32.32815],[117.052053,32.33549],[117.043331,32.332973],[117.037897,32.342148],[117.043712,32.347863],[117.045619,32.381145],[117.042282,32.38539],[117.017687,32.383084],[117.00458,32.386228],[117.009203,32.404567],[117.026601,32.413787],[117.039661,32.415987],[117.048336,32.430601],[117.047668,32.438824],[117.06702,32.461445],[117.070786,32.469141],[117.068116,32.482804],[117.074694,32.491754],[117.079603,32.511589],[117.07355,32.51656],[117.084847,32.530477],[117.09457,32.531995],[117.110681,32.527862],[117.115828,32.521949],[117.127649,32.524618],[117.139613,32.520432],[117.150766,32.526606],[117.157773,32.535866],[117.167115,32.534296],[117.2011,32.534035],[117.203245,32.542457],[117.211396,32.54659],[117.214637,32.560345],[117.199146,32.579851],[117.195952,32.60871],[117.17498,32.653495],[117.172406,32.664675],[117.1613,32.679562],[117.162349,32.686874],[117.184322,32.696691],[117.189804,32.716846],[117.205152,32.728279],[117.195905,32.734699],[117.182034,32.735952],[117.179365,32.74112],[117.160395,32.739919],[117.15906,32.749888],[117.146143,32.751349],[117.125266,32.75782],[117.084561,32.744095],[117.081701,32.735117],[117.0909,32.727757],[117.074837,32.717525],[117.066448,32.723946],[117.046334,32.716167],[117.04376,32.721388],[117.054437,32.729688],[117.04009,32.732873],[117.033607,32.747435],[117.028698,32.747696],[117.029318,32.758081],[117.018736,32.757403],[117.001958,32.779161],[116.991901,32.783752],[116.960919,32.791786],[116.935037,32.808737],[116.921072,32.80952],[116.923312,32.816508],[116.897239,32.834289],[116.898336,32.842996],[116.889232,32.847271],[116.882225,32.8443],[116.834179,32.877607],[116.840614,32.88657],[116.836467,32.890843],[116.817831,32.894021],[116.804866,32.902566],[116.790996,32.905014],[116.78499,32.917204],[116.768403,32.921476],[116.761301,32.916371],[116.757869,32.923767],[116.735657,32.928663],[116.705676,32.936944],[116.684323,32.93934],[116.627888,32.941475],[116.446382,32.984896],[116.382416,33.004777],[116.376649,32.993744],[116.376458,32.969019],[116.371739,32.964906],[116.365162,32.946891],[116.365877,32.940694],[116.385705,32.921632],[116.393856,32.910745],[116.394618,32.891311],[116.394428,32.884121],[116.386563,32.86833],[116.389995,32.857071],[116.406058,32.85337],[116.421882,32.857853],[116.445572,32.843518],[116.439614,32.821619],[116.449194,32.8139],[116.442473,32.809207],[116.441377,32.800184],[116.448765,32.789073],[116.44743,32.760951],[116.442998,32.748583],[116.445238,32.732977],[116.45539,32.729845],[116.45315,32.71481],[116.444142,32.70656],[116.44519,32.697997],[116.460252,32.680972],[116.487135,32.677942],[116.489327,32.681807],[116.502197,32.681024],[116.506439,32.662899],[116.526267,32.657779],[116.535276,32.628466],[116.541711,32.622874],[116.537898,32.615452],[116.540138,32.60296],[116.555867,32.600032],[116.554771,32.585864],[116.601863,32.588949],[116.620119,32.583354],[116.628984,32.575197],[116.635085,32.55386],[116.613827,32.544811],[116.566591,32.544183],[116.523741,32.509234],[116.522597,32.486468],[116.509966,32.460607],[116.494714,32.465319],[116.490471,32.448407],[116.484799,32.439347],[116.480176,32.406767],[116.492187,32.395817],[116.485371,32.388062],[116.481129,32.375276],[116.48418,32.360286],[116.506534,32.344403],[116.519261,32.314411],[116.521501,32.292539],[116.52641,32.270716],[116.521835,32.261113],[116.527554,32.240594],[116.515305,32.223377],[116.501101,32.215345],[116.515638,32.202692],[116.517068,32.194395],[116.509299,32.18468],[116.515495,32.163461],[116.526601,32.151746],[116.530224,32.134249],[116.524694,32.116434],[116.533131,32.097932],[116.549385,32.078848],[116.544046,32.067701],[116.551911,32.042036],[116.546858,32.028149],[116.571167,32.020468],[116.586801,32.018784],[116.612635,32.000947],[116.667735,31.977947],[116.677936,31.976263],[116.681939,31.967999],[116.680462,31.957259],[116.680509,31.915552],[116.687754,31.903437],[116.70234,31.905122],[116.723169,31.916711],[116.748479,31.919028],[116.771072,31.911286]]]]},"properties":{"adcode":340400,"name":"淮南市","center":[117.018329,32.647574],"centroid":[116.773391,32.47172],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":3,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[118.883701,31.500143],[118.877791,31.478766],[118.870498,31.463047],[118.866065,31.44489],[118.86964,31.421594],[118.851146,31.392518],[118.847381,31.393948],[118.829507,31.377527],[118.800241,31.368997],[118.784559,31.368573],[118.771261,31.363116],[118.7674,31.365871],[118.770355,31.379328],[118.765398,31.387963],[118.754626,31.385049],[118.74576,31.372706],[118.735036,31.344781],[118.72107,31.322679],[118.714731,31.321671],[118.704102,31.307782],[118.692186,31.309001],[118.681747,31.304336],[118.656866,31.304654],[118.617543,31.294103],[118.598001,31.295004],[118.575122,31.291345],[118.572548,31.300306],[118.55515,31.318862],[118.55129,31.331955],[118.557724,31.346371],[118.543663,31.365606],[118.522929,31.381924],[118.524979,31.401788],[118.510775,31.406289],[118.490946,31.403588],[118.484512,31.392465],[118.470403,31.393737],[118.461347,31.399722],[118.444998,31.393472],[118.44352,31.405389],[118.436371,31.425777],[118.430031,31.436155],[118.424598,31.456166],[118.431795,31.461512],[118.431747,31.472997],[118.420355,31.481465],[118.415255,31.49771],[118.392853,31.507868],[118.376552,31.532518],[118.347953,31.465058],[118.340089,31.453519],[118.326171,31.444149],[118.317305,31.44399],[118.314636,31.45336],[118.316781,31.474267],[118.321976,31.485487],[118.311204,31.496757],[118.309965,31.506598],[118.304054,31.507815],[118.303149,31.497233],[118.291948,31.499403],[118.267686,31.510195],[118.269831,31.515327],[118.249955,31.529291],[118.248239,31.533576],[118.219593,31.525483],[118.202434,31.526541],[118.198144,31.535004],[118.18537,31.538071],[118.167877,31.531724],[118.157153,31.522098],[118.135084,31.51702],[118.136657,31.499244],[118.144903,31.477337],[118.15067,31.468287],[118.14109,31.471568],[118.127696,31.461353],[118.131652,31.437267],[118.148096,31.437002],[118.171214,31.429484],[118.162682,31.413757],[118.168592,31.403376],[118.16516,31.399139],[117.991233,31.438537],[117.97965,31.432872],[117.974646,31.437584],[117.976076,31.448226],[117.969355,31.45569],[117.968354,31.465641],[117.98027,31.466805],[117.986895,31.474479],[117.963016,31.486545],[117.965399,31.498239],[117.952386,31.519823],[117.939565,31.525113],[117.952148,31.536961],[117.941662,31.540663],[117.92803,31.538441],[117.919784,31.54923],[117.908297,31.54685],[117.907248,31.556686],[117.913921,31.564987],[117.928268,31.568212],[117.935323,31.58053],[117.929603,31.587138],[117.936037,31.588935],[117.932129,31.604474],[117.937181,31.610446],[117.934608,31.618108],[117.941138,31.626932],[117.96273,31.627143],[117.960775,31.616681],[117.971929,31.620486],[117.973311,31.63845],[117.969021,31.642148],[117.963873,31.659368],[117.967639,31.662168],[117.949288,31.671357],[117.939183,31.671357],[117.941424,31.679067],[117.932272,31.681813],[117.913206,31.704042],[117.913063,31.715339],[117.92007,31.734129],[117.915256,31.75033],[117.924741,31.76141],[117.909441,31.767424],[117.905961,31.777553],[117.913445,31.787522],[117.901385,31.811782],[117.908011,31.832556],[117.913874,31.840885],[117.935751,31.855433],[117.94171,31.868873],[117.951862,31.906229],[117.96435,31.90154],[117.988373,31.881836],[118.044808,31.859545],[118.061776,31.858543],[118.072834,31.850901],[118.083988,31.8538],[118.085942,31.877462],[118.109107,31.891425],[118.120832,31.906123],[118.132034,31.903331],[118.147763,31.907967],[118.171118,31.900118],[118.181843,31.907651],[118.187277,31.919186],[118.203959,31.927719],[118.219736,31.925296],[118.239421,31.944096],[118.256724,31.954469],[118.290136,31.979895],[118.304865,31.985527],[118.305341,31.998],[118.31721,32.019836],[118.334464,32.031253],[118.348716,32.035461],[118.358344,32.045297],[118.385084,32.05813],[118.394378,32.0484],[118.385989,32.033146],[118.401528,32.018679],[118.38966,32.012049],[118.390994,31.989527],[118.387181,31.983264],[118.376695,31.981737],[118.379221,31.967262],[118.369021,31.956153],[118.369498,31.944201],[118.36435,31.930141],[118.375313,31.925349],[118.386037,31.914815],[118.402958,31.914025],[118.415923,31.901435],[118.440136,31.892689],[118.452291,31.884628],[118.47231,31.879623],[118.467114,31.868873],[118.466781,31.858016],[118.475456,31.850321],[118.490613,31.843152],[118.504721,31.841729],[118.486132,31.795434],[118.482176,31.778344],[118.503196,31.778028],[118.510775,31.765631],[118.523597,31.76199],[118.533844,31.767266],[118.539659,31.761568],[118.538706,31.74938],[118.522119,31.743047],[118.530031,31.742309],[118.545093,31.732071],[118.550003,31.735976],[118.5572,31.729643],[118.57169,31.746214],[118.575312,31.740937],[118.593091,31.74442],[118.600718,31.75397],[118.609345,31.757189],[118.619021,31.750066],[118.627076,31.759458],[118.641661,31.758244],[118.648382,31.748799],[118.64209,31.744314],[118.6521,31.739776],[118.653959,31.730118],[118.677267,31.728587],[118.684893,31.724893],[118.687324,31.716183],[118.697715,31.709426],[118.680746,31.696598],[118.673406,31.696334],[118.671404,31.688467],[118.654912,31.675635],[118.647,31.679859],[118.643234,31.671357],[118.647953,31.659368],[118.643616,31.650019],[118.657867,31.641091],[118.673835,31.640563],[118.684798,31.636231],[118.694998,31.639718],[118.716923,31.639454],[118.719402,31.62746],[118.728649,31.634276],[118.734226,31.632216],[118.745141,31.656516],[118.744378,31.668347],[118.751146,31.677694],[118.768306,31.677483],[118.774121,31.682605],[118.799049,31.666393],[118.783082,31.656516],[118.789564,31.646532],[118.796046,31.628306],[118.802767,31.619482],[118.81454,31.619218],[118.819545,31.628517],[118.833844,31.630314],[118.858534,31.623973],[118.868735,31.611397],[118.870784,31.599347],[118.865303,31.591789],[118.877314,31.589675],[118.873358,31.573922],[118.881985,31.564775],[118.875122,31.551979],[118.873739,31.531936],[118.883939,31.53146],[118.885846,31.518871],[118.883701,31.500143]]]},"properties":{"adcode":340500,"name":"马鞍山市","center":[118.507906,31.689362],"centroid":[118.369758,31.637138],"childrenNum":6,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":4,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.393713,33.783082],[116.408155,33.770393],[116.406439,33.762552],[116.435753,33.762191],[116.433226,33.739696],[116.460014,33.734123],[116.463589,33.719724],[116.479413,33.708678],[116.478603,33.697992],[116.484227,33.697889],[116.492426,33.681315],[116.49214,33.668405],[116.485848,33.666081],[116.481129,33.654253],[116.503817,33.631265],[116.505486,33.618968],[116.533751,33.614575],[116.543808,33.59783],[116.551101,33.596642],[116.55153,33.588578],[116.540662,33.587596],[116.548002,33.57007],[116.531939,33.565624],[116.525505,33.551455],[116.52846,33.544008],[116.524742,33.53056],[116.534656,33.525077],[116.539089,33.513178],[116.533989,33.498018],[116.535562,33.481302],[116.547478,33.467897],[116.56826,33.466292],[116.58213,33.471209],[116.593617,33.480112],[116.612778,33.481872],[116.623503,33.485495],[116.63642,33.484977],[116.642378,33.477628],[116.665733,33.474626],[116.687182,33.47799],[116.700004,33.474056],[116.722597,33.450709],[116.745905,33.449104],[116.756725,33.438438],[116.7705,33.431861],[116.804628,33.422902],[116.796572,33.403012],[116.800862,33.386122],[116.790948,33.360005],[116.794141,33.354822],[116.787421,33.347254],[116.790424,33.334553],[116.789089,33.319777],[116.801911,33.303908],[116.807344,33.30702],[116.820452,33.302197],[116.841186,33.284977],[116.849909,33.281553],[116.869832,33.286118],[116.878841,33.299656],[116.904532,33.299656],[116.923407,33.30702],[116.929413,33.317132],[116.927268,33.324703],[116.918355,33.328539],[116.921119,33.334346],[116.913922,33.344559],[116.924218,33.34658],[116.928174,33.358813],[116.932749,33.360212],[116.942902,33.377417],[116.957249,33.374464],[116.958298,33.379957],[116.973455,33.391977],[116.964351,33.399334],[116.969403,33.412336],[116.965209,33.419069],[116.971358,33.42834],[116.96621,33.433052],[116.966734,33.443305],[116.958822,33.452314],[116.940042,33.453608],[116.929461,33.462151],[116.928793,33.470795],[116.904961,33.47711],[116.905771,33.482338],[116.919594,33.492895],[116.90458,33.505987],[116.915257,33.53894],[116.927888,33.543905],[116.928269,33.554403],[116.937039,33.580307],[116.915209,33.578291],[116.899527,33.572035],[116.873741,33.589612],[116.865209,33.603878],[116.859728,33.62429],[116.867926,33.637361],[116.871787,33.650483],[116.869594,33.661949],[116.873693,33.675945],[116.880795,33.676874],[116.906343,33.670884],[116.917116,33.674137],[116.929365,33.673156],[116.928221,33.702948],[116.939279,33.705116],[116.932082,33.739335],[116.93437,33.748158],[116.950767,33.746146],[116.943951,33.756465],[116.942235,33.773746],[116.95029,33.790096],[116.949575,33.808814],[116.951386,33.832476],[116.958155,33.847732],[116.959108,33.880245],[116.962826,33.892918],[116.986038,33.899047],[116.997096,33.914188],[116.990471,33.92495],[116.99948,33.938336],[116.991234,33.952801],[116.991281,33.961757],[116.98375,33.964948],[116.970929,33.961809],[116.95763,33.967676],[116.977459,33.993609],[116.974027,33.998703],[116.978603,34.007191],[116.969451,34.013672],[116.971596,34.025604],[116.967163,34.028895],[116.947668,34.031004],[116.950195,34.037072],[116.94805,34.05224],[116.961634,34.064218],[116.973074,34.07897],[116.955628,34.077788],[116.929556,34.080615],[116.92865,34.091201],[116.908965,34.098961],[116.902435,34.098241],[116.888898,34.082722],[116.874122,34.073984],[116.850719,34.082516],[116.845905,34.06977],[116.833512,34.066223],[116.828555,34.058923],[116.816639,34.072854],[116.818689,34.086114],[116.806248,34.077017],[116.811682,34.067919],[116.808345,34.063961],[116.801911,34.032392],[116.807678,34.012386],[116.803055,33.993712],[116.796239,34.003384],[116.784084,34.007293],[116.784418,34.011357],[116.752435,34.013003],[116.745762,34.017015],[116.734275,34.012077],[116.730652,34.016192],[116.711158,34.014186],[116.703913,34.009454],[116.689899,34.016141],[116.678984,34.010174],[116.662445,34.018198],[116.648765,34.021438],[116.626887,34.017581],[116.604199,34.021335],[116.60315,34.007911],[116.607249,33.999886],[116.629937,33.984039],[116.633512,33.977093],[116.64805,33.973336],[116.650338,33.959081],[116.639995,33.948889],[116.645762,33.929893],[116.638517,33.917175],[116.642712,33.892454],[116.627316,33.888591],[116.611825,33.894617],[116.597097,33.904146],[116.581606,33.908317],[116.567068,33.908214],[116.558346,33.901674],[116.555104,33.888282],[116.558393,33.881482],[116.546668,33.882512],[116.53928,33.874218],[116.536897,33.882255],[116.525219,33.880503],[116.521215,33.871075],[116.505295,33.872363],[116.501911,33.864686],[116.484895,33.869787],[116.47398,33.861337],[116.460157,33.859946],[116.453007,33.846959],[116.437326,33.846547],[116.432988,33.814846],[116.436944,33.80309],[116.432607,33.795304],[116.420929,33.796696],[116.40825,33.805514],[116.393713,33.783082]]],[[[117.031558,34.166709],[117.025314,34.167633],[117.030795,34.18632],[117.040328,34.201513],[117.047239,34.205772],[117.051005,34.221577],[117.044904,34.224758],[117.049575,34.242406],[117.042092,34.248664],[117.031081,34.242765],[117.035085,34.23189],[117.030175,34.221372],[117.021691,34.213675],[117.009584,34.219679],[117.007821,34.232967],[116.994666,34.222808],[116.988803,34.205208],[116.99538,34.206337],[116.980271,34.195867],[116.982416,34.172357],[116.993522,34.168352],[116.980176,34.155978],[116.982416,34.167274],[116.975457,34.169071],[116.971501,34.154643],[116.982177,34.137285],[117.001768,34.142318],[117.004913,34.151408],[117.012921,34.149508],[117.023312,34.161678],[117.031748,34.155721],[117.031558,34.166709]]]]},"properties":{"adcode":340600,"name":"淮北市","center":[116.794664,33.971707],"centroid":[116.74441,33.720047],"childrenNum":4,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":5,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.156248,31.072411],[117.149908,31.058272],[117.144141,31.054179],[117.14395,31.039293],[117.137611,31.028925],[117.141186,31.014514],[117.134799,31.007281],[117.124599,31.006749],[117.111348,31.01345],[117.093903,31.0101],[117.095142,30.988558],[117.082654,30.974885],[117.080366,30.961743],[117.086419,30.92864],[117.096477,30.885728],[117.106248,30.827558],[117.105009,30.790677],[117.101005,30.767379],[117.117211,30.755968],[117.124694,30.740343],[117.162969,30.708604],[117.178078,30.702148],[117.187277,30.70663],[117.190566,30.698467],[117.200337,30.701881],[117.205009,30.69201],[117.241376,30.690356],[117.223979,30.686514],[117.212968,30.678616],[117.207296,30.669543],[117.205485,30.654384],[117.211872,30.635111],[117.217068,30.630626],[117.272644,30.656626],[117.309489,30.676801],[117.343426,30.688969],[117.366829,30.694251],[117.394379,30.694998],[117.399384,30.690676],[117.422358,30.682885],[117.4511,30.679043],[117.470404,30.678989],[117.485418,30.686514],[117.493616,30.696706],[117.507249,30.726688],[117.576934,30.756662],[117.645523,30.776603],[117.670594,30.781508],[117.701815,30.806614],[117.698526,30.789931],[117.72088,30.791103],[117.742568,30.8072],[117.751529,30.802936],[117.755961,30.792223],[117.748478,30.778522],[117.759918,30.769832],[117.758202,30.761674],[117.781938,30.764127],[117.78375,30.749729],[117.796238,30.748449],[117.803101,30.757462],[117.815733,30.759914],[117.842282,30.773617],[117.846333,30.788438],[117.872787,30.807893],[117.884036,30.812317],[117.903197,30.814022],[117.915828,30.819564],[117.934608,30.835763],[117.94333,30.833099],[117.953626,30.817593],[117.980413,30.843808],[117.993473,30.854623],[118.013397,30.862347],[118.024217,30.845673],[118.041566,30.843276],[118.048144,30.855156],[118.039612,30.857553],[118.056914,30.872254],[118.079412,30.866608],[118.099097,30.885515],[118.134369,30.902075],[118.1572,30.901383],[118.164779,30.907186],[118.154579,30.923211],[118.152911,30.932207],[118.160346,30.952697],[118.159059,30.963925],[118.143807,30.970682],[118.124836,30.967862],[118.105198,30.970948],[118.097572,30.985579],[118.083654,30.993824],[118.070975,31.011376],[118.03251,31.017173],[118.025933,31.030414],[118.013778,31.034508],[118.009679,31.045407],[118.021881,31.064704],[118.005818,31.078204],[117.985513,31.079745],[117.973311,31.084316],[117.95863,31.074643],[117.935466,31.067681],[117.923788,31.068318],[117.897954,31.07831],[117.890423,31.086016],[117.88027,31.122039],[117.869879,31.133141],[117.850718,31.140205],[117.831938,31.139143],[117.807391,31.129742],[117.781319,31.111468],[117.767496,31.096113],[117.752339,31.057688],[117.731414,31.00994],[117.721023,31.0101],[117.718306,31.019087],[117.70763,31.01127],[117.697525,31.0101],[117.700432,31.002494],[117.693759,30.98893],[117.686181,30.98526],[117.683082,30.968767],[117.665828,30.966639],[117.66721,30.956049],[117.66049,30.940031],[117.65129,30.950409],[117.650671,30.957646],[117.62641,30.972119],[117.592568,30.978131],[117.583512,30.970735],[117.568926,30.968607],[117.560966,30.974194],[117.54905,30.967596],[117.532892,30.973662],[117.536943,30.992015],[117.523168,30.994569],[117.507534,31.003452],[117.494808,30.996005],[117.45925,30.988983],[117.44824,30.982706],[117.441567,30.967916],[117.412968,30.97728],[117.385466,30.964829],[117.383273,30.951899],[117.371453,30.950994],[117.365161,30.959029],[117.369498,30.963659],[117.356534,30.987919],[117.348907,30.992122],[117.337802,30.987653],[117.324789,30.989249],[117.314065,30.999835],[117.306343,30.999994],[117.298002,30.985526],[117.28518,30.98244],[117.277315,30.984728],[117.247049,31.011217],[117.229365,31.022331],[117.225409,31.03706],[117.212063,31.057315],[117.190566,31.0697],[117.175314,31.087451],[117.156248,31.072411]]],[[[117.297144,30.487209],[117.290137,30.4763],[117.274456,30.465229],[117.256724,30.458543],[117.25558,30.45405],[117.267211,30.441746],[117.259203,30.430511],[117.25253,30.428798],[117.251958,30.420558],[117.268545,30.420184],[117.281129,30.414458],[117.299289,30.425374],[117.293378,30.440997],[117.305437,30.445812],[117.31478,30.461859],[117.321882,30.462234],[117.326648,30.470631],[117.324551,30.487637],[117.319784,30.49277],[117.307535,30.494267],[117.297144,30.487209]]],[[[116.960728,30.628544],[116.97703,30.643547],[116.967354,30.657053],[116.956963,30.658013],[116.951434,30.656145],[116.934465,30.661323],[116.92212,30.654277],[116.920643,30.646163],[116.934656,30.632121],[116.960728,30.628544]]]]},"properties":{"adcode":340700,"name":"铜陵市","center":[117.816576,30.929935],"centroid":[117.566978,30.888245],"childrenNum":4,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":6,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.903341,30.357289],[116.910347,30.332869],[116.9205,30.314283],[116.928793,30.290978],[116.927173,30.273455],[116.920547,30.257966],[116.892711,30.240492],[116.867497,30.213576],[116.860061,30.17732],[116.841901,30.146739],[116.816925,30.115075],[116.771787,30.073681],[116.747335,30.057248],[116.720309,30.053918],[116.685705,30.07062],[116.666877,30.076742],[116.642616,30.076366],[116.611015,30.070728],[116.596572,30.059718],[116.586039,30.046291],[116.57131,30.014433],[116.571215,29.98923],[116.564542,29.949343],[116.558727,29.924338],[116.551959,29.90987],[116.54152,29.901641],[116.525552,29.897498],[116.479842,29.897875],[116.467736,29.896154],[116.441758,29.879852],[116.392521,29.855745],[116.35968,29.843635],[116.343093,29.835669],[116.322788,29.820004],[116.312302,29.808967],[116.280796,29.788882],[116.261444,29.782042],[116.253627,29.783119],[116.227364,29.816881],[116.208108,29.827487],[116.187326,29.829048],[116.167354,29.827379],[116.135181,29.819412],[116.131987,29.844281],[116.134561,29.877431],[116.125791,29.901372],[116.104056,29.926866],[116.085705,29.950795],[116.077936,29.956117],[116.073837,29.969987],[116.081463,29.981759],[116.078317,30.010242],[116.088994,30.026952],[116.091663,30.036192],[116.079986,30.057248],[116.079223,30.066217],[116.0848,30.075937],[116.083751,30.095642],[116.088375,30.11019],[116.085038,30.126185],[116.075029,30.133538],[116.06316,30.151622],[116.056725,30.169917],[116.05601,30.181022],[116.063923,30.193573],[116.064352,30.206873],[116.046096,30.223925],[116.031702,30.227035],[116.026601,30.239741],[116.012254,30.249497],[115.994809,30.255018],[115.988899,30.267078],[115.985324,30.291031],[115.980939,30.295746],[115.958394,30.305336],[115.938708,30.306944],[115.921883,30.301265],[115.904438,30.310051],[115.903723,30.315783],[115.914352,30.3243],[115.916687,30.334422],[115.896478,30.3567],[115.884895,30.379561],[115.90091,30.397867],[115.909252,30.398831],[115.921501,30.416384],[115.930987,30.420505],[115.938184,30.417776],[115.946144,30.425213],[115.920786,30.429868],[115.915543,30.443993],[115.894809,30.452712],[115.894047,30.459559],[115.900815,30.469722],[115.898098,30.482236],[115.909728,30.506725],[115.919881,30.515011],[115.905153,30.52458],[115.899481,30.537889],[115.887803,30.542485],[115.883132,30.559425],[115.875553,30.569363],[115.87908,30.578285],[115.866211,30.587901],[115.857298,30.589503],[115.84848,30.601895],[115.828079,30.606168],[115.824123,30.596127],[115.819166,30.59789],[115.807822,30.615568],[115.814924,30.624806],[115.809919,30.642586],[115.798766,30.65006],[115.797002,30.658601],[115.775362,30.668849],[115.77236,30.677869],[115.762541,30.685607],[115.767402,30.694358],[115.765544,30.707537],[115.776363,30.728875],[115.782893,30.751702],[115.79276,30.759275],[115.810491,30.759434],[115.820119,30.750689],[115.834657,30.756395],[115.85153,30.756715],[115.854342,30.767433],[115.868356,30.774257],[115.8695,30.782467],[115.85868,30.784813],[115.865877,30.798246],[115.86378,30.815781],[115.848813,30.82857],[115.849481,30.841251],[115.863875,30.855262],[115.865686,30.864264],[115.876935,30.869005],[115.885705,30.877846],[115.912779,30.887592],[115.932369,30.889402],[115.936134,30.902874],[115.970548,30.920017],[115.976268,30.931461],[115.993427,30.936731],[116.009871,30.949717],[116.024743,30.953602],[116.034514,30.951154],[116.039519,30.957859],[116.07174,30.956688],[116.06969,30.969139],[116.0603,30.994941],[116.058918,31.012759],[116.046144,31.014514],[116.051578,31.042217],[116.050958,31.049554],[116.066354,31.070072],[116.092664,31.082668],[116.093379,31.090108],[116.10458,31.094465],[116.11888,31.086866],[116.157679,31.099301],[116.166258,31.0976],[116.18132,31.083359],[116.183751,31.064917],[116.203293,31.0579],[116.222455,31.061781],[116.243427,31.0756],[116.261396,31.082403],[116.268498,31.100098],[116.293045,31.114761],[116.303532,31.123155],[116.309776,31.140418],[116.3307,31.145622],[116.342712,31.15242],[116.344952,31.163624],[116.359537,31.173978],[116.378984,31.165377],[116.395572,31.162084],[116.415305,31.162191],[116.431892,31.144135],[116.437707,31.128414],[116.4603,31.125917],[116.470071,31.135637],[116.481844,31.136965],[116.496715,31.148756],[116.501911,31.141427],[116.508298,31.142489],[116.519547,31.160173],[116.538469,31.174456],[116.543474,31.181941],[116.552816,31.179712],[116.556582,31.172173],[116.552816,31.165908],[116.558346,31.147587],[116.555867,31.123314],[116.562683,31.111096],[116.549385,31.093243],[116.538708,31.072145],[116.533512,31.056624],[116.534799,31.044185],[116.530939,31.035306],[116.530605,31.021002],[116.543617,31.020311],[116.560347,31.034614],[116.563779,31.045567],[116.571072,31.051787],[116.591711,31.04764],[116.594571,31.054126],[116.611539,31.067309],[116.614018,31.073899],[116.622502,31.074112],[116.647049,31.05891],[116.65396,31.052212],[116.665495,31.059123],[116.68356,31.055774],[116.68866,31.048703],[116.70968,31.043228],[116.722883,31.059601],[116.736753,31.063907],[116.752721,31.060877],[116.761301,31.068372],[116.777602,31.070019],[116.78866,31.065289],[116.805962,31.08219],[116.815638,31.085378],[116.829365,31.101213],[116.843331,31.104455],[116.842187,31.11338],[116.847144,31.124642],[116.862254,31.129901],[116.875981,31.127458],[116.894952,31.133407],[116.919356,31.151305],[116.92274,31.160067],[116.943903,31.161766],[116.946906,31.182738],[116.954008,31.189161],[116.963255,31.214532],[116.981415,31.244564],[116.998193,31.2565],[117.006725,31.267693],[117.016257,31.266844],[117.032273,31.256607],[117.042235,31.252469],[117.055104,31.235386],[117.071358,31.236871],[117.079174,31.221643],[117.100147,31.190488],[117.109394,31.169571],[117.12212,31.148543],[117.121977,31.129264],[117.117163,31.12443],[117.122787,31.101798],[117.117306,31.08506],[117.13599,31.073155],[117.156248,31.072411],[117.149908,31.058272],[117.144141,31.054179],[117.14395,31.039293],[117.137611,31.028925],[117.141186,31.014514],[117.134799,31.007281],[117.124599,31.006749],[117.111348,31.01345],[117.093903,31.0101],[117.095142,30.988558],[117.082654,30.974885],[117.080366,30.961743],[117.086419,30.92864],[117.096477,30.885728],[117.106248,30.827558],[117.105009,30.790677],[117.101005,30.767379],[117.117211,30.755968],[117.124694,30.740343],[117.162969,30.708604],[117.178078,30.702148],[117.187277,30.70663],[117.190566,30.698467],[117.200337,30.701881],[117.205009,30.69201],[117.241376,30.690356],[117.223979,30.686514],[117.212968,30.678616],[117.207296,30.669543],[117.205485,30.654384],[117.211872,30.635111],[117.217068,30.630626],[117.21783,30.620641],[117.247906,30.58929],[117.252244,30.563967],[117.243807,30.538156],[117.241281,30.523083],[117.236372,30.504747],[117.226315,30.489027],[117.213397,30.476941],[117.192187,30.465871],[117.164017,30.474802],[117.135133,30.492075],[117.111586,30.495337],[117.025457,30.494267],[117.01049,30.489294],[116.986372,30.470791],[116.975552,30.458062],[116.950433,30.442816],[116.935609,30.440301],[116.914446,30.425481],[116.9011,30.436503],[116.892425,30.431099],[116.891949,30.414725],[116.888279,30.407019],[116.893855,30.381595],[116.903341,30.357289]],[[116.956963,30.658013],[116.951434,30.656145],[116.934465,30.661323],[116.92212,30.654277],[116.920643,30.646163],[116.934656,30.632121],[116.960728,30.628544],[116.97703,30.643547],[116.967354,30.657053],[116.956963,30.658013]]]},"properties":{"adcode":340800,"name":"安庆市","center":[117.043551,30.50883],"centroid":[116.451502,30.574825],"childrenNum":10,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":7,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.868878,30.10144],[118.85005,30.110458],[118.82107,30.102728],[118.789945,30.078299],[118.767972,30.076796],[118.754626,30.080608],[118.743139,30.092743],[118.730365,30.070298],[118.69781,30.056818],[118.694807,30.036675],[118.688754,30.028993],[118.669021,30.023675],[118.651004,30.024534],[118.628029,30.016529],[118.614493,30.001805],[118.618592,29.997399],[118.614016,29.980469],[118.605818,29.971654],[118.583463,29.968321],[118.574931,29.963751],[118.564588,29.947569],[118.548668,29.945203],[118.524741,29.967407],[118.520784,29.975201],[118.524502,29.992508],[118.520403,29.99885],[118.509297,29.998312],[118.50577,29.99138],[118.498716,30.005997],[118.498096,30.018141],[118.513492,30.030659],[118.514016,30.038932],[118.494474,30.072124],[118.477696,30.076527],[118.468926,30.082434],[118.449955,30.102621],[118.417734,30.097306],[118.404483,30.099615],[118.394807,30.106271],[118.384607,30.097145],[118.370642,30.099722],[118.355103,30.111908],[118.356962,30.121945],[118.347477,30.134289],[118.339326,30.16584],[118.326647,30.175282],[118.31149,30.193197],[118.290708,30.199526],[118.289946,30.219046],[118.286562,30.232879],[118.271881,30.238186],[118.267782,30.243333],[118.266638,30.259842],[118.271404,30.269865],[118.292472,30.283691],[118.304912,30.284387],[118.320546,30.293764],[118.31211,30.292907],[118.294903,30.302122],[118.307629,30.309301],[118.310203,30.32055],[118.302052,30.329709],[118.299765,30.340796],[118.305532,30.351399],[118.295141,30.358306],[118.300289,30.370139],[118.280365,30.372387],[118.278173,30.38031],[118.265684,30.376402],[118.255913,30.378437],[118.250337,30.394816],[118.237801,30.40049],[118.221452,30.414351],[118.222977,30.423929],[118.215399,30.438322],[118.228077,30.439713],[118.231604,30.445651],[118.225217,30.455013],[118.213873,30.461271],[118.21373,30.466833],[118.196571,30.468652],[118.185847,30.46448],[118.188039,30.474481],[118.16864,30.453033],[118.181128,30.447844],[118.163254,30.446775],[118.15782,30.434309],[118.142901,30.433828],[118.130175,30.429601],[118.125027,30.423662],[118.107582,30.42928],[118.109774,30.452712],[118.103435,30.465229],[118.118211,30.483252],[118.121118,30.493091],[118.130747,30.49817],[118.117591,30.509238],[118.089612,30.51731],[118.075218,30.515011],[118.053721,30.503677],[118.034941,30.498438],[118.016924,30.500576],[117.985751,30.498705],[117.970118,30.512231],[117.963635,30.508436],[117.951481,30.489134],[117.945904,30.466726],[117.945904,30.455066],[117.938564,30.425106],[117.941233,30.413602],[117.952911,30.403594],[117.953197,30.392568],[117.938278,30.378115],[117.91659,30.366552],[117.928125,30.357289],[117.940137,30.33469],[117.925361,30.33078],[117.932034,30.326335],[117.928507,30.319747],[117.920356,30.320014],[117.907677,30.309783],[117.91292,30.299283],[117.902196,30.294246],[117.886419,30.293228],[117.888516,30.269597],[117.863206,30.266435],[117.842997,30.260378],[117.824932,30.241617],[117.829317,30.225212],[117.858345,30.21733],[117.8613,30.209072],[117.852863,30.191749],[117.846953,30.192286],[117.831366,30.182202],[117.820404,30.182577],[117.797811,30.163694],[117.778125,30.156719],[117.743187,30.154037],[117.698955,30.143466],[117.682606,30.132733],[117.68661,30.126132],[117.673264,30.122106],[117.676219,30.107936],[117.662491,30.108902],[117.655866,30.115451],[117.646143,30.114484],[117.642901,30.105627],[117.631176,30.099293],[117.615351,30.111693],[117.61049,30.131499],[117.599765,30.129781],[117.584846,30.118027],[117.572739,30.115719],[117.568736,30.107399],[117.560299,30.103748],[117.571071,30.101762],[117.56845,30.088233],[117.559965,30.0834],[117.554293,30.101601],[117.545618,30.101601],[117.541043,30.11062],[117.528983,30.099561],[117.535371,30.083776],[117.544093,30.086783],[117.53599,30.076581],[117.542091,30.052844],[117.511491,30.037105],[117.492806,30.034903],[117.461777,30.037965],[117.446476,30.02303],[117.433273,30.02072],[117.411538,30.030444],[117.394093,30.029745],[117.386372,30.011048],[117.349813,30.008254],[117.324217,29.99799],[117.309155,29.999065],[117.297668,29.992777],[117.267401,29.98321],[117.260156,29.985253],[117.206152,29.974288],[117.203102,29.965149],[117.206248,29.927511],[117.21702,29.92692],[117.246238,29.915088],[117.253722,29.90901],[117.261777,29.880659],[117.25682,29.859512],[117.249336,29.846111],[117.257392,29.831255],[117.271214,29.830071],[117.278173,29.825118],[117.292425,29.822803],[117.297239,29.836853],[117.303007,29.840352],[117.325695,29.843851],[117.333273,29.850578],[117.338612,29.847887],[117.347906,29.822319],[117.356248,29.813705],[117.375981,29.818066],[117.384084,29.843635],[117.403292,29.84891],[117.418783,29.850417],[117.424789,29.834646],[117.409155,29.802613],[117.413588,29.78802],[117.434703,29.761143],[117.44314,29.758935],[117.455104,29.749184],[117.457249,29.725315],[117.451862,29.695942],[117.474217,29.668339],[117.493759,29.65955],[117.516543,29.663379],[117.530556,29.65405],[117.523454,29.629619],[117.534274,29.598545],[117.54333,29.588563],[117.546238,29.594337],[117.557963,29.590128],[117.574074,29.591099],[117.586467,29.584732],[117.608726,29.591585],[117.628316,29.606207],[117.647954,29.614893],[117.661443,29.611818],[117.668974,29.596981],[117.678983,29.59547],[117.682225,29.587268],[117.682987,29.568002],[117.69047,29.555912],[117.707677,29.549002],[117.736038,29.551539],[117.753054,29.560392],[117.770928,29.557099],[117.794951,29.570323],[117.807296,29.573561],[117.822787,29.571834],[117.829889,29.563846],[117.852005,29.554994],[117.863588,29.55413],[117.876505,29.546195],[117.889851,29.545817],[117.920785,29.554508],[117.938707,29.549596],[117.954913,29.565087],[117.964874,29.569999],[117.984703,29.561633],[117.994665,29.573183],[118.003864,29.578094],[118.014112,29.577285],[118.042949,29.566275],[118.050718,29.543172],[118.082653,29.533778],[118.103435,29.530647],[118.109536,29.521954],[118.13456,29.508778],[118.142996,29.499867],[118.143807,29.489767],[118.127648,29.472049],[118.137992,29.454868],[118.138611,29.437684],[118.12946,29.432604],[118.136085,29.418876],[118.163635,29.412066],[118.1766,29.404714],[118.188135,29.406119],[118.193044,29.395253],[118.204245,29.395415],[118.218115,29.42039],[118.232939,29.423903],[118.248525,29.431307],[118.255723,29.426173],[118.267782,29.427848],[118.276266,29.423417],[118.28618,29.426713],[118.291376,29.419957],[118.316113,29.422606],[118.316018,29.450545],[118.306581,29.47945],[118.310537,29.496032],[118.324407,29.49695],[118.34762,29.473994],[118.358725,29.477073],[118.379793,29.502567],[118.38394,29.510398],[118.393044,29.50732],[118.414969,29.50975],[118.429507,29.503647],[118.448954,29.513422],[118.458249,29.506348],[118.47903,29.510938],[118.495904,29.519578],[118.497858,29.543982],[118.494903,29.553698],[118.500575,29.575666],[118.535227,29.590614],[118.549907,29.613382],[118.555055,29.613382],[118.573883,29.638357],[118.602052,29.643696],[118.619974,29.654104],[118.633511,29.648765],[118.640946,29.641916],[118.647333,29.643372],[118.67393,29.669094],[118.682319,29.686454],[118.700813,29.706452],[118.718687,29.709201],[118.724645,29.72262],[118.744712,29.738786],[118.749049,29.761143],[118.74433,29.779618],[118.736513,29.788451],[118.739945,29.813274],[118.745999,29.818173],[118.75944,29.817151],[118.765922,29.823073],[118.750956,29.831632],[118.755627,29.845412],[118.766923,29.848964],[118.778744,29.841913],[118.802624,29.860642],[118.807724,29.867638],[118.841328,29.891312],[118.845522,29.899112],[118.844902,29.915249],[118.838706,29.934502],[118.848287,29.941278],[118.86392,29.936976],[118.871976,29.94687],[118.884702,29.938912],[118.894664,29.938051],[118.891566,29.959881],[118.899478,29.981437],[118.89209,29.994819],[118.895093,30.001214],[118.890327,30.012015],[118.898048,30.017227],[118.902576,30.029047],[118.890565,30.041242],[118.897333,30.051877],[118.888134,30.06235],[118.878839,30.064659],[118.875455,30.072017],[118.872929,30.094622],[118.868878,30.10144]]]]},"properties":{"adcode":341000,"name":"黄山市","center":[118.317325,29.709239],"centroid":[118.076088,29.904836],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":8,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.951862,31.906229],[117.96435,31.90154],[117.988373,31.881836],[118.044808,31.859545],[118.061776,31.858543],[118.072834,31.850901],[118.083988,31.8538],[118.085942,31.877462],[118.109107,31.891425],[118.120832,31.906123],[118.132034,31.903331],[118.147763,31.907967],[118.171118,31.900118],[118.181843,31.907651],[118.187277,31.919186],[118.203959,31.927719],[118.219736,31.925296],[118.239421,31.944096],[118.256724,31.954469],[118.290136,31.979895],[118.304865,31.985527],[118.305341,31.998],[118.31721,32.019836],[118.334464,32.031253],[118.348716,32.035461],[118.358344,32.045297],[118.385084,32.05813],[118.393282,32.062705],[118.39476,32.075589],[118.405198,32.075799],[118.415112,32.087418],[118.433511,32.086682],[118.44109,32.092045],[118.463349,32.100666],[118.472977,32.114858],[118.489469,32.120744],[118.499097,32.120376],[118.495046,32.132883],[118.500622,32.141711],[118.507438,32.137875],[118.495618,32.165194],[118.496809,32.178588],[118.506485,32.182107],[118.509822,32.19429],[118.524645,32.189039],[118.532367,32.195813],[118.539612,32.192452],[118.551719,32.199646],[118.561728,32.196863],[118.574931,32.202587],[118.580889,32.198649],[118.598334,32.199489],[118.61964,32.205475],[118.626599,32.202534],[118.64414,32.20999],[118.667495,32.235923],[118.675741,32.255131],[118.667448,32.257545],[118.659249,32.266098],[118.670784,32.285615],[118.667305,32.296369],[118.659964,32.296369],[118.66025,32.305443],[118.678458,32.316561],[118.694855,32.317243],[118.683463,32.325003],[118.687657,32.329985],[118.703244,32.328988],[118.707915,32.338426],[118.697524,32.34262],[118.69986,32.34975],[118.692901,32.35169],[118.702052,32.357927],[118.696094,32.367991],[118.698763,32.383189],[118.690184,32.378263],[118.678697,32.393931],[118.685751,32.404986],[118.68904,32.420649],[118.686895,32.429815],[118.692615,32.46511],[118.689278,32.473486],[118.675217,32.470136],[118.647715,32.476522],[118.643425,32.470502],[118.628077,32.467675],[118.608582,32.470554],[118.608058,32.475842],[118.59333,32.478826],[118.592376,32.499867],[118.60801,32.501751],[118.617448,32.512426],[118.614445,32.520432],[118.604864,32.522839],[118.608821,32.537069],[118.599002,32.544654],[118.584655,32.548996],[118.56373,32.564372],[118.569497,32.586439],[118.581271,32.594543],[118.598096,32.601339],[118.601814,32.597366],[118.623406,32.592609],[118.633034,32.578962],[118.65229,32.593079],[118.668782,32.594909],[118.689564,32.588531],[118.68904,32.604737],[118.696666,32.588269],[118.700861,32.588531],[118.698001,32.60641],[118.725312,32.608239],[118.726027,32.59632],[118.740708,32.589367],[118.74433,32.598882],[118.757533,32.603953],[118.775789,32.597732],[118.774693,32.588112],[118.784369,32.58257],[118.801766,32.584348],[118.81373,32.600816],[118.824931,32.601914],[118.824645,32.589628],[118.819259,32.58623],[118.827791,32.579694],[118.827028,32.572687],[118.848525,32.56819],[118.85596,32.574361],[118.872405,32.576034],[118.887896,32.587119],[118.907867,32.592295],[118.909345,32.586857],[118.89638,32.577289],[118.898668,32.56045],[118.888325,32.557207],[118.91597,32.549519],[118.916351,32.556057],[118.936561,32.557521],[118.940565,32.547793],[118.964778,32.52671],[118.967924,32.514572],[118.97984,32.503844],[118.997428,32.503896],[119.007533,32.514048],[119.021737,32.517868],[119.041375,32.514781],[119.045522,32.498454],[119.064445,32.482385],[119.067447,32.462439],[119.073691,32.455371],[119.085131,32.452701],[119.095998,32.466052],[119.12045,32.480082],[119.134511,32.491545],[119.147762,32.492644],[119.142281,32.499396],[119.150098,32.50981],[119.155579,32.528071],[119.167781,32.536337],[119.166685,32.546014],[119.154483,32.554958],[119.153863,32.561862],[119.175169,32.571066],[119.176933,32.593811],[119.187133,32.59998],[119.19433,32.578596],[119.209297,32.573576],[119.220212,32.576609],[119.220069,32.592452],[119.230984,32.607141],[119.220498,32.60986],[119.216923,32.617282],[119.220212,32.629616],[119.208677,32.642784],[119.211632,32.708179],[119.208963,32.71528],[119.2082,32.740493],[119.200908,32.750984],[119.19128,32.788812],[119.188896,32.810876],[119.18494,32.825634],[119.113062,32.822922],[119.104292,32.826729],[119.071308,32.864733],[119.054912,32.875053],[119.045712,32.892458],[119.044997,32.911422],[119.019497,32.905118],[119.015064,32.911683],[119.019831,32.925695],[119.029602,32.92632],[119.023549,32.935382],[119.026313,32.947255],[119.020832,32.955795],[119.008916,32.959388],[118.993663,32.958242],[118.961203,32.945797],[118.941613,32.94611],[118.933796,32.938663],[118.921451,32.939548],[118.90577,32.945068],[118.893568,32.940798],[118.891232,32.951734],[118.896237,32.957774],[118.884654,32.960585],[118.865255,32.955014],[118.849335,32.956628],[118.849383,32.945902],[118.842519,32.943662],[118.848954,32.927205],[118.839516,32.922517],[118.836942,32.911422],[118.819021,32.920642],[118.812205,32.916892],[118.809345,32.90788],[118.814588,32.902722],[118.811251,32.87547],[118.806199,32.870258],[118.812538,32.865203],[118.811728,32.854986],[118.791042,32.848418],[118.768163,32.851494],[118.747858,32.858687],[118.741804,32.85337],[118.746809,32.800392],[118.736847,32.79335],[118.737943,32.773265],[118.746332,32.759281],[118.751528,32.757142],[118.757438,32.743834],[118.756294,32.737048],[118.736704,32.732351],[118.724454,32.72191],[118.707248,32.720292],[118.69414,32.726608],[118.657581,32.736109],[118.654054,32.740702],[118.639421,32.744825],[118.632319,32.739971],[118.617019,32.73898],[118.607534,32.726661],[118.590803,32.724834],[118.576599,32.719091],[118.559726,32.729897],[118.545284,32.72948],[118.520451,32.723215],[118.489755,32.72452],[118.483511,32.721388],[118.45925,32.726086],[118.450479,32.743364],[118.422882,32.718099],[118.410966,32.716063],[118.398668,32.721388],[118.375313,32.718987],[118.368163,32.724781],[118.366256,32.73496],[118.37231,32.741746],[118.371166,32.757716],[118.366209,32.768309],[118.348811,32.773004],[118.334035,32.761577],[118.326409,32.763456],[118.320785,32.778274],[118.307153,32.778691],[118.298764,32.785578],[118.294426,32.800131],[118.306628,32.810563],[118.297858,32.832047],[118.301719,32.846228],[118.289517,32.845499],[118.284607,32.85728],[118.263206,32.856185],[118.250575,32.848366],[118.244426,32.87448],[118.240041,32.882349],[118.233034,32.916267],[118.235418,32.926528],[118.247906,32.934757],[118.293378,32.947151],[118.309631,32.958971],[118.303816,32.968655],[118.269355,32.969175],[118.252434,32.982137],[118.244807,32.998324],[118.243473,33.027776],[118.239612,33.046451],[118.233368,33.060025],[118.212396,33.06195],[118.21516,33.070946],[118.227648,33.06949],[118.223692,33.083477],[118.202863,33.088104],[118.206485,33.091276],[118.221309,33.087637],[118.22088,33.105883],[118.209679,33.104324],[118.210441,33.111861],[118.219593,33.114096],[118.22374,33.155457],[118.221261,33.182208],[118.211633,33.199085],[118.194379,33.211701],[118.178173,33.217983],[118.168354,33.213466],[118.156342,33.19545],[118.159965,33.181065],[118.14905,33.169483],[118.118878,33.160548],[118.088278,33.149691],[118.070451,33.140391],[118.067925,33.135143],[118.050337,33.133792],[118.044617,33.127192],[118.05129,33.124854],[118.073835,33.135143],[118.07455,33.117318],[118.065017,33.09741],[118.072691,33.081034],[118.061681,33.07469],[118.032749,33.073962],[118.018116,33.06143],[118.004341,33.055293],[117.99843,33.040625],[118.005151,33.031417],[118.018306,33.034539],[118.0368,33.027099],[118.031462,33.014716],[118.011347,33.001759],[118.003721,33.002227],[117.982796,33.01175],[117.970642,33.001967],[117.947858,33.014508],[117.937706,33.008576],[117.913492,32.987655],[117.899384,32.990257],[117.879698,33.002748],[117.895237,33.013884],[117.89762,33.019607],[117.890613,33.031781],[117.893711,33.035059],[117.886752,33.046607],[117.880222,33.041977],[117.860346,33.035995],[117.822406,33.02814],[117.800146,33.031209],[117.787515,33.045202],[117.773359,33.047335],[117.762587,33.040833],[117.746333,33.009825],[117.737039,33.001083],[117.718545,33.006391],[117.707963,33.00254],[117.698287,32.985],[117.694665,32.96928],[117.679174,32.943871],[117.671834,32.918819],[117.657534,32.910745],[117.64619,32.912308],[117.626886,32.924809],[117.603483,32.922257],[117.589994,32.933924],[117.576839,32.941059],[117.56864,32.951369],[117.548526,32.969592],[117.531224,32.980576],[117.528173,32.967041],[117.528602,32.938976],[117.512396,32.93283],[117.505151,32.908557],[117.49967,32.897408],[117.512253,32.886153],[117.513588,32.875261],[117.508249,32.868747],[117.491281,32.864681],[117.479222,32.842944],[117.471167,32.837157],[117.457773,32.841484],[117.432272,32.842266],[117.422168,32.846593],[117.415113,32.831995],[117.395857,32.836427],[117.368354,32.837783],[117.361729,32.840129],[117.350814,32.829232],[117.325218,32.825894],[117.314017,32.828241],[117.307678,32.818959],[117.284942,32.817447],[117.280366,32.808842],[117.265542,32.800862],[117.255819,32.80566],[117.244665,32.794602],[117.231796,32.77217],[117.214112,32.752027],[117.202673,32.745399],[117.195905,32.734699],[117.205152,32.728279],[117.189804,32.716846],[117.184322,32.696691],[117.162349,32.686874],[117.1613,32.679562],[117.172406,32.664675],[117.17498,32.653495],[117.195952,32.60871],[117.199146,32.579851],[117.214637,32.560345],[117.211396,32.54659],[117.203245,32.542457],[117.2011,32.534035],[117.211205,32.516194],[117.209632,32.493953],[117.211586,32.476261],[117.209012,32.472544],[117.219546,32.463015],[117.244951,32.460136],[117.266877,32.451444],[117.28294,32.442751],[117.293045,32.443799],[117.30844,32.451234],[117.32722,32.441704],[117.365113,32.455895],[117.380938,32.464377],[117.394046,32.478302],[117.408297,32.468565],[117.39376,32.452805],[117.38232,32.43102],[117.382415,32.409177],[117.377315,32.398385],[117.359251,32.384971],[117.369546,32.382508],[117.392568,32.388115],[117.405342,32.375119],[117.44171,32.366524],[117.444903,32.343512],[117.423359,32.334546],[117.412587,32.319602],[117.395761,32.283727],[117.40825,32.26762],[117.425218,32.259539],[117.427268,32.242536],[117.435371,32.236762],[117.449098,32.233928],[117.46864,32.223482],[117.48232,32.212405],[117.498145,32.203532],[117.553864,32.215975],[117.576076,32.230726],[117.59395,32.239124],[117.605437,32.238914],[117.613921,32.250198],[117.622549,32.249988],[117.631986,32.256915],[117.631748,32.248886],[117.652434,32.260799],[117.672215,32.261061],[117.673216,32.250985],[117.697239,32.248781],[117.707487,32.243901],[117.712015,32.236553],[117.729126,32.245632],[117.741281,32.247154],[117.757439,32.240646],[117.770928,32.239177],[117.781605,32.231986],[117.791471,32.219755],[117.807391,32.221225],[117.819879,32.230516],[117.833225,32.221697],[117.847191,32.217445],[117.863921,32.195498],[117.872739,32.141028],[117.855342,32.123319],[117.851624,32.105975],[117.867019,32.106553],[117.868163,32.097354],[117.858059,32.093832],[117.866495,32.085841],[117.868259,32.075957],[117.885084,32.064125],[117.864207,32.047086],[117.842377,32.041773],[117.833416,32.03383],[117.832987,32.015259],[117.810918,32.002262],[117.82946,31.994789],[117.836085,31.979053],[117.844665,31.974526],[117.846428,31.962576],[117.865637,31.954311],[117.868592,31.945307],[117.868116,31.928982],[117.886562,31.926771],[117.900051,31.92914],[117.91516,31.922189],[117.929698,31.920819],[117.951862,31.906229]]]]},"properties":{"adcode":341100,"name":"滁州市","center":[118.316264,32.303627],"centroid":[118.107896,32.543514],"childrenNum":8,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":9,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.508632,32.468565],[115.496716,32.493377],[115.490377,32.496308],[115.486993,32.510542],[115.477651,32.511798],[115.47665,32.520955],[115.465734,32.520118],[115.438947,32.53257],[115.443713,32.543294],[115.434657,32.545177],[115.431082,32.552448],[115.408871,32.54999],[115.412779,32.559822],[115.411588,32.574779],[115.403246,32.576661],[115.38766,32.570909],[115.328985,32.561182],[115.324695,32.555952],[115.305105,32.55318],[115.297145,32.560555],[115.300387,32.568399],[115.310873,32.570543],[115.29848,32.573263],[115.305534,32.583197],[115.299386,32.588112],[115.294858,32.581054],[115.289185,32.58989],[115.267212,32.578073],[115.254724,32.584975],[115.261302,32.591667],[115.254772,32.595223],[115.241998,32.592609],[115.229796,32.579067],[115.223647,32.581472],[115.22951,32.59057],[115.21216,32.588478],[115.201102,32.591824],[115.192236,32.602332],[115.209634,32.611689],[115.199386,32.619686],[115.201054,32.633378],[115.194572,32.631288],[115.194905,32.642366],[115.202722,32.645501],[115.209538,32.636723],[115.208919,32.64989],[115.219405,32.65919],[115.204009,32.653913],[115.205153,32.672928],[115.193666,32.682852],[115.189472,32.678778],[115.196907,32.672719],[115.182989,32.666764],[115.18461,32.678308],[115.178461,32.682904],[115.182703,32.694498],[115.179081,32.701965],[115.184324,32.720396],[115.179367,32.726347],[115.189615,32.770917],[115.183561,32.776917],[115.182084,32.787299],[115.191092,32.790064],[115.209491,32.785421],[115.206345,32.79768],[115.196907,32.802114],[115.189948,32.812545],[115.195573,32.828867],[115.1889,32.840389],[115.202675,32.843518],[115.198575,32.854361],[115.19114,32.857488],[115.176269,32.856289],[115.159777,32.862284],[115.154915,32.877294],[115.141998,32.885423],[115.14052,32.897512],[115.116164,32.900221],[115.098099,32.894802],[115.08623,32.903243],[115.067355,32.903243],[115.029748,32.906838],[115.02746,32.914339],[115.036755,32.916319],[115.03542,32.932361],[115.023981,32.933715],[115.009252,32.940173],[114.978795,32.941319],[114.959967,32.939496],[114.951817,32.934393],[114.942236,32.937569],[114.93604,32.95215],[114.924124,32.958971],[114.914543,32.971622],[114.893857,32.972663],[114.883371,32.983751],[114.884944,32.992703],[114.901579,33.000354],[114.891903,33.020492],[114.915401,33.016069],[114.924934,33.016746],[114.936993,33.025486],[114.92298,33.036099],[114.922456,33.048323],[114.914972,33.059765],[114.919548,33.068814],[114.914019,33.082801],[114.897289,33.086597],[114.898242,33.096942],[114.906297,33.11659],[114.902913,33.129583],[114.910253,33.136598],[114.92665,33.13852],[114.933085,33.144911],[114.932656,33.154003],[114.958061,33.150003],[114.966354,33.146366],[114.968881,33.133688],[114.981464,33.129063],[114.992332,33.120956],[114.990473,33.102868],[115.012017,33.09767],[115.023361,33.090756],[115.041235,33.086649],[115.051578,33.092472],[115.057441,33.083737],[115.069548,33.086753],[115.111111,33.082905],[115.153247,33.084413],[115.167927,33.088728],[115.172408,33.108066],[115.197146,33.121424],[115.209824,33.113472],[115.224362,33.126257],[115.236993,33.126724],[115.246288,33.13639],[115.266497,33.1327],[115.269595,33.137845],[115.290329,33.132441],[115.292856,33.143404],[115.301483,33.141638],[115.300148,33.16299],[115.294381,33.177897],[115.296764,33.201317],[115.326411,33.211338],[115.316259,33.218398],[115.316307,33.223797],[115.33175,33.235631],[115.330511,33.251979],[115.340139,33.261164],[115.340854,33.271748],[115.333799,33.284717],[115.335039,33.2981],[115.347002,33.301004],[115.360205,33.2981],[115.358776,33.311428],[115.36502,33.336005],[115.348337,33.33896],[115.346812,33.358709],[115.338566,33.363011],[115.341664,33.371199],[115.316116,33.370992],[115.313256,33.377107],[115.329414,33.401665],[115.317355,33.418241],[115.315639,33.431447],[115.319023,33.441493],[115.316354,33.448897],[115.323313,33.448638],[115.324552,33.457595],[115.335944,33.447292],[115.345811,33.449777],[115.348861,33.478973],[115.343809,33.480837],[115.351245,33.490411],[115.345429,33.502934],[115.366592,33.523473],[115.395096,33.506504],[115.396812,33.502002],[115.405344,33.516696],[115.401721,33.524353],[115.414638,33.541629],[115.421979,33.556782],[115.463685,33.567227],[115.474314,33.55735],[115.501864,33.564383],[115.511302,33.553369],[115.528556,33.562728],[115.552722,33.56552],[115.559347,33.561953],[115.565019,33.576378],[115.601149,33.578187],[115.639757,33.585115],[115.651244,33.544629],[115.676697,33.508729],[115.681273,33.505831],[115.698337,33.509557],[115.720834,33.51085],[115.749481,33.499881],[115.751387,33.495896],[115.769404,33.490515],[115.773217,33.484718],[115.786135,33.481044],[115.796049,33.468569],[115.807441,33.466861],[115.831606,33.451227],[115.848861,33.450864],[115.854962,33.442321],[115.897383,33.400525],[115.895334,33.384724],[115.898432,33.356999],[115.911111,33.340567],[115.914399,33.328902],[115.921406,33.323303],[115.919833,33.313606],[115.92603,33.309769],[115.927841,33.298722],[115.914828,33.295506],[115.915972,33.279478],[115.906725,33.255975],[115.909204,33.246634],[115.917498,33.24269],[115.925696,33.229195],[115.916497,33.215491],[115.876983,33.248295],[115.839423,33.262824],[115.832083,33.256753],[115.8297,33.231635],[115.835277,33.21383],[115.845238,33.193528],[115.841378,33.180234],[115.825505,33.162678],[115.824361,33.150938],[115.831034,33.157172],[115.850196,33.153535],[115.850196,33.136078],[115.839709,33.135454],[115.844333,33.125321],[115.865925,33.125581],[115.877126,33.122151],[115.872026,33.103128],[115.866735,33.094343],[115.89848,33.093667],[115.914876,33.088],[115.948098,33.080774],[115.980796,33.07079],[116.002483,33.060077],[116.018213,33.056125],[116.010157,33.043954],[116.01602,33.041925],[116.04214,33.048843],[116.051053,33.044266],[116.0552,33.034227],[116.051768,33.021428],[116.059013,33.016954],[116.060062,33.003737],[116.052531,32.99515],[116.054914,32.99057],[116.083084,32.986458],[116.125743,32.976047],[116.155581,32.973757],[116.167926,32.967145],[116.165305,32.959492],[116.168165,32.940642],[116.178889,32.922882],[116.191711,32.91387],[116.198432,32.893396],[116.212636,32.888706],[116.232988,32.889852],[116.245333,32.884954],[116.248527,32.872812],[116.280319,32.859052],[116.292569,32.858948],[116.30825,32.86562],[116.348098,32.878128],[116.370881,32.900221],[116.386992,32.89772],[116.394618,32.891311],[116.394428,32.884121],[116.386563,32.86833],[116.389995,32.857071],[116.406058,32.85337],[116.421882,32.857853],[116.445572,32.843518],[116.439614,32.821619],[116.449194,32.8139],[116.442473,32.809207],[116.441377,32.800184],[116.448765,32.789073],[116.44743,32.760951],[116.442998,32.748583],[116.445238,32.732977],[116.45539,32.729845],[116.45315,32.71481],[116.444142,32.70656],[116.44519,32.697997],[116.460252,32.680972],[116.487135,32.677942],[116.489327,32.681807],[116.502197,32.681024],[116.506439,32.662899],[116.526267,32.657779],[116.535276,32.628466],[116.541711,32.622874],[116.537898,32.615452],[116.540138,32.60296],[116.555867,32.600032],[116.554771,32.585864],[116.601863,32.588949],[116.620119,32.583354],[116.628984,32.575197],[116.635085,32.55386],[116.613827,32.544811],[116.566591,32.544183],[116.523741,32.509234],[116.522597,32.486468],[116.509966,32.460607],[116.494714,32.465319],[116.490471,32.448407],[116.484799,32.439347],[116.472359,32.438247],[116.437564,32.45092],[116.404819,32.442804],[116.392235,32.447621],[116.358489,32.464743],[116.332798,32.510385],[116.320071,32.521164],[116.271692,32.520955],[116.26397,32.494738],[116.246334,32.48406],[116.251244,32.464429],[116.244523,32.4549],[116.23561,32.465843],[116.222979,32.459193],[116.213065,32.463748],[116.203722,32.447621],[116.191187,32.454271],[116.176411,32.425363],[116.167879,32.439766],[116.148146,32.439923],[116.141854,32.46045],[116.124552,32.47113],[116.113398,32.490812],[116.101435,32.523833],[116.090948,32.539162],[116.076411,32.543974],[116.05663,32.546328],[116.036849,32.555011],[116.03113,32.573524],[116.022026,32.591563],[115.996954,32.602907],[115.967355,32.605103],[115.95234,32.59104],[115.936992,32.571955],[115.928365,32.567563],[115.915448,32.576871],[115.891568,32.576243],[115.887564,32.567667],[115.861397,32.537383],[115.845953,32.531628],[115.839948,32.524775],[115.841473,32.501227],[115.823837,32.502222],[115.804104,32.485473],[115.788756,32.468931],[115.780987,32.46757],[115.78704,32.485788],[115.771502,32.505309],[115.766783,32.492435],[115.757202,32.480187],[115.74195,32.476365],[115.701197,32.495313],[115.692093,32.487515],[115.692188,32.480605],[115.701244,32.470869],[115.696716,32.467466],[115.675887,32.466419],[115.681559,32.451182],[115.680606,32.439976],[115.674933,32.431963],[115.66745,32.40991],[115.656297,32.408758],[115.657965,32.427406],[115.654152,32.428925],[115.645572,32.417559],[115.627126,32.405457],[115.604533,32.42594],[115.586087,32.419235],[115.563875,32.402995],[115.553628,32.407501],[115.569119,32.414625],[115.567593,32.421644],[115.547288,32.424735],[115.537469,32.438928],[115.523218,32.442018],[115.524123,32.447831],[115.515591,32.450606],[115.509347,32.466733],[115.508632,32.468565]]]},"properties":{"adcode":341200,"name":"阜阳市","center":[115.819729,32.896969],"centroid":[115.709049,32.916536],"childrenNum":8,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":10,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.604199,34.021335],[116.626887,34.017581],[116.648765,34.021438],[116.662445,34.018198],[116.678984,34.010174],[116.689899,34.016141],[116.703913,34.009454],[116.711158,34.014186],[116.730652,34.016192],[116.734275,34.012077],[116.745762,34.017015],[116.752435,34.013003],[116.784418,34.011357],[116.784084,34.007293],[116.796239,34.003384],[116.803055,33.993712],[116.807678,34.012386],[116.801911,34.032392],[116.808345,34.063961],[116.811682,34.067919],[116.806248,34.077017],[116.818689,34.086114],[116.816639,34.072854],[116.828555,34.058923],[116.833512,34.066223],[116.845905,34.06977],[116.850719,34.082516],[116.874122,34.073984],[116.888898,34.082722],[116.902435,34.098241],[116.908965,34.098961],[116.92865,34.091201],[116.929556,34.080615],[116.955628,34.077788],[116.973074,34.07897],[116.961634,34.064218],[116.94805,34.05224],[116.950195,34.037072],[116.947668,34.031004],[116.967163,34.028895],[116.971596,34.025604],[116.969451,34.013672],[116.978603,34.007191],[116.974027,33.998703],[116.977459,33.993609],[116.95763,33.967676],[116.970929,33.961809],[116.98375,33.964948],[116.991281,33.961757],[116.991234,33.952801],[116.99948,33.938336],[116.990471,33.92495],[116.997096,33.914188],[116.986038,33.899047],[116.962826,33.892918],[116.959108,33.880245],[116.958155,33.847732],[116.951386,33.832476],[116.949575,33.808814],[116.95029,33.790096],[116.942235,33.773746],[116.943951,33.756465],[116.950767,33.746146],[116.93437,33.748158],[116.932082,33.739335],[116.939279,33.705116],[116.928221,33.702948],[116.929365,33.673156],[116.917116,33.674137],[116.906343,33.670884],[116.880795,33.676874],[116.873693,33.675945],[116.869594,33.661949],[116.871787,33.650483],[116.867926,33.637361],[116.859728,33.62429],[116.865209,33.603878],[116.873741,33.589612],[116.899527,33.572035],[116.915209,33.578291],[116.937039,33.580307],[116.928269,33.554403],[116.927888,33.543905],[116.915257,33.53894],[116.90458,33.505987],[116.919594,33.492895],[116.905771,33.482338],[116.904961,33.47711],[116.928793,33.470795],[116.929461,33.462151],[116.940042,33.453608],[116.958822,33.452314],[116.966734,33.443305],[116.96621,33.433052],[116.971358,33.42834],[116.965209,33.419069],[116.969403,33.412336],[116.964351,33.399334],[116.973455,33.391977],[116.958298,33.379957],[116.957249,33.374464],[116.942902,33.377417],[116.932749,33.360212],[116.928174,33.358813],[116.924218,33.34658],[116.913922,33.344559],[116.921119,33.334346],[116.918355,33.328539],[116.927268,33.324703],[116.929413,33.317132],[116.923407,33.30702],[116.937897,33.301315],[116.953531,33.286637],[116.974599,33.278389],[116.986658,33.281657],[117.002578,33.278025],[117.012444,33.279219],[117.025409,33.29644],[117.034132,33.293276],[117.095523,33.284873],[117.099289,33.307746],[117.092092,33.316147],[117.065018,33.321591],[117.064303,33.332842],[117.074932,33.333931],[117.080795,33.344507],[117.093521,33.346788],[117.096572,33.353941],[117.084894,33.365498],[117.062873,33.373946],[117.051243,33.371406],[117.060728,33.392288],[117.08232,33.406638],[117.094808,33.398246],[117.108774,33.398194],[117.107344,33.392702],[117.125504,33.380993],[117.133417,33.387366],[117.14376,33.409694],[117.134656,33.419743],[117.126839,33.422384],[117.128793,33.434554],[117.139708,33.442011],[117.154818,33.439059],[117.15968,33.457543],[117.202721,33.423472],[117.208011,33.453091],[117.231367,33.47328],[117.241996,33.489945],[117.24314,33.501537],[117.261967,33.497035],[117.309632,33.490877],[117.320404,33.476127],[117.34519,33.475661],[117.365399,33.470951],[117.391519,33.456249],[117.40172,33.424766],[117.424169,33.399955],[117.433607,33.379024],[117.477077,33.347772],[117.484274,33.345544],[117.507344,33.346062],[117.528793,33.339686],[117.539756,33.327813],[117.56416,33.333257],[117.577982,33.32548],[117.58966,33.323303],[117.609393,33.339789],[117.62374,33.345336],[117.631939,33.343677],[117.642997,33.333465],[117.66783,33.327917],[117.677124,33.309924],[117.690184,33.304997],[117.692663,33.291668],[117.710585,33.282954],[117.728125,33.284821],[117.737801,33.275068],[117.775408,33.282383],[117.793283,33.277559],[117.808345,33.283161],[117.809536,33.296232],[117.824836,33.299085],[117.846619,33.295247],[117.85353,33.304323],[117.859202,33.324962],[117.870976,33.329213],[117.894379,33.330613],[117.897954,33.340308],[117.909155,33.344455],[117.916018,33.330095],[117.952148,33.32885],[117.972691,33.330095],[117.978983,33.334139],[117.969546,33.34404],[117.971595,33.349328],[117.995475,33.347099],[118.005913,33.352075],[118.029269,33.372236],[118.02598,33.381459],[118.028268,33.390578],[118.016924,33.407001],[118.021881,33.421193],[118.023597,33.440923],[118.028649,33.458423],[118.043568,33.473694],[118.05067,33.492067],[118.061681,33.490773],[118.108106,33.475091],[118.106819,33.503917],[118.107963,33.520163],[118.099145,33.529371],[118.108392,33.529991],[118.117782,33.594419],[118.112443,33.617262],[118.120117,33.621655],[118.168258,33.664015],[118.163969,33.692623],[118.167734,33.714975],[118.153339,33.720137],[118.160823,33.73531],[118.177458,33.735826],[118.185322,33.744959],[118.16292,33.750738],[118.148859,33.746404],[118.129746,33.754195],[118.117973,33.766524],[118.105961,33.764616],[118.065589,33.765802],[118.062443,33.758374],[118.045761,33.750016],[118.028316,33.746662],[118.03089,33.74047],[118.019974,33.738716],[118.018783,33.745836],[117.996714,33.746146],[117.994426,33.750067],[117.982796,33.747333],[117.972358,33.750274],[117.964922,33.763429],[117.954293,33.751047],[117.949431,33.734071],[117.936705,33.729375],[117.920547,33.733349],[117.915828,33.738354],[117.90048,33.735671],[117.897572,33.729324],[117.901671,33.720137],[117.887706,33.722614],[117.879936,33.727775],[117.858964,33.734329],[117.835847,33.734123],[117.825504,33.737322],[117.791757,33.7334],[117.777935,33.722511],[117.767067,33.72184],[117.752673,33.711517],[117.735275,33.722717],[117.731939,33.734742],[117.722739,33.740831],[117.724694,33.749551],[117.734036,33.75177],[117.741853,33.762759],[117.749002,33.791643],[117.752482,33.812835],[117.746142,33.823765],[117.750099,33.827167],[117.752959,33.847165],[117.752434,33.863243],[117.759203,33.874527],[117.758631,33.885655],[117.753769,33.891424],[117.740852,33.89199],[117.715399,33.879267],[117.703626,33.887818],[117.690089,33.915372],[117.672596,33.934938],[117.672501,33.95239],[117.662968,33.968705],[117.671309,33.986715],[117.666305,33.998703],[117.64252,34.01542],[117.629746,34.02869],[117.6164,34.032289],[117.610251,34.029307],[117.618116,34.017118],[117.616638,34.004927],[117.610299,33.999217],[117.597859,33.997005],[117.588183,33.987847],[117.575742,33.982908],[117.568926,33.985223],[117.556438,34.007345],[117.544665,34.01362],[117.54252,34.021644],[117.545332,34.035169],[117.537468,34.04463],[117.514779,34.060877],[117.504913,34.061648],[117.500432,34.05224],[117.476791,34.047613],[117.460251,34.03738],[117.435466,34.02833],[117.415638,34.025913],[117.405723,34.030078],[117.40029,34.041545],[117.38823,34.055582],[117.371119,34.060671],[117.377792,34.071466],[117.357153,34.088221],[117.343426,34.080563],[117.319498,34.084366],[117.311491,34.068073],[117.293807,34.071055],[117.287754,34.078662],[117.277029,34.078919],[117.25763,34.065914],[117.224742,34.064167],[117.212158,34.074704],[117.207058,34.068639],[117.192711,34.068742],[117.182082,34.07604],[117.1613,34.084315],[117.151434,34.083698],[117.157916,34.098755],[117.146572,34.09783],[117.130318,34.101787],[117.129985,34.117457],[117.123836,34.128193],[117.106439,34.130402],[117.089994,34.145707],[117.072311,34.146683],[117.054913,34.155105],[117.047049,34.151408],[117.038374,34.167428],[117.031558,34.166709],[117.031748,34.155721],[117.023312,34.161678],[117.012921,34.149508],[117.004913,34.151408],[117.001768,34.142318],[116.982177,34.137285],[116.971501,34.154643],[116.975457,34.169071],[116.982416,34.167274],[116.980176,34.155978],[116.993522,34.168352],[116.982416,34.172357],[116.980271,34.195867],[116.99538,34.206337],[116.988803,34.205208],[116.994666,34.222808],[117.007821,34.232967],[117.009584,34.219679],[117.021691,34.213675],[117.030175,34.221372],[117.035085,34.23189],[117.031081,34.242765],[117.020786,34.243329],[117.018879,34.255537],[117.007249,34.256973],[116.98437,34.269845],[116.968974,34.28369],[116.976648,34.310911],[116.96926,34.323109],[116.979651,34.338533],[116.983178,34.352468],[116.980223,34.358359],[116.961253,34.363277],[116.960967,34.371985],[116.969308,34.388833],[116.945667,34.395541],[116.920547,34.40701],[116.909203,34.40829],[116.883512,34.403068],[116.86702,34.392162],[116.848526,34.389038],[116.828078,34.389243],[116.804723,34.412744],[116.782654,34.430199],[116.782702,34.438285],[116.773693,34.453483],[116.760681,34.462591],[116.745095,34.46827],[116.722883,34.472669],[116.662588,34.473027],[116.623407,34.488628],[116.575123,34.488935],[116.568689,34.492515],[116.576792,34.497681],[116.592473,34.493845],[116.598956,34.500187],[116.59519,34.511539],[116.587707,34.51251],[116.570548,34.523401],[116.54805,34.542928],[116.529175,34.540679],[116.520643,34.543184],[116.526124,34.553354],[116.509585,34.557494],[116.492378,34.570576],[116.491425,34.588968],[116.478365,34.603832],[116.477221,34.615119],[116.447573,34.620532],[116.432845,34.630132],[116.43051,34.650809],[116.393379,34.643049],[116.382559,34.638659],[116.374218,34.639986],[116.372121,34.633451],[116.350958,34.621145],[116.333989,34.62089],[116.324981,34.601125],[116.310872,34.601432],[116.301101,34.607765],[116.286086,34.608838],[116.278651,34.602096],[116.274885,34.584626],[116.266067,34.583757],[116.259156,34.567612],[116.25296,34.565721],[116.247717,34.55177],[116.233417,34.555143],[116.216925,34.575123],[116.206296,34.578086],[116.197002,34.57594],[116.196334,34.555654],[116.190948,34.53567],[116.203818,34.518748],[116.203913,34.508675],[116.189471,34.497067],[116.178603,34.496044],[116.178842,34.483565],[116.162064,34.459419],[116.174933,34.444682],[116.179223,34.430506],[116.205295,34.415662],[116.215877,34.403324],[116.217068,34.395541],[116.209919,34.390216],[116.213589,34.382227],[116.2399,34.374545],[116.255629,34.376492],[116.270834,34.370704],[116.276792,34.360409],[116.288803,34.358923],[116.301577,34.342119],[116.329652,34.329719],[116.357678,34.319829],[116.365019,34.312397],[116.37336,34.293944],[116.363255,34.276255],[116.372216,34.266102],[116.375934,34.271281],[116.393951,34.276101],[116.406105,34.276512],[116.416258,34.268256],[116.433226,34.270153],[116.4307,34.27805],[116.44581,34.28815],[116.456868,34.269127],[116.466306,34.271179],[116.490138,34.290919],[116.511873,34.296456],[116.568975,34.283434],[116.582416,34.27523],[116.582321,34.266512],[116.56764,34.251229],[116.55396,34.241893],[116.543617,34.239533],[116.547144,34.228196],[116.542712,34.218858],[116.546143,34.195508],[116.559966,34.186166],[116.565495,34.169533],[116.545857,34.161061],[116.535991,34.150997],[116.534656,34.126601],[116.528031,34.122851],[116.541472,34.109956],[116.539613,34.103482],[116.557964,34.097779],[116.566877,34.083801],[116.567735,34.075938],[116.580319,34.065555],[116.576887,34.064064],[116.587421,34.04571],[116.595619,34.040106],[116.604199,34.021335]]]]},"properties":{"adcode":341300,"name":"宿州市","center":[116.984084,33.633891],"centroid":[117.213919,33.860274],"childrenNum":5,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":11,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.771072,31.911286],[116.748479,31.919028],[116.723169,31.916711],[116.70234,31.905122],[116.687754,31.903437],[116.680509,31.915552],[116.680462,31.957259],[116.681939,31.967999],[116.677936,31.976263],[116.667735,31.977947],[116.612635,32.000947],[116.586801,32.018784],[116.571167,32.020468],[116.546858,32.028149],[116.551911,32.042036],[116.544046,32.067701],[116.549385,32.078848],[116.533131,32.097932],[116.524694,32.116434],[116.530224,32.134249],[116.526601,32.151746],[116.515495,32.163461],[116.509299,32.18468],[116.517068,32.194395],[116.515638,32.202692],[116.501101,32.215345],[116.515305,32.223377],[116.527554,32.240594],[116.521835,32.261113],[116.52641,32.270716],[116.521501,32.292539],[116.519261,32.314411],[116.506534,32.344403],[116.48418,32.360286],[116.481129,32.375276],[116.485371,32.388062],[116.492187,32.395817],[116.480176,32.406767],[116.484799,32.439347],[116.472359,32.438247],[116.437564,32.45092],[116.404819,32.442804],[116.392235,32.447621],[116.358489,32.464743],[116.332798,32.510385],[116.320071,32.521164],[116.271692,32.520955],[116.26397,32.494738],[116.246334,32.48406],[116.251244,32.464429],[116.244523,32.4549],[116.23561,32.465843],[116.222979,32.459193],[116.213065,32.463748],[116.203722,32.447621],[116.191187,32.454271],[116.176411,32.425363],[116.167879,32.439766],[116.148146,32.439923],[116.141854,32.46045],[116.124552,32.47113],[116.113398,32.490812],[116.101435,32.523833],[116.090948,32.539162],[116.076411,32.543974],[116.05663,32.546328],[116.036849,32.555011],[116.03113,32.573524],[116.022026,32.591563],[115.996954,32.602907],[115.967355,32.605103],[115.95234,32.59104],[115.936992,32.571955],[115.928365,32.567563],[115.910205,32.566987],[115.899433,32.556214],[115.87765,32.54387],[115.873027,32.525821],[115.856964,32.517973],[115.847336,32.509548],[115.845763,32.501803],[115.853055,32.504472],[115.87317,32.504734],[115.874457,32.497773],[115.883561,32.489242],[115.881273,32.472491],[115.872359,32.469769],[115.864257,32.458932],[115.882703,32.456104],[115.883275,32.438614],[115.879223,32.432591],[115.889423,32.424263],[115.88928,32.413473],[115.899099,32.390106],[115.897908,32.372289],[115.899242,32.344979],[115.904581,32.340995],[115.906964,32.311579],[115.900291,32.301404],[115.908251,32.299253],[115.911063,32.284199],[115.920072,32.273181],[115.914733,32.254869],[115.912731,32.227629],[115.922884,32.203637],[115.925267,32.187831],[115.933656,32.180426],[115.941949,32.165141],[115.940329,32.146755],[115.931368,32.109286],[115.926554,32.105239],[115.932512,32.084264],[115.942569,32.077692],[115.939614,32.065861],[115.927793,32.058761],[115.922216,32.049663],[115.927745,32.036303],[115.919547,32.027886],[115.927841,32.023572],[115.927603,32.007524],[115.933799,32.001631],[115.924552,31.995579],[115.92317,31.985474],[115.911349,31.957996],[115.909013,31.943253],[115.916115,31.935987],[115.920167,31.92045],[115.917259,31.909969],[115.90377,31.883522],[115.898337,31.880255],[115.895715,31.867503],[115.89295,31.833294],[115.904056,31.829393],[115.91316,31.820113],[115.915019,31.811888],[115.910253,31.792322],[115.900815,31.792006],[115.885229,31.776076],[115.868689,31.776551],[115.858298,31.773702],[115.850243,31.786731],[115.836468,31.77386],[115.831034,31.777606],[115.815353,31.76236],[115.788327,31.779821],[115.767927,31.787839],[115.763065,31.782353],[115.741997,31.78209],[115.734276,31.776023],[115.729843,31.763309],[115.710825,31.770906],[115.697145,31.768638],[115.689805,31.776551],[115.677793,31.778872],[115.659633,31.760196],[115.636564,31.755078],[115.619166,31.738351],[115.601435,31.731701],[115.586945,31.721726],[115.582655,31.713913],[115.564924,31.709004],[115.553485,31.695278],[115.531845,31.698551],[115.515067,31.682869],[115.495382,31.672942],[115.48542,31.659791],[115.484276,31.649068],[115.476983,31.64294],[115.489662,31.62577],[115.488232,31.612242],[115.440043,31.588723],[115.438852,31.579948],[115.428223,31.563401],[115.431559,31.559012],[115.428556,31.54722],[115.415877,31.525959],[115.396812,31.515168],[115.389614,31.507603],[115.377126,31.503],[115.371168,31.494535],[115.377651,31.47051],[115.389805,31.45029],[115.385658,31.443302],[115.38337,31.418682],[115.373647,31.40576],[115.392808,31.38987],[115.38318,31.37562],[115.375744,31.371063],[115.382465,31.356598],[115.372074,31.349285],[115.3991,31.342979],[115.404581,31.337838],[115.420501,31.349921],[115.442045,31.346106],[115.449624,31.31584],[115.460968,31.318067],[115.457822,31.281588],[115.466402,31.276338],[115.473122,31.265253],[115.494047,31.265942],[115.501006,31.262388],[115.507584,31.267905],[115.51602,31.263502],[115.530081,31.249339],[115.53971,31.231884],[115.538375,31.220369],[115.540711,31.191337],[115.559586,31.160332],[115.585706,31.144188],[115.596716,31.150136],[115.603723,31.173712],[115.629033,31.184649],[115.636325,31.19999],[115.645954,31.209596],[115.655248,31.210976],[115.678127,31.207632],[115.700815,31.201104],[115.728127,31.174721],[115.740567,31.152951],[115.75582,31.142542],[115.764066,31.118215],[115.770072,31.113061],[115.781511,31.11354],[115.797908,31.127883],[115.813256,31.13091],[115.829128,31.126448],[115.841282,31.128998],[115.857107,31.143286],[115.869261,31.14764],[115.880081,31.141905],[115.886373,31.127351],[115.887421,31.109289],[115.902769,31.089205],[115.909585,31.090693],[115.925744,31.076822],[115.939805,31.071667],[115.942235,31.060664],[115.938565,31.047321],[115.946192,31.04243],[115.961063,31.046896],[115.983704,31.041898],[115.994047,31.034614],[116.00663,31.034668],[116.010062,31.017332],[116.015019,31.011908],[116.046144,31.014514],[116.051578,31.042217],[116.050958,31.049554],[116.066354,31.070072],[116.092664,31.082668],[116.093379,31.090108],[116.10458,31.094465],[116.11888,31.086866],[116.157679,31.099301],[116.166258,31.0976],[116.18132,31.083359],[116.183751,31.064917],[116.203293,31.0579],[116.222455,31.061781],[116.243427,31.0756],[116.261396,31.082403],[116.268498,31.100098],[116.293045,31.114761],[116.303532,31.123155],[116.309776,31.140418],[116.3307,31.145622],[116.342712,31.15242],[116.344952,31.163624],[116.359537,31.173978],[116.378984,31.165377],[116.395572,31.162084],[116.415305,31.162191],[116.431892,31.144135],[116.437707,31.128414],[116.4603,31.125917],[116.470071,31.135637],[116.481844,31.136965],[116.496715,31.148756],[116.501911,31.141427],[116.508298,31.142489],[116.519547,31.160173],[116.538469,31.174456],[116.543474,31.181941],[116.552816,31.179712],[116.556582,31.172173],[116.552816,31.165908],[116.558346,31.147587],[116.555867,31.123314],[116.562683,31.111096],[116.549385,31.093243],[116.538708,31.072145],[116.533512,31.056624],[116.534799,31.044185],[116.530939,31.035306],[116.530605,31.021002],[116.543617,31.020311],[116.560347,31.034614],[116.563779,31.045567],[116.571072,31.051787],[116.591711,31.04764],[116.594571,31.054126],[116.611539,31.067309],[116.614018,31.073899],[116.622502,31.074112],[116.647049,31.05891],[116.65396,31.052212],[116.665495,31.059123],[116.68356,31.055774],[116.68866,31.048703],[116.70968,31.043228],[116.722883,31.059601],[116.736753,31.063907],[116.752721,31.060877],[116.761301,31.068372],[116.777602,31.070019],[116.78866,31.065289],[116.805962,31.08219],[116.815638,31.085378],[116.829365,31.101213],[116.843331,31.104455],[116.842187,31.11338],[116.847144,31.124642],[116.862254,31.129901],[116.875981,31.127458],[116.894952,31.133407],[116.919356,31.151305],[116.92274,31.160067],[116.943903,31.161766],[116.946906,31.182738],[116.954008,31.189161],[116.963255,31.214532],[116.981415,31.244564],[116.998193,31.2565],[117.006725,31.267693],[117.016257,31.266844],[117.032273,31.256607],[117.045285,31.269018],[117.045809,31.282967],[117.063874,31.289436],[117.070786,31.301102],[117.070023,31.321724],[117.073693,31.335453],[117.081367,31.345947],[117.074074,31.360678],[117.074837,31.374401],[117.094379,31.408831],[117.113064,31.438485],[117.142473,31.472045],[117.149194,31.483317],[117.166448,31.490619],[117.184513,31.492842],[117.237277,31.490461],[117.250719,31.49681],[117.251386,31.502947],[117.242282,31.508185],[117.228316,31.544788],[117.220023,31.540239],[117.198288,31.551979],[117.187039,31.552085],[117.153817,31.545158],[117.144999,31.554835],[117.13375,31.551028],[117.132082,31.542884],[117.124265,31.54447],[117.112301,31.540081],[117.065971,31.553513],[117.055009,31.544735],[117.039613,31.538864],[117.006868,31.548013],[117.002101,31.56081],[116.990852,31.558536],[116.990662,31.537542],[116.987135,31.533787],[116.975457,31.540239],[116.966925,31.539816],[116.95253,31.532042],[116.934561,31.537754],[116.902054,31.528234],[116.879318,31.531672],[116.845476,31.526488],[116.829747,31.519083],[116.815733,31.531936],[116.806725,31.532624],[116.804485,31.539235],[116.792854,31.543941],[116.789756,31.550605],[116.767497,31.571331],[116.763255,31.58238],[116.766782,31.589358],[116.765638,31.618584],[116.754628,31.636918],[116.75315,31.647061],[116.757583,31.659157],[116.767926,31.672097],[116.763255,31.685879],[116.762254,31.711327],[116.752149,31.728746],[116.759442,31.7469],[116.758012,31.762465],[116.752101,31.765525],[116.731129,31.76542],[116.734752,31.77481],[116.728746,31.782406],[116.719785,31.779083],[116.714113,31.791847],[116.694809,31.809356],[116.692521,31.820272],[116.702006,31.832082],[116.732607,31.848371],[116.740567,31.857911],[116.724647,31.85828],[116.721596,31.87135],[116.714113,31.878938],[116.716067,31.884207],[116.764256,31.904227],[116.771072,31.911286]]]]},"properties":{"adcode":341500,"name":"六安市","center":[116.507676,31.752889],"centroid":[116.23409,31.659225],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":12,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.393713,33.783082],[116.372502,33.780245],[116.361063,33.776273],[116.348718,33.778749],[116.3307,33.773849],[116.328746,33.76637],[116.31683,33.77127],[116.308155,33.757548],[116.284657,33.750119],[116.263589,33.730098],[116.246048,33.728704],[116.230176,33.734897],[116.226649,33.722459],[116.204914,33.726795],[116.197288,33.72535],[116.174027,33.708988],[116.155391,33.709917],[116.14214,33.734432],[116.14276,33.738458],[116.131654,33.752234],[116.109299,33.758219],[116.098908,33.774881],[116.099099,33.783133],[116.074457,33.781534],[116.073313,33.794066],[116.055438,33.804792],[116.06235,33.814485],[116.05806,33.821393],[116.045429,33.822991],[116.045953,33.829023],[116.063494,33.826188],[116.065067,33.847475],[116.056725,33.850928],[116.054914,33.860873],[116.043475,33.874888],[116.034752,33.873754],[116.034561,33.880039],[116.013446,33.885706],[116.012493,33.897399],[115.999147,33.901931],[115.98704,33.901159],[115.982703,33.917175],[115.995524,33.947551],[116.000338,33.963198],[115.994952,33.975086],[115.984037,33.987847],[115.957583,34.007756],[115.926697,34.007911],[115.919738,34.010791],[115.904342,34.009968],[115.899338,34.014752],[115.895334,34.028741],[115.887278,34.032804],[115.877555,34.029872],[115.877078,34.003178],[115.852722,34.003847],[115.845477,34.012026],[115.845238,34.03085],[115.832226,34.038563],[115.815543,34.052908],[115.809109,34.06247],[115.793427,34.063653],[115.780272,34.073162],[115.781463,34.062213],[115.768832,34.062162],[115.735849,34.076811],[115.705963,34.059797],[115.699814,34.066017],[115.681845,34.065503],[115.669166,34.056713],[115.65358,34.060106],[115.648003,34.046327],[115.649576,34.035632],[115.642236,34.032289],[115.621359,34.03013],[115.615067,34.033369],[115.601054,34.022981],[115.606583,34.013209],[115.592665,34.009865],[115.584085,33.988619],[115.591044,33.986201],[115.588375,33.97699],[115.579033,33.973954],[115.577555,33.950125],[115.569166,33.945492],[115.569976,33.932828],[115.562588,33.927164],[115.559776,33.914549],[115.568308,33.906927],[115.556821,33.903682],[115.555296,33.888591],[115.546573,33.888436],[115.546192,33.875506],[115.556678,33.876897],[115.564209,33.871333],[115.579509,33.877],[115.592331,33.868241],[115.605725,33.867417],[115.620882,33.876124],[115.633513,33.867314],[115.636135,33.841187],[115.626268,33.836187],[115.625601,33.823662],[115.616592,33.820001],[115.623313,33.811959],[115.621168,33.796799],[115.614257,33.775654],[115.59052,33.783701],[115.582226,33.788703],[115.56521,33.780193],[115.56316,33.771683],[115.570024,33.765286],[115.574838,33.752234],[115.583561,33.747229],[115.59624,33.731233],[115.601578,33.718537],[115.596287,33.700315],[115.607155,33.68906],[115.599624,33.688286],[115.602531,33.67264],[115.601626,33.657662],[115.617784,33.632608],[115.625029,33.625633],[115.639757,33.585115],[115.651244,33.544629],[115.676697,33.508729],[115.681273,33.505831],[115.698337,33.509557],[115.720834,33.51085],[115.749481,33.499881],[115.751387,33.495896],[115.769404,33.490515],[115.773217,33.484718],[115.786135,33.481044],[115.796049,33.468569],[115.807441,33.466861],[115.831606,33.451227],[115.848861,33.450864],[115.854962,33.442321],[115.897383,33.400525],[115.895334,33.384724],[115.898432,33.356999],[115.911111,33.340567],[115.914399,33.328902],[115.921406,33.323303],[115.919833,33.313606],[115.92603,33.309769],[115.927841,33.298722],[115.914828,33.295506],[115.915972,33.279478],[115.906725,33.255975],[115.909204,33.246634],[115.917498,33.24269],[115.925696,33.229195],[115.916497,33.215491],[115.876983,33.248295],[115.839423,33.262824],[115.832083,33.256753],[115.8297,33.231635],[115.835277,33.21383],[115.845238,33.193528],[115.841378,33.180234],[115.825505,33.162678],[115.824361,33.150938],[115.831034,33.157172],[115.850196,33.153535],[115.850196,33.136078],[115.839709,33.135454],[115.844333,33.125321],[115.865925,33.125581],[115.877126,33.122151],[115.872026,33.103128],[115.866735,33.094343],[115.89848,33.093667],[115.914876,33.088],[115.948098,33.080774],[115.980796,33.07079],[116.002483,33.060077],[116.018213,33.056125],[116.010157,33.043954],[116.01602,33.041925],[116.04214,33.048843],[116.051053,33.044266],[116.0552,33.034227],[116.051768,33.021428],[116.059013,33.016954],[116.060062,33.003737],[116.052531,32.99515],[116.054914,32.99057],[116.083084,32.986458],[116.125743,32.976047],[116.155581,32.973757],[116.167926,32.967145],[116.165305,32.959492],[116.168165,32.940642],[116.178889,32.922882],[116.191711,32.91387],[116.198432,32.893396],[116.212636,32.888706],[116.232988,32.889852],[116.245333,32.884954],[116.248527,32.872812],[116.280319,32.859052],[116.292569,32.858948],[116.30825,32.86562],[116.348098,32.878128],[116.370881,32.900221],[116.386992,32.89772],[116.394618,32.891311],[116.393856,32.910745],[116.385705,32.921632],[116.365877,32.940694],[116.365162,32.946891],[116.371739,32.964906],[116.376458,32.969019],[116.376649,32.993744],[116.382416,33.004777],[116.446382,32.984896],[116.627888,32.941475],[116.684323,32.93934],[116.705676,32.936944],[116.735657,32.928663],[116.742711,32.94736],[116.740424,32.959752],[116.747526,32.978962],[116.754628,32.98906],[116.755152,33.002696],[116.76826,33.006078],[116.768784,33.000406],[116.778174,33.00332],[116.777459,32.996607],[116.79886,32.994161],[116.802483,33.000042],[116.810586,32.99541],[116.816162,33.013051],[116.814923,33.021532],[116.802197,33.032666],[116.781558,33.040105],[116.752483,33.053108],[116.748622,33.060858],[116.749098,33.075522],[116.764637,33.090704],[116.764589,33.114823],[116.754723,33.13109],[116.756868,33.141222],[116.77131,33.15525],[116.777078,33.151821],[116.791853,33.169015],[116.805247,33.156081],[116.815304,33.155405],[116.821405,33.202771],[116.826553,33.210819],[116.825981,33.230804],[116.813159,33.250319],[116.805485,33.275587],[116.800481,33.27595],[116.801911,33.303908],[116.789089,33.319777],[116.790424,33.334553],[116.787421,33.347254],[116.794141,33.354822],[116.790948,33.360005],[116.800862,33.386122],[116.796572,33.403012],[116.804628,33.422902],[116.7705,33.431861],[116.756725,33.438438],[116.745905,33.449104],[116.722597,33.450709],[116.700004,33.474056],[116.687182,33.47799],[116.665733,33.474626],[116.642378,33.477628],[116.63642,33.484977],[116.623503,33.485495],[116.612778,33.481872],[116.593617,33.480112],[116.58213,33.471209],[116.56826,33.466292],[116.547478,33.467897],[116.535562,33.481302],[116.533989,33.498018],[116.539089,33.513178],[116.534656,33.525077],[116.524742,33.53056],[116.52846,33.544008],[116.525505,33.551455],[116.531939,33.565624],[116.548002,33.57007],[116.540662,33.587596],[116.55153,33.588578],[116.551101,33.596642],[116.543808,33.59783],[116.533751,33.614575],[116.505486,33.618968],[116.503817,33.631265],[116.481129,33.654253],[116.485848,33.666081],[116.49214,33.668405],[116.492426,33.681315],[116.484227,33.697889],[116.478603,33.697992],[116.479413,33.708678],[116.463589,33.719724],[116.460014,33.734123],[116.433226,33.739696],[116.435753,33.762191],[116.406439,33.762552],[116.408155,33.770393],[116.393713,33.783082]]]]},"properties":{"adcode":341600,"name":"亳州市","center":[115.782939,33.869338],"centroid":[116.185025,33.435253],"childrenNum":4,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":13,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.673836,29.709848],[116.687087,29.734798],[116.703055,29.741264],[116.720548,29.763352],[116.739327,29.774179],[116.745857,29.790336],[116.762492,29.802506],[116.780891,29.79249],[116.789804,29.795128],[116.812349,29.811713],[116.830748,29.841482],[116.861301,29.867369],[116.882702,29.893518],[116.891996,29.919337],[116.891853,29.92735],[116.900147,29.949504],[116.887897,29.968805],[116.868688,29.980469],[116.845381,29.969611],[116.835943,29.970686],[116.835276,29.95773],[116.828746,29.963106],[116.829556,30.006534],[116.802816,29.996539],[116.787325,30.020343],[116.783512,30.030712],[116.770309,30.035655],[116.764542,30.048923],[116.753627,30.048976],[116.747335,30.057248],[116.771787,30.073681],[116.816925,30.115075],[116.841901,30.146739],[116.860061,30.17732],[116.867497,30.213576],[116.892711,30.240492],[116.920547,30.257966],[116.927173,30.273455],[116.928793,30.290978],[116.9205,30.314283],[116.910347,30.332869],[116.903341,30.357289],[116.893855,30.381595],[116.888279,30.407019],[116.891949,30.414725],[116.892425,30.431099],[116.9011,30.436503],[116.914446,30.425481],[116.935609,30.440301],[116.950433,30.442816],[116.975552,30.458062],[116.986372,30.470791],[117.01049,30.489294],[117.025457,30.494267],[117.111586,30.495337],[117.135133,30.492075],[117.164017,30.474802],[117.192187,30.465871],[117.213397,30.476941],[117.226315,30.489027],[117.236372,30.504747],[117.241281,30.523083],[117.243807,30.538156],[117.252244,30.563967],[117.247906,30.58929],[117.21783,30.620641],[117.217068,30.630626],[117.272644,30.656626],[117.309489,30.676801],[117.343426,30.688969],[117.366829,30.694251],[117.394379,30.694998],[117.399384,30.690676],[117.422358,30.682885],[117.4511,30.679043],[117.470404,30.678989],[117.485418,30.686514],[117.493616,30.696706],[117.507249,30.726688],[117.576934,30.756662],[117.645523,30.776603],[117.670594,30.781508],[117.701815,30.806614],[117.698526,30.789931],[117.72088,30.791103],[117.742568,30.8072],[117.751529,30.802936],[117.755961,30.792223],[117.748478,30.778522],[117.759918,30.769832],[117.758202,30.761674],[117.781938,30.764127],[117.78375,30.749729],[117.796238,30.748449],[117.803101,30.757462],[117.815733,30.759914],[117.842282,30.773617],[117.846333,30.788438],[117.872787,30.807893],[117.884036,30.812317],[117.903197,30.814022],[117.915828,30.819564],[117.934608,30.835763],[117.94333,30.833099],[117.953626,30.817593],[117.980413,30.843808],[117.989612,30.828836],[117.966781,30.799099],[117.968783,30.794941],[117.983702,30.794035],[117.997477,30.778949],[118.030461,30.774097],[118.051671,30.758635],[118.071357,30.746849],[118.095952,30.738849],[118.115732,30.71938],[118.124979,30.717833],[118.128506,30.701295],[118.134941,30.700281],[118.126075,30.690783],[118.105723,30.662978],[118.099574,30.651341],[118.100956,30.641251],[118.077934,30.623684],[118.073073,30.609533],[118.065923,30.600026],[118.046142,30.597142],[118.022977,30.575454],[117.997048,30.570806],[117.985132,30.561348],[117.987229,30.537675],[117.98108,30.525382],[117.970118,30.512231],[117.963635,30.508436],[117.951481,30.489134],[117.945904,30.466726],[117.945904,30.455066],[117.938564,30.425106],[117.941233,30.413602],[117.952911,30.403594],[117.953197,30.392568],[117.938278,30.378115],[117.91659,30.366552],[117.928125,30.357289],[117.940137,30.33469],[117.925361,30.33078],[117.932034,30.326335],[117.928507,30.319747],[117.920356,30.320014],[117.907677,30.309783],[117.91292,30.299283],[117.902196,30.294246],[117.886419,30.293228],[117.888516,30.269597],[117.863206,30.266435],[117.842997,30.260378],[117.824932,30.241617],[117.829317,30.225212],[117.858345,30.21733],[117.8613,30.209072],[117.852863,30.191749],[117.846953,30.192286],[117.831366,30.182202],[117.820404,30.182577],[117.797811,30.163694],[117.778125,30.156719],[117.743187,30.154037],[117.698955,30.143466],[117.682606,30.132733],[117.68661,30.126132],[117.673264,30.122106],[117.676219,30.107936],[117.662491,30.108902],[117.655866,30.115451],[117.646143,30.114484],[117.642901,30.105627],[117.631176,30.099293],[117.615351,30.111693],[117.61049,30.131499],[117.599765,30.129781],[117.584846,30.118027],[117.572739,30.115719],[117.568736,30.107399],[117.560299,30.103748],[117.571071,30.101762],[117.56845,30.088233],[117.559965,30.0834],[117.554293,30.101601],[117.545618,30.101601],[117.541043,30.11062],[117.528983,30.099561],[117.535371,30.083776],[117.544093,30.086783],[117.53599,30.076581],[117.542091,30.052844],[117.511491,30.037105],[117.492806,30.034903],[117.461777,30.037965],[117.446476,30.02303],[117.433273,30.02072],[117.411538,30.030444],[117.394093,30.029745],[117.386372,30.011048],[117.349813,30.008254],[117.324217,29.99799],[117.309155,29.999065],[117.297668,29.992777],[117.267401,29.98321],[117.260156,29.985253],[117.206152,29.974288],[117.203102,29.965149],[117.206248,29.927511],[117.188946,29.921864],[117.177601,29.921972],[117.148812,29.911323],[117.134704,29.903846],[117.127983,29.895508],[117.133035,29.874256],[117.127697,29.861611],[117.110395,29.855422],[117.092807,29.836853],[117.073312,29.832224],[117.0756,29.822642],[117.092711,29.809559],[117.127983,29.795775],[117.135609,29.780965],[117.135466,29.772024],[117.108679,29.751985],[117.10825,29.745089],[117.122454,29.728548],[117.113016,29.712165],[117.085848,29.696912],[117.070881,29.693732],[117.051243,29.682896],[117.042044,29.680902],[117.015304,29.685753],[116.996048,29.683381],[116.984561,29.674702],[116.971167,29.655668],[116.939613,29.64828],[116.918545,29.634473],[116.873455,29.609282],[116.848955,29.576421],[116.838088,29.569837],[116.818403,29.564764],[116.795762,29.566545],[116.780652,29.570539],[116.779651,29.57804],[116.786944,29.591315],[116.774933,29.595254],[116.770166,29.592232],[116.760443,29.599085],[116.740185,29.585919],[116.729985,29.568542],[116.721596,29.56498],[116.716544,29.590775],[116.688946,29.604103],[116.685657,29.611602],[116.670595,29.625088],[116.651911,29.63717],[116.652244,29.645422],[116.663589,29.659173],[116.677078,29.66904],[116.680509,29.681495],[116.673026,29.687532],[116.656677,29.686346],[116.654151,29.694756],[116.668021,29.700308],[116.673836,29.709848]],[[116.698956,29.7078],[116.705819,29.697128],[116.703388,29.710063],[116.698956,29.7078]],[[116.706534,29.696588],[116.705057,29.688664],[116.717163,29.690767],[116.715876,29.697289],[116.706534,29.696588]],[[117.297144,30.487209],[117.290137,30.4763],[117.274456,30.465229],[117.256724,30.458543],[117.25558,30.45405],[117.267211,30.441746],[117.259203,30.430511],[117.25253,30.428798],[117.251958,30.420558],[117.268545,30.420184],[117.281129,30.414458],[117.299289,30.425374],[117.293378,30.440997],[117.305437,30.445812],[117.31478,30.461859],[117.321882,30.462234],[117.326648,30.470631],[117.324551,30.487637],[117.319784,30.49277],[117.307535,30.494267],[117.297144,30.487209]]]},"properties":{"adcode":341700,"name":"池州市","center":[117.489157,30.656037],"centroid":[117.371465,30.282082],"childrenNum":4,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":14,"acroutes":[100000,340000]}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.868878,30.10144],[118.871642,30.113035],[118.887228,30.117437],[118.888134,30.127259],[118.895951,30.138797],[118.896809,30.148081],[118.881032,30.146793],[118.865732,30.151515],[118.856389,30.148188],[118.845713,30.156129],[118.852862,30.166537],[118.864397,30.169005],[118.910822,30.187512],[118.920641,30.199043],[118.929888,30.203387],[118.924979,30.213844],[118.903196,30.21792],[118.893043,30.242689],[118.882414,30.24746],[118.889707,30.254268],[118.878077,30.282726],[118.881795,30.298532],[118.879888,30.314872],[118.899764,30.322586],[118.908391,30.330888],[118.917877,30.332441],[118.936323,30.34508],[118.936418,30.35081],[118.955388,30.359216],[118.959964,30.347275],[118.96902,30.351345],[118.975741,30.347168],[118.988086,30.348668],[118.988039,30.333458],[119.004435,30.328959],[119.028792,30.312569],[119.048334,30.312676],[119.05086,30.306729],[119.063015,30.304961],[119.073405,30.31589],[119.090231,30.324032],[119.111013,30.311283],[119.128506,30.304694],[119.151289,30.304586],[119.156723,30.29955],[119.188181,30.291674],[119.201051,30.291031],[119.205674,30.301586],[119.222595,30.299604],[119.229173,30.289692],[119.236227,30.2973],[119.245903,30.321621],[119.239993,30.327031],[119.247142,30.340796],[119.265064,30.338064],[119.278124,30.341599],[119.289468,30.349632],[119.300669,30.36366],[119.329077,30.371531],[119.342662,30.363178],[119.34943,30.34915],[119.375598,30.354826],[119.386132,30.363928],[119.399954,30.367783],[119.403052,30.374368],[119.393806,30.38304],[119.371451,30.38395],[119.366589,30.388393],[119.368925,30.39974],[119.363205,30.409481],[119.349525,30.408625],[119.352957,30.424839],[119.349716,30.438803],[119.336132,30.445544],[119.334463,30.478118],[119.330317,30.488225],[119.336322,30.507153],[119.328696,30.52164],[119.326551,30.533025],[119.313634,30.531208],[119.287943,30.512606],[119.272118,30.510521],[119.261632,30.517738],[119.261918,30.525542],[119.242566,30.530032],[119.236942,30.546707],[119.245522,30.561402],[119.264778,30.573424],[119.264778,30.582025],[119.254149,30.588649],[119.253672,30.596447],[119.239135,30.609319],[119.25005,30.620267],[119.258772,30.614393],[119.275741,30.617597],[119.291232,30.616048],[119.311966,30.621228],[119.323119,30.630306],[119.333653,30.652195],[119.343138,30.664205],[119.35453,30.666927],[119.372357,30.680377],[119.379411,30.679363],[119.391518,30.685233],[119.395665,30.678722],[119.400002,30.658868],[119.412681,30.642959],[119.433653,30.644454],[119.448286,30.655825],[119.452909,30.671624],[119.466017,30.683899],[119.482747,30.704442],[119.479697,30.736823],[119.484606,30.744609],[119.478791,30.753089],[119.480126,30.773298],[119.491518,30.777243],[119.507104,30.769619],[119.524501,30.776017],[119.55453,30.825639],[119.561203,30.829476],[119.575741,30.829742],[119.573739,30.853344],[119.558963,30.871189],[119.559058,30.891745],[119.556341,30.896697],[119.563825,30.919218],[119.580364,30.929173],[119.582175,30.947428],[119.580412,30.967117],[119.588372,30.979142],[119.607437,30.991856],[119.616255,31.002388],[119.624025,31.005313],[119.634034,31.01946],[119.631317,31.046311],[119.634987,31.064172],[119.629554,31.085538],[119.634702,31.093775],[119.649144,31.105092],[119.624168,31.115983],[119.623786,31.130273],[119.613729,31.129157],[119.599763,31.109183],[119.581985,31.108652],[119.57412,31.113965],[119.571308,31.128998],[119.56025,31.140736],[119.545855,31.147853],[119.534511,31.158102],[119.5235,31.159748],[119.51392,31.156031],[119.494473,31.163996],[119.48556,31.161394],[119.482509,31.152526],[119.475836,31.158898],[119.460583,31.156403],[119.454768,31.164899],[119.438801,31.177057],[119.423167,31.181835],[119.415398,31.172969],[119.400622,31.178756],[119.39147,31.174243],[119.389325,31.188365],[119.405674,31.194416],[119.394902,31.199618],[119.379173,31.189214],[119.371403,31.197707],[119.365779,31.195956],[119.360059,31.212144],[119.365207,31.232627],[119.379697,31.26939],[119.371594,31.271617],[119.367876,31.289224],[119.356627,31.303275],[119.350145,31.301049],[119.350288,31.281641],[119.345951,31.268965],[119.337562,31.258888],[119.333224,31.264139],[119.314873,31.26573],[119.294473,31.263131],[119.266971,31.250453],[119.261394,31.261328],[119.249764,31.262017],[119.250193,31.257243],[119.238563,31.254644],[119.236275,31.259312],[119.218544,31.264563],[119.215255,31.27411],[119.204244,31.26573],[119.197142,31.273527],[119.199478,31.293625],[119.181127,31.300465],[119.176218,31.293944],[119.158153,31.294792],[119.150098,31.277133],[119.14066,31.276019],[119.131747,31.262548],[119.120021,31.261699],[119.107009,31.250612],[119.105293,31.23528],[119.085465,31.240267],[119.073787,31.232892],[119.062347,31.238463],[119.048858,31.233529],[119.039516,31.23841],[119.022881,31.238145],[119.015017,31.241646],[119.003291,31.233741],[118.986466,31.231141],[118.983939,31.237773],[118.953053,31.237773],[118.924979,31.239683],[118.915207,31.244193],[118.891232,31.237986],[118.869688,31.24223],[118.851051,31.23963],[118.824073,31.230451],[118.819116,31.236022],[118.802672,31.228223],[118.795331,31.229443],[118.781413,31.239843],[118.779983,31.259524],[118.761394,31.277663],[118.726599,31.282224],[118.707915,31.296807],[118.704435,31.302798],[118.719593,31.294792],[118.72107,31.322679],[118.714731,31.321671],[118.704102,31.307782],[118.692186,31.309001],[118.681747,31.304336],[118.656866,31.304654],[118.661442,31.290762],[118.66006,31.269761],[118.651861,31.261009],[118.647286,31.245519],[118.663587,31.236871],[118.66821,31.22488],[118.682986,31.214054],[118.695045,31.189108],[118.708963,31.177004],[118.718401,31.173978],[118.733558,31.149446],[118.717305,31.144188],[118.702004,31.135797],[118.690327,31.124961],[118.683082,31.111893],[118.685513,31.096272],[118.676838,31.08963],[118.676123,31.081393],[118.682653,31.074909],[118.663396,31.054445],[118.650003,31.036848],[118.627314,31.020576],[118.606819,31.020204],[118.600956,31.028021],[118.603768,31.044238],[118.596142,31.047853],[118.584273,31.026107],[118.572262,31.016269],[118.581223,30.994728],[118.582462,30.981855],[118.570975,30.972278],[118.550956,30.970682],[118.510251,30.9511],[118.515255,30.937582],[118.495713,30.941042],[118.509154,30.928694],[118.511537,30.914054],[118.489707,30.900052],[118.492948,30.883491],[118.485846,30.87726],[118.475742,30.88184],[118.472119,30.875077],[118.483987,30.870762],[118.47741,30.857553],[118.485513,30.864051],[118.498239,30.859843],[118.490041,30.848656],[118.490899,30.842849],[118.477982,30.833579],[118.482224,30.822549],[118.495522,30.819884],[118.503101,30.810451],[118.502863,30.801497],[118.48475,30.79025],[118.480699,30.780602],[118.48027,30.76642],[118.451671,30.779162],[118.455198,30.790144],[118.446476,30.800911],[118.4317,30.796434],[118.419498,30.813649],[118.429841,30.813916],[118.4368,30.824733],[118.424502,30.841091],[118.409536,30.84871],[118.376409,30.845513],[118.358916,30.84578],[118.34762,30.824414],[118.33823,30.826812],[118.318687,30.821749],[118.306724,30.806934],[118.312872,30.795101],[118.305008,30.800964],[118.302577,30.793822],[118.307582,30.77639],[118.297906,30.772391],[118.294569,30.757088],[118.276647,30.743169],[118.275694,30.736449],[118.294712,30.722421],[118.297191,30.715966],[118.314445,30.705083],[118.30496,30.698146],[118.293282,30.699961],[118.278745,30.712659],[118.267591,30.714206],[118.242901,30.703482],[118.229221,30.709244],[118.218354,30.709458],[118.205437,30.702148],[118.171214,30.691637],[118.153578,30.666554],[118.1368,30.652195],[118.100956,30.641251],[118.077934,30.623684],[118.073073,30.609533],[118.065923,30.600026],[118.046142,30.597142],[118.022977,30.575454],[117.997048,30.570806],[117.985132,30.561348],[117.987229,30.537675],[117.98108,30.525382],[117.970118,30.512231],[117.985751,30.498705],[118.016924,30.500576],[118.034941,30.498438],[118.053721,30.503677],[118.075218,30.515011],[118.089612,30.51731],[118.117591,30.509238],[118.130747,30.49817],[118.121118,30.493091],[118.118211,30.483252],[118.103435,30.465229],[118.109774,30.452712],[118.107582,30.42928],[118.125027,30.423662],[118.130175,30.429601],[118.142901,30.433828],[118.15782,30.434309],[118.163254,30.446775],[118.181128,30.447844],[118.16864,30.453033],[118.188039,30.474481],[118.185847,30.46448],[118.196571,30.468652],[118.21373,30.466833],[118.213873,30.461271],[118.225217,30.455013],[118.231604,30.445651],[118.228077,30.439713],[118.215399,30.438322],[118.222977,30.423929],[118.221452,30.414351],[118.237801,30.40049],[118.250337,30.394816],[118.255913,30.378437],[118.265684,30.376402],[118.278173,30.38031],[118.280365,30.372387],[118.300289,30.370139],[118.295141,30.358306],[118.305532,30.351399],[118.299765,30.340796],[118.302052,30.329709],[118.310203,30.32055],[118.307629,30.309301],[118.294903,30.302122],[118.31211,30.292907],[118.320546,30.293764],[118.304912,30.284387],[118.292472,30.283691],[118.271404,30.269865],[118.266638,30.259842],[118.267782,30.243333],[118.271881,30.238186],[118.286562,30.232879],[118.289946,30.219046],[118.290708,30.199526],[118.31149,30.193197],[118.326647,30.175282],[118.339326,30.16584],[118.347477,30.134289],[118.356962,30.121945],[118.355103,30.111908],[118.370642,30.099722],[118.384607,30.097145],[118.394807,30.106271],[118.404483,30.099615],[118.417734,30.097306],[118.449955,30.102621],[118.468926,30.082434],[118.477696,30.076527],[118.494474,30.072124],[118.514016,30.038932],[118.513492,30.030659],[118.498096,30.018141],[118.498716,30.005997],[118.50577,29.99138],[118.509297,29.998312],[118.520403,29.99885],[118.524502,29.992508],[118.520784,29.975201],[118.524741,29.967407],[118.548668,29.945203],[118.564588,29.947569],[118.574931,29.963751],[118.583463,29.968321],[118.605818,29.971654],[118.614016,29.980469],[118.618592,29.997399],[118.614493,30.001805],[118.628029,30.016529],[118.651004,30.024534],[118.669021,30.023675],[118.688754,30.028993],[118.694807,30.036675],[118.69781,30.056818],[118.730365,30.070298],[118.743139,30.092743],[118.754626,30.080608],[118.767972,30.076796],[118.789945,30.078299],[118.82107,30.102728],[118.85005,30.110458],[118.868878,30.10144]]]]},"properties":{"adcode":341800,"name":"宣城市","center":[118.757995,30.945667],"centroid":[118.857477,30.684955],"childrenNum":7,"level":"city","parent":"{ \"adcode\": 340000 }","subFeatureIndex":15,"acroutes":[100000,340000]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/350000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/350000.json new file mode 100644 index 0000000..05792bc --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/350000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":350100,"name":"福州市","center":[119.306239,26.075302],"centroid":[119.200519,26.047886],"childrenNum":13,"level":"city","parent":{"adcode":350000},"subFeatureIndex":0,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.799983,26.546836],[119.794279,26.556833],[119.782628,26.566734],[119.763664,26.577063],[119.743676,26.575825],[119.744066,26.5684],[119.72871,26.559547],[119.699362,26.569257],[119.681909,26.559118],[119.675084,26.537647],[119.665529,26.535743],[119.659337,26.526077],[119.637936,26.52822],[119.622579,26.521125],[119.610391,26.527363],[119.605029,26.536124],[119.59562,26.540742],[119.585382,26.537219],[119.565492,26.546455],[119.557643,26.544932],[119.556229,26.554786],[119.534779,26.56107],[119.524444,26.573588],[119.530781,26.578348],[119.50665,26.607234],[119.500556,26.621222],[119.473889,26.631356],[119.466625,26.627264],[119.449075,26.630642],[119.424505,26.624695],[119.408466,26.6344],[119.401592,26.628121],[119.414559,26.623506],[119.406418,26.617464],[119.388039,26.622935],[119.380434,26.621508],[119.379556,26.611516],[119.371513,26.601524],[119.360641,26.598954],[119.351476,26.602999],[119.344212,26.597955],[119.348307,26.590198],[119.335486,26.585249],[119.332268,26.578919],[119.31501,26.575492],[119.320275,26.585249],[119.316083,26.591293],[119.29902,26.591436],[119.285126,26.570352],[119.279179,26.535076],[119.253682,26.54855],[119.246662,26.532886],[119.229111,26.52403],[119.215461,26.536743],[119.21512,26.545884],[119.204492,26.563402],[119.196107,26.568876],[119.182311,26.55431],[119.167247,26.549407],[119.159398,26.541266],[119.14838,26.543694],[119.141311,26.537933],[119.135022,26.542409],[119.115912,26.538885],[119.1125,26.55074],[119.101628,26.559213],[119.100312,26.575016],[119.090415,26.565973],[119.072134,26.56721],[119.063213,26.570875],[119.065406,26.579395],[119.07696,26.586296],[119.074084,26.59272],[119.057801,26.603665],[119.051317,26.597194],[119.028453,26.598431],[119.026259,26.587724],[119.015729,26.58977],[119.013974,26.573493],[119.006125,26.555738],[118.99384,26.553644],[119.00164,26.54536],[118.995108,26.528791],[118.983944,26.5336],[118.968197,26.532458],[118.953816,26.525554],[118.948307,26.510506],[118.940702,26.503219],[118.939824,26.493456],[118.950988,26.491646],[118.954206,26.482881],[118.950257,26.469496],[118.938313,26.465637],[118.926272,26.477594],[118.906528,26.477975],[118.872109,26.466494],[118.868599,26.456299],[118.860214,26.453392],[118.854803,26.439526],[118.827551,26.426374],[118.810342,26.432378],[118.811122,26.448056],[118.797521,26.460348],[118.804736,26.468305],[118.805321,26.4825],[118.796838,26.490026],[118.783822,26.493218],[118.782847,26.505648],[118.762274,26.511554],[118.748185,26.510792],[118.746917,26.50241],[118.754913,26.48512],[118.735656,26.470544],[118.73551,26.448151],[118.731171,26.43843],[118.762274,26.420941],[118.753304,26.398539],[118.766271,26.392675],[118.779922,26.373271],[118.798935,26.36054],[118.794157,26.340463],[118.773487,26.328635],[118.75345,26.334263],[118.751988,26.338651],[118.720543,26.340368],[118.711476,26.326679],[118.691829,26.311033],[118.690708,26.297913],[118.696607,26.291472],[118.681494,26.291806],[118.683395,26.286987],[118.666479,26.275344],[118.67306,26.251768],[118.668672,26.243416],[118.663261,26.227901],[118.651025,26.224751],[118.631378,26.23468],[118.611634,26.235587],[118.598764,26.22709],[118.612414,26.210284],[118.609733,26.204937],[118.60008,26.210093],[118.587356,26.209377],[118.578483,26.204029],[118.57434,26.185501],[118.579702,26.175902],[118.568002,26.176379],[118.564541,26.168499],[118.564882,26.138117],[118.572975,26.128848],[118.586771,26.132384],[118.581799,26.114227],[118.5837,26.098504],[118.588867,26.094107],[118.592329,26.076518],[118.601738,26.076518],[118.593596,26.061699],[118.600958,26.055245],[118.591939,26.052232],[118.577557,26.062177],[118.552792,26.057922],[118.516375,26.059308],[118.52242,26.042096],[118.515936,26.025168],[118.519056,25.986474],[118.513889,25.976667],[118.519983,25.969347],[118.515546,25.961691],[118.520568,25.957002],[118.514425,25.933553],[118.519592,25.924603],[118.507746,25.901531],[118.518325,25.887647],[118.512572,25.885493],[118.507259,25.896122],[118.485223,25.900095],[118.480251,25.90359],[118.471085,25.898563],[118.476887,25.882046],[118.476448,25.87132],[118.459824,25.865813],[118.463432,25.895786],[118.43618,25.918477],[118.432524,25.917615],[118.417411,25.899185],[118.418483,25.892387],[118.409806,25.889419],[118.406247,25.878455],[118.41239,25.875582],[118.421213,25.854607],[118.405028,25.843161],[118.397131,25.845843],[118.392743,25.82539],[118.382115,25.814132],[118.391914,25.809964],[118.397959,25.801005],[118.414632,25.789744],[118.417996,25.769186],[118.425016,25.761374],[118.430915,25.730552],[118.448514,25.718134],[118.454364,25.720723],[118.46855,25.71075],[118.479958,25.707106],[118.492438,25.688739],[118.510232,25.674974],[118.523736,25.659097],[118.540068,25.661592],[118.54348,25.671521],[118.566491,25.681114],[118.571853,25.674015],[118.577801,25.677325],[118.576241,25.687013],[118.583846,25.677804],[118.587746,25.689986],[118.598569,25.683368],[118.604906,25.685142],[118.605053,25.697084],[118.611975,25.699098],[118.610123,25.708496],[118.625479,25.697419],[118.631866,25.697995],[118.634937,25.708496],[118.653657,25.711757],[118.668234,25.708544],[118.676521,25.7014],[118.674425,25.694926],[118.691098,25.695022],[118.691634,25.689794],[118.707186,25.682888],[118.726296,25.694734],[118.727612,25.687157],[118.723322,25.669794],[118.729952,25.668163],[118.73785,25.678188],[118.744724,25.679147],[118.753596,25.696221],[118.760421,25.689123],[118.772414,25.686389],[118.798983,25.699961],[118.806491,25.709551],[118.801226,25.711709],[118.811902,25.720819],[118.82643,25.719812],[118.83891,25.70888],[118.853682,25.703845],[118.877862,25.708832],[118.874449,25.698331],[118.882786,25.702407],[118.905162,25.722257],[118.920324,25.726333],[118.921055,25.732086],[118.93451,25.747282],[118.942359,25.748528],[118.952597,25.760032],[118.951037,25.751979],[118.955035,25.732709],[118.951524,25.712716],[118.975461,25.732086],[119.014803,25.735489],[119.025869,25.74268],[119.041226,25.741769],[119.048782,25.747138],[119.071061,25.752698],[119.076717,25.748576],[119.088368,25.754999],[119.090562,25.749631],[119.105772,25.754472],[119.132877,25.752794],[119.152231,25.744741],[119.146771,25.731558],[119.124346,25.713723],[119.144139,25.709887],[119.151646,25.700297],[119.141604,25.697132],[119.144285,25.684855],[119.154718,25.675598],[119.145553,25.676269],[119.144236,25.668451],[119.133316,25.646337],[119.133999,25.633383],[119.151451,25.6187],[119.155205,25.603055],[119.162372,25.600703],[119.161689,25.591392],[119.169099,25.593216],[119.170708,25.581888],[119.163639,25.587216],[119.157009,25.584192],[119.166662,25.574304],[119.168807,25.566335],[119.180702,25.555101],[119.20186,25.5515],[119.203907,25.54497],[119.227746,25.564607],[119.23501,25.542713],[119.24437,25.527923],[119.243005,25.513659],[119.230818,25.503861],[119.223798,25.48969],[119.209416,25.492621],[119.212682,25.472011],[119.219751,25.468648],[119.256119,25.488922],[119.256119,25.479218],[119.272646,25.477824],[119.261482,25.451302],[119.263188,25.427898],[119.288002,25.410978],[119.35367,25.411844],[119.354547,25.443709],[119.343627,25.47254],[119.350208,25.50535],[119.357034,25.520719],[119.397399,25.506311],[119.401202,25.49363],[119.424651,25.488009],[119.435571,25.499538],[119.452926,25.493726],[119.442786,25.47254],[119.441275,25.459423],[119.44732,25.450773],[119.430257,25.435732],[119.438399,25.427369],[119.438642,25.412661],[119.4442,25.411747],[119.447856,25.425542],[119.456631,25.435059],[119.462482,25.447938],[119.490074,25.446833],[119.485931,25.422418],[119.507235,25.396316],[119.505382,25.389153],[119.491196,25.377084],[119.485736,25.367275],[119.496656,25.358812],[119.5008,25.36641],[119.519959,25.376892],[119.53395,25.372516],[119.531708,25.360639],[119.548527,25.366073],[119.552134,25.38045],[119.564858,25.385258],[119.568222,25.393864],[119.578898,25.400787],[119.572512,25.414343],[119.555352,25.429147],[119.559886,25.445728],[119.573,25.450293],[119.584115,25.425975],[119.581043,25.413526],[119.590404,25.398191],[119.58275,25.379921],[119.584261,25.370112],[119.596449,25.352944],[119.588795,25.345778],[119.597375,25.334668],[119.612,25.340969],[119.636034,25.33866],[119.6491,25.342941],[119.658508,25.354002],[119.657046,25.363284],[119.643152,25.355926],[119.630672,25.358667],[119.644956,25.362899],[119.654316,25.36992],[119.660215,25.366025],[119.665236,25.372084],[119.656461,25.396989],[119.65807,25.407806],[119.668356,25.40795],[119.672402,25.418958],[119.670111,25.435491],[119.656802,25.438519],[119.657143,25.428378],[119.646272,25.434194],[119.640081,25.429291],[119.62292,25.434049],[119.641104,25.44443],[119.648905,25.461681],[119.674986,25.468119],[119.680398,25.46072],[119.687564,25.4612],[119.68108,25.450341],[119.685516,25.440105],[119.703115,25.440489],[119.703018,25.433521],[119.718569,25.419727],[119.738606,25.416362],[119.756693,25.396268],[119.772537,25.395066],[119.783554,25.411507],[119.762348,25.417516],[119.764249,25.433377],[119.77512,25.437414],[119.803737,25.457597],[119.813828,25.458125],[119.826504,25.465285],[119.83991,25.46269],[119.845224,25.452792],[119.855072,25.450773],[119.866577,25.454954],[119.859459,25.461921],[119.863896,25.479746],[119.851464,25.47744],[119.843079,25.483686],[119.833085,25.481716],[119.829965,25.490171],[119.81612,25.493774],[119.811001,25.507127],[119.81456,25.529411],[119.821239,25.534886],[119.844054,25.544009],[119.854145,25.533493],[119.870867,25.53575],[119.887296,25.552412],[119.890367,25.565663],[119.884663,25.569695],[119.871891,25.56379],[119.845614,25.569743],[119.831427,25.580016],[119.841665,25.592064],[119.84069,25.601279],[119.808905,25.61846],[119.787991,25.615293],[119.780385,25.62369],[119.779264,25.637221],[119.791891,25.653868],[119.791403,25.665381],[119.784529,25.667492],[119.749575,25.646193],[119.727881,25.63842],[119.719447,25.622442],[119.712476,25.623738],[119.700288,25.616396],[119.692732,25.601999],[119.683761,25.595904],[119.692293,25.577424],[119.708283,25.571136],[119.717789,25.547466],[119.713353,25.536182],[119.714328,25.521055],[119.723932,25.517549],[119.718716,25.511594],[119.706723,25.513755],[119.696534,25.510777],[119.691756,25.501603],[119.676059,25.49142],[119.678935,25.483734],[119.674986,25.47499],[119.654121,25.470282],[119.652658,25.485655],[119.644029,25.485607],[119.634426,25.475182],[119.62448,25.473837],[119.627259,25.488874],[119.613901,25.504822],[119.612585,25.522304],[119.6198,25.537239],[119.616437,25.556781],[119.600349,25.576944],[119.602933,25.58592],[119.59679,25.593312],[119.586699,25.592112],[119.570757,25.582224],[119.534779,25.585344],[119.533706,25.594032],[119.542433,25.602527],[119.540239,25.628728],[119.532488,25.630648],[119.525711,25.624266],[119.510891,25.627721],[119.503822,25.624458],[119.49339,25.632375],[119.478326,25.631463],[119.473012,25.662311],[119.489294,25.667972],[119.490269,25.673536],[119.526638,25.683032],[119.5437,25.684423],[119.583335,25.679147],[119.602981,25.685286],[119.612049,25.703557],[119.602981,25.71473],[119.612195,25.727052],[119.626479,25.723312],[119.637594,25.749583],[119.636619,25.760847],[119.6276,25.768275],[119.625699,25.804742],[119.628478,25.872038],[119.634816,25.887121],[119.643054,25.892244],[119.68888,25.898084],[119.695169,25.904404],[119.702482,25.931591],[119.715206,25.96327],[119.722031,25.990349],[119.72364,26.011538],[119.715352,26.025455],[119.70019,26.032485],[119.675766,26.02579],[119.667137,26.028946],[119.659045,26.072264],[119.654413,26.090093],[119.644614,26.090475],[119.641933,26.108923],[119.632914,26.115565],[119.618728,26.11977],[119.611074,26.145713],[119.603664,26.153118],[119.605321,26.169741],[119.626479,26.179532],[119.643542,26.195769],[119.664456,26.202024],[119.668112,26.220311],[119.679764,26.22919],[119.67991,26.238499],[119.671525,26.247282],[119.669087,26.256971],[119.676254,26.26308],[119.72403,26.26957],[119.771318,26.285222],[119.781117,26.282788],[119.797692,26.268234],[119.814657,26.280307],[119.818411,26.293763],[119.803737,26.298963],[119.80676,26.307694],[119.845126,26.322768],[119.86097,26.315851],[119.862579,26.307598],[119.876863,26.310031],[119.898557,26.3086],[119.909916,26.310413],[119.913573,26.320574],[119.93434,26.334788],[119.954474,26.35272],[119.962372,26.373462],[119.940776,26.37289],[119.913231,26.360874],[119.893731,26.355867],[119.876571,26.359634],[119.880861,26.372842],[119.861458,26.391054],[119.861117,26.398634],[119.835669,26.437716],[119.837668,26.450057],[119.818557,26.504505],[119.799983,26.546836]]],[[[120.495608,26.371936],[120.486736,26.36898],[120.484834,26.380804],[120.478155,26.381138],[120.47289,26.36755],[120.480544,26.37289],[120.486931,26.365452],[120.484981,26.355438],[120.4979,26.352338],[120.506772,26.364546],[120.513939,26.360349],[120.511257,26.370601],[120.501068,26.376799],[120.495608,26.371936]]],[[[119.899825,25.582128],[119.907479,25.58952],[119.906504,25.600991],[119.897485,25.606942],[119.896217,25.601087],[119.882518,25.59864],[119.875937,25.606174],[119.876619,25.587168],[119.88403,25.588032],[119.899825,25.582128]]],[[[119.579873,25.627145],[119.587722,25.636597],[119.60108,25.641011],[119.61005,25.653868],[119.613219,25.668499],[119.598399,25.662024],[119.580848,25.649935],[119.572463,25.63391],[119.567881,25.646145],[119.560714,25.635014],[119.579873,25.627145]]],[[[120.006297,26.215202],[120.01629,26.208518],[120.020142,26.225658],[120.000885,26.23616],[119.988064,26.224369],[119.97066,26.217207],[119.969587,26.191136],[119.978362,26.193476],[119.980654,26.208374],[120.006297,26.215202]]],[[[119.967491,25.945374],[119.979337,25.951786],[119.992988,25.964658],[119.976461,25.964754],[119.968368,25.955662],[119.967491,25.945374]]],[[[119.705065,25.352848],[119.726711,25.356551],[119.735925,25.362514],[119.727296,25.368525],[119.724468,25.378671],[119.716571,25.371651],[119.697802,25.367035],[119.705065,25.352848]]],[[[119.69434,25.30388],[119.696339,25.310904],[119.712183,25.314464],[119.699215,25.327789],[119.705358,25.333658],[119.70292,25.342075],[119.693804,25.337121],[119.687174,25.325336],[119.690976,25.315426],[119.688051,25.30667],[119.69434,25.30388]]],[[[119.929465,26.134295],[119.936632,26.140124],[119.944968,26.139168],[119.955937,26.148866],[119.960032,26.147194],[119.970075,26.162767],[119.950769,26.163722],[119.945699,26.156127],[119.928832,26.160331],[119.933024,26.168833],[119.918253,26.169597],[119.918886,26.15436],[119.913036,26.140219],[119.929465,26.134295]]],[[[119.642908,26.129326],[119.65495,26.132623],[119.65339,26.144232],[119.657192,26.152115],[119.642908,26.157178],[119.627259,26.173132],[119.607125,26.169693],[119.605419,26.154838],[119.61863,26.139025],[119.642421,26.133817],[119.642908,26.129326]]],[[[119.88403,26.410979],[119.892853,26.41484],[119.885882,26.419892],[119.88403,26.410979]]],[[[119.474035,25.331349],[119.488124,25.329665],[119.485931,25.337217],[119.489197,25.351357],[119.471598,25.345201],[119.465797,25.333802],[119.474035,25.331349]]],[[[119.66236,25.646576],[119.662116,25.641155],[119.673572,25.632567],[119.697997,25.636357],[119.702725,25.640148],[119.712963,25.634198],[119.721933,25.639812],[119.716863,25.664758],[119.705943,25.656411],[119.682591,25.650031],[119.675571,25.658714],[119.66236,25.646576]]],[[[119.67328,25.756725],[119.683128,25.762668],[119.672402,25.765927],[119.67328,25.756725]]],[[[119.676156,26.124405],[119.684151,26.140936],[119.675571,26.142513],[119.662214,26.133865],[119.677278,26.113319],[119.676156,26.124405]]],[[[119.757326,25.298491],[119.764444,25.28959],[119.767564,25.298828],[119.757326,25.298491]]],[[[119.915815,26.418176],[119.90704,26.406976],[119.918886,26.409359],[119.915815,26.418176]]],[[[119.999228,26.239692],[120.011269,26.24752],[120.002592,26.246661],[119.999228,26.239692]]],[[[119.937119,25.963797],[119.953256,25.976236],[119.949063,25.979681],[119.930197,25.978628],[119.928783,25.97217],[119.937119,25.963797]]],[[[119.639593,25.672001],[119.641348,25.66754],[119.65963,25.680106],[119.643542,25.677181],[119.639593,25.672001]]],[[[119.390379,25.435107],[119.399008,25.436597],[119.396473,25.443517],[119.390379,25.435107]]],[[[119.636522,26.114705],[119.644371,26.109114],[119.647978,26.118145],[119.636571,26.119913],[119.636522,26.114705]]],[[[119.987138,26.262555],[119.994986,26.265943],[119.993865,26.28045],[119.98197,26.267804],[119.987138,26.262555]]],[[[120.221483,26.331974],[120.234353,26.34156],[120.223774,26.338651],[120.221483,26.331974]]],[[[119.649295,25.66495],[119.647686,25.654828],[119.66392,25.654636],[119.672256,25.661448],[119.661238,25.67296],[119.649295,25.66495]]],[[[119.579776,25.668403],[119.582311,25.66164],[119.59094,25.674111],[119.579776,25.668403]]]]}},{"type":"Feature","properties":{"adcode":350200,"name":"厦门市","center":[118.11022,24.490474],"centroid":[118.123854,24.676398],"childrenNum":6,"level":"city","parent":{"adcode":350000},"subFeatureIndex":1,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.049001,24.418318],[118.052219,24.445064],[118.064553,24.464005],[118.084687,24.529916],[118.098386,24.54807],[118.105942,24.551749],[118.121347,24.569852],[118.1505,24.5835],[118.162005,24.572175],[118.169416,24.559252],[118.205004,24.533208],[118.242883,24.512485],[118.289928,24.522702],[118.346868,24.530545],[118.363541,24.530206],[118.375485,24.536403],[118.373486,24.547586],[118.377435,24.561575],[118.363492,24.568158],[118.373828,24.575611],[118.355546,24.575805],[118.353109,24.585097],[118.34175,24.592404],[118.341213,24.607259],[118.331512,24.598259],[118.329611,24.605324],[118.337021,24.617274],[118.34448,24.620951],[118.346966,24.630578],[118.34331,24.64214],[118.350817,24.649105],[118.352134,24.66434],[118.338727,24.673771],[118.338825,24.68204],[118.322493,24.692388],[118.322006,24.69819],[118.336533,24.718399],[118.332389,24.72942],[118.322249,24.733239],[118.316887,24.74885],[118.33512,24.752475],[118.337021,24.771032],[118.344772,24.771708],[118.338045,24.780358],[118.334876,24.774559],[118.322591,24.783837],[118.325564,24.798234],[118.312012,24.804901],[118.301238,24.826106],[118.28437,24.832482],[118.263748,24.825285],[118.252097,24.831371],[118.243224,24.824947],[118.231817,24.825961],[118.224163,24.838422],[118.22582,24.850834],[118.197106,24.86643],[118.197252,24.879998],[118.204077,24.882122],[118.194961,24.892646],[118.176923,24.893225],[118.161567,24.897618],[118.150695,24.891681],[118.137923,24.89477],[118.12554,24.888494],[118.113547,24.874735],[118.109696,24.875218],[118.085564,24.863727],[118.077764,24.854262],[118.072548,24.86194],[118.071865,24.874397],[118.06582,24.875411],[118.059141,24.86643],[118.042127,24.883087],[118.036765,24.899694],[118.015802,24.901818],[118.009074,24.892791],[117.996984,24.899839],[117.990305,24.892839],[118.004638,24.88777],[118.014486,24.879708],[118.011707,24.87517],[117.996984,24.877246],[117.991475,24.866913],[117.999032,24.859912],[117.971146,24.848081],[117.957788,24.868169],[117.947404,24.871114],[117.936436,24.86643],[117.930195,24.875508],[117.917715,24.879515],[117.913035,24.870293],[117.924735,24.864258],[117.940384,24.844652],[117.956375,24.845087],[117.962956,24.841175],[117.959153,24.823981],[117.961298,24.788137],[117.955156,24.76562],[117.947892,24.76243],[117.941018,24.742519],[117.948379,24.711727],[117.955497,24.708488],[117.965394,24.671014],[117.957788,24.66613],[117.954717,24.64925],[117.930293,24.632659],[117.920689,24.614226],[117.892365,24.611565],[117.893389,24.597775],[117.886027,24.590178],[117.91362,24.568593],[117.908453,24.555331],[117.913133,24.546666],[117.91206,24.53345],[117.931268,24.526672],[117.937508,24.513405],[117.958568,24.501251],[117.962371,24.480377],[117.956813,24.45921],[117.964077,24.444046],[117.975046,24.434889],[117.985089,24.433533],[117.992499,24.423067],[118.005515,24.418609],[118.028477,24.420547],[118.049001,24.418318]]],[[[118.204467,24.504786],[118.201591,24.525558],[118.191695,24.536839],[118.170196,24.545892],[118.155619,24.547779],[118.142554,24.561623],[118.111695,24.555282],[118.100287,24.54807],[118.089074,24.53253],[118.075717,24.494664],[118.069038,24.467735],[118.070354,24.455189],[118.088928,24.431304],[118.106186,24.424423],[118.134608,24.419675],[118.143236,24.420838],[118.156545,24.434405],[118.19891,24.468268],[118.206807,24.481491],[118.204467,24.504786]]],[[[118.378849,24.555525],[118.383724,24.551604],[118.394888,24.554411],[118.385382,24.560075],[118.378849,24.555525]]],[[[118.071329,24.43518],[118.077618,24.438717],[118.074937,24.446856],[118.061823,24.453154],[118.056509,24.445112],[118.062505,24.437263],[118.071329,24.43518]]]]}},{"type":"Feature","properties":{"adcode":350300,"name":"莆田市","center":[119.007558,25.431011],"centroid":[118.894712,25.445304],"childrenNum":5,"level":"city","parent":{"adcode":350000},"subFeatureIndex":2,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.899849,25.241366],[118.918081,25.245843],[118.915546,25.256913],[118.930074,25.255854],[118.949282,25.265288],[118.954547,25.2714],[118.9837,25.269667],[118.994669,25.27679],[119.014364,25.274432],[119.023627,25.267887],[119.017484,25.255469],[119.006369,25.255132],[118.996863,25.266298],[118.988575,25.25417],[118.983505,25.237804],[118.975071,25.237611],[118.978435,25.222832],[118.989989,25.211662],[118.989989,25.201839],[119.012463,25.204391],[119.019629,25.210603],[119.055217,25.219462],[119.064675,25.206654],[119.074425,25.211373],[119.072231,25.191293],[119.062823,25.173907],[119.054291,25.168561],[119.037765,25.174871],[119.028453,25.164515],[119.029136,25.13961],[119.035717,25.125783],[119.052049,25.116676],[119.052341,25.112532],[119.075644,25.099809],[119.08281,25.108532],[119.134291,25.106074],[119.142384,25.096725],[119.128929,25.095231],[119.107283,25.075325],[119.118008,25.058115],[119.113377,25.052234],[119.096948,25.056139],[119.089928,25.052185],[119.106064,25.04452],[119.106698,25.032996],[119.119227,25.026582],[119.119422,25.012646],[119.127807,25.012597],[119.12576,25.021085],[119.147015,25.05585],[119.140531,25.056283],[119.141799,25.0827],[119.15813,25.092243],[119.164273,25.119133],[119.165784,25.145439],[119.160909,25.150931],[119.146333,25.146692],[119.138289,25.151895],[119.143993,25.157868],[119.141896,25.169525],[119.118788,25.175738],[119.108063,25.194086],[119.11913,25.212384],[119.131756,25.223217],[119.138533,25.224661],[119.146723,25.204199],[119.182457,25.178242],[119.198984,25.176412],[119.220385,25.187248],[119.231744,25.188982],[119.261043,25.175641],[119.269331,25.159987],[119.29356,25.178387],[119.30097,25.17805],[119.31345,25.189415],[119.31345,25.19452],[119.301653,25.204536],[119.293365,25.235108],[119.313158,25.237371],[119.332073,25.23092],[119.340946,25.240933],[119.356254,25.240211],[119.378289,25.248923],[119.385065,25.275683],[119.369709,25.271544],[119.353914,25.280591],[119.335681,25.285452],[119.313499,25.30643],[119.29902,25.328848],[119.292634,25.331156],[119.267381,25.329521],[119.253584,25.33587],[119.247491,25.33361],[119.248319,25.316196],[119.24047,25.316869],[119.235839,25.331156],[119.227064,25.344865],[119.228234,25.350732],[119.218776,25.367948],[119.195278,25.368333],[119.171049,25.37593],[119.162664,25.387037],[119.151744,25.382999],[119.14487,25.387999],[119.145845,25.405114],[119.151646,25.426504],[119.168709,25.438711],[119.184797,25.427225],[119.197033,25.424629],[119.232232,25.442267],[119.236034,25.448323],[119.219751,25.468648],[119.212682,25.472011],[119.209416,25.492621],[119.223798,25.48969],[119.230818,25.503861],[119.243005,25.513659],[119.24437,25.527923],[119.23501,25.542713],[119.227746,25.564607],[119.203907,25.54497],[119.20186,25.5515],[119.180702,25.555101],[119.168807,25.566335],[119.166662,25.574304],[119.157009,25.584192],[119.163639,25.587216],[119.170708,25.581888],[119.169099,25.593216],[119.161689,25.591392],[119.162372,25.600703],[119.155205,25.603055],[119.151451,25.6187],[119.133999,25.633383],[119.133316,25.646337],[119.144236,25.668451],[119.145553,25.676269],[119.154718,25.675598],[119.144285,25.684855],[119.141604,25.697132],[119.151646,25.700297],[119.144139,25.709887],[119.124346,25.713723],[119.146771,25.731558],[119.152231,25.744741],[119.132877,25.752794],[119.105772,25.754472],[119.090562,25.749631],[119.088368,25.754999],[119.076717,25.748576],[119.071061,25.752698],[119.048782,25.747138],[119.041226,25.741769],[119.025869,25.74268],[119.014803,25.735489],[118.975461,25.732086],[118.951524,25.712716],[118.955035,25.732709],[118.951037,25.751979],[118.952597,25.760032],[118.942359,25.748528],[118.93451,25.747282],[118.921055,25.732086],[118.920324,25.726333],[118.905162,25.722257],[118.882786,25.702407],[118.874449,25.698331],[118.877862,25.708832],[118.853682,25.703845],[118.83891,25.70888],[118.82643,25.719812],[118.811902,25.720819],[118.801226,25.711709],[118.806491,25.709551],[118.798983,25.699961],[118.772414,25.686389],[118.760421,25.689123],[118.753596,25.696221],[118.744724,25.679147],[118.73785,25.678188],[118.729952,25.668163],[118.723322,25.669794],[118.727612,25.687157],[118.726296,25.694734],[118.707186,25.682888],[118.691634,25.689794],[118.691098,25.695022],[118.674425,25.694926],[118.676521,25.7014],[118.668234,25.708544],[118.653657,25.711757],[118.634937,25.708496],[118.631866,25.697995],[118.625479,25.697419],[118.610123,25.708496],[118.611975,25.699098],[118.605053,25.697084],[118.604906,25.685142],[118.598569,25.683368],[118.587746,25.689986],[118.583846,25.677804],[118.576241,25.687013],[118.577801,25.677325],[118.571853,25.674015],[118.566491,25.681114],[118.54348,25.671521],[118.540068,25.661592],[118.544845,25.656555],[118.531293,25.642403],[118.550062,25.632279],[118.545187,25.617836],[118.533096,25.60795],[118.531293,25.601711],[118.511549,25.578576],[118.509989,25.56187],[118.490098,25.549963],[118.491463,25.546794],[118.474059,25.524465],[118.464748,25.516253],[118.465674,25.494975],[118.473572,25.491324],[118.466552,25.482917],[118.479373,25.480899],[118.477326,25.468888],[118.471329,25.46663],[118.460068,25.443613],[118.469818,25.424052],[118.482152,25.425494],[118.487661,25.40396],[118.497411,25.400835],[118.494388,25.385691],[118.503261,25.384633],[118.517984,25.372084],[118.520714,25.362899],[118.52983,25.35809],[118.522518,25.347269],[118.522371,25.333994],[118.512865,25.317591],[118.520519,25.312395],[118.528221,25.325817],[118.535729,25.320766],[118.530171,25.308739],[118.533389,25.291274],[118.563517,25.290263],[118.571853,25.286703],[118.578288,25.301282],[118.59618,25.302388],[118.61568,25.293102],[118.625577,25.293487],[118.632694,25.301378],[118.655705,25.301955],[118.66643,25.289782],[118.662579,25.280062],[118.650098,25.27448],[118.646442,25.268416],[118.659605,25.25778],[118.662042,25.265721],[118.672767,25.264807],[118.680421,25.271111],[118.695778,25.258502],[118.68476,25.244687],[118.688075,25.23453],[118.683444,25.230679],[118.682371,25.212384],[118.691537,25.212192],[118.682225,25.201213],[118.673645,25.200684],[118.677838,25.191679],[118.677789,25.177761],[118.692024,25.169332],[118.691585,25.15493],[118.70465,25.157579],[118.717521,25.169428],[118.725711,25.168754],[118.741019,25.1872],[118.74487,25.185851],[118.765101,25.195001],[118.778508,25.195387],[118.776753,25.203717],[118.781872,25.213829],[118.801323,25.220714],[118.800982,25.217103],[118.827697,25.218258],[118.848709,25.224902],[118.850123,25.216573],[118.869477,25.227646],[118.869623,25.237659],[118.875473,25.241366],[118.899849,25.241366]]],[[[119.471013,25.197072],[119.508454,25.181902],[119.509429,25.170921],[119.521226,25.166635],[119.523566,25.158061],[119.554474,25.164419],[119.547747,25.18118],[119.555742,25.183155],[119.554572,25.193075],[119.570903,25.193364],[119.578411,25.204776],[119.566613,25.209977],[119.555059,25.203525],[119.545065,25.210266],[119.540483,25.20208],[119.518155,25.208003],[119.514791,25.214599],[119.506162,25.214743],[119.49924,25.221773],[119.499435,25.240307],[119.488466,25.247046],[119.479008,25.243532],[119.479008,25.257732],[119.471452,25.25956],[119.467698,25.246324],[119.451708,25.242329],[119.453901,25.236552],[119.439179,25.236841],[119.446589,25.222495],[119.440982,25.211614],[119.444102,25.20208],[119.471013,25.197072]]],[[[119.58002,25.263892],[119.577533,25.26986],[119.570903,25.259272],[119.58002,25.263892]]],[[[119.371805,25.114893],[119.377899,25.120241],[119.369563,25.128866],[119.366784,25.118073],[119.371805,25.114893]]],[[[119.517131,25.264758],[119.530489,25.265769],[119.525419,25.278522],[119.518642,25.279244],[119.512305,25.266924],[119.517131,25.264758]]],[[[119.048344,25.101496],[119.049611,25.094749],[119.05824,25.102604],[119.048344,25.101496]]],[[[119.59211,25.187344],[119.602201,25.187633],[119.595181,25.194761],[119.59211,25.187344]]],[[[119.342165,25.311962],[119.34938,25.318698],[119.345236,25.323845],[119.338021,25.316437],[119.342165,25.311962]]],[[[119.57885,25.248538],[119.587527,25.241318],[119.584895,25.250945],[119.57885,25.248538]]],[[[119.018118,25.17333],[119.027039,25.171451],[119.036205,25.184262],[119.032597,25.189415],[119.015486,25.182336],[119.018118,25.17333]]],[[[119.368149,25.326539],[119.37707,25.327453],[119.362835,25.334283],[119.368149,25.326539]]],[[[119.461116,24.982307],[119.459508,24.992196],[119.449855,24.994752],[119.461116,24.982307]]]]}},{"type":"Feature","properties":{"adcode":350400,"name":"三明市","center":[117.635001,26.265444],"centroid":[117.400007,26.298093],"childrenNum":11,"level":"city","parent":{"adcode":350000},"subFeatureIndex":3,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.71813,25.511978],[117.733779,25.514139],[117.731682,25.509385],[117.742944,25.505206],[117.752694,25.507703],[117.762444,25.497665],[117.769562,25.499442],[117.786478,25.481956],[117.798032,25.478017],[117.789111,25.493341],[117.789159,25.510057],[117.804516,25.508952],[117.820165,25.517069],[117.829135,25.50924],[117.840494,25.491852],[117.85312,25.488393],[117.864187,25.495743],[117.882517,25.498865],[117.892901,25.497424],[117.93195,25.511018],[117.941993,25.524129],[117.962566,25.528835],[117.980945,25.516349],[117.980214,25.531044],[117.994303,25.537431],[118.002152,25.549723],[118.030086,25.568639],[118.035058,25.5792],[118.033693,25.588128],[118.039495,25.59216],[118.043249,25.604783],[118.042907,25.619851],[118.038032,25.628249],[118.025552,25.628584],[118.019458,25.621387],[118.003565,25.616876],[117.993328,25.620283],[117.990646,25.613565],[117.985625,25.625897],[117.976655,25.629448],[117.967734,25.644418],[117.956472,25.640627],[117.953352,25.655739],[117.942042,25.65147],[117.937411,25.658426],[117.949745,25.668259],[117.946722,25.674639],[117.959738,25.672145],[117.968904,25.68097],[118.000104,25.685814],[118.006003,25.691857],[118.015168,25.718949],[118.009464,25.724223],[118.002932,25.715018],[117.98972,25.731271],[117.976362,25.760463],[117.983236,25.759553],[117.987673,25.771055],[117.998739,25.766694],[118.006198,25.769617],[118.011073,25.795638],[118.007368,25.797076],[118.011512,25.813701],[118.02643,25.831378],[118.030086,25.823378],[118.033303,25.835066],[118.018971,25.845076],[118.015412,25.857002],[118.031402,25.864041],[118.038812,25.856235],[118.049489,25.858343],[118.063773,25.848237],[118.085272,25.865143],[118.076935,25.876922],[118.078057,25.8842],[118.096631,25.886498],[118.104431,25.891765],[118.129781,25.899999],[118.148014,25.900239],[118.156399,25.907898],[118.177508,25.900143],[118.18019,25.884152],[118.19696,25.88511],[118.209001,25.898324],[118.215534,25.897893],[118.232938,25.883769],[118.246832,25.890855],[118.248148,25.896169],[118.267746,25.898707],[118.272718,25.903877],[118.266332,25.916514],[118.275497,25.929773],[118.285345,25.930825],[118.295924,25.922593],[118.308745,25.929533],[118.318008,25.913547],[118.336533,25.916754],[118.344675,25.935468],[118.350281,25.936999],[118.36008,25.929533],[118.36125,25.91795],[118.366564,25.914217],[118.369635,25.896361],[118.396107,25.899904],[118.409806,25.889419],[118.418483,25.892387],[118.417411,25.899185],[118.432524,25.917615],[118.43618,25.918477],[118.463432,25.895786],[118.459824,25.865813],[118.476448,25.87132],[118.476887,25.882046],[118.471085,25.898563],[118.480251,25.90359],[118.485223,25.900095],[118.507259,25.896122],[118.512572,25.885493],[118.518325,25.887647],[118.507746,25.901531],[118.519592,25.924603],[118.514425,25.933553],[118.520568,25.957002],[118.515546,25.961691],[118.519983,25.969347],[118.513889,25.976667],[118.519056,25.986474],[118.515936,26.025168],[118.52242,26.042096],[118.516375,26.059308],[118.552792,26.057922],[118.577557,26.062177],[118.591939,26.052232],[118.600958,26.055245],[118.593596,26.061699],[118.601738,26.076518],[118.592329,26.076518],[118.588867,26.094107],[118.5837,26.098504],[118.581799,26.114227],[118.586771,26.132384],[118.572975,26.128848],[118.564882,26.138117],[118.564541,26.168499],[118.568002,26.176379],[118.579702,26.175902],[118.57434,26.185501],[118.578483,26.204029],[118.587356,26.209377],[118.60008,26.210093],[118.609733,26.204937],[118.612414,26.210284],[118.598764,26.22709],[118.611634,26.235587],[118.631378,26.23468],[118.651025,26.224751],[118.663261,26.227901],[118.668672,26.243416],[118.655851,26.26265],[118.641859,26.263987],[118.633913,26.272004],[118.630452,26.288705],[118.615242,26.288228],[118.607929,26.304211],[118.599349,26.304545],[118.590769,26.316471],[118.592329,26.323817],[118.561811,26.325487],[118.563809,26.336219],[118.555912,26.341846],[118.54231,26.342371],[118.538167,26.337077],[118.526369,26.336075],[118.518325,26.351909],[118.501165,26.364927],[118.494925,26.364212],[118.46816,26.345662],[118.454266,26.338794],[118.450756,26.349334],[118.436814,26.355772],[118.427892,26.369552],[118.427015,26.379946],[118.436911,26.392675],[118.448806,26.382568],[118.454364,26.386573],[118.45373,26.403162],[118.443493,26.395011],[118.419897,26.398014],[118.408977,26.394153],[118.393425,26.394153],[118.371536,26.409502],[118.36242,26.400493],[118.349891,26.405117],[118.344967,26.416127],[118.341993,26.409311],[118.327856,26.407405],[118.323029,26.419559],[118.332633,26.425992],[118.333218,26.438049],[118.323322,26.430043],[118.310842,26.43133],[118.306795,26.437906],[118.297338,26.431664],[118.299921,26.419845],[118.289733,26.414602],[118.279544,26.422513],[118.26994,26.422561],[118.259653,26.409502],[118.262871,26.399635],[118.254144,26.394201],[118.240787,26.396012],[118.243614,26.403496],[118.224943,26.40974],[118.215095,26.404592],[118.216509,26.394963],[118.202664,26.38562],[118.18994,26.381329],[118.181408,26.388861],[118.167856,26.38724],[118.167417,26.380042],[118.153962,26.379517],[118.13607,26.365738],[118.131585,26.377658],[118.114035,26.379517],[118.113303,26.394248],[118.091707,26.395774],[118.08727,26.406404],[118.089659,26.415746],[118.08298,26.424181],[118.067039,26.427279],[118.059336,26.439479],[118.065528,26.453583],[118.057776,26.46092],[118.057679,26.4694],[118.045491,26.473259],[118.03735,26.464541],[118.029891,26.477975],[118.038471,26.488502],[118.033791,26.497647],[118.04476,26.506172],[118.037935,26.512458],[118.021164,26.507982],[118.003419,26.511315],[118.006393,26.529363],[117.993133,26.540123],[117.994741,26.551549],[118.011122,26.56959],[117.994985,26.577634],[117.9788,26.578491],[117.982164,26.567829],[117.97685,26.562783],[117.970415,26.567924],[117.950427,26.563545],[117.940287,26.574064],[117.922834,26.559499],[117.901579,26.563926],[117.899482,26.571208],[117.88437,26.564402],[117.878325,26.557166],[117.872475,26.581203],[117.862481,26.582584],[117.865796,26.597336],[117.856533,26.601334],[117.85351,26.620509],[117.868672,26.622554],[117.870573,26.631498],[117.85507,26.640299],[117.858483,26.653903],[117.848099,26.660038],[117.858678,26.674876],[117.853998,26.679631],[117.839421,26.67616],[117.826551,26.667505],[117.818605,26.671785],[117.813974,26.667457],[117.803443,26.671119],[117.791889,26.666459],[117.778824,26.666744],[117.769025,26.655472],[117.759568,26.661132],[117.744455,26.658611],[117.727343,26.663415],[117.701652,26.652999],[117.695753,26.641012],[117.683126,26.643914],[117.678788,26.636731],[117.667575,26.634733],[117.662797,26.646292],[117.668891,26.657089],[117.645003,26.656138],[117.640713,26.674733],[117.604101,26.686574],[117.605856,26.698128],[117.593522,26.70293],[117.60103,26.708825],[117.612292,26.727696],[117.624235,26.72589],[117.629988,26.735872],[117.645881,26.741813],[117.653193,26.753646],[117.656119,26.767616],[117.671475,26.783866],[117.666161,26.791182],[117.670646,26.804767],[117.65256,26.819729],[117.642176,26.836208],[117.634619,26.841004],[117.630573,26.858382],[117.619799,26.872102],[117.612877,26.872767],[117.601908,26.885536],[117.589379,26.892988],[117.579092,26.92317],[117.562322,26.923265],[117.551353,26.93043],[117.544284,26.922648],[117.524589,26.925543],[117.514546,26.919706],[117.505332,26.926729],[117.50387,26.943667],[117.50816,26.952301],[117.531706,26.960128],[117.534875,26.983226],[117.546234,26.9929],[117.533998,26.995224],[117.52961,27.003854],[117.523565,27.00191],[117.512547,27.008975],[117.485344,27.008975],[117.485198,27.022582],[117.478227,27.013669],[117.46521,27.010113],[117.458142,27.003285],[117.451658,27.005087],[117.450731,27.019026],[117.444296,27.022866],[117.447806,27.029835],[117.445223,27.042586],[117.43596,27.046521],[117.426015,27.044056],[117.438397,27.058369],[117.43908,27.064957],[117.405734,27.052493],[117.395497,27.067469],[117.382724,27.069411],[117.383455,27.099499],[117.365808,27.101536],[117.34777,27.096325],[117.329439,27.107174],[117.325052,27.113664],[117.301749,27.119916],[117.286636,27.129152],[117.276252,27.126311],[117.272547,27.113948],[117.288294,27.112053],[117.289659,27.100968],[117.280591,27.090687],[117.285418,27.075856],[117.282005,27.057848],[117.276447,27.057801],[117.260896,27.046947],[117.255241,27.034907],[117.244077,27.033485],[117.242371,27.041449],[117.225259,27.050075],[117.200104,27.058986],[117.190597,27.071023],[117.180165,27.093198],[117.160957,27.110253],[117.149452,27.107458],[117.139604,27.098931],[117.122297,27.09334],[117.102505,27.107269],[117.096557,27.107269],[117.086661,27.094146],[117.072962,27.097651],[117.063991,27.109779],[117.053217,27.101442],[117.032401,27.089739],[117.000177,27.080121],[116.967562,27.061782],[116.946795,27.037989],[116.936362,27.019311],[116.927684,27.031352],[116.910085,27.034576],[116.894339,27.032679],[116.880152,27.026564],[116.860944,27.011488],[116.85134,27.009354],[116.817702,27.018505],[116.782261,27.009591],[116.765003,27.000393],[116.7573,26.984364],[116.734095,26.993754],[116.704893,26.990909],[116.679299,26.978484],[116.659262,26.962215],[116.632986,26.933988],[116.602126,26.888716],[116.568976,26.858952],[116.557373,26.85183],[116.548647,26.840007],[116.544162,26.820441],[116.543674,26.803912],[116.547721,26.791134],[116.557909,26.773983],[116.558641,26.766809],[116.550207,26.751317],[116.537824,26.737107],[116.515106,26.720994],[116.511986,26.708254],[116.519884,26.684767],[116.545039,26.659658],[116.550548,26.651192],[116.566051,26.650145],[116.568781,26.642202],[116.561907,26.620651],[116.558982,26.596242],[116.553229,26.575778],[116.540944,26.568115],[116.540895,26.556357],[116.56259,26.544694],[116.579604,26.531601],[116.578775,26.521649],[116.586916,26.519982],[116.598763,26.510458],[116.589012,26.49798],[116.6012,26.490455],[116.597446,26.485358],[116.610755,26.476975],[116.638105,26.479499],[116.63713,26.466113],[116.630109,26.459634],[116.627964,26.445483],[116.610658,26.433284],[116.604174,26.415793],[116.604418,26.405784],[116.61056,26.39401],[116.608952,26.383808],[116.601395,26.372938],[116.584235,26.366119],[116.571072,26.370983],[116.553717,26.365404],[116.559226,26.38562],[116.553619,26.400255],[116.545186,26.397251],[116.534558,26.400779],[116.533437,26.408835],[116.519396,26.41036],[116.512181,26.402257],[116.511109,26.39115],[116.498287,26.387097],[116.494533,26.369028],[116.499799,26.361399],[116.459287,26.345137],[116.453827,26.331592],[116.438714,26.321385],[116.437105,26.308218],[116.427257,26.300251],[116.413071,26.298057],[116.422041,26.29152],[116.41819,26.279257],[116.401761,26.274867],[116.391669,26.256589],[116.395618,26.244561],[116.385429,26.238165],[116.393132,26.217446],[116.390451,26.210093],[116.400054,26.203791],[116.399372,26.189943],[116.392498,26.170314],[116.41507,26.159806],[116.435935,26.160044],[116.453632,26.166111],[116.463382,26.175424],[116.471474,26.175185],[116.482102,26.16014],[116.481907,26.137974],[116.489463,26.128753],[116.489268,26.113701],[116.477178,26.10271],[116.458409,26.091909],[116.44354,26.078908],[116.421749,26.065667],[116.418238,26.054575],[116.401322,26.04616],[116.400103,26.033059],[116.419506,26.021295],[116.439201,26.01589],[116.466355,26.01326],[116.474399,26.009673],[116.480493,25.998959],[116.481468,25.974849],[116.495508,25.966285],[116.538555,25.996806],[116.553132,25.990062],[116.581602,25.980972],[116.593546,25.991545],[116.611243,25.984321],[116.625429,25.99298],[116.629476,26.013786],[116.652925,25.999389],[116.644735,25.980016],[116.644978,25.969012],[116.650682,25.961117],[116.649707,25.942742],[116.666965,25.939249],[116.67418,25.931065],[116.683443,25.929868],[116.689537,25.919434],[116.707574,25.916562],[116.719811,25.90651],[116.737215,25.899712],[116.743601,25.889754],[116.748086,25.85408],[116.756033,25.84795],[116.778946,25.859636],[116.794107,25.856331],[116.781042,25.832048],[116.778214,25.818539],[116.783089,25.811785],[116.820237,25.783898],[116.837788,25.787397],[116.865186,25.796884],[116.875131,25.818204],[116.885222,25.824192],[116.892681,25.837125],[116.904674,25.849914],[116.924174,25.855948],[116.949086,25.846753],[116.952791,25.842107],[116.971267,25.846561],[116.986283,25.85432],[117.008318,25.857768],[117.024016,25.853122],[117.036106,25.811114],[117.056338,25.786151],[117.05702,25.766742],[117.06443,25.7573],[117.058239,25.747282],[117.065113,25.736448],[117.048342,25.725661],[117.055021,25.715641],[117.060969,25.721011],[117.068525,25.708448],[117.067648,25.692816],[117.057995,25.685958],[117.071743,25.684279],[117.080323,25.668307],[117.071889,25.668307],[117.081737,25.652573],[117.104747,25.657322],[117.132681,25.650175],[117.140043,25.642163],[117.141993,25.630648],[117.158958,25.612797],[117.168416,25.59624],[117.165783,25.570655],[117.183382,25.575216],[117.197179,25.559326],[117.21234,25.570271],[117.198495,25.570559],[117.209561,25.588848],[117.215948,25.591248],[117.220823,25.603487],[117.234424,25.618268],[117.237934,25.634054],[117.253924,25.642834],[117.283516,25.665093],[117.285661,25.677469],[117.274497,25.687348],[117.254802,25.683224],[117.248611,25.687061],[117.265917,25.715353],[117.266697,25.724942],[117.284589,25.737407],[117.306868,25.740571],[117.333437,25.753274],[117.346015,25.756437],[117.348501,25.780256],[117.354302,25.785863],[117.375801,25.782413],[117.383017,25.752938],[117.376679,25.747761],[117.382773,25.727052],[117.391255,25.721155],[117.391694,25.735394],[117.396228,25.733716],[117.401786,25.690418],[117.38989,25.667732],[117.392182,25.658714],[117.406417,25.658858],[117.435765,25.665669],[117.440738,25.669458],[117.456972,25.71262],[117.470281,25.720148],[117.472767,25.727339],[117.459263,25.731702],[117.461749,25.735777],[117.48788,25.739325],[117.489927,25.732997],[117.502602,25.735537],[117.493973,25.722593],[117.497581,25.708496],[117.506941,25.702886],[117.518641,25.717463],[117.536045,25.725134],[117.541749,25.722497],[117.549062,25.70466],[117.559641,25.697947],[117.580847,25.69411],[117.594351,25.673967],[117.58777,25.66658],[117.601176,25.649455],[117.611414,25.650558],[117.635253,25.666389],[117.646076,25.670706],[117.662115,25.664278],[117.676301,25.63842],[117.695655,25.623738],[117.718471,25.590528],[117.748258,25.596288],[117.745089,25.570079],[117.725783,25.547611],[117.705162,25.559806],[117.697703,25.555869],[117.688928,25.535078],[117.688392,25.518702],[117.691902,25.510681],[117.702188,25.517309],[117.71813,25.511978]]]]}},{"type":"Feature","properties":{"adcode":350500,"name":"泉州市","center":[118.589421,24.908853],"centroid":[118.267651,25.202187],"childrenNum":12,"level":"city","parent":{"adcode":350000},"subFeatureIndex":4,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.899849,25.241366],[118.875473,25.241366],[118.869623,25.237659],[118.869477,25.227646],[118.850123,25.216573],[118.848709,25.224902],[118.827697,25.218258],[118.800982,25.217103],[118.801323,25.220714],[118.781872,25.213829],[118.776753,25.203717],[118.778508,25.195387],[118.765101,25.195001],[118.74487,25.185851],[118.741019,25.1872],[118.725711,25.168754],[118.717521,25.169428],[118.70465,25.157579],[118.691585,25.15493],[118.692024,25.169332],[118.677789,25.177761],[118.677838,25.191679],[118.673645,25.200684],[118.682225,25.201213],[118.691537,25.212192],[118.682371,25.212384],[118.683444,25.230679],[118.688075,25.23453],[118.68476,25.244687],[118.695778,25.258502],[118.680421,25.271111],[118.672767,25.264807],[118.662042,25.265721],[118.659605,25.25778],[118.646442,25.268416],[118.650098,25.27448],[118.662579,25.280062],[118.66643,25.289782],[118.655705,25.301955],[118.632694,25.301378],[118.625577,25.293487],[118.61568,25.293102],[118.59618,25.302388],[118.578288,25.301282],[118.571853,25.286703],[118.563517,25.290263],[118.533389,25.291274],[118.530171,25.308739],[118.535729,25.320766],[118.528221,25.325817],[118.520519,25.312395],[118.512865,25.317591],[118.522371,25.333994],[118.522518,25.347269],[118.52983,25.35809],[118.520714,25.362899],[118.517984,25.372084],[118.503261,25.384633],[118.494388,25.385691],[118.497411,25.400835],[118.487661,25.40396],[118.482152,25.425494],[118.469818,25.424052],[118.460068,25.443613],[118.471329,25.46663],[118.477326,25.468888],[118.479373,25.480899],[118.466552,25.482917],[118.473572,25.491324],[118.465674,25.494975],[118.464748,25.516253],[118.474059,25.524465],[118.491463,25.546794],[118.490098,25.549963],[118.509989,25.56187],[118.511549,25.578576],[118.531293,25.601711],[118.533096,25.60795],[118.545187,25.617836],[118.550062,25.632279],[118.531293,25.642403],[118.544845,25.656555],[118.540068,25.661592],[118.523736,25.659097],[118.510232,25.674974],[118.492438,25.688739],[118.479958,25.707106],[118.46855,25.71075],[118.454364,25.720723],[118.448514,25.718134],[118.430915,25.730552],[118.425016,25.761374],[118.417996,25.769186],[118.414632,25.789744],[118.397959,25.801005],[118.391914,25.809964],[118.382115,25.814132],[118.392743,25.82539],[118.397131,25.845843],[118.405028,25.843161],[118.421213,25.854607],[118.41239,25.875582],[118.406247,25.878455],[118.409806,25.889419],[118.396107,25.899904],[118.369635,25.896361],[118.366564,25.914217],[118.36125,25.91795],[118.36008,25.929533],[118.350281,25.936999],[118.344675,25.935468],[118.336533,25.916754],[118.318008,25.913547],[118.308745,25.929533],[118.295924,25.922593],[118.285345,25.930825],[118.275497,25.929773],[118.266332,25.916514],[118.272718,25.903877],[118.267746,25.898707],[118.248148,25.896169],[118.246832,25.890855],[118.232938,25.883769],[118.215534,25.897893],[118.209001,25.898324],[118.19696,25.88511],[118.18019,25.884152],[118.177508,25.900143],[118.156399,25.907898],[118.148014,25.900239],[118.129781,25.899999],[118.104431,25.891765],[118.096631,25.886498],[118.078057,25.8842],[118.076935,25.876922],[118.085272,25.865143],[118.063773,25.848237],[118.049489,25.858343],[118.038812,25.856235],[118.031402,25.864041],[118.015412,25.857002],[118.018971,25.845076],[118.033303,25.835066],[118.030086,25.823378],[118.02643,25.831378],[118.011512,25.813701],[118.007368,25.797076],[118.011073,25.795638],[118.006198,25.769617],[117.998739,25.766694],[117.987673,25.771055],[117.983236,25.759553],[117.976362,25.760463],[117.98972,25.731271],[118.002932,25.715018],[118.009464,25.724223],[118.015168,25.718949],[118.006003,25.691857],[118.000104,25.685814],[117.968904,25.68097],[117.959738,25.672145],[117.946722,25.674639],[117.949745,25.668259],[117.937411,25.658426],[117.942042,25.65147],[117.953352,25.655739],[117.956472,25.640627],[117.967734,25.644418],[117.976655,25.629448],[117.985625,25.625897],[117.990646,25.613565],[117.993328,25.620283],[118.003565,25.616876],[118.019458,25.621387],[118.025552,25.628584],[118.038032,25.628249],[118.042907,25.619851],[118.043249,25.604783],[118.039495,25.59216],[118.033693,25.588128],[118.035058,25.5792],[118.030086,25.568639],[118.002152,25.549723],[117.994303,25.537431],[117.980214,25.531044],[117.980945,25.516349],[117.962566,25.528835],[117.941993,25.524129],[117.93195,25.511018],[117.892901,25.497424],[117.882517,25.498865],[117.864187,25.495743],[117.85312,25.488393],[117.840494,25.491852],[117.829135,25.50924],[117.820165,25.517069],[117.804516,25.508952],[117.789159,25.510057],[117.789111,25.493341],[117.798032,25.478017],[117.786478,25.481956],[117.769562,25.499442],[117.762444,25.497665],[117.752694,25.507703],[117.742944,25.505206],[117.731682,25.509385],[117.733779,25.514139],[117.71813,25.511978],[117.715156,25.491468],[117.722371,25.48138],[117.713157,25.477921],[117.704041,25.457597],[117.697557,25.455675],[117.691414,25.440874],[117.699019,25.422226],[117.684101,25.396508],[117.691658,25.390595],[117.691512,25.368285],[117.678349,25.355349],[117.68025,25.347269],[117.661627,25.336351],[117.655192,25.320622],[117.619409,25.299598],[117.599811,25.293728],[117.604638,25.284152],[117.603468,25.260042],[117.621067,25.247479],[117.622285,25.240788],[117.6139,25.222254],[117.595765,25.221821],[117.578654,25.231257],[117.570707,25.220232],[117.555399,25.21171],[117.555692,25.194231],[117.562176,25.187489],[117.573193,25.188934],[117.582066,25.174871],[117.59674,25.171355],[117.604004,25.164323],[117.621603,25.160951],[117.620579,25.147993],[117.626624,25.138358],[117.653047,25.13407],[117.671524,25.124385],[117.671378,25.098797],[117.677471,25.08805],[117.699019,25.078699],[117.707551,25.067901],[117.721883,25.07788],[117.72671,25.071179],[117.731585,25.051077],[117.726222,25.043652],[117.73841,25.037287],[117.737142,25.026534],[117.718032,25.015009],[117.715497,25.00353],[117.701505,25.004495],[117.69507,24.992196],[117.685076,24.98853],[117.670841,24.999913],[117.654461,24.996971],[117.654802,24.981342],[117.637057,24.970922],[117.618239,24.964457],[117.604345,24.947908],[117.607026,24.930294],[117.630183,24.92571],[117.631451,24.912871],[117.614875,24.898004],[117.616728,24.877101],[117.624772,24.86672],[117.636618,24.866865],[117.644857,24.858946],[117.657581,24.85349],[117.668404,24.853972],[117.683419,24.848999],[117.711597,24.86363],[117.717788,24.874252],[117.729976,24.88077],[117.750403,24.877197],[117.76259,24.86841],[117.770244,24.868555],[117.770585,24.855952],[117.775753,24.85093],[117.789988,24.85716],[117.797545,24.865416],[117.802663,24.852669],[117.81256,24.849964],[117.822115,24.85798],[117.824991,24.866527],[117.821189,24.87459],[117.833864,24.881543],[117.849757,24.873866],[117.863992,24.878308],[117.871695,24.87179],[117.882566,24.895687],[117.893632,24.887191],[117.898605,24.874639],[117.913035,24.870293],[117.917715,24.879515],[117.930195,24.875508],[117.936436,24.86643],[117.947404,24.871114],[117.957788,24.868169],[117.971146,24.848081],[117.999032,24.859912],[117.991475,24.866913],[117.996984,24.877246],[118.011707,24.87517],[118.014486,24.879708],[118.004638,24.88777],[117.990305,24.892839],[117.996984,24.899839],[118.009074,24.892791],[118.015802,24.901818],[118.036765,24.899694],[118.042127,24.883087],[118.059141,24.86643],[118.06582,24.875411],[118.071865,24.874397],[118.072548,24.86194],[118.077764,24.854262],[118.085564,24.863727],[118.109696,24.875218],[118.113547,24.874735],[118.12554,24.888494],[118.137923,24.89477],[118.150695,24.891681],[118.161567,24.897618],[118.176923,24.893225],[118.194961,24.892646],[118.204077,24.882122],[118.197252,24.879998],[118.197106,24.86643],[118.22582,24.850834],[118.224163,24.838422],[118.231817,24.825961],[118.243224,24.824947],[118.252097,24.831371],[118.263748,24.825285],[118.28437,24.832482],[118.301238,24.826106],[118.312012,24.804901],[118.325564,24.798234],[118.322591,24.783837],[118.334876,24.774559],[118.338045,24.780358],[118.344772,24.771708],[118.337021,24.771032],[118.33512,24.752475],[118.316887,24.74885],[118.322249,24.733239],[118.332389,24.72942],[118.336533,24.718399],[118.322006,24.69819],[118.322493,24.692388],[118.338825,24.68204],[118.338727,24.673771],[118.352134,24.66434],[118.350817,24.649105],[118.34331,24.64214],[118.346966,24.630578],[118.34448,24.620951],[118.337021,24.617274],[118.329611,24.605324],[118.331512,24.598259],[118.341213,24.607259],[118.34175,24.592404],[118.353109,24.585097],[118.355546,24.575805],[118.373828,24.575611],[118.385674,24.582048],[118.391817,24.574062],[118.402981,24.578079],[118.401567,24.590855],[118.422091,24.598549],[118.444663,24.614952],[118.478642,24.615],[118.518569,24.605904],[118.557326,24.572901],[118.556497,24.562591],[118.547185,24.559203],[118.54621,24.549764],[118.563712,24.539308],[118.566442,24.52062],[118.558106,24.512582],[118.579946,24.507207],[118.590817,24.513792],[118.614267,24.521733],[118.620604,24.534805],[118.625382,24.535144],[118.639666,24.548748],[118.65746,24.55446],[118.655997,24.565883],[118.664285,24.573772],[118.673255,24.575079],[118.680324,24.582241],[118.689099,24.608952],[118.686856,24.633626],[118.672475,24.631449],[118.667015,24.621387],[118.661262,24.622257],[118.654973,24.633674],[118.652438,24.6537],[118.656095,24.669805],[118.670184,24.679767],[118.677496,24.667194],[118.68593,24.662599],[118.703432,24.665453],[118.716789,24.676576],[118.724053,24.677688],[118.731463,24.691372],[118.742237,24.698964],[118.7398,24.706264],[118.750525,24.716465],[118.742384,24.717142],[118.747259,24.723619],[118.752329,24.718785],[118.765979,24.728695],[118.765784,24.734592],[118.776509,24.740972],[118.784651,24.760062],[118.785431,24.77683],[118.744821,24.779488],[118.736095,24.783981],[118.731415,24.800939],[118.732243,24.815625],[118.72108,24.815866],[118.713036,24.809248],[118.710598,24.796736],[118.690903,24.799925],[118.673694,24.794466],[118.650391,24.808765],[118.645711,24.829053],[118.647905,24.843638],[118.672865,24.849578],[118.687734,24.85658],[118.696997,24.867879],[118.702408,24.865513],[118.698557,24.85262],[118.705187,24.844314],[118.731415,24.840692],[118.734925,24.826106],[118.745894,24.824512],[118.751207,24.845377],[118.765979,24.847984],[118.787234,24.855663],[118.80576,24.869859],[118.819654,24.86899],[118.834474,24.854262],[118.845784,24.863775],[118.835693,24.86812],[118.838325,24.875701],[118.847685,24.875701],[118.864748,24.887384],[118.876156,24.888205],[118.895851,24.884005],[118.906966,24.876135],[118.931439,24.870438],[118.948892,24.876232],[118.958008,24.871211],[118.991841,24.880336],[118.988185,24.896846],[118.972292,24.902252],[118.955522,24.896991],[118.942116,24.908189],[118.93295,24.906548],[118.928124,24.918711],[118.918276,24.923876],[118.918374,24.932466],[118.93334,24.949355],[118.945626,24.954036],[118.983456,24.938305],[118.982774,24.934396],[119.013926,24.94149],[119.032743,24.957654],[119.032451,24.961369],[119.017143,24.963444],[119.009392,24.958619],[119.006125,24.97015],[118.997886,24.968558],[118.989696,24.974058],[118.988575,24.995524],[119.005882,24.999334],[119.011927,25.0261],[119.024066,25.043507],[119.024456,25.051655],[119.016363,25.058501],[118.998959,25.055608],[118.991646,25.044037],[118.983603,25.044037],[118.97629,25.026775],[118.960348,25.02176],[118.945284,25.028511],[118.946259,25.043121],[118.920519,25.054934],[118.889172,25.084194],[118.892097,25.092725],[118.910866,25.093014],[118.916521,25.09899],[118.937777,25.098026],[118.955181,25.107905],[118.974779,25.115182],[118.973804,25.121687],[118.953913,25.127132],[118.951476,25.14939],[118.966588,25.153918],[118.985504,25.166105],[118.984431,25.195483],[118.973999,25.198806],[118.971074,25.20834],[118.950403,25.206173],[118.941921,25.211036],[118.945674,25.219606],[118.919739,25.233086],[118.917789,25.238285],[118.899849,25.241366]]],[[[118.412536,24.514325],[118.395034,24.508902],[118.399909,24.490693],[118.383675,24.480716],[118.390403,24.474904],[118.389525,24.465507],[118.374608,24.458774],[118.34526,24.468559],[118.318739,24.486625],[118.295729,24.47534],[118.294023,24.466766],[118.304797,24.454608],[118.311963,24.424617],[118.290123,24.423067],[118.290659,24.415023],[118.281932,24.410419],[118.294315,24.401453],[118.299483,24.39239],[118.318788,24.383617],[118.333072,24.383714],[118.339848,24.390161],[118.350671,24.412309],[118.372268,24.42641],[118.405272,24.428058],[118.416095,24.42171],[118.432377,24.418899],[118.437009,24.411],[118.43072,24.403586],[118.457728,24.41226],[118.459532,24.420062],[118.469818,24.425296],[118.465625,24.434211],[118.477033,24.437506],[118.478983,24.447971],[118.467527,24.459307],[118.467917,24.470448],[118.473474,24.477277],[118.462944,24.478537],[118.4549,24.504447],[118.43852,24.50774],[118.430525,24.521346],[118.414583,24.526672],[118.412536,24.514325]]],[[[118.230403,24.401308],[118.238203,24.40819],[118.246734,24.407317],[118.252779,24.4173],[118.269988,24.421419],[118.27345,24.441139],[118.255656,24.451943],[118.233864,24.445791],[118.229087,24.427961],[118.220701,24.42578],[118.217923,24.405621],[118.230403,24.401308]]],[[[119.004419,25.181951],[119.000958,25.185851],[118.994181,25.172559],[119.004419,25.181951]]],[[[119.028307,25.029669],[119.03679,25.031549],[119.027039,25.04047],[119.028307,25.029669]]]]}},{"type":"Feature","properties":{"adcode":350600,"name":"漳州市","center":[117.661801,24.510897],"centroid":[117.458578,24.330766],"childrenNum":11,"level":"city","parent":{"adcode":350000},"subFeatureIndex":5,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.903894,24.369851],[116.896922,24.360106],[116.896142,24.350701],[116.908233,24.34178],[116.90911,24.330191],[116.919543,24.320977],[116.9134,24.312441],[116.914278,24.287705],[116.918178,24.283387],[116.929488,24.286201],[116.937727,24.282854],[116.935436,24.24797],[116.939141,24.239576],[116.934022,24.21929],[116.956155,24.21696],[116.971316,24.198079],[116.976337,24.199778],[116.991158,24.189875],[116.998617,24.179],[116.990378,24.168367],[116.978824,24.162055],[116.972925,24.153509],[116.964784,24.153364],[116.947087,24.13491],[116.934899,24.126945],[116.926563,24.098577],[116.929732,24.065441],[116.936996,24.054556],[116.95245,24.054702],[116.948793,24.037983],[116.940408,24.035116],[116.95518,24.020242],[116.954448,24.00595],[116.960055,24.002158],[116.969951,24.007457],[116.98131,23.996713],[116.975411,23.990635],[116.973169,23.974249],[116.982626,23.95932],[116.980189,23.941033],[116.973315,23.927072],[116.954741,23.920457],[116.959275,23.914473],[116.958836,23.900656],[116.973022,23.894817],[116.979263,23.884452],[116.97546,23.872287],[116.960055,23.86815],[116.962054,23.861385],[116.981554,23.855593],[116.984625,23.861288],[116.995107,23.862018],[117.012121,23.855301],[117.022456,23.838752],[117.026746,23.819912],[117.018458,23.81222],[117.020067,23.800729],[117.034058,23.789091],[117.042541,23.763766],[117.047806,23.758652],[117.051072,23.736731],[117.049317,23.724162],[117.053998,23.708522],[117.053217,23.698386],[117.066624,23.688786],[117.074083,23.69093],[117.089439,23.668559],[117.115424,23.665294],[117.124881,23.646039],[117.132974,23.65145],[117.147453,23.65379],[117.159348,23.64014],[117.173681,23.634631],[117.185917,23.63624],[117.192596,23.62956],[117.192937,23.561625],[117.271475,23.566162],[117.291268,23.571186],[117.29468,23.558991],[117.302627,23.550405],[117.317788,23.54899],[117.361761,23.556308],[117.382383,23.553527],[117.427526,23.572162],[117.441566,23.570698],[117.453998,23.57504],[117.463748,23.585185],[117.463358,23.598548],[117.455753,23.606399],[117.45468,23.628244],[117.466527,23.639896],[117.493096,23.642431],[117.501335,23.650524],[117.498605,23.667292],[117.490025,23.671728],[117.488855,23.679477],[117.502651,23.704623],[117.518739,23.704185],[117.544723,23.71583],[117.568611,23.712517],[117.589915,23.701846],[117.601518,23.701943],[117.612974,23.713394],[117.627648,23.749397],[117.639446,23.76776],[117.660311,23.789091],[117.661432,23.796931],[117.651633,23.815336],[117.658507,23.851797],[117.671963,23.878078],[117.691024,23.889027],[117.704041,23.890097],[117.76259,23.886983],[117.787892,23.899974],[117.792816,23.906299],[117.801981,23.93685],[117.807587,23.947404],[117.826064,23.966371],[117.847709,23.984752],[117.864918,24.004783],[117.890074,24.004783],[117.910646,24.011784],[117.927563,24.039879],[117.928099,24.056257],[117.925028,24.075159],[117.931609,24.094448],[117.947258,24.111353],[117.974754,24.134473],[117.990841,24.142729],[118.000055,24.152441],[118.00142,24.176864],[118.019409,24.197254],[118.03891,24.199292],[118.056704,24.209389],[118.063578,24.219241],[118.074693,24.225454],[118.115741,24.229385],[118.123834,24.235936],[118.125979,24.252531],[118.143431,24.251804],[118.15323,24.255831],[118.157423,24.263642],[118.157423,24.277906],[118.144406,24.293816],[118.145674,24.30633],[118.13958,24.314721],[118.1271,24.318455],[118.126856,24.333148],[118.121347,24.347258],[118.112133,24.356907],[118.096436,24.358458],[118.081372,24.356276],[118.075717,24.360882],[118.083565,24.370966],[118.088587,24.406154],[118.086295,24.410322],[118.049001,24.418318],[118.028477,24.420547],[118.005515,24.418609],[117.992499,24.423067],[117.985089,24.433533],[117.975046,24.434889],[117.964077,24.444046],[117.956813,24.45921],[117.962371,24.480377],[117.958568,24.501251],[117.937508,24.513405],[117.931268,24.526672],[117.91206,24.53345],[117.913133,24.546666],[117.908453,24.555331],[117.91362,24.568593],[117.886027,24.590178],[117.893389,24.597775],[117.892365,24.611565],[117.920689,24.614226],[117.930293,24.632659],[117.954717,24.64925],[117.957788,24.66613],[117.965394,24.671014],[117.955497,24.708488],[117.948379,24.711727],[117.941018,24.742519],[117.947892,24.76243],[117.955156,24.76562],[117.961298,24.788137],[117.959153,24.823981],[117.962956,24.841175],[117.956375,24.845087],[117.940384,24.844652],[117.924735,24.864258],[117.913035,24.870293],[117.898605,24.874639],[117.893632,24.887191],[117.882566,24.895687],[117.871695,24.87179],[117.863992,24.878308],[117.849757,24.873866],[117.833864,24.881543],[117.821189,24.87459],[117.824991,24.866527],[117.822115,24.85798],[117.81256,24.849964],[117.802663,24.852669],[117.797545,24.865416],[117.789988,24.85716],[117.775753,24.85093],[117.770585,24.855952],[117.770244,24.868555],[117.76259,24.86841],[117.750403,24.877197],[117.729976,24.88077],[117.717788,24.874252],[117.711597,24.86363],[117.683419,24.848999],[117.668404,24.853972],[117.657581,24.85349],[117.644857,24.858946],[117.636618,24.866865],[117.624772,24.86672],[117.616728,24.877101],[117.614875,24.898004],[117.631451,24.912871],[117.630183,24.92571],[117.607026,24.930294],[117.604345,24.947908],[117.618239,24.964457],[117.637057,24.970922],[117.654802,24.981342],[117.654461,24.996971],[117.670841,24.999913],[117.685076,24.98853],[117.69507,24.992196],[117.701505,25.004495],[117.715497,25.00353],[117.718032,25.015009],[117.737142,25.026534],[117.73841,25.037287],[117.726222,25.043652],[117.731585,25.051077],[117.72671,25.071179],[117.721883,25.07788],[117.707551,25.067901],[117.699019,25.078699],[117.677471,25.08805],[117.671378,25.098797],[117.671524,25.124385],[117.653047,25.13407],[117.626624,25.138358],[117.620579,25.147993],[117.621603,25.160951],[117.604004,25.164323],[117.59674,25.171355],[117.582066,25.174871],[117.573193,25.188934],[117.562176,25.187489],[117.555692,25.194231],[117.555399,25.21171],[117.545649,25.210988],[117.548184,25.192208],[117.535022,25.201165],[117.529415,25.185514],[117.515765,25.17569],[117.497435,25.174293],[117.495436,25.16519],[117.484564,25.164901],[117.483638,25.134455],[117.478763,25.127806],[117.481981,25.120386],[117.503041,25.10911],[117.510841,25.090315],[117.50387,25.041482],[117.492023,25.023689],[117.490561,25.016841],[117.495485,24.971404],[117.493145,24.962093],[117.483736,24.958185],[117.445515,24.95997],[117.425137,24.978207],[117.393742,24.980715],[117.383845,24.984767],[117.370293,24.973527],[117.361712,24.971983],[117.341286,24.978737],[117.318032,24.968317],[117.306965,24.96822],[117.30092,24.975746],[117.288781,24.971742],[117.293803,24.984237],[117.286588,24.990507],[117.279714,24.98771],[117.267916,24.974203],[117.236813,24.962527],[117.23457,24.954518],[117.245929,24.954036],[117.237057,24.930825],[117.237447,24.923393],[117.227063,24.909155],[117.219604,24.908431],[117.210293,24.921028],[117.184406,24.925854],[117.188598,24.903942],[117.196594,24.900804],[117.198007,24.885163],[117.172218,24.865948],[117.169391,24.826058],[117.154424,24.813306],[117.144235,24.790359],[117.137508,24.784803],[117.102358,24.789538],[117.080713,24.781034],[117.070768,24.785866],[117.072084,24.807654],[117.069208,24.821953],[117.056728,24.82374],[117.052827,24.812099],[117.052145,24.793403],[117.027965,24.780213],[117.02348,24.773641],[117.02387,24.739861],[117.018556,24.709213],[117.026892,24.693935],[117.039372,24.690792],[117.033327,24.671836],[117.046929,24.653313],[117.043467,24.633626],[117.037471,24.626128],[117.019872,24.62903],[117.014948,24.615774],[117.025186,24.602033],[117.023138,24.571352],[117.017142,24.555815],[117.006222,24.544294],[116.996813,24.540615],[116.980774,24.544584],[116.947721,24.544972],[116.932511,24.534128],[116.935582,24.521878],[116.929439,24.513599],[116.922078,24.526623],[116.91145,24.515681],[116.917349,24.490257],[116.927099,24.468268],[116.935874,24.456836],[116.944016,24.431885],[116.934899,24.390015],[116.928415,24.382599],[116.90326,24.380127],[116.903894,24.369851]]],[[[117.711548,23.772728],[117.717593,23.769611],[117.72437,23.775942],[117.708184,23.779205],[117.711548,23.772728]]],[[[117.683711,23.784611],[117.692828,23.774919],[117.690293,23.783929],[117.683711,23.784611]]],[[[118.151134,24.318358],[118.15635,24.331548],[118.146259,24.339113],[118.151134,24.318358]]],[[[117.669476,23.790503],[117.67674,23.788312],[117.67128,23.803358],[117.669476,23.790503]]]]}},{"type":"Feature","properties":{"adcode":350700,"name":"南平市","center":[118.178459,26.635627],"centroid":[118.147051,27.338631],"childrenNum":10,"level":"city","parent":{"adcode":350000},"subFeatureIndex":6,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.262116,27.420623],[119.248953,27.418639],[119.247247,27.429504],[119.243444,27.419867],[119.222628,27.41708],[119.209465,27.422135],[119.194742,27.418733],[119.180263,27.428228],[119.168514,27.424874],[119.153987,27.428559],[119.147551,27.424827],[119.138776,27.434416],[119.12849,27.431771],[119.121421,27.438336],[119.125906,27.452221],[119.118886,27.46143],[119.131317,27.463083],[119.130781,27.47281],[119.115083,27.482819],[119.090074,27.464877],[119.072524,27.472243],[119.065163,27.466766],[119.055315,27.477626],[119.03718,27.4806],[119.020799,27.497926],[118.99891,27.496321],[118.99072,27.503355],[118.982774,27.496038],[118.990428,27.488579],[118.988283,27.477248],[118.966003,27.473377],[118.955425,27.449813],[118.949184,27.456377],[118.93334,27.463602],[118.910769,27.460863],[118.901457,27.464688],[118.897704,27.478948],[118.887807,27.483575],[118.890342,27.494103],[118.87991,27.499579],[118.873572,27.517751],[118.857874,27.516713],[118.859629,27.527568],[118.869184,27.539932],[118.889026,27.547482],[118.896046,27.563146],[118.910184,27.570317],[118.904041,27.575978],[118.902481,27.591591],[118.906771,27.595458],[118.908283,27.610597],[118.913889,27.619132],[118.902627,27.623659],[118.9037,27.638888],[118.894096,27.656896],[118.87991,27.667973],[118.874644,27.682818],[118.880543,27.689322],[118.875035,27.700961],[118.878496,27.705296],[118.900044,27.705013],[118.897947,27.718911],[118.89044,27.718723],[118.880641,27.73116],[118.870744,27.736671],[118.853974,27.774253],[118.840031,27.779291],[118.839398,27.788566],[118.851488,27.796005],[118.8471,27.812528],[118.838813,27.820671],[118.8354,27.838225],[118.826332,27.846648],[118.835741,27.866504],[118.826527,27.874831],[118.8315,27.886309],[118.820434,27.895387],[118.818435,27.916692],[118.803712,27.918338],[118.804541,27.927084],[118.7671,27.9418],[118.754181,27.94274],[118.753499,27.948006],[118.729903,27.97259],[118.732487,27.990872],[118.72654,28.000411],[118.726588,28.014178],[118.733511,28.02644],[118.732682,28.035976],[118.720348,28.045417],[118.718788,28.063639],[118.735363,28.075003],[118.743164,28.088526],[118.763541,28.094723],[118.76515,28.102939],[118.773584,28.108009],[118.785333,28.106741],[118.802298,28.117303],[118.800446,28.133448],[118.805906,28.153063],[118.798106,28.168922],[118.782944,28.172628],[118.775144,28.167983],[118.760958,28.16742],[118.769294,28.185763],[118.782116,28.193221],[118.794791,28.205931],[118.804151,28.207901],[118.81239,28.22558],[118.802055,28.240443],[118.781189,28.243116],[118.754523,28.253476],[118.740872,28.267492],[118.739361,28.277381],[118.72732,28.28113],[118.730147,28.296829],[118.719373,28.312057],[118.699288,28.309949],[118.689879,28.291019],[118.674815,28.271476],[118.666674,28.269741],[118.651366,28.277147],[118.640251,28.273491],[118.632987,28.261633],[118.623042,28.256617],[118.595741,28.256992],[118.597496,28.271991],[118.58448,28.284317],[118.568831,28.285255],[118.558593,28.282302],[118.547478,28.286567],[118.546259,28.274991],[118.53022,28.270445],[118.514132,28.269648],[118.50565,28.279912],[118.495607,28.273116],[118.492926,28.262711],[118.502676,28.246819],[118.490683,28.238427],[118.481031,28.245975],[118.459922,28.244381],[118.445296,28.250851],[118.448855,28.261539],[118.438617,28.261258],[118.430379,28.279537],[118.43306,28.293127],[118.424285,28.291534],[118.388453,28.266742],[118.373486,28.265851],[118.364467,28.253804],[118.350427,28.250288],[118.343456,28.234583],[118.339166,28.235895],[118.314888,28.22286],[118.319422,28.214466],[118.334144,28.206869],[118.339751,28.193878],[118.356082,28.192752],[118.374315,28.187967],[118.374656,28.173895],[118.379288,28.166576],[118.361055,28.155878],[118.361786,28.140393],[118.368416,28.129177],[118.356765,28.123921],[118.359544,28.111905],[118.356229,28.091672],[118.341993,28.084817],[118.339117,28.088244],[118.30816,28.089418],[118.291975,28.08261],[118.274912,28.082986],[118.253559,28.068758],[118.242542,28.07552],[118.22504,28.059319],[118.210415,28.057299],[118.199739,28.05002],[118.182725,28.051711],[118.153815,28.061855],[118.135095,28.053683],[118.120762,28.0418],[118.129099,28.017185],[118.123395,28.012534],[118.105893,28.016997],[118.093803,28.001868],[118.091999,27.98152],[118.097021,27.967608],[118.089903,27.964976],[118.074205,27.967514],[118.070744,27.977431],[118.060945,27.982695],[118.042712,27.980157],[118.034327,27.988193],[118.019166,27.981191],[118.006588,27.980392],[117.998057,27.991154],[117.985674,27.971556],[117.965199,27.962626],[117.958032,27.968971],[117.942773,27.974094],[117.932487,27.966762],[117.92025,27.963425],[117.912158,27.950074],[117.891,27.948476],[117.866576,27.937757],[117.855997,27.94589],[117.849123,27.936487],[117.836399,27.927789],[117.815144,27.920642],[117.7993,27.90136],[117.785503,27.892706],[117.788379,27.882922],[117.782529,27.866034],[117.788136,27.855824],[117.775753,27.836484],[117.759665,27.82693],[117.754351,27.812057],[117.741969,27.801183],[117.730951,27.803443],[117.716423,27.816246],[117.705649,27.833001],[117.682541,27.82373],[117.67323,27.828483],[117.667039,27.842272],[117.649976,27.851683],[117.610049,27.863446],[117.60259,27.869562],[117.603565,27.885933],[117.595521,27.899526],[117.586161,27.905593],[117.588696,27.918338],[117.58465,27.934936],[117.586795,27.942317],[117.57919,27.945749],[117.569635,27.935312],[117.560469,27.947254],[117.563687,27.956656],[117.558081,27.964882],[117.53234,27.973953],[117.530731,27.981708],[117.521761,27.982413],[117.511426,27.974517],[117.504845,27.954305],[117.482858,27.939402],[117.474717,27.930469],[117.462968,27.94133],[117.454046,27.93992],[117.429964,27.913118],[117.404613,27.893224],[117.396033,27.893224],[117.384382,27.886403],[117.378434,27.888661],[117.366588,27.882358],[117.353864,27.864904],[117.353425,27.858506],[117.340701,27.856294],[117.333047,27.862082],[117.336167,27.878265],[117.327684,27.894117],[117.318081,27.89407],[117.303358,27.87215],[117.289025,27.868527],[117.280786,27.871209],[117.276642,27.84806],[117.293608,27.843213],[117.303065,27.830225],[117.297751,27.798453],[117.306088,27.781833],[117.3056,27.775477],[117.29468,27.76394],[117.277812,27.767613],[117.279762,27.749859],[117.268111,27.740439],[117.264503,27.728898],[117.254412,27.729228],[117.243979,27.718111],[117.227745,27.719241],[117.203711,27.711373],[117.202639,27.683572],[117.186258,27.682677],[117.172657,27.678153],[117.142968,27.68885],[117.13156,27.687201],[117.121517,27.694222],[117.106648,27.686117],[117.096167,27.667501],[117.102115,27.662835],[117.111865,27.645394],[117.106015,27.642376],[117.109573,27.632004],[117.094071,27.627808],[117.078714,27.642235],[117.078714,27.650909],[117.061018,27.669057],[117.040786,27.670235],[117.020359,27.653078],[117.021627,27.643036],[117.013973,27.630213],[117.009196,27.633702],[117.003394,27.625969],[117.017044,27.611729],[117.013534,27.60673],[117.024503,27.59244],[117.016801,27.563476],[117.020018,27.557107],[117.042005,27.547293],[117.050877,27.549511],[117.054875,27.542622],[117.073839,27.559796],[117.084906,27.564089],[117.091048,27.547387],[117.098848,27.544131],[117.103138,27.533137],[117.103138,27.510766],[117.110353,27.494952],[117.10465,27.484614],[117.111523,27.474557],[117.110158,27.458833],[117.125417,27.451985],[117.126149,27.434463],[117.132779,27.422324],[117.127514,27.406687],[117.10738,27.393552],[117.105625,27.3824],[117.099141,27.379186],[117.104065,27.36671],[117.100262,27.339153],[117.109476,27.326861],[117.129561,27.322416],[117.140481,27.322795],[117.142578,27.316175],[117.137166,27.302982],[117.157154,27.301753],[117.160177,27.295747],[117.171877,27.290261],[117.166173,27.267084],[117.154424,27.260934],[117.149793,27.241394],[117.140579,27.231505],[117.120494,27.215936],[117.11635,27.207748],[117.106697,27.20363],[117.097142,27.205571],[117.084418,27.182802],[117.069305,27.175227],[117.056776,27.156951],[117.048781,27.152263],[117.043662,27.139809],[117.053217,27.101442],[117.063991,27.109779],[117.072962,27.097651],[117.086661,27.094146],[117.096557,27.107269],[117.102505,27.107269],[117.122297,27.09334],[117.139604,27.098931],[117.149452,27.107458],[117.160957,27.110253],[117.180165,27.093198],[117.190597,27.071023],[117.200104,27.058986],[117.225259,27.050075],[117.242371,27.041449],[117.244077,27.033485],[117.255241,27.034907],[117.260896,27.046947],[117.276447,27.057801],[117.282005,27.057848],[117.285418,27.075856],[117.280591,27.090687],[117.289659,27.100968],[117.288294,27.112053],[117.272547,27.113948],[117.276252,27.126311],[117.286636,27.129152],[117.301749,27.119916],[117.325052,27.113664],[117.329439,27.107174],[117.34777,27.096325],[117.365808,27.101536],[117.383455,27.099499],[117.382724,27.069411],[117.395497,27.067469],[117.405734,27.052493],[117.43908,27.064957],[117.438397,27.058369],[117.426015,27.044056],[117.43596,27.046521],[117.445223,27.042586],[117.447806,27.029835],[117.444296,27.022866],[117.450731,27.019026],[117.451658,27.005087],[117.458142,27.003285],[117.46521,27.010113],[117.478227,27.013669],[117.485198,27.022582],[117.485344,27.008975],[117.512547,27.008975],[117.523565,27.00191],[117.52961,27.003854],[117.533998,26.995224],[117.546234,26.9929],[117.534875,26.983226],[117.531706,26.960128],[117.50816,26.952301],[117.50387,26.943667],[117.505332,26.926729],[117.514546,26.919706],[117.524589,26.925543],[117.544284,26.922648],[117.551353,26.93043],[117.562322,26.923265],[117.579092,26.92317],[117.589379,26.892988],[117.601908,26.885536],[117.612877,26.872767],[117.619799,26.872102],[117.630573,26.858382],[117.634619,26.841004],[117.642176,26.836208],[117.65256,26.819729],[117.670646,26.804767],[117.666161,26.791182],[117.671475,26.783866],[117.656119,26.767616],[117.653193,26.753646],[117.645881,26.741813],[117.629988,26.735872],[117.624235,26.72589],[117.612292,26.727696],[117.60103,26.708825],[117.593522,26.70293],[117.605856,26.698128],[117.604101,26.686574],[117.640713,26.674733],[117.645003,26.656138],[117.668891,26.657089],[117.662797,26.646292],[117.667575,26.634733],[117.678788,26.636731],[117.683126,26.643914],[117.695753,26.641012],[117.701652,26.652999],[117.727343,26.663415],[117.744455,26.658611],[117.759568,26.661132],[117.769025,26.655472],[117.778824,26.666744],[117.791889,26.666459],[117.803443,26.671119],[117.813974,26.667457],[117.818605,26.671785],[117.826551,26.667505],[117.839421,26.67616],[117.853998,26.679631],[117.858678,26.674876],[117.848099,26.660038],[117.858483,26.653903],[117.85507,26.640299],[117.870573,26.631498],[117.868672,26.622554],[117.85351,26.620509],[117.856533,26.601334],[117.865796,26.597336],[117.862481,26.582584],[117.872475,26.581203],[117.878325,26.557166],[117.88437,26.564402],[117.899482,26.571208],[117.901579,26.563926],[117.922834,26.559499],[117.940287,26.574064],[117.950427,26.563545],[117.970415,26.567924],[117.97685,26.562783],[117.982164,26.567829],[117.9788,26.578491],[117.994985,26.577634],[118.011122,26.56959],[117.994741,26.551549],[117.993133,26.540123],[118.006393,26.529363],[118.003419,26.511315],[118.021164,26.507982],[118.037935,26.512458],[118.04476,26.506172],[118.033791,26.497647],[118.038471,26.488502],[118.029891,26.477975],[118.03735,26.464541],[118.045491,26.473259],[118.057679,26.4694],[118.057776,26.46092],[118.065528,26.453583],[118.059336,26.439479],[118.067039,26.427279],[118.08298,26.424181],[118.089659,26.415746],[118.08727,26.406404],[118.091707,26.395774],[118.113303,26.394248],[118.114035,26.379517],[118.131585,26.377658],[118.13607,26.365738],[118.153962,26.379517],[118.167417,26.380042],[118.167856,26.38724],[118.181408,26.388861],[118.18994,26.381329],[118.202664,26.38562],[118.216509,26.394963],[118.215095,26.404592],[118.224943,26.40974],[118.243614,26.403496],[118.240787,26.396012],[118.254144,26.394201],[118.262871,26.399635],[118.259653,26.409502],[118.26994,26.422561],[118.279544,26.422513],[118.289733,26.414602],[118.299921,26.419845],[118.297338,26.431664],[118.306795,26.437906],[118.310842,26.43133],[118.323322,26.430043],[118.333218,26.438049],[118.332633,26.425992],[118.323029,26.419559],[118.327856,26.407405],[118.341993,26.409311],[118.344967,26.416127],[118.349891,26.405117],[118.36242,26.400493],[118.371536,26.409502],[118.393425,26.394153],[118.408977,26.394153],[118.419897,26.398014],[118.443493,26.395011],[118.45373,26.403162],[118.454364,26.386573],[118.448806,26.382568],[118.436911,26.392675],[118.427015,26.379946],[118.427892,26.369552],[118.436814,26.355772],[118.450756,26.349334],[118.454266,26.338794],[118.46816,26.345662],[118.494925,26.364212],[118.501165,26.364927],[118.518325,26.351909],[118.526369,26.336075],[118.538167,26.337077],[118.54231,26.342371],[118.555912,26.341846],[118.563809,26.336219],[118.561811,26.325487],[118.592329,26.323817],[118.590769,26.316471],[118.599349,26.304545],[118.607929,26.304211],[118.615242,26.288228],[118.630452,26.288705],[118.633913,26.272004],[118.641859,26.263987],[118.655851,26.26265],[118.668672,26.243416],[118.67306,26.251768],[118.666479,26.275344],[118.665991,26.29381],[118.652,26.319572],[118.663359,26.329207],[118.662237,26.34218],[118.640641,26.355152],[118.629038,26.359348],[118.623919,26.366167],[118.609489,26.361971],[118.59813,26.351003],[118.592524,26.350764],[118.594327,26.360779],[118.584139,26.371698],[118.563127,26.367168],[118.562103,26.387002],[118.550891,26.391436],[118.549623,26.412981],[118.566247,26.428709],[118.566442,26.434237],[118.556692,26.444482],[118.567076,26.464874],[118.587502,26.474688],[118.601738,26.477546],[118.608611,26.48955],[118.605394,26.505886],[118.615193,26.523554],[118.615095,26.540314],[118.618947,26.554025],[118.604565,26.550787],[118.590866,26.553168],[118.580823,26.565068],[118.588721,26.605236],[118.584772,26.613324],[118.586625,26.627788],[118.594084,26.638158],[118.595644,26.653284],[118.600616,26.6598],[118.598764,26.669122],[118.589355,26.674733],[118.578435,26.675019],[118.572292,26.683435],[118.58175,26.692898],[118.581067,26.701218],[118.587892,26.709395],[118.602566,26.707921],[118.605248,26.727269],[118.61334,26.736395],[118.613584,26.7507],[118.624114,26.771228],[118.625284,26.787286],[118.637472,26.794744],[118.641274,26.818684],[118.625772,26.839817],[118.631817,26.852257],[118.649221,26.854631],[118.650927,26.860756],[118.663261,26.86313],[118.672572,26.859522],[118.690415,26.864601],[118.696022,26.872102],[118.692317,26.882213],[118.698313,26.888146],[118.703237,26.906182],[118.69334,26.928057],[118.671792,26.94732],[118.681348,26.963543],[118.696558,26.960412],[118.699775,26.950308],[118.712109,26.944378],[118.734876,26.956428],[118.74721,26.949597],[118.782652,26.947083],[118.792207,26.95306],[118.792889,26.965393],[118.803858,26.976349],[118.824675,26.981377],[118.837691,26.988585],[118.845053,27.000677],[118.841835,27.013527],[118.847685,27.023625],[118.860263,27.022155],[118.874157,27.035287],[118.880202,27.054151],[118.898289,27.072586],[118.902432,27.090403],[118.916034,27.096893],[118.924078,27.112385],[118.93178,27.113616],[118.946406,27.104995],[118.958106,27.117216],[118.956595,27.127353],[118.946357,27.127163],[118.947771,27.141324],[118.9349,27.137867],[118.931878,27.144876],[118.940214,27.162349],[118.933974,27.159887],[118.929733,27.168978],[118.937387,27.175511],[118.943773,27.171535],[118.964443,27.168552],[118.987893,27.158751],[118.9915,27.12669],[118.99969,27.121953],[118.991159,27.107695],[119.001445,27.097225],[119.013877,27.09642],[119.021969,27.102579],[119.042883,27.102484],[119.046394,27.106653],[119.059605,27.098078],[119.077058,27.10111],[119.093389,27.097272],[119.093779,27.082916],[119.107917,27.073866],[119.120446,27.058512],[119.11991,27.053109],[119.136436,27.056332],[119.134437,27.070975],[119.127661,27.087418],[119.143895,27.087891],[119.160373,27.092061],[119.161348,27.107553],[119.18548,27.116411],[119.195717,27.109211],[119.205077,27.115227],[119.205029,27.126311],[119.186016,27.133226],[119.191768,27.161828],[119.188307,27.169783],[119.175339,27.169073],[119.178118,27.176884],[119.178557,27.199559],[119.20147,27.209262],[119.207027,27.232025],[119.23501,27.224123],[119.234718,27.211676],[119.247198,27.201453],[119.255876,27.204624],[119.26353,27.197619],[119.271768,27.212575],[119.245492,27.238697],[119.233402,27.235338],[119.216631,27.252891],[119.204931,27.260887],[119.211805,27.263347],[119.208441,27.274983],[119.210684,27.297355],[119.217314,27.311588],[119.22877,27.312534],[119.235985,27.320998],[119.245882,27.3201],[119.242762,27.333101],[119.247393,27.345345],[119.254949,27.348513],[119.253877,27.365009],[119.267917,27.369404],[119.275327,27.379234],[119.273718,27.387173],[119.263578,27.397899],[119.259971,27.410655],[119.262116,27.420623]]]]}},{"type":"Feature","properties":{"adcode":350800,"name":"龙岩市","center":[117.02978,25.091603],"centroid":[116.74379,25.291574],"childrenNum":7,"level":"city","parent":{"adcode":350000},"subFeatureIndex":7,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.400103,26.033059],[116.383284,26.029424],[116.371048,26.005464],[116.361054,26.000729],[116.359933,25.991497],[116.368025,25.974897],[116.369975,25.963318],[116.34833,25.961691],[116.326294,25.956572],[116.320249,25.940828],[116.304162,25.929485],[116.302407,25.922593],[116.280664,25.914408],[116.268232,25.914217],[116.258287,25.902967],[116.232205,25.90043],[116.225137,25.90852],[116.207196,25.901388],[116.191937,25.901005],[116.177653,25.89435],[116.169804,25.877018],[116.153473,25.876779],[116.130706,25.858726],[116.129244,25.838706],[116.131779,25.824288],[116.159274,25.809581],[116.160103,25.798753],[116.176288,25.78524],[116.181602,25.776423],[116.17702,25.768467],[116.17546,25.749487],[116.165953,25.74848],[116.166538,25.766023],[116.145965,25.759601],[116.129634,25.759169],[116.116764,25.738941],[116.118226,25.732805],[116.108476,25.723312],[116.110085,25.707585],[116.106965,25.701112],[116.082589,25.696221],[116.067623,25.704085],[116.067672,25.691329],[116.060164,25.694926],[116.056215,25.682409],[116.065234,25.676126],[116.05758,25.660153],[116.068939,25.646337],[116.067135,25.634342],[116.059628,25.63914],[116.05095,25.627577],[116.041639,25.626329],[116.046904,25.616972],[116.040956,25.606942],[116.052023,25.598592],[116.054411,25.578192],[116.062845,25.56331],[116.054168,25.546938],[116.040274,25.547995],[116.035301,25.540552],[116.036569,25.514764],[116.015752,25.508184],[116.013119,25.498193],[116.005466,25.490459],[116.007269,25.473741],[116.019213,25.474221],[116.012193,25.455242],[116.02209,25.437942],[116.021797,25.420688],[116.015167,25.414439],[116.005368,25.414247],[116.002297,25.40819],[116.008001,25.392855],[115.996008,25.379585],[115.992742,25.371074],[116.000005,25.357705],[115.991669,25.345105],[116.000152,25.343277],[116.005758,25.330868],[116.000834,25.324855],[116.008001,25.32144],[116.000054,25.301522],[115.986355,25.290793],[115.977629,25.298443],[115.974704,25.289878],[115.965636,25.286895],[115.951547,25.29315],[115.94716,25.288146],[115.949402,25.266202],[115.939506,25.253977],[115.930926,25.236023],[115.91825,25.230438],[115.901724,25.231353],[115.890804,25.217825],[115.878762,25.21431],[115.870523,25.221243],[115.855606,25.209447],[115.857507,25.178146],[115.853412,25.17646],[115.860432,25.16596],[115.853363,25.163889],[115.855118,25.153195],[115.867403,25.149053],[115.875837,25.152328],[115.884954,25.141489],[115.888366,25.129011],[115.873936,25.121831],[115.874033,25.1147],[115.883832,25.103183],[115.880078,25.092243],[115.908305,25.084531],[115.919372,25.072433],[115.913863,25.06067],[115.92098,25.061201],[115.928293,25.050498],[115.918348,25.038685],[115.912303,25.042929],[115.897873,25.037046],[115.88822,25.022918],[115.873643,25.019928],[115.876958,25.003193],[115.88198,24.995041],[115.899238,24.991761],[115.917129,24.974251],[115.925075,24.96079],[115.917227,24.958089],[115.904405,24.964361],[115.894996,24.962045],[115.892266,24.970054],[115.882955,24.976663],[115.872278,24.97208],[115.870231,24.959488],[115.884271,24.950899],[115.892559,24.937099],[115.897288,24.937147],[115.908451,24.923296],[115.955301,24.918518],[115.96276,24.913209],[115.976703,24.91596],[115.984941,24.900225],[116.003077,24.896508],[116.015264,24.905728],[116.023357,24.902156],[116.038324,24.886901],[116.04315,24.871162],[116.052266,24.861505],[116.062796,24.859912],[116.06889,24.849964],[116.083223,24.85349],[116.091316,24.838374],[116.094874,24.84924],[116.116032,24.851413],[116.13953,24.844701],[116.153229,24.846632],[116.181066,24.875121],[116.191742,24.877101],[116.200907,24.85798],[116.210901,24.854455],[116.220505,24.842624],[116.221139,24.830791],[116.229329,24.82601],[116.238933,24.830405],[116.250048,24.827893],[116.233717,24.806205],[116.233083,24.80065],[116.251267,24.793403],[116.264917,24.799877],[116.29134,24.800263],[116.299969,24.80292],[116.318153,24.818185],[116.332291,24.826638],[116.33273,24.821856],[116.344089,24.827555],[116.349159,24.836732],[116.349744,24.856725],[116.361785,24.869859],[116.374558,24.868458],[116.379238,24.877535],[116.394789,24.877873],[116.393912,24.856918],[116.407318,24.853296],[116.4178,24.840692],[116.377239,24.821083],[116.375972,24.803355],[116.384405,24.790939],[116.399664,24.793983],[116.407172,24.777797],[116.419116,24.767311],[116.415362,24.756438],[116.417166,24.743051],[116.437398,24.733577],[116.446075,24.714483],[116.455923,24.713709],[116.469719,24.719317],[116.486977,24.718592],[116.501505,24.698335],[116.504966,24.667049],[116.517495,24.652297],[116.50677,24.62129],[116.525929,24.604791],[116.553278,24.613065],[116.570438,24.621725],[116.572973,24.630143],[116.58638,24.636722],[116.596471,24.654039],[116.624113,24.641414],[116.632791,24.641269],[116.635131,24.647702],[116.667062,24.658633],[116.690122,24.659504],[116.700457,24.655683],[116.707331,24.665114],[116.741895,24.666565],[116.753839,24.654522],[116.777581,24.679574],[116.801225,24.678268],[116.815314,24.654571],[116.81195,24.644897],[116.798543,24.637157],[116.798885,24.623999],[116.787526,24.61471],[116.781627,24.603049],[116.7612,24.582967],[116.767782,24.564189],[116.756081,24.55504],[116.758373,24.546618],[116.772315,24.534757],[116.781091,24.533789],[116.779384,24.527688],[116.788111,24.511613],[116.796837,24.502074],[116.816825,24.490403],[116.812632,24.484058],[116.833595,24.496117],[116.849342,24.479069],[116.860749,24.462262],[116.85173,24.452767],[116.841493,24.453397],[116.838909,24.442544],[116.84822,24.426895],[116.855484,24.423842],[116.863528,24.409789],[116.869427,24.40722],[116.873278,24.391178],[116.885271,24.396219],[116.903894,24.369851],[116.90326,24.380127],[116.928415,24.382599],[116.934899,24.390015],[116.944016,24.431885],[116.935874,24.456836],[116.927099,24.468268],[116.917349,24.490257],[116.91145,24.515681],[116.922078,24.526623],[116.929439,24.513599],[116.935582,24.521878],[116.932511,24.534128],[116.947721,24.544972],[116.980774,24.544584],[116.996813,24.540615],[117.006222,24.544294],[117.017142,24.555815],[117.023138,24.571352],[117.025186,24.602033],[117.014948,24.615774],[117.019872,24.62903],[117.037471,24.626128],[117.043467,24.633626],[117.046929,24.653313],[117.033327,24.671836],[117.039372,24.690792],[117.026892,24.693935],[117.018556,24.709213],[117.02387,24.739861],[117.02348,24.773641],[117.027965,24.780213],[117.052145,24.793403],[117.052827,24.812099],[117.056728,24.82374],[117.069208,24.821953],[117.072084,24.807654],[117.070768,24.785866],[117.080713,24.781034],[117.102358,24.789538],[117.137508,24.784803],[117.144235,24.790359],[117.154424,24.813306],[117.169391,24.826058],[117.172218,24.865948],[117.198007,24.885163],[117.196594,24.900804],[117.188598,24.903942],[117.184406,24.925854],[117.210293,24.921028],[117.219604,24.908431],[117.227063,24.909155],[117.237447,24.923393],[117.237057,24.930825],[117.245929,24.954036],[117.23457,24.954518],[117.236813,24.962527],[117.267916,24.974203],[117.279714,24.98771],[117.286588,24.990507],[117.293803,24.984237],[117.288781,24.971742],[117.30092,24.975746],[117.306965,24.96822],[117.318032,24.968317],[117.341286,24.978737],[117.361712,24.971983],[117.370293,24.973527],[117.383845,24.984767],[117.393742,24.980715],[117.425137,24.978207],[117.445515,24.95997],[117.483736,24.958185],[117.493145,24.962093],[117.495485,24.971404],[117.490561,25.016841],[117.492023,25.023689],[117.50387,25.041482],[117.510841,25.090315],[117.503041,25.10911],[117.481981,25.120386],[117.478763,25.127806],[117.483638,25.134455],[117.484564,25.164901],[117.495436,25.16519],[117.497435,25.174293],[117.515765,25.17569],[117.529415,25.185514],[117.535022,25.201165],[117.548184,25.192208],[117.545649,25.210988],[117.555399,25.21171],[117.570707,25.220232],[117.578654,25.231257],[117.595765,25.221821],[117.6139,25.222254],[117.622285,25.240788],[117.621067,25.247479],[117.603468,25.260042],[117.604638,25.284152],[117.599811,25.293728],[117.619409,25.299598],[117.655192,25.320622],[117.661627,25.336351],[117.68025,25.347269],[117.678349,25.355349],[117.691512,25.368285],[117.691658,25.390595],[117.684101,25.396508],[117.699019,25.422226],[117.691414,25.440874],[117.697557,25.455675],[117.704041,25.457597],[117.713157,25.477921],[117.722371,25.48138],[117.715156,25.491468],[117.71813,25.511978],[117.702188,25.517309],[117.691902,25.510681],[117.688392,25.518702],[117.688928,25.535078],[117.697703,25.555869],[117.705162,25.559806],[117.725783,25.547611],[117.745089,25.570079],[117.748258,25.596288],[117.718471,25.590528],[117.695655,25.623738],[117.676301,25.63842],[117.662115,25.664278],[117.646076,25.670706],[117.635253,25.666389],[117.611414,25.650558],[117.601176,25.649455],[117.58777,25.66658],[117.594351,25.673967],[117.580847,25.69411],[117.559641,25.697947],[117.549062,25.70466],[117.541749,25.722497],[117.536045,25.725134],[117.518641,25.717463],[117.506941,25.702886],[117.497581,25.708496],[117.493973,25.722593],[117.502602,25.735537],[117.489927,25.732997],[117.48788,25.739325],[117.461749,25.735777],[117.459263,25.731702],[117.472767,25.727339],[117.470281,25.720148],[117.456972,25.71262],[117.440738,25.669458],[117.435765,25.665669],[117.406417,25.658858],[117.392182,25.658714],[117.38989,25.667732],[117.401786,25.690418],[117.396228,25.733716],[117.391694,25.735394],[117.391255,25.721155],[117.382773,25.727052],[117.376679,25.747761],[117.383017,25.752938],[117.375801,25.782413],[117.354302,25.785863],[117.348501,25.780256],[117.346015,25.756437],[117.333437,25.753274],[117.306868,25.740571],[117.284589,25.737407],[117.266697,25.724942],[117.265917,25.715353],[117.248611,25.687061],[117.254802,25.683224],[117.274497,25.687348],[117.285661,25.677469],[117.283516,25.665093],[117.253924,25.642834],[117.237934,25.634054],[117.234424,25.618268],[117.220823,25.603487],[117.215948,25.591248],[117.209561,25.588848],[117.198495,25.570559],[117.21234,25.570271],[117.197179,25.559326],[117.183382,25.575216],[117.165783,25.570655],[117.168416,25.59624],[117.158958,25.612797],[117.141993,25.630648],[117.140043,25.642163],[117.132681,25.650175],[117.104747,25.657322],[117.081737,25.652573],[117.071889,25.668307],[117.080323,25.668307],[117.071743,25.684279],[117.057995,25.685958],[117.067648,25.692816],[117.068525,25.708448],[117.060969,25.721011],[117.055021,25.715641],[117.048342,25.725661],[117.065113,25.736448],[117.058239,25.747282],[117.06443,25.7573],[117.05702,25.766742],[117.056338,25.786151],[117.036106,25.811114],[117.024016,25.853122],[117.008318,25.857768],[116.986283,25.85432],[116.971267,25.846561],[116.952791,25.842107],[116.949086,25.846753],[116.924174,25.855948],[116.904674,25.849914],[116.892681,25.837125],[116.885222,25.824192],[116.875131,25.818204],[116.865186,25.796884],[116.837788,25.787397],[116.820237,25.783898],[116.783089,25.811785],[116.778214,25.818539],[116.781042,25.832048],[116.794107,25.856331],[116.778946,25.859636],[116.756033,25.84795],[116.748086,25.85408],[116.743601,25.889754],[116.737215,25.899712],[116.719811,25.90651],[116.707574,25.916562],[116.689537,25.919434],[116.683443,25.929868],[116.67418,25.931065],[116.666965,25.939249],[116.649707,25.942742],[116.650682,25.961117],[116.644978,25.969012],[116.644735,25.980016],[116.652925,25.999389],[116.629476,26.013786],[116.625429,25.99298],[116.611243,25.984321],[116.593546,25.991545],[116.581602,25.980972],[116.553132,25.990062],[116.538555,25.996806],[116.495508,25.966285],[116.481468,25.974849],[116.480493,25.998959],[116.474399,26.009673],[116.466355,26.01326],[116.439201,26.01589],[116.419506,26.021295],[116.400103,26.033059]]]]}},{"type":"Feature","properties":{"adcode":350900,"name":"宁德市","center":[119.527082,26.65924],"centroid":[119.489399,26.971518],"childrenNum":9,"level":"city","parent":{"adcode":350000},"subFeatureIndex":8,"acroutes":[100000,350000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.799983,26.546836],[119.799349,26.556167],[119.789746,26.566925],[119.793256,26.573969],[119.788381,26.58325],[119.769514,26.591769],[119.752597,26.596194],[119.740069,26.610707],[119.72793,26.614133],[119.699264,26.610184],[119.689611,26.610993],[119.679033,26.617654],[119.67016,26.617987],[119.660995,26.609994],[119.636327,26.601809],[119.620678,26.592149],[119.607954,26.594053],[119.577923,26.622269],[119.584115,26.633829],[119.591866,26.63264],[119.619508,26.649099],[119.628234,26.67635],[119.634572,26.676017],[119.640958,26.685195],[119.633207,26.698793],[119.637741,26.703025],[119.65768,26.7006],[119.66431,26.72185],[119.656851,26.728124],[119.65339,26.744664],[119.657533,26.744284],[119.6647,26.726128],[119.695072,26.696701],[119.711062,26.686621],[119.741531,26.684386],[119.787552,26.690996],[119.810416,26.684196],[119.830452,26.690948],[119.852488,26.682104],[119.862433,26.673877],[119.858338,26.659895],[119.861409,26.645436],[119.873938,26.642915],[119.90821,26.661417],[119.901141,26.671547],[119.9047,26.676588],[119.899191,26.693183],[119.905041,26.69751],[119.913134,26.713056],[119.929758,26.725462],[119.93824,26.74205],[119.938338,26.749274],[119.924688,26.770182],[119.932293,26.780112],[119.943067,26.784768],[119.95896,26.78282],[119.968905,26.786098],[119.967442,26.777879],[119.979581,26.774934],[119.99562,26.781395],[120.028966,26.78206],[120.056364,26.785956],[120.063091,26.774363],[120.059484,26.766191],[120.041153,26.748656],[120.032427,26.747706],[120.020581,26.739104],[120.019557,26.728409],[119.993963,26.720566],[119.989185,26.710298],[119.970562,26.691566],[119.977046,26.677301],[119.971245,26.66779],[119.970172,26.652904],[119.957985,26.648671],[119.961153,26.637492],[119.949209,26.624457],[119.946431,26.61204],[119.940337,26.623078],[119.918496,26.621317],[119.901921,26.624553],[119.892366,26.61675],[119.851952,26.595385],[119.84576,26.589009],[119.844444,26.568924],[119.834986,26.561165],[119.836595,26.549502],[119.830209,26.541075],[119.828551,26.52422],[119.83913,26.51422],[119.867016,26.508887],[119.884663,26.510077],[119.893731,26.51403],[119.902165,26.530506],[119.911818,26.53998],[119.933609,26.545122],[119.93902,26.555881],[119.947649,26.560641],[119.937997,26.576539],[119.946918,26.589722],[119.967735,26.59767],[119.983871,26.593482],[120.00771,26.595623],[120.030769,26.607948],[120.059971,26.625932],[120.068064,26.627455],[120.079228,26.616274],[120.093902,26.613705],[120.103798,26.620509],[120.13807,26.638016],[120.144603,26.649432],[120.127832,26.648576],[120.130952,26.661893],[120.120763,26.658849],[120.11545,26.663843],[120.110623,26.692803],[120.12793,26.705354],[120.150306,26.709538],[120.15991,26.715908],[120.16576,26.731499],[120.150453,26.734493],[120.158545,26.746708],[120.148454,26.749987],[120.126467,26.741242],[120.11428,26.743429],[120.106821,26.752838],[120.124127,26.781015],[120.137046,26.788189],[120.13651,26.797785],[120.128515,26.794317],[120.121787,26.798165],[120.102336,26.795695],[120.094243,26.814647],[120.104773,26.823671],[120.102433,26.826805],[120.082592,26.822294],[120.063676,26.824288],[120.050172,26.840244],[120.049441,26.853492],[120.054462,26.863699],[120.070599,26.863699],[120.083469,26.871533],[120.103701,26.872957],[120.11818,26.882878],[120.12169,26.895551],[120.117887,26.90585],[120.118765,26.9189],[120.12676,26.920418],[120.138411,26.915293],[120.146894,26.922648],[120.156157,26.917856],[120.180581,26.920418],[120.190038,26.914629],[120.208369,26.915958],[120.226114,26.91311],[120.231915,26.907226],[120.237522,26.917856],[120.247223,26.924831],[120.248734,26.938211],[120.243615,26.939492],[120.250928,26.973172],[120.261312,26.982657],[120.27857,26.985787],[120.279399,27.009828],[120.274426,27.027939],[120.256534,27.031874],[120.263896,27.035239],[120.295681,27.035713],[120.299776,27.039553],[120.286857,27.062493],[120.290806,27.074387],[120.282762,27.089787],[120.28754,27.093909],[120.306601,27.087986],[120.319862,27.094382],[120.326833,27.08737],[120.358911,27.085712],[120.392062,27.081258],[120.40186,27.089266],[120.403274,27.100636],[120.426041,27.111816],[120.461678,27.142555],[120.445297,27.160881],[120.438375,27.161023],[120.426138,27.173476],[120.4257,27.183323],[120.404396,27.204009],[120.400934,27.211534],[120.413951,27.230937],[120.398545,27.242483],[120.401763,27.250857],[120.415364,27.256392],[120.422385,27.25081],[120.430038,27.258852],[120.408783,27.276639],[120.401373,27.298584],[120.383433,27.312676],[120.374804,27.329272],[120.358326,27.337545],[120.351452,27.346764],[120.355255,27.353901],[120.343262,27.366237],[120.351598,27.383581],[120.340727,27.399647],[120.331757,27.396056],[120.319813,27.399694],[120.315572,27.4056],[120.315279,27.393268],[120.302701,27.392229],[120.289539,27.395914],[120.273353,27.389393],[120.258192,27.412687],[120.263798,27.418025],[120.262433,27.432905],[120.248978,27.439895],[120.24693,27.434558],[120.221629,27.420292],[120.213195,27.420292],[120.202372,27.42837],[120.176876,27.419962],[120.165614,27.424827],[120.134511,27.41982],[120.130514,27.413395],[120.137192,27.40234],[120.128856,27.391614],[120.121592,27.397426],[120.107162,27.395583],[120.096242,27.390339],[120.096876,27.379612],[120.077034,27.369215],[120.061141,27.347425],[120.052269,27.33868],[120.027552,27.342273],[120.026626,27.350781],[120.015949,27.364772],[120.009612,27.363921],[120.005224,27.376682],[119.994206,27.379186],[119.988356,27.371389],[119.960276,27.366096],[119.96403,27.360471],[119.960178,27.351869],[119.951306,27.346764],[119.938874,27.323788],[119.944042,27.314142],[119.933512,27.316553],[119.903286,27.317594],[119.899045,27.311494],[119.887637,27.313338],[119.87896,27.309602],[119.878131,27.301847],[119.865602,27.306198],[119.871306,27.315419],[119.856729,27.314804],[119.846199,27.324071],[119.83484,27.312534],[119.844834,27.306623],[119.840154,27.298915],[119.822311,27.301422],[119.819532,27.29603],[119.80988,27.304495],[119.795742,27.310454],[119.790477,27.302604],[119.770587,27.305678],[119.769758,27.323267],[119.784968,27.323598],[119.781458,27.330501],[119.768393,27.335749],[119.769124,27.34544],[119.750647,27.350403],[119.746991,27.360235],[119.740507,27.36222],[119.750452,27.373232],[119.741434,27.375453],[119.739581,27.386795],[119.732512,27.389819],[119.724907,27.401253],[119.709551,27.404702],[119.704675,27.424686],[119.689514,27.430826],[119.685468,27.438431],[119.693902,27.438667],[119.703408,27.44731],[119.703993,27.45855],[119.709941,27.462469],[119.706723,27.483339],[119.709989,27.495849],[119.703018,27.499295],[119.708576,27.514259],[119.684639,27.541159],[119.682591,27.536959],[119.667186,27.533561],[119.659337,27.539696],[119.668844,27.556494],[119.672012,27.556399],[119.675084,27.574374],[119.645443,27.578195],[119.630867,27.582676],[119.626479,27.620499],[119.641104,27.625403],[119.64754,27.640538],[119.639642,27.652653],[119.644029,27.663495],[119.635157,27.66868],[119.606248,27.67476],[119.594986,27.666889],[119.583968,27.665145],[119.578947,27.669858],[119.566516,27.663731],[119.550135,27.663825],[119.549307,27.670141],[119.539167,27.675372],[119.541897,27.663919],[119.53707,27.658923],[119.525906,27.66029],[119.520446,27.650108],[119.511476,27.653455],[119.50119,27.649872],[119.497972,27.625875],[119.500946,27.608239],[119.488709,27.598807],[119.481836,27.585648],[119.484809,27.570411],[119.477497,27.553851],[119.474669,27.539318],[119.466528,27.526435],[119.451708,27.513551],[119.438496,27.508783],[119.432841,27.513031],[119.426893,27.53106],[119.416656,27.539649],[119.394962,27.539271],[119.376826,27.534977],[119.360056,27.524406],[119.341872,27.506801],[119.347673,27.492781],[119.334706,27.480034],[119.285029,27.457652],[119.276449,27.435502],[119.267868,27.421473],[119.262116,27.420623],[119.259971,27.410655],[119.263578,27.397899],[119.273718,27.387173],[119.275327,27.379234],[119.267917,27.369404],[119.253877,27.365009],[119.254949,27.348513],[119.247393,27.345345],[119.242762,27.333101],[119.245882,27.3201],[119.235985,27.320998],[119.22877,27.312534],[119.217314,27.311588],[119.210684,27.297355],[119.208441,27.274983],[119.211805,27.263347],[119.204931,27.260887],[119.216631,27.252891],[119.233402,27.235338],[119.245492,27.238697],[119.271768,27.212575],[119.26353,27.197619],[119.255876,27.204624],[119.247198,27.201453],[119.234718,27.211676],[119.23501,27.224123],[119.207027,27.232025],[119.20147,27.209262],[119.178557,27.199559],[119.178118,27.176884],[119.175339,27.169073],[119.188307,27.169783],[119.191768,27.161828],[119.186016,27.133226],[119.205029,27.126311],[119.205077,27.115227],[119.195717,27.109211],[119.18548,27.116411],[119.161348,27.107553],[119.160373,27.092061],[119.143895,27.087891],[119.127661,27.087418],[119.134437,27.070975],[119.136436,27.056332],[119.11991,27.053109],[119.120446,27.058512],[119.107917,27.073866],[119.093779,27.082916],[119.093389,27.097272],[119.077058,27.10111],[119.059605,27.098078],[119.046394,27.106653],[119.042883,27.102484],[119.021969,27.102579],[119.013877,27.09642],[119.001445,27.097225],[118.991159,27.107695],[118.99969,27.121953],[118.9915,27.12669],[118.987893,27.158751],[118.964443,27.168552],[118.943773,27.171535],[118.937387,27.175511],[118.929733,27.168978],[118.933974,27.159887],[118.940214,27.162349],[118.931878,27.144876],[118.9349,27.137867],[118.947771,27.141324],[118.946357,27.127163],[118.956595,27.127353],[118.958106,27.117216],[118.946406,27.104995],[118.93178,27.113616],[118.924078,27.112385],[118.916034,27.096893],[118.902432,27.090403],[118.898289,27.072586],[118.880202,27.054151],[118.874157,27.035287],[118.860263,27.022155],[118.847685,27.023625],[118.841835,27.013527],[118.845053,27.000677],[118.837691,26.988585],[118.824675,26.981377],[118.803858,26.976349],[118.792889,26.965393],[118.792207,26.95306],[118.782652,26.947083],[118.74721,26.949597],[118.734876,26.956428],[118.712109,26.944378],[118.699775,26.950308],[118.696558,26.960412],[118.681348,26.963543],[118.671792,26.94732],[118.69334,26.928057],[118.703237,26.906182],[118.698313,26.888146],[118.692317,26.882213],[118.696022,26.872102],[118.690415,26.864601],[118.672572,26.859522],[118.663261,26.86313],[118.650927,26.860756],[118.649221,26.854631],[118.631817,26.852257],[118.625772,26.839817],[118.641274,26.818684],[118.637472,26.794744],[118.625284,26.787286],[118.624114,26.771228],[118.613584,26.7507],[118.61334,26.736395],[118.605248,26.727269],[118.602566,26.707921],[118.587892,26.709395],[118.581067,26.701218],[118.58175,26.692898],[118.572292,26.683435],[118.578435,26.675019],[118.589355,26.674733],[118.598764,26.669122],[118.600616,26.6598],[118.595644,26.653284],[118.594084,26.638158],[118.586625,26.627788],[118.584772,26.613324],[118.588721,26.605236],[118.580823,26.565068],[118.590866,26.553168],[118.604565,26.550787],[118.618947,26.554025],[118.615095,26.540314],[118.615193,26.523554],[118.605394,26.505886],[118.608611,26.48955],[118.601738,26.477546],[118.587502,26.474688],[118.567076,26.464874],[118.556692,26.444482],[118.566442,26.434237],[118.566247,26.428709],[118.549623,26.412981],[118.550891,26.391436],[118.562103,26.387002],[118.563127,26.367168],[118.584139,26.371698],[118.594327,26.360779],[118.592524,26.350764],[118.59813,26.351003],[118.609489,26.361971],[118.623919,26.366167],[118.629038,26.359348],[118.640641,26.355152],[118.662237,26.34218],[118.663359,26.329207],[118.652,26.319572],[118.665991,26.29381],[118.666479,26.275344],[118.683395,26.286987],[118.681494,26.291806],[118.696607,26.291472],[118.690708,26.297913],[118.691829,26.311033],[118.711476,26.326679],[118.720543,26.340368],[118.751988,26.338651],[118.75345,26.334263],[118.773487,26.328635],[118.794157,26.340463],[118.798935,26.36054],[118.779922,26.373271],[118.766271,26.392675],[118.753304,26.398539],[118.762274,26.420941],[118.731171,26.43843],[118.73551,26.448151],[118.735656,26.470544],[118.754913,26.48512],[118.746917,26.50241],[118.748185,26.510792],[118.762274,26.511554],[118.782847,26.505648],[118.783822,26.493218],[118.796838,26.490026],[118.805321,26.4825],[118.804736,26.468305],[118.797521,26.460348],[118.811122,26.448056],[118.810342,26.432378],[118.817021,26.436143],[118.82526,26.432998],[118.827551,26.426374],[118.854803,26.439526],[118.860214,26.453392],[118.868599,26.456299],[118.872109,26.466494],[118.906528,26.477975],[118.926272,26.477594],[118.938313,26.465637],[118.950257,26.469496],[118.954206,26.482881],[118.950988,26.491646],[118.939824,26.493456],[118.940702,26.503219],[118.948307,26.510506],[118.953816,26.525554],[118.968197,26.532458],[118.983944,26.5336],[118.995108,26.528791],[119.00164,26.54536],[118.99384,26.553644],[119.006125,26.555738],[119.013974,26.573493],[119.015729,26.58977],[119.026259,26.587724],[119.028453,26.598431],[119.051317,26.597194],[119.057801,26.603665],[119.074084,26.59272],[119.07696,26.586296],[119.065406,26.579395],[119.063213,26.570875],[119.072134,26.56721],[119.090415,26.565973],[119.100312,26.575016],[119.101628,26.559213],[119.1125,26.55074],[119.115912,26.538885],[119.135022,26.542409],[119.141311,26.537933],[119.14838,26.543694],[119.159398,26.541266],[119.167247,26.549407],[119.182311,26.55431],[119.196107,26.568876],[119.204492,26.563402],[119.21512,26.545884],[119.215461,26.536743],[119.229111,26.52403],[119.246662,26.532886],[119.253682,26.54855],[119.279179,26.535076],[119.285126,26.570352],[119.29902,26.591436],[119.316083,26.591293],[119.320275,26.585249],[119.31501,26.575492],[119.332268,26.578919],[119.335486,26.585249],[119.348307,26.590198],[119.344212,26.597955],[119.351476,26.602999],[119.360641,26.598954],[119.371513,26.601524],[119.379556,26.611516],[119.380434,26.621508],[119.388039,26.622935],[119.406418,26.617464],[119.414559,26.623506],[119.401592,26.628121],[119.408466,26.6344],[119.424505,26.624695],[119.449075,26.630642],[119.466625,26.627264],[119.473889,26.631356],[119.500556,26.621222],[119.50665,26.607234],[119.530781,26.578348],[119.524444,26.573588],[119.534779,26.56107],[119.556229,26.554786],[119.557643,26.544932],[119.565492,26.546455],[119.585382,26.537219],[119.59562,26.540742],[119.605029,26.536124],[119.610391,26.527363],[119.622579,26.521125],[119.637936,26.52822],[119.659337,26.526077],[119.665529,26.535743],[119.675084,26.537647],[119.681909,26.559118],[119.699362,26.569257],[119.72871,26.559547],[119.744066,26.5684],[119.743676,26.575825],[119.763664,26.577063],[119.782628,26.566734],[119.794279,26.556833],[119.799983,26.546836]]],[[[118.82526,26.432998],[118.817021,26.436143],[118.810342,26.432378],[118.827551,26.426374],[118.82526,26.432998]]],[[[120.713329,26.988253],[120.712744,26.974642],[120.720544,26.974737],[120.725566,26.990529],[120.713329,26.988253]]],[[[120.694414,27.002858],[120.695048,26.993327],[120.706358,26.998022],[120.708113,27.006983],[120.696218,27.008596],[120.694414,27.002858]]],[[[120.249466,26.934131],[120.247662,26.914059],[120.265163,26.916764],[120.267845,26.925543],[120.258338,26.924451],[120.269843,26.935459],[120.257899,26.930287],[120.249466,26.934131]]],[[[120.318155,26.930667],[120.324103,26.934415],[120.308893,26.939112],[120.283932,26.930098],[120.293634,26.923977],[120.314597,26.922696],[120.318155,26.930667]]],[[[119.807588,26.673497],[119.81339,26.665317],[119.827284,26.674448],[119.80949,26.682342],[119.797594,26.683721],[119.807588,26.673497]]],[[[120.350867,26.640679],[120.369051,26.634828],[120.35545,26.647291],[120.350867,26.640679]]],[[[119.906796,26.68976],[119.904651,26.682294],[119.916839,26.674686],[119.925565,26.675019],[119.926784,26.664604],[119.934048,26.666554],[119.946723,26.659753],[119.939167,26.670644],[119.943652,26.684101],[119.950818,26.69247],[119.919618,26.692232],[119.906796,26.68976]]],[[[119.801251,26.567496],[119.814023,26.560403],[119.816949,26.572684],[119.801251,26.567496]]],[[[120.348625,26.701456],[120.344481,26.696226],[120.350331,26.690283],[120.372025,26.699316],[120.359252,26.708872],[120.348625,26.701456]]],[[[120.034377,26.488788],[120.048125,26.494599],[120.06197,26.494504],[120.071281,26.508887],[120.071574,26.521316],[120.060264,26.522411],[120.057485,26.516268],[120.049197,26.52022],[120.036132,26.515935],[120.032817,26.500886],[120.026431,26.497504],[120.034377,26.488788]]],[[[120.150063,26.555643],[120.148356,26.551597],[120.164737,26.554786],[120.157034,26.562355],[120.150063,26.555643]]],[[[120.137387,26.684244],[120.14002,26.691852],[120.125054,26.696511],[120.124712,26.688856],[120.137387,26.684244]]],[[[120.132659,26.53041],[120.146991,26.527982],[120.153621,26.533077],[120.147089,26.544408],[120.137972,26.54198],[120.140117,26.536124],[120.132659,26.53041]]],[[[120.373634,26.959559],[120.377193,26.952538],[120.392062,26.958847],[120.373634,26.959559]]],[[[120.002982,26.544313],[119.997668,26.533743],[120.002933,26.533172],[120.011269,26.542599],[120.001909,26.551978],[120.002982,26.544313]]],[[[119.760885,26.613277],[119.766979,26.604331],[119.776485,26.599811],[119.792134,26.605473],[119.797789,26.611421],[119.811488,26.608804],[119.818752,26.621032],[119.798862,26.631213],[119.7603,26.620889],[119.760885,26.613277]]],[[[119.796766,26.600192],[119.80793,26.600382],[119.8013,26.60614],[119.796766,26.600192]]],[[[120.403908,27.096135],[120.421263,27.097415],[120.425163,27.104474],[120.413171,27.103242],[120.403908,27.096135]]],[[[120.135925,26.550978],[120.150404,26.560213],[120.150745,26.568733],[120.166979,26.571494],[120.171074,26.598907],[120.162933,26.605569],[120.150843,26.602571],[120.136802,26.588057],[120.134609,26.581394],[120.117936,26.569114],[120.126419,26.554691],[120.135925,26.550978]]],[[[120.219581,26.872245],[120.228941,26.87647],[120.224651,26.887102],[120.214755,26.878273],[120.219581,26.872245]]],[[[120.133682,26.48955],[120.134901,26.483263],[120.146114,26.489883],[120.14392,26.497933],[120.133682,26.48955]]],[[[120.360617,26.916859],[120.380166,26.927393],[120.39562,26.926444],[120.394402,26.933893],[120.380508,26.940251],[120.370514,26.961883],[120.354231,26.970942],[120.339021,26.970373],[120.320934,26.956143],[120.322348,26.940203],[120.343116,26.922221],[120.360617,26.916859]]],[[[120.141531,26.798877],[120.144603,26.791752],[120.16108,26.787856],[120.161812,26.803437],[120.150501,26.804245],[120.141531,26.798877]]],[[[119.66821,26.628454],[119.694487,26.630071],[119.720666,26.636065],[119.758789,26.659515],[119.762835,26.674971],[119.74899,26.681105],[119.712866,26.668504],[119.691708,26.671024],[119.673962,26.68082],[119.666162,26.679536],[119.656851,26.669883],[119.651927,26.648909],[119.658606,26.634353],[119.66821,26.628454]]],[[[119.778045,26.676065],[119.788673,26.680392],[119.791452,26.688476],[119.777802,26.685147],[119.778045,26.676065]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/360000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/360000.json new file mode 100644 index 0000000..8b4f62e --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/360000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":360100,"name":"南昌市","center":[115.892151,28.676493],"centroid":[116.023468,28.647424],"childrenNum":9,"level":"city","parent":{"adcode":360000},"subFeatureIndex":0,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.475552,29.006186],[115.476092,28.994019],[115.463427,28.983943],[115.472067,28.966376],[115.479872,28.960979],[115.506233,28.92253],[115.504073,28.913769],[115.512173,28.896632],[115.52258,28.892278],[115.521402,28.883074],[115.530581,28.861742],[115.517818,28.842501],[115.505791,28.832741],[115.493764,28.844155],[115.487333,28.829433],[115.48969,28.823091],[115.48213,28.810847],[115.481639,28.797058],[115.467943,28.795017],[115.46647,28.787459],[115.453756,28.766107],[115.453167,28.773225],[115.440109,28.771184],[115.444871,28.760589],[115.438686,28.759982],[115.453167,28.732333],[115.460187,28.733271],[115.463672,28.724881],[115.473392,28.724605],[115.477025,28.73156],[115.489052,28.734762],[115.514824,28.731781],[115.526654,28.739508],[115.535589,28.732995],[115.550905,28.73294],[115.559495,28.729408],[115.546094,28.70821],[115.55385,28.69518],[115.553703,28.683694],[115.546879,28.673257],[115.543738,28.649341],[115.539761,28.642767],[115.547076,28.632325],[115.541676,28.631497],[115.547076,28.62122],[115.537454,28.61155],[115.525673,28.607737],[115.527538,28.582479],[115.553457,28.580213],[115.574811,28.589554],[115.587329,28.573524],[115.582126,28.568273],[115.566319,28.565675],[115.56303,28.55904],[115.569411,28.542342],[115.568626,28.530287],[115.572406,28.514525],[115.562343,28.514746],[115.560133,28.503075],[115.567791,28.497875],[115.54575,28.481333],[115.55115,28.453832],[115.541823,28.442763],[115.553408,28.430475],[115.551003,28.409715],[115.53873,28.4075],[115.531661,28.39255],[115.540645,28.393325],[115.552721,28.387179],[115.559348,28.389061],[115.565926,28.399139],[115.576529,28.396758],[115.588311,28.399139],[115.589931,28.409161],[115.598522,28.417299],[115.618108,28.418019],[115.616685,28.409161],[115.622085,28.398032],[115.638824,28.397257],[115.648249,28.392771],[115.654582,28.381253],[115.652324,28.375604],[115.63853,28.366133],[115.630332,28.348407],[115.621986,28.345582],[115.635535,28.337549],[115.648888,28.334446],[115.659,28.34464],[115.669996,28.346247],[115.672549,28.337383],[115.694296,28.354723],[115.690958,28.362145],[115.668278,28.363198],[115.674218,28.374995],[115.681238,28.374275],[115.686883,28.363253],[115.692332,28.367629],[115.707304,28.367407],[115.721688,28.360151],[115.727038,28.350457],[115.757278,28.368515],[115.76847,28.361591],[115.77765,28.362145],[115.790757,28.376269],[115.801409,28.380422],[115.800575,28.398586],[115.814222,28.40296],[115.836067,28.392328],[115.847897,28.381585],[115.863213,28.343145],[115.859875,28.312726],[115.872049,28.303249],[115.879364,28.286899],[115.908818,28.315108],[115.916525,28.302695],[115.922121,28.314942],[115.929779,28.315164],[115.940284,28.30735],[115.957662,28.300644],[115.960018,28.292774],[115.949709,28.2813],[115.966105,28.275978],[115.973861,28.278861],[115.979949,28.291056],[115.994577,28.287785],[115.99659,28.281743],[116.021135,28.283905],[116.044305,28.295989],[116.073513,28.289005],[116.083626,28.275812],[116.098107,28.264447],[116.101151,28.249477],[116.111362,28.246095],[116.116025,28.237167],[116.130408,28.23029],[116.142386,28.229125],[116.155788,28.223136],[116.16428,28.208659],[116.163004,28.195734],[116.167717,28.188799],[116.182002,28.180587],[116.209001,28.178423],[116.225495,28.158558],[116.229815,28.160278],[116.233202,28.188854],[116.244198,28.201836],[116.274388,28.218199],[116.294957,28.225243],[116.306837,28.219253],[116.312875,28.225631],[116.314789,28.243045],[116.330154,28.24554],[116.352147,28.232619],[116.35627,28.22663],[116.359265,28.207605],[116.370555,28.211044],[116.37625,28.221472],[116.376053,28.233229],[116.395885,28.244819],[116.412281,28.247703],[116.444926,28.249089],[116.459948,28.248035],[116.466967,28.25236],[116.480271,28.293716],[116.496667,28.303637],[116.50241,28.312559],[116.505405,28.326966],[116.502459,28.348075],[116.520573,28.378152],[116.53638,28.392938],[116.559845,28.407057],[116.55906,28.419901],[116.56549,28.43684],[116.559649,28.444977],[116.559011,28.468164],[116.551402,28.484321],[116.554887,28.496879],[116.532306,28.523263],[116.509381,28.544775],[116.497697,28.552682],[116.473938,28.58364],[116.465789,28.600719],[116.462746,28.615142],[116.44311,28.635972],[116.449393,28.653649],[116.447871,28.665028],[116.441293,28.667789],[116.446742,28.690817],[116.446497,28.701198],[116.429708,28.717429],[116.412281,28.724053],[116.392204,28.727807],[116.379931,28.744034],[116.380471,28.750105],[116.363192,28.741219],[116.355337,28.754188],[116.339629,28.750325],[116.32014,28.73846],[116.323969,28.753581],[116.319846,28.76699],[116.301781,28.785804],[116.287103,28.7879],[116.274241,28.800091],[116.253967,28.798547],[116.246407,28.801801],[116.240026,28.82458],[116.245818,28.831859],[116.245867,28.841288],[116.238111,28.851433],[116.240026,28.860805],[116.250236,28.869019],[116.259907,28.871279],[116.278954,28.866373],[116.324215,28.872381],[116.330891,28.877838],[116.342083,28.877673],[116.344439,28.88831],[116.358725,28.910298],[116.366972,28.927158],[116.380766,28.943684],[116.40428,28.953929],[116.407225,28.967973],[116.40806,29.003818],[116.402365,29.016314],[116.409778,29.031561],[116.4005,29.053023],[116.373157,29.049666],[116.318127,29.091424],[116.290784,29.108969],[116.27105,29.102149],[116.262018,29.082513],[116.265307,29.066448],[116.273898,29.0462],[116.278217,29.025231],[116.274732,29.006956],[116.27051,29.001121],[116.249893,28.999414],[116.236884,28.991982],[116.234479,29.004369],[116.237817,29.012241],[116.236049,29.025727],[116.227901,29.034368],[116.191869,29.03866],[116.175227,29.045484],[116.165606,29.054344],[116.153235,29.074041],[116.142288,29.084493],[116.155199,29.103359],[116.173509,29.118098],[116.132519,29.122387],[116.111951,29.117768],[116.092757,29.119473],[116.086179,29.112764],[116.065659,29.116503],[116.018631,29.088563],[116.008421,29.099289],[116.003315,29.111334],[115.987852,29.089279],[115.980685,29.099729],[115.958005,29.096594],[115.937486,29.089664],[115.930024,29.093789],[115.915101,29.072115],[115.921385,29.060451],[115.914463,29.041852],[115.906019,29.03057],[115.886924,29.020057],[115.882702,29.008388],[115.866944,28.980969],[115.858304,28.969626],[115.838865,28.967092],[115.823549,28.970341],[115.819671,28.965715],[115.825905,28.946163],[115.825021,28.935972],[115.816578,28.930078],[115.815989,28.909527],[115.7992,28.899387],[115.777503,28.900379],[115.764199,28.892444],[115.756149,28.896246],[115.754185,28.90622],[115.740538,28.918838],[115.738378,28.92848],[115.726793,28.929967],[115.726302,28.920877],[115.719626,28.9168],[115.666364,28.928921],[115.664645,28.936633],[115.681876,28.943133],[115.68109,28.954976],[115.668425,28.943849],[115.660915,28.948752],[115.645157,28.942032],[115.635437,28.948642],[115.622968,28.95123],[115.619287,28.962852],[115.571228,28.971112],[115.54251,29.001011],[115.525329,29.014993],[115.512811,29.018461],[115.483603,29.010314],[115.475552,29.006186]]]]}},{"type":"Feature","properties":{"adcode":360200,"name":"景德镇市","center":[117.214664,29.29256],"centroid":[117.27529,29.305934],"childrenNum":4,"level":"city","parent":{"adcode":360000},"subFeatureIndex":1,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.70766,29.548977],[117.690479,29.555931],[117.682968,29.568032],[117.682232,29.587246],[117.678992,29.595512],[117.668977,29.596989],[117.661418,29.611821],[117.647967,29.614886],[117.628282,29.606239],[117.608744,29.591571],[117.586458,29.584728],[117.574038,29.591078],[117.557986,29.590093],[117.545959,29.594198],[117.543357,29.58856],[117.528974,29.609522],[117.523427,29.629222],[117.530545,29.65406],[117.51891,29.662921],[117.493776,29.65953],[117.474239,29.668336],[117.451854,29.695953],[117.457254,29.725311],[117.455094,29.749141],[117.443165,29.758923],[117.434721,29.761164],[117.413564,29.78799],[117.409146,29.80263],[117.424805,29.834633],[117.418816,29.850412],[117.384061,29.843642],[117.375961,29.818086],[117.356227,29.813717],[117.347931,29.822346],[117.338604,29.8479],[117.333253,29.850575],[117.325693,29.84386],[117.303014,29.840366],[117.295454,29.833595],[117.29246,29.822783],[117.278174,29.825131],[117.271204,29.8301],[117.25741,29.831247],[117.249359,29.846099],[117.25682,29.859529],[117.261779,29.880653],[117.253679,29.908975],[117.246217,29.915086],[117.217058,29.926924],[117.206209,29.927524],[117.188929,29.921851],[117.17759,29.92196],[117.148823,29.911321],[117.134685,29.903846],[117.12796,29.895497],[117.133065,29.874267],[117.127715,29.861603],[117.110435,29.855434],[117.092763,29.836871],[117.073323,29.83223],[117.075581,29.822619],[117.09615,29.807545],[117.12796,29.795802],[117.135569,29.780943],[117.135471,29.772037],[117.108668,29.751983],[117.108275,29.745097],[117.122462,29.728536],[117.112988,29.712136],[117.090848,29.699233],[117.092468,29.691524],[117.08103,29.66664],[117.077643,29.650395],[117.071212,29.64197],[117.050987,29.631575],[117.042397,29.619482],[117.025853,29.607498],[117.027326,29.599233],[117.040188,29.577776],[117.046569,29.543556],[117.051135,29.532055],[117.047698,29.512994],[117.049171,29.48593],[117.042888,29.471738],[117.042348,29.454583],[117.045882,29.441428],[117.062622,29.434192],[117.070918,29.426791],[117.067285,29.412152],[117.071311,29.39762],[117.069101,29.392355],[117.054276,29.384457],[117.050104,29.370031],[117.042691,29.36482],[117.045342,29.349897],[117.069543,29.332229],[117.079459,29.309892],[117.055798,29.302317],[117.042249,29.302975],[117.035819,29.291887],[117.028062,29.28766],[117.025363,29.279095],[117.008378,29.28195],[117.011421,29.264215],[117.020159,29.252023],[117.014465,29.243291],[117.017508,29.229174],[117.011225,29.225274],[117.024037,29.191155],[117.031891,29.180109],[117.029339,29.167468],[117.032922,29.161806],[117.0584,29.148888],[117.068905,29.136188],[117.06866,29.130195],[117.079999,29.123542],[117.069838,29.112764],[117.077447,29.103249],[117.066696,29.104404],[117.061394,29.096044],[117.048582,29.093954],[117.044655,29.082623],[117.049466,29.051097],[117.046717,29.043063],[117.032824,29.027323],[117.038371,29.009378],[117.029879,29.002552],[117.014072,28.998809],[117.013483,28.975628],[117.00931,28.959327],[116.998658,28.948421],[116.985747,28.949248],[116.973671,28.929306],[116.970873,28.916524],[116.957079,28.904843],[116.963608,28.898836],[116.963853,28.886547],[116.984225,28.86979],[117.009997,28.856781],[117.029928,28.838696],[117.039746,28.818734],[117.047551,28.808917],[117.070427,28.81548],[117.085105,28.81173],[117.090308,28.801029],[117.116866,28.801029],[117.123149,28.795237],[117.122315,28.781004],[117.136502,28.797885],[117.142785,28.799595],[117.144307,28.786907],[117.152259,28.775267],[117.15869,28.782439],[117.17543,28.770853],[117.17111,28.759265],[117.173515,28.752698],[117.191826,28.741109],[117.193298,28.747456],[117.20346,28.741054],[117.226581,28.749497],[117.23689,28.747069],[117.242977,28.73719],[117.241652,28.726482],[117.248377,28.719196],[117.262809,28.726261],[117.273118,28.723446],[117.2795,28.736693],[117.299332,28.74591],[117.306401,28.759651],[117.324711,28.764011],[117.329424,28.77317],[117.348618,28.774218],[117.358387,28.76848],[117.371641,28.766825],[117.374488,28.772839],[117.384601,28.773556],[117.388135,28.782935],[117.402322,28.783652],[117.404777,28.804559],[117.393339,28.812557],[117.395842,28.829046],[117.411011,28.824414],[117.430402,28.830315],[117.438109,28.837814],[117.449939,28.841729],[117.475613,28.837428],[117.487984,28.829433],[117.504085,28.830039],[117.511449,28.825903],[117.520776,28.810406],[117.537172,28.812281],[117.549051,28.807372],[117.544879,28.817741],[117.543112,28.843163],[117.548511,28.866042],[117.557053,28.891341],[117.554353,28.899222],[117.537466,28.902253],[117.531968,28.913329],[117.514836,28.917075],[117.51302,28.929637],[117.499913,28.936193],[117.49412,28.943133],[117.49412,28.955472],[117.483026,28.963898],[117.47203,28.959712],[117.457057,28.970341],[117.488327,28.982126],[117.497213,28.988953],[117.491469,28.992257],[117.493924,29.000956],[117.481111,29.015489],[117.493973,29.022204],[117.494513,29.040586],[117.519303,29.05726],[117.509927,29.067879],[117.502563,29.070355],[117.499324,29.081577],[117.51459,29.097364],[117.49358,29.107484],[117.481995,29.133219],[117.497704,29.1435],[117.497262,29.158013],[117.486904,29.16362],[117.463292,29.158013],[117.454161,29.160212],[117.441054,29.156749],[117.439974,29.142071],[117.427603,29.136078],[117.398493,29.147734],[117.386025,29.168292],[117.384208,29.181208],[117.37277,29.190166],[117.384699,29.206265],[117.38789,29.219286],[117.385386,29.229614],[117.403402,29.246366],[117.432954,29.259492],[117.449154,29.271408],[117.453032,29.281675],[117.437078,29.297761],[117.431825,29.31066],[117.445374,29.322625],[117.490291,29.34644],[117.490389,29.35264],[117.48116,29.361309],[117.485677,29.378204],[117.486266,29.396523],[117.497654,29.403213],[117.511547,29.405736],[117.517438,29.411165],[117.508061,29.429094],[117.509927,29.436001],[117.526323,29.445649],[117.522494,29.439455],[117.529366,29.430409],[117.535503,29.430793],[117.546499,29.447403],[117.556415,29.45557],[117.574087,29.457653],[117.578358,29.461709],[117.571289,29.468066],[117.577474,29.484834],[117.586016,29.48582],[117.595932,29.46982],[117.604768,29.475793],[117.614292,29.500778],[117.621311,29.512556],[117.632749,29.504777],[117.647034,29.51524],[117.64728,29.523675],[117.655723,29.534465],[117.664461,29.527619],[117.673592,29.52729],[117.691362,29.53567],[117.70766,29.548977]]]]}},{"type":"Feature","properties":{"adcode":360300,"name":"萍乡市","center":[113.852186,27.622946],"centroid":[113.908082,27.509931],"childrenNum":5,"level":"city","parent":{"adcode":360000},"subFeatureIndex":2,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.921421,26.960038],[113.932712,26.981973],[113.948323,26.998576],[113.961184,26.999024],[113.95981,27.021401],[113.966584,27.033624],[113.97542,27.033736],[113.98784,27.051228],[113.996823,27.056386],[114.001094,27.068718],[113.99486,27.076733],[113.995841,27.085476],[114.00399,27.094778],[114.013416,27.122626],[114.03742,27.15013],[114.050527,27.158475],[114.073207,27.153491],[114.08597,27.168948],[114.091321,27.190898],[114.09731,27.196385],[114.095395,27.208982],[114.113411,27.223704],[114.122787,27.218274],[114.157641,27.242845],[114.157837,27.253142],[114.14851,27.265284],[114.144829,27.289285],[114.13884,27.303325],[114.142227,27.318594],[114.116749,27.309757],[114.100648,27.329387],[114.082681,27.332574],[114.071096,27.340626],[114.074336,27.353206],[114.054553,27.360027],[114.049496,27.375791],[114.038697,27.381381],[114.031971,27.379648],[114.02181,27.391665],[114.023184,27.401892],[114.030646,27.417035],[114.030057,27.426087],[114.041348,27.434244],[114.062849,27.431674],[114.070261,27.435864],[114.082043,27.428154],[114.112871,27.436869],[114.122346,27.429383],[114.144043,27.430947],[114.155923,27.439216],[114.173497,27.444802],[114.177915,27.450109],[114.18145,27.46653],[114.195489,27.473567],[114.205013,27.496797],[114.19814,27.505172],[114.202116,27.52019],[114.219003,27.525604],[114.226268,27.53928],[114.226121,27.547652],[114.240357,27.558199],[114.247622,27.557362],[114.261368,27.563277],[114.266571,27.570866],[114.281936,27.578064],[114.273247,27.576557],[114.265246,27.587158],[114.255526,27.589724],[114.236479,27.604395],[114.213112,27.627319],[114.206878,27.637468],[114.195882,27.641372],[114.2057,27.644829],[114.217089,27.665235],[114.202264,27.680398],[114.192298,27.6945],[114.190237,27.709492],[114.176688,27.722643],[114.178062,27.733117],[114.162894,27.737463],[114.157837,27.748717],[114.149247,27.75178],[114.142276,27.76125],[114.131574,27.761194],[114.12912,27.768379],[114.116308,27.770886],[114.111202,27.764258],[114.11562,27.756404],[114.106146,27.752282],[114.094708,27.756404],[114.069672,27.743759],[114.062603,27.745931],[114.043655,27.743201],[114.037322,27.754231],[114.020386,27.761807],[114.000996,27.752003],[113.984453,27.762141],[113.9738,27.761083],[113.973555,27.775397],[113.961871,27.779797],[113.960153,27.791992],[113.967124,27.808307],[113.958337,27.81471],[113.944346,27.810144],[113.939388,27.802795],[113.933792,27.830241],[113.920292,27.828293],[113.914353,27.832635],[113.900166,27.829963],[113.90424,27.834973],[113.896582,27.843266],[113.906695,27.84104],[113.911014,27.84911],[113.906498,27.856568],[113.910769,27.863969],[113.891182,27.870981],[113.902571,27.878659],[113.906842,27.889064],[113.935559,27.911927],[113.942383,27.909091],[113.940223,27.900413],[113.947095,27.899968],[113.956275,27.91393],[113.974046,27.92383],[113.991423,27.940737],[113.997658,27.94107],[114.002959,27.955361],[113.990785,27.973596],[113.977138,27.975598],[113.975371,27.967759],[113.958239,27.96926],[113.950286,27.979266],[113.95171,27.987549],[113.942235,27.989828],[113.92363,27.984158],[113.915825,27.993496],[113.900166,27.987604],[113.878713,27.99194],[113.869485,28.004223],[113.859814,28.001722],[113.852205,27.988605],[113.852009,27.976098],[113.84656,27.97204],[113.826777,27.973263],[113.818824,27.98149],[113.797274,27.969927],[113.792708,27.955083],[113.771011,27.952692],[113.753437,27.934675],[113.744993,27.915932],[113.736697,27.905753],[113.727959,27.876044],[113.731493,27.869145],[113.756333,27.860185],[113.76566,27.832969],[113.767231,27.808196],[113.763205,27.799287],[113.731199,27.77445],[113.699045,27.74114],[113.70042,27.731],[113.696296,27.718909],[113.669739,27.69489],[113.659233,27.672037],[113.645046,27.657765],[113.619422,27.641762],[113.607247,27.625367],[113.60494,27.594577],[113.608818,27.584982],[113.601504,27.579068],[113.599393,27.567406],[113.578824,27.545196],[113.58339,27.524656],[113.610438,27.514496],[113.621876,27.526777],[113.628601,27.512207],[113.622367,27.503665],[113.627031,27.498026],[113.613727,27.484122],[113.614365,27.477421],[113.591981,27.46815],[113.599639,27.450332],[113.597724,27.428768],[113.606855,27.417538],[113.620649,27.418264],[113.62978,27.401054],[113.619667,27.39893],[113.602682,27.38574],[113.6044,27.365506],[113.616673,27.345379],[113.625902,27.343198],[113.639156,27.349964],[113.657712,27.347448],[113.672193,27.333301],[113.699732,27.332071],[113.717994,27.342416],[113.722755,27.349013],[113.743619,27.348734],[113.762911,27.360866],[113.783234,27.362151],[113.810871,27.368412],[113.822898,27.364779],[113.837429,27.371878],[113.872626,27.384846],[113.876161,27.382051],[113.872921,27.346721],[113.857114,27.311883],[113.854856,27.302262],[113.869141,27.296501],[113.871743,27.284754],[113.859863,27.269089],[113.85304,27.234786],[113.847198,27.222472],[113.822997,27.193026],[113.8147,27.174324],[113.801054,27.158419],[113.779356,27.137191],[113.774152,27.120273],[113.771943,27.096403],[113.779994,27.087101],[113.793641,27.089399],[113.803312,27.099373],[113.807632,27.097692],[113.811951,27.081553],[113.816664,27.0468],[113.823929,27.036091],[113.838509,27.03497],[113.845529,27.02841],[113.848131,27.01669],[113.863299,27.018485],[113.870712,27.003904],[113.871497,26.990106],[113.879793,26.983319],[113.892508,26.964751],[113.921421,26.960038]]]]}},{"type":"Feature","properties":{"adcode":360400,"name":"九江市","center":[115.992811,29.712034],"centroid":[115.458122,29.320395],"childrenNum":13,"level":"city","parent":{"adcode":360000},"subFeatureIndex":3,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.688951,29.604104],[116.685662,29.611602],[116.670591,29.625118],[116.651888,29.637155],[116.652232,29.645416],[116.663572,29.659147],[116.677071,29.669047],[116.680262,29.68261],[116.673046,29.687532],[116.656699,29.686329],[116.654146,29.69475],[116.66799,29.700272],[116.687086,29.734767],[116.703089,29.741272],[116.720565,29.763349],[116.739317,29.774168],[116.745895,29.790339],[116.762536,29.80252],[116.780896,29.79247],[116.789781,29.795092],[116.812362,29.811696],[116.830722,29.841512],[116.861305,29.867335],[116.882708,29.893532],[116.891986,29.919341],[116.891839,29.927361],[116.900135,29.949507],[116.887911,29.968812],[116.868717,29.980481],[116.844909,29.969412],[116.835385,29.97023],[116.834845,29.957415],[116.828758,29.963141],[116.8265,29.976828],[116.82974,29.989041],[116.829544,30.00654],[116.80279,29.99651],[116.787327,30.02033],[116.783498,30.030739],[116.770293,30.035644],[116.764549,30.048939],[116.753602,30.048994],[116.747368,30.057221],[116.720319,30.053897],[116.685662,30.070622],[116.666861,30.076723],[116.64261,30.076396],[116.611046,30.070677],[116.596564,30.059727],[116.586059,30.046324],[116.571332,30.014443],[116.571185,29.989204],[116.564558,29.949343],[116.558716,29.924306],[116.551942,29.909848],[116.541485,29.901609],[116.52558,29.897516],[116.479878,29.897843],[116.467704,29.896152],[116.441784,29.879834],[116.392547,29.855707],[116.359657,29.843642],[116.343065,29.83567],[116.322791,29.819998],[116.312286,29.808966],[116.280819,29.788864],[116.261478,29.78209],[116.253624,29.783128],[116.227361,29.816885],[116.208068,29.827479],[116.187303,29.829063],[116.167324,29.82737],[116.13517,29.819452],[116.10714,29.80831],[116.077244,29.787007],[116.049558,29.761929],[115.988245,29.733893],[115.965811,29.72471],[115.94372,29.721211],[115.909848,29.724218],[115.837196,29.74854],[115.762579,29.793016],[115.706224,29.837854],[115.683054,29.847791],[115.667885,29.850193],[115.621447,29.842823],[115.578837,29.840693],[115.550021,29.837909],[115.511584,29.840311],[115.505791,29.822401],[115.487333,29.817868],[115.479283,29.811314],[115.473736,29.795146],[115.473981,29.786351],[115.466569,29.7663],[115.472017,29.742583],[115.462887,29.733182],[115.436624,29.716729],[115.419835,29.699561],[115.41257,29.688844],[115.3786,29.667516],[115.363235,29.653513],[115.359848,29.646456],[115.349539,29.650723],[115.329265,29.646128],[115.32087,29.637538],[115.307027,29.63732],[115.285918,29.618552],[115.27399,29.623586],[115.266823,29.632341],[115.270013,29.646456],[115.26859,29.658326],[115.250868,29.659913],[115.228729,29.654279],[115.214395,29.657834],[115.188917,29.657396],[115.176645,29.654771],[115.155242,29.6586],[115.137766,29.669649],[115.131875,29.679329],[115.122204,29.686165],[115.107674,29.679384],[115.109048,29.66314],[115.120683,29.654716],[115.142331,29.651598],[115.139042,29.636718],[115.132317,29.632341],[115.136293,29.617184],[115.128782,29.606786],[115.13163,29.601861],[115.120977,29.595183],[115.133593,29.590038],[115.160003,29.598412],[115.170901,29.595676],[115.172472,29.589108],[115.157794,29.584838],[115.153474,29.575641],[115.1575,29.564582],[115.152542,29.550018],[115.153278,29.528933],[115.157353,29.518965],[115.153965,29.510365],[115.124708,29.509707],[115.100949,29.520553],[115.086614,29.522963],[115.099525,29.550237],[115.087596,29.560038],[115.072084,29.557793],[115.056375,29.550894],[115.046754,29.551879],[115.033107,29.546787],[115.018969,29.555001],[115.012783,29.564473],[115.000511,29.572138],[114.994375,29.56294],[114.980237,29.564309],[114.970566,29.552317],[114.95687,29.553577],[114.947838,29.542899],[114.948672,29.525319],[114.966688,29.522197],[114.968701,29.515733],[114.957607,29.500504],[114.939247,29.494313],[114.925551,29.49886],[114.926827,29.516774],[114.921673,29.521101],[114.918629,29.51031],[114.900564,29.505982],[114.90837,29.520006],[114.901203,29.530029],[114.897128,29.527071],[114.885052,29.49508],[114.875578,29.490313],[114.871847,29.482533],[114.860507,29.476067],[114.864876,29.46982],[114.876265,29.46823],[114.884168,29.437755],[114.888537,29.436111],[114.904197,29.447842],[114.91804,29.454474],[114.907241,29.462421],[114.905277,29.472943],[114.923195,29.484944],[114.935762,29.486478],[114.934878,29.475354],[114.946905,29.462421],[114.931147,29.445978],[114.931196,29.423063],[114.92668,29.416154],[114.913033,29.421692],[114.89433,29.396742],[114.876952,29.391587],[114.877787,29.399375],[114.8663,29.404584],[114.831593,29.396688],[114.811908,29.383305],[114.805183,29.381715],[114.784565,29.386157],[114.768857,29.378808],[114.759972,29.363119],[114.740679,29.366795],[114.740728,29.386432],[114.732776,29.39422],[114.718982,29.397236],[114.688939,29.391916],[114.673279,29.396194],[114.654871,29.388406],[114.648489,29.382044],[114.621833,29.380069],[114.592674,29.354561],[114.556691,29.344081],[114.5481,29.337606],[114.519628,29.325424],[114.502545,29.323777],[114.497096,29.327619],[114.465924,29.324216],[114.457285,29.325533],[114.455223,29.335905],[114.442999,29.339582],[114.450117,29.34463],[114.443932,29.349129],[114.440005,29.341612],[114.428763,29.337826],[114.398868,29.336893],[114.375845,29.322899],[114.344869,29.325259],[114.333971,29.337881],[114.323761,29.357798],[114.306874,29.365259],[114.266326,29.349733],[114.258962,29.343971],[114.261368,29.317631],[114.251942,29.310386],[114.251648,29.301658],[114.261171,29.291063],[114.25366,29.281675],[114.25317,29.269486],[114.246346,29.265203],[114.25317,29.250321],[114.252286,29.234832],[114.238492,29.23269],[114.224305,29.235436],[114.2084,29.226098],[114.192397,29.223901],[114.179731,29.214671],[114.16525,29.217144],[114.149247,29.213573],[114.121216,29.211265],[114.093284,29.21176],[114.063242,29.204947],[114.059805,29.186154],[114.052049,29.175822],[114.041102,29.170436],[114.034819,29.152296],[114.012925,29.142016],[113.987202,29.126236],[113.973358,29.102149],[113.962068,29.101819],[113.952593,29.092744],[113.951857,29.064303],[113.942039,29.047355],[113.948175,29.031561],[113.946212,29.017966],[113.961479,28.996937],[113.955686,28.978381],[113.966731,28.94429],[113.973751,28.9379],[113.98514,28.948862],[114.008997,28.955251],[114.009439,28.94429],[114.003941,28.926497],[114.005414,28.917792],[114.012679,28.918012],[114.02397,28.907708],[114.028339,28.891176],[114.040611,28.906551],[114.048662,28.908149],[114.060149,28.902363],[114.066825,28.884507],[114.056369,28.870562],[114.062309,28.85667],[114.059658,28.849724],[114.069918,28.845864],[114.080423,28.833237],[114.097457,28.833734],[114.124898,28.843273],[114.134422,28.826951],[114.142914,28.827999],[114.149492,28.835057],[114.15391,28.829377],[114.151996,28.801636],[114.140263,28.789169],[114.137465,28.779735],[114.153518,28.770963],[114.163826,28.775984],[114.163728,28.78597],[114.197551,28.807483],[114.204424,28.820499],[114.213358,28.828936],[114.224992,28.820113],[114.226023,28.806159],[114.232846,28.800422],[114.246886,28.809358],[114.257342,28.807593],[114.267946,28.785308],[114.270498,28.767487],[114.280414,28.757941],[114.288465,28.757941],[114.313255,28.734762],[114.313943,28.728028],[114.341187,28.713013],[114.345556,28.70578],[114.36529,28.701695],[114.370347,28.714172],[114.393026,28.704345],[114.41006,28.706222],[114.4241,28.716049],[114.439759,28.707271],[114.465482,28.696891],[114.467642,28.701916],[114.459886,28.727034],[114.469753,28.732775],[114.484137,28.75336],[114.500876,28.753857],[114.510203,28.757665],[114.517861,28.754299],[114.530772,28.760148],[114.543584,28.760258],[114.54815,28.76699],[114.564055,28.764342],[114.567295,28.771459],[114.579861,28.762024],[114.583838,28.732388],[114.593165,28.722784],[114.614862,28.710694],[114.623699,28.695124],[114.641911,28.692198],[114.648243,28.686069],[114.674703,28.691204],[114.705826,28.685185],[114.716331,28.690983],[114.737096,28.687007],[114.741759,28.699873],[114.756437,28.705725],[114.762622,28.713675],[114.773078,28.71235],[114.803465,28.729849],[114.801501,28.744255],[114.795905,28.753416],[114.810583,28.767928],[114.816474,28.769749],[114.827175,28.760258],[114.828697,28.753747],[114.840233,28.741164],[114.855647,28.746683],[114.859771,28.754519],[114.871209,28.752533],[114.87008,28.76848],[114.879947,28.774163],[114.892612,28.769859],[114.900761,28.784756],[114.917206,28.800974],[114.914604,28.814212],[114.907535,28.819506],[114.910579,28.843163],[114.909499,28.854079],[114.923833,28.868964],[114.929478,28.867916],[114.955299,28.878114],[114.958245,28.891231],[114.951372,28.896026],[114.94828,28.906771],[114.954023,28.913549],[114.949458,28.923522],[114.971106,28.943023],[114.968848,28.959272],[114.96389,28.967478],[114.973855,28.978436],[114.984459,28.984438],[114.98063,28.994404],[115.000118,29.009268],[115.02373,29.009434],[115.040568,29.012791],[115.049208,29.020993],[115.05127,29.031506],[115.061039,29.036074],[115.068697,29.033432],[115.075962,29.039981],[115.098641,29.050877],[115.109294,29.051537],[115.146258,29.073491],[115.168692,29.078057],[115.182683,29.083558],[115.202859,29.086198],[115.216653,29.094669],[115.24861,29.090049],[115.270455,29.096704],[115.289453,29.099399],[115.295147,29.095714],[115.315078,29.099344],[115.335008,29.095714],[115.353171,29.086913],[115.367555,29.084603],[115.394701,29.076131],[115.395536,29.067604],[115.411441,29.063257],[115.423517,29.066228],[115.445951,29.060616],[115.447374,29.054619],[115.437851,29.041577],[115.450614,29.02991],[115.47133,29.02391],[115.470054,29.012957],[115.475552,29.006186],[115.483603,29.010314],[115.512811,29.018461],[115.525329,29.014993],[115.54251,29.001011],[115.571228,28.971112],[115.619287,28.962852],[115.622968,28.95123],[115.635437,28.948642],[115.645157,28.942032],[115.660915,28.948752],[115.668425,28.943849],[115.68109,28.954976],[115.681876,28.943133],[115.664645,28.936633],[115.666364,28.928921],[115.719626,28.9168],[115.726302,28.920877],[115.726793,28.929967],[115.738378,28.92848],[115.740538,28.918838],[115.754185,28.90622],[115.756149,28.896246],[115.764199,28.892444],[115.777503,28.900379],[115.7992,28.899387],[115.815989,28.909527],[115.816578,28.930078],[115.825021,28.935972],[115.825905,28.946163],[115.819671,28.965715],[115.823549,28.970341],[115.838865,28.967092],[115.858304,28.969626],[115.866944,28.980969],[115.882702,29.008388],[115.886924,29.020057],[115.906019,29.03057],[115.914463,29.041852],[115.921385,29.060451],[115.915101,29.072115],[115.930024,29.093789],[115.937486,29.089664],[115.958005,29.096594],[115.980685,29.099729],[115.987852,29.089279],[116.003315,29.111334],[116.008421,29.099289],[116.018631,29.088563],[116.065659,29.116503],[116.086179,29.112764],[116.092757,29.119473],[116.111951,29.117768],[116.132519,29.122387],[116.173509,29.118098],[116.155199,29.103359],[116.142288,29.084493],[116.153235,29.074041],[116.165606,29.054344],[116.175227,29.045484],[116.191869,29.03866],[116.227901,29.034368],[116.236049,29.025727],[116.237817,29.012241],[116.234479,29.004369],[116.236884,28.991982],[116.249893,28.999414],[116.27051,29.001121],[116.274732,29.006956],[116.278217,29.025231],[116.273898,29.0462],[116.265307,29.066448],[116.262018,29.082513],[116.27105,29.102149],[116.290784,29.108969],[116.318127,29.091424],[116.373157,29.049666],[116.4005,29.053023],[116.406931,29.05649],[116.437661,29.094944],[116.43825,29.105119],[116.448461,29.105944],[116.45764,29.115458],[116.451651,29.124092],[116.473005,29.155705],[116.547573,29.155815],[116.567945,29.170436],[116.646488,29.229394],[116.611095,29.248673],[116.59357,29.252572],[116.588513,29.276185],[116.575554,29.286177],[116.562741,29.300615],[116.564705,29.312087],[116.552432,29.322844],[116.537804,29.343258],[116.546836,29.360047],[116.554543,29.355439],[116.554003,29.366191],[116.548898,29.367672],[116.559894,29.376504],[116.55636,29.384896],[116.542615,29.397071],[116.537558,29.41111],[116.540455,29.414948],[116.518659,29.431122],[116.517972,29.440277],[116.524402,29.454474],[116.538147,29.467408],[116.537166,29.47382],[116.524402,29.486807],[116.520082,29.498532],[116.529115,29.512665],[116.533189,29.526414],[116.530195,29.546842],[116.49971,29.566663],[116.500937,29.585659],[116.512081,29.600219],[116.528624,29.604214],[116.566619,29.594691],[116.581395,29.576462],[116.596319,29.571316],[116.607118,29.5717],[116.63721,29.581335],[116.653263,29.603721],[116.663277,29.605254],[116.679035,29.598522],[116.688951,29.604104]]],[[[116.705838,29.697101],[116.703432,29.710059],[116.698916,29.709458],[116.705838,29.697101]]],[[[116.706525,29.696609],[116.705543,29.688024],[116.717128,29.690758],[116.716196,29.696937],[116.706525,29.696609]]]]}},{"type":"Feature","properties":{"adcode":360500,"name":"新余市","center":[114.930835,27.810834],"centroid":[114.857327,27.842246],"childrenNum":2,"level":"city","parent":{"adcode":360000},"subFeatureIndex":4,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.530919,27.60116],[114.529937,27.591174],[114.534944,27.586098],[114.533275,27.567351],[114.540148,27.559929],[114.572989,27.565007],[114.59071,27.56484],[114.593656,27.555632],[114.601805,27.549158],[114.620115,27.550163],[114.623502,27.535261],[114.634744,27.530238],[114.651827,27.542294],[114.660614,27.563947],[114.666996,27.567685],[114.671757,27.586544],[114.692473,27.594522],[114.730469,27.600156],[114.735819,27.589668],[114.745343,27.604061],[114.759726,27.605455],[114.77244,27.613766],[114.78162,27.628155],[114.79242,27.62375],[114.793893,27.617113],[114.808374,27.614882],[114.819223,27.606682],[114.826783,27.590728],[114.847106,27.587604],[114.848431,27.582639],[114.865269,27.5919],[114.879603,27.591453],[114.888488,27.608467],[114.91318,27.615216],[114.926386,27.62414],[114.926091,27.630944],[114.943714,27.639866],[114.954072,27.63942],[114.97037,27.649959],[114.971303,27.654698],[114.960748,27.66111],[114.976015,27.674712],[114.980335,27.674322],[114.997664,27.655479],[115.009985,27.650628],[115.019214,27.654364],[115.019951,27.665124],[115.01514,27.66819],[115.015582,27.689205],[115.025645,27.696116],[115.023092,27.708377],[115.054608,27.723367],[115.058535,27.73256],[115.069433,27.721528],[115.079104,27.716959],[115.082884,27.70403],[115.102863,27.710941],[115.111208,27.726543],[115.119014,27.731],[115.118572,27.738689],[115.129126,27.741474],[115.139042,27.726376],[115.135459,27.718909],[115.139189,27.709324],[115.160053,27.717182],[115.158825,27.724203],[115.165796,27.733117],[115.17257,27.733285],[115.191175,27.742979],[115.198097,27.750611],[115.225636,27.754789],[115.240069,27.760749],[115.250279,27.761083],[115.280224,27.767377],[115.297602,27.777736],[115.31925,27.798229],[115.324356,27.812037],[115.350815,27.830909],[115.360682,27.845827],[115.360535,27.861576],[115.382625,27.864748],[115.388663,27.85885],[115.392541,27.869645],[115.405795,27.872539],[115.38886,27.876434],[115.378649,27.871092],[115.367456,27.87393],[115.363235,27.868143],[115.35003,27.871426],[115.339034,27.866807],[115.331572,27.876489],[115.314832,27.870591],[115.3004,27.881052],[115.290827,27.880551],[115.267755,27.867809],[115.263386,27.876712],[115.250378,27.873763],[115.235749,27.889286],[115.225391,27.888007],[115.226275,27.878882],[115.21734,27.87482],[115.20654,27.882165],[115.190292,27.877936],[115.180867,27.880217],[115.165551,27.890343],[115.144197,27.893236],[115.149351,27.895183],[115.136833,27.90197],[115.133053,27.921439],[115.12731,27.935009],[115.119554,27.941682],[115.117001,27.959975],[115.133937,27.968871],[115.139091,27.97493],[115.127801,27.985992],[115.1332,27.994274],[115.129715,28.002556],[115.147584,28.010336],[115.152738,28.032841],[115.146356,28.040675],[115.166974,28.048786],[115.154604,28.055841],[115.158776,28.067561],[115.152051,28.075059],[115.126426,28.082001],[115.115037,28.076781],[115.103747,28.082556],[115.091081,28.082279],[115.06153,28.066561],[115.051613,28.080779],[115.047539,28.075281],[115.036003,28.073282],[115.027805,28.080835],[115.018281,28.081501],[115.012391,28.074726],[114.995258,28.073726],[114.98279,28.093052],[114.963105,28.090498],[114.95039,28.066117],[114.920888,28.057896],[114.910579,28.042897],[114.914997,28.038619],[114.912199,28.025117],[114.905375,28.034896],[114.900024,28.02784],[114.882794,28.022284],[114.87921,28.045897],[114.861636,28.04773],[114.852751,28.043897],[114.824475,28.04573],[114.814805,28.034063],[114.796249,28.030063],[114.785645,28.045286],[114.779804,28.044841],[114.775337,28.059174],[114.783142,28.062951],[114.787511,28.085111],[114.778331,28.08811],[114.784762,28.099827],[114.7827,28.1076],[114.759922,28.101548],[114.751234,28.107156],[114.740925,28.107656],[114.729732,28.100104],[114.720847,28.103214],[114.701358,28.094052],[114.693848,28.101326],[114.686533,28.099549],[114.679612,28.105379],[114.666947,28.104158],[114.654969,28.096773],[114.644611,28.096939],[114.636462,28.089165],[114.615402,28.078058],[114.588894,28.079835],[114.580549,28.064117],[114.567736,28.056174],[114.580451,28.046897],[114.588599,28.026007],[114.594588,28.001944],[114.601903,27.99483],[114.600332,27.985492],[114.611132,27.984492],[114.600774,27.9801],[114.591152,27.966147],[114.565969,27.953137],[114.556397,27.958029],[114.523703,27.955138],[114.513099,27.944796],[114.520757,27.934453],[114.521494,27.925165],[114.511627,27.920271],[114.506865,27.923496],[114.492187,27.917323],[114.485609,27.895183],[114.490518,27.866919],[114.505147,27.836698],[114.513001,27.827792],[114.525863,27.827235],[114.547315,27.816658],[114.551291,27.832913],[114.568865,27.843378],[114.581481,27.830019],[114.585114,27.807973],[114.582807,27.801681],[114.56646,27.790211],[114.567491,27.778404],[114.559293,27.771053],[114.565429,27.762977],[114.567736,27.771721],[114.577407,27.775286],[114.575345,27.768936],[114.5832,27.75334],[114.578291,27.741586],[114.584181,27.723645],[114.569553,27.699795],[114.557869,27.693943],[114.540884,27.659103],[114.541768,27.646836],[114.533423,27.641093],[114.528121,27.627207],[114.535632,27.618563],[114.538528,27.608021],[114.530919,27.60116]]]]}},{"type":"Feature","properties":{"adcode":360600,"name":"鹰潭市","center":[117.033838,28.238638],"centroid":[117.112472,28.221953],"childrenNum":3,"level":"city","parent":{"adcode":360000},"subFeatureIndex":5,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.446356,27.932729],[117.435458,27.936121],[117.432218,27.942405],[117.445767,27.964201],[117.44827,27.986382],[117.465795,28.01945],[117.465599,28.039397],[117.46123,28.053452],[117.46123,28.066561],[117.444834,28.090886],[117.436832,28.107045],[117.426082,28.112264],[117.399966,28.115373],[117.362363,28.132083],[117.353282,28.133581],[117.331437,28.130861],[117.309543,28.14324],[117.281316,28.146514],[117.274345,28.150954],[117.270664,28.162442],[117.280973,28.173097],[117.283771,28.187301],[117.27842,28.19357],[117.274051,28.209879],[117.28544,28.223968],[117.297319,28.230567],[117.302719,28.240217],[117.294767,28.252804],[117.288336,28.27487],[117.265411,28.278362],[117.264724,28.289448],[117.257311,28.30929],[117.277978,28.309899],[117.281365,28.326135],[117.29462,28.338546],[117.317692,28.348574],[117.319508,28.363474],[117.327411,28.384244],[117.310181,28.397478],[117.314108,28.414642],[117.326184,28.430198],[117.32805,28.450954],[117.320981,28.462409],[117.313863,28.506172],[117.315875,28.534601],[117.30429,28.54389],[117.29295,28.564901],[117.283231,28.576731],[117.274493,28.601824],[117.262711,28.613208],[117.246561,28.617131],[117.236939,28.626635],[117.223292,28.624259],[117.225109,28.609561],[117.216125,28.595026],[117.199091,28.589223],[117.147694,28.562192],[117.12634,28.576675],[117.108717,28.581484],[117.096346,28.58961],[117.079116,28.606576],[117.068954,28.608732],[117.055307,28.603316],[117.044949,28.591931],[117.054522,28.56573],[117.049613,28.549696],[117.033953,28.531891],[117.032186,28.526305],[117.011127,28.514635],[117.013434,28.509934],[117.003861,28.496326],[116.990165,28.51281],[116.976518,28.534435],[116.965179,28.527632],[116.911131,28.522323],[116.904406,28.504513],[116.897337,28.5023],[116.880744,28.507279],[116.879272,28.492619],[116.891004,28.474362],[116.896011,28.458702],[116.871466,28.427818],[116.867392,28.413867],[116.878093,28.399527],[116.879026,28.388951],[116.871417,28.382361],[116.855021,28.379813],[116.824389,28.378318],[116.798715,28.358157],[116.788652,28.341095],[116.79685,28.329515],[116.801317,28.312504],[116.815897,28.295157],[116.817615,28.287564],[116.806864,28.255355],[116.793856,28.251584],[116.7672,28.255521],[116.754535,28.262507],[116.739268,28.264447],[116.726455,28.260455],[116.706869,28.249311],[116.692338,28.231566],[116.692191,28.216203],[116.704561,28.206717],[116.73053,28.203556],[116.725965,28.189354],[116.732346,28.181531],[116.746091,28.179811],[116.760818,28.173984],[116.782123,28.179755],[116.804361,28.176315],[116.808141,28.166882],[116.795426,28.142241],[116.79469,28.125754],[116.805441,28.114873],[116.802544,28.108488],[116.81305,28.101937],[116.829053,28.108377],[116.839509,28.1076],[116.861059,28.091775],[116.875246,28.088887],[116.893704,28.073559],[116.905338,28.072282],[116.912947,28.077058],[116.920114,28.096217],[116.933221,28.09333],[116.93813,28.068783],[116.943039,28.063784],[116.943923,28.051397],[116.938768,28.042675],[116.964786,28.049341],[116.973769,28.045286],[116.972837,28.033674],[116.9802,28.015727],[116.991982,28.006779],[117.000523,27.995442],[117.019668,27.987049],[117.04544,27.966369],[117.047404,27.944073],[117.044851,27.935398],[117.032186,27.925999],[117.015741,27.903417],[117.011028,27.890566],[117.011912,27.880496],[117.026639,27.854898],[117.045146,27.848331],[117.083141,27.890677],[117.09453,27.89001],[117.103808,27.879216],[117.109257,27.89841],[117.115442,27.907867],[117.123542,27.909313],[117.144258,27.892736],[117.166201,27.900913],[117.185837,27.88439],[117.201496,27.880551],[117.203067,27.890399],[117.223096,27.894238],[117.240375,27.881775],[117.248573,27.869478],[117.261779,27.867197],[117.276604,27.848053],[117.280776,27.871203],[117.289023,27.868532],[117.303357,27.872149],[117.318084,27.894071],[117.327706,27.894126],[117.336149,27.87827],[117.333008,27.862077],[117.340715,27.856345],[117.35392,27.859573],[117.353871,27.864915],[117.366585,27.882332],[117.378416,27.888674],[117.384355,27.886393],[117.396039,27.893236],[117.40458,27.893236],[117.42996,27.913151],[117.446356,27.932729]]]]}},{"type":"Feature","properties":{"adcode":360700,"name":"赣州市","center":[114.940278,25.85097],"centroid":[115.279217,25.710043],"childrenNum":18,"level":"city","parent":{"adcode":360000},"subFeatureIndex":6,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.02073,25.972198],[114.020828,25.954371],[114.028044,25.949221],[114.031431,25.938919],[114.02181,25.919219],[114.022497,25.90682],[114.02829,25.893343],[114.013956,25.885585],[114.010274,25.871087],[113.991325,25.860552],[113.977286,25.839819],[113.970069,25.833927],[113.971297,25.814719],[113.960693,25.796868],[113.961724,25.777314],[113.94685,25.761329],[113.937327,25.756227],[113.918967,25.739501],[113.914303,25.728671],[113.91828,25.717443],[113.913813,25.703775],[113.926674,25.68551],[113.932958,25.663442],[113.937572,25.662647],[113.943266,25.642674],[113.951268,25.637567],[113.94955,25.625195],[113.95711,25.611914],[113.978415,25.605613],[113.983078,25.599369],[113.979495,25.573253],[113.992356,25.56519],[113.984109,25.538612],[113.986122,25.528957],[113.967713,25.53049],[113.960104,25.523845],[113.953281,25.505041],[113.945868,25.49953],[113.955637,25.496633],[113.952053,25.486974],[113.958975,25.483678],[113.951415,25.470836],[113.939928,25.459413],[113.944739,25.441679],[113.961871,25.452536],[113.997903,25.444237],[114.002959,25.432812],[113.989214,25.422522],[113.983078,25.413028],[113.987693,25.403533],[114.007868,25.397164],[114.010814,25.386417],[114.023037,25.384654],[114.040611,25.391193],[114.045078,25.384028],[114.024363,25.374019],[114.047876,25.367251],[114.041397,25.360653],[114.051411,25.348821],[114.049104,25.341881],[114.036733,25.342734],[114.029321,25.32834],[114.035457,25.319977],[114.056124,25.311897],[114.037273,25.308312],[114.027602,25.301824],[114.025492,25.28902],[114.014594,25.280482],[114.022104,25.26961],[114.031382,25.263633],[114.029124,25.25424],[114.039924,25.250768],[114.055927,25.277693],[114.064567,25.281108],[114.068641,25.273709],[114.076299,25.27849],[114.083516,25.27553],[114.103741,25.294426],[114.11562,25.301881],[114.126567,25.300516],[114.131329,25.308426],[114.14473,25.310645],[114.147234,25.305353],[114.158525,25.313604],[114.168539,25.312523],[114.173644,25.305068],[114.194066,25.317359],[114.204963,25.310246],[114.205209,25.29915],[114.21591,25.300743],[114.227741,25.295394],[114.236086,25.300117],[114.257048,25.292719],[114.265933,25.2938],[114.270989,25.302166],[114.287287,25.299662],[114.292883,25.28919],[114.302848,25.290841],[114.295681,25.299776],[114.312323,25.31184],[114.304763,25.314742],[114.306236,25.334087],[114.314826,25.338581],[114.338193,25.334087],[114.357338,25.326804],[114.372801,25.325439],[114.382914,25.317132],[114.387675,25.323504],[114.40093,25.327828],[114.403089,25.334257],[114.417571,25.335054],[114.430138,25.343872],[114.429942,25.349902],[114.438778,25.376066],[114.448007,25.38653],[114.45861,25.387838],[114.462684,25.381469],[114.477755,25.371516],[114.496949,25.377602],[114.508829,25.384654],[114.505932,25.398699],[114.520267,25.403305],[114.531312,25.414222],[114.540442,25.417008],[114.55674,25.406375],[114.579027,25.397619],[114.573333,25.39506],[114.572989,25.384483],[114.580991,25.384028],[114.580401,25.393525],[114.586194,25.395913],[114.599792,25.385848],[114.599546,25.359401],[114.611573,25.358264],[114.627577,25.330616],[114.636413,25.324528],[114.657129,25.32817],[114.664787,25.326804],[114.674408,25.317189],[114.685748,25.313718],[114.692228,25.322139],[114.702929,25.314116],[114.714367,25.315368],[114.712993,25.306206],[114.722811,25.302166],[114.723989,25.283954],[114.734641,25.283328],[114.742888,25.274563],[114.743625,25.248092],[114.749368,25.242569],[114.738372,25.240121],[114.738323,25.231979],[114.748435,25.235167],[114.740679,25.226228],[114.726247,25.233061],[114.712698,25.221786],[114.702193,25.22116],[114.693946,25.213643],[114.695173,25.19519],[114.680152,25.193082],[114.690755,25.181006],[114.685699,25.173202],[114.702635,25.163175],[114.724872,25.162776],[114.736212,25.152179],[114.732089,25.142492],[114.737685,25.130412],[114.735181,25.121293],[114.716036,25.114625],[114.71206,25.110008],[114.693946,25.104422],[114.67971,25.106816],[114.66513,25.10123],[114.665768,25.091084],[114.654232,25.080594],[114.640144,25.073924],[114.608726,25.075862],[114.604701,25.08373],[114.598319,25.07113],[114.584918,25.078713],[114.5616,25.077573],[114.546333,25.05334],[114.54113,25.049747],[114.539706,25.031612],[114.532735,25.022885],[114.516879,25.024539],[114.51143,25.006628],[114.506129,25.000068],[114.484627,25.001722],[114.479866,25.005773],[114.456205,24.996588],[114.456646,24.978502],[114.442165,24.972282],[114.423658,24.972568],[114.424836,24.961326],[114.420418,24.956247],[114.395922,24.951111],[114.396168,24.937356],[114.402157,24.928451],[114.400046,24.919546],[114.390768,24.913152],[114.401077,24.902648],[114.404857,24.892656],[114.40304,24.877581],[114.38743,24.863361],[114.377857,24.860791],[114.356602,24.828975],[114.357485,24.818691],[114.349287,24.81692],[114.342415,24.807322],[114.344133,24.789608],[114.333922,24.779892],[114.341875,24.763661],[114.335788,24.749085],[114.319686,24.742282],[114.311734,24.734049],[114.293178,24.732048],[114.284342,24.72736],[114.27958,24.708034],[114.272511,24.700428],[114.25744,24.697283],[114.230834,24.69774],[114.210314,24.688533],[114.191562,24.694195],[114.16903,24.689677],[114.169864,24.682585],[114.189795,24.657988],[114.181499,24.653297],[114.173988,24.655929],[114.174577,24.645574],[114.19382,24.652611],[114.207123,24.653927],[114.208792,24.648663],[114.231619,24.640482],[114.242861,24.645402],[114.258471,24.641512],[114.266031,24.630927],[114.278991,24.631556],[114.281936,24.621028],[114.28979,24.618796],[114.291067,24.600139],[114.299952,24.588406],[114.301032,24.579019],[114.308592,24.573924],[114.324006,24.579534],[114.331566,24.577015],[114.338586,24.583369],[114.351104,24.578503],[114.348894,24.588292],[114.356307,24.589951],[114.356111,24.582281],[114.376581,24.571978],[114.377612,24.564936],[114.391652,24.563505],[114.387332,24.548047],[114.389492,24.534304],[114.403433,24.528692],[114.40628,24.517983],[114.402402,24.501775],[114.410944,24.502577],[114.422284,24.496906],[114.428812,24.486252],[114.442705,24.498682],[114.451443,24.5004],[114.46995,24.51071],[114.478197,24.526917],[114.492531,24.534533],[114.50068,24.53419],[114.534159,24.558982],[114.546726,24.542836],[114.562582,24.537511],[114.572203,24.542321],[114.592478,24.537969],[114.608284,24.563562],[114.624337,24.575698],[114.638622,24.570375],[114.665179,24.583712],[114.677844,24.553772],[114.686484,24.538599],[114.699886,24.53711],[114.705187,24.526058],[114.718687,24.554173],[114.72664,24.549822],[114.738127,24.565051],[114.732874,24.575183],[114.735672,24.582797],[114.73042,24.592413],[114.732579,24.612387],[114.752706,24.616221],[114.769004,24.605748],[114.7827,24.613245],[114.799341,24.602085],[114.804201,24.605405],[114.826341,24.588292],[114.832821,24.596362],[114.846664,24.602486],[114.859231,24.597278],[114.854273,24.58251],[114.861636,24.567283],[114.869049,24.56236],[114.882892,24.56923],[114.886623,24.580278],[114.893299,24.582339],[114.89379,24.590982],[114.90189,24.607923],[114.898552,24.622973],[114.905866,24.632529],[114.909646,24.661535],[114.91966,24.667084],[114.936793,24.665425],[114.937431,24.651867],[114.955201,24.655414],[114.962319,24.665139],[114.978912,24.673261],[114.991233,24.673319],[115.003849,24.679153],[115.007874,24.672403],[115.02486,24.669143],[115.030898,24.678123],[115.046655,24.688761],[115.045575,24.697912],[115.054853,24.709921],[115.059419,24.702773],[115.073802,24.70426],[115.074244,24.697969],[115.082884,24.700543],[115.092014,24.678695],[115.111601,24.671431],[115.120732,24.664338],[115.127997,24.670173],[115.125641,24.681441],[115.138502,24.681269],[115.148271,24.689848],[115.155438,24.688761],[115.168889,24.69511],[115.195152,24.691907],[115.188132,24.697168],[115.184352,24.711408],[115.200159,24.713638],[115.224556,24.726388],[115.233785,24.723472],[115.247579,24.731648],[115.258968,24.72879],[115.269915,24.74937],[115.278555,24.754115],[115.306683,24.758688],[115.321999,24.748742],[115.338984,24.749085],[115.358522,24.735136],[115.363775,24.739366],[115.362793,24.757488],[115.372513,24.774406],[115.389449,24.774406],[115.401279,24.790351],[115.412963,24.792865],[115.450958,24.76629],[115.465685,24.767262],[115.478743,24.761146],[115.482866,24.749656],[115.500097,24.741139],[115.496513,24.733478],[115.506577,24.724959],[115.507902,24.716497],[115.52366,24.717526],[115.527882,24.712551],[115.52312,24.703002],[115.534214,24.691964],[115.556206,24.682699],[115.555175,24.671774],[115.559643,24.660906],[115.558023,24.647576],[115.567693,24.631957],[115.570737,24.619254],[115.578198,24.615191],[115.594202,24.615191],[115.608683,24.626178],[115.629055,24.619769],[115.635584,24.612158],[115.649624,24.614733],[115.660522,24.606778],[115.671665,24.604718],[115.685165,24.585372],[115.687079,24.570604],[115.678243,24.564879],[115.686098,24.547016],[115.708532,24.54484],[115.718006,24.539744],[115.743925,24.543695],[115.759438,24.550165],[115.785112,24.567283],[115.806073,24.562932],[115.844166,24.562703],[115.848928,24.569974],[115.840976,24.576214],[115.840976,24.584056],[115.818051,24.60323],[115.796795,24.629611],[115.787173,24.630583],[115.789431,24.644887],[115.78251,24.661421],[115.761794,24.668113],[115.779564,24.677265],[115.796746,24.674463],[115.797777,24.68207],[115.805631,24.685902],[115.808036,24.697626],[115.801213,24.705632],[115.794979,24.701743],[115.78089,24.702087],[115.769157,24.709864],[115.771661,24.726274],[115.756738,24.737537],[115.75713,24.749885],[115.765377,24.763318],[115.776668,24.774463],[115.765377,24.793836],[115.774115,24.804522],[115.772839,24.814064],[115.77927,24.819834],[115.780792,24.835145],[115.791837,24.838686],[115.785553,24.846112],[115.791051,24.85508],[115.782559,24.862904],[115.796648,24.858564],[115.807055,24.861019],[115.80514,24.873241],[115.809264,24.892884],[115.824285,24.90927],[115.85045,24.900307],[115.851726,24.894597],[115.86557,24.890429],[115.864686,24.876096],[115.859875,24.864846],[115.893502,24.871071],[115.907001,24.880151],[115.904056,24.888031],[115.885451,24.898822],[115.882015,24.923828],[115.878431,24.932561],[115.892569,24.937127],[115.884273,24.950882],[115.870233,24.9595],[115.872295,24.972054],[115.882947,24.976676],[115.892274,24.970057],[115.894974,24.962068],[115.904449,24.96435],[115.917261,24.958073],[115.925066,24.960755],[115.917114,24.974222],[115.899245,24.991739],[115.881965,24.995048],[115.874651,25.009709],[115.87362,25.019919],[115.888249,25.022942],[115.897871,25.03703],[115.912303,25.042904],[115.91839,25.038684],[115.928306,25.050489],[115.920943,25.061209],[115.913874,25.060696],[115.919372,25.072441],[115.908327,25.084528],[115.8801,25.092224],[115.883831,25.103225],[115.874013,25.114682],[115.873964,25.121863],[115.888347,25.128987],[115.88496,25.141467],[115.875878,25.15235],[115.867435,25.149045],[115.855113,25.153205],[115.853346,25.163916],[115.860464,25.16591],[115.853444,25.176449],[115.857519,25.178158],[115.855604,25.209428],[115.870528,25.221216],[115.878775,25.214326],[115.890802,25.2178],[115.9017,25.231352],[115.918292,25.230441],[115.930908,25.236021],[115.950642,25.27183],[115.946666,25.284694],[115.951575,25.293174],[115.965614,25.286914],[115.974696,25.289873],[115.977641,25.29841],[115.986379,25.290784],[116.000026,25.301483],[116.008028,25.321456],[116.000861,25.32487],[116.005721,25.330844],[116.000124,25.343246],[115.991681,25.345067],[116.000026,25.357695],[115.992761,25.371061],[115.996001,25.379592],[116.008028,25.392899],[116.002039,25.411208],[116.015195,25.414449],[116.021773,25.420646],[116.022117,25.437928],[116.0122,25.455207],[116.01922,25.474245],[116.007242,25.473734],[116.005475,25.49044],[116.013084,25.498167],[116.015784,25.508166],[116.036549,25.514813],[116.035322,25.540543],[116.04028,25.547983],[116.054172,25.546904],[116.062861,25.563316],[116.054418,25.578193],[116.052012,25.598574],[116.040967,25.606975],[116.046907,25.616965],[116.041605,25.62633],[116.050932,25.627579],[116.059621,25.639156],[116.067132,25.634332],[116.068948,25.646363],[116.057559,25.660151],[116.065217,25.67615],[116.056725,25.681596],[116.060161,25.694926],[116.067672,25.691296],[116.067623,25.704058],[116.082595,25.696231],[116.106944,25.701109],[116.110085,25.707575],[116.108024,25.721753],[116.118234,25.73281],[116.116761,25.738934],[116.129623,25.759175],[116.14597,25.759628],[116.165606,25.766431],[116.165949,25.74846],[116.175473,25.74948],[116.177044,25.768472],[116.18156,25.776407],[116.176258,25.78525],[116.160108,25.798738],[116.159273,25.809562],[116.131783,25.824295],[116.12923,25.838686],[116.130703,25.858682],[116.153481,25.87675],[116.169778,25.877033],[116.177682,25.894362],[116.191967,25.900987],[116.207185,25.901384],[116.223581,25.908575],[116.232171,25.900421],[116.258287,25.902969],[116.268252,25.91418],[116.280672,25.914406],[116.302419,25.922559],[116.304186,25.929522],[116.320287,25.940843],[116.326276,25.956578],[116.348318,25.961672],[116.369966,25.963313],[116.368003,25.974914],[116.359903,25.991493],[116.361032,26.000715],[116.371046,26.005468],[116.384742,26.030696],[116.400107,26.033072],[116.401334,26.046136],[116.418221,26.054563],[116.421707,26.065646],[116.443552,26.078933],[116.458426,26.091879],[116.477178,26.102733],[116.489254,26.113698],[116.4895,26.128732],[116.481891,26.137943],[116.482087,26.160149],[116.471484,26.175177],[116.463384,26.175403],[116.453615,26.165912],[116.435943,26.160036],[116.41508,26.15981],[116.392498,26.170318],[116.399371,26.18992],[116.397064,26.209857],[116.388767,26.205904],[116.393136,26.217481],[116.385429,26.238203],[116.39564,26.244583],[116.391664,26.256608],[116.401727,26.27484],[116.418172,26.279243],[116.42205,26.291546],[116.413067,26.298036],[116.427254,26.300237],[116.437121,26.30825],[116.438692,26.32134],[116.453811,26.331608],[116.459309,26.345147],[116.489647,26.359361],[116.499808,26.361391],[116.494556,26.369061],[116.498287,26.387107],[116.511099,26.391167],[116.512179,26.402274],[116.519444,26.410336],[116.533435,26.408814],[116.534564,26.400752],[116.545216,26.397256],[116.553611,26.400244],[116.559256,26.385641],[116.553709,26.365395],[116.571087,26.370979],[116.584243,26.366072],[116.601424,26.372953],[116.608935,26.383836],[116.610555,26.394042],[116.604418,26.40577],[116.604173,26.415805],[116.610653,26.433279],[116.627982,26.445453],[116.630141,26.459655],[116.637161,26.466135],[116.638094,26.479489],[116.610751,26.47701],[116.597448,26.485349],[116.601179,26.490419],[116.589004,26.497968],[116.598773,26.507263],[116.586943,26.519993],[116.578794,26.521626],[116.579628,26.531595],[116.562594,26.544659],[116.540847,26.556371],[116.538982,26.561214],[116.513946,26.548883],[116.503343,26.549784],[116.499759,26.5669],[116.473742,26.58362],[116.464218,26.597467],[116.451946,26.59893],[116.446104,26.588911],[116.440017,26.566675],[116.433488,26.559919],[116.423572,26.558793],[116.409336,26.550741],[116.397211,26.552317],[116.37674,26.536945],[116.384693,26.522415],[116.375513,26.509066],[116.365941,26.506812],[116.342918,26.511093],[116.31636,26.50608],[116.304922,26.499039],[116.273112,26.530356],[116.239142,26.548657],[116.243217,26.555583],[116.264423,26.567519],[116.269627,26.581818],[116.257502,26.60439],[116.236197,26.618234],[116.241253,26.625662],[116.248862,26.625887],[116.276647,26.646874],[116.272376,26.655875],[116.256422,26.658969],[116.246947,26.653344],[116.227213,26.653063],[116.221175,26.665664],[116.198103,26.66302],[116.197416,26.677813],[116.190691,26.6813],[116.187892,26.69491],[116.175522,26.701096],[116.159617,26.696766],[116.152793,26.699859],[116.14381,26.713861],[116.134237,26.709587],[116.119952,26.724206],[116.118676,26.729828],[116.130948,26.741465],[116.131783,26.751302],[116.13895,26.75726],[116.145283,26.783898],[116.142975,26.790473],[116.15245,26.800811],[116.150682,26.812946],[116.138999,26.821485],[116.139735,26.835135],[116.145577,26.839684],[116.15785,26.866472],[116.169287,26.873041],[116.16428,26.881576],[116.171644,26.897014],[116.158635,26.898867],[116.151026,26.918232],[116.151959,26.934676],[116.147737,26.943205],[116.156181,26.969744],[116.171938,26.978776],[116.172871,26.987134],[116.182198,26.996725],[116.189071,27.017195],[116.185732,27.033792],[116.187696,27.042483],[116.178025,27.053415],[116.158782,27.039175],[116.150486,27.04708],[116.145135,27.063],[116.140668,27.065298],[116.144792,27.086372],[116.125156,27.099654],[116.127463,27.110356],[116.123192,27.118368],[116.122996,27.134446],[116.115534,27.131477],[116.095849,27.141336],[116.067475,27.142232],[116.059719,27.134614],[116.049901,27.134166],[116.02192,27.125315],[116.021675,27.116295],[116.007488,27.112317],[116.004101,27.077405],[116.014262,27.067484],[116.000812,27.044613],[115.985299,27.031606],[115.970572,27.01069],[115.966498,26.999081],[115.948777,26.986797],[115.943769,26.9721],[115.935375,26.965031],[115.928895,26.955269],[115.920452,26.956784],[115.904252,26.951061],[115.882505,26.92463],[115.864539,26.9097],[115.835478,26.897519],[115.832827,26.883148],[115.823205,26.858835],[115.807055,26.85788],[115.793457,26.828282],[115.789873,26.824519],[115.785406,26.804126],[115.760812,26.813958],[115.748834,26.832607],[115.728904,26.839347],[115.721786,26.848221],[115.708139,26.852714],[115.705292,26.841313],[115.688061,26.823058],[115.691105,26.815137],[115.687423,26.803227],[115.695817,26.800418],[115.688699,26.79272],[115.691154,26.780808],[115.676869,26.776705],[115.680943,26.765297],[115.687423,26.765072],[115.705341,26.754225],[115.724486,26.758609],[115.728069,26.745456],[115.731555,26.711274],[115.721491,26.705482],[115.70863,26.708294],[115.701708,26.700759],[115.715159,26.689399],[115.704408,26.68535],[115.698812,26.672695],[115.687767,26.666282],[115.683005,26.654188],[115.675789,26.652838],[115.67034,26.641811],[115.665725,26.648674],[115.649968,26.653569],[115.643979,26.661163],[115.618796,26.662232],[115.607063,26.657957],[115.592385,26.660657],[115.591845,26.650531],[115.554635,26.646311],[115.537405,26.656438],[115.534754,26.687712],[115.526703,26.695417],[115.508197,26.686531],[115.501864,26.677476],[115.488659,26.681806],[115.475896,26.675113],[115.46274,26.672526],[115.46112,26.678882],[115.449485,26.687824],[115.426708,26.675282],[115.427837,26.671289],[115.410803,26.659082],[115.406286,26.661613],[115.390676,26.655988],[115.368536,26.652669],[115.357491,26.656269],[115.357786,26.661895],[115.34733,26.673538],[115.336334,26.67382],[115.328872,26.662907],[115.317336,26.661726],[115.299614,26.654863],[115.302069,26.632583],[115.286017,26.620429],[115.283906,26.611199],[115.26913,26.60332],[115.251408,26.572248],[115.235356,26.558905],[115.218715,26.532045],[115.230791,26.527427],[115.226913,26.517064],[115.217291,26.513572],[115.192599,26.522809],[115.185137,26.520669],[115.165894,26.522752],[115.114939,26.503996],[115.096138,26.487715],[115.073606,26.457232],[115.06094,26.446862],[115.054755,26.431137],[115.044643,26.42629],[115.03777,26.410054],[115.043514,26.397989],[115.032763,26.392802],[115.031683,26.382539],[115.037083,26.367708],[115.026529,26.359473],[115.045379,26.340916],[115.050239,26.339731],[115.067469,26.323991],[115.074489,26.311014],[115.069875,26.296004],[115.071347,26.286636],[115.091131,26.266938],[115.079153,26.256269],[115.078613,26.24735],[115.070366,26.230299],[115.061333,26.227871],[115.047195,26.21172],[115.051466,26.203362],[115.046017,26.195963],[115.065211,26.193252],[115.081607,26.187039],[115.086418,26.172408],[115.099132,26.167889],[115.095254,26.154217],[115.078269,26.144554],[115.063837,26.143424],[115.054117,26.148001],[115.04641,26.157211],[115.028443,26.160488],[115.02157,26.175459],[115.013863,26.168906],[115.008562,26.189016],[114.99732,26.19811],[114.984704,26.195963],[114.974199,26.201442],[114.96551,26.197884],[114.945089,26.201668],[114.939051,26.199691],[114.930509,26.208276],[114.909008,26.211777],[114.901301,26.201894],[114.889765,26.203701],[114.871258,26.184667],[114.860458,26.185119],[114.861096,26.194325],[114.851573,26.199183],[114.834981,26.189411],[114.825752,26.190315],[114.817456,26.182577],[114.798556,26.183424],[114.775042,26.192631],[114.765764,26.182351],[114.76601,26.176137],[114.739747,26.185966],[114.728161,26.184215],[114.726051,26.17416],[114.714809,26.162578],[114.698315,26.169358],[114.685601,26.181955],[114.667192,26.185119],[114.668959,26.194325],[114.653987,26.198505],[114.641813,26.191332],[114.63602,26.202346],[114.606468,26.201555],[114.610052,26.216125],[114.607499,26.223184],[114.598663,26.224709],[114.594539,26.232218],[114.576327,26.23555],[114.565331,26.228944],[114.552224,26.22629],[114.543093,26.213415],[114.532932,26.22053],[114.51845,26.213245],[114.522819,26.207485],[114.520021,26.192744],[114.502349,26.171448],[114.4861,26.161787],[114.4807,26.152182],[114.466415,26.14495],[114.452817,26.142859],[114.456548,26.114376],[114.445012,26.110476],[114.428714,26.082042],[114.424296,26.099285],[114.426309,26.10782],[114.412073,26.107142],[114.401813,26.113698],[114.393615,26.112116],[114.375059,26.116524],[114.356945,26.090862],[114.344575,26.088374],[114.33348,26.076502],[114.317183,26.069717],[114.292,26.048568],[114.294503,26.036861],[114.281789,26.031884],[114.27742,26.035504],[114.257686,26.026171],[114.231079,26.02668],[114.221359,26.018875],[114.190089,26.029339],[114.161323,26.02538],[114.151554,26.018535],[114.150867,26.011634],[114.133587,26.002356],[114.122296,26.004562],[114.105066,25.990701],[114.082828,25.992229],[114.075612,25.986684],[114.054504,25.990871],[114.038991,25.986797],[114.02073,25.972198]]]]}},{"type":"Feature","properties":{"adcode":360800,"name":"吉安市","center":[114.986373,27.111699],"centroid":[114.830492,26.972536],"childrenNum":13,"level":"city","parent":{"adcode":360000},"subFeatureIndex":7,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.281936,27.578064],[114.266571,27.570866],[114.261368,27.563277],[114.247622,27.557362],[114.240357,27.558199],[114.226121,27.547652],[114.226268,27.53928],[114.219003,27.525604],[114.202116,27.52019],[114.19814,27.505172],[114.205013,27.496797],[114.195489,27.473567],[114.18145,27.46653],[114.177915,27.450109],[114.173497,27.444802],[114.155923,27.439216],[114.144043,27.430947],[114.122346,27.429383],[114.112871,27.436869],[114.082043,27.428154],[114.070261,27.435864],[114.062849,27.431674],[114.041348,27.434244],[114.030057,27.426087],[114.030646,27.417035],[114.023184,27.401892],[114.02181,27.391665],[114.031971,27.379648],[114.038697,27.381381],[114.049496,27.375791],[114.054553,27.360027],[114.074336,27.353206],[114.071096,27.340626],[114.082681,27.332574],[114.100648,27.329387],[114.116749,27.309757],[114.142227,27.318594],[114.13884,27.303325],[114.144829,27.289285],[114.14851,27.265284],[114.157837,27.253142],[114.157641,27.242845],[114.122787,27.218274],[114.113411,27.223704],[114.095395,27.208982],[114.09731,27.196385],[114.091321,27.190898],[114.08597,27.168948],[114.073207,27.153491],[114.050527,27.158475],[114.03742,27.15013],[114.013416,27.122626],[114.00399,27.094778],[113.995841,27.085476],[113.99486,27.076733],[114.001094,27.068718],[113.996823,27.056386],[113.98784,27.051228],[113.97542,27.033736],[113.966584,27.033624],[113.95981,27.021401],[113.961184,26.999024],[113.948323,26.998576],[113.932712,26.981973],[113.921421,26.960038],[113.92638,26.947189],[113.902178,26.925809],[113.903013,26.910655],[113.891379,26.897856],[113.892066,26.860519],[113.877437,26.859509],[113.859028,26.833787],[113.857948,26.826822],[113.83576,26.806373],[113.836791,26.796148],[113.845922,26.788169],[113.85353,26.7694],[113.852843,26.750009],[113.85677,26.735619],[113.856427,26.71476],[113.861385,26.705932],[113.862661,26.689512],[113.860501,26.664088],[113.868012,26.653006],[113.881462,26.654356],[113.884948,26.63579],[113.901344,26.627913],[113.906449,26.615702],[113.934774,26.613],[113.953182,26.613732],[113.960006,26.618121],[113.984404,26.614576],[113.996381,26.615589],[114.017686,26.599606],[114.019748,26.587448],[114.0331,26.58559],[114.042575,26.579905],[114.060885,26.580636],[114.069672,26.575851],[114.084694,26.577765],[114.10811,26.575007],[114.105901,26.559693],[114.096279,26.548263],[114.097506,26.541224],[114.086265,26.525737],[114.084203,26.50501],[114.072716,26.479884],[114.086756,26.478194],[114.098095,26.484166],[114.110122,26.482983],[114.090535,26.45571],[114.086412,26.439592],[114.085774,26.423471],[114.089063,26.41806],[114.08543,26.406277],[114.071685,26.409829],[114.062505,26.406108],[114.049889,26.39111],[114.042968,26.390264],[114.031873,26.369287],[114.039679,26.361391],[114.039777,26.345654],[114.047582,26.337362],[114.035604,26.323371],[114.041789,26.309547],[114.025737,26.296795],[114.021221,26.283024],[114.029321,26.266374],[114.011256,26.258527],[114.002714,26.251358],[113.989116,26.246672],[113.978905,26.237752],[113.980182,26.226459],[113.971542,26.219344],[113.970069,26.20212],[113.949501,26.192687],[113.946114,26.184497],[113.95117,26.169584],[113.944494,26.163765],[113.962657,26.150826],[113.97218,26.154725],[113.985483,26.166364],[113.992111,26.167833],[114.013366,26.184045],[114.027897,26.180035],[114.03639,26.188564],[114.040955,26.17738],[114.055338,26.181334],[114.059118,26.166138],[114.074679,26.171787],[114.088572,26.168397],[114.100353,26.178397],[114.102808,26.18783],[114.141932,26.203362],[114.153223,26.204379],[114.181302,26.214488],[114.183757,26.201047],[114.192249,26.196698],[114.216794,26.203136],[114.222145,26.188847],[114.232208,26.179922],[114.218463,26.16851],[114.225385,26.159641],[114.235694,26.160093],[114.237265,26.152182],[114.225336,26.147719],[114.214978,26.137435],[114.188911,26.121272],[114.171043,26.12325],[114.156708,26.115789],[114.108748,26.100302],[114.107471,26.095158],[114.118958,26.089901],[114.120186,26.084247],[114.106931,26.069434],[114.100059,26.071809],[114.085577,26.066324],[114.069869,26.078537],[114.043802,26.076671],[114.045864,26.070678],[114.035211,26.058973],[114.036586,26.046815],[114.028093,26.031149],[114.008457,26.01565],[114.009047,26.004166],[114.017588,25.992908],[114.027062,25.991493],[114.028241,25.981365],[114.02073,25.972198],[114.038991,25.986797],[114.054504,25.990871],[114.075612,25.986684],[114.082828,25.992229],[114.105066,25.990701],[114.122296,26.004562],[114.133587,26.002356],[114.150867,26.011634],[114.151554,26.018535],[114.161323,26.02538],[114.190089,26.029339],[114.221359,26.018875],[114.231079,26.02668],[114.257686,26.026171],[114.27742,26.035504],[114.281789,26.031884],[114.294503,26.036861],[114.292,26.048568],[114.317183,26.069717],[114.33348,26.076502],[114.344575,26.088374],[114.356945,26.090862],[114.375059,26.116524],[114.393615,26.112116],[114.401813,26.113698],[114.412073,26.107142],[114.426309,26.10782],[114.424296,26.099285],[114.428714,26.082042],[114.445012,26.110476],[114.456548,26.114376],[114.452817,26.142859],[114.466415,26.14495],[114.4807,26.152182],[114.4861,26.161787],[114.502349,26.171448],[114.520021,26.192744],[114.522819,26.207485],[114.51845,26.213245],[114.532932,26.22053],[114.543093,26.213415],[114.552224,26.22629],[114.565331,26.228944],[114.576327,26.23555],[114.594539,26.232218],[114.598663,26.224709],[114.607499,26.223184],[114.610052,26.216125],[114.606468,26.201555],[114.63602,26.202346],[114.641813,26.191332],[114.653987,26.198505],[114.668959,26.194325],[114.667192,26.185119],[114.685601,26.181955],[114.698315,26.169358],[114.714809,26.162578],[114.726051,26.17416],[114.728161,26.184215],[114.739747,26.185966],[114.76601,26.176137],[114.765764,26.182351],[114.775042,26.192631],[114.798556,26.183424],[114.817456,26.182577],[114.825752,26.190315],[114.834981,26.189411],[114.851573,26.199183],[114.861096,26.194325],[114.860458,26.185119],[114.871258,26.184667],[114.889765,26.203701],[114.901301,26.201894],[114.909008,26.211777],[114.930509,26.208276],[114.939051,26.199691],[114.945089,26.201668],[114.96551,26.197884],[114.974199,26.201442],[114.984704,26.195963],[114.99732,26.19811],[115.008562,26.189016],[115.013863,26.168906],[115.02157,26.175459],[115.028443,26.160488],[115.04641,26.157211],[115.054117,26.148001],[115.063837,26.143424],[115.078269,26.144554],[115.095254,26.154217],[115.099132,26.167889],[115.086418,26.172408],[115.081607,26.187039],[115.065211,26.193252],[115.046017,26.195963],[115.051466,26.203362],[115.047195,26.21172],[115.061333,26.227871],[115.070366,26.230299],[115.078613,26.24735],[115.079153,26.256269],[115.091131,26.266938],[115.071347,26.286636],[115.069875,26.296004],[115.074489,26.311014],[115.067469,26.323991],[115.050239,26.339731],[115.045379,26.340916],[115.026529,26.359473],[115.037083,26.367708],[115.031683,26.382539],[115.032763,26.392802],[115.043514,26.397989],[115.03777,26.410054],[115.044643,26.42629],[115.054755,26.431137],[115.06094,26.446862],[115.073606,26.457232],[115.096138,26.487715],[115.114939,26.503996],[115.165894,26.522752],[115.185137,26.520669],[115.192599,26.522809],[115.217291,26.513572],[115.226913,26.517064],[115.230791,26.527427],[115.218715,26.532045],[115.235356,26.558905],[115.251408,26.572248],[115.26913,26.60332],[115.283906,26.611199],[115.286017,26.620429],[115.302069,26.632583],[115.299614,26.654863],[115.317336,26.661726],[115.328872,26.662907],[115.336334,26.67382],[115.34733,26.673538],[115.357786,26.661895],[115.357491,26.656269],[115.368536,26.652669],[115.390676,26.655988],[115.406286,26.661613],[115.410803,26.659082],[115.427837,26.671289],[115.426708,26.675282],[115.449485,26.687824],[115.46112,26.678882],[115.46274,26.672526],[115.475896,26.675113],[115.488659,26.681806],[115.501864,26.677476],[115.508197,26.686531],[115.526703,26.695417],[115.534754,26.687712],[115.537405,26.656438],[115.554635,26.646311],[115.591845,26.650531],[115.592385,26.660657],[115.607063,26.657957],[115.618796,26.662232],[115.643979,26.661163],[115.649968,26.653569],[115.665725,26.648674],[115.67034,26.641811],[115.675789,26.652838],[115.683005,26.654188],[115.687767,26.666282],[115.698812,26.672695],[115.704408,26.68535],[115.715159,26.689399],[115.701708,26.700759],[115.70863,26.708294],[115.721491,26.705482],[115.731555,26.711274],[115.728069,26.745456],[115.724486,26.758609],[115.705341,26.754225],[115.687423,26.765072],[115.680943,26.765297],[115.676869,26.776705],[115.691154,26.780808],[115.688699,26.79272],[115.695817,26.800418],[115.687423,26.803227],[115.691105,26.815137],[115.688061,26.823058],[115.705292,26.841313],[115.708139,26.852714],[115.721786,26.848221],[115.728904,26.839347],[115.748834,26.832607],[115.760812,26.813958],[115.785406,26.804126],[115.789873,26.824519],[115.793457,26.828282],[115.807055,26.85788],[115.823205,26.858835],[115.832827,26.883148],[115.835478,26.897519],[115.864539,26.9097],[115.882505,26.92463],[115.904252,26.951061],[115.920452,26.956784],[115.928895,26.955269],[115.935375,26.965031],[115.930908,26.971988],[115.913776,26.984666],[115.894729,26.979281],[115.883438,26.989938],[115.885402,26.999866],[115.874749,26.997118],[115.861004,27.005867],[115.86287,27.021457],[115.853493,27.035867],[115.85261,27.055993],[115.845639,27.056274],[115.848094,27.068325],[115.826445,27.08116],[115.819425,27.105985],[115.814173,27.110468],[115.792377,27.115286],[115.772348,27.110076],[115.756492,27.110356],[115.741618,27.104248],[115.718399,27.100326],[115.711673,27.114558],[115.698468,27.120441],[115.695768,27.127164],[115.681532,27.13523],[115.6752,27.154499],[115.665185,27.169116],[115.667002,27.179084],[115.659491,27.191682],[115.640395,27.187819],[115.630037,27.213292],[115.627926,27.247042],[115.641819,27.254932],[115.645059,27.260808],[115.670782,27.265732],[115.675789,27.263885],[115.694983,27.271327],[115.693461,27.285313],[115.686441,27.289956],[115.681876,27.31082],[115.681925,27.32413],[115.676721,27.33688],[115.683349,27.356337],[115.68973,27.365282],[115.701217,27.369363],[115.702003,27.384343],[115.696112,27.401165],[115.712606,27.415303],[115.719822,27.425081],[115.724977,27.440445],[115.713293,27.452287],[115.702739,27.455248],[115.68384,27.448098],[115.675936,27.45117],[115.668425,27.446645],[115.651048,27.451282],[115.630724,27.469099],[115.627092,27.479543],[115.619925,27.484066],[115.604609,27.511537],[115.591944,27.523707],[115.604805,27.533419],[115.609027,27.567964],[115.607014,27.575776],[115.621986,27.593239],[115.634652,27.612093],[115.634603,27.616276],[115.653404,27.638138],[115.681925,27.65704],[115.694737,27.677332],[115.71241,27.692382],[115.725468,27.70977],[115.735089,27.729607],[115.730327,27.757964],[115.697732,27.769716],[115.686785,27.798563],[115.673874,27.821335],[115.65414,27.828349],[115.645402,27.821056],[115.630135,27.821836],[115.613347,27.827959],[115.591158,27.841819],[115.578248,27.863302],[115.560919,27.861131],[115.54359,27.870536],[115.531711,27.88478],[115.524249,27.885392],[115.510553,27.896741],[115.516198,27.906699],[115.513842,27.915654],[115.529011,27.924831],[115.53711,27.940292],[115.52744,27.949078],[115.510897,27.948355],[115.485517,27.957307],[115.46431,27.941515],[115.474521,27.935843],[115.471232,27.926222],[115.459991,27.921605],[115.451596,27.924108],[115.45032,27.932617],[115.439373,27.935954],[115.443987,27.955083],[115.428475,27.960309],[115.429653,27.94424],[115.425284,27.943684],[115.413355,27.954749],[115.393621,27.945574],[115.393621,27.935954],[115.408201,27.928669],[115.405648,27.912984],[115.391265,27.903361],[115.382478,27.893403],[115.392198,27.883611],[115.407661,27.877936],[115.405795,27.872539],[115.392541,27.869645],[115.388663,27.85885],[115.382625,27.864748],[115.360535,27.861576],[115.360682,27.845827],[115.350815,27.830909],[115.324356,27.812037],[115.31925,27.798229],[115.297602,27.777736],[115.280224,27.767377],[115.250279,27.761083],[115.240069,27.760749],[115.225636,27.754789],[115.198097,27.750611],[115.191175,27.742979],[115.17257,27.733285],[115.165796,27.733117],[115.158825,27.724203],[115.160053,27.717182],[115.139189,27.709324],[115.135459,27.718909],[115.139042,27.726376],[115.129126,27.741474],[115.118572,27.738689],[115.119014,27.731],[115.111208,27.726543],[115.102863,27.710941],[115.082884,27.70403],[115.079104,27.716959],[115.069433,27.721528],[115.058535,27.73256],[115.054608,27.723367],[115.023092,27.708377],[115.025645,27.696116],[115.015582,27.689205],[115.01514,27.66819],[115.019951,27.665124],[115.019214,27.654364],[115.009985,27.650628],[114.997664,27.655479],[114.980335,27.674322],[114.976015,27.674712],[114.960748,27.66111],[114.971303,27.654698],[114.97037,27.649959],[114.954072,27.63942],[114.943714,27.639866],[114.926091,27.630944],[114.926386,27.62414],[114.91318,27.615216],[114.888488,27.608467],[114.879603,27.591453],[114.865269,27.5919],[114.848431,27.582639],[114.847106,27.587604],[114.826783,27.590728],[114.819223,27.606682],[114.808374,27.614882],[114.793893,27.617113],[114.79242,27.62375],[114.78162,27.628155],[114.77244,27.613766],[114.759726,27.605455],[114.745343,27.604061],[114.735819,27.589668],[114.730469,27.600156],[114.692473,27.594522],[114.671757,27.586544],[114.666996,27.567685],[114.660614,27.563947],[114.651827,27.542294],[114.634744,27.530238],[114.623502,27.535261],[114.620115,27.550163],[114.601805,27.549158],[114.593656,27.555632],[114.59071,27.56484],[114.572989,27.565007],[114.540148,27.559929],[114.533275,27.567351],[114.534944,27.586098],[114.529937,27.591174],[114.530919,27.60116],[114.517616,27.607463],[114.502791,27.595526],[114.503772,27.58554],[114.483891,27.57572],[114.464599,27.557864],[114.447614,27.568076],[114.424689,27.559148],[114.416982,27.548154],[114.38635,27.550386],[114.385123,27.555967],[114.375157,27.555744],[114.372801,27.546647],[114.365094,27.546759],[114.348354,27.564226],[114.334757,27.557306],[114.308788,27.57572],[114.281936,27.578064]]]]}},{"type":"Feature","properties":{"adcode":360900,"name":"宜春市","center":[114.391136,27.8043],"centroid":[114.978015,28.304641],"childrenNum":10,"level":"city","parent":{"adcode":360000},"subFeatureIndex":8,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.530919,27.60116],[114.538528,27.608021],[114.535632,27.618563],[114.528121,27.627207],[114.533423,27.641093],[114.541768,27.646836],[114.540884,27.659103],[114.557869,27.693943],[114.569553,27.699795],[114.584181,27.723645],[114.578291,27.741586],[114.5832,27.75334],[114.575345,27.768936],[114.577407,27.775286],[114.567736,27.771721],[114.565429,27.762977],[114.559293,27.771053],[114.567491,27.778404],[114.56646,27.790211],[114.582807,27.801681],[114.585114,27.807973],[114.581481,27.830019],[114.568865,27.843378],[114.551291,27.832913],[114.547315,27.816658],[114.525863,27.827235],[114.513001,27.827792],[114.505147,27.836698],[114.490518,27.866919],[114.485609,27.895183],[114.492187,27.917323],[114.506865,27.923496],[114.511627,27.920271],[114.521494,27.925165],[114.520757,27.934453],[114.513099,27.944796],[114.523703,27.955138],[114.556397,27.958029],[114.565969,27.953137],[114.591152,27.966147],[114.600774,27.9801],[114.611132,27.984492],[114.600332,27.985492],[114.601903,27.99483],[114.594588,28.001944],[114.588599,28.026007],[114.580451,28.046897],[114.567736,28.056174],[114.580549,28.064117],[114.588894,28.079835],[114.615402,28.078058],[114.636462,28.089165],[114.644611,28.096939],[114.654969,28.096773],[114.666947,28.104158],[114.679612,28.105379],[114.686533,28.099549],[114.693848,28.101326],[114.701358,28.094052],[114.720847,28.103214],[114.729732,28.100104],[114.740925,28.107656],[114.751234,28.107156],[114.759922,28.101548],[114.7827,28.1076],[114.784762,28.099827],[114.778331,28.08811],[114.787511,28.085111],[114.783142,28.062951],[114.775337,28.059174],[114.779804,28.044841],[114.785645,28.045286],[114.796249,28.030063],[114.814805,28.034063],[114.824475,28.04573],[114.852751,28.043897],[114.861636,28.04773],[114.87921,28.045897],[114.882794,28.022284],[114.900024,28.02784],[114.905375,28.034896],[114.912199,28.025117],[114.914997,28.038619],[114.910579,28.042897],[114.920888,28.057896],[114.95039,28.066117],[114.963105,28.090498],[114.98279,28.093052],[114.995258,28.073726],[115.012391,28.074726],[115.018281,28.081501],[115.027805,28.080835],[115.036003,28.073282],[115.047539,28.075281],[115.051613,28.080779],[115.06153,28.066561],[115.091081,28.082279],[115.103747,28.082556],[115.115037,28.076781],[115.126426,28.082001],[115.152051,28.075059],[115.158776,28.067561],[115.154604,28.055841],[115.166974,28.048786],[115.146356,28.040675],[115.152738,28.032841],[115.147584,28.010336],[115.129715,28.002556],[115.1332,27.994274],[115.127801,27.985992],[115.139091,27.97493],[115.133937,27.968871],[115.117001,27.959975],[115.119554,27.941682],[115.12731,27.935009],[115.133053,27.921439],[115.136833,27.90197],[115.149351,27.895183],[115.144197,27.893236],[115.165551,27.890343],[115.180867,27.880217],[115.190292,27.877936],[115.20654,27.882165],[115.21734,27.87482],[115.226275,27.878882],[115.225391,27.888007],[115.235749,27.889286],[115.250378,27.873763],[115.263386,27.876712],[115.267755,27.867809],[115.290827,27.880551],[115.3004,27.881052],[115.314832,27.870591],[115.331572,27.876489],[115.339034,27.866807],[115.35003,27.871426],[115.363235,27.868143],[115.367456,27.87393],[115.378649,27.871092],[115.38886,27.876434],[115.405795,27.872539],[115.407661,27.877936],[115.392198,27.883611],[115.382478,27.893403],[115.391265,27.903361],[115.405648,27.912984],[115.408201,27.928669],[115.393621,27.935954],[115.393621,27.945574],[115.413355,27.954749],[115.425284,27.943684],[115.429653,27.94424],[115.428475,27.960309],[115.443987,27.955083],[115.439373,27.935954],[115.45032,27.932617],[115.451596,27.924108],[115.459991,27.921605],[115.471232,27.926222],[115.474521,27.935843],[115.46431,27.941515],[115.485517,27.957307],[115.510897,27.948355],[115.52744,27.949078],[115.53711,27.940292],[115.529011,27.924831],[115.513842,27.915654],[115.516198,27.906699],[115.510553,27.896741],[115.524249,27.885392],[115.531711,27.88478],[115.54359,27.870536],[115.560919,27.861131],[115.578248,27.863302],[115.591158,27.841819],[115.613347,27.827959],[115.630135,27.821836],[115.645402,27.821056],[115.65414,27.828349],[115.673874,27.821335],[115.686785,27.798563],[115.697732,27.769716],[115.730327,27.757964],[115.735089,27.729607],[115.75232,27.737686],[115.761205,27.745764],[115.785946,27.739636],[115.807447,27.727936],[115.826347,27.735513],[115.831305,27.726877],[115.842645,27.730332],[115.851775,27.752839],[115.848241,27.764425],[115.858402,27.780632],[115.859139,27.79628],[115.86557,27.81148],[115.859581,27.830353],[115.86552,27.85501],[115.886138,27.854731],[115.901552,27.866473],[115.906805,27.880829],[115.920255,27.882554],[115.944898,27.894126],[115.96046,27.891122],[115.969345,27.896352],[115.979703,27.895962],[115.995019,27.90058],[116.003413,27.897576],[116.027026,27.908201],[116.041458,27.92422],[116.057707,27.928613],[116.059572,27.934731],[116.079061,27.947076],[116.080091,27.959253],[116.08662,27.962033],[116.091088,27.979044],[116.104391,27.985937],[116.104784,27.99433],[116.119412,28.007557],[116.120198,28.022895],[116.116565,28.02984],[116.121376,28.041619],[116.135121,28.042452],[116.144154,28.061895],[116.137085,28.069505],[116.149357,28.076503],[116.143859,28.090276],[116.134925,28.100548],[116.140521,28.111431],[116.139834,28.119981],[116.150781,28.128808],[116.133599,28.134914],[116.124518,28.131916],[116.107189,28.135746],[116.094573,28.14496],[116.08181,28.148013],[116.077441,28.156615],[116.085491,28.17404],[116.082841,28.178701],[116.098353,28.203944],[116.116025,28.237167],[116.111362,28.246095],[116.101151,28.249477],[116.098107,28.264447],[116.083626,28.275812],[116.073513,28.289005],[116.044305,28.295989],[116.021135,28.283905],[115.99659,28.281743],[115.994577,28.287785],[115.979949,28.291056],[115.973861,28.278861],[115.966105,28.275978],[115.949709,28.2813],[115.960018,28.292774],[115.957662,28.300644],[115.940284,28.30735],[115.929779,28.315164],[115.922121,28.314942],[115.916525,28.302695],[115.908818,28.315108],[115.879364,28.286899],[115.872049,28.303249],[115.859875,28.312726],[115.863213,28.343145],[115.847897,28.381585],[115.836067,28.392328],[115.814222,28.40296],[115.800575,28.398586],[115.801409,28.380422],[115.790757,28.376269],[115.77765,28.362145],[115.76847,28.361591],[115.757278,28.368515],[115.727038,28.350457],[115.721688,28.360151],[115.707304,28.367407],[115.692332,28.367629],[115.686883,28.363253],[115.681238,28.374275],[115.674218,28.374995],[115.668278,28.363198],[115.690958,28.362145],[115.694296,28.354723],[115.672549,28.337383],[115.669996,28.346247],[115.659,28.34464],[115.648888,28.334446],[115.635535,28.337549],[115.621986,28.345582],[115.630332,28.348407],[115.63853,28.366133],[115.652324,28.375604],[115.654582,28.381253],[115.648249,28.392771],[115.638824,28.397257],[115.622085,28.398032],[115.616685,28.409161],[115.618108,28.418019],[115.598522,28.417299],[115.589931,28.409161],[115.588311,28.399139],[115.576529,28.396758],[115.565926,28.399139],[115.559348,28.389061],[115.552721,28.387179],[115.540645,28.393325],[115.531661,28.39255],[115.53873,28.4075],[115.551003,28.409715],[115.553408,28.430475],[115.541823,28.442763],[115.55115,28.453832],[115.54575,28.481333],[115.567791,28.497875],[115.560133,28.503075],[115.562343,28.514746],[115.572406,28.514525],[115.568626,28.530287],[115.569411,28.542342],[115.56303,28.55904],[115.566319,28.565675],[115.582126,28.568273],[115.587329,28.573524],[115.574811,28.589554],[115.553457,28.580213],[115.527538,28.582479],[115.525673,28.607737],[115.537454,28.61155],[115.547076,28.62122],[115.541676,28.631497],[115.547076,28.632325],[115.539761,28.642767],[115.543738,28.649341],[115.546879,28.673257],[115.553703,28.683694],[115.55385,28.69518],[115.546094,28.70821],[115.559495,28.729408],[115.550905,28.73294],[115.535589,28.732995],[115.526654,28.739508],[115.514824,28.731781],[115.489052,28.734762],[115.477025,28.73156],[115.473392,28.724605],[115.463672,28.724881],[115.460187,28.733271],[115.453167,28.732333],[115.438686,28.759982],[115.444871,28.760589],[115.440109,28.771184],[115.453167,28.773225],[115.453756,28.766107],[115.46647,28.787459],[115.467943,28.795017],[115.481639,28.797058],[115.48213,28.810847],[115.48969,28.823091],[115.487333,28.829433],[115.493764,28.844155],[115.505791,28.832741],[115.517818,28.842501],[115.530581,28.861742],[115.521402,28.883074],[115.52258,28.892278],[115.512173,28.896632],[115.504073,28.913769],[115.506233,28.92253],[115.479872,28.960979],[115.472067,28.966376],[115.463427,28.983943],[115.476092,28.994019],[115.475552,29.006186],[115.470054,29.012957],[115.47133,29.02391],[115.450614,29.02991],[115.437851,29.041577],[115.447374,29.054619],[115.445951,29.060616],[115.423517,29.066228],[115.411441,29.063257],[115.395536,29.067604],[115.394701,29.076131],[115.367555,29.084603],[115.353171,29.086913],[115.335008,29.095714],[115.315078,29.099344],[115.295147,29.095714],[115.289453,29.099399],[115.270455,29.096704],[115.24861,29.090049],[115.216653,29.094669],[115.202859,29.086198],[115.182683,29.083558],[115.168692,29.078057],[115.146258,29.073491],[115.109294,29.051537],[115.098641,29.050877],[115.075962,29.039981],[115.068697,29.033432],[115.061039,29.036074],[115.05127,29.031506],[115.049208,29.020993],[115.040568,29.012791],[115.02373,29.009434],[115.000118,29.009268],[114.98063,28.994404],[114.984459,28.984438],[114.973855,28.978436],[114.96389,28.967478],[114.968848,28.959272],[114.971106,28.943023],[114.949458,28.923522],[114.954023,28.913549],[114.94828,28.906771],[114.951372,28.896026],[114.958245,28.891231],[114.955299,28.878114],[114.929478,28.867916],[114.923833,28.868964],[114.909499,28.854079],[114.910579,28.843163],[114.907535,28.819506],[114.914604,28.814212],[114.917206,28.800974],[114.900761,28.784756],[114.892612,28.769859],[114.879947,28.774163],[114.87008,28.76848],[114.871209,28.752533],[114.859771,28.754519],[114.855647,28.746683],[114.840233,28.741164],[114.828697,28.753747],[114.827175,28.760258],[114.816474,28.769749],[114.810583,28.767928],[114.795905,28.753416],[114.801501,28.744255],[114.803465,28.729849],[114.773078,28.71235],[114.762622,28.713675],[114.756437,28.705725],[114.741759,28.699873],[114.737096,28.687007],[114.716331,28.690983],[114.705826,28.685185],[114.674703,28.691204],[114.648243,28.686069],[114.641911,28.692198],[114.623699,28.695124],[114.614862,28.710694],[114.593165,28.722784],[114.583838,28.732388],[114.579861,28.762024],[114.567295,28.771459],[114.564055,28.764342],[114.54815,28.76699],[114.543584,28.760258],[114.530772,28.760148],[114.517861,28.754299],[114.510203,28.757665],[114.500876,28.753857],[114.484137,28.75336],[114.469753,28.732775],[114.459886,28.727034],[114.467642,28.701916],[114.465482,28.696891],[114.439759,28.707271],[114.4241,28.716049],[114.41006,28.706222],[114.393026,28.704345],[114.370347,28.714172],[114.36529,28.701695],[114.345556,28.70578],[114.341187,28.713013],[114.313943,28.728028],[114.313255,28.734762],[114.288465,28.757941],[114.280414,28.757941],[114.270498,28.767487],[114.267946,28.785308],[114.257342,28.807593],[114.246886,28.809358],[114.232846,28.800422],[114.226023,28.806159],[114.224992,28.820113],[114.213358,28.828936],[114.204424,28.820499],[114.197551,28.807483],[114.163728,28.78597],[114.163826,28.775984],[114.153518,28.770963],[114.15715,28.761472],[114.151996,28.742433],[114.146596,28.734541],[114.149345,28.723777],[114.139969,28.702965],[114.128236,28.701032],[114.122395,28.689492],[114.123327,28.682203],[114.133096,28.67171],[114.129414,28.662266],[114.132802,28.641828],[114.122296,28.623264],[114.132114,28.607184],[114.118713,28.586846],[114.104575,28.583143],[114.094806,28.570097],[114.094708,28.562247],[114.086166,28.558322],[114.100648,28.540296],[114.118517,28.538969],[114.123229,28.534711],[114.138103,28.533716],[114.140607,28.523429],[114.154647,28.507555],[114.174675,28.497377],[114.195587,28.498539],[114.218807,28.482606],[114.219298,28.470544],[114.202313,28.459255],[114.19004,28.441324],[114.172368,28.432799],[114.193378,28.430862],[114.202264,28.424441],[114.214634,28.403071],[114.228134,28.395429],[114.252482,28.395762],[114.256017,28.392107],[114.258079,28.372946],[114.250617,28.368127],[114.26014,28.35572],[114.247132,28.338103],[114.255526,28.326579],[114.250617,28.318212],[114.235154,28.310897],[114.215665,28.293993],[114.19814,28.290723],[114.199122,28.272486],[114.18464,28.267607],[114.182137,28.250032],[114.170699,28.253525],[114.145025,28.247814],[114.143798,28.238165],[114.12966,28.228127],[114.121216,28.213152],[114.106637,28.201614],[114.107275,28.182973],[114.083761,28.1792],[114.068691,28.171654],[114.053473,28.171099],[114.048024,28.176703],[114.025001,28.172153],[114.012336,28.175094],[114.007377,28.166549],[113.992651,28.161443],[113.999916,28.147236],[114.006003,28.144849],[114.007181,28.125421],[114.01479,28.123312],[114.017343,28.10277],[114.027013,28.092386],[114.04714,28.057452],[114.027553,28.041786],[114.026817,28.031785],[114.000554,28.040452],[113.989263,28.03873],[113.963344,28.039619],[113.956962,28.028396],[113.966339,28.019283],[113.96192,28.015171],[113.93065,28.015338],[113.915825,27.993496],[113.92363,27.984158],[113.942235,27.989828],[113.95171,27.987549],[113.950286,27.979266],[113.958239,27.96926],[113.975371,27.967759],[113.977138,27.975598],[113.990785,27.973596],[114.002959,27.955361],[113.997658,27.94107],[113.991423,27.940737],[113.974046,27.92383],[113.956275,27.91393],[113.947095,27.899968],[113.940223,27.900413],[113.942383,27.909091],[113.935559,27.911927],[113.906842,27.889064],[113.902571,27.878659],[113.891182,27.870981],[113.910769,27.863969],[113.906498,27.856568],[113.911014,27.84911],[113.906695,27.84104],[113.896582,27.843266],[113.90424,27.834973],[113.900166,27.829963],[113.914353,27.832635],[113.920292,27.828293],[113.933792,27.830241],[113.939388,27.802795],[113.944346,27.810144],[113.958337,27.81471],[113.967124,27.808307],[113.960153,27.791992],[113.961871,27.779797],[113.973555,27.775397],[113.9738,27.761083],[113.984453,27.762141],[114.000996,27.752003],[114.020386,27.761807],[114.037322,27.754231],[114.043655,27.743201],[114.062603,27.745931],[114.069672,27.743759],[114.094708,27.756404],[114.106146,27.752282],[114.11562,27.756404],[114.111202,27.764258],[114.116308,27.770886],[114.12912,27.768379],[114.131574,27.761194],[114.142276,27.76125],[114.149247,27.75178],[114.157837,27.748717],[114.162894,27.737463],[114.178062,27.733117],[114.176688,27.722643],[114.190237,27.709492],[114.192298,27.6945],[114.202264,27.680398],[114.217089,27.665235],[114.2057,27.644829],[114.195882,27.641372],[114.206878,27.637468],[114.213112,27.627319],[114.236479,27.604395],[114.255526,27.589724],[114.265246,27.587158],[114.273247,27.576557],[114.281936,27.578064],[114.308788,27.57572],[114.334757,27.557306],[114.348354,27.564226],[114.365094,27.546759],[114.372801,27.546647],[114.375157,27.555744],[114.385123,27.555967],[114.38635,27.550386],[114.416982,27.548154],[114.424689,27.559148],[114.447614,27.568076],[114.464599,27.557864],[114.483891,27.57572],[114.503772,27.58554],[114.502791,27.595526],[114.517616,27.607463],[114.530919,27.60116]]]]}},{"type":"Feature","properties":{"adcode":361000,"name":"抚州市","center":[116.358351,27.98385],"centroid":[116.439325,27.509083],"childrenNum":11,"level":"city","parent":{"adcode":360000},"subFeatureIndex":9,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.935375,26.965031],[115.943769,26.9721],[115.948777,26.986797],[115.966498,26.999081],[115.970572,27.01069],[115.985299,27.031606],[116.000812,27.044613],[116.014262,27.067484],[116.004101,27.077405],[116.007488,27.112317],[116.021675,27.116295],[116.02192,27.125315],[116.049901,27.134166],[116.059719,27.134614],[116.067475,27.142232],[116.095849,27.141336],[116.115534,27.131477],[116.122996,27.134446],[116.123192,27.118368],[116.127463,27.110356],[116.125156,27.099654],[116.144792,27.086372],[116.140668,27.065298],[116.145135,27.063],[116.150486,27.04708],[116.158782,27.039175],[116.178025,27.053415],[116.187696,27.042483],[116.185732,27.033792],[116.189071,27.017195],[116.182198,26.996725],[116.172871,26.987134],[116.171938,26.978776],[116.156181,26.969744],[116.147737,26.943205],[116.151959,26.934676],[116.151026,26.918232],[116.158635,26.898867],[116.171644,26.897014],[116.16428,26.881576],[116.169287,26.873041],[116.15785,26.866472],[116.145577,26.839684],[116.139735,26.835135],[116.138999,26.821485],[116.150682,26.812946],[116.15245,26.800811],[116.142975,26.790473],[116.145283,26.783898],[116.13895,26.75726],[116.131783,26.751302],[116.130948,26.741465],[116.118676,26.729828],[116.119952,26.724206],[116.134237,26.709587],[116.14381,26.713861],[116.152793,26.699859],[116.159617,26.696766],[116.175522,26.701096],[116.187892,26.69491],[116.190691,26.6813],[116.197416,26.677813],[116.198103,26.66302],[116.221175,26.665664],[116.227213,26.653063],[116.246947,26.653344],[116.256422,26.658969],[116.272376,26.655875],[116.276647,26.646874],[116.248862,26.625887],[116.241253,26.625662],[116.236197,26.618234],[116.257502,26.60439],[116.269627,26.581818],[116.264423,26.567519],[116.243217,26.555583],[116.239142,26.548657],[116.273112,26.530356],[116.304922,26.499039],[116.31636,26.50608],[116.342918,26.511093],[116.365941,26.506812],[116.375513,26.509066],[116.384693,26.522415],[116.37674,26.536945],[116.397211,26.552317],[116.409336,26.550741],[116.423572,26.558793],[116.433488,26.559919],[116.440017,26.566675],[116.446104,26.588911],[116.451946,26.59893],[116.464218,26.597467],[116.473742,26.58362],[116.499759,26.5669],[116.503343,26.549784],[116.513946,26.548883],[116.538982,26.561214],[116.540945,26.568082],[116.553218,26.575795],[116.559011,26.596228],[116.561907,26.620654],[116.568779,26.642204],[116.566079,26.650137],[116.550518,26.651206],[116.54502,26.659645],[116.519886,26.684787],[116.511983,26.708238],[116.515124,26.721001],[116.530931,26.731852],[116.550223,26.751302],[116.558618,26.766815],[116.557931,26.773952],[116.54772,26.791147],[116.543695,26.803901],[116.544185,26.820418],[116.548653,26.840021],[116.557391,26.851815],[116.568976,26.858947],[116.602111,26.888706],[116.632989,26.934002],[116.659252,26.962226],[116.679329,26.978495],[116.704856,26.990892],[116.734064,26.993752],[116.757284,26.984385],[116.764991,27.000371],[116.78227,27.009568],[116.808779,27.014727],[116.817664,27.018541],[116.85134,27.009344],[116.860961,27.011475],[116.880155,27.026559],[116.894342,27.032671],[116.9101,27.034577],[116.927674,27.031381],[116.936363,27.019326],[116.946819,27.037997],[116.967584,27.061823],[117.00018,27.080151],[117.032431,27.089735],[117.052902,27.100326],[117.049417,27.120049],[117.043918,27.133774],[117.045784,27.148058],[117.05678,27.156963],[117.069347,27.17522],[117.084417,27.182779],[117.097132,27.205567],[117.106704,27.203663],[117.116375,27.20775],[117.120498,27.215979],[117.139005,27.229525],[117.149805,27.24139],[117.154419,27.26092],[117.166152,27.267074],[117.171895,27.290292],[117.157119,27.301759],[117.137189,27.30299],[117.14254,27.316189],[117.140478,27.322788],[117.12958,27.322397],[117.114657,27.32838],[117.109453,27.326871],[117.100273,27.339173],[117.104053,27.366735],[117.099144,27.379201],[117.105624,27.382387],[117.107391,27.393565],[117.127518,27.406698],[117.132771,27.422343],[117.126046,27.435361],[117.125456,27.452008],[117.11014,27.458822],[117.111515,27.474517],[117.105673,27.488589],[117.110484,27.495122],[117.103121,27.510811],[117.10317,27.53314],[117.09885,27.544135],[117.091045,27.547372],[117.084908,27.564114],[117.073814,27.559817],[117.054865,27.542629],[117.050889,27.549549],[117.042004,27.547261],[117.020061,27.557083],[117.016772,27.5635],[117.024479,27.592458],[117.013532,27.606738],[117.017066,27.611758],[117.003419,27.62598],[117.009212,27.633676],[117.013974,27.630219],[117.021583,27.643045],[117.020355,27.653081],[117.040777,27.670253],[117.061002,27.669026],[117.078723,27.650907],[117.078674,27.642208],[117.094039,27.627821],[117.109551,27.632003],[117.106017,27.642375],[117.111859,27.645387],[117.10209,27.662838],[117.096199,27.667465],[117.099832,27.677165],[117.114313,27.692048],[117.122217,27.69411],[117.131102,27.687366],[117.142981,27.688871],[117.172632,27.678113],[117.186229,27.682684],[117.202675,27.683575],[117.203705,27.711331],[117.20616,27.715844],[117.227759,27.719244],[117.243959,27.718129],[117.24985,27.727044],[117.264478,27.728883],[117.268111,27.740416],[117.279745,27.749886],[117.277782,27.7676],[117.294669,27.763924],[117.305616,27.775508],[117.306106,27.781857],[117.297761,27.798452],[117.303063,27.830186],[117.293589,27.843211],[117.276604,27.848053],[117.261779,27.867197],[117.248573,27.869478],[117.240375,27.881775],[117.223096,27.894238],[117.203067,27.890399],[117.201496,27.880551],[117.185837,27.88439],[117.166201,27.900913],[117.144258,27.892736],[117.123542,27.909313],[117.115442,27.907867],[117.109257,27.89841],[117.103808,27.879216],[117.09453,27.89001],[117.083141,27.890677],[117.045146,27.848331],[117.026639,27.854898],[117.011912,27.880496],[117.011028,27.890566],[117.015741,27.903417],[117.032186,27.925999],[117.044851,27.935398],[117.047404,27.944073],[117.04544,27.966369],[117.019668,27.987049],[117.000523,27.995442],[116.991982,28.006779],[116.9802,28.015727],[116.972837,28.033674],[116.973769,28.045286],[116.964786,28.049341],[116.938768,28.042675],[116.943923,28.051397],[116.943039,28.063784],[116.93813,28.068783],[116.933221,28.09333],[116.920114,28.096217],[116.912947,28.077058],[116.905338,28.072282],[116.893704,28.073559],[116.875246,28.088887],[116.861059,28.091775],[116.839509,28.1076],[116.829053,28.108377],[116.81305,28.101937],[116.802544,28.108488],[116.805441,28.114873],[116.79469,28.125754],[116.795426,28.142241],[116.808141,28.166882],[116.804361,28.176315],[116.782123,28.179755],[116.760818,28.173984],[116.746091,28.179811],[116.732346,28.181531],[116.725965,28.189354],[116.73053,28.203556],[116.704561,28.206717],[116.692191,28.216203],[116.692338,28.231566],[116.706869,28.249311],[116.726455,28.260455],[116.739268,28.264447],[116.754535,28.262507],[116.7672,28.255521],[116.793856,28.251584],[116.806864,28.255355],[116.817615,28.287564],[116.815897,28.295157],[116.801317,28.312504],[116.79685,28.329515],[116.788652,28.341095],[116.778441,28.352396],[116.774171,28.365745],[116.753798,28.378096],[116.751344,28.391609],[116.743637,28.402462],[116.729941,28.406946],[116.716196,28.388895],[116.699652,28.378705],[116.691356,28.380145],[116.660823,28.373666],[116.647519,28.373721],[116.618556,28.389726],[116.593521,28.386126],[116.581837,28.379647],[116.570203,28.388286],[116.568288,28.400634],[116.575603,28.40894],[116.583997,28.411209],[116.589397,28.419957],[116.599902,28.417299],[116.584733,28.428925],[116.586108,28.44232],[116.591066,28.450788],[116.585273,28.471152],[116.577321,28.480171],[116.554887,28.496879],[116.551402,28.484321],[116.559011,28.468164],[116.559649,28.444977],[116.56549,28.43684],[116.55906,28.419901],[116.559845,28.407057],[116.53638,28.392938],[116.520573,28.378152],[116.502459,28.348075],[116.505405,28.326966],[116.50241,28.312559],[116.496667,28.303637],[116.480271,28.293716],[116.466967,28.25236],[116.459948,28.248035],[116.444926,28.249089],[116.412281,28.247703],[116.395885,28.244819],[116.376053,28.233229],[116.37625,28.221472],[116.370555,28.211044],[116.359265,28.207605],[116.35627,28.22663],[116.352147,28.232619],[116.330154,28.24554],[116.314789,28.243045],[116.312875,28.225631],[116.306837,28.219253],[116.294957,28.225243],[116.274388,28.218199],[116.244198,28.201836],[116.233202,28.188854],[116.229815,28.160278],[116.225495,28.158558],[116.209001,28.178423],[116.182002,28.180587],[116.167717,28.188799],[116.163004,28.195734],[116.16428,28.208659],[116.155788,28.223136],[116.142386,28.229125],[116.130408,28.23029],[116.116025,28.237167],[116.098353,28.203944],[116.082841,28.178701],[116.085491,28.17404],[116.077441,28.156615],[116.08181,28.148013],[116.094573,28.14496],[116.107189,28.135746],[116.124518,28.131916],[116.133599,28.134914],[116.150781,28.128808],[116.139834,28.119981],[116.140521,28.111431],[116.134925,28.100548],[116.143859,28.090276],[116.149357,28.076503],[116.137085,28.069505],[116.144154,28.061895],[116.135121,28.042452],[116.121376,28.041619],[116.116565,28.02984],[116.120198,28.022895],[116.119412,28.007557],[116.104784,27.99433],[116.104391,27.985937],[116.091088,27.979044],[116.08662,27.962033],[116.080091,27.959253],[116.079061,27.947076],[116.059572,27.934731],[116.057707,27.928613],[116.041458,27.92422],[116.027026,27.908201],[116.003413,27.897576],[115.995019,27.90058],[115.979703,27.895962],[115.969345,27.896352],[115.96046,27.891122],[115.944898,27.894126],[115.920255,27.882554],[115.906805,27.880829],[115.901552,27.866473],[115.886138,27.854731],[115.86552,27.85501],[115.859581,27.830353],[115.86557,27.81148],[115.859139,27.79628],[115.858402,27.780632],[115.848241,27.764425],[115.851775,27.752839],[115.842645,27.730332],[115.831305,27.726877],[115.826347,27.735513],[115.807447,27.727936],[115.785946,27.739636],[115.761205,27.745764],[115.75232,27.737686],[115.735089,27.729607],[115.725468,27.70977],[115.71241,27.692382],[115.694737,27.677332],[115.681925,27.65704],[115.653404,27.638138],[115.634603,27.616276],[115.634652,27.612093],[115.621986,27.593239],[115.607014,27.575776],[115.609027,27.567964],[115.604805,27.533419],[115.591944,27.523707],[115.604609,27.511537],[115.619925,27.484066],[115.627092,27.479543],[115.630724,27.469099],[115.651048,27.451282],[115.668425,27.446645],[115.675936,27.45117],[115.68384,27.448098],[115.702739,27.455248],[115.713293,27.452287],[115.724977,27.440445],[115.719822,27.425081],[115.712606,27.415303],[115.696112,27.401165],[115.702003,27.384343],[115.701217,27.369363],[115.68973,27.365282],[115.683349,27.356337],[115.676721,27.33688],[115.681925,27.32413],[115.681876,27.31082],[115.686441,27.289956],[115.693461,27.285313],[115.694983,27.271327],[115.675789,27.263885],[115.670782,27.265732],[115.645059,27.260808],[115.641819,27.254932],[115.627926,27.247042],[115.630037,27.213292],[115.640395,27.187819],[115.659491,27.191682],[115.667002,27.179084],[115.665185,27.169116],[115.6752,27.154499],[115.681532,27.13523],[115.695768,27.127164],[115.698468,27.120441],[115.711673,27.114558],[115.718399,27.100326],[115.741618,27.104248],[115.756492,27.110356],[115.772348,27.110076],[115.792377,27.115286],[115.814173,27.110468],[115.819425,27.105985],[115.826445,27.08116],[115.848094,27.068325],[115.845639,27.056274],[115.85261,27.055993],[115.853493,27.035867],[115.86287,27.021457],[115.861004,27.005867],[115.874749,26.997118],[115.885402,26.999866],[115.883438,26.989938],[115.894729,26.979281],[115.913776,26.984666],[115.930908,26.971988],[115.935375,26.965031]]]]}},{"type":"Feature","properties":{"adcode":361100,"name":"上饶市","center":[117.971185,28.44442],"centroid":[117.476403,28.772739],"childrenNum":12,"level":"city","parent":{"adcode":360000},"subFeatureIndex":10,"acroutes":[100000,360000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.446356,27.932729],[117.454063,27.939958],[117.462948,27.941293],[117.471882,27.931616],[117.504871,27.954304],[117.511449,27.974486],[117.521807,27.982379],[117.530741,27.981712],[117.533244,27.973263],[117.558084,27.964868],[117.56368,27.956639],[117.560489,27.947243],[117.56962,27.935342],[117.579192,27.945741],[117.586801,27.942294],[117.584641,27.934897],[117.588716,27.918324],[117.586163,27.905586],[117.595539,27.899523],[117.60359,27.885948],[117.602559,27.869534],[117.61007,27.863469],[117.64998,27.851726],[117.665688,27.843378],[117.673248,27.82846],[117.682526,27.823728],[117.705647,27.833025],[117.716447,27.816213],[117.730978,27.803463],[117.741974,27.80118],[117.754344,27.812037],[117.759646,27.826957],[117.775748,27.836476],[117.788118,27.855789],[117.782522,27.866028],[117.788413,27.882888],[117.785516,27.89268],[117.799311,27.901358],[117.815167,27.92066],[117.836373,27.927779],[117.849137,27.93651],[117.85596,27.945852],[117.866563,27.937789],[117.89101,27.948466],[117.912168,27.950078],[117.920268,27.963422],[117.932491,27.966758],[117.942751,27.974097],[117.958018,27.968982],[117.965185,27.962644],[117.985655,27.971595],[117.998075,27.991162],[118.006567,27.980434],[118.019134,27.981212],[118.034303,27.988216],[118.046526,27.978544],[118.06091,27.982657],[118.070777,27.977432],[118.074213,27.967537],[118.089872,27.964979],[118.09699,27.967592],[118.092032,27.981546],[118.093309,27.999832],[118.105876,28.017005],[118.123401,28.012503],[118.129095,28.017171],[118.12075,28.041841],[118.135133,28.053674],[118.153787,28.06184],[118.182701,28.05173],[118.199735,28.050008],[118.210388,28.057285],[118.225065,28.059285],[118.242541,28.075503],[118.255992,28.06956],[118.274941,28.083001],[118.291975,28.082612],[118.308125,28.089387],[118.339101,28.088221],[118.341997,28.084778],[118.356184,28.091664],[118.359522,28.111875],[118.356773,28.123922],[118.368407,28.129141],[118.359326,28.150566],[118.379158,28.16727],[118.37258,28.188799],[118.339739,28.193847],[118.334143,28.206884],[118.319416,28.214483],[118.314851,28.222858],[118.339346,28.235891],[118.34347,28.234616],[118.350441,28.250253],[118.36448,28.253802],[118.373513,28.265889],[118.388485,28.26672],[118.396143,28.27487],[118.424271,28.291499],[118.433697,28.288561],[118.461089,28.301254],[118.472428,28.318101],[118.481903,28.320982],[118.472085,28.332784],[118.473901,28.339045],[118.469238,28.355886],[118.455149,28.383967],[118.431782,28.398364],[118.440275,28.411929],[118.450142,28.41813],[118.459321,28.42981],[118.465949,28.448242],[118.463003,28.45516],[118.474687,28.467224],[118.480774,28.467445],[118.472183,28.479397],[118.461678,28.482606],[118.456622,28.477018],[118.438164,28.493007],[118.421768,28.492122],[118.415043,28.497377],[118.421915,28.50302],[118.430751,28.500751],[118.445527,28.513253],[118.43728,28.521715],[118.433255,28.516461],[118.425842,28.523651],[118.4281,28.534656],[118.420688,28.54472],[118.428051,28.547374],[118.413374,28.555115],[118.409545,28.568715],[118.417301,28.572861],[118.415681,28.583474],[118.423191,28.584967],[118.419657,28.597347],[118.414061,28.595358],[118.413619,28.606411],[118.422946,28.609229],[118.433844,28.626027],[118.427806,28.631276],[118.422062,28.646413],[118.432617,28.65155],[118.430408,28.669777],[118.432862,28.676515],[118.414994,28.686621],[118.418823,28.692253],[118.40223,28.702965],[118.39148,28.700535],[118.39251,28.710418],[118.401788,28.714172],[118.399727,28.727531],[118.392363,28.738846],[118.396045,28.755071],[118.387061,28.755016],[118.383772,28.774218],[118.378716,28.784646],[118.383331,28.787349],[118.371942,28.801801],[118.370322,28.809413],[118.358,28.815149],[118.331836,28.814818],[118.320545,28.821216],[118.31058,28.821988],[118.295313,28.835223],[118.304345,28.840075],[118.297424,28.847849],[118.293889,28.86086],[118.288048,28.864002],[118.28147,28.891341],[118.276119,28.895971],[118.269835,28.918618],[118.256827,28.923632],[118.242885,28.920161],[118.224967,28.911841],[118.199392,28.902969],[118.193501,28.908259],[118.196692,28.915918],[118.206068,28.91961],[118.227815,28.942417],[118.225458,28.946824],[118.199392,28.954645],[118.196004,28.965055],[118.186579,28.97695],[118.163802,28.98631],[118.148191,28.985595],[118.147897,28.977831],[118.133366,28.984328],[118.125708,28.996166],[118.132335,29.008663],[118.127132,29.016094],[118.113828,29.009048],[118.109999,28.991761],[118.099936,28.990385],[118.110687,29.003653],[118.107103,29.012021],[118.097089,28.998753],[118.092082,29.006296],[118.088056,29.029414],[118.0722,29.038991],[118.066997,29.053958],[118.076913,29.062872],[118.075784,29.074591],[118.045888,29.088838],[118.037985,29.101874],[118.053104,29.116228],[118.038917,29.126346],[118.045005,29.149108],[118.041372,29.160872],[118.028363,29.169227],[118.033468,29.177141],[118.042452,29.210331],[118.051435,29.217583],[118.057915,29.214781],[118.07328,29.217034],[118.081969,29.234557],[118.075587,29.247355],[118.080447,29.266356],[118.077895,29.278765],[118.071906,29.287001],[118.076226,29.290624],[118.10509,29.284914],[118.11589,29.293698],[118.136115,29.283926],[118.152855,29.286287],[118.169349,29.297596],[118.176614,29.297376],[118.176074,29.305885],[118.166551,29.313898],[118.179756,29.321363],[118.18329,29.332229],[118.207786,29.347593],[118.20867,29.360376],[118.204006,29.367837],[118.208817,29.377491],[118.192028,29.391697],[118.192666,29.402775],[118.176565,29.404694],[118.163654,29.412097],[118.136115,29.418896],[118.129488,29.432602],[118.138619,29.437701],[118.13798,29.454912],[118.127672,29.472066],[118.143822,29.489765],[118.142988,29.499846],[118.130862,29.511077],[118.109508,29.521977],[118.103421,29.530686],[118.082656,29.533753],[118.050748,29.543173],[118.042943,29.56628],[118.014127,29.577284],[118.003867,29.578105],[117.994638,29.573233],[117.984722,29.56168],[117.96489,29.569948],[117.954925,29.565075],[117.938725,29.54958],[117.920808,29.554508],[117.889881,29.545801],[117.87648,29.546184],[117.863569,29.554179],[117.852033,29.555001],[117.829893,29.563871],[117.816443,29.573889],[117.794991,29.570331],[117.770937,29.557081],[117.753068,29.560366],[117.736034,29.551551],[117.70766,29.548977],[117.691362,29.53567],[117.673592,29.52729],[117.664461,29.527619],[117.655723,29.534465],[117.64728,29.523675],[117.647034,29.51524],[117.632749,29.504777],[117.621311,29.512556],[117.614292,29.500778],[117.604768,29.475793],[117.595932,29.46982],[117.586016,29.48582],[117.577474,29.484834],[117.571289,29.468066],[117.578358,29.461709],[117.574087,29.457653],[117.556415,29.45557],[117.546499,29.447403],[117.535503,29.430793],[117.529366,29.430409],[117.522494,29.439455],[117.526323,29.445649],[117.509927,29.436001],[117.508061,29.429094],[117.517438,29.411165],[117.511547,29.405736],[117.497654,29.403213],[117.486266,29.396523],[117.485677,29.378204],[117.48116,29.361309],[117.490389,29.35264],[117.490291,29.34644],[117.445374,29.322625],[117.431825,29.31066],[117.437078,29.297761],[117.453032,29.281675],[117.449154,29.271408],[117.432954,29.259492],[117.403402,29.246366],[117.385386,29.229614],[117.38789,29.219286],[117.384699,29.206265],[117.37277,29.190166],[117.384208,29.181208],[117.386025,29.168292],[117.398493,29.147734],[117.427603,29.136078],[117.439974,29.142071],[117.441054,29.156749],[117.454161,29.160212],[117.463292,29.158013],[117.486904,29.16362],[117.497262,29.158013],[117.497704,29.1435],[117.481995,29.133219],[117.49358,29.107484],[117.51459,29.097364],[117.499324,29.081577],[117.502563,29.070355],[117.509927,29.067879],[117.519303,29.05726],[117.494513,29.040586],[117.493973,29.022204],[117.481111,29.015489],[117.493924,29.000956],[117.491469,28.992257],[117.497213,28.988953],[117.488327,28.982126],[117.457057,28.970341],[117.47203,28.959712],[117.483026,28.963898],[117.49412,28.955472],[117.49412,28.943133],[117.499913,28.936193],[117.51302,28.929637],[117.514836,28.917075],[117.531968,28.913329],[117.537466,28.902253],[117.554353,28.899222],[117.557053,28.891341],[117.548511,28.866042],[117.543112,28.843163],[117.544879,28.817741],[117.549051,28.807372],[117.537172,28.812281],[117.520776,28.810406],[117.511449,28.825903],[117.504085,28.830039],[117.487984,28.829433],[117.475613,28.837428],[117.449939,28.841729],[117.438109,28.837814],[117.430402,28.830315],[117.411011,28.824414],[117.395842,28.829046],[117.393339,28.812557],[117.404777,28.804559],[117.402322,28.783652],[117.388135,28.782935],[117.384601,28.773556],[117.374488,28.772839],[117.371641,28.766825],[117.358387,28.76848],[117.348618,28.774218],[117.329424,28.77317],[117.324711,28.764011],[117.306401,28.759651],[117.299332,28.74591],[117.2795,28.736693],[117.273118,28.723446],[117.262809,28.726261],[117.248377,28.719196],[117.241652,28.726482],[117.242977,28.73719],[117.23689,28.747069],[117.226581,28.749497],[117.20346,28.741054],[117.193298,28.747456],[117.191826,28.741109],[117.173515,28.752698],[117.17111,28.759265],[117.17543,28.770853],[117.15869,28.782439],[117.152259,28.775267],[117.144307,28.786907],[117.142785,28.799595],[117.136502,28.797885],[117.122315,28.781004],[117.123149,28.795237],[117.116866,28.801029],[117.090308,28.801029],[117.085105,28.81173],[117.070427,28.81548],[117.047551,28.808917],[117.039746,28.818734],[117.029928,28.838696],[117.009997,28.856781],[116.984225,28.86979],[116.963853,28.886547],[116.963608,28.898836],[116.957079,28.904843],[116.970873,28.916524],[116.973671,28.929306],[116.985747,28.949248],[116.998658,28.948421],[117.00931,28.959327],[117.013483,28.975628],[117.014072,28.998809],[117.029879,29.002552],[117.038371,29.009378],[117.032824,29.027323],[117.046717,29.043063],[117.049466,29.051097],[117.044655,29.082623],[117.048582,29.093954],[117.061394,29.096044],[117.066696,29.104404],[117.077447,29.103249],[117.069838,29.112764],[117.079999,29.123542],[117.06866,29.130195],[117.068905,29.136188],[117.0584,29.148888],[117.032922,29.161806],[117.029339,29.167468],[117.031891,29.180109],[117.024037,29.191155],[117.011225,29.225274],[117.017508,29.229174],[117.014465,29.243291],[117.020159,29.252023],[117.011421,29.264215],[117.008378,29.28195],[117.025363,29.279095],[117.028062,29.28766],[117.035819,29.291887],[117.042249,29.302975],[117.055798,29.302317],[117.079459,29.309892],[117.069543,29.332229],[117.045342,29.349897],[117.042691,29.36482],[117.050104,29.370031],[117.054276,29.384457],[117.069101,29.392355],[117.071311,29.39762],[117.067285,29.412152],[117.070918,29.426791],[117.062622,29.434192],[117.045882,29.441428],[117.042348,29.454583],[117.042888,29.471738],[117.049171,29.48593],[117.047698,29.512994],[117.051135,29.532055],[117.046569,29.543556],[117.040188,29.577776],[117.027326,29.599233],[117.025853,29.607498],[117.042397,29.619482],[117.050987,29.631575],[117.071212,29.64197],[117.077643,29.650395],[117.08103,29.66664],[117.092468,29.691524],[117.090848,29.699233],[117.070869,29.693711],[117.055209,29.684305],[117.042053,29.680915],[117.015299,29.685727],[116.996007,29.683376],[116.984569,29.67468],[116.974555,29.657561],[116.958551,29.651598],[116.939603,29.648316],[116.918543,29.634475],[116.873479,29.609304],[116.848934,29.576408],[116.838085,29.569838],[116.8184,29.564801],[116.783449,29.568415],[116.779521,29.577667],[116.786983,29.591297],[116.775152,29.595347],[116.770145,29.592228],[116.760475,29.599069],[116.740201,29.585933],[116.732297,29.572028],[116.721596,29.564966],[116.716539,29.590804],[116.688951,29.604104],[116.679035,29.598522],[116.663277,29.605254],[116.653263,29.603721],[116.63721,29.581335],[116.607118,29.5717],[116.596319,29.571316],[116.581395,29.576462],[116.566619,29.594691],[116.528624,29.604214],[116.512081,29.600219],[116.500937,29.585659],[116.49971,29.566663],[116.530195,29.546842],[116.533189,29.526414],[116.529115,29.512665],[116.520082,29.498532],[116.524402,29.486807],[116.537166,29.47382],[116.538147,29.467408],[116.524402,29.454474],[116.517972,29.440277],[116.518659,29.431122],[116.540455,29.414948],[116.537558,29.41111],[116.542615,29.397071],[116.55636,29.384896],[116.559894,29.376504],[116.548898,29.367672],[116.554003,29.366191],[116.554543,29.355439],[116.546836,29.360047],[116.537804,29.343258],[116.552432,29.322844],[116.564705,29.312087],[116.562741,29.300615],[116.575554,29.286177],[116.588513,29.276185],[116.59357,29.252572],[116.611095,29.248673],[116.646488,29.229394],[116.567945,29.170436],[116.547573,29.155815],[116.473005,29.155705],[116.451651,29.124092],[116.45764,29.115458],[116.448461,29.105944],[116.43825,29.105119],[116.437661,29.094944],[116.406931,29.05649],[116.4005,29.053023],[116.409778,29.031561],[116.402365,29.016314],[116.40806,29.003818],[116.407225,28.967973],[116.40428,28.953929],[116.380766,28.943684],[116.366972,28.927158],[116.358725,28.910298],[116.344439,28.88831],[116.342083,28.877673],[116.330891,28.877838],[116.324215,28.872381],[116.278954,28.866373],[116.259907,28.871279],[116.250236,28.869019],[116.240026,28.860805],[116.238111,28.851433],[116.245867,28.841288],[116.245818,28.831859],[116.240026,28.82458],[116.246407,28.801801],[116.253967,28.798547],[116.274241,28.800091],[116.287103,28.7879],[116.301781,28.785804],[116.319846,28.76699],[116.323969,28.753581],[116.32014,28.73846],[116.339629,28.750325],[116.355337,28.754188],[116.363192,28.741219],[116.380471,28.750105],[116.379931,28.744034],[116.392204,28.727807],[116.412281,28.724053],[116.429708,28.717429],[116.446497,28.701198],[116.446742,28.690817],[116.441293,28.667789],[116.447871,28.665028],[116.449393,28.653649],[116.44311,28.635972],[116.462746,28.615142],[116.465789,28.600719],[116.473938,28.58364],[116.497697,28.552682],[116.509381,28.544775],[116.532306,28.523263],[116.554887,28.496879],[116.577321,28.480171],[116.585273,28.471152],[116.591066,28.450788],[116.586108,28.44232],[116.584733,28.428925],[116.599902,28.417299],[116.589397,28.419957],[116.583997,28.411209],[116.575603,28.40894],[116.568288,28.400634],[116.570203,28.388286],[116.581837,28.379647],[116.593521,28.386126],[116.618556,28.389726],[116.647519,28.373721],[116.660823,28.373666],[116.691356,28.380145],[116.699652,28.378705],[116.716196,28.388895],[116.729941,28.406946],[116.743637,28.402462],[116.751344,28.391609],[116.753798,28.378096],[116.774171,28.365745],[116.778441,28.352396],[116.788652,28.341095],[116.798715,28.358157],[116.824389,28.378318],[116.855021,28.379813],[116.871417,28.382361],[116.879026,28.388951],[116.878093,28.399527],[116.867392,28.413867],[116.871466,28.427818],[116.896011,28.458702],[116.891004,28.474362],[116.879272,28.492619],[116.880744,28.507279],[116.897337,28.5023],[116.904406,28.504513],[116.911131,28.522323],[116.965179,28.527632],[116.976518,28.534435],[116.990165,28.51281],[117.003861,28.496326],[117.013434,28.509934],[117.011127,28.514635],[117.032186,28.526305],[117.033953,28.531891],[117.049613,28.549696],[117.054522,28.56573],[117.044949,28.591931],[117.055307,28.603316],[117.068954,28.608732],[117.079116,28.606576],[117.096346,28.58961],[117.108717,28.581484],[117.12634,28.576675],[117.147694,28.562192],[117.199091,28.589223],[117.216125,28.595026],[117.225109,28.609561],[117.223292,28.624259],[117.236939,28.626635],[117.246561,28.617131],[117.262711,28.613208],[117.274493,28.601824],[117.283231,28.576731],[117.29295,28.564901],[117.30429,28.54389],[117.315875,28.534601],[117.313863,28.506172],[117.320981,28.462409],[117.32805,28.450954],[117.326184,28.430198],[117.314108,28.414642],[117.310181,28.397478],[117.327411,28.384244],[117.319508,28.363474],[117.317692,28.348574],[117.29462,28.338546],[117.281365,28.326135],[117.277978,28.309899],[117.257311,28.30929],[117.264724,28.289448],[117.265411,28.278362],[117.288336,28.27487],[117.294767,28.252804],[117.302719,28.240217],[117.297319,28.230567],[117.28544,28.223968],[117.274051,28.209879],[117.27842,28.19357],[117.283771,28.187301],[117.280973,28.173097],[117.270664,28.162442],[117.274345,28.150954],[117.281316,28.146514],[117.309543,28.14324],[117.331437,28.130861],[117.353282,28.133581],[117.362363,28.132083],[117.399966,28.115373],[117.426082,28.112264],[117.436832,28.107045],[117.444834,28.090886],[117.46123,28.066561],[117.46123,28.053452],[117.465599,28.039397],[117.465795,28.01945],[117.44827,27.986382],[117.445767,27.964201],[117.432218,27.942405],[117.435458,27.936121],[117.446356,27.932729]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/370000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/370000.json new file mode 100644 index 0000000..3b7b1c4 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/370000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":370100,"name":"济南市","center":[117.000923,36.675807],"centroid":[117.221211,36.640013],"childrenNum":12,"level":"city","parent":{"adcode":370000},"subFeatureIndex":0,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.546202,36.40892],[116.528592,36.387259],[116.519984,36.384158],[116.503717,36.369982],[116.484607,36.336948],[116.449071,36.337149],[116.441411,36.321755],[116.430593,36.318007],[116.406745,36.319015],[116.374526,36.3039],[116.331251,36.290677],[116.322644,36.284669],[116.310799,36.270515],[116.307166,36.259464],[116.28624,36.239174],[116.280159,36.221945],[116.255047,36.203703],[116.234911,36.180935],[116.226066,36.173748],[116.246677,36.149436],[116.261444,36.122693],[116.27171,36.109843],[116.273368,36.093758],[116.267287,36.074233],[116.267998,36.052964],[116.271552,36.043824],[116.294689,36.031407],[116.301244,36.031123],[116.304718,36.046251],[116.310404,36.052196],[116.324855,36.054178],[116.338753,36.060082],[116.352731,36.070797],[116.360233,36.084744],[116.386845,36.090807],[116.398058,36.084582],[116.401059,36.074031],[116.409508,36.068007],[116.427829,36.067441],[116.433357,36.059839],[116.429566,36.052439],[116.436121,36.046534],[116.434541,36.038607],[116.449387,36.047302],[116.452072,36.058019],[116.471182,36.06457],[116.504112,36.064732],[116.532303,36.074274],[116.543359,36.086604],[116.546597,36.101195],[116.554651,36.108187],[116.566891,36.108752],[116.569024,36.118774],[116.562153,36.121643],[116.5586,36.133804],[116.543122,36.13958],[116.525275,36.135298],[116.528513,36.145276],[116.519748,36.141196],[116.507192,36.141277],[116.510192,36.148346],[116.52188,36.157151],[116.525986,36.168297],[116.51035,36.176857],[116.502059,36.192764],[116.481922,36.197002],[116.472604,36.21464],[116.487529,36.228441],[116.485239,36.236067],[116.506402,36.240344],[116.512325,36.253414],[116.525591,36.255229],[116.53641,36.245588],[116.552361,36.247767],[116.558837,36.261037],[116.574393,36.263457],[116.581264,36.255471],[116.587502,36.268862],[116.600611,36.273983],[116.609613,36.291322],[116.632277,36.296321],[116.649018,36.295797],[116.675709,36.276645],[116.686528,36.275435],[116.701058,36.280153],[116.710376,36.279185],[116.732961,36.294144],[116.762574,36.305391],[116.772761,36.312002],[116.786659,36.311357],[116.808612,36.299022],[116.830644,36.294587],[116.855756,36.301642],[116.855519,36.289709],[116.867759,36.28108],[116.873129,36.264062],[116.891133,36.255471],[116.928722,36.26991],[116.932828,36.261925],[116.950201,36.257327],[116.956835,36.259787],[116.975471,36.243208],[116.987632,36.250711],[117.002794,36.254503],[117.003347,36.265353],[117.027353,36.268983],[117.030275,36.277532],[117.0482,36.283701],[117.051201,36.288741],[117.066995,36.296885],[117.074102,36.296724],[117.077655,36.307205],[117.07734,36.321957],[117.088711,36.346013],[117.107347,36.338882],[117.111691,36.340413],[117.137039,36.335135],[117.142567,36.345731],[117.161361,36.351895],[117.179603,36.353144],[117.18292,36.360798],[117.180945,36.37256],[117.191685,36.378762],[117.200924,36.389755],[117.208742,36.405297],[117.218297,36.406182],[117.242145,36.41528],[117.249726,36.436732],[117.263862,36.449206],[117.275786,36.451218],[117.288973,36.468718],[117.288184,36.476039],[117.30682,36.472097],[117.30682,36.467029],[117.335328,36.466345],[117.346383,36.46373],[117.346936,36.455724],[117.339118,36.438181],[117.339434,36.425786],[117.344962,36.403968],[117.35041,36.393379],[117.351753,36.377997],[117.362729,36.360234],[117.387762,36.337915],[117.38871,36.326148],[117.379707,36.315146],[117.38792,36.296361],[117.387604,36.285556],[117.397791,36.283782],[117.394553,36.266522],[117.413901,36.267934],[117.417217,36.243652],[117.392895,36.237439],[117.393211,36.222994],[117.399528,36.215004],[117.412716,36.210927],[117.427878,36.221662],[117.447383,36.218313],[117.447778,36.203541],[117.452437,36.203138],[117.440434,36.191189],[117.446988,36.18691],[117.461202,36.170194],[117.475653,36.173102],[117.487972,36.15921],[117.476601,36.150123],[117.469178,36.154687],[117.459623,36.1498],[117.44683,36.120834],[117.463571,36.116875],[117.454885,36.111177],[117.456148,36.100467],[117.447067,36.09206],[117.451963,36.087412],[117.473758,36.089797],[117.484893,36.10075],[117.491052,36.096587],[117.505898,36.098245],[117.534879,36.111419],[117.547672,36.106166],[117.552884,36.087978],[117.561649,36.079327],[117.575943,36.074516],[117.601844,36.075648],[117.630588,36.059879],[117.656569,36.049729],[117.689972,36.052358],[117.701186,36.04528],[117.720454,36.038243],[117.725824,36.029667],[117.741696,36.036058],[117.757016,36.019392],[117.750304,36.011947],[117.756542,36.002236],[117.756621,35.991916],[117.762307,35.990621],[117.781022,35.995437],[117.782286,36.007294],[117.794763,36.015143],[117.801159,36.012959],[117.825244,36.013363],[117.828719,36.008022],[117.841827,36.011947],[117.854462,36.006889],[117.866386,36.007415],[117.877047,36.016357],[117.895052,36.020363],[117.914557,36.020039],[117.922848,36.015467],[117.926165,36.005068],[117.935088,36.004421],[117.937536,35.99653],[117.950803,35.996489],[117.94338,36.017288],[117.949855,36.018259],[117.946855,36.04253],[117.932798,36.052196],[117.935799,36.061214],[117.948829,36.062589],[117.94188,36.071807],[117.946223,36.08151],[117.953172,36.081833],[117.954041,36.090201],[117.946618,36.100387],[117.939984,36.094324],[117.931535,36.094203],[117.921111,36.110005],[117.923875,36.1174],[117.91203,36.132753],[117.914162,36.140631],[117.90666,36.152708],[117.917873,36.16337],[117.912109,36.171648],[117.903027,36.172092],[117.915899,36.192562],[117.914636,36.200837],[117.921664,36.203662],[117.928534,36.196558],[117.943933,36.207981],[117.959332,36.204308],[117.967781,36.21464],[117.96328,36.224971],[117.96707,36.248251],[117.975362,36.262328],[117.972993,36.268378],[117.943696,36.274064],[117.932719,36.271846],[117.926797,36.277532],[117.93114,36.283742],[117.922533,36.300514],[117.924823,36.313171],[117.918347,36.317725],[117.919611,36.324738],[117.933509,36.334369],[117.933904,36.341219],[117.915346,36.352903],[117.902633,36.352057],[117.893472,36.339446],[117.89521,36.359227],[117.890314,36.366035],[117.882101,36.35673],[117.879732,36.370626],[117.867492,36.386373],[117.859279,36.389433],[117.855094,36.412945],[117.829508,36.417776],[117.826823,36.427114],[117.833062,36.44301],[117.822717,36.44305],[117.817268,36.436129],[117.799343,36.432265],[117.7965,36.43963],[117.786471,36.434277],[117.779838,36.441239],[117.755752,36.445303],[117.763491,36.452868],[117.757016,36.459144],[117.765544,36.469845],[117.748566,36.478694],[117.757332,36.484485],[117.755673,36.496228],[117.743118,36.498439],[117.735853,36.504993],[117.751646,36.509979],[117.765544,36.509496],[117.76586,36.512994],[117.750777,36.524652],[117.742486,36.525737],[117.739406,36.539925],[117.72377,36.54732],[117.720849,36.560057],[117.694315,36.568896],[117.696132,36.575042],[117.706792,36.581469],[117.715321,36.578537],[117.706792,36.593559],[117.715163,36.600546],[117.697869,36.599422],[117.690525,36.604883],[117.705055,36.605807],[117.706555,36.611549],[117.714926,36.610545],[117.715321,36.627527],[117.70853,36.635154],[117.712241,36.642258],[117.709003,36.651569],[117.698027,36.652974],[117.695184,36.666978],[117.701265,36.685191],[117.715637,36.691208],[117.718006,36.697826],[117.71848,36.704724],[117.739959,36.721004],[117.736642,36.729423],[117.747303,36.748584],[117.724165,36.755998],[117.695974,36.754115],[117.687603,36.763853],[117.677811,36.783245],[117.648119,36.805436],[117.608556,36.821815],[117.580523,36.85136],[117.577364,36.862847],[117.579891,36.878093],[117.585024,36.886815],[117.58376,36.894176],[117.56923,36.915736],[117.534248,36.931611],[117.539538,36.941486],[117.551305,36.93385],[117.553674,36.940727],[117.56465,36.945084],[117.56544,36.959954],[117.54933,36.96507],[117.555253,36.970785],[117.549094,36.979817],[117.536854,36.978498],[117.519875,36.957117],[117.509847,36.969267],[117.494527,36.972344],[117.476522,36.968348],[117.477628,36.961154],[117.458754,36.957676],[117.444461,36.958116],[117.416901,36.95264],[117.414927,36.957236],[117.406162,36.950001],[117.40403,36.955038],[117.391632,36.952],[117.378286,36.956997],[117.365335,36.99496],[117.35349,37.003349],[117.328457,37.011218],[117.317323,37.020923],[117.315349,37.030547],[117.326088,37.036178],[117.33667,37.046838],[117.339434,37.056419],[117.336433,37.073941],[117.365256,37.069272],[117.391158,37.083479],[117.409241,37.089425],[117.442092,37.093574],[117.459781,37.109931],[117.455596,37.11767],[117.4507,37.143711],[117.4507,37.153957],[117.444066,37.156868],[117.442724,37.170859],[117.436091,37.184251],[117.417928,37.20003],[117.404977,37.21716],[117.402371,37.224808],[117.408768,37.239703],[117.429141,37.239783],[117.424403,37.243367],[117.431037,37.254396],[117.443908,37.250056],[117.438302,37.25786],[117.43688,37.27235],[117.432379,37.272032],[117.430168,37.285166],[117.417612,37.296587],[117.409005,37.321692],[117.413901,37.349333],[117.407741,37.353667],[117.415401,37.364203],[117.401029,37.379071],[117.368652,37.396399],[117.360202,37.405697],[117.368257,37.419563],[117.369758,37.436048],[117.353332,37.450901],[117.309189,37.447486],[117.295449,37.4538],[117.307768,37.46194],[117.304609,37.466069],[117.283998,37.471587],[117.285894,37.479328],[117.312585,37.487068],[117.317718,37.499371],[117.307215,37.507744],[117.286525,37.510046],[117.284393,37.522266],[117.275549,37.526193],[117.273417,37.532619],[117.260861,37.530081],[117.238197,37.532897],[117.230063,37.528891],[117.22114,37.51318],[117.199345,37.487148],[117.176049,37.486116],[117.163809,37.478971],[117.135618,37.475239],[117.124878,37.483853],[117.109795,37.47901],[117.098819,37.469721],[117.104978,37.455309],[117.102293,37.445778],[117.089264,37.435055],[117.038408,37.435452],[117.03067,37.442958],[117.01843,37.435849],[117.012112,37.419643],[117.019693,37.405379],[117.008164,37.392464],[116.99924,37.376964],[117.009664,37.359671],[117.006663,37.355138],[116.987158,37.342692],[116.986684,37.335335],[116.993397,37.32201],[117.002241,37.285962],[117.024273,37.278918],[117.038961,37.266538],[117.030275,37.264229],[117.032328,37.253241],[117.041251,37.247667],[117.042673,37.238867],[117.036592,37.237393],[117.03596,37.224091],[117.022299,37.215089],[117.037777,37.207361],[117.037382,37.195169],[117.045358,37.197161],[117.05744,37.192141],[117.06352,37.182656],[117.061783,37.16496],[117.050648,37.160894],[117.054676,37.141717],[117.059809,37.137251],[117.047411,37.134739],[117.044884,37.122615],[117.024273,37.119664],[117.004531,37.121219],[116.982578,37.113601],[116.931486,37.100477],[116.919009,37.093056],[116.91972,37.081364],[116.925247,37.069831],[116.928643,37.05103],[116.944279,37.042327],[116.948701,37.036537],[116.943173,37.030907],[116.907796,37.019046],[116.891607,37.00271],[116.875024,36.999274],[116.885764,36.991444],[116.886158,36.983573],[116.899188,36.977499],[116.897767,36.962712],[116.907717,36.963272],[116.933381,36.959595],[116.931881,36.946204],[116.935434,36.93457],[116.922563,36.93453],[116.934408,36.925973],[116.957466,36.916495],[116.963152,36.893896],[116.96181,36.867529],[116.962836,36.842674],[116.948069,36.839231],[116.9442,36.844916],[116.934724,36.845116],[116.935908,36.829743],[116.933223,36.823697],[116.919404,36.822776],[116.892476,36.830023],[116.887106,36.833427],[116.882447,36.824058],[116.887975,36.811404],[116.872813,36.812004],[116.868233,36.801872],[116.865548,36.777877],[116.87076,36.759164],[116.883868,36.758243],[116.88679,36.745538],[116.873997,36.739846],[116.861757,36.730345],[116.842489,36.72786],[116.830881,36.723851],[116.802768,36.706729],[116.799689,36.694417],[116.780657,36.691048],[116.780736,36.671552],[116.777262,36.660718],[116.763126,36.651971],[116.759494,36.632746],[116.742042,36.620381],[116.71314,36.608858],[116.693319,36.607895],[116.694345,36.591149],[116.682421,36.580586],[116.661258,36.578376],[116.662916,36.563111],[116.658968,36.553026],[116.646728,36.544105],[116.629592,36.544587],[116.622801,36.532651],[116.60835,36.52011],[116.610087,36.51609],[116.627223,36.508853],[116.624301,36.497233],[116.602032,36.495223],[116.593267,36.485973],[116.595636,36.480383],[116.613009,36.473425],[116.611429,36.459104],[116.620905,36.44144],[116.6198,36.428522],[116.612377,36.42333],[116.591213,36.416286],[116.546202,36.40892]]]]}},{"type":"Feature","properties":{"adcode":370200,"name":"青岛市","center":[120.355173,36.082982],"centroid":[120.150883,36.451227],"childrenNum":10,"level":"city","parent":{"adcode":370000},"subFeatureIndex":1,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.850108,36.612271],[120.786223,36.589663],[120.779747,36.591551],[120.777062,36.600546],[120.765533,36.607011],[120.757557,36.606088],[120.751556,36.615042],[120.725733,36.624436],[120.708281,36.621385],[120.70836,36.612914],[120.699121,36.60665],[120.702991,36.598338],[120.679695,36.589181],[120.665402,36.587454],[120.664059,36.583478],[120.637763,36.574199],[120.635947,36.597775],[120.643449,36.613436],[120.644712,36.626524],[120.657426,36.626644],[120.660585,36.647998],[120.648977,36.655863],[120.652135,36.663327],[120.642027,36.666095],[120.627339,36.659836],[120.625128,36.671231],[120.631446,36.673357],[120.619206,36.681541],[120.616521,36.689764],[120.589751,36.694497],[120.586118,36.698829],[120.596542,36.708052],[120.58525,36.728501],[120.584065,36.735236],[120.562586,36.736479],[120.560375,36.742492],[120.546397,36.744616],[120.544502,36.76213],[120.540791,36.7679],[120.5554,36.778718],[120.56377,36.795343],[120.563454,36.802953],[120.590382,36.801552],[120.601517,36.804996],[120.612336,36.829223],[120.609809,36.832906],[120.589751,36.838791],[120.58754,36.843635],[120.595989,36.852681],[120.588408,36.859045],[120.57988,36.858885],[120.576642,36.879894],[120.592909,36.882134],[120.622838,36.890856],[120.622838,36.907377],[120.617389,36.911136],[120.592909,36.912216],[120.574984,36.927053],[120.571114,36.948682],[120.563218,36.95172],[120.560296,36.960674],[120.566534,36.96559],[120.568508,36.983293],[120.574036,36.987568],[120.575931,36.999074],[120.582328,37.001791],[120.593857,36.991244],[120.606413,37.001192],[120.601754,37.012696],[120.613915,37.023839],[120.606176,37.047157],[120.586513,37.048515],[120.58446,37.058136],[120.570877,37.046399],[120.558953,37.047437],[120.549793,37.041288],[120.541738,37.044163],[120.533289,37.053944],[120.539843,37.060371],[120.536368,37.081963],[120.547661,37.113003],[120.542528,37.128677],[120.527998,37.136733],[120.527129,37.143352],[120.517258,37.148974],[120.506834,37.148854],[120.505729,37.143551],[120.493805,37.1345],[120.493015,37.126723],[120.478643,37.124211],[120.462928,37.115157],[120.440265,37.122655],[120.439475,37.116912],[120.415153,37.110569],[120.407098,37.112803],[120.412942,37.103149],[120.408914,37.09517],[120.398096,37.096447],[120.388225,37.104227],[120.369667,37.104626],[120.362244,37.100477],[120.357822,37.084357],[120.348583,37.077094],[120.34574,37.087789],[120.336343,37.092058],[120.336896,37.104267],[120.331684,37.111966],[120.320628,37.10654],[120.315337,37.113043],[120.300176,37.119584],[120.303413,37.130153],[120.280828,37.13111],[120.264087,37.114718],[120.245688,37.118906],[120.236606,37.125965],[120.231237,37.106301],[120.229894,37.089544],[120.220497,37.08711],[120.214101,37.07019],[120.21647,37.056699],[120.205335,37.038374],[120.193411,37.034261],[120.189621,37.038094],[120.180697,37.032544],[120.173037,37.034421],[120.166404,37.025795],[120.167273,37.017968],[120.159929,37.013375],[120.142319,37.015292],[120.138134,37.022201],[120.123051,37.01645],[120.101571,37.014293],[120.09249,37.017928],[120.049374,37.020045],[120.035238,36.998395],[120.024104,36.999913],[120.002309,37.013494],[119.993543,37.012176],[119.980198,37.018088],[119.975618,37.011098],[119.961561,37.013654],[119.949716,37.006185],[119.939608,37.004108],[119.923341,36.993961],[119.902257,36.9948],[119.900045,36.997556],[119.85148,37.002031],[119.829606,37.002031],[119.820209,36.999594],[119.804968,37.013814],[119.771881,37.006984],[119.769906,36.996597],[119.750559,36.990844],[119.743057,36.992483],[119.731133,36.988487],[119.722289,36.993401],[119.716998,37.007144],[119.681699,36.998475],[119.66251,37.008262],[119.629344,37.01621],[119.61971,37.012895],[119.619078,37.017848],[119.60976,37.013894],[119.604548,36.996038],[119.598072,36.989406],[119.5837,36.950441],[119.599968,36.920614],[119.599652,36.878253],[119.597757,36.857244],[119.56767,36.805717],[119.563721,36.802753],[119.550613,36.80868],[119.539162,36.799949],[119.539162,36.787732],[119.532766,36.78008],[119.530555,36.765256],[119.534977,36.743333],[119.547059,36.725454],[119.561036,36.720884],[119.567433,36.713065],[119.579831,36.711581],[119.587412,36.696101],[119.596651,36.689884],[119.607154,36.667379],[119.61355,36.66453],[119.617025,36.652532],[119.625079,36.638807],[119.651297,36.623633],[119.670328,36.616246],[119.681857,36.606891],[119.701125,36.602634],[119.730107,36.581027],[119.72758,36.562749],[119.74748,36.571788],[119.755929,36.565521],[119.784516,36.554673],[119.798019,36.551619],[119.826763,36.54101],[119.917576,36.525858],[119.920261,36.522079],[119.923025,36.495464],[119.936687,36.496389],[119.936292,36.511507],[119.951375,36.519788],[119.971985,36.522441],[119.974749,36.515688],[119.997571,36.504431],[120.010364,36.509255],[120.004204,36.489512],[120.010758,36.484445],[120.004125,36.477447],[120.006889,36.468799],[120.012812,36.467833],[120.011864,36.454236],[119.996623,36.446309],[119.994175,36.450333],[119.968432,36.450051],[119.953981,36.444217],[119.949795,36.446511],[119.935976,36.427436],[119.933923,36.42007],[119.925236,36.419346],[119.926421,36.403324],[119.941425,36.39503],[119.945452,36.384682],[119.936371,36.380655],[119.93029,36.385165],[119.909837,36.384359],[119.90431,36.38154],[119.904784,36.369942],[119.895939,36.34827],[119.896966,36.334047],[119.891991,36.318773],[119.865379,36.308898],[119.862773,36.302368],[119.854402,36.302328],[119.848795,36.292692],[119.83387,36.278822],[119.82929,36.258859],[119.820446,36.257367],[119.82092,36.244499],[119.808048,36.232839],[119.819498,36.211856],[119.828816,36.210685],[119.823131,36.19894],[119.831738,36.180612],[119.82242,36.177987],[119.821315,36.171285],[119.81326,36.175242],[119.813023,36.167691],[119.792333,36.171648],[119.782778,36.165308],[119.772354,36.167691],[119.748111,36.158645],[119.733818,36.163572],[119.732792,36.172536],[119.723473,36.175565],[119.691728,36.176292],[119.681305,36.18045],[119.671039,36.177866],[119.660852,36.154122],[119.649954,36.137157],[119.651218,36.130531],[119.643716,36.127178],[119.657614,36.108631],[119.657061,36.100872],[119.632187,36.091535],[119.633608,36.067683],[119.666695,36.062993],[119.675698,36.064085],[119.695677,36.053045],[119.704126,36.055269],[119.717314,36.044229],[119.706495,36.028292],[119.681068,36.012068],[119.689122,36.000212],[119.684858,35.982648],[119.690149,35.963702],[119.701757,35.944469],[119.701362,35.923732],[119.716208,35.927337],[119.721262,35.906718],[119.727738,35.902544],[119.738003,35.873123],[119.736898,35.86303],[119.72221,35.865138],[119.725211,35.856746],[119.71834,35.853138],[119.704047,35.863962],[119.68699,35.861814],[119.676014,35.842515],[119.664326,35.841015],[119.649796,35.845191],[119.629344,35.833878],[119.622631,35.816114],[119.612445,35.812707],[119.60897,35.799279],[119.617972,35.789623],[119.611576,35.776597],[119.596256,35.773756],[119.591992,35.753218],[119.605495,35.747454],[119.627843,35.722077],[119.624685,35.712817],[119.614182,35.716675],[119.601231,35.709446],[119.588833,35.715701],[119.576988,35.71237],[119.566485,35.714523],[119.560563,35.721752],[119.545085,35.726747],[119.527317,35.723214],[119.525422,35.730604],[119.517762,35.723742],[119.521079,35.716879],[119.518473,35.700632],[119.51484,35.697992],[119.519105,35.68552],[119.528265,35.674305],[119.524474,35.632279],[119.517762,35.625774],[119.518157,35.615446],[119.536872,35.606011],[119.538215,35.589294],[119.556535,35.592508],[119.57762,35.586243],[119.592308,35.600683],[119.600599,35.590271],[119.609286,35.59202],[119.614972,35.606336],[119.634713,35.598731],[119.651455,35.588766],[119.662115,35.589294],[119.682173,35.590027],[119.717946,35.615649],[119.729949,35.618943],[119.751349,35.617845],[119.752849,35.588684],[119.762483,35.578351],[119.76967,35.577212],[119.780172,35.58486],[119.786174,35.576073],[119.800862,35.581891],[119.792649,35.59385],[119.800467,35.59869],[119.802994,35.609183],[119.792649,35.615446],[119.802204,35.620244],[119.800625,35.626465],[119.818472,35.63858],[119.824315,35.646304],[119.829606,35.643702],[119.831422,35.618333],[119.844768,35.623619],[119.851717,35.622074],[119.868379,35.608817],[119.877619,35.610972],[119.894597,35.628742],[119.902493,35.63297],[119.925157,35.63736],[119.927921,35.65045],[119.912285,35.660651],[119.910864,35.674305],[119.923894,35.696529],[119.94482,35.705506],[119.952954,35.713142],[119.953349,35.72561],[119.949321,35.729873],[119.930369,35.728899],[119.920735,35.737548],[119.924841,35.758252],[119.937081,35.763407],[119.959982,35.759104],[119.969932,35.749078],[119.967879,35.74108],[119.978461,35.739496],[119.986041,35.729711],[119.981224,35.715335],[120.001519,35.720209],[120.011074,35.713223],[120.020235,35.722239],[120.031369,35.752244],[120.037529,35.753908],[120.03745,35.763041],[120.043135,35.776759],[120.049453,35.782278],[120.041319,35.799198],[120.033264,35.806013],[120.036423,35.824753],[120.062798,35.87134],[120.07875,35.885768],[120.084041,35.880378],[120.102203,35.881918],[120.118392,35.888524],[120.123998,35.895291],[120.12542,35.906718],[120.135843,35.905421],[120.142714,35.909392],[120.141924,35.919438],[120.147768,35.907852],[120.15677,35.909149],[120.167983,35.918426],[120.179276,35.936653],[120.207862,35.947344],[120.210784,35.938435],[120.194438,35.93402],[120.184172,35.915671],[120.172169,35.904408],[120.169405,35.888565],[120.185198,35.88747],[120.202098,35.89205],[120.204388,35.910404],[120.209284,35.917616],[120.222076,35.924947],[120.233132,35.941553],[120.246477,35.947466],[120.251531,35.95937],[120.261718,35.965484],[120.284619,35.965565],[120.305072,35.97184],[120.316522,36.002155],[120.309494,36.014132],[120.291173,36.017611],[120.27459,36.004664],[120.278775,35.996368],[120.271273,35.99394],[120.265588,36.001062],[120.254927,35.980826],[120.247662,35.982567],[120.248768,35.992078],[120.256427,36.005433],[120.265509,36.014011],[120.25698,36.024813],[120.244977,36.020444],[120.213232,35.998351],[120.19886,35.99572],[120.223577,36.016398],[120.223656,36.022385],[120.23479,36.030638],[120.230605,36.044916],[120.24095,36.047828],[120.241345,36.060445],[120.231868,36.063842],[120.19499,36.064206],[120.181645,36.066511],[120.173906,36.077225],[120.161903,36.082682],[120.152111,36.095254],[120.116891,36.102852],[120.116023,36.114046],[120.1086,36.12742],[120.128105,36.129723],[120.142556,36.143539],[120.140345,36.173304],[120.164351,36.188767],[120.181566,36.203945],[120.20723,36.211613],[120.217338,36.211412],[120.224445,36.19131],[120.235027,36.189211],[120.244819,36.199384],[120.260929,36.198415],[120.262982,36.182267],[120.276564,36.185699],[120.28075,36.17932],[120.291489,36.185941],[120.310283,36.185295],[120.313205,36.196316],[120.29828,36.203783],[120.293305,36.219241],[120.297412,36.225455],[120.319997,36.232234],[120.336896,36.213954],[120.35877,36.200312],[120.369509,36.177745],[120.358217,36.174757],[120.356953,36.166076],[120.347004,36.155818],[120.333658,36.134652],[120.326235,36.111662],[120.317549,36.108106],[120.312653,36.100185],[120.311231,36.087614],[120.30136,36.071282],[120.290147,36.060526],[120.286119,36.047181],[120.297649,36.045361],[120.296069,36.052439],[120.307993,36.050214],[120.315969,36.059677],[120.324814,36.059515],[120.324577,36.051104],[120.337527,36.054986],[120.342897,36.05167],[120.337922,36.044633],[120.345661,36.043541],[120.35798,36.04892],[120.365166,36.041398],[120.371089,36.044835],[120.37022,36.053409],[120.389172,36.059394],[120.38783,36.051711],[120.404413,36.051589],[120.415311,36.057413],[120.42226,36.054986],[120.437185,36.0655],[120.441923,36.063236],[120.449662,36.07302],[120.467587,36.087169],[120.479827,36.091656],[120.497832,36.08624],[120.526261,36.093435],[120.547345,36.092141],[120.552241,36.097881],[120.547187,36.10952],[120.567087,36.105964],[120.573325,36.114248],[120.580827,36.111419],[120.579248,36.103943],[120.599859,36.101801],[120.607834,36.107217],[120.612099,36.117521],[120.621259,36.119259],[120.632235,36.113319],[120.650951,36.117885],[120.672667,36.129844],[120.695647,36.123744],[120.71223,36.126572],[120.719811,36.13441],[120.716257,36.142085],[120.705439,36.139702],[120.704333,36.152344],[120.698332,36.158887],[120.707018,36.159331],[120.707255,36.165066],[120.697147,36.168579],[120.693041,36.190624],[120.696752,36.204026],[120.689171,36.230176],[120.681038,36.238932],[120.689724,36.251437],[120.685855,36.260231],[120.686249,36.279104],[120.677326,36.281443],[120.659716,36.27483],[120.65482,36.27983],[120.656005,36.28862],[120.665718,36.29749],[120.66635,36.309342],[120.656005,36.322158],[120.663033,36.33179],[120.692093,36.325544],[120.707966,36.328929],[120.73821,36.32373],[120.744449,36.328163],[120.739632,36.3386],[120.729603,36.349801],[120.72676,36.359831],[120.716494,36.360516],[120.709703,36.368089],[120.700385,36.37123],[120.694383,36.390158],[120.71144,36.408678],[120.72597,36.413912],[120.726997,36.422928],[120.736868,36.432829],[120.751003,36.431299],[120.760084,36.434559],[120.761664,36.443211],[120.756768,36.458098],[120.759453,36.462604],[120.828471,36.466627],[120.843001,36.457736],[120.842369,36.441601],[120.838342,36.436974],[120.858952,36.424578],[120.859505,36.412422],[120.851134,36.406021],[120.854925,36.381903],[120.87443,36.373244],[120.872061,36.367001],[120.895909,36.376104],[120.891645,36.389675],[120.903332,36.406142],[120.918415,36.418742],[120.927812,36.410047],[120.935077,36.421036],[120.925522,36.419909],[120.91881,36.425383],[120.917388,36.435364],[120.907833,36.445987],[120.920152,36.455201],[120.934524,36.454678],[120.938315,36.44812],[120.947238,36.449287],[120.952371,36.459184],[120.963585,36.464334],[120.967691,36.47797],[120.954977,36.489311],[120.95861,36.498721],[120.954345,36.507567],[120.962716,36.519225],[120.983958,36.540809],[120.983326,36.545913],[120.969349,36.559495],[120.962163,36.562789],[120.936341,36.56532],[120.923785,36.572029],[120.91265,36.568414],[120.893382,36.57918],[120.891961,36.58898],[120.884854,36.60143],[120.86598,36.605606],[120.850108,36.612271]]],[[[120.584381,36.096183],[120.579485,36.091535],[120.595042,36.090282],[120.587461,36.099457],[120.584381,36.096183]]],[[[120.990039,36.413348],[120.978115,36.428643],[120.969823,36.431581],[120.9639,36.424618],[120.948502,36.421117],[120.950318,36.414757],[120.963663,36.41363],[120.981431,36.417494],[120.990039,36.413348]]],[[[121.004253,36.488306],[120.989881,36.492367],[120.988538,36.485249],[121.004253,36.488306]]],[[[120.877352,35.89359],[120.875377,35.888443],[120.888802,35.897277],[120.877352,35.89359]]],[[[119.73524,35.595762],[119.741873,35.583884],[119.743689,35.591328],[119.738872,35.599666],[119.73524,35.595762]]],[[[120.158823,35.76499],[120.155428,35.751838],[120.158665,35.744896],[120.173037,35.741405],[120.187962,35.748712],[120.192858,35.757156],[120.184725,35.766978],[120.180539,35.788649],[120.17209,35.785727],[120.158823,35.76499]]],[[[120.775088,36.237963],[120.76806,36.230701],[120.777457,36.222308],[120.775088,36.237963]]]]}},{"type":"Feature","properties":{"adcode":370300,"name":"淄博市","center":[118.047648,36.814939],"centroid":[118.058673,36.610971],"childrenNum":8,"level":"city","parent":{"adcode":370000},"subFeatureIndex":2,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.988471,35.947709],[118.021084,35.949004],[118.02298,35.958965],[118.03293,35.964998],[118.032693,35.974268],[118.042248,35.986371],[118.058989,35.992968],[118.066807,36.009155],[118.075888,36.009034],[118.078415,36.017652],[118.084338,36.012149],[118.093261,36.014618],[118.096104,36.024246],[118.10937,36.030031],[118.132666,36.030436],[118.135588,36.02364],[118.178388,36.017005],[118.197578,36.004947],[118.206106,35.97864],[118.193787,35.974026],[118.207054,35.964391],[118.209897,35.955767],[118.22569,35.948235],[118.236351,35.947749],[118.236904,35.939245],[118.245906,35.932157],[118.257119,35.930699],[118.257593,35.925717],[118.26928,35.928512],[118.281362,35.935964],[118.293523,35.937503],[118.303552,35.948923],[118.314134,35.950827],[118.320136,35.946575],[118.344774,35.955888],[118.352828,35.956698],[118.360725,35.970908],[118.382283,35.975078],[118.387021,35.987586],[118.415213,35.990783],[118.430612,35.969694],[118.459356,35.952689],[118.470964,35.960868],[118.502157,35.962488],[118.505157,35.965808],[118.499393,35.976212],[118.486521,35.988759],[118.49268,35.995437],[118.487074,36.005797],[118.476571,36.012797],[118.469859,36.022992],[118.476097,36.031407],[118.489206,36.025784],[118.503341,36.024246],[118.507447,36.029789],[118.516845,36.026107],[118.522609,36.043622],[118.522214,36.05349],[118.513449,36.064085],[118.516608,36.068573],[118.507842,36.074961],[118.496866,36.067683],[118.48044,36.074071],[118.482099,36.092546],[118.478545,36.098245],[118.484468,36.104064],[118.479493,36.118814],[118.492601,36.127057],[118.487863,36.131784],[118.462594,36.14059],[118.457303,36.13247],[118.447116,36.140913],[118.440956,36.132511],[118.428953,36.132672],[118.412844,36.127218],[118.402183,36.131622],[118.405263,36.141641],[118.402262,36.162926],[118.387653,36.174555],[118.374387,36.203097],[118.382046,36.207335],[118.386548,36.239053],[118.379756,36.245265],[118.368385,36.248412],[118.350775,36.263538],[118.31524,36.24938],[118.306948,36.252123],[118.315003,36.266361],[118.31366,36.277371],[118.317609,36.288903],[118.310107,36.295716],[118.315477,36.304464],[118.30908,36.307125],[118.304105,36.321393],[118.291075,36.326189],[118.300157,36.338116],[118.269912,36.339849],[118.261857,36.345852],[118.262726,36.352218],[118.256093,36.363175],[118.239825,36.376748],[118.235403,36.389634],[118.251592,36.401995],[118.250407,36.411214],[118.227427,36.408034],[118.224427,36.414234],[118.228533,36.430736],[118.232797,36.432869],[118.22719,36.451379],[118.233508,36.456609],[118.229638,36.467793],[118.216135,36.478573],[118.212818,36.490075],[118.218346,36.497354],[118.210528,36.503466],[118.213766,36.513075],[118.210844,36.526099],[118.221663,36.531887],[118.214556,36.539322],[118.191892,36.546074],[118.183916,36.561142],[118.180915,36.5607],[118.180678,36.577412],[118.176967,36.582996],[118.180363,36.593599],[118.189523,36.599141],[118.200657,36.612071],[118.214793,36.621144],[118.20658,36.637482],[118.199631,36.639047],[118.215898,36.648921],[118.221189,36.664169],[118.230191,36.660357],[118.226796,36.668382],[118.215819,36.668262],[118.21653,36.6811],[118.228059,36.694016],[118.245037,36.690647],[118.238246,36.697305],[118.227585,36.697625],[118.237614,36.712704],[118.227743,36.717957],[118.234219,36.726457],[118.254276,36.731789],[118.264147,36.72373],[118.277019,36.719801],[118.284363,36.72337],[118.276151,36.731749],[118.27157,36.744015],[118.279546,36.753033],[118.298183,36.753914],[118.297788,36.777677],[118.307501,36.776234],[118.318161,36.77972],[118.321636,36.770905],[118.350222,36.768301],[118.388522,36.791217],[118.419872,36.796304],[118.424531,36.802673],[118.438666,36.809682],[118.44072,36.828142],[118.435508,36.838391],[118.450038,36.83747],[118.453828,36.857564],[118.461488,36.854322],[118.460462,36.846597],[118.480993,36.852641],[118.479967,36.860166],[118.465042,36.861366],[118.476966,36.876893],[118.482809,36.879214],[118.483046,36.900777],[118.474913,36.905297],[118.481862,36.914136],[118.48968,36.914096],[118.496708,36.924733],[118.492365,36.931611],[118.494339,36.941846],[118.467411,36.945484],[118.439061,36.942206],[118.40321,36.943125],[118.401788,36.949802],[118.386548,36.950481],[118.387574,36.971305],[118.384652,36.974382],[118.352276,36.974582],[118.3443,36.960714],[118.324637,36.964751],[118.322347,36.974502],[118.312476,36.970905],[118.294629,36.969666],[118.291628,36.995878],[118.288785,36.999993],[118.271412,37.006744],[118.262568,37.00271],[118.250802,37.002949],[118.247327,36.98613],[118.235087,36.98557],[118.231376,36.974822],[118.222531,36.967109],[118.209739,36.963152],[118.195209,36.967348],[118.192918,36.977739],[118.160936,36.981934],[118.161331,36.988567],[118.15146,36.988527],[118.153198,37.000512],[118.138983,37.005985],[118.139299,37.014693],[118.134008,37.025955],[118.139299,37.033103],[118.139615,37.044363],[118.15146,37.047038],[118.150829,37.054743],[118.15762,37.057776],[118.156909,37.065281],[118.13622,37.06536],[118.136062,37.077773],[118.130455,37.091101],[118.115925,37.100636],[118.111187,37.094652],[118.086075,37.091899],[118.063016,37.082841],[118.056857,37.093654],[118.045959,37.098202],[118.045485,37.105982],[118.057252,37.106141],[118.068623,37.115875],[118.079679,37.120781],[118.065069,37.139564],[118.059858,37.151087],[118.062385,37.162528],[118.074467,37.170341],[118.071545,37.177675],[118.082995,37.185605],[118.077941,37.188953],[118.074072,37.204094],[118.064122,37.21007],[118.048012,37.205568],[118.046275,37.216324],[118.036799,37.220905],[118.022348,37.2221],[118.019584,37.210309],[118.010898,37.20756],[117.994393,37.212699],[117.984364,37.210349],[117.98089,37.218674],[117.973862,37.216483],[117.981048,37.238429],[117.996446,37.246273],[117.990761,37.248981],[117.990603,37.262358],[117.963833,37.271753],[117.947013,37.262159],[117.948829,37.26829],[117.941327,37.280549],[117.909266,37.265065],[117.888497,37.262319],[117.8776,37.273027],[117.850909,37.28246],[117.83859,37.282659],[117.818848,37.276012],[117.782128,37.248702],[117.773678,37.244959],[117.760333,37.244959],[117.729851,37.249101],[117.693447,37.257661],[117.675995,37.270121],[117.659491,37.274101],[117.644329,37.265862],[117.63043,37.247269],[117.627193,37.228074],[117.615348,37.212699],[117.598212,37.203058],[117.592052,37.169624],[117.586366,37.160216],[117.574284,37.151366],[117.551305,37.146781],[117.557464,37.124211],[117.574442,37.12106],[117.576969,37.114758],[117.567888,37.11029],[117.575074,37.089185],[117.590946,37.084996],[117.608477,37.090622],[117.619375,37.090103],[117.644645,37.083878],[117.673942,37.073143],[117.703002,37.068673],[117.726692,37.068753],[117.739801,37.064921],[117.761991,37.065839],[117.771783,37.069032],[117.800369,37.070789],[117.847355,37.065959],[117.840327,37.035539],[117.841827,37.026354],[117.865992,37.023719],[117.870493,37.013375],[117.866386,37.007024],[117.866623,36.993282],[117.870493,36.985451],[117.906581,36.981695],[117.911951,36.975141],[117.910292,36.962592],[117.913372,36.953679],[117.931772,36.941886],[117.936115,36.93489],[117.935404,36.915736],[117.94338,36.930012],[117.949145,36.918375],[117.96178,36.922494],[117.960674,36.910376],[117.950645,36.902137],[117.9403,36.901177],[117.940616,36.891616],[117.929719,36.890216],[117.9189,36.880094],[117.917005,36.86973],[117.891814,36.871811],[117.891103,36.864408],[117.875152,36.861246],[117.865597,36.866529],[117.856594,36.859926],[117.832825,36.859966],[117.828008,36.855883],[117.831877,36.836629],[117.822085,36.825139],[117.820901,36.801511],[117.814662,36.797306],[117.815531,36.788573],[117.824297,36.787933],[117.825639,36.775834],[117.840327,36.777516],[117.850672,36.764735],[117.852488,36.750708],[117.832983,36.744816],[117.834404,36.751871],[117.826429,36.763011],[117.820743,36.756359],[117.810161,36.734394],[117.795157,36.719761],[117.793025,36.707451],[117.78197,36.70304],[117.777942,36.695219],[117.754173,36.696944],[117.725666,36.695219],[117.718006,36.697826],[117.715637,36.691208],[117.701265,36.685191],[117.695184,36.666978],[117.698027,36.652974],[117.709003,36.651569],[117.712241,36.642258],[117.70853,36.635154],[117.715321,36.627527],[117.714926,36.610545],[117.706555,36.611549],[117.705055,36.605807],[117.690525,36.604883],[117.697869,36.599422],[117.715163,36.600546],[117.706792,36.593559],[117.715321,36.578537],[117.706792,36.581469],[117.696132,36.575042],[117.694315,36.568896],[117.720849,36.560057],[117.72377,36.54732],[117.739406,36.539925],[117.742486,36.525737],[117.750777,36.524652],[117.76586,36.512994],[117.765544,36.509496],[117.751646,36.509979],[117.735853,36.504993],[117.743118,36.498439],[117.755673,36.496228],[117.757332,36.484485],[117.748566,36.478694],[117.765544,36.469845],[117.757016,36.459144],[117.763491,36.452868],[117.755752,36.445303],[117.779838,36.441239],[117.786471,36.434277],[117.7965,36.43963],[117.799343,36.432265],[117.817268,36.436129],[117.822717,36.44305],[117.833062,36.44301],[117.826823,36.427114],[117.829508,36.417776],[117.855094,36.412945],[117.859279,36.389433],[117.867492,36.386373],[117.879732,36.370626],[117.882101,36.35673],[117.890314,36.366035],[117.89521,36.359227],[117.893472,36.339446],[117.902633,36.352057],[117.915346,36.352903],[117.933904,36.341219],[117.933509,36.334369],[117.919611,36.324738],[117.918347,36.317725],[117.924823,36.313171],[117.922533,36.300514],[117.93114,36.283742],[117.926797,36.277532],[117.932719,36.271846],[117.943696,36.274064],[117.972993,36.268378],[117.975362,36.262328],[117.96707,36.248251],[117.96328,36.224971],[117.967781,36.21464],[117.959332,36.204308],[117.943933,36.207981],[117.928534,36.196558],[117.921664,36.203662],[117.914636,36.200837],[117.915899,36.192562],[117.903027,36.172092],[117.912109,36.171648],[117.917873,36.16337],[117.90666,36.152708],[117.914162,36.140631],[117.91203,36.132753],[117.923875,36.1174],[117.921111,36.110005],[117.931535,36.094203],[117.939984,36.094324],[117.946618,36.100387],[117.954041,36.090201],[117.953172,36.081833],[117.946223,36.08151],[117.94188,36.071807],[117.948829,36.062589],[117.935799,36.061214],[117.932798,36.052196],[117.946855,36.04253],[117.949855,36.018259],[117.94338,36.017288],[117.950803,35.996489],[117.937536,35.99653],[117.937221,35.98119],[117.947013,35.971111],[117.947013,35.960382],[117.953962,35.957913],[117.971414,35.969937],[117.992577,35.971273],[117.984443,35.956293],[117.988471,35.947709]]]]}},{"type":"Feature","properties":{"adcode":370400,"name":"枣庄市","center":[117.557964,34.856424],"centroid":[117.39817,34.916234],"childrenNum":6,"level":"city","parent":{"adcode":370000},"subFeatureIndex":3,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.392342,34.574909],[117.402529,34.569431],[117.403793,34.546898],[117.424482,34.537009],[117.426772,34.525224],[117.439486,34.520031],[117.438223,34.516445],[117.45141,34.506264],[117.465467,34.48458],[117.48205,34.48594],[117.48663,34.482065],[117.487341,34.466354],[117.493263,34.472663],[117.513005,34.472581],[117.538275,34.46722],[117.54783,34.475179],[117.561334,34.471962],[117.569783,34.463054],[117.592289,34.462518],[117.603187,34.476828],[117.609662,34.490476],[117.629246,34.488538],[117.642039,34.496825],[117.647014,34.492908],[117.659096,34.501071],[117.673389,34.515827],[117.681996,34.529551],[117.684523,34.547351],[117.700712,34.54525],[117.748645,34.533383],[117.773994,34.529056],[117.790498,34.518918],[117.801712,34.518753],[117.799185,34.535155],[117.793499,34.548463],[117.794605,34.559751],[117.791446,34.585082],[117.798553,34.621848],[117.793657,34.625594],[117.796026,34.637736],[117.793657,34.651768],[117.805818,34.646254],[117.819243,34.681842],[117.825639,34.684392],[117.831719,34.707793],[117.825244,34.713139],[117.823665,34.72868],[117.830061,34.740888],[117.830614,34.760246],[117.79958,34.768875],[117.784576,34.780667],[117.784023,34.79484],[117.77739,34.801248],[117.798632,34.810653],[117.803686,34.830734],[117.795315,34.835907],[117.763175,34.848839],[117.75291,34.857623],[117.742407,34.874163],[117.729298,34.876994],[117.715163,34.896238],[117.70466,34.906699],[117.698501,34.919989],[117.704265,34.933605],[117.712004,34.934999],[117.714689,34.947833],[117.724323,34.958329],[117.719506,34.968331],[117.726534,34.979561],[117.728035,35.008041],[117.737985,35.013203],[117.744618,35.022748],[117.736247,35.031514],[117.704423,35.031227],[117.707345,35.052318],[117.69321,35.06018],[117.676469,35.065543],[117.656885,35.077497],[117.650725,35.092724],[117.623007,35.113063],[117.604371,35.13401],[117.600344,35.135524],[117.591025,35.152539],[117.586208,35.152989],[117.58376,35.164317],[117.570336,35.168365],[117.556043,35.161291],[117.548462,35.161741],[117.528009,35.184351],[117.526825,35.200621],[117.507162,35.198986],[117.494843,35.205893],[117.480628,35.222771],[117.468073,35.228369],[117.448331,35.231842],[117.449752,35.246795],[117.439486,35.258927],[117.426456,35.261786],[117.419191,35.273997],[117.406004,35.283348],[117.403635,35.301394],[117.399528,35.306374],[117.359571,35.318375],[117.347568,35.315109],[117.318034,35.320252],[117.308557,35.312579],[117.314085,35.302129],[117.311163,35.28588],[117.305794,35.295229],[117.290079,35.299394],[117.284472,35.294331],[117.262203,35.287472],[117.269231,35.261296],[117.220824,35.26489],[117.204873,35.258518],[117.199108,35.24749],[117.176681,35.243159],[117.152675,35.232047],[117.123536,35.23078],[117.104899,35.221464],[117.092896,35.220361],[117.065336,35.22792],[117.053333,35.224202],[117.028774,35.221219],[117.014639,35.214844],[116.995687,35.1978],[116.969706,35.187377],[116.962047,35.177319],[116.938277,35.172168],[116.925721,35.182266],[116.913718,35.178791],[116.904716,35.182471],[116.898398,35.195757],[116.876603,35.188031],[116.86618,35.172617],[116.85394,35.16861],[116.832776,35.184392],[116.811218,35.17736],[116.81564,35.170777],[116.813192,35.159573],[116.81793,35.150699],[116.825748,35.147631],[116.832065,35.123783],[116.848649,35.103774],[116.863179,35.091496],[116.888922,35.093829],[116.888212,35.085193],[116.900373,35.068737],[116.880473,35.062595],[116.881183,35.058133],[116.900767,35.05977],[116.907875,35.046995],[116.937172,35.0275],[116.951702,35.020618],[116.956993,35.01054],[116.954466,34.993331],[116.943015,34.975627],[116.955334,34.967142],[116.9671,34.951072],[116.980367,34.941027],[116.989448,34.93873],[117.017719,34.942503],[117.038487,34.937869],[117.043462,34.932825],[117.041093,34.925157],[117.05815,34.926961],[117.06123,34.930406],[117.073707,34.925485],[117.082551,34.934917],[117.103399,34.937459],[117.111059,34.917774],[117.110111,34.90514],[117.12093,34.903581],[117.125826,34.863451],[117.139013,34.854052],[117.140593,34.846499],[117.156623,34.834306],[117.17755,34.828722],[117.194686,34.816239],[117.180314,34.800221],[117.172733,34.799194],[117.162467,34.782105],[117.176523,34.779065],[117.180551,34.784201],[117.191369,34.780914],[117.212927,34.761027],[117.22422,34.745533],[117.236697,34.746355],[117.242067,34.729995],[117.253675,34.721444],[117.271443,34.726501],[117.278787,34.715647],[117.304609,34.714866],[117.310611,34.717333],[117.326167,34.703434],[117.324272,34.697307],[117.335485,34.692454],[117.329247,34.677359],[117.346067,34.670982],[117.35657,34.661643],[117.354201,34.653538],[117.366915,34.650246],[117.374022,34.636172],[117.376707,34.622301],[117.384051,34.628228],[117.402687,34.628434],[117.4109,34.623454],[117.407978,34.610651],[117.397949,34.604393],[117.398976,34.588335],[117.393922,34.587676],[117.392342,34.574909]]]]}},{"type":"Feature","properties":{"adcode":370500,"name":"东营市","center":[118.66471,37.434564],"centroid":[118.64357,37.639575],"childrenNum":5,"level":"city","parent":{"adcode":370000},"subFeatureIndex":4,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.245432,38.144286],[118.236272,38.125754],[118.227664,38.119262],[118.241247,38.112138],[118.245511,38.103322],[118.235324,38.082969],[118.226638,38.079583],[118.230665,38.056743],[118.227585,38.037874],[118.410001,38.053277],[118.419319,38.053119],[118.419951,38.025503],[118.40779,38.026212],[118.2234,38.00095],[118.22956,37.986444],[118.220873,37.98258],[118.223479,37.959788],[118.213529,37.95541],[118.215503,37.949376],[118.224742,37.950559],[118.226954,37.939672],[118.225611,37.923417],[118.232718,37.922509],[118.235403,37.905343],[118.243142,37.895673],[118.236588,37.884501],[118.239115,37.868708],[118.248749,37.858164],[118.247643,37.871788],[118.258146,37.854886],[118.258304,37.844182],[118.269754,37.853109],[118.286337,37.8569],[118.301657,37.870208],[118.313265,37.861521],[118.328111,37.865272],[118.340193,37.838059],[118.334271,37.832134],[118.346116,37.832371],[118.344932,37.824627],[118.356382,37.820834],[118.352355,37.814274],[118.36191,37.792063],[118.348406,37.790719],[118.340588,37.774391],[118.340667,37.763913],[118.353065,37.75814],[118.353697,37.750151],[118.341931,37.74667],[118.337509,37.729502],[118.31753,37.728395],[118.319425,37.712924],[118.316187,37.714151],[118.3045,37.690722],[118.305132,37.683122],[118.294076,37.678529],[118.293129,37.670096],[118.2846,37.662058],[118.260989,37.654614],[118.246459,37.658376],[118.239431,37.65596],[118.22569,37.663682],[118.207449,37.661583],[118.200657,37.667404],[118.195445,37.661742],[118.177125,37.657623],[118.172545,37.644079],[118.165596,37.644633],[118.163542,37.63069],[118.154935,37.628036],[118.157462,37.62035],[118.154935,37.605491],[118.146722,37.599943],[118.148696,37.594078],[118.134877,37.590035],[118.127612,37.578103],[118.131324,37.571285],[118.13922,37.571364],[118.134166,37.558478],[118.141431,37.556297],[118.173176,37.563593],[118.176098,37.557129],[118.173255,37.546858],[118.159831,37.539164],[118.156988,37.530358],[118.150987,37.530517],[118.142537,37.518933],[118.136772,37.516791],[118.139378,37.507427],[118.134245,37.507387],[118.135035,37.496752],[118.127849,37.491831],[118.128481,37.483694],[118.120426,37.480757],[118.112766,37.463528],[118.125322,37.45912],[118.118531,37.456182],[118.114898,37.439742],[118.136141,37.441688],[118.14996,37.438351],[118.163937,37.416742],[118.165596,37.4082],[118.160147,37.399618],[118.16141,37.389961],[118.144037,37.392822],[118.135509,37.384834],[118.141668,37.376487],[118.154935,37.377401],[118.156198,37.364322],[118.161015,37.362573],[118.202,37.382409],[118.216925,37.385191],[118.217951,37.371478],[118.222768,37.367861],[118.245353,37.367781],[118.245827,37.376646],[118.258541,37.37911],[118.262015,37.364283],[118.273624,37.360029],[118.286495,37.362772],[118.291865,37.358518],[118.287285,37.352434],[118.315398,37.352514],[118.31524,37.31477],[118.319741,37.305978],[118.326058,37.306535],[118.325584,37.296866],[118.342168,37.295075],[118.342168,37.287076],[118.355197,37.286997],[118.358277,37.280669],[118.368069,37.279594],[118.36262,37.273783],[118.372096,37.273703],[118.375729,37.258497],[118.368385,37.258576],[118.36033,37.244561],[118.350459,37.243765],[118.346669,37.233252],[118.3642,37.210189],[118.375966,37.206126],[118.376598,37.196962],[118.383389,37.190587],[118.387574,37.177834],[118.380467,37.175164],[118.377545,37.154157],[118.366569,37.146781],[118.361594,37.148495],[118.356224,37.139325],[118.347616,37.139803],[118.340667,37.131748],[118.346116,37.123931],[118.338219,37.123134],[118.349354,37.101753],[118.338298,37.10311],[118.338851,37.093894],[118.332928,37.081923],[118.338535,37.072265],[118.337588,37.053904],[118.324558,37.046279],[118.3259,37.035459],[118.310186,37.028231],[118.308212,37.019885],[118.28997,37.00946],[118.288785,36.999993],[118.291628,36.995878],[118.294629,36.969666],[118.312476,36.970905],[118.322347,36.974502],[118.324637,36.964751],[118.3443,36.960714],[118.352276,36.974582],[118.384652,36.974382],[118.387574,36.971305],[118.386548,36.950481],[118.401788,36.949802],[118.40321,36.943125],[118.439061,36.942206],[118.467411,36.945484],[118.47665,36.957077],[118.503736,36.95156],[118.503183,36.944285],[118.524583,36.945284],[118.52711,36.939687],[118.537771,36.936769],[118.55467,36.938368],[118.560751,36.946564],[118.557434,36.96539],[118.559803,36.977059],[118.552301,36.979657],[118.553959,37.000233],[118.564146,36.99416],[118.580493,36.994999],[118.566199,36.999034],[118.571174,37.004148],[118.590206,37.001351],[118.583572,37.008422],[118.588389,37.017409],[118.57149,37.022081],[118.545826,37.023519],[118.545431,37.038494],[118.56004,37.041408],[118.557592,37.051469],[118.561303,37.063325],[118.580414,37.063325],[118.591469,37.068474],[118.610895,37.063005],[118.631901,37.066757],[118.632138,37.070429],[118.654091,37.076935],[118.655512,37.082681],[118.665146,37.081763],[118.668384,37.091539],[118.667041,37.11392],[118.673754,37.144309],[118.653617,37.149692],[118.649195,37.164243],[118.64572,37.159579],[118.634191,37.163366],[118.633638,37.171178],[118.645483,37.178153],[118.649274,37.189112],[118.660408,37.187877],[118.668779,37.198436],[118.672332,37.215129],[118.680624,37.229269],[118.709684,37.241256],[118.728399,37.252764],[118.777991,37.280112],[118.821897,37.288788],[118.856959,37.293842],[119.039928,37.304466],[119.010315,37.313218],[119.001233,37.318748],[118.98694,37.339511],[118.981412,37.35983],[118.985598,37.365754],[119.009841,37.370763],[119.012842,37.376089],[119.003444,37.383403],[118.982597,37.378077],[118.977385,37.382052],[118.973121,37.404346],[118.958275,37.454912],[118.942955,37.497466],[118.939638,37.527066],[118.9518,37.556019],[118.972331,37.594474],[118.988677,37.620905],[119.024213,37.6419],[119.065355,37.64194],[119.118343,37.64804],[119.153404,37.655406],[119.236321,37.652079],[119.262617,37.660475],[119.280464,37.692503],[119.299653,37.75549],[119.309129,37.805383],[119.304075,37.845486],[119.292151,37.869616],[119.263801,37.88154],[119.240348,37.878026],[119.212709,37.83881],[119.161617,37.819214],[119.135874,37.827985],[119.122844,37.866536],[119.120554,37.897054],[119.110604,37.921365],[119.045297,37.967597],[119.00455,37.992278],[118.996495,38.013996],[118.985282,38.062099],[118.974068,38.09415],[118.958512,38.110131],[118.931426,38.127486],[118.908051,38.139368],[118.877491,38.149596],[118.853721,38.154985],[118.811474,38.15762],[118.777754,38.156952],[118.726425,38.154238],[118.62582,38.138306],[118.607816,38.12906],[118.603946,38.101354],[118.597629,38.078993],[118.565568,38.060209],[118.552459,38.055679],[118.534533,38.063517],[118.530269,38.073204],[118.517081,38.088363],[118.513212,38.10466],[118.504526,38.113909],[118.483204,38.123236],[118.461409,38.126659],[118.449722,38.124259],[118.43148,38.106274],[118.420425,38.107337],[118.404078,38.120914],[118.39097,38.123315],[118.38023,38.119931],[118.360172,38.120954],[118.330717,38.125046],[118.274334,38.138542],[118.245432,38.144286]]],[[[118.410001,38.053277],[118.227585,38.037874],[118.2234,38.00095],[118.40779,38.026212],[118.410001,38.053277]]]]}},{"type":"Feature","properties":{"adcode":370600,"name":"烟台市","center":[121.391382,37.539297],"centroid":[120.804685,37.241819],"childrenNum":11,"level":"city","parent":{"adcode":370000},"subFeatureIndex":5,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.576514,37.127561],[119.568696,37.100157],[119.576198,37.087509],[119.559615,37.071786],[119.563406,37.058495],[119.606048,37.04037],[119.613155,37.034101],[119.60976,37.013894],[119.619078,37.017848],[119.61971,37.012895],[119.629344,37.01621],[119.66251,37.008262],[119.681699,36.998475],[119.716998,37.007144],[119.722289,36.993401],[119.731133,36.988487],[119.743057,36.992483],[119.750559,36.990844],[119.769906,36.996597],[119.771881,37.006984],[119.804968,37.013814],[119.820209,36.999594],[119.829606,37.002031],[119.85148,37.002031],[119.900045,36.997556],[119.902257,36.9948],[119.923341,36.993961],[119.939608,37.004108],[119.949716,37.006185],[119.961561,37.013654],[119.975618,37.011098],[119.980198,37.018088],[119.993543,37.012176],[120.002309,37.013494],[120.024104,36.999913],[120.035238,36.998395],[120.049374,37.020045],[120.09249,37.017928],[120.101571,37.014293],[120.123051,37.01645],[120.138134,37.022201],[120.142319,37.015292],[120.159929,37.013375],[120.167273,37.017968],[120.166404,37.025795],[120.173037,37.034421],[120.180697,37.032544],[120.189621,37.038094],[120.193411,37.034261],[120.205335,37.038374],[120.21647,37.056699],[120.214101,37.07019],[120.220497,37.08711],[120.229894,37.089544],[120.231237,37.106301],[120.236606,37.125965],[120.245688,37.118906],[120.264087,37.114718],[120.280828,37.13111],[120.303413,37.130153],[120.300176,37.119584],[120.315337,37.113043],[120.320628,37.10654],[120.331684,37.111966],[120.336896,37.104267],[120.336343,37.092058],[120.34574,37.087789],[120.348583,37.077094],[120.357822,37.084357],[120.362244,37.100477],[120.369667,37.104626],[120.388225,37.104227],[120.398096,37.096447],[120.408914,37.09517],[120.412942,37.103149],[120.407098,37.112803],[120.415153,37.110569],[120.439475,37.116912],[120.440265,37.122655],[120.462928,37.115157],[120.478643,37.124211],[120.493015,37.126723],[120.493805,37.1345],[120.505729,37.143551],[120.506834,37.148854],[120.517258,37.148974],[120.527129,37.143352],[120.527998,37.136733],[120.542528,37.128677],[120.547661,37.113003],[120.536368,37.081963],[120.539843,37.060371],[120.533289,37.053944],[120.541738,37.044163],[120.549793,37.041288],[120.558953,37.047437],[120.570877,37.046399],[120.58446,37.058136],[120.586513,37.048515],[120.606176,37.047157],[120.613915,37.023839],[120.601754,37.012696],[120.606413,37.001192],[120.593857,36.991244],[120.582328,37.001791],[120.575931,36.999074],[120.574036,36.987568],[120.568508,36.983293],[120.566534,36.96559],[120.560296,36.960674],[120.563218,36.95172],[120.571114,36.948682],[120.574984,36.927053],[120.592909,36.912216],[120.617389,36.911136],[120.622838,36.907377],[120.622838,36.890856],[120.592909,36.882134],[120.576642,36.879894],[120.57988,36.858885],[120.588408,36.859045],[120.595989,36.852681],[120.58754,36.843635],[120.589751,36.838791],[120.609809,36.832906],[120.612336,36.829223],[120.601517,36.804996],[120.590382,36.801552],[120.563454,36.802953],[120.56377,36.795343],[120.5554,36.778718],[120.540791,36.7679],[120.544502,36.76213],[120.546397,36.744616],[120.560375,36.742492],[120.562586,36.736479],[120.584065,36.735236],[120.58525,36.728501],[120.596542,36.708052],[120.586118,36.698829],[120.589751,36.694497],[120.616521,36.689764],[120.619206,36.681541],[120.631446,36.673357],[120.625128,36.671231],[120.627339,36.659836],[120.642027,36.666095],[120.652135,36.663327],[120.648977,36.655863],[120.660585,36.647998],[120.657426,36.626644],[120.644712,36.626524],[120.643449,36.613436],[120.635947,36.597775],[120.637763,36.574199],[120.664059,36.583478],[120.665402,36.587454],[120.679695,36.589181],[120.702991,36.598338],[120.699121,36.60665],[120.70836,36.612914],[120.708281,36.621385],[120.725733,36.624436],[120.751556,36.615042],[120.757557,36.606088],[120.765533,36.607011],[120.777062,36.600546],[120.779747,36.591551],[120.786223,36.589663],[120.850108,36.612271],[120.847107,36.618615],[120.882011,36.627086],[120.89504,36.622188],[120.90578,36.623473],[120.925917,36.613837],[120.924495,36.596892],[120.928681,36.589783],[120.955609,36.576087],[121.016019,36.574721],[121.02897,36.573194],[121.045237,36.579581],[121.055582,36.592675],[121.07793,36.607614],[121.113939,36.621907],[121.146079,36.640372],[121.161399,36.651288],[121.176877,36.65482],[121.194881,36.653295],[121.220941,36.671271],[121.239261,36.668342],[121.251896,36.671351],[121.274876,36.692652],[121.285536,36.699871],[121.298724,36.702318],[121.318308,36.702117],[121.357792,36.713105],[121.365531,36.711461],[121.374691,36.699791],[121.394354,36.699029],[121.405489,36.704443],[121.410385,36.714709],[121.404304,36.726457],[121.390406,36.728742],[121.394038,36.737962],[121.412596,36.748103],[121.454291,36.752351],[121.460687,36.76245],[121.478218,36.770825],[121.462424,36.784888],[121.450184,36.790056],[121.417334,36.792739],[121.409121,36.790176],[121.395855,36.794342],[121.396802,36.803834],[121.376665,36.830384],[121.373428,36.840593],[121.36174,36.841273],[121.357239,36.852401],[121.357397,36.864048],[121.363873,36.871651],[121.385431,36.877333],[121.36482,36.897417],[121.366557,36.903617],[121.360951,36.921494],[121.347605,36.920574],[121.312938,36.904097],[121.308358,36.905177],[121.304173,36.918335],[121.282615,36.918535],[121.272191,36.927532],[121.263189,36.926093],[121.252607,36.938088],[121.248501,36.953679],[121.233734,36.956917],[121.22639,36.971065],[121.222915,36.986649],[121.209096,36.985371],[121.19038,36.996558],[121.182404,36.99456],[121.177587,37.003748],[121.181299,37.016131],[121.194565,37.019485],[121.19496,37.027273],[121.188564,37.029948],[121.188011,37.041169],[121.192512,37.052108],[121.191407,37.072026],[121.204279,37.07897],[121.243131,37.092138],[121.246368,37.102631],[121.26153,37.117989],[121.287827,37.136055],[121.306542,37.141996],[121.314044,37.141079],[121.317992,37.132825],[121.326916,37.12768],[121.34113,37.127002],[121.348316,37.135975],[121.358187,37.140282],[121.363715,37.129236],[121.351475,37.126962],[121.369795,37.110889],[121.376823,37.115915],[121.382746,37.112125],[121.391432,37.098282],[121.427363,37.100796],[121.441656,37.12106],[121.447578,37.123333],[121.465425,37.12086],[121.49946,37.104426],[121.547868,37.104945],[121.574954,37.110091],[121.580323,37.10674],[121.589168,37.116712],[121.590352,37.128518],[121.585377,37.132306],[121.590747,37.144269],[121.600539,37.141079],[121.612147,37.125846],[121.625414,37.131908],[121.628889,37.137969],[121.638839,37.139524],[121.639865,37.131908],[121.654316,37.121897],[121.666714,37.12082],[121.669162,37.110649],[121.678007,37.121658],[121.683692,37.123014],[121.682271,37.13127],[121.688983,37.133503],[121.683455,37.141917],[121.694037,37.141239],[121.699328,37.125926],[121.733995,37.125607],[121.737706,37.136175],[121.747656,37.135776],[121.767872,37.170979],[121.761002,37.177954],[121.753895,37.172493],[121.749315,37.176439],[121.760686,37.178831],[121.759738,37.19222],[121.769057,37.196364],[121.761634,37.217997],[121.754527,37.212022],[121.755632,37.220506],[121.748525,37.223255],[121.74813,37.241575],[121.757211,37.247667],[121.7749,37.248225],[121.778296,37.260487],[121.784692,37.268409],[121.792431,37.288469],[121.790615,37.299532],[121.794879,37.30375],[121.815253,37.300447],[121.822281,37.303988],[121.834047,37.318311],[121.859396,37.329249],[121.865239,37.336727],[121.870293,37.368894],[121.882454,37.381694],[121.90038,37.391232],[121.908435,37.400969],[121.91878,37.420755],[121.925966,37.441767],[121.933941,37.452529],[121.923992,37.473096],[121.887587,37.470039],[121.838943,37.471468],[121.773084,37.466505],[121.747893,37.467458],[121.665767,37.473453],[121.660239,37.487187],[121.653843,37.493061],[121.633469,37.49318],[121.618939,37.481948],[121.599118,37.46992],[121.586562,37.467299],[121.576059,37.460391],[121.571558,37.441449],[121.56532,37.440377],[121.537207,37.451219],[121.532074,37.462456],[121.514938,37.46186],[121.479245,37.474961],[121.46045,37.493855],[121.45666,37.502665],[121.459819,37.522623],[121.436444,37.541227],[121.412438,37.547652],[121.401066,37.557804],[121.395934,37.589876],[121.385905,37.591303],[121.389774,37.59705],[121.411016,37.591263],[121.427047,37.590788],[121.439603,37.596218],[121.43676,37.600815],[121.411174,37.609494],[121.386142,37.627798],[121.374849,37.628749],[121.361898,37.634216],[121.349264,37.635206],[121.344289,37.627759],[121.358266,37.616467],[121.361583,37.600855],[121.354791,37.596178],[121.304963,37.582979],[121.251264,37.581116],[121.215887,37.583098],[121.182483,37.594276],[121.16977,37.600617],[121.149554,37.619875],[121.150107,37.628987],[121.161715,37.646336],[121.156582,37.657386],[121.142684,37.661267],[121.146079,37.678846],[121.160057,37.699034],[121.159583,37.70687],[121.148527,37.719651],[121.139841,37.723054],[121.096329,37.722698],[121.075482,37.717791],[121.068375,37.72519],[121.064584,37.717119],[121.055108,37.715734],[121.037735,37.718583],[121.019573,37.731085],[121.016098,37.741766],[120.995724,37.759049],[120.975588,37.762371],[120.952924,37.776882],[120.943448,37.78554],[120.941158,37.793367],[120.947712,37.798624],[120.94637,37.813405],[120.935788,37.822375],[120.921653,37.819885],[120.915019,37.824034],[120.900489,37.823679],[120.890381,37.832963],[120.865112,37.832963],[120.832972,37.821624],[120.811887,37.822098],[120.797278,37.827709],[120.778563,37.831146],[120.762611,37.829961],[120.754241,37.837506],[120.743185,37.833082],[120.733393,37.833556],[120.657031,37.793051],[120.63421,37.796371],[120.621654,37.790877],[120.595357,37.767551],[120.579959,37.760868],[120.528235,37.757151],[120.518443,37.750586],[120.482354,37.755015],[120.47201,37.757626],[120.447924,37.754659],[120.437817,37.74141],[120.386408,37.707701],[120.368246,37.698005],[120.341555,37.693215],[120.227209,37.693611],[120.216154,37.686605],[120.220339,37.672036],[120.232895,37.662138],[120.244661,37.657703],[120.269299,37.658495],[120.273563,37.650891],[120.2723,37.63683],[120.265667,37.628868],[120.24861,37.623876],[120.215048,37.621143],[120.210152,37.616745],[120.217575,37.603787],[120.208178,37.588648],[120.246793,37.556614],[120.235975,37.548128],[120.222313,37.532857],[120.199492,37.524646],[120.194517,37.512982],[120.144372,37.481908],[120.108758,37.470515],[120.086252,37.465275],[120.06493,37.449114],[120.012654,37.442919],[119.986357,37.425681],[119.949874,37.42004],[119.937397,37.393339],[119.927131,37.386702],[119.843978,37.376725],[119.839714,37.37112],[119.842715,37.361341],[119.838214,37.34309],[119.848085,37.337323],[119.85306,37.326226],[119.869406,37.321016],[119.874697,37.313099],[119.883383,37.310871],[119.888753,37.302317],[119.888516,37.293682],[119.882199,37.280947],[119.895781,37.275495],[119.892149,37.263911],[119.860956,37.262557],[119.858982,37.253719],[119.885989,37.252286],[119.877066,37.24046],[119.865063,37.233969],[119.83008,37.225724],[119.822104,37.220068],[119.80789,37.196404],[119.790517,37.185008],[119.780488,37.175204],[119.771091,37.160456],[119.754034,37.147459],[119.740294,37.133782],[119.724895,37.143551],[119.687069,37.14395],[119.68628,37.15611],[119.678541,37.157984],[119.629423,37.142116],[119.576514,37.127561]]],[[[121.508621,37.55253],[121.526625,37.562522],[121.520308,37.565139],[121.50712,37.556892],[121.508621,37.55253]]],[[[120.729761,37.94693],[120.722101,37.94551],[120.721548,37.931308],[120.729287,37.931269],[120.725023,37.923891],[120.731735,37.920971],[120.721627,37.917182],[120.727708,37.909448],[120.740974,37.908777],[120.753056,37.894883],[120.760558,37.890581],[120.764901,37.896186],[120.759058,37.911776],[120.765375,37.922904],[120.758031,37.929454],[120.746423,37.951466],[120.737736,37.955174],[120.729761,37.94693]]],[[[120.692409,37.983842],[120.696278,37.974024],[120.706465,37.966808],[120.732525,37.961484],[120.736631,37.971146],[120.730787,37.974142],[120.724707,37.987429],[120.71602,37.987311],[120.697147,37.995117],[120.685539,37.991332],[120.692409,37.983842]]],[[[120.653004,37.980017],[120.64416,37.964757],[120.653952,37.963969],[120.658611,37.975483],[120.653004,37.980017]]],[[[120.452584,37.768856],[120.463323,37.786054],[120.453136,37.788387],[120.435526,37.786608],[120.443976,37.770991],[120.452584,37.768856]]],[[[120.682775,37.92831],[120.687829,37.931308],[120.692804,37.94693],[120.678511,37.944642],[120.679379,37.937147],[120.673536,37.929178],[120.682775,37.92831]]],[[[120.750687,38.150304],[120.760479,38.15939],[120.771456,38.156558],[120.787328,38.158682],[120.777694,38.172565],[120.760321,38.176615],[120.753688,38.195291],[120.747607,38.202759],[120.742554,38.198986],[120.738052,38.174688],[120.73821,38.161711],[120.750687,38.150304]]],[[[120.91881,38.34511],[120.914151,38.354682],[120.921021,38.362997],[120.913993,38.364566],[120.91494,38.373429],[120.900015,38.3719],[120.895277,38.363232],[120.90657,38.349778],[120.91881,38.34511]]],[[[120.841342,38.335655],[120.85682,38.343188],[120.842843,38.355898],[120.841342,38.335655]]],[[[120.903332,38.381742],[120.922126,38.385271],[120.931918,38.382291],[120.931997,38.391231],[120.91573,38.401933],[120.898515,38.386487],[120.903332,38.381742]]],[[[120.62655,37.945786],[120.630972,37.952018],[120.632472,37.978913],[120.614152,37.984512],[120.60207,37.97848],[120.598279,37.970633],[120.604913,37.956712],[120.62655,37.945786]]],[[[120.802253,38.284041],[120.81552,38.288714],[120.82389,38.297939],[120.84308,38.30057],[120.849871,38.310343],[120.835262,38.320077],[120.816546,38.318075],[120.808492,38.311913],[120.797041,38.288282],[120.802253,38.284041]]],[[[120.943843,38.019907],[120.951108,38.02436],[120.94787,38.032398],[120.931287,38.035353],[120.932708,38.026882],[120.943843,38.019907]]],[[[119.821394,37.309121],[119.825895,37.315168],[119.818867,37.31656],[119.821394,37.309121]]],[[[121.388668,36.266442],[121.396644,36.264183],[121.391432,36.271926],[121.388668,36.266442]]],[[[120.645818,38.132011],[120.653715,38.141532],[120.647318,38.149557],[120.640922,38.148141],[120.637763,38.139171],[120.645818,38.132011]]],[[[120.878141,38.026961],[120.872693,38.027552],[120.87672,38.018213],[120.878141,38.026961]]],[[[120.645423,38.05501],[120.652767,38.058988],[120.652056,38.069109],[120.644791,38.06966],[120.641238,38.061233],[120.645423,38.05501]]]]}},{"type":"Feature","properties":{"adcode":370700,"name":"潍坊市","center":[119.107078,36.70925],"centroid":[119.077723,36.554349],"childrenNum":12,"level":"city","parent":{"adcode":370000},"subFeatureIndex":6,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.507842,36.074961],[118.522925,36.084784],[118.529479,36.093879],[118.526716,36.104671],[118.504762,36.105802],[118.509974,36.114612],[118.515502,36.109884],[118.535797,36.118531],[118.541719,36.124996],[118.556881,36.130935],[118.565015,36.130087],[118.563988,36.147094],[118.572201,36.156424],[118.581914,36.151456],[118.606236,36.164218],[118.622109,36.17718],[118.640824,36.171042],[118.644299,36.177018],[118.653143,36.176695],[118.666015,36.168983],[118.675491,36.170194],[118.683388,36.158564],[118.679913,36.152062],[118.701235,36.144509],[118.703761,36.150446],[118.714659,36.154485],[118.72603,36.141035],[118.736454,36.146528],[118.73298,36.1519],[118.733532,36.166802],[118.741824,36.165551],[118.751142,36.183115],[118.745535,36.191754],[118.766383,36.206649],[118.78573,36.197487],[118.802076,36.202855],[118.809026,36.198738],[118.835796,36.203138],[118.847009,36.199263],[118.848746,36.188606],[118.844561,36.18473],[118.846614,36.172092],[118.85459,36.170194],[118.859802,36.16232],[118.858302,36.143256],[118.863908,36.139298],[118.858302,36.129966],[118.860197,36.114733],[118.865961,36.113682],[118.860513,36.101316],[118.875911,36.091535],[118.880886,36.08438],[118.886493,36.088584],[118.908288,36.091292],[118.920765,36.105721],[118.916185,36.111702],[118.936322,36.11344],[118.943271,36.119582],[118.954642,36.1115],[118.958512,36.104145],[118.970041,36.104671],[118.970278,36.09873],[118.988756,36.092343],[119.000523,36.099497],[119.013868,36.09881],[119.020344,36.104307],[119.038506,36.090444],[119.048851,36.092707],[119.066935,36.081631],[119.063539,36.075042],[119.049641,36.066632],[119.042534,36.055512],[119.040322,36.042934],[119.052089,36.037838],[119.047903,36.024813],[119.035584,36.02275],[119.024134,36.02631],[119.017659,36.024044],[119.014105,36.013404],[119.023739,36.011219],[119.024924,36.003571],[119.015606,35.995923],[119.021054,35.977426],[119.05201,35.9803],[119.060538,35.978195],[119.066619,35.963986],[119.07878,35.959289],[119.088888,35.963176],[119.121817,35.962731],[119.134373,35.968601],[119.153246,35.971192],[119.155063,35.965767],[119.178595,35.97107],[119.182623,35.962285],[119.179385,35.926163],[119.183412,35.91875],[119.169672,35.91721],[119.151746,35.905502],[119.144718,35.904449],[119.135637,35.892982],[119.158221,35.882486],[119.161854,35.894481],[119.169119,35.894846],[119.190598,35.879446],[119.217053,35.879527],[119.240427,35.884269],[119.281964,35.910202],[119.294441,35.911336],[119.298153,35.893022],[119.315999,35.887552],[119.345533,35.893792],[119.360695,35.884066],[119.371435,35.860476],[119.358247,35.84511],[119.372382,35.830025],[119.374041,35.816154],[119.368829,35.770834],[119.375857,35.770712],[119.390466,35.778707],[119.397731,35.786823],[119.427739,35.802078],[119.444322,35.804026],[119.455693,35.809056],[119.464696,35.80861],[119.482385,35.799725],[119.493282,35.789866],[119.496599,35.779235],[119.48657,35.771646],[119.48807,35.754599],[119.504101,35.752325],[119.525422,35.730604],[119.527317,35.723214],[119.545085,35.726747],[119.560563,35.721752],[119.566485,35.714523],[119.576988,35.71237],[119.588833,35.715701],[119.601231,35.709446],[119.614182,35.716675],[119.624685,35.712817],[119.627843,35.722077],[119.605495,35.747454],[119.591992,35.753218],[119.596256,35.773756],[119.611576,35.776597],[119.617972,35.789623],[119.60897,35.799279],[119.612445,35.812707],[119.622631,35.816114],[119.629344,35.833878],[119.649796,35.845191],[119.664326,35.841015],[119.676014,35.842515],[119.68699,35.861814],[119.704047,35.863962],[119.71834,35.853138],[119.725211,35.856746],[119.72221,35.865138],[119.736898,35.86303],[119.738003,35.873123],[119.727738,35.902544],[119.721262,35.906718],[119.716208,35.927337],[119.701362,35.923732],[119.701757,35.944469],[119.690149,35.963702],[119.684858,35.982648],[119.689122,36.000212],[119.681068,36.012068],[119.706495,36.028292],[119.717314,36.044229],[119.704126,36.055269],[119.695677,36.053045],[119.675698,36.064085],[119.666695,36.062993],[119.633608,36.067683],[119.632187,36.091535],[119.657061,36.100872],[119.657614,36.108631],[119.643716,36.127178],[119.651218,36.130531],[119.649954,36.137157],[119.660852,36.154122],[119.671039,36.177866],[119.681305,36.18045],[119.691728,36.176292],[119.723473,36.175565],[119.732792,36.172536],[119.733818,36.163572],[119.748111,36.158645],[119.772354,36.167691],[119.782778,36.165308],[119.792333,36.171648],[119.813023,36.167691],[119.81326,36.175242],[119.821315,36.171285],[119.82242,36.177987],[119.831738,36.180612],[119.823131,36.19894],[119.828816,36.210685],[119.819498,36.211856],[119.808048,36.232839],[119.82092,36.244499],[119.820446,36.257367],[119.82929,36.258859],[119.83387,36.278822],[119.848795,36.292692],[119.854402,36.302328],[119.862773,36.302368],[119.865379,36.308898],[119.891991,36.318773],[119.896966,36.334047],[119.895939,36.34827],[119.904784,36.369942],[119.90431,36.38154],[119.909837,36.384359],[119.93029,36.385165],[119.936371,36.380655],[119.945452,36.384682],[119.941425,36.39503],[119.926421,36.403324],[119.925236,36.419346],[119.933923,36.42007],[119.935976,36.427436],[119.949795,36.446511],[119.953981,36.444217],[119.968432,36.450051],[119.994175,36.450333],[119.996623,36.446309],[120.011864,36.454236],[120.012812,36.467833],[120.006889,36.468799],[120.004125,36.477447],[120.010758,36.484445],[120.004204,36.489512],[120.010364,36.509255],[119.997571,36.504431],[119.974749,36.515688],[119.971985,36.522441],[119.951375,36.519788],[119.936292,36.511507],[119.936687,36.496389],[119.923025,36.495464],[119.920261,36.522079],[119.917576,36.525858],[119.826763,36.54101],[119.798019,36.551619],[119.784516,36.554673],[119.755929,36.565521],[119.74748,36.571788],[119.72758,36.562749],[119.730107,36.581027],[119.701125,36.602634],[119.681857,36.606891],[119.670328,36.616246],[119.651297,36.623633],[119.625079,36.638807],[119.617025,36.652532],[119.61355,36.66453],[119.607154,36.667379],[119.596651,36.689884],[119.587412,36.696101],[119.579831,36.711581],[119.567433,36.713065],[119.561036,36.720884],[119.547059,36.725454],[119.534977,36.743333],[119.530555,36.765256],[119.532766,36.78008],[119.539162,36.787732],[119.539162,36.799949],[119.550613,36.80868],[119.563721,36.802753],[119.56767,36.805717],[119.597757,36.857244],[119.599652,36.878253],[119.599968,36.920614],[119.5837,36.950441],[119.598072,36.989406],[119.604548,36.996038],[119.60976,37.013894],[119.613155,37.034101],[119.606048,37.04037],[119.563406,37.058495],[119.559615,37.071786],[119.576198,37.087509],[119.568696,37.100157],[119.576514,37.127561],[119.51942,37.130312],[119.503153,37.128279],[119.493282,37.133383],[119.493282,37.143591],[119.481832,37.155791],[119.479068,37.153399],[119.489965,37.142355],[119.489729,37.13446],[119.445585,37.130831],[119.425528,37.125447],[119.36567,37.126045],[119.351298,37.122894],[119.342296,37.11735],[119.329582,37.115715],[119.320421,37.120501],[119.30826,37.136733],[119.299337,37.142594],[119.297126,37.158781],[119.291756,37.164801],[119.291519,37.177635],[119.298389,37.19736],[119.296336,37.20505],[119.282201,37.21242],[119.261432,37.207998],[119.244533,37.211424],[119.232767,37.221821],[119.222106,37.225007],[119.206945,37.223175],[119.204102,37.21007],[119.205365,37.194292],[119.191941,37.197639],[119.194231,37.221741],[119.204418,37.246313],[119.202365,37.253759],[119.191941,37.254117],[119.190993,37.259452],[119.212788,37.273305],[119.20426,37.280112],[119.136979,37.231181],[119.128451,37.235721],[119.141559,37.262557],[119.142586,37.279475],[119.15759,37.281226],[119.166513,37.27438],[119.16983,37.278599],[119.157748,37.288191],[119.139032,37.288191],[119.135479,37.282102],[119.134294,37.263314],[119.128214,37.254874],[119.108393,37.260328],[119.091336,37.257581],[119.084465,37.239424],[119.066935,37.241814],[119.054142,37.254953],[119.052089,37.276848],[119.045376,37.298935],[119.039928,37.304466],[118.856959,37.293842],[118.821897,37.288788],[118.777991,37.280112],[118.728399,37.252764],[118.709684,37.241256],[118.680624,37.229269],[118.672332,37.215129],[118.668779,37.198436],[118.660408,37.187877],[118.649274,37.189112],[118.645483,37.178153],[118.633638,37.171178],[118.634191,37.163366],[118.64572,37.159579],[118.649195,37.164243],[118.653617,37.149692],[118.673754,37.144309],[118.667041,37.11392],[118.668384,37.091539],[118.665146,37.081763],[118.655512,37.082681],[118.654091,37.076935],[118.632138,37.070429],[118.631901,37.066757],[118.610895,37.063005],[118.591469,37.068474],[118.580414,37.063325],[118.561303,37.063325],[118.557592,37.051469],[118.56004,37.041408],[118.545431,37.038494],[118.545826,37.023519],[118.57149,37.022081],[118.588389,37.017409],[118.583572,37.008422],[118.590206,37.001351],[118.571174,37.004148],[118.566199,36.999034],[118.580493,36.994999],[118.564146,36.99416],[118.553959,37.000233],[118.552301,36.979657],[118.559803,36.977059],[118.557434,36.96539],[118.560751,36.946564],[118.55467,36.938368],[118.537771,36.936769],[118.52711,36.939687],[118.524583,36.945284],[118.503183,36.944285],[118.503736,36.95156],[118.47665,36.957077],[118.467411,36.945484],[118.494339,36.941846],[118.492365,36.931611],[118.496708,36.924733],[118.48968,36.914096],[118.481862,36.914136],[118.474913,36.905297],[118.483046,36.900777],[118.482809,36.879214],[118.476966,36.876893],[118.465042,36.861366],[118.479967,36.860166],[118.480993,36.852641],[118.460462,36.846597],[118.461488,36.854322],[118.453828,36.857564],[118.450038,36.83747],[118.435508,36.838391],[118.44072,36.828142],[118.438666,36.809682],[118.424531,36.802673],[118.419872,36.796304],[118.388522,36.791217],[118.350222,36.768301],[118.321636,36.770905],[118.318161,36.77972],[118.307501,36.776234],[118.297788,36.777677],[118.298183,36.753914],[118.279546,36.753033],[118.27157,36.744015],[118.276151,36.731749],[118.284363,36.72337],[118.277019,36.719801],[118.264147,36.72373],[118.254276,36.731789],[118.234219,36.726457],[118.227743,36.717957],[118.237614,36.712704],[118.227585,36.697625],[118.238246,36.697305],[118.245037,36.690647],[118.228059,36.694016],[118.21653,36.6811],[118.215819,36.668262],[118.226796,36.668382],[118.230191,36.660357],[118.221189,36.664169],[118.215898,36.648921],[118.199631,36.639047],[118.20658,36.637482],[118.214793,36.621144],[118.200657,36.612071],[118.189523,36.599141],[118.180363,36.593599],[118.176967,36.582996],[118.180678,36.577412],[118.180915,36.5607],[118.183916,36.561142],[118.191892,36.546074],[118.214556,36.539322],[118.221663,36.531887],[118.210844,36.526099],[118.213766,36.513075],[118.210528,36.503466],[118.218346,36.497354],[118.212818,36.490075],[118.216135,36.478573],[118.229638,36.467793],[118.233508,36.456609],[118.22719,36.451379],[118.232797,36.432869],[118.228533,36.430736],[118.224427,36.414234],[118.227427,36.408034],[118.250407,36.411214],[118.251592,36.401995],[118.235403,36.389634],[118.239825,36.376748],[118.256093,36.363175],[118.262726,36.352218],[118.261857,36.345852],[118.269912,36.339849],[118.300157,36.338116],[118.291075,36.326189],[118.304105,36.321393],[118.30908,36.307125],[118.315477,36.304464],[118.310107,36.295716],[118.317609,36.288903],[118.31366,36.277371],[118.315003,36.266361],[118.306948,36.252123],[118.31524,36.24938],[118.350775,36.263538],[118.368385,36.248412],[118.379756,36.245265],[118.386548,36.239053],[118.382046,36.207335],[118.374387,36.203097],[118.387653,36.174555],[118.402262,36.162926],[118.405263,36.141641],[118.402183,36.131622],[118.412844,36.127218],[118.428953,36.132672],[118.440956,36.132511],[118.447116,36.140913],[118.457303,36.13247],[118.462594,36.14059],[118.487863,36.131784],[118.492601,36.127057],[118.479493,36.118814],[118.484468,36.104064],[118.478545,36.098245],[118.482099,36.092546],[118.48044,36.074071],[118.496866,36.067683],[118.507842,36.074961]]]]}},{"type":"Feature","properties":{"adcode":370800,"name":"济宁市","center":[116.587245,35.415393],"centroid":[116.740918,35.371173],"childrenNum":11,"level":"city","parent":{"adcode":370000},"subFeatureIndex":7,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.409745,34.852944],[116.436042,34.883026],[116.445281,34.888648],[116.445044,34.895418],[116.455784,34.900628],[116.480737,34.897387],[116.500558,34.90112],[116.502769,34.906125],[116.523064,34.903951],[116.546123,34.909406],[116.5601,34.909324],[116.613877,34.922778],[116.622485,34.940043],[116.631803,34.94074],[116.640016,34.932579],[116.657862,34.929012],[116.658415,34.933441],[116.675709,34.933154],[116.677999,34.939182],[116.696951,34.932743],[116.706191,34.933974],[116.720405,34.926141],[116.735172,34.924623],[116.764627,34.916462],[116.78121,34.916585],[116.786975,34.940453],[116.797635,34.938771],[116.796925,34.944143],[116.785474,34.9473],[116.781605,34.961895],[116.789107,34.959804],[116.789107,34.975094],[116.801979,34.970503],[116.803242,34.937377],[116.798899,34.92852],[116.812166,34.927986],[116.806796,34.936926],[116.805769,34.968372],[116.815877,34.965298],[116.822115,34.929299],[116.858125,34.928355],[116.876129,34.912524],[116.89903,34.904689],[116.922326,34.894515],[116.922168,34.871413],[116.945305,34.873794],[116.945226,34.876789],[116.966943,34.875599],[116.976892,34.868541],[116.933776,34.861933],[116.930144,34.859675],[116.92888,34.842886],[116.966074,34.844487],[116.979183,34.814966],[116.971681,34.811885],[116.951149,34.810571],[116.951623,34.794553],[116.965837,34.785063],[116.96789,34.772984],[116.976814,34.771259],[116.978472,34.763616],[116.989685,34.765136],[116.995687,34.758274],[117.021904,34.759219],[117.043225,34.736531],[117.061151,34.723993],[117.070469,34.713714],[117.069048,34.708287],[117.07734,34.696484],[117.072049,34.694181],[117.061704,34.675713],[117.062336,34.657735],[117.072996,34.639094],[117.081525,34.638188],[117.095897,34.64753],[117.103952,34.64897],[117.115244,34.628146],[117.123694,34.604682],[117.133486,34.58607],[117.147621,34.570255],[117.151253,34.559257],[117.140593,34.538699],[117.139803,34.522875],[117.145963,34.503956],[117.156623,34.48091],[117.159861,34.453115],[117.166099,34.434675],[117.199503,34.43451],[117.200214,34.441606],[117.222088,34.445731],[117.222325,34.450599],[117.234644,34.454476],[117.24791,34.451052],[117.255886,34.462023],[117.255096,34.472539],[117.242698,34.478519],[117.252332,34.486518],[117.256044,34.476292],[117.263625,34.472622],[117.267494,34.480003],[117.259282,34.49736],[117.274364,34.503544],[117.269705,34.511664],[117.275075,34.519619],[117.268047,34.532806],[117.285341,34.533012],[117.302477,34.541253],[117.30303,34.548999],[117.288579,34.555797],[117.279734,34.552748],[117.272864,34.556703],[117.281629,34.563829],[117.3084,34.571903],[117.30303,34.558927],[117.32135,34.565436],[117.333037,34.56177],[117.325378,34.570996],[117.344014,34.582075],[117.352937,34.584052],[117.364941,34.57771],[117.370863,34.58467],[117.392342,34.574909],[117.393922,34.587676],[117.398976,34.588335],[117.397949,34.604393],[117.407978,34.610651],[117.4109,34.623454],[117.402687,34.628434],[117.384051,34.628228],[117.376707,34.622301],[117.374022,34.636172],[117.366915,34.650246],[117.354201,34.653538],[117.35657,34.661643],[117.346067,34.670982],[117.329247,34.677359],[117.335485,34.692454],[117.324272,34.697307],[117.326167,34.703434],[117.310611,34.717333],[117.304609,34.714866],[117.278787,34.715647],[117.271443,34.726501],[117.253675,34.721444],[117.242067,34.729995],[117.236697,34.746355],[117.22422,34.745533],[117.212927,34.761027],[117.191369,34.780914],[117.180551,34.784201],[117.176523,34.779065],[117.162467,34.782105],[117.172733,34.799194],[117.180314,34.800221],[117.194686,34.816239],[117.17755,34.828722],[117.156623,34.834306],[117.140593,34.846499],[117.139013,34.854052],[117.125826,34.863451],[117.12093,34.903581],[117.110111,34.90514],[117.111059,34.917774],[117.103399,34.937459],[117.082551,34.934917],[117.073707,34.925485],[117.06123,34.930406],[117.05815,34.926961],[117.041093,34.925157],[117.043462,34.932825],[117.038487,34.937869],[117.017719,34.942503],[116.989448,34.93873],[116.980367,34.941027],[116.9671,34.951072],[116.955334,34.967142],[116.943015,34.975627],[116.954466,34.993331],[116.956993,35.01054],[116.951702,35.020618],[116.937172,35.0275],[116.907875,35.046995],[116.900767,35.05977],[116.881183,35.058133],[116.880473,35.062595],[116.900373,35.068737],[116.888212,35.085193],[116.888922,35.093829],[116.863179,35.091496],[116.848649,35.103774],[116.832065,35.123783],[116.825748,35.147631],[116.81793,35.150699],[116.813192,35.159573],[116.81564,35.170777],[116.811218,35.17736],[116.832776,35.184392],[116.85394,35.16861],[116.86618,35.172617],[116.876603,35.188031],[116.898398,35.195757],[116.904716,35.182471],[116.913718,35.178791],[116.925721,35.182266],[116.938277,35.172168],[116.962047,35.177319],[116.969706,35.187377],[116.995687,35.1978],[117.014639,35.214844],[117.028774,35.221219],[117.053333,35.224202],[117.065336,35.22792],[117.092896,35.220361],[117.104899,35.221464],[117.123536,35.23078],[117.152675,35.232047],[117.176681,35.243159],[117.199108,35.24749],[117.204873,35.258518],[117.220824,35.26489],[117.269231,35.261296],[117.262203,35.287472],[117.284472,35.294331],[117.290079,35.299394],[117.305794,35.295229],[117.311163,35.28588],[117.314085,35.302129],[117.308557,35.312579],[117.318034,35.320252],[117.347568,35.315109],[117.359571,35.318375],[117.399528,35.306374],[117.403635,35.301394],[117.406004,35.283348],[117.419191,35.273997],[117.439565,35.282368],[117.463098,35.287472],[117.478891,35.314375],[117.453937,35.325027],[117.446988,35.330292],[117.439012,35.348939],[117.439644,35.359668],[117.463887,35.375617],[117.463334,35.39038],[117.474785,35.400941],[117.467441,35.418186],[117.455833,35.424953],[117.453779,35.442396],[117.42851,35.458614],[117.442171,35.469247],[117.452279,35.490306],[117.462703,35.497922],[117.467441,35.512255],[117.472416,35.514372],[117.481734,35.507898],[117.498396,35.503093],[117.501634,35.512947],[117.513795,35.514576],[117.520033,35.51991],[117.516401,35.527319],[117.50424,35.531675],[117.496264,35.543031],[117.499502,35.550845],[117.515058,35.551008],[117.528641,35.547182],[117.582418,35.554141],[117.593473,35.567448],[117.590394,35.573551],[117.592763,35.589701],[117.585577,35.593972],[117.588893,35.619878],[117.596948,35.630449],[117.576022,35.650206],[117.529431,35.682879],[117.520586,35.697626],[117.530931,35.707131],[117.511031,35.712411],[117.49121,35.707903],[117.488683,35.721102],[117.478733,35.732675],[117.452832,35.742298],[117.440197,35.744571],[117.431195,35.760971],[117.415559,35.775177],[117.391,35.767141],[117.379155,35.775785],[117.364467,35.770225],[117.350331,35.782725],[117.343382,35.784267],[117.341013,35.793558],[117.318428,35.793802],[117.306504,35.798833],[117.297581,35.788487],[117.260308,35.771037],[117.226984,35.773959],[117.21806,35.778464],[117.200214,35.775095],[117.175023,35.780209],[117.163651,35.775014],[117.143436,35.771727],[117.135381,35.767303],[117.128353,35.769901],[117.139566,35.777449],[117.131275,35.786498],[117.103241,35.790272],[117.097318,35.802687],[117.083815,35.80431],[117.070864,35.790394],[117.049622,35.801307],[117.0268,35.799401],[117.009506,35.807636],[116.991423,35.805973],[116.993397,35.794045],[116.974366,35.760444],[116.952412,35.7561],[116.946253,35.744368],[116.952412,35.737507],[116.954939,35.719072],[116.949649,35.715741],[116.931012,35.713629],[116.930538,35.709406],[116.91814,35.706278],[116.909849,35.699982],[116.897135,35.701851],[116.88071,35.696732],[116.879367,35.685479],[116.861994,35.679059],[116.836882,35.697382],[116.8233,35.696935],[116.8218,35.705222],[116.811376,35.706034],[116.808296,35.69137],[116.802137,35.684219],[116.805137,35.679506],[116.778762,35.679222],[116.777341,35.690923],[116.770076,35.703557],[116.762732,35.708309],[116.739673,35.703435],[116.702242,35.709974],[116.698847,35.72098],[116.68866,35.724838],[116.664969,35.716716],[116.648939,35.713426],[116.627539,35.705791],[116.615615,35.705222],[116.612061,35.71237],[116.614588,35.74924],[116.619563,35.756628],[116.636699,35.764137],[116.662679,35.758252],[116.670497,35.761499],[116.687317,35.798062],[116.686607,35.814005],[116.676736,35.822198],[116.647281,35.832621],[116.617036,35.855206],[116.614904,35.865746],[116.62438,35.878068],[116.647518,35.884674],[116.666944,35.898209],[116.672392,35.92118],[116.676973,35.925596],[116.665996,35.940176],[116.62817,35.938556],[116.618536,35.935195],[116.599663,35.916157],[116.595715,35.905056],[116.566023,35.899222],[116.55702,35.890753],[116.549834,35.857517],[116.53641,35.847178],[116.525275,35.847462],[116.520616,35.853057],[116.515325,35.841866],[116.507508,35.84361],[116.486976,35.84138],[116.475841,35.83327],[116.468024,35.836149],[116.459732,35.828241],[116.459811,35.81583],[116.436989,35.807271],[116.428698,35.796398],[116.421196,35.799279],[116.400822,35.794613],[116.385581,35.801754],[116.377921,35.796642],[116.362838,35.795952],[116.355652,35.800537],[116.336621,35.796723],[116.32983,35.787594],[116.309377,35.77404],[116.301875,35.777084],[116.297295,35.795546],[116.304007,35.799401],[116.277395,35.806581],[116.274868,35.803377],[116.250072,35.823536],[116.245808,35.834162],[116.233963,35.851273],[116.230804,35.860963],[116.233963,35.888403],[116.221091,35.892779],[116.218485,35.879811],[116.214774,35.889659],[116.20814,35.886863],[116.190057,35.892536],[116.185398,35.900478],[116.166998,35.90457],[116.161155,35.900397],[116.154284,35.886012],[116.142834,35.895656],[116.126172,35.891037],[116.09261,35.904935],[116.081634,35.914172],[116.086767,35.923246],[116.074606,35.927459],[116.07279,35.940055],[116.05897,35.936167],[116.048704,35.948114],[116.060392,35.956374],[116.065367,35.964714],[116.061892,35.97358],[116.0506,35.981919],[116.048704,35.970301],[116.038596,35.963419],[116.00851,35.973135],[115.985135,35.974107],[115.957654,35.967994],[115.911853,35.960261],[115.906325,35.9454],[115.909958,35.935762],[115.907826,35.926851],[115.875133,35.920168],[115.872369,35.909351],[115.884767,35.909108],[115.88911,35.897561],[115.883267,35.895413],[115.882872,35.879892],[115.876081,35.875069],[115.876002,35.867124],[115.875212,35.835095],[115.877107,35.820657],[115.883583,35.808163],[115.898192,35.805202],[115.911932,35.811733],[115.925988,35.804756],[115.922119,35.799157],[115.945493,35.791976],[115.970289,35.782156],[116.017591,35.756263],[116.026909,35.749687],[116.041518,35.733893],[116.071052,35.719072],[116.079897,35.712452],[116.089847,35.699373],[116.103034,35.687348],[116.121829,35.67459],[116.127514,35.649433],[116.134384,35.638539],[116.115906,35.618414],[116.116222,35.606621],[116.125145,35.59385],[116.125145,35.587871],[116.114327,35.577456],[116.115274,35.566471],[116.123408,35.540589],[116.12554,35.516042],[116.121276,35.497881],[116.128778,35.489614],[116.129567,35.475235],[116.15002,35.469573],[116.160918,35.471569],[116.15689,35.446838],[116.167946,35.452217],[116.178685,35.450342],[116.177817,35.466151],[116.188319,35.477313],[116.188319,35.467781],[116.19669,35.46334],[116.206798,35.465703],[116.20206,35.458247],[116.204429,35.436079],[116.215484,35.435957],[116.215958,35.419857],[116.212642,35.409054],[116.215879,35.393438],[116.223855,35.371702],[116.22117,35.358608],[116.215169,35.350734],[116.201744,35.345185],[116.193452,35.337555],[116.199612,35.304986],[116.215642,35.29131],[116.223539,35.260438],[116.237201,35.261745],[116.265866,35.271547],[116.269656,35.269872],[116.285608,35.242669],[116.284265,35.22506],[116.269104,35.191178],[116.248256,35.195634],[116.234437,35.208264],[116.234516,35.200008],[116.228356,35.194367],[116.213115,35.196697],[116.221881,35.181817],[116.223618,35.173231],[116.214537,35.155606],[116.204903,35.145668],[116.181765,35.11204],[116.154284,35.113513],[116.141018,35.09076],[116.15389,35.088467],[116.140228,35.06018],[116.141413,35.055062],[116.119381,35.053383],[116.114564,35.039828],[116.115748,35.025574],[116.139754,34.995421],[116.170789,34.974684],[116.171499,34.964683],[116.162023,34.957632],[116.155153,34.947259],[116.162181,34.94361],[116.192505,34.939182],[116.201586,34.919702],[116.213826,34.913098],[116.226935,34.911786],[116.266261,34.89751],[116.286713,34.88159],[116.299032,34.877733],[116.325803,34.874943],[116.335042,34.868048],[116.3352,34.862343],[116.363865,34.861112],[116.373815,34.86538],[116.409745,34.852944]]]]}},{"type":"Feature","properties":{"adcode":370900,"name":"泰安市","center":[117.129063,36.194968],"centroid":[117.030841,36.002274],"childrenNum":6,"level":"city","parent":{"adcode":370000},"subFeatureIndex":8,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.937536,35.99653],[117.935088,36.004421],[117.926165,36.005068],[117.922848,36.015467],[117.914557,36.020039],[117.895052,36.020363],[117.877047,36.016357],[117.866386,36.007415],[117.854462,36.006889],[117.841827,36.011947],[117.828719,36.008022],[117.825244,36.013363],[117.801159,36.012959],[117.794763,36.015143],[117.782286,36.007294],[117.781022,35.995437],[117.762307,35.990621],[117.756621,35.991916],[117.756542,36.002236],[117.750304,36.011947],[117.757016,36.019392],[117.741696,36.036058],[117.725824,36.029667],[117.720454,36.038243],[117.701186,36.04528],[117.689972,36.052358],[117.656569,36.049729],[117.630588,36.059879],[117.601844,36.075648],[117.575943,36.074516],[117.561649,36.079327],[117.552884,36.087978],[117.547672,36.106166],[117.534879,36.111419],[117.505898,36.098245],[117.491052,36.096587],[117.484893,36.10075],[117.473758,36.089797],[117.451963,36.087412],[117.447067,36.09206],[117.456148,36.100467],[117.454885,36.111177],[117.463571,36.116875],[117.44683,36.120834],[117.459623,36.1498],[117.469178,36.154687],[117.476601,36.150123],[117.487972,36.15921],[117.475653,36.173102],[117.461202,36.170194],[117.446988,36.18691],[117.440434,36.191189],[117.452437,36.203138],[117.447778,36.203541],[117.447383,36.218313],[117.427878,36.221662],[117.412716,36.210927],[117.399528,36.215004],[117.393211,36.222994],[117.392895,36.237439],[117.417217,36.243652],[117.413901,36.267934],[117.394553,36.266522],[117.397791,36.283782],[117.387604,36.285556],[117.38792,36.296361],[117.379707,36.315146],[117.38871,36.326148],[117.387762,36.337915],[117.362729,36.360234],[117.351753,36.377997],[117.35041,36.393379],[117.344962,36.403968],[117.339434,36.425786],[117.339118,36.438181],[117.346936,36.455724],[117.346383,36.46373],[117.335328,36.466345],[117.30682,36.467029],[117.30682,36.472097],[117.288184,36.476039],[117.288973,36.468718],[117.275786,36.451218],[117.263862,36.449206],[117.249726,36.436732],[117.242145,36.41528],[117.218297,36.406182],[117.208742,36.405297],[117.200924,36.389755],[117.191685,36.378762],[117.180945,36.37256],[117.18292,36.360798],[117.179603,36.353144],[117.161361,36.351895],[117.142567,36.345731],[117.137039,36.335135],[117.111691,36.340413],[117.107347,36.338882],[117.088711,36.346013],[117.07734,36.321957],[117.077655,36.307205],[117.074102,36.296724],[117.066995,36.296885],[117.051201,36.288741],[117.0482,36.283701],[117.030275,36.277532],[117.027353,36.268983],[117.003347,36.265353],[117.002794,36.254503],[116.987632,36.250711],[116.975471,36.243208],[116.956835,36.259787],[116.950201,36.257327],[116.932828,36.261925],[116.928722,36.26991],[116.891133,36.255471],[116.873129,36.264062],[116.867759,36.28108],[116.855519,36.289709],[116.855756,36.301642],[116.830644,36.294587],[116.808612,36.299022],[116.786659,36.311357],[116.772761,36.312002],[116.762574,36.305391],[116.732961,36.294144],[116.710376,36.279185],[116.701058,36.280153],[116.686528,36.275435],[116.675709,36.276645],[116.649018,36.295797],[116.632277,36.296321],[116.609613,36.291322],[116.600611,36.273983],[116.587502,36.268862],[116.581264,36.255471],[116.574393,36.263457],[116.558837,36.261037],[116.552361,36.247767],[116.53641,36.245588],[116.525591,36.255229],[116.512325,36.253414],[116.506402,36.240344],[116.485239,36.236067],[116.487529,36.228441],[116.472604,36.21464],[116.481922,36.197002],[116.502059,36.192764],[116.51035,36.176857],[116.525986,36.168297],[116.52188,36.157151],[116.510192,36.148346],[116.507192,36.141277],[116.519748,36.141196],[116.528513,36.145276],[116.525275,36.135298],[116.543122,36.13958],[116.5586,36.133804],[116.562153,36.121643],[116.569024,36.118774],[116.566891,36.108752],[116.554651,36.108187],[116.546597,36.101195],[116.543359,36.086604],[116.532303,36.074274],[116.504112,36.064732],[116.471182,36.06457],[116.452072,36.058019],[116.449387,36.047302],[116.434541,36.038607],[116.436121,36.046534],[116.429566,36.052439],[116.433357,36.059839],[116.427829,36.067441],[116.409508,36.068007],[116.401059,36.074031],[116.398058,36.084582],[116.386845,36.090807],[116.360233,36.084744],[116.352731,36.070797],[116.338753,36.060082],[116.324855,36.054178],[116.310404,36.052196],[116.304718,36.046251],[116.301244,36.031123],[116.294689,36.031407],[116.271552,36.043824],[116.267998,36.052964],[116.267287,36.074233],[116.273368,36.093758],[116.27171,36.109843],[116.261444,36.122693],[116.246677,36.149436],[116.226066,36.173748],[116.213036,36.169831],[116.169446,36.171325],[116.164392,36.168862],[116.164313,36.146084],[116.123882,36.136429],[116.114011,36.122047],[116.099323,36.112066],[116.096875,36.092182],[116.091742,36.089474],[116.087162,36.071403],[116.076106,36.056887],[116.079502,36.042611],[116.073658,36.026148],[116.06284,36.028899],[116.052574,35.99912],[116.0506,35.981919],[116.061892,35.97358],[116.065367,35.964714],[116.060392,35.956374],[116.048704,35.948114],[116.05897,35.936167],[116.07279,35.940055],[116.074606,35.927459],[116.086767,35.923246],[116.081634,35.914172],[116.09261,35.904935],[116.126172,35.891037],[116.142834,35.895656],[116.154284,35.886012],[116.161155,35.900397],[116.166998,35.90457],[116.185398,35.900478],[116.190057,35.892536],[116.20814,35.886863],[116.214774,35.889659],[116.218485,35.879811],[116.221091,35.892779],[116.233963,35.888403],[116.230804,35.860963],[116.233963,35.851273],[116.245808,35.834162],[116.250072,35.823536],[116.274868,35.803377],[116.277395,35.806581],[116.304007,35.799401],[116.297295,35.795546],[116.301875,35.777084],[116.309377,35.77404],[116.32983,35.787594],[116.336621,35.796723],[116.355652,35.800537],[116.362838,35.795952],[116.377921,35.796642],[116.385581,35.801754],[116.400822,35.794613],[116.421196,35.799279],[116.428698,35.796398],[116.436989,35.807271],[116.459811,35.81583],[116.459732,35.828241],[116.468024,35.836149],[116.475841,35.83327],[116.486976,35.84138],[116.507508,35.84361],[116.515325,35.841866],[116.520616,35.853057],[116.525275,35.847462],[116.53641,35.847178],[116.549834,35.857517],[116.55702,35.890753],[116.566023,35.899222],[116.595715,35.905056],[116.599663,35.916157],[116.618536,35.935195],[116.62817,35.938556],[116.665996,35.940176],[116.676973,35.925596],[116.672392,35.92118],[116.666944,35.898209],[116.647518,35.884674],[116.62438,35.878068],[116.614904,35.865746],[116.617036,35.855206],[116.647281,35.832621],[116.676736,35.822198],[116.686607,35.814005],[116.687317,35.798062],[116.670497,35.761499],[116.662679,35.758252],[116.636699,35.764137],[116.619563,35.756628],[116.614588,35.74924],[116.612061,35.71237],[116.615615,35.705222],[116.627539,35.705791],[116.648939,35.713426],[116.664969,35.716716],[116.68866,35.724838],[116.698847,35.72098],[116.702242,35.709974],[116.739673,35.703435],[116.762732,35.708309],[116.770076,35.703557],[116.777341,35.690923],[116.778762,35.679222],[116.805137,35.679506],[116.802137,35.684219],[116.808296,35.69137],[116.811376,35.706034],[116.8218,35.705222],[116.8233,35.696935],[116.836882,35.697382],[116.861994,35.679059],[116.879367,35.685479],[116.88071,35.696732],[116.897135,35.701851],[116.909849,35.699982],[116.91814,35.706278],[116.930538,35.709406],[116.931012,35.713629],[116.949649,35.715741],[116.954939,35.719072],[116.952412,35.737507],[116.946253,35.744368],[116.952412,35.7561],[116.974366,35.760444],[116.993397,35.794045],[116.991423,35.805973],[117.009506,35.807636],[117.0268,35.799401],[117.049622,35.801307],[117.070864,35.790394],[117.083815,35.80431],[117.097318,35.802687],[117.103241,35.790272],[117.131275,35.786498],[117.139566,35.777449],[117.128353,35.769901],[117.135381,35.767303],[117.143436,35.771727],[117.163651,35.775014],[117.175023,35.780209],[117.200214,35.775095],[117.21806,35.778464],[117.226984,35.773959],[117.260308,35.771037],[117.297581,35.788487],[117.306504,35.798833],[117.318428,35.793802],[117.341013,35.793558],[117.343382,35.784267],[117.350331,35.782725],[117.364467,35.770225],[117.379155,35.775785],[117.391,35.767141],[117.415559,35.775177],[117.431195,35.760971],[117.440197,35.744571],[117.452832,35.742298],[117.478733,35.732675],[117.488683,35.721102],[117.49121,35.707903],[117.511031,35.712411],[117.530931,35.707131],[117.520586,35.697626],[117.529431,35.682879],[117.576022,35.650206],[117.596948,35.630449],[117.599001,35.649149],[117.605319,35.674834],[117.62585,35.703841],[117.634616,35.709324],[117.663913,35.70969],[117.679154,35.713305],[117.707424,35.726016],[117.732615,35.71237],[117.754173,35.709609],[117.769019,35.726625],[117.781733,35.734096],[117.811504,35.732919],[117.823033,35.739496],[117.837405,35.741445],[117.833694,35.760484],[117.828482,35.773837],[117.831167,35.786661],[117.846092,35.796398],[117.840959,35.812058],[117.828403,35.821792],[117.827376,35.827754],[117.842143,35.84507],[117.85541,35.850219],[117.86686,35.86984],[117.883364,35.882648],[117.906265,35.884634],[117.924586,35.880946],[117.937615,35.874826],[117.960516,35.87057],[117.968097,35.884066],[117.97931,35.889699],[117.981364,35.906191],[117.988234,35.908703],[117.99921,35.925393],[117.997394,35.934587],[117.988471,35.947709],[117.984443,35.956293],[117.992577,35.971273],[117.971414,35.969937],[117.953962,35.957913],[117.947013,35.960382],[117.947013,35.971111],[117.937221,35.98119],[117.937536,35.99653]]]]}},{"type":"Feature","properties":{"adcode":371000,"name":"威海市","center":[122.116394,37.509691],"centroid":[122.000805,37.118677],"childrenNum":4,"level":"city","parent":{"adcode":370000},"subFeatureIndex":9,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[121.923992,37.473096],[121.933941,37.452529],[121.925966,37.441767],[121.91878,37.420755],[121.908435,37.400969],[121.90038,37.391232],[121.882454,37.381694],[121.870293,37.368894],[121.865239,37.336727],[121.859396,37.329249],[121.834047,37.318311],[121.822281,37.303988],[121.815253,37.300447],[121.794879,37.30375],[121.790615,37.299532],[121.792431,37.288469],[121.784692,37.268409],[121.778296,37.260487],[121.7749,37.248225],[121.757211,37.247667],[121.74813,37.241575],[121.748525,37.223255],[121.755632,37.220506],[121.754527,37.212022],[121.761634,37.217997],[121.769057,37.196364],[121.759738,37.19222],[121.760686,37.178831],[121.749315,37.176439],[121.753895,37.172493],[121.761002,37.177954],[121.767872,37.170979],[121.747656,37.135776],[121.737706,37.136175],[121.733995,37.125607],[121.699328,37.125926],[121.694037,37.141239],[121.683455,37.141917],[121.688983,37.133503],[121.682271,37.13127],[121.683692,37.123014],[121.678007,37.121658],[121.669162,37.110649],[121.666714,37.12082],[121.654316,37.121897],[121.639865,37.131908],[121.638839,37.139524],[121.628889,37.137969],[121.625414,37.131908],[121.612147,37.125846],[121.600539,37.141079],[121.590747,37.144269],[121.585377,37.132306],[121.590352,37.128518],[121.589168,37.116712],[121.580323,37.10674],[121.574954,37.110091],[121.547868,37.104945],[121.49946,37.104426],[121.465425,37.12086],[121.447578,37.123333],[121.441656,37.12106],[121.427363,37.100796],[121.391432,37.098282],[121.382746,37.112125],[121.376823,37.115915],[121.369795,37.110889],[121.351475,37.126962],[121.363715,37.129236],[121.358187,37.140282],[121.348316,37.135975],[121.34113,37.127002],[121.326916,37.12768],[121.317992,37.132825],[121.314044,37.141079],[121.306542,37.141996],[121.287827,37.136055],[121.26153,37.117989],[121.246368,37.102631],[121.243131,37.092138],[121.204279,37.07897],[121.191407,37.072026],[121.192512,37.052108],[121.188011,37.041169],[121.188564,37.029948],[121.19496,37.027273],[121.194565,37.019485],[121.181299,37.016131],[121.177587,37.003748],[121.182404,36.99456],[121.19038,36.996558],[121.209096,36.985371],[121.222915,36.986649],[121.22639,36.971065],[121.233734,36.956917],[121.248501,36.953679],[121.252607,36.938088],[121.263189,36.926093],[121.272191,36.927532],[121.282615,36.918535],[121.304173,36.918335],[121.308358,36.905177],[121.312938,36.904097],[121.347605,36.920574],[121.360951,36.921494],[121.366557,36.903617],[121.36482,36.897417],[121.385431,36.877333],[121.363873,36.871651],[121.357397,36.864048],[121.357239,36.852401],[121.36174,36.841273],[121.373428,36.840593],[121.376665,36.830384],[121.396802,36.803834],[121.395855,36.794342],[121.409121,36.790176],[121.417334,36.792739],[121.450184,36.790056],[121.462424,36.784888],[121.478218,36.770825],[121.480271,36.784487],[121.504356,36.797867],[121.506962,36.803834],[121.522914,36.80824],[121.530179,36.818772],[121.539339,36.823417],[121.565083,36.830504],[121.569979,36.827501],[121.554027,36.81709],[121.546051,36.806558],[121.528205,36.805637],[121.496302,36.792379],[121.481061,36.780401],[121.482245,36.77355],[121.505857,36.770665],[121.507594,36.760928],[121.517702,36.761088],[121.520466,36.749386],[121.53239,36.753273],[121.547394,36.74642],[121.546051,36.741971],[121.532153,36.736198],[121.531995,36.731027],[121.542024,36.734595],[121.565477,36.728822],[121.574322,36.737],[121.574638,36.745538],[121.556317,36.764294],[121.570531,36.766257],[121.586009,36.756399],[121.60125,36.763412],[121.599671,36.745578],[121.606067,36.738122],[121.620834,36.737241],[121.651473,36.723851],[121.653527,36.72798],[121.634416,36.766858],[121.628968,36.783245],[121.628494,36.797306],[121.64176,36.805757],[121.670742,36.817651],[121.70683,36.822296],[121.718517,36.829223],[121.726256,36.82626],[121.73818,36.835068],[121.757606,36.841753],[121.763766,36.85084],[121.76195,36.866049],[121.767714,36.874852],[121.790457,36.884255],[121.816121,36.891856],[121.829388,36.898057],[121.862791,36.909256],[121.870846,36.915736],[121.897616,36.921694],[121.927545,36.932371],[121.964818,36.938128],[121.977611,36.947163],[121.98306,36.958436],[121.994668,36.953719],[122.013936,36.959994],[122.022464,36.942006],[122.025307,36.908856],[122.03731,36.895817],[122.037784,36.875492],[122.042522,36.872011],[122.046234,36.891176],[122.05342,36.895697],[122.051998,36.904977],[122.073636,36.914376],[122.09322,36.914136],[122.100801,36.921934],[122.0993,36.93289],[122.106486,36.941686],[122.112409,36.939607],[122.12765,36.945484],[122.136731,36.944325],[122.14139,36.938288],[122.127176,36.918535],[122.117463,36.895737],[122.119674,36.892096],[122.155999,36.883055],[122.164291,36.892536],[122.175662,36.894537],[122.188534,36.866209],[122.181427,36.856323],[122.17203,36.852441],[122.174714,36.842474],[122.196115,36.842874],[122.220437,36.848919],[122.245865,36.835428],[122.250603,36.839912],[122.263869,36.841633],[122.278162,36.836189],[122.298141,36.83707],[122.32657,36.830424],[122.335414,36.83767],[122.342758,36.828502],[122.350655,36.835228],[122.378373,36.844275],[122.386506,36.860046],[122.3839,36.865368],[122.392587,36.866209],[122.403326,36.860686],[122.416119,36.859485],[122.445732,36.873052],[122.457025,36.86913],[122.464448,36.879294],[122.454498,36.883535],[122.446601,36.898217],[122.428833,36.908856],[122.434124,36.914256],[122.483005,36.914056],[122.492639,36.912176],[122.485453,36.903777],[122.484663,36.891536],[122.497061,36.886095],[122.516408,36.890256],[122.532123,36.901457],[122.542468,36.913536],[122.546574,36.923494],[122.545863,36.956317],[122.557551,36.968707],[122.556919,36.978898],[122.545232,36.990205],[122.544837,37.004587],[122.555971,37.02324],[122.583373,37.037296],[122.585268,37.042965],[122.575634,37.054423],[122.548706,37.05091],[122.524226,37.04033],[122.498641,37.034301],[122.487901,37.034301],[122.461447,37.039532],[122.45963,37.04584],[122.480083,37.06105],[122.481031,37.071786],[122.477951,37.091539],[122.481189,37.117829],[122.484505,37.128877],[122.493113,37.142036],[122.501562,37.148695],[122.533544,37.153359],[122.559762,37.147419],[122.581083,37.147738],[122.586374,37.153519],[122.587243,37.163684],[122.573344,37.17624],[122.57903,37.183493],[122.596877,37.181262],[122.606274,37.193057],[122.624042,37.191144],[122.628859,37.203456],[122.623963,37.212739],[122.604063,37.221462],[122.60043,37.22895],[122.60043,37.242212],[122.590638,37.248065],[122.592454,37.261284],[122.584716,37.258736],[122.567185,37.261164],[122.577056,37.271395],[122.57137,37.279037],[122.581083,37.286957],[122.573897,37.296349],[122.594192,37.319822],[122.610459,37.331119],[122.611486,37.339431],[122.59356,37.336289],[122.594823,37.347981],[122.611486,37.366907],[122.626884,37.36957],[122.641809,37.385867],[122.655629,37.388292],[122.675134,37.383761],[122.680662,37.37438],[122.69456,37.376328],[122.697877,37.384118],[122.715802,37.396121],[122.706958,37.404108],[122.704273,37.414955],[122.688558,37.422423],[122.684847,37.4287],[122.669527,37.42858],[122.675923,37.413326],[122.666526,37.414438],[122.659735,37.421589],[122.665816,37.424251],[122.656655,37.428461],[122.649548,37.419881],[122.643862,37.428064],[122.626648,37.424688],[122.606511,37.424131],[122.595929,37.421152],[122.580293,37.410187],[122.553602,37.406929],[122.513408,37.410703],[122.495245,37.413683],[122.487348,37.420278],[122.489559,37.431917],[122.480952,37.433665],[122.464684,37.42441],[122.437046,37.420358],[122.416751,37.414676],[122.393376,37.415114],[122.387375,37.42],[122.336993,37.414438],[122.312355,37.416663],[122.31046,37.423059],[122.285664,37.425403],[122.280216,37.433863],[122.280373,37.442641],[122.286138,37.447287],[122.27682,37.456778],[122.260316,37.46047],[122.252656,37.467855],[122.24089,37.465354],[122.235046,37.469205],[122.233151,37.46051],[122.220595,37.463289],[122.212461,37.455666],[122.194456,37.456222],[122.185849,37.441688],[122.183717,37.431282],[122.167213,37.438073],[122.165712,37.450027],[122.156947,37.459438],[122.148892,37.481948],[122.153946,37.488616],[122.149524,37.493418],[122.131993,37.499371],[122.136336,37.512307],[122.14755,37.51199],[122.15442,37.518219],[122.163106,37.518973],[122.171714,37.534285],[122.171398,37.541147],[122.150708,37.544281],[122.144154,37.550388],[122.150471,37.557129],[122.133572,37.556455],[122.125833,37.56732],[122.119437,37.564227],[122.123148,37.552926],[122.107434,37.550309],[122.088797,37.554116],[122.069529,37.568747],[122.066529,37.562364],[122.074583,37.551816],[122.075215,37.540473],[122.069924,37.537062],[122.053736,37.543448],[122.045207,37.531628],[122.036284,37.529446],[122.017253,37.530914],[122.013225,37.510006],[121.999485,37.506236],[121.996958,37.493974],[121.979111,37.488378],[121.966002,37.489648],[121.923992,37.473096]]],[[[122.183559,37.49957],[122.216173,37.497824],[122.202748,37.501951],[122.199747,37.510323],[122.188218,37.510165],[122.184901,37.5156],[122.171951,37.501792],[122.183559,37.49957]]],[[[122.257631,36.755638],[122.260316,36.748704],[122.267028,36.754195],[122.257631,36.755638]]],[[[121.484614,36.732871],[121.499776,36.73712],[121.492274,36.740207],[121.484614,36.732871]]],[[[121.620834,36.713827],[121.631179,36.725855],[121.623124,36.728702],[121.620834,36.713827]]],[[[122.482215,37.447089],[122.490586,37.449829],[122.483479,37.454991],[122.482215,37.447089]]]]}},{"type":"Feature","properties":{"adcode":371100,"name":"日照市","center":[119.461208,35.428588],"centroid":[119.146546,35.57855],"childrenNum":4,"level":"city","parent":{"adcode":370000},"subFeatureIndex":10,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.662115,35.589294],[119.651455,35.588766],[119.634713,35.598731],[119.614972,35.606336],[119.609286,35.59202],[119.600599,35.590271],[119.592308,35.600683],[119.57762,35.586243],[119.556535,35.592508],[119.538215,35.589294],[119.536872,35.606011],[119.518157,35.615446],[119.517762,35.625774],[119.524474,35.632279],[119.528265,35.674305],[119.519105,35.68552],[119.51484,35.697992],[119.518473,35.700632],[119.521079,35.716879],[119.517762,35.723742],[119.525422,35.730604],[119.504101,35.752325],[119.48807,35.754599],[119.48657,35.771646],[119.496599,35.779235],[119.493282,35.789866],[119.482385,35.799725],[119.464696,35.80861],[119.455693,35.809056],[119.444322,35.804026],[119.427739,35.802078],[119.397731,35.786823],[119.390466,35.778707],[119.375857,35.770712],[119.368829,35.770834],[119.374041,35.816154],[119.372382,35.830025],[119.358247,35.84511],[119.371435,35.860476],[119.360695,35.884066],[119.345533,35.893792],[119.315999,35.887552],[119.298153,35.893022],[119.294441,35.911336],[119.281964,35.910202],[119.240427,35.884269],[119.217053,35.879527],[119.190598,35.879446],[119.169119,35.894846],[119.161854,35.894481],[119.158221,35.882486],[119.135637,35.892982],[119.144718,35.904449],[119.151746,35.905502],[119.169672,35.91721],[119.183412,35.91875],[119.179385,35.926163],[119.182623,35.962285],[119.178595,35.97107],[119.155063,35.965767],[119.153246,35.971192],[119.134373,35.968601],[119.121817,35.962731],[119.088888,35.963176],[119.07878,35.959289],[119.066619,35.963986],[119.060538,35.978195],[119.05201,35.9803],[119.021054,35.977426],[119.015606,35.995923],[119.024924,36.003571],[119.023739,36.011219],[119.014105,36.013404],[119.017659,36.024044],[119.024134,36.02631],[119.012526,36.03533],[118.999022,36.038404],[118.981886,36.017409],[118.956853,36.008427],[118.896048,36.006404],[118.87986,35.992321],[118.897312,35.97605],[118.893047,35.963257],[118.883571,35.957305],[118.837217,35.948883],[118.813922,35.948761],[118.80413,35.939731],[118.805709,35.923854],[118.775148,35.917251],[118.777281,35.896791],[118.765198,35.898331],[118.756038,35.877379],[118.75438,35.853544],[118.7498,35.849489],[118.732822,35.848111],[118.722082,35.834932],[118.724609,35.820454],[118.716712,35.80723],[118.700603,35.791367],[118.702182,35.772295],[118.706525,35.765152],[118.703288,35.745221],[118.707078,35.738075],[118.722161,35.73101],[118.743482,35.729346],[118.757223,35.725935],[118.798918,35.730117],[118.804209,35.728655],[118.806499,35.718056],[118.794101,35.697504],[118.791416,35.68296],[118.76662,35.653539],[118.751458,35.640409],[118.739692,35.62496],[118.735822,35.593443],[118.74056,35.581484],[118.734875,35.569767],[118.724056,35.562972],[118.725083,35.553205],[118.696575,35.528622],[118.698865,35.513558],[118.725004,35.496578],[118.734322,35.48607],[118.723898,35.468758],[118.709131,35.457677],[118.698234,35.455436],[118.693575,35.459103],[118.667831,35.456821],[118.662066,35.461547],[118.651011,35.458614],[118.64801,35.453276],[118.6289,35.449324],[118.632611,35.430903],[118.642246,35.425156],[118.635691,35.421039],[118.619029,35.423118],[118.601419,35.414517],[118.606157,35.390747],[118.624952,35.387036],[118.625425,35.370315],[118.632059,35.368438],[118.652274,35.373578],[118.682914,35.368642],[118.696891,35.379818],[118.709605,35.369825],[118.712527,35.363544],[118.723898,35.368479],[118.739455,35.359505],[118.768989,35.368031],[118.776412,35.37627],[118.784151,35.371049],[118.797575,35.369417],[118.816764,35.373292],[118.84314,35.370804],[118.859644,35.381694],[118.865725,35.391685],[118.874174,35.388464],[118.871015,35.367215],[118.889573,35.357261],[118.904814,35.355507],[118.92195,35.348408],[118.923213,35.339187],[118.930478,35.331271],[118.947219,35.336943],[118.961828,35.334168],[118.973042,35.340167],[118.986861,35.353141],[118.98852,35.36697],[118.984413,35.382224],[118.999654,35.388953],[119.024371,35.386873],[119.044587,35.377004],[119.04893,35.371498],[119.06575,35.364563],[119.075542,35.366113],[119.078385,35.357506],[119.085571,35.354243],[119.087229,35.340575],[119.096153,35.326864],[119.105708,35.330659],[119.133741,35.335596],[119.146455,35.334862],[119.148193,35.326741],[119.141322,35.320823],[119.143218,35.314048],[119.157669,35.301721],[119.155931,35.293882],[119.164065,35.289554],[119.179543,35.287595],[119.187519,35.258192],[119.181991,35.25231],[119.182149,35.241852],[119.174568,35.230331],[119.170225,35.21231],[119.161301,35.204136],[119.139032,35.202338],[119.1354,35.191669],[119.149219,35.189298],[119.157274,35.18243],[119.164855,35.166525],[119.173146,35.1617],[119.163433,35.154134],[119.164223,35.143173],[119.174252,35.139042],[119.189967,35.138101],[119.196679,35.129919],[119.203233,35.110894],[119.220685,35.10717],[119.240743,35.122923],[119.25551,35.122637],[119.267276,35.117154],[119.286702,35.11515],[119.301785,35.093174],[119.305812,35.076679],[119.350508,35.083883],[119.357457,35.072831],[119.380358,35.070292],[119.374041,35.078685],[119.386518,35.088918],[119.396467,35.091701],[119.403259,35.106802],[119.412893,35.11073],[119.426633,35.108234],[119.432398,35.111385],[119.428292,35.121205],[119.418973,35.128283],[119.397731,35.137692],[119.393546,35.143582],[119.396073,35.157815],[119.416999,35.158183],[119.416604,35.167465],[119.397652,35.166893],[119.411313,35.231638],[119.42458,35.255332],[119.451113,35.28539],[119.476541,35.308334],[119.502442,35.321721],[119.516025,35.318089],[119.520447,35.303803],[119.528502,35.303721],[119.538452,35.29674],[119.53861,35.320456],[119.552113,35.324456],[119.552745,35.330006],[119.539794,35.329802],[119.543743,35.34796],[119.57912,35.357629],[119.586938,35.36387],[119.588991,35.376106],[119.578804,35.385568],[119.579673,35.406527],[119.592545,35.43339],[119.600205,35.443537],[119.612997,35.449813],[119.618999,35.459469],[119.628712,35.500854],[119.639215,35.509446],[119.649875,35.537658],[119.665748,35.570255],[119.662115,35.589294]]]]}},{"type":"Feature","properties":{"adcode":371300,"name":"临沂市","center":[118.326443,35.065282],"centroid":[118.286421,35.311899],"childrenNum":12,"level":"city","parent":{"adcode":370000},"subFeatureIndex":11,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.203233,35.110894],[119.196679,35.129919],[119.189967,35.138101],[119.174252,35.139042],[119.164223,35.143173],[119.163433,35.154134],[119.173146,35.1617],[119.164855,35.166525],[119.157274,35.18243],[119.149219,35.189298],[119.1354,35.191669],[119.139032,35.202338],[119.161301,35.204136],[119.170225,35.21231],[119.174568,35.230331],[119.182149,35.241852],[119.181991,35.25231],[119.187519,35.258192],[119.179543,35.287595],[119.164065,35.289554],[119.155931,35.293882],[119.157669,35.301721],[119.143218,35.314048],[119.141322,35.320823],[119.148193,35.326741],[119.146455,35.334862],[119.133741,35.335596],[119.105708,35.330659],[119.096153,35.326864],[119.087229,35.340575],[119.085571,35.354243],[119.078385,35.357506],[119.075542,35.366113],[119.06575,35.364563],[119.04893,35.371498],[119.044587,35.377004],[119.024371,35.386873],[118.999654,35.388953],[118.984413,35.382224],[118.98852,35.36697],[118.986861,35.353141],[118.973042,35.340167],[118.961828,35.334168],[118.947219,35.336943],[118.930478,35.331271],[118.923213,35.339187],[118.92195,35.348408],[118.904814,35.355507],[118.889573,35.357261],[118.871015,35.367215],[118.874174,35.388464],[118.865725,35.391685],[118.859644,35.381694],[118.84314,35.370804],[118.816764,35.373292],[118.797575,35.369417],[118.784151,35.371049],[118.776412,35.37627],[118.768989,35.368031],[118.739455,35.359505],[118.723898,35.368479],[118.712527,35.363544],[118.709605,35.369825],[118.696891,35.379818],[118.682914,35.368642],[118.652274,35.373578],[118.632059,35.368438],[118.625425,35.370315],[118.624952,35.387036],[118.606157,35.390747],[118.601419,35.414517],[118.619029,35.423118],[118.635691,35.421039],[118.642246,35.425156],[118.632611,35.430903],[118.6289,35.449324],[118.64801,35.453276],[118.651011,35.458614],[118.662066,35.461547],[118.667831,35.456821],[118.693575,35.459103],[118.698234,35.455436],[118.709131,35.457677],[118.723898,35.468758],[118.734322,35.48607],[118.725004,35.496578],[118.698865,35.513558],[118.696575,35.528622],[118.725083,35.553205],[118.724056,35.562972],[118.734875,35.569767],[118.74056,35.581484],[118.735822,35.593443],[118.739692,35.62496],[118.751458,35.640409],[118.76662,35.653539],[118.791416,35.68296],[118.794101,35.697504],[118.806499,35.718056],[118.804209,35.728655],[118.798918,35.730117],[118.757223,35.725935],[118.743482,35.729346],[118.722161,35.73101],[118.707078,35.738075],[118.703288,35.745221],[118.706525,35.765152],[118.702182,35.772295],[118.700603,35.791367],[118.716712,35.80723],[118.724609,35.820454],[118.722082,35.834932],[118.732822,35.848111],[118.7498,35.849489],[118.75438,35.853544],[118.756038,35.877379],[118.765198,35.898331],[118.777281,35.896791],[118.775148,35.917251],[118.805709,35.923854],[118.80413,35.939731],[118.813922,35.948761],[118.837217,35.948883],[118.883571,35.957305],[118.893047,35.963257],[118.897312,35.97605],[118.87986,35.992321],[118.896048,36.006404],[118.956853,36.008427],[118.981886,36.017409],[118.999022,36.038404],[119.012526,36.03533],[119.024134,36.02631],[119.035584,36.02275],[119.047903,36.024813],[119.052089,36.037838],[119.040322,36.042934],[119.042534,36.055512],[119.049641,36.066632],[119.063539,36.075042],[119.066935,36.081631],[119.048851,36.092707],[119.038506,36.090444],[119.020344,36.104307],[119.013868,36.09881],[119.000523,36.099497],[118.988756,36.092343],[118.970278,36.09873],[118.970041,36.104671],[118.958512,36.104145],[118.954642,36.1115],[118.943271,36.119582],[118.936322,36.11344],[118.916185,36.111702],[118.920765,36.105721],[118.908288,36.091292],[118.886493,36.088584],[118.880886,36.08438],[118.875911,36.091535],[118.860513,36.101316],[118.865961,36.113682],[118.860197,36.114733],[118.858302,36.129966],[118.863908,36.139298],[118.858302,36.143256],[118.859802,36.16232],[118.85459,36.170194],[118.846614,36.172092],[118.844561,36.18473],[118.848746,36.188606],[118.847009,36.199263],[118.835796,36.203138],[118.809026,36.198738],[118.802076,36.202855],[118.78573,36.197487],[118.766383,36.206649],[118.745535,36.191754],[118.751142,36.183115],[118.741824,36.165551],[118.733532,36.166802],[118.73298,36.1519],[118.736454,36.146528],[118.72603,36.141035],[118.714659,36.154485],[118.703761,36.150446],[118.701235,36.144509],[118.679913,36.152062],[118.683388,36.158564],[118.675491,36.170194],[118.666015,36.168983],[118.653143,36.176695],[118.644299,36.177018],[118.640824,36.171042],[118.622109,36.17718],[118.606236,36.164218],[118.581914,36.151456],[118.572201,36.156424],[118.563988,36.147094],[118.565015,36.130087],[118.556881,36.130935],[118.541719,36.124996],[118.535797,36.118531],[118.515502,36.109884],[118.509974,36.114612],[118.504762,36.105802],[118.526716,36.104671],[118.529479,36.093879],[118.522925,36.084784],[118.507842,36.074961],[118.516608,36.068573],[118.513449,36.064085],[118.522214,36.05349],[118.522609,36.043622],[118.516845,36.026107],[118.507447,36.029789],[118.503341,36.024246],[118.489206,36.025784],[118.476097,36.031407],[118.469859,36.022992],[118.476571,36.012797],[118.487074,36.005797],[118.49268,35.995437],[118.486521,35.988759],[118.499393,35.976212],[118.505157,35.965808],[118.502157,35.962488],[118.470964,35.960868],[118.459356,35.952689],[118.430612,35.969694],[118.415213,35.990783],[118.387021,35.987586],[118.382283,35.975078],[118.360725,35.970908],[118.352828,35.956698],[118.344774,35.955888],[118.320136,35.946575],[118.314134,35.950827],[118.303552,35.948923],[118.293523,35.937503],[118.281362,35.935964],[118.26928,35.928512],[118.257593,35.925717],[118.257119,35.930699],[118.245906,35.932157],[118.236904,35.939245],[118.236351,35.947749],[118.22569,35.948235],[118.209897,35.955767],[118.207054,35.964391],[118.193787,35.974026],[118.206106,35.97864],[118.197578,36.004947],[118.178388,36.017005],[118.135588,36.02364],[118.132666,36.030436],[118.10937,36.030031],[118.096104,36.024246],[118.093261,36.014618],[118.084338,36.012149],[118.078415,36.017652],[118.075888,36.009034],[118.066807,36.009155],[118.058989,35.992968],[118.042248,35.986371],[118.032693,35.974268],[118.03293,35.964998],[118.02298,35.958965],[118.021084,35.949004],[117.988471,35.947709],[117.997394,35.934587],[117.99921,35.925393],[117.988234,35.908703],[117.981364,35.906191],[117.97931,35.889699],[117.968097,35.884066],[117.960516,35.87057],[117.937615,35.874826],[117.924586,35.880946],[117.906265,35.884634],[117.883364,35.882648],[117.86686,35.86984],[117.85541,35.850219],[117.842143,35.84507],[117.827376,35.827754],[117.828403,35.821792],[117.840959,35.812058],[117.846092,35.796398],[117.831167,35.786661],[117.828482,35.773837],[117.833694,35.760484],[117.837405,35.741445],[117.823033,35.739496],[117.811504,35.732919],[117.781733,35.734096],[117.769019,35.726625],[117.754173,35.709609],[117.732615,35.71237],[117.707424,35.726016],[117.679154,35.713305],[117.663913,35.70969],[117.634616,35.709324],[117.62585,35.703841],[117.605319,35.674834],[117.599001,35.649149],[117.596948,35.630449],[117.588893,35.619878],[117.585577,35.593972],[117.592763,35.589701],[117.590394,35.573551],[117.593473,35.567448],[117.582418,35.554141],[117.528641,35.547182],[117.515058,35.551008],[117.499502,35.550845],[117.496264,35.543031],[117.50424,35.531675],[117.516401,35.527319],[117.520033,35.51991],[117.513795,35.514576],[117.501634,35.512947],[117.498396,35.503093],[117.481734,35.507898],[117.472416,35.514372],[117.467441,35.512255],[117.462703,35.497922],[117.452279,35.490306],[117.442171,35.469247],[117.42851,35.458614],[117.453779,35.442396],[117.455833,35.424953],[117.467441,35.418186],[117.474785,35.400941],[117.463334,35.39038],[117.463887,35.375617],[117.439644,35.359668],[117.439012,35.348939],[117.446988,35.330292],[117.453937,35.325027],[117.478891,35.314375],[117.463098,35.287472],[117.439565,35.282368],[117.419191,35.273997],[117.426456,35.261786],[117.439486,35.258927],[117.449752,35.246795],[117.448331,35.231842],[117.468073,35.228369],[117.480628,35.222771],[117.494843,35.205893],[117.507162,35.198986],[117.526825,35.200621],[117.528009,35.184351],[117.548462,35.161741],[117.556043,35.161291],[117.570336,35.168365],[117.58376,35.164317],[117.586208,35.152989],[117.591025,35.152539],[117.600344,35.135524],[117.604371,35.13401],[117.623007,35.113063],[117.650725,35.092724],[117.656885,35.077497],[117.676469,35.065543],[117.69321,35.06018],[117.707345,35.052318],[117.704423,35.031227],[117.736247,35.031514],[117.744618,35.022748],[117.737985,35.013203],[117.728035,35.008041],[117.726534,34.979561],[117.719506,34.968331],[117.724323,34.958329],[117.714689,34.947833],[117.712004,34.934999],[117.704265,34.933605],[117.698501,34.919989],[117.70466,34.906699],[117.715163,34.896238],[117.729298,34.876994],[117.742407,34.874163],[117.75291,34.857623],[117.763175,34.848839],[117.795315,34.835907],[117.803686,34.830734],[117.798632,34.810653],[117.77739,34.801248],[117.784023,34.79484],[117.784576,34.780667],[117.79958,34.768875],[117.830614,34.760246],[117.830061,34.740888],[117.823665,34.72868],[117.825244,34.713139],[117.831719,34.707793],[117.825639,34.684392],[117.819243,34.681842],[117.805818,34.646254],[117.820111,34.646172],[117.831798,34.653455],[117.834483,34.647324],[117.847513,34.652386],[117.849408,34.647201],[117.863465,34.645184],[117.877916,34.650205],[117.880995,34.645184],[117.903106,34.644567],[117.90974,34.67016],[117.939669,34.664852],[117.951672,34.678469],[117.96328,34.678552],[117.991708,34.670077],[117.99084,34.661726],[118.007423,34.65613],[118.007818,34.64753],[118.018242,34.647036],[118.02069,34.660409],[118.053935,34.650945],[118.05741,34.655019],[118.077783,34.653702],[118.084022,34.655924],[118.102658,34.647736],[118.094603,34.636583],[118.100526,34.626582],[118.113003,34.621437],[118.11474,34.614397],[118.102816,34.593441],[118.082363,34.579893],[118.078968,34.569761],[118.100447,34.564736],[118.126428,34.55522],[118.137167,34.563253],[118.140721,34.554025],[118.153671,34.549164],[118.163542,34.551471],[118.184706,34.544179],[118.16757,34.519701],[118.164964,34.504904],[118.141826,34.497154],[118.132824,34.483425],[118.139931,34.475344],[118.177757,34.453238],[118.178862,34.425186],[118.177125,34.408722],[118.170413,34.381356],[118.179336,34.379416],[118.183363,34.390355],[118.189602,34.380654],[118.204369,34.377352],[118.217714,34.379127],[118.220241,34.405957],[118.230981,34.398693],[118.242431,34.405709],[118.277414,34.404677],[118.279862,34.412188],[118.28918,34.412271],[118.290681,34.424567],[118.320925,34.421349],[118.352197,34.422834],[118.353223,34.41747],[118.379993,34.415531],[118.395155,34.427084],[118.404947,34.427744],[118.405342,34.437027],[118.411344,34.446391],[118.41624,34.473859],[118.421372,34.483219],[118.430928,34.489074],[118.439535,34.507996],[118.440956,34.52477],[118.428322,34.563253],[118.42382,34.591094],[118.439219,34.626294],[118.452881,34.617691],[118.46362,34.625265],[118.473807,34.623412],[118.474913,34.637201],[118.466463,34.643127],[118.460856,34.65757],[118.468437,34.674315],[118.484231,34.6709],[118.500814,34.675178],[118.508158,34.687066],[118.522688,34.692289],[118.525215,34.712563],[118.53935,34.711494],[118.546063,34.70619],[118.558934,34.706847],[118.570464,34.712522],[118.60134,34.714167],[118.604894,34.696484],[118.633717,34.687025],[118.650537,34.695086],[118.664357,34.693441],[118.681335,34.678346],[118.690258,34.678593],[118.704077,34.688752],[118.720108,34.694222],[118.739376,34.69377],[118.758723,34.703434],[118.78344,34.722061],[118.768515,34.738093],[118.759197,34.740847],[118.740087,34.736901],[118.730374,34.745451],[118.719239,34.745533],[118.716475,34.763821],[118.727215,34.768752],[118.738507,34.766862],[118.740166,34.781243],[118.728399,34.786871],[118.73756,34.792088],[118.756512,34.789541],[118.773569,34.795333],[118.779018,34.809627],[118.776649,34.818785],[118.78194,34.82749],[118.768278,34.838822],[118.768989,34.846129],[118.802471,34.845637],[118.805235,34.873055],[118.829715,34.911129],[118.86075,34.943979],[118.859249,34.962633],[118.865093,34.993208],[118.862487,35.025697],[118.86533,35.029834],[118.885782,35.034258],[118.903787,35.041343],[118.911131,35.047773],[118.928504,35.050885],[118.945166,35.040811],[118.965619,35.046462],[118.992152,35.048182],[118.999891,35.053055],[119.027214,35.055307],[119.037401,35.051335],[119.061407,35.051581],[119.073647,35.056659],[119.114631,35.05498],[119.120396,35.05801],[119.120475,35.070088],[119.129477,35.076187],[119.138085,35.096285],[119.159011,35.100991],[119.171409,35.10717],[119.203233,35.110894]]]]}},{"type":"Feature","properties":{"adcode":371400,"name":"德州市","center":[116.307428,37.453968],"centroid":[116.653941,37.251267],"childrenNum":11,"level":"city","parent":{"adcode":370000},"subFeatureIndex":12,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.273417,37.532619],[117.277681,37.545391],[117.280682,37.56621],[117.288973,37.577112],[117.308321,37.589956],[117.314875,37.600458],[117.317797,37.615081],[117.312585,37.633701],[117.304925,37.640514],[117.312506,37.64194],[117.318428,37.662019],[117.329405,37.673343],[117.347489,37.683319],[117.344567,37.693136],[117.352543,37.707345],[117.36573,37.698361],[117.363598,37.679559],[117.358149,37.672947],[117.357596,37.658495],[117.363835,37.649624],[117.373074,37.648594],[117.392974,37.660039],[117.407188,37.678846],[117.415401,37.669582],[117.428825,37.665741],[117.444224,37.671918],[117.451963,37.669978],[117.465625,37.655564],[117.477075,37.654416],[117.488604,37.677025],[117.50345,37.680548],[117.506451,37.686803],[117.531247,37.688901],[117.543092,37.703625],[117.539775,37.713993],[117.556201,37.716683],[117.542618,37.726258],[117.547198,37.737494],[117.544119,37.747699],[117.531563,37.748213],[117.522165,37.755371],[117.526509,37.762964],[117.547356,37.767512],[117.546567,37.776368],[117.559912,37.800008],[117.568599,37.804987],[117.56623,37.812733],[117.588025,37.82273],[117.59529,37.834741],[117.605003,37.838968],[117.606582,37.845209],[117.595685,37.853504],[117.581076,37.858993],[117.580602,37.875302],[117.568835,37.882409],[117.547198,37.883198],[117.542776,37.890146],[117.539302,37.913552],[117.529036,37.932295],[117.567809,37.946772],[117.570652,37.957264],[117.563545,37.998585],[117.54933,38.010252],[117.541039,38.011237],[117.524377,37.989479],[117.520902,37.966729],[117.512847,37.943459],[117.49271,37.927481],[117.481181,37.914854],[117.466809,37.890739],[117.438539,37.853859],[117.423614,37.847263],[117.40632,37.843511],[117.381919,37.854531],[117.364704,37.854136],[117.344251,37.862666],[117.320166,37.861402],[117.302951,37.852358],[117.284472,37.84675],[117.271364,37.839916],[117.259755,37.838257],[117.208821,37.843748],[117.185368,37.849791],[117.163651,37.839798],[117.150148,37.8396],[117.093765,37.849515],[117.074339,37.848725],[117.040541,37.839324],[117.027195,37.832371],[117.008874,37.833872],[116.976656,37.841062],[116.950359,37.839719],[116.919325,37.84592],[116.879604,37.843748],[116.843753,37.834465],[116.828038,37.840627],[116.812718,37.84359],[116.811771,37.847935],[116.794556,37.846987],[116.788159,37.843432],[116.786185,37.826326],[116.766838,37.81135],[116.758941,37.801865],[116.74599,37.795778],[116.75365,37.793011],[116.753808,37.770517],[116.744174,37.757349],[116.73912,37.756914],[116.723169,37.766721],[116.718826,37.762331],[116.724511,37.744297],[116.709586,37.735199],[116.698768,37.738759],[116.69932,37.73065],[116.679736,37.72879],[116.675235,37.720838],[116.664022,37.687793],[116.653677,37.67754],[116.646412,37.676233],[116.641042,37.68233],[116.636462,37.675877],[116.640884,37.666454],[116.630776,37.652713],[116.60448,37.625105],[116.580316,37.613258],[116.556547,37.596852],[116.563496,37.596495],[116.545807,37.582504],[116.538463,37.56843],[116.51959,37.559905],[116.507113,37.541822],[116.49969,37.537855],[116.482633,37.52179],[116.46218,37.517426],[116.446702,37.500562],[116.438648,37.477224],[116.434146,37.473334],[116.414089,37.490997],[116.402164,37.509847],[116.388661,37.516315],[116.382738,37.523615],[116.368919,37.526392],[116.367892,37.533809],[116.376895,37.546581],[116.375473,37.560341],[116.367655,37.566289],[116.343491,37.566011],[116.344913,37.570492],[116.33591,37.581235],[116.319406,37.580046],[116.334805,37.574773],[116.304481,37.564505],[116.299664,37.56958],[116.299348,37.55935],[116.287898,37.549317],[116.291373,37.545589],[116.286082,37.532619],[116.291373,37.523813],[116.278422,37.524765],[116.283555,37.517584],[116.280317,37.510879],[116.297532,37.508816],[116.284344,37.500721],[116.292952,37.497387],[116.286082,37.491117],[116.290899,37.484766],[116.271473,37.478931],[116.276448,37.466902],[116.256469,37.478812],[116.258285,37.482662],[116.241307,37.491434],[116.235068,37.479725],[116.224803,37.479963],[116.229936,37.459676],[116.243597,37.455904],[116.243123,37.448201],[116.22733,37.434261],[116.231515,37.424529],[116.247151,37.422066],[116.250072,37.425919],[116.270999,37.426714],[116.263023,37.422423],[116.275026,37.418252],[116.270446,37.413802],[116.282923,37.401326],[116.273052,37.398425],[116.270446,37.389126],[116.261602,37.389802],[116.251652,37.376566],[116.234437,37.361221],[116.195506,37.365674],[116.18524,37.369928],[116.168814,37.384118],[116.126646,37.373466],[116.116459,37.374301],[116.106588,37.368815],[116.087557,37.373307],[116.072474,37.368099],[116.056206,37.369053],[116.051942,37.357484],[116.031252,37.356411],[116.024461,37.359949],[116.013643,37.349571],[116.000376,37.350804],[116.009457,37.343169],[115.986951,37.341738],[115.975738,37.337283],[115.984503,37.326067],[115.972974,37.324039],[115.975659,37.317515],[115.984346,37.319265],[115.981503,37.30737],[115.970763,37.295553],[115.96871,37.28632],[115.976212,37.276171],[115.975185,37.268967],[115.966973,37.265742],[115.972895,37.257103],[115.963972,37.250096],[115.971079,37.245636],[115.969421,37.239464],[115.953232,37.223693],[115.941387,37.227716],[115.926778,37.219511],[115.920934,37.223534],[115.920145,37.214173],[115.9098,37.206803],[115.904825,37.189391],[115.912485,37.178751],[115.892269,37.157625],[115.87995,37.152004],[115.879397,37.138647],[115.885399,37.128757],[115.879476,37.105583],[115.868263,37.084038],[115.865025,37.070828],[115.855154,37.071108],[115.85626,37.06073],[115.831938,37.045281],[115.825778,37.032384],[115.812354,37.02895],[115.813222,37.019126],[115.808089,37.010259],[115.790874,37.005985],[115.776265,36.990884],[115.786373,36.983093],[115.784478,36.970625],[115.791743,36.975261],[115.796876,36.968747],[115.788189,36.9526],[115.772791,36.936849],[115.762683,36.939327],[115.761972,36.924413],[115.768684,36.921014],[115.780293,36.912216],[115.779819,36.904977],[115.791348,36.914336],[115.813064,36.913416],[115.81875,36.908577],[115.823251,36.913496],[115.83178,36.910856],[115.832964,36.918575],[115.848995,36.912656],[115.85397,36.916215],[115.85855,36.908337],[115.853733,36.904777],[115.868421,36.901457],[115.875844,36.916255],[115.881687,36.917575],[115.885241,36.907017],[115.894796,36.905657],[115.920461,36.892976],[115.947704,36.888576],[116.005667,36.884375],[116.050126,36.894497],[116.061892,36.888576],[116.075948,36.889496],[116.082424,36.883855],[116.098217,36.883895],[116.097349,36.891336],[116.114958,36.897697],[116.123724,36.890656],[116.146388,36.910776],[116.164392,36.916975],[116.173237,36.929692],[116.172842,36.947723],[116.18366,36.959595],[116.191478,36.963312],[116.211536,36.963112],[116.210588,36.970146],[116.219196,36.979617],[116.212089,36.982454],[116.211694,36.990085],[116.229225,36.996438],[116.235779,37.010139],[116.222276,37.010339],[116.225592,37.025396],[116.232857,37.032225],[116.250388,37.025476],[116.247624,37.019685],[116.254731,37.008262],[116.26784,37.010499],[116.290741,36.995759],[116.30535,36.994999],[116.304955,36.990245],[116.317037,36.981854],[116.324065,36.972024],[116.340175,36.971944],[116.341359,36.980256],[116.366471,36.971864],[116.370261,36.963272],[116.379343,36.966309],[116.405876,36.969107],[116.421117,36.975661],[116.434383,36.968228],[116.442675,36.954319],[116.458074,36.955358],[116.471103,36.947043],[116.470551,36.940007],[116.461548,36.940687],[116.443149,36.932211],[116.444728,36.923694],[116.439911,36.916495],[116.449308,36.915496],[116.452467,36.906417],[116.447966,36.899977],[116.433988,36.908417],[116.421591,36.905257],[116.417958,36.894297],[116.422143,36.890536],[116.415905,36.881374],[116.419537,36.877213],[116.434146,36.876453],[116.429645,36.865208],[116.412746,36.861086],[116.415352,36.855923],[116.407218,36.846717],[116.409587,36.83759],[116.399874,36.823857],[116.408008,36.815729],[116.409193,36.807038],[116.397663,36.809441],[116.391978,36.802913],[116.376026,36.797025],[116.396242,36.792459],[116.405639,36.761208],[116.398295,36.74149],[116.394505,36.74169],[116.386055,36.725294],[116.3964,36.718318],[116.407139,36.704804],[116.40706,36.689042],[116.411246,36.676647],[116.41322,36.643181],[116.406034,36.631983],[116.411325,36.615242],[116.408166,36.581349],[116.400427,36.566365],[116.399243,36.533736],[116.400901,36.524813],[116.413062,36.518743],[116.430277,36.503707],[116.443149,36.498238],[116.446071,36.488909],[116.459258,36.480061],[116.455705,36.46192],[116.461548,36.449971],[116.481685,36.448361],[116.489345,36.454477],[116.507271,36.447999],[116.512798,36.441239],[116.511851,36.430012],[116.527092,36.424337],[116.539647,36.427597],[116.535857,36.41842],[116.549518,36.417333],[116.546202,36.40892],[116.591213,36.416286],[116.612377,36.42333],[116.6198,36.428522],[116.620905,36.44144],[116.611429,36.459104],[116.613009,36.473425],[116.595636,36.480383],[116.593267,36.485973],[116.602032,36.495223],[116.624301,36.497233],[116.627223,36.508853],[116.610087,36.51609],[116.60835,36.52011],[116.622801,36.532651],[116.629592,36.544587],[116.646728,36.544105],[116.658968,36.553026],[116.662916,36.563111],[116.661258,36.578376],[116.682421,36.580586],[116.694345,36.591149],[116.693319,36.607895],[116.71314,36.608858],[116.742042,36.620381],[116.759494,36.632746],[116.763126,36.651971],[116.777262,36.660718],[116.780736,36.671552],[116.780657,36.691048],[116.799689,36.694417],[116.802768,36.706729],[116.830881,36.723851],[116.842489,36.72786],[116.861757,36.730345],[116.873997,36.739846],[116.88679,36.745538],[116.883868,36.758243],[116.87076,36.759164],[116.865548,36.777877],[116.868233,36.801872],[116.872813,36.812004],[116.887975,36.811404],[116.882447,36.824058],[116.887106,36.833427],[116.892476,36.830023],[116.919404,36.822776],[116.933223,36.823697],[116.935908,36.829743],[116.934724,36.845116],[116.9442,36.844916],[116.948069,36.839231],[116.962836,36.842674],[116.96181,36.867529],[116.963152,36.893896],[116.957466,36.916495],[116.934408,36.925973],[116.922563,36.93453],[116.935434,36.93457],[116.931881,36.946204],[116.933381,36.959595],[116.907717,36.963272],[116.897767,36.962712],[116.899188,36.977499],[116.886158,36.983573],[116.885764,36.991444],[116.875024,36.999274],[116.891607,37.00271],[116.907796,37.019046],[116.943173,37.030907],[116.948701,37.036537],[116.944279,37.042327],[116.928643,37.05103],[116.925247,37.069831],[116.91972,37.081364],[116.919009,37.093056],[116.931486,37.100477],[116.982578,37.113601],[117.004531,37.121219],[117.024273,37.119664],[117.044884,37.122615],[117.047411,37.134739],[117.059809,37.137251],[117.054676,37.141717],[117.050648,37.160894],[117.061783,37.16496],[117.06352,37.182656],[117.05744,37.192141],[117.045358,37.197161],[117.037382,37.195169],[117.037777,37.207361],[117.022299,37.215089],[117.03596,37.224091],[117.036592,37.237393],[117.042673,37.238867],[117.041251,37.247667],[117.032328,37.253241],[117.030275,37.264229],[117.038961,37.266538],[117.024273,37.278918],[117.002241,37.285962],[116.993397,37.32201],[116.986684,37.335335],[116.987158,37.342692],[117.006663,37.355138],[117.009664,37.359671],[116.99924,37.376964],[117.008164,37.392464],[117.019693,37.405379],[117.012112,37.419643],[117.01843,37.435849],[117.03067,37.442958],[117.038408,37.435452],[117.089264,37.435055],[117.102293,37.445778],[117.104978,37.455309],[117.098819,37.469721],[117.109795,37.47901],[117.124878,37.483853],[117.135618,37.475239],[117.163809,37.478971],[117.176049,37.486116],[117.199345,37.487148],[117.22114,37.51318],[117.230063,37.528891],[117.238197,37.532897],[117.260861,37.530081],[117.273417,37.532619]]]]}},{"type":"Feature","properties":{"adcode":371500,"name":"聊城市","center":[115.980367,36.456013],"centroid":[115.887682,36.460117],"childrenNum":8,"level":"city","parent":{"adcode":370000},"subFeatureIndex":13,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.546202,36.40892],[116.549518,36.417333],[116.535857,36.41842],[116.539647,36.427597],[116.527092,36.424337],[116.511851,36.430012],[116.512798,36.441239],[116.507271,36.447999],[116.489345,36.454477],[116.481685,36.448361],[116.461548,36.449971],[116.455705,36.46192],[116.459258,36.480061],[116.446071,36.488909],[116.443149,36.498238],[116.430277,36.503707],[116.413062,36.518743],[116.400901,36.524813],[116.399243,36.533736],[116.400427,36.566365],[116.408166,36.581349],[116.411325,36.615242],[116.406034,36.631983],[116.41322,36.643181],[116.411246,36.676647],[116.40706,36.689042],[116.407139,36.704804],[116.3964,36.718318],[116.386055,36.725294],[116.394505,36.74169],[116.398295,36.74149],[116.405639,36.761208],[116.396242,36.792459],[116.376026,36.797025],[116.391978,36.802913],[116.397663,36.809441],[116.409193,36.807038],[116.408008,36.815729],[116.399874,36.823857],[116.409587,36.83759],[116.407218,36.846717],[116.415352,36.855923],[116.412746,36.861086],[116.429645,36.865208],[116.434146,36.876453],[116.419537,36.877213],[116.415905,36.881374],[116.422143,36.890536],[116.417958,36.894297],[116.421591,36.905257],[116.433988,36.908417],[116.447966,36.899977],[116.452467,36.906417],[116.449308,36.915496],[116.439911,36.916495],[116.444728,36.923694],[116.443149,36.932211],[116.461548,36.940687],[116.470551,36.940007],[116.471103,36.947043],[116.458074,36.955358],[116.442675,36.954319],[116.434383,36.968228],[116.421117,36.975661],[116.405876,36.969107],[116.379343,36.966309],[116.370261,36.963272],[116.366471,36.971864],[116.341359,36.980256],[116.340175,36.971944],[116.324065,36.972024],[116.317037,36.981854],[116.304955,36.990245],[116.30535,36.994999],[116.290741,36.995759],[116.26784,37.010499],[116.254731,37.008262],[116.247624,37.019685],[116.250388,37.025476],[116.232857,37.032225],[116.225592,37.025396],[116.222276,37.010339],[116.235779,37.010139],[116.229225,36.996438],[116.211694,36.990085],[116.212089,36.982454],[116.219196,36.979617],[116.210588,36.970146],[116.211536,36.963112],[116.191478,36.963312],[116.18366,36.959595],[116.172842,36.947723],[116.173237,36.929692],[116.164392,36.916975],[116.146388,36.910776],[116.123724,36.890656],[116.114958,36.897697],[116.097349,36.891336],[116.098217,36.883895],[116.082424,36.883855],[116.075948,36.889496],[116.061892,36.888576],[116.050126,36.894497],[116.005667,36.884375],[115.947704,36.888576],[115.920461,36.892976],[115.894796,36.905657],[115.885241,36.907017],[115.881687,36.917575],[115.875844,36.916255],[115.868421,36.901457],[115.853733,36.904777],[115.85855,36.908337],[115.85397,36.916215],[115.848995,36.912656],[115.832964,36.918575],[115.83178,36.910856],[115.823251,36.913496],[115.81875,36.908577],[115.813064,36.913416],[115.791348,36.914336],[115.779819,36.904977],[115.780293,36.912216],[115.768684,36.921014],[115.765131,36.909096],[115.757787,36.903017],[115.740572,36.906417],[115.735202,36.897017],[115.726121,36.893616],[115.711275,36.882374],[115.699982,36.866929],[115.700772,36.860726],[115.688532,36.840312],[115.692243,36.829343],[115.684189,36.812966],[115.671554,36.809281],[115.666184,36.812485],[115.650469,36.807519],[115.63744,36.797506],[115.584689,36.781042],[115.572133,36.775353],[115.560525,36.783806],[115.561315,36.775753],[115.552628,36.775874],[115.54947,36.782885],[115.53873,36.784127],[115.536835,36.772628],[115.52878,36.77395],[115.523568,36.763853],[115.506511,36.770465],[115.491428,36.761609],[115.478398,36.758804],[115.475477,36.744215],[115.460947,36.731869],[115.459762,36.717395],[115.450523,36.713626],[115.451391,36.702197],[115.446653,36.694617],[115.420594,36.686756],[115.412144,36.676486],[115.406459,36.663246],[115.386322,36.656305],[115.38798,36.646432],[115.378504,36.632866],[115.366027,36.621947],[115.35513,36.627407],[115.345022,36.612392],[115.350707,36.60665],[115.341468,36.603478],[115.340363,36.595245],[115.351576,36.595004],[115.35055,36.590065],[115.337836,36.58898],[115.334282,36.582473],[115.331281,36.550213],[115.307433,36.527426],[115.300484,36.525938],[115.295035,36.533254],[115.288323,36.528511],[115.295193,36.523205],[115.292587,36.514401],[115.296536,36.508853],[115.289744,36.497796],[115.272845,36.497394],[115.276083,36.486938],[115.283506,36.486416],[115.28469,36.476441],[115.293693,36.476079],[115.288876,36.470006],[115.291403,36.460592],[115.300247,36.465902],[115.317067,36.454035],[115.316909,36.432587],[115.312092,36.433593],[115.297404,36.413469],[115.313514,36.406625],[115.324885,36.405095],[115.339968,36.39809],[115.348575,36.384641],[115.349602,36.363094],[115.368712,36.342629],[115.370449,36.332757],[115.359789,36.318733],[115.366659,36.308938],[115.394614,36.322602],[115.414987,36.326551],[115.422963,36.322199],[115.41941,36.310914],[115.422963,36.30261],[115.41704,36.292773],[115.428491,36.286201],[115.436388,36.276362],[115.446101,36.273782],[115.462684,36.27612],[115.468922,36.265353],[115.465369,36.250389],[115.476503,36.246516],[115.47595,36.218878],[115.479109,36.209555],[115.47595,36.193046],[115.480689,36.171729],[115.48519,36.139702],[115.484242,36.125845],[115.473976,36.098123],[115.468843,36.092222],[115.466395,36.079691],[115.459762,36.080378],[115.455103,36.071282],[115.459604,36.063357],[115.441599,36.055755],[115.448865,36.047383],[115.447522,36.011826],[115.4431,36.008872],[115.419646,36.004745],[115.395956,35.991673],[115.386322,35.974471],[115.363105,35.972002],[115.356472,35.954633],[115.354182,35.937503],[115.364132,35.929484],[115.367449,35.92033],[115.36429,35.894035],[115.354893,35.869273],[115.3436,35.87215],[115.338152,35.864692],[115.349602,35.860963],[115.344074,35.838744],[115.335704,35.814329],[115.334993,35.796723],[115.3635,35.779925],[115.370923,35.788852],[115.407564,35.80865],[115.417909,35.824996],[115.432834,35.833878],[115.433861,35.839069],[115.460078,35.867732],[115.488033,35.880784],[115.495377,35.896021],[115.490717,35.908379],[115.505406,35.914415],[115.510775,35.908014],[115.504932,35.8991],[115.513302,35.890348],[115.548206,35.898006],[115.583742,35.921707],[115.607353,35.925839],[115.642415,35.920046],[115.651812,35.928917],[115.675423,35.938435],[115.68411,35.944388],[115.686953,35.9552],[115.698719,35.96605],[115.717908,35.971394],[115.73307,35.96682],[115.764341,35.970989],[115.774686,35.974511],[115.774528,35.981878],[115.786689,35.991228],[115.779819,35.993778],[115.797508,36.00697],[115.81725,36.012756],[115.837465,36.011016],[115.846231,36.004987],[115.859655,36.003693],[115.869447,36.015346],[115.895981,36.026188],[115.919276,36.019675],[115.935859,36.031447],[115.964051,36.0416],[115.989794,36.045442],[116.016406,36.061375],[116.028804,36.072292],[116.057391,36.104913],[116.099323,36.112066],[116.114011,36.122047],[116.123882,36.136429],[116.164313,36.146084],[116.164392,36.168862],[116.169446,36.171325],[116.213036,36.169831],[116.226066,36.173748],[116.234911,36.180935],[116.255047,36.203703],[116.280159,36.221945],[116.28624,36.239174],[116.307166,36.259464],[116.310799,36.270515],[116.322644,36.284669],[116.331251,36.290677],[116.374526,36.3039],[116.406745,36.319015],[116.430593,36.318007],[116.441411,36.321755],[116.449071,36.337149],[116.484607,36.336948],[116.503717,36.369982],[116.519984,36.384158],[116.528592,36.387259],[116.546202,36.40892]]],[[[115.495377,35.896021],[115.488033,35.880784],[115.503431,35.888686],[115.513302,35.890348],[115.504932,35.8991],[115.495377,35.896021]]]]}},{"type":"Feature","properties":{"adcode":371600,"name":"滨州市","center":[118.016974,37.383542],"centroid":[117.847293,37.542609],"childrenNum":7,"level":"city","parent":{"adcode":370000},"subFeatureIndex":14,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.273417,37.532619],[117.275549,37.526193],[117.284393,37.522266],[117.286525,37.510046],[117.307215,37.507744],[117.317718,37.499371],[117.312585,37.487068],[117.285894,37.479328],[117.283998,37.471587],[117.304609,37.466069],[117.307768,37.46194],[117.295449,37.4538],[117.309189,37.447486],[117.353332,37.450901],[117.369758,37.436048],[117.368257,37.419563],[117.360202,37.405697],[117.368652,37.396399],[117.401029,37.379071],[117.415401,37.364203],[117.407741,37.353667],[117.413901,37.349333],[117.409005,37.321692],[117.417612,37.296587],[117.430168,37.285166],[117.432379,37.272032],[117.43688,37.27235],[117.438302,37.25786],[117.443908,37.250056],[117.431037,37.254396],[117.424403,37.243367],[117.429141,37.239783],[117.408768,37.239703],[117.402371,37.224808],[117.404977,37.21716],[117.417928,37.20003],[117.436091,37.184251],[117.442724,37.170859],[117.444066,37.156868],[117.4507,37.153957],[117.4507,37.143711],[117.455596,37.11767],[117.459781,37.109931],[117.442092,37.093574],[117.409241,37.089425],[117.391158,37.083479],[117.365256,37.069272],[117.336433,37.073941],[117.339434,37.056419],[117.33667,37.046838],[117.326088,37.036178],[117.315349,37.030547],[117.317323,37.020923],[117.328457,37.011218],[117.35349,37.003349],[117.365335,36.99496],[117.378286,36.956997],[117.391632,36.952],[117.40403,36.955038],[117.406162,36.950001],[117.414927,36.957236],[117.416901,36.95264],[117.444461,36.958116],[117.458754,36.957676],[117.477628,36.961154],[117.476522,36.968348],[117.494527,36.972344],[117.509847,36.969267],[117.519875,36.957117],[117.536854,36.978498],[117.549094,36.979817],[117.555253,36.970785],[117.54933,36.96507],[117.56544,36.959954],[117.56465,36.945084],[117.553674,36.940727],[117.551305,36.93385],[117.539538,36.941486],[117.534248,36.931611],[117.56923,36.915736],[117.58376,36.894176],[117.585024,36.886815],[117.579891,36.878093],[117.577364,36.862847],[117.580523,36.85136],[117.608556,36.821815],[117.648119,36.805436],[117.677811,36.783245],[117.687603,36.763853],[117.695974,36.754115],[117.724165,36.755998],[117.747303,36.748584],[117.736642,36.729423],[117.739959,36.721004],[117.71848,36.704724],[117.718006,36.697826],[117.725666,36.695219],[117.754173,36.696944],[117.777942,36.695219],[117.78197,36.70304],[117.793025,36.707451],[117.795157,36.719761],[117.810161,36.734394],[117.820743,36.756359],[117.826429,36.763011],[117.834404,36.751871],[117.832983,36.744816],[117.852488,36.750708],[117.850672,36.764735],[117.840327,36.777516],[117.825639,36.775834],[117.824297,36.787933],[117.815531,36.788573],[117.814662,36.797306],[117.820901,36.801511],[117.822085,36.825139],[117.831877,36.836629],[117.828008,36.855883],[117.832825,36.859966],[117.856594,36.859926],[117.865597,36.866529],[117.875152,36.861246],[117.891103,36.864408],[117.891814,36.871811],[117.917005,36.86973],[117.9189,36.880094],[117.929719,36.890216],[117.940616,36.891616],[117.9403,36.901177],[117.950645,36.902137],[117.960674,36.910376],[117.96178,36.922494],[117.949145,36.918375],[117.94338,36.930012],[117.935404,36.915736],[117.936115,36.93489],[117.931772,36.941886],[117.913372,36.953679],[117.910292,36.962592],[117.911951,36.975141],[117.906581,36.981695],[117.870493,36.985451],[117.866623,36.993282],[117.866386,37.007024],[117.870493,37.013375],[117.865992,37.023719],[117.841827,37.026354],[117.840327,37.035539],[117.847355,37.065959],[117.800369,37.070789],[117.771783,37.069032],[117.761991,37.065839],[117.739801,37.064921],[117.726692,37.068753],[117.703002,37.068673],[117.673942,37.073143],[117.644645,37.083878],[117.619375,37.090103],[117.608477,37.090622],[117.590946,37.084996],[117.575074,37.089185],[117.567888,37.11029],[117.576969,37.114758],[117.574442,37.12106],[117.557464,37.124211],[117.551305,37.146781],[117.574284,37.151366],[117.586366,37.160216],[117.592052,37.169624],[117.598212,37.203058],[117.615348,37.212699],[117.627193,37.228074],[117.63043,37.247269],[117.644329,37.265862],[117.659491,37.274101],[117.675995,37.270121],[117.693447,37.257661],[117.729851,37.249101],[117.760333,37.244959],[117.773678,37.244959],[117.782128,37.248702],[117.818848,37.276012],[117.83859,37.282659],[117.850909,37.28246],[117.8776,37.273027],[117.888497,37.262319],[117.909266,37.265065],[117.941327,37.280549],[117.948829,37.26829],[117.947013,37.262159],[117.963833,37.271753],[117.990603,37.262358],[117.990761,37.248981],[117.996446,37.246273],[117.981048,37.238429],[117.973862,37.216483],[117.98089,37.218674],[117.984364,37.210349],[117.994393,37.212699],[118.010898,37.20756],[118.019584,37.210309],[118.022348,37.2221],[118.036799,37.220905],[118.046275,37.216324],[118.048012,37.205568],[118.064122,37.21007],[118.074072,37.204094],[118.077941,37.188953],[118.082995,37.185605],[118.071545,37.177675],[118.074467,37.170341],[118.062385,37.162528],[118.059858,37.151087],[118.065069,37.139564],[118.079679,37.120781],[118.068623,37.115875],[118.057252,37.106141],[118.045485,37.105982],[118.045959,37.098202],[118.056857,37.093654],[118.063016,37.082841],[118.086075,37.091899],[118.111187,37.094652],[118.115925,37.100636],[118.130455,37.091101],[118.136062,37.077773],[118.13622,37.06536],[118.156909,37.065281],[118.15762,37.057776],[118.150829,37.054743],[118.15146,37.047038],[118.139615,37.044363],[118.139299,37.033103],[118.134008,37.025955],[118.139299,37.014693],[118.138983,37.005985],[118.153198,37.000512],[118.15146,36.988527],[118.161331,36.988567],[118.160936,36.981934],[118.192918,36.977739],[118.195209,36.967348],[118.209739,36.963152],[118.222531,36.967109],[118.231376,36.974822],[118.235087,36.98557],[118.247327,36.98613],[118.250802,37.002949],[118.262568,37.00271],[118.271412,37.006744],[118.288785,36.999993],[118.28997,37.00946],[118.308212,37.019885],[118.310186,37.028231],[118.3259,37.035459],[118.324558,37.046279],[118.337588,37.053904],[118.338535,37.072265],[118.332928,37.081923],[118.338851,37.093894],[118.338298,37.10311],[118.349354,37.101753],[118.338219,37.123134],[118.346116,37.123931],[118.340667,37.131748],[118.347616,37.139803],[118.356224,37.139325],[118.361594,37.148495],[118.366569,37.146781],[118.377545,37.154157],[118.380467,37.175164],[118.387574,37.177834],[118.383389,37.190587],[118.376598,37.196962],[118.375966,37.206126],[118.3642,37.210189],[118.346669,37.233252],[118.350459,37.243765],[118.36033,37.244561],[118.368385,37.258576],[118.375729,37.258497],[118.372096,37.273703],[118.36262,37.273783],[118.368069,37.279594],[118.358277,37.280669],[118.355197,37.286997],[118.342168,37.287076],[118.342168,37.295075],[118.325584,37.296866],[118.326058,37.306535],[118.319741,37.305978],[118.31524,37.31477],[118.315398,37.352514],[118.287285,37.352434],[118.291865,37.358518],[118.286495,37.362772],[118.273624,37.360029],[118.262015,37.364283],[118.258541,37.37911],[118.245827,37.376646],[118.245353,37.367781],[118.222768,37.367861],[118.217951,37.371478],[118.216925,37.385191],[118.202,37.382409],[118.161015,37.362573],[118.156198,37.364322],[118.154935,37.377401],[118.141668,37.376487],[118.135509,37.384834],[118.144037,37.392822],[118.16141,37.389961],[118.160147,37.399618],[118.165596,37.4082],[118.163937,37.416742],[118.14996,37.438351],[118.136141,37.441688],[118.114898,37.439742],[118.118531,37.456182],[118.125322,37.45912],[118.112766,37.463528],[118.120426,37.480757],[118.128481,37.483694],[118.127849,37.491831],[118.135035,37.496752],[118.134245,37.507387],[118.139378,37.507427],[118.136772,37.516791],[118.142537,37.518933],[118.150987,37.530517],[118.156988,37.530358],[118.159831,37.539164],[118.173255,37.546858],[118.176098,37.557129],[118.173176,37.563593],[118.141431,37.556297],[118.134166,37.558478],[118.13922,37.571364],[118.131324,37.571285],[118.127612,37.578103],[118.134877,37.590035],[118.148696,37.594078],[118.146722,37.599943],[118.154935,37.605491],[118.157462,37.62035],[118.154935,37.628036],[118.163542,37.63069],[118.165596,37.644633],[118.172545,37.644079],[118.177125,37.657623],[118.195445,37.661742],[118.200657,37.667404],[118.207449,37.661583],[118.22569,37.663682],[118.239431,37.65596],[118.246459,37.658376],[118.260989,37.654614],[118.2846,37.662058],[118.293129,37.670096],[118.294076,37.678529],[118.305132,37.683122],[118.3045,37.690722],[118.316187,37.714151],[118.319425,37.712924],[118.31753,37.728395],[118.337509,37.729502],[118.341931,37.74667],[118.353697,37.750151],[118.353065,37.75814],[118.340667,37.763913],[118.340588,37.774391],[118.348406,37.790719],[118.36191,37.792063],[118.352355,37.814274],[118.356382,37.820834],[118.344932,37.824627],[118.346116,37.832371],[118.334271,37.832134],[118.340193,37.838059],[118.328111,37.865272],[118.313265,37.861521],[118.301657,37.870208],[118.286337,37.8569],[118.269754,37.853109],[118.258304,37.844182],[118.258146,37.854886],[118.247643,37.871788],[118.248749,37.858164],[118.239115,37.868708],[118.236588,37.884501],[118.243142,37.895673],[118.235403,37.905343],[118.232718,37.922509],[118.225611,37.923417],[118.226954,37.939672],[118.224742,37.950559],[118.215503,37.949376],[118.213529,37.95541],[118.223479,37.959788],[118.220873,37.98258],[118.22956,37.986444],[118.2234,38.00095],[118.227585,38.037874],[118.230665,38.056743],[118.226638,38.079583],[118.235324,38.082969],[118.245511,38.103322],[118.241247,38.112138],[118.227664,38.119262],[118.236272,38.125754],[118.245432,38.144286],[118.216846,38.146921],[118.177915,38.186406],[118.112134,38.210227],[118.04517,38.214001],[118.033009,38.205904],[118.018794,38.202641],[117.997631,38.211918],[117.935404,38.255098],[117.89671,38.279605],[117.893393,38.287968],[117.895683,38.301629],[117.860859,38.274578],[117.847513,38.25392],[117.823586,38.235652],[117.808582,38.228383],[117.805897,38.217734],[117.797842,38.207712],[117.796105,38.1936],[117.789235,38.180744],[117.801317,38.175239],[117.79421,38.167846],[117.771704,38.166076],[117.766966,38.158682],[117.772099,38.138817],[117.768782,38.131893],[117.743197,38.123393],[117.730641,38.108321],[117.729219,38.093796],[117.704502,38.07604],[117.679469,38.079544],[117.666045,38.072535],[117.644961,38.072377],[117.616769,38.06903],[117.605082,38.073008],[117.58376,38.070645],[117.57618,38.065132],[117.564887,38.063674],[117.556517,38.057215],[117.560386,38.040987],[117.545935,38.026842],[117.541039,38.011237],[117.54933,38.010252],[117.563545,37.998585],[117.570652,37.957264],[117.567809,37.946772],[117.529036,37.932295],[117.539302,37.913552],[117.542776,37.890146],[117.547198,37.883198],[117.568835,37.882409],[117.580602,37.875302],[117.581076,37.858993],[117.595685,37.853504],[117.606582,37.845209],[117.605003,37.838968],[117.59529,37.834741],[117.588025,37.82273],[117.56623,37.812733],[117.568599,37.804987],[117.559912,37.800008],[117.546567,37.776368],[117.547356,37.767512],[117.526509,37.762964],[117.522165,37.755371],[117.531563,37.748213],[117.544119,37.747699],[117.547198,37.737494],[117.542618,37.726258],[117.556201,37.716683],[117.539775,37.713993],[117.543092,37.703625],[117.531247,37.688901],[117.506451,37.686803],[117.50345,37.680548],[117.488604,37.677025],[117.477075,37.654416],[117.465625,37.655564],[117.451963,37.669978],[117.444224,37.671918],[117.428825,37.665741],[117.415401,37.669582],[117.407188,37.678846],[117.392974,37.660039],[117.373074,37.648594],[117.363835,37.649624],[117.357596,37.658495],[117.358149,37.672947],[117.363598,37.679559],[117.36573,37.698361],[117.352543,37.707345],[117.344567,37.693136],[117.347489,37.683319],[117.329405,37.673343],[117.318428,37.662019],[117.312506,37.64194],[117.304925,37.640514],[117.312585,37.633701],[117.317797,37.615081],[117.314875,37.600458],[117.308321,37.589956],[117.288973,37.577112],[117.280682,37.56621],[117.277681,37.545391],[117.273417,37.532619]]],[[[118.40779,38.026212],[118.419951,38.025503],[118.419319,38.053119],[118.410001,38.053277],[118.40779,38.026212]]]]}},{"type":"Feature","properties":{"adcode":371700,"name":"菏泽市","center":[115.469381,35.246531],"centroid":[115.698213,35.152257],"childrenNum":9,"level":"city","parent":{"adcode":370000},"subFeatureIndex":15,"acroutes":[100000,370000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.876002,35.867124],[115.871422,35.858327],[115.872606,35.872799],[115.865499,35.868624],[115.859971,35.857882],[115.840861,35.857192],[115.841335,35.850016],[115.821356,35.852652],[115.816776,35.844259],[115.773343,35.854192],[115.763709,35.838379],[115.752891,35.838379],[115.753128,35.832945],[115.734886,35.832945],[115.727937,35.815627],[115.720277,35.817087],[115.717434,35.802727],[115.706379,35.805608],[115.704404,35.788933],[115.696271,35.788892],[115.698245,35.768399],[115.693586,35.754071],[115.665079,35.751067],[115.643046,35.743841],[115.619514,35.739212],[115.588875,35.738522],[115.583031,35.730564],[115.562499,35.738644],[115.552786,35.73032],[115.533202,35.734137],[115.524121,35.726341],[115.511486,35.727153],[115.485979,35.710137],[115.461499,35.680847],[115.452418,35.660732],[115.439388,35.643458],[115.416251,35.623985],[115.411908,35.603571],[115.394456,35.586894],[115.389718,35.577334],[115.383716,35.57766],[115.383242,35.568912],[115.370765,35.571028],[115.369502,35.559757],[115.359236,35.565454],[115.357973,35.554711],[115.345101,35.553612],[115.345969,35.546979],[115.360499,35.543275],[115.35355,35.540548],[115.350313,35.529476],[115.357973,35.506555],[115.355761,35.490143],[115.339099,35.490673],[115.307117,35.480001],[115.286665,35.464481],[115.270792,35.456821],[115.272608,35.448305],[115.257446,35.43559],[115.23731,35.423118],[115.209829,35.423118],[115.197905,35.420673],[115.189534,35.425116],[115.16766,35.426094],[115.136863,35.421529],[115.126439,35.418023],[115.126597,35.408728],[115.117831,35.400125],[115.117989,35.41839],[115.114831,35.404121],[115.105907,35.403958],[115.091614,35.416066],[115.084823,35.410074],[115.088613,35.39299],[115.075426,35.375168],[115.057737,35.378472],[115.043286,35.376963],[115.035152,35.368316],[115.02536,35.346328],[115.0177,35.340575],[115.014541,35.318089],[115.004749,35.317273],[114.987613,35.30221],[114.963607,35.273752],[114.975768,35.270281],[114.975531,35.261541],[114.957684,35.261132],[114.954605,35.255455],[114.92973,35.248225],[114.932494,35.198659],[114.928308,35.194776],[114.909356,35.19449],[114.876584,35.189012],[114.86166,35.182389],[114.850288,35.172617],[114.841049,35.159246],[114.841681,35.151189],[114.860633,35.137405],[114.872557,35.125992],[114.883613,35.109667],[114.882902,35.098781],[114.876269,35.091128],[114.861186,35.082983],[114.83181,35.074182],[114.819254,35.051786],[114.834021,35.042162],[114.85092,35.041917],[114.855263,35.036183],[114.846972,35.023444],[114.827072,35.01013],[114.859291,35.002674],[114.869951,35.024468],[114.884402,35.021929],[114.880296,35.003493],[114.889693,34.993987],[114.907935,34.989356],[114.913936,34.977881],[114.923807,34.968741],[114.934784,34.980709],[114.946787,34.988701],[114.970319,34.990504],[115.008066,34.988496],[115.016042,34.977348],[115.028835,34.971815],[115.0376,34.981611],[115.051656,34.985996],[115.074952,35.000379],[115.106144,35.000789],[115.128097,35.004354],[115.132993,34.999683],[115.131177,34.983578],[115.146576,34.980135],[115.157236,34.966978],[115.15692,34.958001],[115.175004,34.962469],[115.201616,34.95099],[115.208249,34.958329],[115.219147,34.960624],[115.222148,34.945578],[115.211724,34.943364],[115.202722,34.925608],[115.204933,34.914247],[115.239363,34.911868],[115.252156,34.906576],[115.249234,34.894515],[115.240784,34.883847],[115.239363,34.874655],[115.243469,34.850152],[115.256104,34.845308],[115.274661,34.85475],[115.289586,34.851589],[115.302379,34.858813],[115.317146,34.859183],[115.329623,34.851466],[115.345969,34.846212],[115.356946,34.837303],[115.379215,34.828763],[115.393982,34.831801],[115.408512,34.82593],[115.416172,34.813323],[115.413882,34.80782],[115.426754,34.805396],[115.43465,34.790322],[115.436546,34.776805],[115.449259,34.7443],[115.437256,34.734312],[115.433861,34.725103],[115.444916,34.710302],[115.447048,34.698623],[115.444758,34.674479],[115.458183,34.656171],[115.46142,34.637283],[115.47903,34.625882],[115.491586,34.607028],[115.515592,34.582611],[115.535176,34.573303],[115.55476,34.56906],[115.561157,34.572232],[115.576792,34.570667],[115.593771,34.573179],[115.610354,34.572067],[115.621883,34.574744],[115.639493,34.571532],[115.643599,34.567701],[115.669422,34.55695],[115.684426,34.555591],[115.697297,34.569019],[115.699114,34.598876],[115.711433,34.59867],[115.718224,34.591094],[115.762051,34.587717],[115.795928,34.578492],[115.802404,34.572479],[115.827436,34.558268],[115.838808,34.560575],[115.838097,34.567784],[115.849705,34.565601],[115.858313,34.569967],[115.946204,34.581622],[115.969973,34.582611],[115.98403,34.589282],[115.98474,34.607234],[115.991374,34.615344],[116.001561,34.619049],[116.010168,34.615838],[116.023908,34.601964],[116.03757,34.593029],[116.055101,34.595417],[116.082661,34.608305],[116.101297,34.605793],[116.11788,34.589776],[116.124829,34.572314],[116.134542,34.55971],[116.146861,34.553201],[116.156653,34.553737],[116.190136,34.570502],[116.199059,34.577463],[116.216906,34.575115],[116.23341,34.555137],[116.247703,34.551759],[116.252915,34.565724],[116.259154,34.567619],[116.266024,34.583764],[116.274868,34.584629],[116.278659,34.602129],[116.286082,34.608799],[116.301086,34.607769],[116.310878,34.601429],[116.324934,34.6011],[116.334015,34.620902],[116.350914,34.621148],[116.372157,34.633455],[116.37421,34.639958],[116.364418,34.651851],[116.378237,34.66802],[116.378079,34.684146],[116.385186,34.686696],[116.385502,34.694716],[116.392688,34.703887],[116.39182,34.710343],[116.377053,34.718155],[116.363786,34.715195],[116.368445,34.725309],[116.365681,34.742779],[116.371525,34.750136],[116.403191,34.756301],[116.40635,34.82014],[116.409745,34.852944],[116.373815,34.86538],[116.363865,34.861112],[116.3352,34.862343],[116.335042,34.868048],[116.325803,34.874943],[116.299032,34.877733],[116.286713,34.88159],[116.266261,34.89751],[116.226935,34.911786],[116.213826,34.913098],[116.201586,34.919702],[116.192505,34.939182],[116.162181,34.94361],[116.155153,34.947259],[116.162023,34.957632],[116.171499,34.964683],[116.170789,34.974684],[116.139754,34.995421],[116.115748,35.025574],[116.114564,35.039828],[116.119381,35.053383],[116.141413,35.055062],[116.140228,35.06018],[116.15389,35.088467],[116.141018,35.09076],[116.154284,35.113513],[116.181765,35.11204],[116.204903,35.145668],[116.214537,35.155606],[116.223618,35.173231],[116.221881,35.181817],[116.213115,35.196697],[116.228356,35.194367],[116.234516,35.200008],[116.234437,35.208264],[116.248256,35.195634],[116.269104,35.191178],[116.284265,35.22506],[116.285608,35.242669],[116.269656,35.269872],[116.265866,35.271547],[116.237201,35.261745],[116.223539,35.260438],[116.215642,35.29131],[116.199612,35.304986],[116.193452,35.337555],[116.201744,35.345185],[116.215169,35.350734],[116.22117,35.358608],[116.223855,35.371702],[116.215879,35.393438],[116.212642,35.409054],[116.215958,35.419857],[116.215484,35.435957],[116.204429,35.436079],[116.20206,35.458247],[116.206798,35.465703],[116.19669,35.46334],[116.188319,35.467781],[116.188319,35.477313],[116.177817,35.466151],[116.178685,35.450342],[116.167946,35.452217],[116.15689,35.446838],[116.160918,35.471569],[116.15002,35.469573],[116.129567,35.475235],[116.128778,35.489614],[116.121276,35.497881],[116.12554,35.516042],[116.123408,35.540589],[116.115274,35.566471],[116.114327,35.577456],[116.125145,35.587871],[116.125145,35.59385],[116.116222,35.606621],[116.115906,35.618414],[116.134384,35.638539],[116.127514,35.649433],[116.121829,35.67459],[116.103034,35.687348],[116.089847,35.699373],[116.079897,35.712452],[116.071052,35.719072],[116.041518,35.733893],[116.026909,35.749687],[116.017591,35.756263],[115.970289,35.782156],[115.945493,35.791976],[115.922119,35.799157],[115.925988,35.804756],[115.911932,35.811733],[115.898192,35.805202],[115.883583,35.808163],[115.877107,35.820657],[115.875212,35.835095],[115.876002,35.867124]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/410000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/410000.json new file mode 100644 index 0000000..e31cd94 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/410000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":410100,"name":"郑州市","center":[113.665412,34.757975],"centroid":[113.477391,34.626256],"childrenNum":12,"level":"city","parent":{"adcode":410000},"subFeatureIndex":0,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.22071,34.919066],[114.208505,34.926602],[114.200704,34.939504],[114.172834,34.931871],[114.160566,34.933496],[114.120491,34.956638],[114.101869,34.954768],[114.080542,34.944527],[114.051225,34.944527],[114.028451,34.959346],[114.018385,34.958608],[113.985293,34.928276],[113.973654,34.910447],[113.953585,34.898082],[113.905331,34.901333],[113.870163,34.885666],[113.826062,34.877683],[113.800456,34.87995],[113.78649,34.890445],[113.777116,34.905028],[113.766106,34.91488],[113.749057,34.919017],[113.725528,34.917392],[113.716846,34.913402],[113.684824,34.906358],[113.670731,34.910299],[113.665069,34.918525],[113.650348,34.928769],[113.631348,34.929311],[113.592091,34.933743],[113.57479,34.950583],[113.552582,34.965155],[113.543271,34.96801],[113.515086,34.965992],[113.495835,34.959937],[113.477339,34.957278],[113.449658,34.960232],[113.429463,34.964761],[113.427198,34.983563],[113.407821,34.989518],[113.37561,34.98002],[113.362587,34.970323],[113.343462,34.950533],[113.333018,34.944871],[113.315277,34.942212],[113.28986,34.952601],[113.260543,34.953586],[113.243934,34.946201],[113.239342,34.939504],[113.236951,34.925174],[113.227703,34.908427],[113.197631,34.900299],[113.179512,34.893697],[113.139815,34.884631],[113.14793,34.856096],[113.119431,34.853977],[113.107666,34.844709],[113.06023,34.83756],[113.039595,34.841948],[113.025063,34.854913],[113.004364,34.864081],[112.992851,34.863539],[112.989077,34.856343],[112.976117,34.847765],[112.943025,34.831102],[112.938181,34.831595],[112.914148,34.84747],[112.902321,34.852301],[112.884516,34.853089],[112.879106,34.849688],[112.873192,34.832827],[112.866461,34.829524],[112.853501,34.810736],[112.838653,34.812116],[112.827266,34.819218],[112.814118,34.811475],[112.80984,34.7951],[112.810595,34.784938],[112.817263,34.778278],[112.837144,34.782915],[112.846329,34.780054],[112.875017,34.779659],[112.887914,34.782718],[112.89993,34.780596],[112.909367,34.771123],[112.908486,34.757405],[112.902258,34.753161],[112.909933,34.737465],[112.939502,34.72384],[112.931764,34.711694],[112.91635,34.710953],[112.901692,34.693521],[112.893827,34.694953],[112.879735,34.705077],[112.867782,34.708089],[112.8496,34.699694],[112.830223,34.694163],[112.829217,34.683346],[112.835885,34.667785],[112.831041,34.656669],[112.847147,34.640362],[112.841799,34.628648],[112.825001,34.628698],[112.82475,34.625188],[112.840226,34.623161],[112.845574,34.609913],[112.839408,34.596514],[112.846329,34.58885],[112.862183,34.590284],[112.864133,34.580146],[112.877722,34.567731],[112.87898,34.560015],[112.890682,34.547102],[112.910751,34.545173],[112.929562,34.547548],[112.952273,34.547647],[112.967749,34.541264],[112.984736,34.539038],[112.976683,34.53117],[112.947995,34.531467],[112.929813,34.526023],[112.925598,34.509789],[112.927297,34.499691],[112.920125,34.482016],[112.922956,34.47657],[112.905215,34.468201],[112.896155,34.475827],[112.862371,34.473648],[112.856017,34.478402],[112.838024,34.477164],[112.806002,34.479243],[112.798012,34.487166],[112.774609,34.500137],[112.767374,34.49479],[112.740384,34.491077],[112.744285,34.4683],[112.741894,34.433973],[112.736673,34.422578],[112.729626,34.416978],[112.735918,34.404242],[112.733653,34.39309],[112.72409,34.388877],[112.721825,34.380152],[112.730318,34.377426],[112.728117,34.361163],[112.732898,34.350898],[112.756805,34.357394],[112.760076,34.346584],[112.776622,34.345046],[112.787002,34.343261],[112.788953,34.331158],[112.81223,34.340037],[112.824184,34.33344],[112.83318,34.333638],[112.854633,34.316325],[112.842114,34.311612],[112.84117,34.297818],[112.856458,34.302185],[112.87357,34.298016],[112.884516,34.30144],[112.91245,34.293749],[112.936293,34.295535],[112.954097,34.302135],[112.960829,34.297867],[112.992977,34.296478],[113.013235,34.300398],[113.020847,34.290424],[113.027642,34.289282],[113.037142,34.280299],[113.059476,34.280944],[113.075518,34.276527],[113.082439,34.26645],[113.097726,34.26223],[113.109365,34.263471],[113.142583,34.272804],[113.15202,34.266351],[113.175297,34.281639],[113.184356,34.290225],[113.18379,34.295634],[113.196436,34.312257],[113.210276,34.312009],[113.223362,34.325057],[113.224557,34.33473],[113.235567,34.339045],[113.267904,34.337805],[113.276334,34.342814],[113.276586,34.351444],[113.314648,34.352287],[113.314019,34.373856],[113.320436,34.383375],[113.315969,34.391157],[113.32528,34.404986],[113.348809,34.404738],[113.353968,34.396411],[113.370388,34.389918],[113.366991,34.379805],[113.389828,34.375988],[113.401655,34.377525],[113.414867,34.374947],[113.406751,34.355213],[113.414175,34.349361],[113.429085,34.350303],[113.459409,34.334432],[113.471425,34.330811],[113.482875,34.342864],[113.498729,34.338598],[113.510871,34.342715],[113.518169,34.335771],[113.516848,34.328579],[113.529619,34.317913],[113.556608,34.311513],[113.566737,34.318359],[113.579697,34.319897],[113.600836,34.313299],[113.608951,34.3132],[113.624805,34.303375],[113.634494,34.290026],[113.643994,34.288488],[113.658589,34.275037],[113.669851,34.275385],[113.679728,34.282532],[113.70332,34.276725],[113.7003,34.289381],[113.71326,34.29092],[113.713386,34.301391],[113.727227,34.305757],[113.736852,34.317863],[113.756732,34.313795],[113.777242,34.314589],[113.793159,34.328083],[113.791208,34.331803],[113.803791,34.33721],[113.832353,34.32342],[113.848584,34.322725],[113.85022,34.32719],[113.880481,34.32972],[113.885451,34.327785],[113.888093,34.348369],[113.879978,34.356056],[113.885199,34.370485],[113.878531,34.394577],[113.878153,34.411478],[113.891616,34.437342],[113.903507,34.454185],[113.912126,34.452352],[113.915586,34.444922],[113.929993,34.443485],[113.938108,34.454729],[113.948929,34.452699],[113.948615,34.435063],[113.968495,34.439324],[113.990326,34.435707],[114.006557,34.439225],[114.019894,34.445368],[114.021719,34.458989],[114.01851,34.46721],[114.008256,34.470082],[114.009577,34.480135],[114.0226,34.488552],[114.035119,34.503998],[114.062486,34.490532],[114.07035,34.481472],[114.083373,34.480927],[114.094383,34.492265],[114.093942,34.50182],[114.100296,34.535178],[114.107217,34.557887],[114.118478,34.570155],[114.129802,34.575348],[114.127852,34.584943],[114.133451,34.591025],[114.136848,34.605711],[114.125461,34.607886],[114.127726,34.61718],[114.14553,34.61456],[114.145153,34.604277],[114.15459,34.60576],[114.15157,34.618268],[114.157547,34.625979],[114.150375,34.656669],[114.160441,34.665611],[114.157547,34.686507],[114.158113,34.704336],[114.141189,34.7191],[114.138484,34.73475],[114.158364,34.759379],[114.172331,34.768311],[114.161762,34.781238],[114.134143,34.802154],[114.122504,34.81833],[114.133703,34.825628],[114.162517,34.828883],[114.185354,34.825628],[114.199824,34.832729],[114.211085,34.860877],[114.220522,34.906801],[114.22071,34.919066]]]]}},{"type":"Feature","properties":{"adcode":410200,"name":"开封市","center":[114.341447,34.797049],"centroid":[114.541763,34.604497],"childrenNum":9,"level":"city","parent":{"adcode":410000},"subFeatureIndex":1,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.885451,34.327785],[113.894573,34.323767],[113.899229,34.315879],[113.896083,34.303375],[113.904702,34.294543],[113.916278,34.301688],[113.934271,34.304864],[113.937354,34.298612],[113.964406,34.292954],[113.96472,34.283128],[113.972459,34.283426],[113.977303,34.275583],[113.992905,34.27335],[113.990577,34.261138],[114.000266,34.263471],[114.00316,34.252549],[114.011275,34.242022],[114.041033,34.237851],[114.050847,34.247137],[114.058837,34.244753],[114.068589,34.250265],[114.076453,34.239639],[114.081926,34.24952],[114.098661,34.241923],[114.10816,34.228813],[114.102058,34.224343],[114.108475,34.218929],[114.109544,34.206958],[114.122882,34.204176],[114.129299,34.198214],[114.155345,34.202039],[114.160503,34.213564],[114.198314,34.217737],[114.202906,34.234623],[114.210267,34.241228],[114.246442,34.240433],[114.259905,34.251854],[114.267517,34.256968],[114.274626,34.274889],[114.287901,34.276527],[114.301175,34.26774],[114.328857,34.267294],[114.344207,34.251804],[114.356412,34.247186],[114.385729,34.24386],[114.405798,34.248031],[114.417689,34.265308],[114.434927,34.267145],[114.440652,34.270719],[114.455688,34.294096],[114.442539,34.300696],[114.430649,34.302284],[114.424546,34.309032],[114.434486,34.313894],[114.436059,34.330265],[114.427692,34.333837],[114.439897,34.336366],[114.438576,34.328033],[114.452857,34.319997],[114.46179,34.319947],[114.462042,34.330166],[114.479343,34.32962],[114.485949,34.325057],[114.493876,34.31191],[114.509855,34.309727],[114.519355,34.313448],[114.524703,34.306253],[114.528603,34.282234],[114.551629,34.284964],[114.551189,34.272059],[114.556662,34.267989],[114.58988,34.273747],[114.602085,34.271017],[114.611459,34.261088],[114.634044,34.261883],[114.647319,34.250315],[114.667514,34.250265],[114.679341,34.244307],[114.702241,34.244505],[114.71388,34.241327],[114.723946,34.228018],[114.730426,34.225237],[114.752697,34.23363],[114.758736,34.238397],[114.76465,34.254436],[114.781196,34.255627],[114.788242,34.261138],[114.812778,34.259003],[114.8314,34.268138],[114.832847,34.281937],[114.845492,34.280696],[114.867763,34.271066],[114.896514,34.265804],[114.901988,34.284567],[114.882674,34.301192],[114.870783,34.305608],[114.862353,34.329174],[114.855558,34.33473],[114.861724,34.367014],[114.879025,34.370683],[114.888461,34.383771],[114.875061,34.390612],[114.874432,34.396411],[114.851658,34.399534],[114.848575,34.409942],[114.854615,34.410933],[114.852413,34.42887],[114.864806,34.433726],[114.856502,34.436599],[114.858893,34.451906],[114.865624,34.462902],[114.872356,34.454085],[114.880786,34.450519],[114.886322,34.461317],[114.896451,34.46102],[114.904001,34.467606],[114.912305,34.483601],[114.918596,34.484938],[114.922371,34.498206],[114.9096,34.495137],[114.917653,34.511571],[114.913752,34.518154],[114.920673,34.531417],[114.91111,34.534782],[114.917841,34.541957],[114.91501,34.548686],[114.906517,34.547647],[114.907398,34.573865],[114.904882,34.586179],[114.897018,34.602596],[114.90117,34.613769],[114.898339,34.631762],[114.901673,34.645303],[114.893494,34.652469],[114.896451,34.661363],[114.905825,34.666896],[114.926649,34.668625],[114.935771,34.672182],[114.936652,34.681914],[114.931682,34.686804],[114.90765,34.697916],[114.891418,34.698213],[114.8677,34.688038],[114.858012,34.692286],[114.855558,34.710904],[114.840648,34.715101],[114.858767,34.734256],[114.859333,34.740328],[114.835678,34.746893],[114.82838,34.755332],[114.829009,34.764314],[114.835615,34.767472],[114.86682,34.769199],[114.867386,34.775515],[114.877578,34.775219],[114.894375,34.762833],[114.922874,34.748423],[114.936841,34.747041],[114.966913,34.761106],[114.980502,34.760909],[114.988366,34.76456],[115.001012,34.760662],[115.030329,34.772455],[115.038885,34.773985],[115.104125,34.772357],[115.119601,34.788638],[115.140048,34.793324],[115.154455,34.78178],[115.163891,34.783063],[115.17553,34.790463],[115.17899,34.800279],[115.198367,34.795297],[115.202897,34.805656],[115.24832,34.798109],[115.253919,34.805014],[115.242658,34.813497],[115.256561,34.81187],[115.267256,34.831249],[115.256058,34.845301],[115.243475,34.850181],[115.239323,34.874677],[115.24077,34.883842],[115.2492,34.894534],[115.252157,34.906604],[115.239323,34.911826],[115.204973,34.914239],[115.202708,34.925617],[115.211768,34.943345],[115.222148,34.945561],[115.219128,34.960626],[115.208245,34.958312],[115.201639,34.950977],[115.175027,34.962497],[115.156908,34.958017],[115.157223,34.966976],[115.146528,34.980118],[115.131177,34.983613],[115.133002,34.999655],[115.128094,35.004379],[115.106138,35.000787],[115.074996,35.000393],[115.051656,34.985975],[115.037564,34.981644],[115.024918,34.971849],[115.016048,34.977362],[115.008121,34.988485],[114.95087,34.989813],[114.934765,34.980709],[114.923818,34.968748],[114.914004,34.977903],[114.907964,34.98937],[114.889657,34.993996],[114.880346,35.003493],[114.884435,35.021893],[114.869965,35.024451],[114.859333,35.002656],[114.827122,35.010135],[114.824668,35.0123],[114.815861,35.014022],[114.800384,35.006691],[114.765908,34.977707],[114.756597,34.97559],[114.741435,34.960675],[114.74175,34.948712],[114.768173,34.927882],[114.778994,34.916751],[114.774779,34.901382],[114.76119,34.89148],[114.733886,34.888474],[114.724323,34.885222],[114.709161,34.89212],[114.695572,34.894387],[114.679593,34.909018],[114.660279,34.898722],[114.633981,34.905225],[114.586608,34.912466],[114.557165,34.905521],[114.540682,34.899264],[114.513378,34.895273],[114.442728,34.914486],[114.417815,34.930788],[114.40064,34.939504],[114.383024,34.936894],[114.367233,34.918968],[114.350499,34.908082],[114.340118,34.907146],[114.284441,34.90823],[114.243988,34.905126],[114.226624,34.913156],[114.22071,34.919066],[114.220522,34.906801],[114.211085,34.860877],[114.199824,34.832729],[114.185354,34.825628],[114.162517,34.828883],[114.133703,34.825628],[114.122504,34.81833],[114.134143,34.802154],[114.161762,34.781238],[114.172331,34.768311],[114.158364,34.759379],[114.138484,34.73475],[114.141189,34.7191],[114.158113,34.704336],[114.157547,34.686507],[114.160441,34.665611],[114.150375,34.656669],[114.157547,34.625979],[114.15157,34.618268],[114.15459,34.60576],[114.145153,34.604277],[114.14553,34.61456],[114.127726,34.61718],[114.125461,34.607886],[114.136848,34.605711],[114.133451,34.591025],[114.127852,34.584943],[114.129802,34.575348],[114.118478,34.570155],[114.107217,34.557887],[114.100296,34.535178],[114.093942,34.50182],[114.094383,34.492265],[114.083373,34.480927],[114.07035,34.481472],[114.062486,34.490532],[114.035119,34.503998],[114.0226,34.488552],[114.009577,34.480135],[114.008256,34.470082],[114.01851,34.46721],[114.021719,34.458989],[114.019894,34.445368],[114.006557,34.439225],[113.990326,34.435707],[113.968495,34.439324],[113.948615,34.435063],[113.948929,34.452699],[113.938108,34.454729],[113.929993,34.443485],[113.915586,34.444922],[113.912126,34.452352],[113.903507,34.454185],[113.891616,34.437342],[113.878153,34.411478],[113.878531,34.394577],[113.885199,34.370485],[113.879978,34.356056],[113.888093,34.348369],[113.885451,34.327785]]]]}},{"type":"Feature","properties":{"adcode":410300,"name":"洛阳市","center":[112.434468,34.663041],"centroid":[112.038509,34.293198],"childrenNum":14,"level":"city","parent":{"adcode":410000},"subFeatureIndex":2,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.260813,33.796775],[111.270816,33.781699],[111.288558,33.779702],[111.304223,33.775008],[111.315044,33.764073],[111.322467,33.762974],[111.336245,33.768317],[111.348387,33.764822],[111.390035,33.771264],[111.398906,33.768168],[111.4342,33.747742],[111.469808,33.738052],[111.484529,33.726462],[111.495476,33.725663],[111.516048,33.7405],[111.523975,33.742847],[111.541402,33.733406],[111.567699,33.735005],[111.59148,33.727711],[111.619476,33.730059],[111.645207,33.720517],[111.665151,33.695582],[111.684968,33.677489],[111.719003,33.688885],[111.728629,33.688086],[111.778078,33.666091],[111.819411,33.652892],[111.82759,33.634189],[111.827716,33.606228],[111.832749,33.598723],[111.843444,33.595821],[111.863953,33.599174],[111.884526,33.596121],[111.899184,33.588666],[111.916359,33.572102],[111.930137,33.571051],[111.994182,33.584913],[112.020353,33.587715],[112.028343,33.593019],[112.024191,33.600024],[112.018655,33.59437],[112.012301,33.602626],[112.014943,33.613632],[112.024757,33.622436],[112.038535,33.622386],[112.059044,33.605227],[112.065713,33.607479],[112.087481,33.603076],[112.092199,33.607228],[112.084146,33.628988],[112.076345,33.633689],[112.071312,33.648192],[112.074018,33.653142],[112.104719,33.661392],[112.120573,33.668841],[112.13089,33.676939],[112.141774,33.691634],[112.15033,33.713672],[112.158509,33.720117],[112.168638,33.721766],[112.17776,33.715621],[112.179207,33.703278],[112.184995,33.698731],[112.214752,33.713972],[112.230103,33.71702],[112.239917,33.715321],[112.249354,33.719018],[112.24797,33.72871],[112.263446,33.743596],[112.266907,33.769766],[112.259168,33.776007],[112.260049,33.781849],[112.277413,33.791684],[112.273953,33.801667],[112.285906,33.808755],[112.301383,33.811001],[112.323402,33.828467],[112.351461,33.834605],[112.363854,33.840143],[112.372222,33.838297],[112.40978,33.80591],[112.42381,33.806559],[112.433687,33.810951],[112.45665,33.836451],[112.462312,33.84583],[112.474643,33.855458],[112.48559,33.859848],[112.512768,33.85895],[112.534095,33.880247],[112.541393,33.892165],[112.536423,33.902236],[112.51497,33.906374],[112.502576,33.913004],[112.497858,33.926064],[112.530761,33.937975],[112.538121,33.947344],[112.539065,33.968071],[112.546803,33.979777],[112.547118,33.998304],[112.56964,34.003035],[112.549383,34.016529],[112.533718,34.018122],[112.538625,34.027084],[112.572346,34.043162],[112.577253,34.062373],[112.601222,34.071827],[112.602544,34.088792],[112.608206,34.114209],[112.616196,34.128928],[112.620285,34.143148],[112.611666,34.15816],[112.595623,34.163529],[112.589395,34.18614],[112.583544,34.19096],[112.559763,34.224988],[112.577819,34.246988],[112.575617,34.254336],[112.557876,34.263719],[112.553724,34.27608],[112.569703,34.284815],[112.573226,34.298314],[112.597133,34.317962],[112.613994,34.322328],[112.607262,34.327934],[112.623682,34.337854],[112.650168,34.341078],[112.659605,34.333936],[112.65734,34.320592],[112.669294,34.324908],[112.688356,34.326743],[112.701001,34.335077],[112.73057,34.330414],[112.741265,34.333738],[112.75693,34.330662],[112.776622,34.345046],[112.760076,34.346584],[112.756805,34.357394],[112.732898,34.350898],[112.728117,34.361163],[112.730318,34.377426],[112.721825,34.380152],[112.72409,34.388877],[112.733653,34.39309],[112.735918,34.404242],[112.729626,34.416978],[112.736673,34.422578],[112.741894,34.433973],[112.744285,34.4683],[112.740384,34.491077],[112.767374,34.49479],[112.774609,34.500137],[112.798012,34.487166],[112.806002,34.479243],[112.838024,34.477164],[112.856017,34.478402],[112.862371,34.473648],[112.896155,34.475827],[112.905215,34.468201],[112.922956,34.47657],[112.920125,34.482016],[112.927297,34.499691],[112.925598,34.509789],[112.929813,34.526023],[112.947995,34.531467],[112.976683,34.53117],[112.984736,34.539038],[112.967749,34.541264],[112.952273,34.547647],[112.929562,34.547548],[112.910751,34.545173],[112.890682,34.547102],[112.87898,34.560015],[112.877722,34.567731],[112.864133,34.580146],[112.862183,34.590284],[112.846329,34.58885],[112.839408,34.596514],[112.845574,34.609913],[112.840226,34.623161],[112.82475,34.625188],[112.825001,34.628698],[112.841799,34.628648],[112.847147,34.640362],[112.831041,34.656669],[112.835885,34.667785],[112.829217,34.683346],[112.830223,34.694163],[112.8496,34.699694],[112.867782,34.708089],[112.879735,34.705077],[112.893827,34.694953],[112.901692,34.693521],[112.91635,34.710953],[112.931764,34.711694],[112.939502,34.72384],[112.909933,34.737465],[112.902258,34.753161],[112.908486,34.757405],[112.909367,34.771123],[112.89993,34.780596],[112.887914,34.782718],[112.875017,34.779659],[112.846329,34.780054],[112.837144,34.782915],[112.817263,34.778278],[112.810595,34.784938],[112.80984,34.7951],[112.814118,34.811475],[112.827266,34.819218],[112.813363,34.832877],[112.78782,34.83761],[112.773288,34.835884],[112.753281,34.828587],[112.72214,34.828833],[112.696723,34.840617],[112.676088,34.853188],[112.656648,34.859645],[112.638215,34.854174],[112.636328,34.88266],[112.642115,34.895717],[112.638152,34.896998],[112.638404,34.919756],[112.618209,34.920298],[112.585369,34.926503],[112.579329,34.933398],[112.578134,34.944083],[112.571654,34.948761],[112.5692,34.958608],[112.563853,34.949696],[112.551207,34.938569],[112.527867,34.932019],[112.519436,34.940341],[112.505155,34.942459],[112.496914,34.921726],[112.511447,34.92084],[112.515976,34.929212],[112.527426,34.929163],[112.537304,34.916013],[112.534221,34.893746],[112.521072,34.892761],[112.505659,34.898821],[112.496536,34.895717],[112.489616,34.90286],[112.462501,34.915668],[112.433247,34.920987],[112.39097,34.918574],[112.384993,34.924533],[112.360268,34.931428],[112.334537,34.941425],[112.3212,34.941375],[112.301068,34.945462],[112.28188,34.960232],[112.267284,34.953537],[112.258099,34.942212],[112.247844,34.940735],[112.226831,34.956589],[112.212047,34.965007],[112.1877,34.972981],[112.169896,35.00241],[112.1514,35.015399],[112.125857,35.021204],[112.108242,35.029222],[112.09352,35.029911],[112.042436,35.027845],[112.035075,35.033845],[112.038912,35.045501],[112.035264,35.053714],[112.023814,35.060843],[112.021171,35.067973],[112.006009,35.065367],[111.973358,35.070234],[111.958699,35.062908],[111.958573,35.0486],[111.939511,35.0366],[111.940203,35.030599],[111.967067,35.014169],[111.991917,35.005018],[111.978139,34.997195],[111.981033,34.990059],[111.967192,34.989912],[111.95763,34.986221],[111.961153,34.975689],[111.983235,34.970471],[111.981914,34.960626],[111.950835,34.947776],[111.933975,34.947678],[111.921707,34.934038],[111.906168,34.929606],[111.890062,34.920347],[111.88396,34.911974],[111.883267,34.894239],[111.898744,34.885912],[111.922336,34.883941],[111.949829,34.863391],[111.948948,34.852301],[111.957944,34.851167],[111.981411,34.857624],[111.990722,34.853779],[111.982858,34.846139],[111.986003,34.837856],[112.01444,34.817985],[112.020731,34.811327],[112.012804,34.803781],[112.016327,34.797073],[112.030105,34.792584],[112.031992,34.782965],[112.031174,34.777735],[112.017459,34.769939],[112.019347,34.762587],[112.011042,34.750644],[111.997831,34.750693],[112.000536,34.745017],[111.995692,34.736823],[112.014125,34.731048],[112.01488,34.724235],[111.997642,34.717125],[111.993238,34.693866],[111.982921,34.695052],[111.984997,34.686013],[111.972855,34.66739],[111.980089,34.654],[111.971408,34.65069],[111.967444,34.64308],[111.953666,34.639521],[111.943223,34.629637],[111.94165,34.620492],[111.928879,34.600272],[111.905664,34.6198],[111.888867,34.61891],[111.863953,34.647082],[111.830736,34.649207],[111.823752,34.646242],[111.821362,34.634431],[111.811296,34.633887],[111.797078,34.626028],[111.778393,34.608331],[111.764112,34.609171],[111.758764,34.597454],[111.740079,34.600272],[111.702835,34.584943],[111.696292,34.575744],[111.687044,34.571886],[111.672008,34.572232],[111.681445,34.547647],[111.692643,34.535673],[111.683584,34.533298],[111.670058,34.540571],[111.619099,34.55576],[111.608089,34.56229],[111.594437,34.565308],[111.584434,34.556057],[111.574305,34.564467],[111.562037,34.558728],[111.544736,34.544925],[111.538634,34.543342],[111.525045,34.54829],[111.5029,34.545074],[111.489437,34.533842],[111.484655,34.525528],[111.45754,34.512561],[111.451689,34.505928],[111.418346,34.490829],[111.394816,34.482016],[111.385065,34.473103],[111.370595,34.473301],[111.358642,34.480333],[111.344424,34.472955],[111.324732,34.471717],[111.306676,34.474193],[111.300008,34.488948],[111.289313,34.485581],[111.271383,34.470677],[111.272012,34.447547],[111.244708,34.453788],[111.227533,34.459732],[111.220235,34.457949],[111.213252,34.437441],[111.21344,34.429812],[111.197712,34.418762],[111.191232,34.41792],[111.188967,34.399286],[111.171415,34.394974],[111.156819,34.394677],[111.147949,34.38853],[111.141217,34.373113],[111.138449,34.35675],[111.141217,34.353031],[111.159839,34.350799],[111.166634,34.344798],[111.16915,34.334878],[111.185444,34.31697],[111.191547,34.301837],[111.181921,34.27876],[111.182488,34.256421],[111.187772,34.250265],[111.180915,34.230203],[111.166571,34.228962],[111.158958,34.223101],[111.175819,34.209541],[111.207401,34.197419],[111.214699,34.181221],[111.234516,34.178537],[111.248671,34.162882],[111.253201,34.15309],[111.267922,34.146528],[111.276856,34.148318],[111.281889,34.138524],[111.296925,34.145137],[111.305292,34.140165],[111.306362,34.125149],[111.313408,34.116546],[111.334735,34.115601],[111.344738,34.109037],[111.358768,34.108788],[111.367198,34.092473],[111.354301,34.084464],[111.342096,34.056053],[111.342285,34.037936],[111.355119,34.015185],[111.353609,33.996263],[111.356,33.984509],[111.344109,33.973351],[111.324795,33.963039],[111.305921,33.941364],[111.303342,33.928207],[111.29013,33.926662],[111.276793,33.935533],[111.259366,33.929852],[111.239989,33.933141],[111.230049,33.924768],[111.226652,33.913104],[111.234768,33.901738],[111.234516,33.894857],[111.212811,33.884087],[111.206017,33.891616],[111.203689,33.883438],[111.21948,33.872766],[111.216397,33.865135],[111.232062,33.856805],[111.240304,33.842488],[111.261568,33.822878],[111.260813,33.796775]]],[[[112.028784,34.778968],[112.030231,34.782668],[112.018466,34.785678],[112.021171,34.777537],[112.028784,34.778968]]]]}},{"type":"Feature","properties":{"adcode":410400,"name":"平顶山市","center":[113.307718,33.735241],"centroid":[113.016514,33.795715],"childrenNum":10,"level":"city","parent":{"adcode":410000},"subFeatureIndex":3,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.585485,33.711024],[113.580767,33.715171],[113.58775,33.727062],[113.576552,33.736304],[113.573091,33.752137],[113.549373,33.750489],[113.544341,33.757131],[113.51798,33.750439],[113.504014,33.751238],[113.489481,33.746094],[113.451042,33.739301],[113.448211,33.75868],[113.434873,33.765371],[113.425814,33.762175],[113.372401,33.785593],[113.393351,33.797873],[113.386053,33.801817],[113.38102,33.815542],[113.385802,33.834854],[113.384669,33.843286],[113.36762,33.862691],[113.360762,33.879997],[113.365481,33.890519],[113.381586,33.912007],[113.386116,33.927808],[113.410715,33.943308],[113.412665,33.952028],[113.41342,33.987049],[113.402222,34.002687],[113.395742,34.031315],[113.386368,34.039827],[113.368626,34.039877],[113.35466,34.043112],[113.346104,34.03928],[113.345034,34.029075],[113.334528,34.027183],[113.320687,34.054858],[113.331949,34.063268],[113.30043,34.082623],[113.283129,34.086802],[113.278914,34.100134],[113.264381,34.098542],[113.257398,34.112319],[113.252113,34.114308],[113.240097,34.108539],[113.241166,34.097945],[113.235064,34.091926],[113.227137,34.092523],[113.222355,34.102422],[113.210654,34.107445],[113.177876,34.101228],[113.157493,34.103118],[113.150384,34.108141],[113.146483,34.117939],[113.130629,34.124105],[113.126477,34.134696],[113.129811,34.145733],[113.118047,34.156818],[113.103011,34.176798],[113.101941,34.18778],[113.106094,34.198115],[113.103892,34.205418],[113.094203,34.21118],[113.075392,34.215502],[113.066962,34.223647],[113.070171,34.247186],[113.077343,34.262677],[113.082439,34.26645],[113.075518,34.276527],[113.059476,34.280944],[113.037142,34.280299],[113.027642,34.289282],[113.020847,34.290424],[113.013235,34.300398],[112.992977,34.296478],[112.960829,34.297867],[112.954097,34.302135],[112.936293,34.295535],[112.91245,34.293749],[112.884516,34.30144],[112.87357,34.298016],[112.856458,34.302185],[112.84117,34.297818],[112.842114,34.311612],[112.854633,34.316325],[112.83318,34.333638],[112.824184,34.33344],[112.81223,34.340037],[112.788953,34.331158],[112.787002,34.343261],[112.776622,34.345046],[112.75693,34.330662],[112.741265,34.333738],[112.73057,34.330414],[112.701001,34.335077],[112.688356,34.326743],[112.669294,34.324908],[112.65734,34.320592],[112.659605,34.333936],[112.650168,34.341078],[112.623682,34.337854],[112.607262,34.327934],[112.613994,34.322328],[112.597133,34.317962],[112.573226,34.298314],[112.569703,34.284815],[112.553724,34.27608],[112.557876,34.263719],[112.575617,34.254336],[112.577819,34.246988],[112.559763,34.224988],[112.583544,34.19096],[112.589395,34.18614],[112.595623,34.163529],[112.611666,34.15816],[112.620285,34.143148],[112.616196,34.128928],[112.608206,34.114209],[112.602544,34.088792],[112.601222,34.071827],[112.577253,34.062373],[112.572346,34.043162],[112.538625,34.027084],[112.533718,34.018122],[112.549383,34.016529],[112.56964,34.003035],[112.547118,33.998304],[112.546803,33.979777],[112.539065,33.968071],[112.538121,33.947344],[112.530761,33.937975],[112.497858,33.926064],[112.502576,33.913004],[112.51497,33.906374],[112.536423,33.902236],[112.541393,33.892165],[112.534095,33.880247],[112.512768,33.85895],[112.48559,33.859848],[112.474643,33.855458],[112.462312,33.84583],[112.45665,33.836451],[112.433687,33.810951],[112.42381,33.806559],[112.40978,33.80591],[112.372222,33.838297],[112.363854,33.840143],[112.351461,33.834605],[112.323402,33.828467],[112.301383,33.811001],[112.285906,33.808755],[112.273953,33.801667],[112.277413,33.791684],[112.260049,33.781849],[112.259168,33.776007],[112.266907,33.769766],[112.263446,33.743596],[112.24797,33.72871],[112.249354,33.719018],[112.258854,33.710624],[112.278168,33.712373],[112.306541,33.69978],[112.312455,33.684887],[112.332839,33.668391],[112.353285,33.669941],[112.361086,33.661242],[112.375116,33.666891],[112.392479,33.666991],[112.408019,33.675439],[112.420727,33.676389],[112.453756,33.645291],[112.461683,33.63994],[112.477159,33.63764],[112.493202,33.63899],[112.503394,33.622185],[112.524721,33.603826],[112.522771,33.595521],[112.529943,33.587915],[112.548502,33.59367],[112.556869,33.588166],[112.575995,33.602275],[112.588388,33.616883],[112.599775,33.618084],[112.610785,33.611431],[112.611351,33.601875],[112.617705,33.597272],[112.63444,33.594821],[112.646205,33.602876],[112.660234,33.605377],[112.664386,33.597673],[112.683889,33.591718],[112.689174,33.587165],[112.70572,33.585263],[112.725411,33.586765],[112.743215,33.578858],[112.750387,33.571151],[112.760076,33.571751],[112.773413,33.56079],[112.783668,33.567747],[112.81179,33.580309],[112.82022,33.574804],[112.845637,33.578107],[112.85262,33.584413],[112.854822,33.603626],[112.869669,33.611531],[112.887914,33.608329],[112.893513,33.616133],[112.917545,33.605627],[112.94271,33.607629],[112.950134,33.590968],[112.963597,33.583662],[112.972908,33.584613],[112.986497,33.575805],[112.990775,33.567797],[112.997255,33.569399],[113.022861,33.56119],[113.027642,33.546874],[113.036701,33.546974],[113.036261,33.539865],[113.047333,33.532204],[113.04381,33.517532],[113.048214,33.508317],[113.049221,33.492087],[113.053373,33.485725],[113.041168,33.473701],[113.037897,33.464331],[113.041357,33.44659],[113.045698,33.439472],[113.074826,33.448444],[113.110309,33.446138],[113.125659,33.439723],[113.128742,33.427642],[113.141765,33.425987],[113.156109,33.433607],[113.176052,33.435713],[113.192975,33.429797],[113.198134,33.420523],[113.216316,33.398861],[113.230912,33.38848],[113.230534,33.374937],[113.241418,33.373733],[113.245004,33.365356],[113.257964,33.366158],[113.270609,33.358834],[113.277089,33.350254],[113.289923,33.351709],[113.302632,33.348999],[113.312194,33.341121],[113.335472,33.35201],[113.363908,33.342476],[113.400397,33.335852],[113.40738,33.323004],[113.400838,33.314722],[113.403857,33.302724],[113.388318,33.299059],[113.384732,33.29203],[113.400146,33.261044],[113.402851,33.235224],[113.391212,33.225928],[113.384103,33.206128],[113.384417,33.196679],[113.377875,33.184313],[113.370136,33.182855],[113.385802,33.169381],[113.382467,33.156156],[113.385424,33.145595],[113.379888,33.135485],[113.388821,33.128393],[113.397881,33.14997],[113.413105,33.156659],[113.432545,33.15681],[113.449217,33.160581],[113.46029,33.156458],[113.499987,33.156206],[113.514772,33.162492],[113.521378,33.154698],[113.532324,33.152736],[113.541321,33.14308],[113.550254,33.140113],[113.561201,33.161134],[113.573846,33.15691],[113.593601,33.157715],[113.600144,33.163146],[113.617004,33.147255],[113.626001,33.150423],[113.63506,33.160833],[113.64846,33.182402],[113.644623,33.186575],[113.627511,33.186475],[113.613796,33.211506],[113.606875,33.237786],[113.613167,33.261798],[113.618766,33.291477],[113.627448,33.312212],[113.640282,33.325162],[113.642106,33.34905],[113.639149,33.355221],[113.655003,33.371175],[113.676897,33.378298],[113.688347,33.407737],[113.683125,33.41952],[113.659407,33.424283],[113.651669,33.418417],[113.645252,33.421776],[113.620842,33.410946],[113.596809,33.41215],[113.589008,33.404728],[113.574727,33.407537],[113.54736,33.406433],[113.539811,33.419019],[113.526662,33.419269],[113.51754,33.407186],[113.506341,33.414607],[113.483945,33.421124],[113.468846,33.422077],[113.466518,33.437367],[113.473501,33.443683],[113.471803,33.463378],[113.484322,33.483721],[113.478597,33.50431],[113.483001,33.500152],[113.50307,33.500252],[113.510808,33.505011],[113.525278,33.505061],[113.532073,33.497347],[113.537609,33.498499],[113.533708,33.514978],[113.537672,33.51633],[113.545536,33.548626],[113.557363,33.553582],[113.563151,33.57055],[113.554281,33.5706],[113.552267,33.586715],[113.576803,33.592619],[113.579383,33.597222],[113.604673,33.613131],[113.621534,33.619885],[113.628203,33.629038],[113.619143,33.63799],[113.596746,33.651892],[113.587624,33.654642],[113.580515,33.681738],[113.584101,33.698131],[113.576677,33.706327],[113.585485,33.711024]]]]}},{"type":"Feature","properties":{"adcode":410500,"name":"安阳市","center":[114.352482,36.103442],"centroid":[114.358257,35.878529],"childrenNum":9,"level":"city","parent":{"adcode":410000},"subFeatureIndex":4,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.419073,35.474181],[114.428573,35.468947],[114.429139,35.449523],[114.412027,35.43582],[114.405043,35.426325],[114.407686,35.418004],[114.415172,35.413255],[114.423666,35.380155],[114.413474,35.370163],[114.411083,35.358064],[114.429076,35.342876],[114.423414,35.324842],[114.404226,35.326313],[114.403659,35.316805],[114.412782,35.313521],[114.416493,35.302785],[114.408189,35.29249],[114.395732,35.293078],[114.407497,35.269738],[114.395481,35.26449],[114.391266,35.258114],[114.396299,35.241828],[114.407497,35.236627],[114.392146,35.226912],[114.394348,35.219797],[114.399696,35.225097],[114.415298,35.228188],[114.431404,35.222055],[114.431781,35.208755],[114.442602,35.205958],[114.4499,35.214448],[114.465376,35.216706],[114.487836,35.206645],[114.494756,35.220141],[114.50413,35.228286],[114.527093,35.235646],[114.541437,35.242809],[114.549364,35.261891],[114.562198,35.276064],[114.5968,35.286116],[114.607495,35.292686],[114.627313,35.298275],[114.642915,35.297148],[114.663173,35.291559],[114.679907,35.291166],[114.688715,35.295138],[114.698341,35.306756],[114.701675,35.329008],[114.697397,35.337486],[114.718598,35.343611],[114.73722,35.344689],[114.754521,35.341308],[114.76163,35.345228],[114.783964,35.343023],[114.808877,35.346942],[114.809632,35.354242],[114.856942,35.387794],[114.879339,35.387452],[114.898087,35.390781],[114.951248,35.380791],[114.967605,35.399204],[114.985787,35.414332],[114.981509,35.434107],[114.96383,35.440665],[114.96188,35.446146],[114.967668,35.456716],[114.970751,35.480785],[114.947347,35.478144],[114.93942,35.481225],[114.940616,35.491448],[114.953324,35.501815],[114.964334,35.504749],[114.969492,35.518],[114.968423,35.537554],[114.962006,35.571421],[114.952884,35.581094],[114.90853,35.585979],[114.884813,35.599852],[114.883051,35.616065],[114.874432,35.623878],[114.875502,35.628907],[114.890034,35.646823],[114.905888,35.649606],[114.911047,35.660685],[114.919226,35.664785],[114.918408,35.687962],[114.910544,35.700939],[114.915514,35.706743],[114.907776,35.722594],[114.889594,35.738978],[114.887832,35.753506],[114.893746,35.764132],[114.908405,35.765741],[114.921365,35.780118],[114.943573,35.799754],[114.948669,35.819629],[114.94546,35.82523],[114.93401,35.828055],[114.933003,35.84505],[114.935646,35.853814],[114.953009,35.85766],[114.959112,35.862723],[114.969996,35.881366],[114.970814,35.890223],[114.97786,35.904723],[114.972324,35.923259],[114.98025,35.949814],[114.988366,35.964741],[114.983333,35.982922],[114.986164,35.991865],[114.980376,36.003334],[114.974274,35.999009],[114.974211,36.012226],[114.983396,36.019417],[114.983962,36.02583],[114.968926,36.032971],[114.94244,36.03812],[114.920798,36.048319],[114.914696,36.05201],[114.92646,36.089444],[114.922057,36.103132],[114.913249,36.107645],[114.907083,36.119971],[114.912431,36.140444],[114.893432,36.140056],[114.89211,36.143792],[114.868518,36.146653],[114.858641,36.144325],[114.857509,36.127734],[114.841655,36.131712],[114.831589,36.130354],[114.825172,36.123707],[114.802775,36.130936],[114.790885,36.130014],[114.778617,36.133168],[114.777987,36.128025],[114.76421,36.125551],[114.762889,36.134914],[114.751564,36.138698],[114.751564,36.146605],[114.734389,36.155772],[114.720674,36.140056],[114.711678,36.145441],[114.692364,36.146217],[114.691106,36.138407],[114.655183,36.14025],[114.63719,36.135642],[114.630395,36.124241],[114.619449,36.123513],[114.61083,36.128316],[114.604664,36.121426],[114.582582,36.121329],[114.58686,36.14093],[114.575473,36.143258],[114.568049,36.152328],[114.558046,36.150776],[114.543639,36.161786],[114.531686,36.161931],[114.532881,36.171533],[114.504948,36.172406],[114.505577,36.177497],[114.489598,36.178467],[114.483873,36.183848],[114.480287,36.177788],[114.466194,36.197713],[114.452291,36.202367],[114.431152,36.202609],[114.4175,36.205905],[114.408441,36.224563],[114.392335,36.221123],[114.367548,36.225533],[114.356098,36.23033],[114.353833,36.242636],[114.346787,36.245494],[114.345151,36.255812],[114.329234,36.255909],[114.328353,36.248159],[114.312814,36.251646],[114.309983,36.246754],[114.298973,36.24593],[114.273871,36.254747],[114.256445,36.263998],[114.241031,36.251356],[114.235558,36.252761],[114.22373,36.270875],[114.210645,36.272764],[114.203095,36.245736],[114.185165,36.248449],[114.181139,36.243314],[114.168871,36.243411],[114.176672,36.263126],[114.164844,36.269567],[114.162831,36.26516],[114.131438,36.281674],[114.121435,36.272715],[114.097528,36.275233],[114.092621,36.2778],[114.085386,36.2701],[114.060536,36.276493],[114.058271,36.285354],[114.042606,36.297313],[114.047953,36.310334],[114.061542,36.317982],[114.055692,36.329984],[114.045185,36.325919],[114.029017,36.326548],[114.025997,36.330516],[114.03254,36.339904],[114.030841,36.350742],[114.024676,36.354854],[114.015176,36.352967],[114.008507,36.342517],[113.985859,36.357563],[113.977932,36.358579],[113.979819,36.344113],[113.994478,36.34421],[113.994352,36.337049],[114.001964,36.331339],[113.991647,36.326839],[113.993849,36.314594],[113.98221,36.317692],[113.977869,36.329258],[113.968495,36.33971],[113.964217,36.35258],[113.953207,36.358192],[113.946727,36.354805],[113.948804,36.346097],[113.960317,36.344742],[113.956101,36.335597],[113.93446,36.33613],[113.931629,36.319482],[113.911182,36.314788],[113.901116,36.337001],[113.881487,36.353886],[113.853617,36.350113],[113.849339,36.346823],[113.853995,36.329742],[113.834177,36.334339],[113.818261,36.331146],[113.801274,36.338355],[113.796808,36.347548],[113.777431,36.349822],[113.778626,36.359788],[113.763401,36.356015],[113.75516,36.365931],[113.7422,36.364432],[113.743269,36.357563],[113.73314,36.357079],[113.731442,36.363367],[113.728736,36.341452],[113.736412,36.324709],[113.723326,36.304865],[113.709045,36.299733],[113.716217,36.262593],[113.709108,36.261528],[113.700552,36.252276],[113.703886,36.23784],[113.695204,36.228779],[113.677274,36.222528],[113.672178,36.211963],[113.682055,36.216277],[113.698476,36.21429],[113.705396,36.20067],[113.691492,36.20193],[113.686334,36.195483],[113.697909,36.181861],[113.672304,36.175606],[113.664503,36.177449],[113.651669,36.172212],[113.659973,36.164162],[113.679287,36.159943],[113.681363,36.150728],[113.695582,36.153201],[113.706843,36.147381],[113.702628,36.143209],[113.705648,36.134138],[113.713763,36.132974],[113.693191,36.124192],[113.673499,36.125357],[113.668529,36.129675],[113.655507,36.125114],[113.673814,36.111625],[113.669284,36.104005],[113.679539,36.094007],[113.684069,36.078328],[113.68237,36.066821],[113.685767,36.055992],[113.668655,36.049096],[113.66142,36.04288],[113.660414,36.034671],[113.670165,36.029522],[113.695141,36.026753],[113.695204,36.018202],[113.680734,36.014801],[113.695896,35.999884],[113.686459,35.986421],[113.678784,35.98579],[113.648901,35.994149],[113.637828,35.988463],[113.636884,35.975874],[113.647831,35.967123],[113.653997,35.93143],[113.654437,35.917227],[113.648712,35.908518],[113.637388,35.869928],[113.644056,35.854885],[113.658212,35.853911],[113.661043,35.837259],[113.700552,35.837308],[113.709108,35.833655],[113.705962,35.826594],[113.711813,35.81807],[113.726786,35.823185],[113.731819,35.818752],[113.742892,35.819093],[113.756229,35.793713],[113.751888,35.788304],[113.757865,35.782798],[113.759752,35.767398],[113.778563,35.763206],[113.776613,35.759404],[113.800205,35.740782],[113.808006,35.742488],[113.801652,35.733517],[113.799953,35.713572],[113.794228,35.695329],[113.777556,35.684644],[113.785546,35.674447],[113.806244,35.672983],[113.811529,35.676838],[113.843677,35.677814],[113.859216,35.682351],[113.868402,35.680741],[113.886332,35.684401],[113.901619,35.677423],[113.923072,35.681815],[113.927476,35.686011],[113.931691,35.703963],[113.949055,35.70089],[113.956227,35.691426],[113.969565,35.689572],[113.98523,35.700743],[113.995988,35.704792],[113.998316,35.719814],[114.002468,35.724788],[114.017567,35.72591],[114.032854,35.737028],[114.042983,35.748095],[114.055377,35.749216],[114.067267,35.759112],[114.066575,35.775391],[114.071357,35.779679],[114.078151,35.803018],[114.069155,35.805259],[114.051414,35.797513],[114.037132,35.80331],[114.025179,35.797074],[114.022537,35.804285],[114.035685,35.818411],[114.035937,35.824548],[114.025619,35.829419],[114.014987,35.845001],[114.013981,35.852548],[114.019957,35.858634],[114.038642,35.859461],[114.056698,35.870268],[114.070287,35.873189],[114.075131,35.880928],[114.07488,35.904383],[114.081611,35.915086],[114.052735,35.93109],[114.040467,35.935662],[114.038768,35.944319],[114.028828,35.950494],[114.030464,35.97179],[114.044619,35.972276],[114.065506,35.964109],[114.073055,35.974512],[114.084002,35.974415],[114.094571,35.981075],[114.108035,35.981852],[114.103505,35.995267],[114.111306,36.017085],[114.121687,36.027044],[114.135716,36.031562],[114.158931,36.047299],[114.175225,36.052107],[114.179251,36.039431],[114.174847,36.031319],[114.178245,36.013198],[114.169877,36.000856],[114.174847,35.988803],[114.181768,35.982873],[114.191771,35.981415],[114.197559,35.990115],[114.205045,35.988657],[114.218005,35.997648],[114.223604,35.981707],[114.251412,35.971936],[114.279974,35.972811],[114.279974,35.947382],[114.296897,35.957885],[114.309291,35.952731],[114.293626,35.938288],[114.303,35.930604],[114.295576,35.924621],[114.290166,35.928853],[114.277206,35.924475],[114.270789,35.899858],[114.280855,35.892315],[114.274626,35.882242],[114.250908,35.876791],[114.244303,35.871875],[114.243044,35.863259],[114.234425,35.855956],[114.229204,35.841057],[114.237005,35.809156],[114.241786,35.806526],[114.24317,35.793079],[114.250845,35.793566],[114.263365,35.774416],[114.25569,35.774416],[114.255249,35.767349],[114.270411,35.76072],[114.284315,35.783285],[114.294632,35.794346],[114.328353,35.802141],[114.350373,35.816025],[114.364717,35.818947],[114.396802,35.816804],[114.408441,35.820749],[114.43845,35.817437],[114.445811,35.819191],[114.451347,35.828737],[114.47085,35.827471],[114.478273,35.834824],[114.509478,35.836723],[114.55295,35.828201],[114.566476,35.843735],[114.57044,35.835993],[114.587552,35.840083],[114.597618,35.825181],[114.611647,35.82221],[114.613849,35.808085],[114.636561,35.794054],[114.658706,35.791471],[114.675252,35.782067],[114.695572,35.78733],[114.709224,35.787427],[114.719857,35.778363],[114.751439,35.763352],[114.753389,35.753018],[114.751439,35.737661],[114.735648,35.708645],[114.727029,35.697865],[114.707903,35.694304],[114.705638,35.689523],[114.687897,35.684157],[114.677454,35.671031],[114.672924,35.65395],[114.660719,35.651119],[114.645243,35.654828],[114.618694,35.647458],[114.615611,35.636572],[114.591704,35.629054],[114.576857,35.616798],[114.558361,35.613477],[114.549301,35.614796],[114.54345,35.602635],[114.502558,35.609277],[114.495008,35.600047],[114.500167,35.593404],[114.497587,35.584123],[114.482677,35.584416],[114.486137,35.573033],[114.476071,35.565215],[114.455499,35.557641],[114.426182,35.54425],[114.416871,35.533839],[114.402275,35.526018],[114.39504,35.508857],[114.409259,35.489149],[114.420394,35.483769],[114.419073,35.474181]]]]}},{"type":"Feature","properties":{"adcode":410600,"name":"鹤壁市","center":[114.295444,35.748236],"centroid":[114.31602,35.721499],"childrenNum":5,"level":"city","parent":{"adcode":410000},"subFeatureIndex":5,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.995988,35.704792],[114.019769,35.695621],[114.026815,35.683766],[114.039838,35.681522],[114.050218,35.675667],[114.059026,35.657366],[114.064311,35.637793],[114.058523,35.62671],[114.060284,35.611377],[114.056195,35.594528],[114.072804,35.579629],[114.080102,35.567316],[114.104889,35.554269],[114.120114,35.551142],[114.139176,35.538336],[114.17145,35.523965],[114.19196,35.521862],[114.202214,35.524845],[114.215615,35.51756],[114.224863,35.516533],[114.259842,35.504945],[114.276325,35.501277],[114.289914,35.501815],[114.283686,35.492181],[114.275822,35.490176],[114.27255,35.476187],[114.275444,35.465376],[114.29803,35.458722],[114.312374,35.446978],[114.324012,35.444531],[114.339426,35.450648],[114.343704,35.462147],[114.360439,35.4688],[114.370001,35.461755],[114.382018,35.46655],[114.38466,35.475355],[114.39504,35.478192],[114.409699,35.469191],[114.419073,35.474181],[114.420394,35.483769],[114.409259,35.489149],[114.39504,35.508857],[114.402275,35.526018],[114.416871,35.533839],[114.426182,35.54425],[114.455499,35.557641],[114.476071,35.565215],[114.486137,35.573033],[114.482677,35.584416],[114.497587,35.584123],[114.500167,35.593404],[114.495008,35.600047],[114.502558,35.609277],[114.54345,35.602635],[114.549301,35.614796],[114.558361,35.613477],[114.576857,35.616798],[114.591704,35.629054],[114.615611,35.636572],[114.618694,35.647458],[114.645243,35.654828],[114.660719,35.651119],[114.672924,35.65395],[114.677454,35.671031],[114.687897,35.684157],[114.705638,35.689523],[114.707903,35.694304],[114.727029,35.697865],[114.735648,35.708645],[114.751439,35.737661],[114.753389,35.753018],[114.751439,35.763352],[114.719857,35.778363],[114.709224,35.787427],[114.695572,35.78733],[114.675252,35.782067],[114.658706,35.791471],[114.636561,35.794054],[114.613849,35.808085],[114.611647,35.82221],[114.597618,35.825181],[114.587552,35.840083],[114.57044,35.835993],[114.566476,35.843735],[114.55295,35.828201],[114.509478,35.836723],[114.478273,35.834824],[114.47085,35.827471],[114.451347,35.828737],[114.445811,35.819191],[114.43845,35.817437],[114.408441,35.820749],[114.396802,35.816804],[114.364717,35.818947],[114.350373,35.816025],[114.328353,35.802141],[114.294632,35.794346],[114.284315,35.783285],[114.270411,35.76072],[114.255249,35.767349],[114.25569,35.774416],[114.263365,35.774416],[114.250845,35.793566],[114.24317,35.793079],[114.241786,35.806526],[114.237005,35.809156],[114.229204,35.841057],[114.234425,35.855956],[114.243044,35.863259],[114.244303,35.871875],[114.250908,35.876791],[114.274626,35.882242],[114.280855,35.892315],[114.270789,35.899858],[114.277206,35.924475],[114.290166,35.928853],[114.295576,35.924621],[114.303,35.930604],[114.293626,35.938288],[114.309291,35.952731],[114.296897,35.957885],[114.279974,35.947382],[114.279974,35.972811],[114.251412,35.971936],[114.223604,35.981707],[114.218005,35.997648],[114.205045,35.988657],[114.197559,35.990115],[114.191771,35.981415],[114.181768,35.982873],[114.174847,35.988803],[114.169877,36.000856],[114.178245,36.013198],[114.174847,36.031319],[114.179251,36.039431],[114.175225,36.052107],[114.158931,36.047299],[114.135716,36.031562],[114.121687,36.027044],[114.111306,36.017085],[114.103505,35.995267],[114.108035,35.981852],[114.094571,35.981075],[114.084002,35.974415],[114.073055,35.974512],[114.065506,35.964109],[114.044619,35.972276],[114.030464,35.97179],[114.028828,35.950494],[114.038768,35.944319],[114.040467,35.935662],[114.052735,35.93109],[114.081611,35.915086],[114.07488,35.904383],[114.075131,35.880928],[114.070287,35.873189],[114.056698,35.870268],[114.038642,35.859461],[114.019957,35.858634],[114.013981,35.852548],[114.014987,35.845001],[114.025619,35.829419],[114.035937,35.824548],[114.035685,35.818411],[114.022537,35.804285],[114.025179,35.797074],[114.037132,35.80331],[114.051414,35.797513],[114.069155,35.805259],[114.078151,35.803018],[114.071357,35.779679],[114.066575,35.775391],[114.067267,35.759112],[114.055377,35.749216],[114.042983,35.748095],[114.032854,35.737028],[114.017567,35.72591],[114.002468,35.724788],[113.998316,35.719814],[113.995988,35.704792]]]]}},{"type":"Feature","properties":{"adcode":410700,"name":"新乡市","center":[113.883991,35.302616],"centroid":[114.095247,35.263966],"childrenNum":12,"level":"city","parent":{"adcode":410000},"subFeatureIndex":6,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.951248,35.380791],[114.898087,35.390781],[114.879339,35.387452],[114.856942,35.387794],[114.809632,35.354242],[114.808877,35.346942],[114.783964,35.343023],[114.76163,35.345228],[114.754521,35.341308],[114.73722,35.344689],[114.718598,35.343611],[114.697397,35.337486],[114.701675,35.329008],[114.698341,35.306756],[114.688715,35.295138],[114.679907,35.291166],[114.663173,35.291559],[114.642915,35.297148],[114.627313,35.298275],[114.607495,35.292686],[114.5968,35.286116],[114.562198,35.276064],[114.549364,35.261891],[114.541437,35.242809],[114.527093,35.235646],[114.50413,35.228286],[114.494756,35.220141],[114.487836,35.206645],[114.465376,35.216706],[114.4499,35.214448],[114.442602,35.205958],[114.431781,35.208755],[114.431404,35.222055],[114.415298,35.228188],[114.399696,35.225097],[114.394348,35.219797],[114.392146,35.226912],[114.407497,35.236627],[114.396299,35.241828],[114.391266,35.258114],[114.395481,35.26449],[114.407497,35.269738],[114.395732,35.293078],[114.408189,35.29249],[114.416493,35.302785],[114.412782,35.313521],[114.403659,35.316805],[114.404226,35.326313],[114.423414,35.324842],[114.429076,35.342876],[114.411083,35.358064],[114.413474,35.370163],[114.423666,35.380155],[114.415172,35.413255],[114.407686,35.418004],[114.405043,35.426325],[114.412027,35.43582],[114.429139,35.449523],[114.428573,35.468947],[114.419073,35.474181],[114.409699,35.469191],[114.39504,35.478192],[114.38466,35.475355],[114.382018,35.46655],[114.370001,35.461755],[114.360439,35.4688],[114.343704,35.462147],[114.339426,35.450648],[114.324012,35.444531],[114.312374,35.446978],[114.29803,35.458722],[114.275444,35.465376],[114.27255,35.476187],[114.275822,35.490176],[114.283686,35.492181],[114.289914,35.501815],[114.276325,35.501277],[114.259842,35.504945],[114.224863,35.516533],[114.215615,35.51756],[114.202214,35.524845],[114.19196,35.521862],[114.17145,35.523965],[114.139176,35.538336],[114.120114,35.551142],[114.104889,35.554269],[114.080102,35.567316],[114.072804,35.579629],[114.056195,35.594528],[114.060284,35.611377],[114.058523,35.62671],[114.064311,35.637793],[114.059026,35.657366],[114.050218,35.675667],[114.039838,35.681522],[114.026815,35.683766],[114.019769,35.695621],[113.995988,35.704792],[113.98523,35.700743],[113.969565,35.689572],[113.956227,35.691426],[113.949055,35.70089],[113.931691,35.703963],[113.927476,35.686011],[113.923072,35.681815],[113.901619,35.677423],[113.886332,35.684401],[113.868402,35.680741],[113.859216,35.682351],[113.843677,35.677814],[113.811529,35.676838],[113.806244,35.672983],[113.785546,35.674447],[113.777556,35.684644],[113.794228,35.695329],[113.799953,35.713572],[113.801652,35.733517],[113.808006,35.742488],[113.800205,35.740782],[113.776613,35.759404],[113.778563,35.763206],[113.759752,35.767398],[113.757865,35.782798],[113.751888,35.788304],[113.756229,35.793713],[113.742892,35.819093],[113.731819,35.818752],[113.726786,35.823185],[113.711813,35.81807],[113.705962,35.826594],[113.709108,35.833655],[113.700552,35.837308],[113.661043,35.837259],[113.650285,35.826594],[113.641225,35.822503],[113.623799,35.831513],[113.606057,35.82372],[113.585296,35.825766],[113.582906,35.818314],[113.588945,35.813443],[113.586177,35.806136],[113.604988,35.800095],[113.583472,35.794249],[113.583157,35.786794],[113.592972,35.789669],[113.599137,35.775098],[113.595929,35.759063],[113.586806,35.744048],[113.591147,35.727958],[113.601968,35.706402],[113.59316,35.691426],[113.614928,35.682986],[113.623484,35.671665],[113.61908,35.667225],[113.624994,35.652388],[113.624868,35.632032],[113.591965,35.631543],[113.578565,35.633545],[113.572966,35.646775],[113.565416,35.64492],[113.560069,35.660441],[113.547989,35.657562],[113.547423,35.648629],[113.553337,35.63872],[113.556671,35.619776],[113.547172,35.616847],[113.542453,35.596774],[113.533016,35.594039],[113.529556,35.587787],[113.506719,35.565997],[113.506593,35.5486],[113.49854,35.532373],[113.508669,35.523427],[113.506593,35.516484],[113.491997,35.516484],[113.485392,35.520738],[113.462555,35.515555],[113.440535,35.507879],[113.416629,35.516191],[113.401404,35.50695],[113.391778,35.506852],[113.383159,35.495067],[113.390772,35.485774],[113.392093,35.472225],[113.404046,35.46151],[113.427638,35.448887],[113.447707,35.432443],[113.458843,35.413304],[113.462366,35.396853],[113.482246,35.369967],[113.476207,35.363942],[113.465952,35.363844],[113.469978,35.353214],[113.466581,35.349686],[113.480044,35.33974],[113.478157,35.327195],[113.485014,35.316265],[113.486461,35.294108],[113.511878,35.293961],[113.518798,35.288813],[113.523265,35.263656],[113.538804,35.243201],[113.54044,35.228384],[113.528172,35.220141],[113.52144,35.211504],[113.521063,35.192901],[113.532828,35.164572],[113.534967,35.151803],[113.542642,35.144632],[113.565102,35.137461],[113.564598,35.127685],[113.593852,35.131173],[113.60027,35.120709],[113.607064,35.099284],[113.620464,35.068513],[113.645503,35.038075],[113.645503,35.019236],[113.629964,35.016777],[113.634431,35.008167],[113.644371,35.004379],[113.634494,34.997687],[113.617696,34.992175],[113.60763,34.982382],[113.595299,34.961857],[113.592091,34.933743],[113.631348,34.929311],[113.650348,34.928769],[113.665069,34.918525],[113.670731,34.910299],[113.684824,34.906358],[113.716846,34.913402],[113.725528,34.917392],[113.749057,34.919017],[113.766106,34.91488],[113.777116,34.905028],[113.78649,34.890445],[113.800456,34.87995],[113.826062,34.877683],[113.870163,34.885666],[113.905331,34.901333],[113.953585,34.898082],[113.973654,34.910447],[113.985293,34.928276],[114.018385,34.958608],[114.028451,34.959346],[114.051225,34.944527],[114.080542,34.944527],[114.101869,34.954768],[114.120491,34.956638],[114.160566,34.933496],[114.172834,34.931871],[114.200704,34.939504],[114.208505,34.926602],[114.22071,34.919066],[114.226624,34.913156],[114.243988,34.905126],[114.284441,34.90823],[114.340118,34.907146],[114.350499,34.908082],[114.367233,34.918968],[114.383024,34.936894],[114.40064,34.939504],[114.417815,34.930788],[114.442728,34.914486],[114.513378,34.895273],[114.540682,34.899264],[114.557165,34.905521],[114.586608,34.912466],[114.633981,34.905225],[114.660279,34.898722],[114.679593,34.909018],[114.695572,34.894387],[114.709161,34.89212],[114.724323,34.885222],[114.733886,34.888474],[114.76119,34.89148],[114.774779,34.901382],[114.778994,34.916751],[114.768173,34.927882],[114.74175,34.948712],[114.741435,34.960675],[114.756597,34.97559],[114.765908,34.977707],[114.800384,35.006691],[114.815861,35.014022],[114.824668,35.0123],[114.838635,35.018154],[114.852664,35.029124],[114.850903,35.041911],[114.833979,35.042157],[114.819258,35.051796],[114.83184,35.074167],[114.861158,35.082966],[114.876256,35.091126],[114.882925,35.098743],[114.883554,35.109653],[114.872545,35.126015],[114.860654,35.137412],[114.841718,35.151165],[114.841026,35.159219],[114.850274,35.172625],[114.861661,35.182395],[114.876571,35.189023],[114.909348,35.194521],[114.928285,35.194766],[114.9325,35.198644],[114.929732,35.248205],[114.954645,35.255465],[114.957728,35.261155],[114.975595,35.261547],[114.975784,35.270277],[114.963579,35.273759],[114.98025,35.294696],[115.003151,35.316363],[115.014538,35.318128],[115.017243,35.337437],[114.976979,35.352381],[114.968171,35.354389],[114.960873,35.369722],[114.951248,35.380791]]]]}},{"type":"Feature","properties":{"adcode":410800,"name":"焦作市","center":[113.238266,35.23904],"centroid":[113.137719,35.114644],"childrenNum":10,"level":"city","parent":{"adcode":410000},"subFeatureIndex":7,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.827266,34.819218],[112.838653,34.812116],[112.853501,34.810736],[112.866461,34.829524],[112.873192,34.832827],[112.879106,34.849688],[112.884516,34.853089],[112.902321,34.852301],[112.914148,34.84747],[112.938181,34.831595],[112.943025,34.831102],[112.976117,34.847765],[112.989077,34.856343],[112.992851,34.863539],[113.004364,34.864081],[113.025063,34.854913],[113.039595,34.841948],[113.06023,34.83756],[113.107666,34.844709],[113.119431,34.853977],[113.14793,34.856096],[113.139815,34.884631],[113.179512,34.893697],[113.197631,34.900299],[113.227703,34.908427],[113.236951,34.925174],[113.239342,34.939504],[113.243934,34.946201],[113.260543,34.953586],[113.28986,34.952601],[113.315277,34.942212],[113.333018,34.944871],[113.343462,34.950533],[113.362587,34.970323],[113.37561,34.98002],[113.407821,34.989518],[113.427198,34.983563],[113.429463,34.964761],[113.449658,34.960232],[113.477339,34.957278],[113.495835,34.959937],[113.515086,34.965992],[113.543271,34.96801],[113.552582,34.965155],[113.57479,34.950583],[113.592091,34.933743],[113.595299,34.961857],[113.60763,34.982382],[113.617696,34.992175],[113.634494,34.997687],[113.644371,35.004379],[113.634431,35.008167],[113.629964,35.016777],[113.645503,35.019236],[113.645503,35.038075],[113.620464,35.068513],[113.607064,35.099284],[113.60027,35.120709],[113.593852,35.131173],[113.564598,35.127685],[113.565102,35.137461],[113.542642,35.144632],[113.534967,35.151803],[113.532828,35.164572],[113.521063,35.192901],[113.52144,35.211504],[113.528172,35.220141],[113.54044,35.228384],[113.538804,35.243201],[113.523265,35.263656],[113.518798,35.288813],[113.511878,35.293961],[113.486461,35.294108],[113.485014,35.316265],[113.478157,35.327195],[113.480044,35.33974],[113.466581,35.349686],[113.469978,35.353214],[113.465952,35.363844],[113.476207,35.363942],[113.482246,35.369967],[113.462366,35.396853],[113.458843,35.413304],[113.447707,35.432443],[113.427638,35.448887],[113.404046,35.46151],[113.392093,35.472225],[113.390772,35.485774],[113.383159,35.495067],[113.370766,35.4801],[113.357743,35.479415],[113.34818,35.46836],[113.325909,35.469289],[113.31232,35.481274],[113.295522,35.47154],[113.294705,35.467284],[113.309426,35.466158],[113.322197,35.461559],[113.323959,35.453339],[113.315151,35.451871],[113.306406,35.460777],[113.299486,35.450208],[113.297347,35.438512],[113.304393,35.42701],[113.27841,35.435135],[113.265387,35.434597],[113.262116,35.440763],[113.253497,35.440274],[113.244815,35.448446],[113.230031,35.453242],[113.208515,35.447272],[113.190019,35.449082],[113.190962,35.434107],[113.184482,35.424759],[113.188572,35.415654],[113.185237,35.409045],[113.175737,35.414528],[113.164224,35.408555],[113.167056,35.400232],[113.177247,35.397833],[113.170138,35.386717],[113.154662,35.380889],[113.154159,35.36933],[113.148748,35.370163],[113.148874,35.351205],[113.136669,35.347334],[113.13799,35.336261],[113.12654,35.332242],[113.107603,35.340818],[113.096216,35.337388],[113.084074,35.340524],[113.067151,35.353557],[113.060608,35.352283],[113.039658,35.360219],[113.020218,35.356006],[112.998199,35.362472],[112.990838,35.355712],[112.994047,35.345424],[112.985302,35.338123],[112.986309,35.316608],[112.99153,35.302344],[112.988951,35.28999],[112.982785,35.287244],[112.964667,35.293127],[112.948184,35.285969],[112.936042,35.2844],[112.936671,35.271895],[112.929687,35.256888],[112.907102,35.245801],[112.893639,35.248647],[112.884705,35.244232],[112.868096,35.243888],[112.857087,35.247371],[112.855136,35.253307],[112.822233,35.258114],[112.798264,35.238688],[112.784423,35.234567],[112.784926,35.222938],[112.767248,35.204093],[112.758,35.204436],[112.76687,35.182985],[112.761963,35.158041],[112.766304,35.107196],[112.754288,35.098891],[112.753219,35.08508],[112.743341,35.06458],[112.736043,35.060008],[112.735289,35.043338],[112.72711,35.035026],[112.698988,35.023221],[112.684581,35.012497],[112.675962,34.993504],[112.666462,34.9875],[112.653062,34.988681],[112.644695,34.978888],[112.624752,34.977903],[112.614182,34.98002],[112.596001,34.971013],[112.579392,34.971751],[112.5692,34.958608],[112.571654,34.948761],[112.578134,34.944083],[112.579329,34.933398],[112.585369,34.926503],[112.618209,34.920298],[112.638404,34.919756],[112.638152,34.896998],[112.642115,34.895717],[112.636328,34.88266],[112.638215,34.854174],[112.656648,34.859645],[112.676088,34.853188],[112.696723,34.840617],[112.72214,34.828833],[112.753281,34.828587],[112.773288,34.835884],[112.78782,34.83761],[112.813363,34.832877],[112.827266,34.819218]]]]}},{"type":"Feature","properties":{"adcode":410900,"name":"濮阳市","center":[115.041299,35.768234],"centroid":[115.287416,35.809288],"childrenNum":6,"level":"city","parent":{"adcode":410000},"subFeatureIndex":8,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.017243,35.337437],[115.025359,35.346354],[115.03511,35.368302],[115.043226,35.376971],[115.057758,35.378489],[115.075437,35.375159],[115.088648,35.392985],[115.084811,35.410073],[115.091605,35.416045],[115.105886,35.403953],[115.11482,35.4041],[115.118343,35.416388],[115.11784,35.400134],[115.126584,35.408751],[115.126459,35.418053],[115.136902,35.421528],[115.167666,35.426129],[115.189497,35.42515],[115.197927,35.420696],[115.209817,35.423094],[115.237373,35.423094],[115.257505,35.435576],[115.272604,35.448299],[115.270842,35.456813],[115.286696,35.464495],[115.307143,35.480002],[115.339102,35.490665],[115.355774,35.490127],[115.357976,35.506559],[115.350301,35.52944],[115.353509,35.540585],[115.360492,35.543273],[115.34596,35.546987],[115.345079,35.553634],[115.357976,35.554709],[115.359234,35.56546],[115.369489,35.559743],[115.370747,35.57103],[115.383267,35.56888],[115.38377,35.577674],[115.389747,35.577332],[115.394465,35.586907],[115.411892,35.603612],[115.416233,35.624025],[115.439384,35.643455],[115.45247,35.660734],[115.461467,35.680839],[115.485939,35.710157],[115.511545,35.727129],[115.524127,35.726349],[115.533249,35.734151],[115.552815,35.730347],[115.562504,35.738637],[115.583076,35.730591],[115.588927,35.738539],[115.619502,35.739222],[115.665114,35.751069],[115.69355,35.754091],[115.698268,35.768421],[115.696255,35.788889],[115.704434,35.788938],[115.706384,35.8056],[115.717394,35.802726],[115.720288,35.817096],[115.7279,35.815635],[115.73482,35.832925],[115.753128,35.832925],[115.752876,35.838379],[115.76376,35.838379],[115.773386,35.854155],[115.816795,35.844271],[115.821325,35.852694],[115.841331,35.850016],[115.840891,35.857173],[115.863099,35.855518],[115.865489,35.868613],[115.872598,35.872799],[115.871403,35.858342],[115.875115,35.859218],[115.876058,35.875038],[115.882853,35.879857],[115.88323,35.895381],[115.889081,35.897522],[115.88474,35.909102],[115.87241,35.909346],[115.875115,35.920194],[115.907829,35.926858],[115.909968,35.935759],[115.906319,35.945388],[115.911856,35.960268],[115.957656,35.967998],[115.985148,35.974123],[116.008489,35.973103],[116.038561,35.963428],[116.04869,35.970283],[116.05259,35.999155],[116.062845,36.02889],[116.073666,36.026121],[116.079517,36.042637],[116.076057,36.056915],[116.087129,36.071385],[116.087758,36.080949],[116.096881,36.092163],[116.099334,36.112061],[116.057435,36.104927],[116.02881,36.072308],[116.016416,36.061383],[115.989804,36.045454],[115.964073,36.041617],[115.935888,36.031416],[115.922928,36.021555],[115.913806,36.020243],[115.896002,36.026219],[115.872221,36.016696],[115.859701,36.003723],[115.846238,36.004986],[115.837493,36.011012],[115.817298,36.012761],[115.797481,36.006978],[115.779866,35.99376],[115.786723,35.991233],[115.774518,35.981901],[115.774707,35.974512],[115.764326,35.970964],[115.736016,35.966929],[115.717897,35.971401],[115.698709,35.966053],[115.687007,35.955211],[115.68405,35.944367],[115.651776,35.928901],[115.642402,35.920048],[115.607297,35.925837],[115.583768,35.921702],[115.548223,35.898009],[115.503429,35.888714],[115.460082,35.867737],[115.433848,35.839061],[115.432841,35.83385],[115.417931,35.824987],[115.407614,35.808669],[115.370936,35.78884],[115.363512,35.779923],[115.335013,35.796733],[115.335705,35.81432],[115.344072,35.83872],[115.349608,35.860971],[115.338158,35.864719],[115.343632,35.872118],[115.356906,35.87022],[115.364267,35.894019],[115.367413,35.92034],[115.364141,35.929485],[115.354138,35.93751],[115.356529,35.954628],[115.363135,35.972033],[115.386286,35.974464],[115.395975,35.991671],[115.419693,36.004743],[115.443096,36.008874],[115.447752,36.012664],[115.448884,36.047397],[115.441586,36.05575],[115.459579,36.063374],[115.455112,36.071288],[115.459768,36.080415],[115.466374,36.079687],[115.484241,36.125842],[115.483549,36.148982],[115.46996,36.152862],[115.46392,36.17129],[115.451275,36.169739],[115.449639,36.150146],[115.431332,36.149176],[115.423656,36.140347],[115.407802,36.139571],[115.404594,36.155626],[115.400127,36.14025],[115.392641,36.129189],[115.377919,36.12851],[115.369237,36.102695],[115.3598,36.095318],[115.341367,36.0876],[115.333251,36.090609],[115.323248,36.086775],[115.307961,36.090706],[115.297517,36.104491],[115.301166,36.130111],[115.279335,36.137825],[115.264111,36.158827],[115.260399,36.171581],[115.242091,36.191218],[115.21334,36.203482],[115.20296,36.204063],[115.201765,36.212739],[115.189245,36.19558],[115.170686,36.190975],[115.156845,36.194708],[115.156657,36.201882],[115.142879,36.209686],[115.124949,36.209976],[115.110416,36.19941],[115.104565,36.172212],[115.099469,36.171678],[115.069523,36.179436],[115.062728,36.178224],[115.048447,36.162028],[115.049391,36.147284],[115.044987,36.130839],[115.045931,36.112207],[115.038381,36.106675],[114.998432,36.069734],[114.98931,36.065898],[114.968675,36.070414],[114.954582,36.067792],[114.933381,36.054876],[114.932123,36.050068],[114.920798,36.048319],[114.94244,36.03812],[114.968926,36.032971],[114.983962,36.02583],[114.983396,36.019417],[114.974211,36.012226],[114.974274,35.999009],[114.980376,36.003334],[114.986164,35.991865],[114.983333,35.982922],[114.988366,35.964741],[114.98025,35.949814],[114.972324,35.923259],[114.97786,35.904723],[114.970814,35.890223],[114.969996,35.881366],[114.959112,35.862723],[114.953009,35.85766],[114.935646,35.853814],[114.933003,35.84505],[114.93401,35.828055],[114.94546,35.82523],[114.948669,35.819629],[114.943573,35.799754],[114.921365,35.780118],[114.908405,35.765741],[114.893746,35.764132],[114.887832,35.753506],[114.889594,35.738978],[114.907776,35.722594],[114.915514,35.706743],[114.910544,35.700939],[114.918408,35.687962],[114.919226,35.664785],[114.911047,35.660685],[114.905888,35.649606],[114.890034,35.646823],[114.875502,35.628907],[114.874432,35.623878],[114.883051,35.616065],[114.884813,35.599852],[114.90853,35.585979],[114.952884,35.581094],[114.962006,35.571421],[114.968423,35.537554],[114.969492,35.518],[114.964334,35.504749],[114.953324,35.501815],[114.940616,35.491448],[114.93942,35.481225],[114.947347,35.478144],[114.970751,35.480785],[114.967668,35.456716],[114.96188,35.446146],[114.96383,35.440665],[114.981509,35.434107],[114.985787,35.414332],[114.967605,35.399204],[114.951248,35.380791],[114.960873,35.369722],[114.968171,35.354389],[114.976979,35.352381],[115.017243,35.337437]]],[[[115.504939,35.899079],[115.51079,35.907983],[115.505442,35.914405],[115.490721,35.908372],[115.490343,35.899858],[115.497264,35.895041],[115.504939,35.899079]]]]}},{"type":"Feature","properties":{"adcode":411000,"name":"许昌市","center":[113.826063,34.022956],"centroid":[113.715606,34.071457],"childrenNum":6,"level":"city","parent":{"adcode":410000},"subFeatureIndex":9,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.259905,34.251854],[114.246442,34.240433],[114.210267,34.241228],[114.202906,34.234623],[114.198314,34.217737],[114.160503,34.213564],[114.155345,34.202039],[114.129299,34.198214],[114.122882,34.204176],[114.109544,34.206958],[114.108475,34.218929],[114.102058,34.224343],[114.10816,34.228813],[114.098661,34.241923],[114.081926,34.24952],[114.076453,34.239639],[114.068589,34.250265],[114.058837,34.244753],[114.050847,34.247137],[114.041033,34.237851],[114.011275,34.242022],[114.00316,34.252549],[114.000266,34.263471],[113.990577,34.261138],[113.992905,34.27335],[113.977303,34.275583],[113.972459,34.283426],[113.96472,34.283128],[113.964406,34.292954],[113.937354,34.298612],[113.934271,34.304864],[113.916278,34.301688],[113.904702,34.294543],[113.896083,34.303375],[113.899229,34.315879],[113.894573,34.323767],[113.885451,34.327785],[113.880481,34.32972],[113.85022,34.32719],[113.848584,34.322725],[113.832353,34.32342],[113.803791,34.33721],[113.791208,34.331803],[113.793159,34.328083],[113.777242,34.314589],[113.756732,34.313795],[113.736852,34.317863],[113.727227,34.305757],[113.713386,34.301391],[113.71326,34.29092],[113.7003,34.289381],[113.70332,34.276725],[113.679728,34.282532],[113.669851,34.275385],[113.658589,34.275037],[113.643994,34.288488],[113.634494,34.290026],[113.624805,34.303375],[113.608951,34.3132],[113.600836,34.313299],[113.579697,34.319897],[113.566737,34.318359],[113.556608,34.311513],[113.529619,34.317913],[113.516848,34.328579],[113.518169,34.335771],[113.510871,34.342715],[113.498729,34.338598],[113.482875,34.342864],[113.471425,34.330811],[113.459409,34.334432],[113.429085,34.350303],[113.414175,34.349361],[113.406751,34.355213],[113.414867,34.374947],[113.401655,34.377525],[113.389828,34.375988],[113.366991,34.379805],[113.370388,34.389918],[113.353968,34.396411],[113.348809,34.404738],[113.32528,34.404986],[113.315969,34.391157],[113.320436,34.383375],[113.314019,34.373856],[113.314648,34.352287],[113.276586,34.351444],[113.276334,34.342814],[113.267904,34.337805],[113.235567,34.339045],[113.224557,34.33473],[113.223362,34.325057],[113.210276,34.312009],[113.196436,34.312257],[113.18379,34.295634],[113.184356,34.290225],[113.175297,34.281639],[113.15202,34.266351],[113.142583,34.272804],[113.109365,34.263471],[113.097726,34.26223],[113.082439,34.26645],[113.077343,34.262677],[113.070171,34.247186],[113.066962,34.223647],[113.075392,34.215502],[113.094203,34.21118],[113.103892,34.205418],[113.106094,34.198115],[113.101941,34.18778],[113.103011,34.176798],[113.118047,34.156818],[113.129811,34.145733],[113.126477,34.134696],[113.130629,34.124105],[113.146483,34.117939],[113.150384,34.108141],[113.157493,34.103118],[113.177876,34.101228],[113.210654,34.107445],[113.222355,34.102422],[113.227137,34.092523],[113.235064,34.091926],[113.241166,34.097945],[113.240097,34.108539],[113.252113,34.114308],[113.257398,34.112319],[113.264381,34.098542],[113.278914,34.100134],[113.283129,34.086802],[113.30043,34.082623],[113.331949,34.063268],[113.320687,34.054858],[113.334528,34.027183],[113.345034,34.029075],[113.346104,34.03928],[113.35466,34.043112],[113.368626,34.039877],[113.386368,34.039827],[113.395742,34.031315],[113.402222,34.002687],[113.41342,33.987049],[113.412665,33.952028],[113.410715,33.943308],[113.386116,33.927808],[113.381586,33.912007],[113.365481,33.890519],[113.360762,33.879997],[113.36762,33.862691],[113.384669,33.843286],[113.385802,33.834854],[113.38102,33.815542],[113.386053,33.801817],[113.393351,33.797873],[113.372401,33.785593],[113.425814,33.762175],[113.434873,33.765371],[113.448211,33.75868],[113.451042,33.739301],[113.489481,33.746094],[113.504014,33.751238],[113.51798,33.750439],[113.544341,33.757131],[113.549373,33.750489],[113.573091,33.752137],[113.576552,33.736304],[113.58775,33.727062],[113.580767,33.715171],[113.585485,33.711024],[113.6087,33.709175],[113.596746,33.698081],[113.598256,33.687536],[113.612475,33.695732],[113.629335,33.688885],[113.637954,33.695532],[113.637388,33.702679],[113.645063,33.695932],[113.670983,33.699081],[113.684257,33.693833],[113.701936,33.691234],[113.70678,33.693683],[113.710303,33.707876],[113.716406,33.710624],[113.724018,33.695632],[113.741822,33.702329],[113.74371,33.713422],[113.75906,33.717519],[113.762206,33.731808],[113.750378,33.7398],[113.737167,33.741948],[113.734399,33.752337],[113.742703,33.76672],[113.752895,33.771463],[113.752958,33.791484],[113.761262,33.807756],[113.759312,33.827918],[113.731127,33.835652],[113.729554,33.845032],[113.722445,33.848624],[113.725528,33.856406],[113.735908,33.859199],[113.738802,33.868627],[113.760318,33.868477],[113.773719,33.877654],[113.76554,33.883638],[113.77806,33.884934],[113.78303,33.880945],[113.797814,33.883887],[113.806936,33.880995],[113.811969,33.885782],[113.813353,33.88638],[113.818009,33.88663],[113.820148,33.890669],[113.824363,33.89022],[113.826565,33.875808],[113.853051,33.873315],[113.861481,33.884486],[113.860097,33.907222],[113.871296,33.909615],[113.857455,33.939769],[113.859783,33.94859],[113.870226,33.945401],[113.885765,33.948988],[113.88803,33.943407],[113.90055,33.943009],[113.901305,33.94849],[113.916341,33.945849],[113.922066,33.957409],[113.951949,33.97365],[113.977492,33.98152],[113.99907,33.981819],[114.021971,33.987248],[114.037762,33.986053],[114.053867,33.978781],[114.059152,33.96538],[114.057453,33.952875],[114.064877,33.949237],[114.076704,33.952676],[114.087336,33.934686],[114.103882,33.934736],[114.103757,33.925815],[114.114515,33.928058],[114.125902,33.915547],[114.128418,33.885433],[114.116465,33.872068],[114.115081,33.863788],[114.132445,33.853613],[114.145971,33.841939],[114.159623,33.816191],[114.15503,33.809304],[114.161447,33.79982],[114.178308,33.806409],[114.179503,33.799321],[114.190638,33.801917],[114.19888,33.797374],[114.211525,33.798123],[114.217565,33.793131],[114.242604,33.790785],[114.249776,33.779252],[114.290354,33.771813],[114.309983,33.781349],[114.313066,33.80012],[114.325082,33.818337],[114.323383,33.832908],[114.316085,33.833207],[114.310738,33.842637],[114.301301,33.842188],[114.301112,33.852365],[114.312122,33.853263],[114.315834,33.865734],[114.311304,33.87142],[114.3164,33.880446],[114.305642,33.889572],[114.299917,33.953024],[114.31036,33.96],[114.307026,33.978233],[114.312248,33.98162],[114.311745,34.001492],[114.295324,34.007467],[114.287523,34.022902],[114.281987,34.046597],[114.271103,34.053813],[114.270411,34.063219],[114.262107,34.095856],[114.273431,34.102571],[114.273808,34.107545],[114.285133,34.120873],[114.28746,34.137033],[114.275255,34.174661],[114.276199,34.190811],[114.287649,34.206958],[114.286013,34.218234],[114.273053,34.227869],[114.272676,34.24237],[114.259905,34.251854]]],[[[113.813353,33.88638],[113.811969,33.885782],[113.811718,33.879449],[113.826565,33.875808],[113.824363,33.89022],[113.820148,33.890669],[113.818009,33.88663],[113.813353,33.88638]]]]}},{"type":"Feature","properties":{"adcode":411100,"name":"漯河市","center":[114.026405,33.575855],"centroid":[113.905678,33.65448],"childrenNum":5,"level":"city","parent":{"adcode":410000},"subFeatureIndex":10,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.688347,33.407737],[113.693065,33.418216],[113.710429,33.417013],[113.713197,33.430249],[113.721187,33.432705],[113.766861,33.432154],[113.771139,33.435713],[113.799513,33.43481],[113.805804,33.446189],[113.825999,33.460723],[113.847515,33.466836],[113.856134,33.47796],[113.865508,33.479362],[113.914139,33.478511],[113.933768,33.465884],[113.94528,33.465633],[113.95434,33.473901],[113.967929,33.477408],[113.9712,33.482619],[113.981329,33.482268],[113.998693,33.500904],[114.001084,33.510671],[114.01354,33.511071],[114.014924,33.522039],[114.033735,33.523892],[114.038579,33.5296],[114.052168,33.528999],[114.055692,33.523942],[114.075572,33.517782],[114.099101,33.503108],[114.116276,33.51027],[114.118101,33.502406],[114.104071,33.499351],[114.103505,33.491586],[114.115836,33.488631],[114.130683,33.495093],[114.131501,33.472298],[114.151507,33.468139],[114.150312,33.460372],[114.159937,33.456713],[114.171639,33.459019],[114.180384,33.453656],[114.171324,33.440926],[114.190575,33.426489],[114.195294,33.447692],[114.211399,33.453757],[114.230714,33.451551],[114.247574,33.45967],[114.266636,33.461625],[114.284629,33.472548],[114.279785,33.489282],[114.283371,33.500353],[114.281106,33.513976],[114.289348,33.522089],[114.295324,33.553782],[114.282868,33.558688],[114.278653,33.57015],[114.265378,33.593219],[114.265881,33.597923],[114.279659,33.604427],[114.277332,33.621735],[114.264938,33.635239],[114.264183,33.654742],[114.260849,33.661942],[114.259842,33.680588],[114.250783,33.693233],[114.249084,33.704328],[114.214231,33.691334],[114.196489,33.690934],[114.186549,33.682538],[114.186235,33.67219],[114.169563,33.664791],[114.162265,33.669941],[114.152639,33.662242],[114.149745,33.650442],[114.125398,33.652842],[114.116402,33.651392],[114.118226,33.67159],[114.115836,33.684587],[114.097717,33.683187],[114.091489,33.71642],[114.095263,33.728061],[114.106839,33.739051],[114.10319,33.756832],[114.098032,33.765072],[114.133262,33.768118],[114.142007,33.765921],[114.139931,33.783097],[114.133703,33.791484],[114.134772,33.806409],[114.145404,33.810551],[114.15503,33.809304],[114.159623,33.816191],[114.145971,33.841939],[114.132445,33.853613],[114.115081,33.863788],[114.116465,33.872068],[114.128418,33.885433],[114.125902,33.915547],[114.114515,33.928058],[114.103757,33.925815],[114.103882,33.934736],[114.087336,33.934686],[114.076704,33.952676],[114.064877,33.949237],[114.057453,33.952875],[114.059152,33.96538],[114.053867,33.978781],[114.037762,33.986053],[114.021971,33.987248],[113.99907,33.981819],[113.977492,33.98152],[113.951949,33.97365],[113.922066,33.957409],[113.916341,33.945849],[113.901305,33.94849],[113.90055,33.943009],[113.88803,33.943407],[113.885765,33.948988],[113.870226,33.945401],[113.859783,33.94859],[113.857455,33.939769],[113.871296,33.909615],[113.860097,33.907222],[113.861481,33.884486],[113.853051,33.873315],[113.826565,33.875808],[113.811718,33.879449],[113.811969,33.885782],[113.806936,33.880995],[113.797814,33.883887],[113.78303,33.880945],[113.77806,33.884934],[113.76554,33.883638],[113.773719,33.877654],[113.760318,33.868477],[113.738802,33.868627],[113.735908,33.859199],[113.725528,33.856406],[113.722445,33.848624],[113.729554,33.845032],[113.731127,33.835652],[113.759312,33.827918],[113.761262,33.807756],[113.752958,33.791484],[113.752895,33.771463],[113.742703,33.76672],[113.734399,33.752337],[113.737167,33.741948],[113.750378,33.7398],[113.762206,33.731808],[113.75906,33.717519],[113.74371,33.713422],[113.741822,33.702329],[113.724018,33.695632],[113.716406,33.710624],[113.710303,33.707876],[113.70678,33.693683],[113.701936,33.691234],[113.684257,33.693833],[113.670983,33.699081],[113.645063,33.695932],[113.637388,33.702679],[113.637954,33.695532],[113.629335,33.688885],[113.612475,33.695732],[113.598256,33.687536],[113.596746,33.698081],[113.6087,33.709175],[113.585485,33.711024],[113.576677,33.706327],[113.584101,33.698131],[113.580515,33.681738],[113.587624,33.654642],[113.596746,33.651892],[113.619143,33.63799],[113.628203,33.629038],[113.621534,33.619885],[113.604673,33.613131],[113.579383,33.597222],[113.576803,33.592619],[113.552267,33.586715],[113.554281,33.5706],[113.563151,33.57055],[113.557363,33.553582],[113.545536,33.548626],[113.537672,33.51633],[113.533708,33.514978],[113.537609,33.498499],[113.532073,33.497347],[113.525278,33.505061],[113.510808,33.505011],[113.50307,33.500252],[113.483001,33.500152],[113.478597,33.50431],[113.484322,33.483721],[113.471803,33.463378],[113.473501,33.443683],[113.466518,33.437367],[113.468846,33.422077],[113.483945,33.421124],[113.506341,33.414607],[113.51754,33.407186],[113.526662,33.419269],[113.539811,33.419019],[113.54736,33.406433],[113.574727,33.407537],[113.589008,33.404728],[113.596809,33.41215],[113.620842,33.410946],[113.645252,33.421776],[113.651669,33.418417],[113.659407,33.424283],[113.683125,33.41952],[113.688347,33.407737]]]]}},{"type":"Feature","properties":{"adcode":411200,"name":"三门峡市","center":[111.194099,34.777338],"centroid":[111.112608,34.36205],"childrenNum":6,"level":"city","parent":{"adcode":410000},"subFeatureIndex":11,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.973358,35.070234],[111.963166,35.079329],[111.952156,35.082131],[111.928376,35.082032],[111.917618,35.071119],[111.900065,35.07982],[111.885595,35.069988],[111.86452,35.076772],[111.8615,35.074757],[111.818405,35.068464],[111.8101,35.06222],[111.812051,35.04855],[111.809534,35.036846],[111.793555,35.026664],[111.782419,35.030058],[111.768578,35.01535],[111.749138,35.016383],[111.739324,35.004231],[111.711769,35.003641],[111.69711,34.998966],[111.687107,34.988485],[111.669617,34.988189],[111.665528,34.980955],[111.67572,34.971406],[111.681697,34.950927],[111.66169,34.938815],[111.645082,34.93783],[111.621552,34.916308],[111.617652,34.89483],[111.605824,34.892367],[111.591858,34.881625],[111.589404,34.861863],[111.58305,34.852794],[111.570782,34.843329],[111.561031,34.845251],[111.554488,34.852202],[111.543982,34.853286],[111.527813,34.850132],[111.515356,34.840173],[111.508688,34.839187],[111.502648,34.829968],[111.480126,34.826023],[111.464649,34.82691],[111.45062,34.836624],[111.439358,34.838152],[111.430991,34.829277],[111.415389,34.827453],[111.39532,34.814878],[111.35537,34.823064],[111.3504,34.829376],[111.340334,34.831299],[111.322656,34.819711],[111.30611,34.815223],[111.294157,34.807678],[111.282141,34.809453],[111.268048,34.817936],[111.255214,34.819563],[111.249112,34.81404],[111.239864,34.793571],[111.223443,34.789427],[111.209414,34.80097],[111.177769,34.803979],[111.168144,34.813201],[111.16072,34.814582],[111.148515,34.80748],[111.129767,34.779955],[111.124419,34.761698],[111.118254,34.756566],[111.066414,34.751581],[111.035336,34.740871],[111.018475,34.732282],[110.976324,34.70646],[110.963993,34.70641],[110.952354,34.720581],[110.935494,34.730505],[110.919766,34.730258],[110.915739,34.723247],[110.917438,34.71357],[110.903723,34.668823],[110.893469,34.651629],[110.883717,34.644117],[110.861572,34.639719],[110.853205,34.635271],[110.83452,34.617526],[110.824328,34.615845],[110.816023,34.622618],[110.808222,34.6371],[110.791865,34.649751],[110.76129,34.653506],[110.749148,34.652271],[110.741158,34.639225],[110.732728,34.633195],[110.712659,34.607837],[110.706367,34.60398],[110.653521,34.608034],[110.610992,34.607293],[110.594509,34.60314],[110.547388,34.583558],[110.53317,34.583459],[110.488502,34.610753],[110.475857,34.610457],[110.465602,34.605463],[110.437732,34.597849],[110.424835,34.588454],[110.407723,34.589245],[110.379161,34.600519],[110.367207,34.566792],[110.376141,34.563082],[110.399355,34.562834],[110.404514,34.557591],[110.372744,34.544332],[110.362048,34.526419],[110.360476,34.51761],[110.368843,34.493206],[110.378217,34.486423],[110.379727,34.478501],[110.393442,34.464833],[110.395266,34.453937],[110.401998,34.447101],[110.402941,34.433478],[110.40961,34.429069],[110.409484,34.421587],[110.431,34.409446],[110.458178,34.402409],[110.467427,34.409743],[110.47592,34.409149],[110.473718,34.393239],[110.489446,34.355312],[110.50272,34.345195],[110.503287,34.334283],[110.498128,34.320096],[110.473844,34.322973],[110.465854,34.305906],[110.449308,34.291466],[110.431315,34.290374],[110.426471,34.27608],[110.432573,34.272903],[110.442513,34.253989],[110.439682,34.243413],[110.48976,34.232339],[110.507879,34.217588],[110.52411,34.219674],[110.551414,34.212819],[110.557139,34.193395],[110.589099,34.190264],[110.587715,34.178687],[110.62175,34.177444],[110.634144,34.169791],[110.641945,34.160894],[110.639114,34.150903],[110.624204,34.137331],[110.628545,34.133055],[110.618164,34.124055],[110.614012,34.113712],[110.591804,34.101676],[110.595138,34.064761],[110.58847,34.061676],[110.589728,34.038583],[110.586645,34.023997],[110.612062,34.024246],[110.619486,34.035646],[110.631502,34.025541],[110.628104,34.019019],[110.634459,34.01633],[110.638925,34.004977],[110.649558,33.992278],[110.65176,33.969665],[110.670948,33.966427],[110.675603,33.946596],[110.669564,33.939271],[110.650501,33.93673],[110.626028,33.924619],[110.62584,33.90782],[110.61181,33.908069],[110.592182,33.900591],[110.587274,33.887727],[110.600612,33.87127],[110.612943,33.867429],[110.612125,33.852515],[110.627664,33.84573],[110.649495,33.84598],[110.667928,33.852166],[110.684914,33.838796],[110.712596,33.833607],[110.722725,33.818886],[110.725996,33.807707],[110.741347,33.798822],[110.753677,33.799471],[110.765568,33.795028],[110.782177,33.796076],[110.78419,33.782398],[110.7991,33.775508],[110.80753,33.757281],[110.815898,33.753036],[110.816841,33.737353],[110.832192,33.712823],[110.823195,33.692834],[110.825397,33.684137],[110.833199,33.677789],[110.841818,33.663241],[110.857734,33.657792],[110.87881,33.634639],[110.89976,33.632989],[110.90473,33.628638],[110.940841,33.620035],[110.951411,33.609029],[110.966573,33.609179],[110.979658,33.595871],[111.003691,33.578658],[111.009982,33.56054],[111.025144,33.550578],[111.058425,33.555534],[111.070063,33.566346],[111.089126,33.563743],[111.102903,33.573903],[111.114542,33.578758],[111.123224,33.598623],[111.133982,33.612381],[111.134674,33.627437],[111.143922,33.633189],[111.152101,33.645441],[111.146439,33.658592],[111.140273,33.661292],[111.133164,33.678939],[111.141406,33.678739],[111.151598,33.684787],[111.170471,33.682138],[111.181292,33.686886],[111.186199,33.704128],[111.195196,33.713272],[111.197209,33.732207],[111.194441,33.745494],[111.196077,33.757731],[111.208533,33.781948],[111.222437,33.797574],[111.234831,33.801268],[111.240367,33.796925],[111.260813,33.796775],[111.261568,33.822878],[111.240304,33.842488],[111.232062,33.856805],[111.216397,33.865135],[111.21948,33.872766],[111.203689,33.883438],[111.206017,33.891616],[111.212811,33.884087],[111.234516,33.894857],[111.234768,33.901738],[111.226652,33.913104],[111.230049,33.924768],[111.239989,33.933141],[111.259366,33.929852],[111.276793,33.935533],[111.29013,33.926662],[111.303342,33.928207],[111.305921,33.941364],[111.324795,33.963039],[111.344109,33.973351],[111.356,33.984509],[111.353609,33.996263],[111.355119,34.015185],[111.342285,34.037936],[111.342096,34.056053],[111.354301,34.084464],[111.367198,34.092473],[111.358768,34.108788],[111.344738,34.109037],[111.334735,34.115601],[111.313408,34.116546],[111.306362,34.125149],[111.305292,34.140165],[111.296925,34.145137],[111.281889,34.138524],[111.276856,34.148318],[111.267922,34.146528],[111.253201,34.15309],[111.248671,34.162882],[111.234516,34.178537],[111.214699,34.181221],[111.207401,34.197419],[111.175819,34.209541],[111.158958,34.223101],[111.166571,34.228962],[111.180915,34.230203],[111.187772,34.250265],[111.182488,34.256421],[111.181921,34.27876],[111.191547,34.301837],[111.185444,34.31697],[111.16915,34.334878],[111.166634,34.344798],[111.159839,34.350799],[111.141217,34.353031],[111.138449,34.35675],[111.141217,34.373113],[111.147949,34.38853],[111.156819,34.394677],[111.171415,34.394974],[111.188967,34.399286],[111.191232,34.41792],[111.197712,34.418762],[111.21344,34.429812],[111.213252,34.437441],[111.220235,34.457949],[111.227533,34.459732],[111.244708,34.453788],[111.272012,34.447547],[111.271383,34.470677],[111.289313,34.485581],[111.300008,34.488948],[111.306676,34.474193],[111.324732,34.471717],[111.344424,34.472955],[111.358642,34.480333],[111.370595,34.473301],[111.385065,34.473103],[111.394816,34.482016],[111.418346,34.490829],[111.451689,34.505928],[111.45754,34.512561],[111.484655,34.525528],[111.489437,34.533842],[111.5029,34.545074],[111.525045,34.54829],[111.538634,34.543342],[111.544736,34.544925],[111.562037,34.558728],[111.574305,34.564467],[111.584434,34.556057],[111.594437,34.565308],[111.608089,34.56229],[111.619099,34.55576],[111.670058,34.540571],[111.683584,34.533298],[111.692643,34.535673],[111.681445,34.547647],[111.672008,34.572232],[111.687044,34.571886],[111.696292,34.575744],[111.702835,34.584943],[111.740079,34.600272],[111.758764,34.597454],[111.764112,34.609171],[111.778393,34.608331],[111.797078,34.626028],[111.811296,34.633887],[111.821362,34.634431],[111.823752,34.646242],[111.830736,34.649207],[111.863953,34.647082],[111.888867,34.61891],[111.905664,34.6198],[111.928879,34.600272],[111.94165,34.620492],[111.943223,34.629637],[111.953666,34.639521],[111.967444,34.64308],[111.971408,34.65069],[111.980089,34.654],[111.972855,34.66739],[111.984997,34.686013],[111.982921,34.695052],[111.993238,34.693866],[111.997642,34.717125],[112.01488,34.724235],[112.014125,34.731048],[111.995692,34.736823],[112.000536,34.745017],[111.997831,34.750693],[112.011042,34.750644],[112.019347,34.762587],[112.017459,34.769939],[112.031174,34.777735],[112.028784,34.778968],[112.021171,34.777537],[112.018466,34.785678],[112.030231,34.782668],[112.031992,34.782965],[112.030105,34.792584],[112.016327,34.797073],[112.012804,34.803781],[112.020731,34.811327],[112.01444,34.817985],[111.986003,34.837856],[111.982858,34.846139],[111.990722,34.853779],[111.981411,34.857624],[111.957944,34.851167],[111.948948,34.852301],[111.949829,34.863391],[111.922336,34.883941],[111.898744,34.885912],[111.883267,34.894239],[111.88396,34.911974],[111.890062,34.920347],[111.906168,34.929606],[111.921707,34.934038],[111.933975,34.947678],[111.950835,34.947776],[111.981914,34.960626],[111.983235,34.970471],[111.961153,34.975689],[111.95763,34.986221],[111.967192,34.989912],[111.981033,34.990059],[111.978139,34.997195],[111.991917,35.005018],[111.967067,35.014169],[111.940203,35.030599],[111.939511,35.0366],[111.958573,35.0486],[111.958699,35.062908],[111.973358,35.070234]]],[[[112.031992,34.782965],[112.030231,34.782668],[112.028784,34.778968],[112.031174,34.777735],[112.031992,34.782965]]]]}},{"type":"Feature","properties":{"adcode":411300,"name":"南阳市","center":[112.540918,32.999082],"centroid":[112.288385,33.044723],"childrenNum":13,"level":"city","parent":{"adcode":410000},"subFeatureIndex":12,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.009982,33.56054],[111.003691,33.548075],[111.003565,33.533105],[111.019482,33.520837],[111.027346,33.493139],[111.027346,33.469542],[111.020866,33.45085],[110.996708,33.435963],[111.011429,33.407336],[111.011052,33.398861],[111.017406,33.385019],[111.026151,33.375338],[111.02722,33.365506],[111.023005,33.35487],[111.029988,33.339415],[111.026025,33.330382],[111.000356,33.323957],[110.999476,33.313416],[111.007969,33.303678],[110.998469,33.301418],[110.997903,33.290975],[110.991297,33.276112],[110.982867,33.270085],[110.997022,33.254766],[110.985006,33.255419],[110.997274,33.238941],[111.01231,33.233113],[111.016714,33.223968],[111.030366,33.214571],[111.032442,33.209345],[111.051441,33.20065],[111.057858,33.183609],[111.037223,33.160984],[111.045527,33.158168],[111.061885,33.174006],[111.073272,33.180643],[111.088811,33.182051],[111.0985,33.176923],[111.106678,33.164453],[111.128257,33.154547],[111.132032,33.137749],[111.139267,33.134379],[111.146313,33.123815],[111.162544,33.124268],[111.179531,33.115463],[111.177014,33.101174],[111.190918,33.086731],[111.192868,33.071631],[111.167829,33.06398],[111.15078,33.053206],[111.148263,33.042381],[111.152982,33.039712],[111.179845,33.043942],[111.189345,33.038655],[111.221682,33.042633],[111.24043,33.037194],[111.240556,33.019971],[111.2588,33.006472],[111.269495,32.987831],[111.273647,32.971858],[111.267797,32.963744],[111.253138,32.955781],[111.245526,32.944188],[111.24282,32.930627],[111.24993,32.91424],[111.246344,32.888518],[111.2549,32.884029],[111.269621,32.898455],[111.280127,32.904355],[111.290697,32.892554],[111.289879,32.86506],[111.293528,32.859409],[111.316365,32.85078],[111.331275,32.841142],[111.358642,32.837003],[111.380032,32.828827],[111.385065,32.821305],[111.396138,32.794547],[111.405637,32.782529],[111.404128,32.77561],[111.41023,32.769347],[111.413564,32.757174],[111.422938,32.751011],[111.437597,32.750253],[111.447285,32.754951],[111.448229,32.761467],[111.46295,32.764296],[111.461063,32.771671],[111.468172,32.770862],[111.475659,32.758437],[111.469808,32.753638],[111.46899,32.738633],[111.456974,32.72696],[111.444391,32.736713],[111.441749,32.726758],[111.431494,32.735045],[111.425455,32.73267],[111.44112,32.722816],[111.464649,32.722362],[111.472639,32.717763],[111.467858,32.707351],[111.479874,32.694664],[111.513029,32.673986],[111.526555,32.654163],[111.524793,32.647285],[111.530267,32.628316],[111.55908,32.601095],[111.57764,32.593505],[111.603685,32.610254],[111.618344,32.627608],[111.634009,32.635145],[111.640804,32.634741],[111.640804,32.617338],[111.646403,32.606206],[111.673015,32.61496],[111.69214,32.605953],[111.713593,32.60656],[111.729258,32.594011],[111.740331,32.589253],[111.747377,32.577612],[111.766817,32.56521],[111.785061,32.557312],[111.809157,32.536704],[111.827024,32.538071],[111.828219,32.531285],[111.858291,32.528702],[111.862758,32.513609],[111.870245,32.506315],[111.889936,32.503174],[111.915353,32.507733],[111.932339,32.51523],[111.948696,32.517003],[111.956434,32.512292],[111.966815,32.494916],[111.977384,32.471151],[111.992861,32.467351],[111.990407,32.457468],[112.001102,32.459444],[112.007079,32.45103],[112.014377,32.450321],[112.032495,32.462435],[112.038095,32.470087],[112.047972,32.473736],[112.064014,32.474243],[112.069865,32.460002],[112.065965,32.444643],[112.07515,32.436887],[112.086034,32.435316],[112.081315,32.425682],[112.084398,32.419699],[112.093646,32.418888],[112.108431,32.40474],[112.12441,32.398755],[112.130261,32.403117],[112.13737,32.390589],[112.156873,32.377096],[112.164485,32.385314],[112.150645,32.384198],[112.161717,32.399313],[112.146555,32.403117],[112.150204,32.411637],[112.164674,32.411282],[112.172475,32.405906],[112.172161,32.39835],[112.178829,32.392111],[112.17279,32.385162],[112.205882,32.392973],[112.229033,32.385365],[112.230921,32.377451],[112.251619,32.368116],[112.255394,32.359745],[112.261999,32.358882],[112.288297,32.345587],[112.299495,32.334929],[112.32812,32.321682],[112.329819,32.338178],[112.338627,32.34853],[112.351146,32.350459],[112.360017,32.36563],[112.368195,32.367913],[112.38795,32.363702],[112.39097,32.37116],[112.414184,32.363195],[112.417519,32.357005],[112.450422,32.342847],[112.445515,32.355584],[112.460236,32.368269],[112.472756,32.371769],[112.477222,32.380799],[112.495656,32.374915],[112.506539,32.380749],[112.521638,32.383082],[112.531201,32.377147],[112.544727,32.395509],[112.545231,32.403878],[112.561714,32.398907],[112.577819,32.387952],[112.57719,32.382524],[112.58908,32.381307],[112.59663,32.385568],[112.61198,32.387039],[112.630477,32.379937],[112.645513,32.368472],[112.672062,32.368116],[112.685651,32.357715],[112.713647,32.35259],[112.719183,32.361774],[112.73359,32.366239],[112.734911,32.351677],[112.754099,32.342847],[112.767877,32.344166],[112.77637,32.358375],[112.804052,32.372277],[112.835634,32.381611],[112.860736,32.395814],[112.870487,32.397842],[112.878603,32.392567],[112.877219,32.379531],[112.888857,32.376792],[112.902384,32.388662],[112.911883,32.390741],[112.948184,32.388256],[112.960389,32.385314],[112.969888,32.37116],[112.98807,32.372327],[112.991908,32.378314],[112.988636,32.399567],[113.00059,32.416758],[113.012543,32.417164],[113.025314,32.424618],[113.05029,32.417925],[113.058846,32.404638],[113.078915,32.394393],[113.107981,32.398502],[113.118739,32.375828],[113.150258,32.376284],[113.155606,32.380749],[113.159695,32.400784],[113.159129,32.410673],[113.172718,32.42117],[113.185678,32.42188],[113.211786,32.431969],[113.226508,32.42548],[113.236322,32.406971],[113.259537,32.390589],[113.273189,32.384756],[113.295397,32.367406],[113.298731,32.35396],[113.325217,32.346602],[113.333333,32.335945],[113.31773,32.327012],[113.31836,32.319042],[113.332074,32.316098],[113.347677,32.298633],[113.365166,32.294774],[113.376679,32.298379],[113.394106,32.288072],[113.397944,32.279286],[113.410023,32.278017],[113.420466,32.269535],[113.428834,32.270551],[113.471048,32.299141],[113.480296,32.298989],[113.500239,32.312697],[113.511689,32.316809],[113.528738,32.330362],[113.542013,32.326809],[113.550066,32.328737],[113.547675,32.316047],[113.55082,32.302543],[113.561516,32.307366],[113.556608,32.324169],[113.551261,32.329245],[113.565227,32.340208],[113.583032,32.34305],[113.579194,32.355229],[113.589637,32.349495],[113.605617,32.35056],[113.593286,32.358578],[113.593727,32.365275],[113.604233,32.365174],[113.611845,32.35873],[113.624994,32.363601],[113.624617,32.37948],[113.63657,32.385923],[113.643302,32.402559],[113.651228,32.413412],[113.662741,32.410115],[113.665006,32.422235],[113.67199,32.41762],[113.683817,32.420206],[113.6908,32.415846],[113.702187,32.420206],[113.70785,32.410318],[113.718608,32.417215],[113.710555,32.421221],[113.725339,32.436025],[113.730875,32.449307],[113.730498,32.46061],[113.73767,32.453362],[113.741319,32.465374],[113.753398,32.465425],[113.761828,32.470645],[113.764219,32.489951],[113.759375,32.508797],[113.768245,32.534425],[113.774285,32.537362],[113.763212,32.547895],[113.769126,32.559287],[113.782023,32.566172],[113.789698,32.586368],[113.805301,32.597705],[113.814423,32.600842],[113.809264,32.603828],[113.799072,32.620879],[113.785169,32.631402],[113.791963,32.642075],[113.781079,32.652595],[113.771894,32.655276],[113.761199,32.652697],[113.729114,32.669688],[113.717727,32.683694],[113.696274,32.695624],[113.668404,32.692389],[113.649089,32.708261],[113.642987,32.703106],[113.623358,32.706138],[113.614676,32.711344],[113.609832,32.696484],[113.616941,32.69158],[113.619332,32.667362],[113.594041,32.661092],[113.596243,32.649763],[113.588882,32.650421],[113.583535,32.633577],[113.571582,32.624775],[113.565416,32.602715],[113.542264,32.589152],[113.524397,32.593505],[113.513513,32.579384],[113.512759,32.571538],[113.492752,32.567741],[113.472621,32.578574],[113.458843,32.575689],[113.458528,32.585508],[113.447393,32.584698],[113.437893,32.589203],[113.422354,32.605245],[113.400712,32.61324],[113.382216,32.593353],[113.372024,32.576245],[113.364537,32.569462],[113.351577,32.573664],[113.342832,32.567893],[113.326349,32.577561],[113.321631,32.58733],[113.315717,32.587988],[113.31037,32.579536],[113.303135,32.586723],[113.282311,32.591986],[113.280486,32.595984],[113.249785,32.593555],[113.243871,32.578827],[113.221286,32.570424],[113.205432,32.569969],[113.198575,32.579536],[113.200651,32.585103],[113.196121,32.606156],[113.201783,32.614504],[113.20279,32.632262],[113.19222,32.635398],[113.186181,32.646476],[113.18788,32.652241],[113.20172,32.660333],[113.210276,32.678941],[113.220594,32.684452],[113.236196,32.679143],[113.243305,32.66984],[113.252679,32.666907],[113.258467,32.653961],[113.269351,32.662053],[113.259914,32.677778],[113.236259,32.682581],[113.241103,32.691429],[113.231226,32.701488],[113.213736,32.703055],[113.207697,32.717257],[113.191528,32.717712],[113.193982,32.733378],[113.201343,32.738835],[113.199959,32.750253],[113.177247,32.775307],[113.185237,32.788286],[113.184294,32.801364],[113.17838,32.806665],[113.187062,32.819943],[113.175737,32.83241],[113.165797,32.838063],[113.167999,32.847046],[113.177059,32.852446],[113.187062,32.866422],[113.195681,32.871871],[113.205558,32.884937],[113.201154,32.888821],[113.208137,32.916408],[113.199015,32.920291],[113.181714,32.920644],[113.161897,32.92745],[113.15592,32.936122],[113.145854,32.940306],[113.140129,32.930627],[113.11553,32.932996],[113.109805,32.94202],[113.097789,32.946406],[113.108799,32.97332],[113.116097,32.986421],[113.120312,33.001182],[113.127358,33.010552],[113.142016,33.016647],[113.161456,33.038906],[113.165546,33.048977],[113.18574,33.056932],[113.190019,33.067202],[113.206124,33.070826],[113.219273,33.064584],[113.237077,33.077017],[113.250477,33.077822],[113.257335,33.083409],[113.271427,33.08049],[113.301436,33.080138],[113.313138,33.075608],[113.325469,33.079181],[113.333836,33.085976],[113.357239,33.091613],[113.386619,33.113451],[113.388821,33.128393],[113.379888,33.135485],[113.385424,33.145595],[113.382467,33.156156],[113.385802,33.169381],[113.370136,33.182855],[113.377875,33.184313],[113.384417,33.196679],[113.384103,33.206128],[113.391212,33.225928],[113.402851,33.235224],[113.400146,33.261044],[113.384732,33.29203],[113.388318,33.299059],[113.403857,33.302724],[113.400838,33.314722],[113.40738,33.323004],[113.400397,33.335852],[113.363908,33.342476],[113.335472,33.35201],[113.312194,33.341121],[113.302632,33.348999],[113.289923,33.351709],[113.277089,33.350254],[113.270609,33.358834],[113.257964,33.366158],[113.245004,33.365356],[113.241418,33.373733],[113.230534,33.374937],[113.230912,33.38848],[113.216316,33.398861],[113.198134,33.420523],[113.192975,33.429797],[113.176052,33.435713],[113.156109,33.433607],[113.141765,33.425987],[113.128742,33.427642],[113.125659,33.439723],[113.110309,33.446138],[113.074826,33.448444],[113.045698,33.439472],[113.041357,33.44659],[113.037897,33.464331],[113.041168,33.473701],[113.053373,33.485725],[113.049221,33.492087],[113.048214,33.508317],[113.04381,33.517532],[113.047333,33.532204],[113.036261,33.539865],[113.036701,33.546974],[113.027642,33.546874],[113.022861,33.56119],[112.997255,33.569399],[112.990775,33.567797],[112.986497,33.575805],[112.972908,33.584613],[112.963597,33.583662],[112.950134,33.590968],[112.94271,33.607629],[112.917545,33.605627],[112.893513,33.616133],[112.887914,33.608329],[112.869669,33.611531],[112.854822,33.603626],[112.85262,33.584413],[112.845637,33.578107],[112.82022,33.574804],[112.81179,33.580309],[112.783668,33.567747],[112.773413,33.56079],[112.760076,33.571751],[112.750387,33.571151],[112.743215,33.578858],[112.725411,33.586765],[112.70572,33.585263],[112.689174,33.587165],[112.683889,33.591718],[112.664386,33.597673],[112.660234,33.605377],[112.646205,33.602876],[112.63444,33.594821],[112.617705,33.597272],[112.611351,33.601875],[112.610785,33.611431],[112.599775,33.618084],[112.588388,33.616883],[112.575995,33.602275],[112.556869,33.588166],[112.548502,33.59367],[112.529943,33.587915],[112.522771,33.595521],[112.524721,33.603826],[112.503394,33.622185],[112.493202,33.63899],[112.477159,33.63764],[112.461683,33.63994],[112.453756,33.645291],[112.420727,33.676389],[112.408019,33.675439],[112.392479,33.666991],[112.375116,33.666891],[112.361086,33.661242],[112.353285,33.669941],[112.332839,33.668391],[112.312455,33.684887],[112.306541,33.69978],[112.278168,33.712373],[112.258854,33.710624],[112.249354,33.719018],[112.239917,33.715321],[112.230103,33.71702],[112.214752,33.713972],[112.184995,33.698731],[112.179207,33.703278],[112.17776,33.715621],[112.168638,33.721766],[112.158509,33.720117],[112.15033,33.713672],[112.141774,33.691634],[112.13089,33.676939],[112.120573,33.668841],[112.104719,33.661392],[112.074018,33.653142],[112.071312,33.648192],[112.076345,33.633689],[112.084146,33.628988],[112.092199,33.607228],[112.087481,33.603076],[112.065713,33.607479],[112.059044,33.605227],[112.038535,33.622386],[112.024757,33.622436],[112.014943,33.613632],[112.012301,33.602626],[112.018655,33.59437],[112.024191,33.600024],[112.028343,33.593019],[112.020353,33.587715],[111.994182,33.584913],[111.930137,33.571051],[111.916359,33.572102],[111.899184,33.588666],[111.884526,33.596121],[111.863953,33.599174],[111.843444,33.595821],[111.832749,33.598723],[111.827716,33.606228],[111.82759,33.634189],[111.819411,33.652892],[111.778078,33.666091],[111.728629,33.688086],[111.719003,33.688885],[111.684968,33.677489],[111.665151,33.695582],[111.645207,33.720517],[111.619476,33.730059],[111.59148,33.727711],[111.567699,33.735005],[111.541402,33.733406],[111.523975,33.742847],[111.516048,33.7405],[111.495476,33.725663],[111.484529,33.726462],[111.469808,33.738052],[111.4342,33.747742],[111.398906,33.768168],[111.390035,33.771264],[111.348387,33.764822],[111.336245,33.768317],[111.322467,33.762974],[111.315044,33.764073],[111.304223,33.775008],[111.288558,33.779702],[111.270816,33.781699],[111.260813,33.796775],[111.240367,33.796925],[111.234831,33.801268],[111.222437,33.797574],[111.208533,33.781948],[111.196077,33.757731],[111.194441,33.745494],[111.197209,33.732207],[111.195196,33.713272],[111.186199,33.704128],[111.181292,33.686886],[111.170471,33.682138],[111.151598,33.684787],[111.141406,33.678739],[111.133164,33.678939],[111.140273,33.661292],[111.146439,33.658592],[111.152101,33.645441],[111.143922,33.633189],[111.134674,33.627437],[111.133982,33.612381],[111.123224,33.598623],[111.114542,33.578758],[111.102903,33.573903],[111.089126,33.563743],[111.070063,33.566346],[111.058425,33.555534],[111.025144,33.550578],[111.009982,33.56054]]],[[[111.033889,33.178029],[111.037789,33.184816],[111.032064,33.188686],[111.015833,33.174057],[111.033889,33.178029]]],[[[112.734093,32.356751],[112.730885,32.363144],[112.723021,32.360962],[112.734093,32.356751]]]]}},{"type":"Feature","properties":{"adcode":411400,"name":"商丘市","center":[115.650497,34.437054],"centroid":[115.702245,34.28898],"childrenNum":9,"level":"city","parent":{"adcode":410000},"subFeatureIndex":13,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.653601,34.060084],[115.66914,34.0567],[115.681848,34.065508],[115.698205,34.066403],[115.706007,34.059835],[115.735827,34.076852],[115.768856,34.062174],[115.781438,34.062223],[115.780243,34.073121],[115.793455,34.063666],[115.80912,34.062472],[115.815537,34.052867],[115.832209,34.038533],[115.845231,34.030867],[115.845483,34.012048],[115.852718,34.003832],[115.877065,34.003135],[115.876751,34.028826],[115.887257,34.032759],[115.89531,34.028727],[115.899336,34.014737],[115.904369,34.009957],[115.919783,34.010803],[115.926703,34.007865],[115.957593,34.007716],[115.967596,34.002089],[115.984016,33.987846],[115.994963,33.975095],[116.00031,33.963238],[115.995529,33.947593],[115.982695,33.917192],[115.987036,33.901189],[115.999178,33.901937],[116.012515,33.8974],[116.013459,33.885732],[116.034535,33.880047],[116.059196,33.860945],[116.056743,33.850919],[116.06511,33.847477],[116.063474,33.826222],[116.045922,33.829016],[116.045418,33.822978],[116.058064,33.821381],[116.062342,33.814494],[116.055421,33.804812],[116.073351,33.79403],[116.074421,33.781549],[116.099083,33.783097],[116.098894,33.774859],[116.109274,33.75818],[116.131671,33.752237],[116.155389,33.709924],[116.174074,33.709025],[116.197289,33.725363],[116.204964,33.726812],[116.226669,33.722466],[116.230192,33.734855],[116.246046,33.72871],[116.263598,33.730059],[116.284674,33.75009],[116.30814,33.757581],[116.316822,33.771313],[116.328712,33.76637],[116.330663,33.77386],[116.348718,33.778753],[116.361049,33.776307],[116.372499,33.780251],[116.393701,33.783097],[116.408234,33.80551],[116.42176,33.796076],[116.432581,33.795328],[116.436984,33.803065],[116.43365,33.812099],[116.437362,33.846529],[116.453027,33.846928],[116.460199,33.859948],[116.473977,33.861294],[116.484861,33.869774],[116.50191,33.864686],[116.505307,33.872317],[116.521224,33.87107],[116.525187,33.880496],[116.536889,33.882291],[116.53928,33.874212],[116.546641,33.882541],[116.558405,33.881493],[116.555071,33.888275],[116.558342,33.901688],[116.567024,33.908219],[116.58162,33.908318],[116.597096,33.904131],[116.611818,33.894658],[116.627294,33.888624],[116.642708,33.892464],[116.638492,33.917192],[116.64579,33.929902],[116.640002,33.948889],[116.65032,33.959103],[116.648055,33.973351],[116.633522,33.977087],[116.629936,33.98406],[116.607225,33.999898],[116.607414,34.007119],[116.600431,34.011749],[116.604079,34.023201],[116.596593,34.038583],[116.587408,34.04575],[116.57061,34.070981],[116.566898,34.083768],[116.557965,34.097796],[116.539657,34.103466],[116.541482,34.109932],[116.528018,34.122862],[116.534624,34.126591],[116.536008,34.151002],[116.545886,34.161043],[116.565514,34.169542],[116.5596,34.186488],[116.546263,34.194686],[116.542677,34.218879],[116.547144,34.228167],[116.543621,34.239539],[116.553938,34.241923],[116.567653,34.251258],[116.582312,34.266499],[116.582438,34.275236],[116.566458,34.284369],[116.51185,34.296478],[116.490145,34.29092],[116.466302,34.271166],[116.456865,34.26913],[116.448623,34.280348],[116.452775,34.286552],[116.445792,34.288141],[116.430693,34.278065],[116.43321,34.270123],[116.416223,34.268237],[116.406094,34.276527],[116.393952,34.276129],[116.37596,34.271315],[116.372248,34.266102],[116.363251,34.276229],[116.37338,34.293947],[116.365013,34.312406],[116.357652,34.319798],[116.329656,34.32972],[116.301597,34.34212],[116.288826,34.358932],[116.276747,34.360419],[116.270833,34.370733],[116.255608,34.376484],[116.23988,34.37455],[116.213583,34.382235],[116.209934,34.390216],[116.217043,34.395569],[116.215911,34.40335],[116.205278,34.41569],[116.179233,34.430505],[116.174955,34.444674],[116.162058,34.459385],[116.178855,34.483551],[116.178604,34.496028],[116.189487,34.497067],[116.203957,34.508651],[116.203831,34.518748],[116.190997,34.535673],[116.196345,34.555661],[116.197037,34.575942],[116.190117,34.570501],[116.156647,34.553732],[116.146896,34.553188],[116.134565,34.559718],[116.124814,34.572331],[116.117893,34.58974],[116.101284,34.60581],[116.082662,34.608331],[116.055107,34.595426],[116.037554,34.593053],[116.023902,34.601953],[116.010187,34.615845],[116.001568,34.619009],[115.991377,34.615351],[115.984771,34.607243],[115.984016,34.589295],[115.969987,34.582619],[115.946206,34.581629],[115.858317,34.569957],[115.849698,34.565604],[115.838122,34.567781],[115.838814,34.560559],[115.827427,34.558283],[115.795971,34.578464],[115.762061,34.587712],[115.724503,34.589196],[115.71148,34.59869],[115.699086,34.598838],[115.697325,34.569017],[115.684428,34.555612],[115.669455,34.556948],[115.643598,34.567731],[115.639508,34.57154],[115.621893,34.574755],[115.61038,34.572084],[115.585215,34.570996],[115.561183,34.572232],[115.554765,34.569067],[115.535137,34.573321],[115.515634,34.582619],[115.491602,34.606996],[115.479019,34.62588],[115.461404,34.637248],[115.458132,34.656175],[115.444732,34.674504],[115.44706,34.698608],[115.444921,34.710311],[115.433848,34.725074],[115.437308,34.734306],[115.449324,34.744277],[115.436553,34.776797],[115.436113,34.785037],[115.426802,34.805409],[115.413842,34.807826],[115.41617,34.8133],[115.408557,34.825924],[115.394025,34.831792],[115.37924,34.828784],[115.356969,34.837314],[115.346022,34.846188],[115.329602,34.851463],[115.317146,34.859201],[115.302361,34.858807],[115.28959,34.85161],[115.267445,34.853533],[115.256058,34.845301],[115.267256,34.831249],[115.256561,34.81187],[115.242658,34.813497],[115.253919,34.805014],[115.24832,34.798109],[115.202897,34.805656],[115.198367,34.795297],[115.17899,34.800279],[115.17553,34.790463],[115.163891,34.783063],[115.154455,34.78178],[115.140048,34.793324],[115.119601,34.788638],[115.104125,34.772357],[115.038885,34.773985],[115.030329,34.772455],[115.001012,34.760662],[114.988366,34.76456],[114.980502,34.760909],[114.966913,34.761106],[114.936841,34.747041],[114.922874,34.748423],[114.894375,34.762833],[114.877578,34.775219],[114.867386,34.775515],[114.86682,34.769199],[114.835615,34.767472],[114.829009,34.764314],[114.82838,34.755332],[114.835678,34.746893],[114.859333,34.740328],[114.858767,34.734256],[114.840648,34.715101],[114.855558,34.710904],[114.858012,34.692286],[114.8677,34.688038],[114.891418,34.698213],[114.90765,34.697916],[114.931682,34.686804],[114.936652,34.681914],[114.935771,34.672182],[114.926649,34.668625],[114.905825,34.666896],[114.896451,34.661363],[114.893494,34.652469],[114.901673,34.645303],[114.898339,34.631762],[114.90117,34.613769],[114.897018,34.602596],[114.904882,34.586179],[114.907398,34.573865],[114.906517,34.547647],[114.91501,34.548686],[114.917841,34.541957],[114.91111,34.534782],[114.920673,34.531417],[114.913752,34.518154],[114.917653,34.511571],[114.9096,34.495137],[114.922371,34.498206],[114.918596,34.484938],[114.912305,34.483601],[114.904001,34.467606],[114.896451,34.46102],[114.886322,34.461317],[114.880786,34.450519],[114.872356,34.454085],[114.865624,34.462902],[114.858893,34.451906],[114.856502,34.436599],[114.864806,34.433726],[114.852413,34.42887],[114.854615,34.410933],[114.848575,34.409942],[114.851658,34.399534],[114.874432,34.396411],[114.875061,34.390612],[114.888461,34.383771],[114.879025,34.370683],[114.861724,34.367014],[114.855558,34.33473],[114.862353,34.329174],[114.870783,34.305608],[114.882674,34.301192],[114.901988,34.284567],[114.912179,34.281837],[114.933695,34.282135],[114.940804,34.274243],[114.962258,34.261883],[114.98088,34.262975],[114.986605,34.253393],[114.998558,34.250116],[115.012965,34.253393],[115.041087,34.246342],[115.052474,34.224641],[115.082609,34.222555],[115.093556,34.219277],[115.107207,34.208845],[115.12627,34.209441],[115.11872,34.189966],[115.133127,34.170835],[115.133442,34.154234],[115.127906,34.146777],[115.12671,34.133652],[115.119538,34.120475],[115.126144,34.105207],[115.118217,34.098642],[115.120608,34.078196],[115.116707,34.066353],[115.128661,34.064164],[115.140048,34.055854],[115.13967,34.050628],[115.121363,34.02569],[115.107962,34.022703],[115.083364,34.024893],[115.074241,34.022802],[115.074871,34.014438],[115.083238,34.003185],[115.070089,33.990635],[115.062351,33.979329],[115.065748,33.97355],[115.05801,33.95721],[115.049957,33.950035],[115.050398,33.941962],[115.070026,33.935583],[115.085251,33.93354],[115.107207,33.936331],[115.106453,33.94844],[115.115009,33.961096],[115.124257,33.963089],[115.142375,33.958306],[115.148541,33.950184],[115.176474,33.950732],[115.189497,33.958106],[115.204722,33.974447],[115.195473,33.987398],[115.203778,33.988942],[115.23039,33.974148],[115.240959,33.975144],[115.252283,33.982467],[115.254548,33.995117],[115.252975,34.008861],[115.258449,34.015334],[115.288395,34.019516],[115.295441,34.018172],[115.28959,34.003981],[115.292484,33.996163],[115.312742,33.995715],[115.32092,34.004828],[115.33539,34.006969],[115.349042,34.018222],[115.361813,34.01628],[115.375403,34.00677],[115.402581,33.993374],[115.439573,33.986053],[115.458824,33.987099],[115.462599,34.006023],[115.489274,34.017575],[115.502989,34.015434],[115.513369,34.019367],[115.53023,34.018819],[115.53564,34.021757],[115.547782,34.037737],[115.549921,34.047542],[115.547593,34.074414],[115.543693,34.084564],[115.573702,34.086404],[115.619754,34.083171],[115.627555,34.087499],[115.641962,34.084166],[115.653601,34.060084]]]]}},{"type":"Feature","properties":{"adcode":411500,"name":"信阳市","center":[114.075031,32.123274],"centroid":[114.889128,32.080437],"childrenNum":10,"level":"city","parent":{"adcode":410000},"subFeatureIndex":14,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.749057,32.272684],[113.749812,32.260291],[113.739369,32.257598],[113.740438,32.242815],[113.748365,32.234788],[113.752643,32.216189],[113.764659,32.204195],[113.777934,32.207956],[113.783344,32.189657],[113.763716,32.161694],[113.766169,32.13835],[113.750315,32.116324],[113.739872,32.113067],[113.736978,32.121564],[113.722445,32.12426],[113.728359,32.09938],[113.728485,32.083197],[113.744905,32.076784],[113.747421,32.06976],[113.763779,32.054743],[113.781331,32.048786],[113.791271,32.036006],[113.779255,32.018895],[113.769881,32.01701],[113.758934,32.000915],[113.759438,31.986447],[113.768623,31.979466],[113.776109,31.980434],[113.788189,31.974014],[113.798506,31.974116],[113.816247,31.96688],[113.807314,31.94889],[113.805112,31.931508],[113.81631,31.923249],[113.832479,31.91866],[113.835876,31.910961],[113.83531,31.892858],[113.831221,31.878985],[113.838204,31.868681],[113.838644,31.854702],[113.858902,31.841078],[113.867206,31.845058],[113.872931,31.84067],[113.896398,31.849344],[113.906589,31.868528],[113.914957,31.876995],[113.93144,31.880974],[113.933516,31.869395],[113.954906,31.856334],[113.956416,31.840262],[113.946979,31.826483],[113.953019,31.813518],[113.952578,31.793864],[113.96535,31.785644],[113.972333,31.771653],[113.972459,31.763124],[113.978939,31.753778],[113.988753,31.750202],[114.015805,31.770274],[114.038328,31.768844],[114.048079,31.773389],[114.059089,31.772266],[114.063744,31.781917],[114.0723,31.784878],[114.086644,31.782223],[114.089853,31.794834],[114.099164,31.803411],[114.119233,31.805759],[114.127915,31.82633],[114.12716,31.835363],[114.13408,31.842813],[114.15006,31.839241],[114.162768,31.841078],[114.166983,31.851028],[114.180258,31.854039],[114.194979,31.850161],[114.208883,31.842762],[114.221277,31.832403],[114.236439,31.841895],[114.235432,31.833372],[114.248518,31.810507],[114.262044,31.796315],[114.264372,31.788503],[114.287523,31.762052],[114.292808,31.752296],[114.313946,31.75199],[114.321496,31.755106],[114.350373,31.755412],[114.373839,31.744277],[114.390007,31.741007],[114.399822,31.746933],[114.416305,31.74208],[114.419136,31.73314],[114.4309,31.734928],[114.446566,31.728031],[114.450844,31.737636],[114.46135,31.733242],[114.471982,31.740956],[114.488843,31.735694],[114.50866,31.740701],[114.504319,31.756433],[114.509667,31.766852],[114.521305,31.766903],[114.530679,31.742897],[114.545275,31.746167],[114.550308,31.753165],[114.54949,31.765422],[114.554963,31.768538],[114.572768,31.762562],[114.582519,31.764758],[114.587615,31.754033],[114.581575,31.74254],[114.584092,31.731863],[114.579751,31.724659],[114.579122,31.708154],[114.59139,31.700335],[114.586168,31.692567],[114.574215,31.689142],[114.570817,31.660106],[114.559179,31.656067],[114.549679,31.642465],[114.55295,31.635203],[114.548295,31.625127],[114.548924,31.609782],[114.561066,31.560966],[114.572453,31.554056],[114.57497,31.559533],[114.587363,31.560607],[114.595605,31.576319],[114.612025,31.578469],[114.616743,31.585326],[114.641719,31.582153],[114.644425,31.574682],[114.653044,31.572686],[114.656944,31.562859],[114.670093,31.547043],[114.678523,31.544023],[114.69985,31.546121],[114.696579,31.525847],[114.717214,31.527947],[114.723317,31.520625],[114.739485,31.527179],[114.747223,31.524004],[114.757038,31.52723],[114.771004,31.520522],[114.778868,31.520727],[114.774024,31.512431],[114.774653,31.500909],[114.783083,31.494814],[114.78302,31.48462],[114.789438,31.480522],[114.81303,31.478832],[114.824165,31.469969],[114.829827,31.458902],[114.841529,31.461976],[114.850651,31.476168],[114.875313,31.478268],[114.87676,31.470584],[114.8867,31.469457],[114.896388,31.474375],[114.925265,31.480471],[114.936464,31.469764],[114.939924,31.477141],[114.964019,31.495377],[114.976098,31.495889],[114.985346,31.477705],[114.998306,31.471608],[115.002018,31.485286],[115.010826,31.488206],[115.001704,31.499987],[115.010008,31.504903],[115.023094,31.527588],[115.030329,31.527691],[115.038444,31.51704],[115.048951,31.517552],[115.066314,31.510537],[115.096198,31.508437],[115.092801,31.519088],[115.102112,31.520573],[115.113373,31.528971],[115.105949,31.540029],[115.110479,31.55078],[115.103055,31.555745],[115.106767,31.567466],[115.127276,31.579083],[115.125389,31.599089],[115.134826,31.602415],[115.164395,31.604564],[115.176851,31.598834],[115.180374,31.577752],[115.192831,31.569564],[115.192957,31.564037],[115.207238,31.564241],[115.212586,31.55554],[115.235611,31.556206],[115.230578,31.538238],[115.218248,31.515299],[115.219506,31.506901],[115.212334,31.490101],[115.216926,31.481598],[115.217052,31.462898],[115.210509,31.445476],[115.220512,31.426718],[115.232969,31.427077],[115.252598,31.421695],[115.260273,31.41216],[115.250459,31.391755],[115.260399,31.387396],[115.281349,31.399856],[115.294057,31.395036],[115.301103,31.384063],[115.31356,31.383448],[115.327212,31.391139],[115.335957,31.403394],[115.355271,31.399958],[115.373641,31.405752],[115.383392,31.418671],[115.385657,31.443324],[115.389809,31.450293],[115.377667,31.470532],[115.371565,31.495838],[115.377164,31.502957],[115.389621,31.507566],[115.398366,31.516067],[115.415918,31.52595],[115.428563,31.547196],[115.431583,31.559021],[115.428249,31.563371],[115.438881,31.579953],[115.440013,31.588703],[115.47537,31.606712],[115.486569,31.610089],[115.490658,31.623593],[115.477132,31.645431],[115.484241,31.649061],[115.486128,31.66118],[115.495376,31.672938],[115.515068,31.682855],[115.531865,31.698547],[115.553507,31.695276],[115.564894,31.709023],[115.582636,31.713929],[115.586977,31.721696],[115.601446,31.731659],[115.619125,31.738351],[115.637243,31.755616],[115.65964,31.760213],[115.676564,31.778393],[115.689775,31.776555],[115.697136,31.76864],[115.710851,31.770887],[115.719407,31.76578],[115.736456,31.763277],[115.734254,31.776044],[115.741992,31.782121],[115.762691,31.782325],[115.767912,31.78784],[115.787226,31.780436],[115.793769,31.773593],[115.808428,31.772572],[115.815348,31.762358],[115.831013,31.777576],[115.837493,31.773593],[115.850264,31.786767],[115.858317,31.773695],[115.885244,31.776096],[115.900783,31.792026],[115.91022,31.792333],[115.915001,31.811885],[115.913114,31.820103],[115.904054,31.829392],[115.892982,31.83327],[115.895687,31.867507],[115.898329,31.88026],[115.910597,31.894949],[115.92016,31.920445],[115.916134,31.935994],[115.909025,31.943232],[115.911352,31.958013],[115.92318,31.985479],[115.924564,31.995617],[115.931107,31.994496],[115.927835,32.02358],[115.919531,32.027858],[115.927709,32.036311],[115.922236,32.049652],[115.925382,32.057543],[115.9396,32.065841],[115.942557,32.07765],[115.932491,32.084266],[115.926577,32.105283],[115.93916,32.138961],[115.937901,32.151777],[115.94155,32.166423],[115.933686,32.180456],[115.923369,32.191691],[115.922865,32.203636],[115.912736,32.227623],[115.914687,32.254855],[115.921481,32.268519],[115.911038,32.284161],[115.90827,32.299243],[115.90028,32.301426],[115.906948,32.31158],[115.904558,32.34102],[115.89921,32.344978],[115.897889,32.373596],[115.899084,32.390792],[115.88927,32.413462],[115.889396,32.424263],[115.87933,32.432324],[115.883356,32.438814],[115.882727,32.456099],[115.864231,32.458937],[115.873479,32.470594],[115.88128,32.472469],[115.883545,32.489241],[115.874486,32.497804],[115.873165,32.504694],[115.853033,32.50444],[115.845735,32.501806],[115.84737,32.509557],[115.856996,32.517965],[115.873039,32.525816],[115.87587,32.542477],[115.899399,32.556198],[115.91022,32.566982],[115.929282,32.567235],[115.911856,32.577561],[115.891535,32.576245],[115.887571,32.56764],[115.8614,32.537413],[115.845986,32.53164],[115.839947,32.524803],[115.841457,32.501198],[115.823841,32.502262],[115.80415,32.485441],[115.788736,32.468922],[115.781313,32.468466],[115.787415,32.480121],[115.785654,32.489393],[115.771498,32.505301],[115.760237,32.481996],[115.741992,32.476371],[115.719344,32.485644],[115.701225,32.495321],[115.692103,32.487519],[115.692229,32.480628],[115.700785,32.472874],[115.698772,32.468212],[115.675872,32.466438],[115.68166,32.450473],[115.68059,32.43998],[115.674425,32.430854],[115.666938,32.409405],[115.656306,32.408746],[115.657816,32.428826],[115.645611,32.417519],[115.627115,32.40545],[115.604529,32.425936],[115.586096,32.419243],[115.563888,32.403015],[115.553633,32.407478],[115.569109,32.414629],[115.5676,32.421626],[115.547279,32.424719],[115.537465,32.438966],[115.523183,32.442007],[115.524127,32.447837],[115.515571,32.450625],[115.502863,32.48306],[115.497515,32.492535],[115.484996,32.503934],[115.485059,32.512292],[115.477635,32.511836],[115.477761,32.51989],[115.465745,32.520143],[115.438944,32.532551],[115.443725,32.543287],[115.434666,32.545211],[115.431646,32.5523],[115.418057,32.552958],[115.410004,32.548097],[115.412772,32.559793],[115.411577,32.574777],[115.403273,32.576701],[115.391948,32.566324],[115.38767,32.57088],[115.329602,32.561211],[115.32048,32.562628],[115.324003,32.554831],[115.304186,32.553768],[115.296511,32.562729],[115.300348,32.568399],[115.310855,32.570576],[115.297769,32.576347],[115.30557,32.58318],[115.299404,32.58814],[115.294812,32.581054],[115.289213,32.589861],[115.267193,32.578068],[115.254737,32.585002],[115.26128,32.591683],[115.2548,32.595225],[115.243538,32.593505],[115.227118,32.578624],[115.229509,32.590569],[115.212145,32.588494],[115.201136,32.591834],[115.192013,32.603018],[115.175341,32.605346],[115.152127,32.590012],[115.145647,32.580143],[115.137028,32.587026],[115.140362,32.599223],[115.12476,32.607573],[115.111548,32.607421],[115.099532,32.619868],[115.098022,32.63378],[115.090599,32.637017],[115.065182,32.629075],[115.05002,32.640153],[115.030077,32.6486],[114.985472,32.659322],[114.957791,32.659979],[114.93357,32.649308],[114.919351,32.648903],[114.911047,32.653405],[114.901296,32.648954],[114.901799,32.634741],[114.89167,32.61749],[114.884875,32.616225],[114.862856,32.624117],[114.856565,32.61926],[114.822404,32.622853],[114.813785,32.611165],[114.806172,32.609495],[114.79403,32.613695],[114.788997,32.607168],[114.791325,32.584141],[114.802649,32.583433],[114.810136,32.569007],[114.808877,32.558882],[114.785789,32.545616],[114.781133,32.535539],[114.786858,32.52384],[114.793527,32.521764],[114.789689,32.50824],[114.774024,32.508696],[114.752319,32.523942],[114.736088,32.516901],[114.729545,32.519333],[114.724512,32.541464],[114.713062,32.543743],[114.702115,32.535134],[114.701927,32.517357],[114.676699,32.514977],[114.666067,32.527183],[114.650338,32.527842],[114.615737,32.509911],[114.606866,32.512697],[114.582393,32.51371],[114.571258,32.508088],[114.569559,32.495119],[114.574781,32.486353],[114.571509,32.466793],[114.585665,32.455136],[114.582142,32.445657],[114.570125,32.435721],[114.576542,32.425733],[114.603595,32.41833],[114.634673,32.39982],[114.647759,32.387597],[114.644551,32.375879],[114.623727,32.370602],[114.620141,32.363398],[114.623349,32.352539],[114.610767,32.350002],[114.607998,32.33701],[114.5929,32.321326],[114.575976,32.316402],[114.582519,32.308432],[114.563645,32.306401],[114.550685,32.289036],[114.535083,32.286091],[114.521934,32.298684],[114.498342,32.301527],[114.492177,32.299953],[114.490856,32.28665],[114.483621,32.285177],[114.468333,32.294165],[114.452479,32.281368],[114.438324,32.288478],[114.429328,32.289341],[114.421589,32.279134],[114.397054,32.293353],[114.376607,32.292032],[114.369813,32.298735],[114.368177,32.313407],[114.349303,32.323002],[114.348422,32.347566],[114.34276,32.365021],[114.315142,32.37324],[114.293877,32.36492],[114.286894,32.369892],[114.28098,32.407428],[114.288467,32.418939],[114.277961,32.418888],[114.269027,32.409253],[114.254117,32.424516],[114.247511,32.436583],[114.249084,32.450625],[114.243485,32.458583],[114.226876,32.454122],[114.221214,32.445961],[114.204479,32.445252],[114.201522,32.453514],[114.210078,32.45838],[114.209135,32.468719],[114.198314,32.46877],[114.197433,32.486353],[114.192274,32.492585],[114.167675,32.487012],[114.163397,32.469986],[114.16497,32.461877],[114.157421,32.458279],[114.136723,32.461978],[114.112564,32.447786],[114.097654,32.451639],[114.085512,32.450777],[114.080731,32.454832],[114.078529,32.479614],[114.087336,32.481236],[114.07639,32.493548],[114.071357,32.505909],[114.072992,32.517205],[114.066638,32.527031],[114.067204,32.534881],[114.056258,32.539033],[114.053867,32.523233],[114.014861,32.51599],[114.007375,32.507784],[113.982147,32.503579],[113.962204,32.505403],[113.95434,32.514268],[113.953837,32.526575],[113.938046,32.555996],[113.940373,32.576195],[113.932824,32.578219],[113.92238,32.59396],[113.919738,32.605295],[113.911811,32.607775],[113.893315,32.604891],[113.886646,32.607016],[113.87268,32.622751],[113.86513,32.623814],[113.850409,32.617338],[113.843614,32.622245],[113.826691,32.622397],[113.820337,32.619109],[113.820211,32.601804],[113.814423,32.600842],[113.805301,32.597705],[113.789698,32.586368],[113.782023,32.566172],[113.769126,32.559287],[113.763212,32.547895],[113.774285,32.537362],[113.768245,32.534425],[113.759375,32.508797],[113.764219,32.489951],[113.761828,32.470645],[113.753398,32.465425],[113.741319,32.465374],[113.73767,32.453362],[113.730498,32.46061],[113.730875,32.449307],[113.725339,32.436025],[113.710555,32.421221],[113.718608,32.417215],[113.735279,32.410876],[113.740753,32.393125],[113.751699,32.390031],[113.753209,32.38435],[113.743835,32.369435],[113.751448,32.36081],[113.760381,32.369182],[113.768874,32.369486],[113.770699,32.358628],[113.758494,32.352235],[113.753838,32.342085],[113.753838,32.32823],[113.7651,32.319448],[113.773907,32.306147],[113.769063,32.301324],[113.768182,32.28406],[113.769944,32.275985],[113.758305,32.276747],[113.749057,32.272684]]],[[[113.768182,32.28406],[113.769063,32.301324],[113.748491,32.291931],[113.743898,32.283603],[113.749057,32.272684],[113.758305,32.276747],[113.754027,32.288275],[113.758494,32.291931],[113.768182,32.28406]]]]}},{"type":"Feature","properties":{"adcode":411600,"name":"周口市","center":[114.649653,33.620357],"centroid":[114.883192,33.721762],"childrenNum":10,"level":"city","parent":{"adcode":410000},"subFeatureIndex":15,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.897269,33.08658],[114.897206,33.093676],[114.906266,33.11657],[114.902931,33.12955],[114.910229,33.136592],[114.926649,33.138503],[114.93445,33.15329],[114.966095,33.147104],[114.968863,33.133674],[114.981446,33.129097],[114.99233,33.120947],[114.990505,33.102885],[115.012021,33.097651],[115.023345,33.090757],[115.041275,33.08663],[115.05153,33.092468],[115.057444,33.083762],[115.067636,33.086228],[115.111108,33.082956],[115.153259,33.084416],[115.167918,33.088744],[115.172448,33.108067],[115.197109,33.12145],[115.209817,33.113501],[115.22435,33.126229],[115.236996,33.126733],[115.246307,33.136391],[115.266501,33.132719],[115.269584,33.137849],[115.290345,33.132417],[115.292862,33.143382],[115.301481,33.141622],[115.300159,33.162995],[115.294372,33.177878],[115.296762,33.201303],[115.326394,33.211355],[115.316265,33.218391],[115.316328,33.223818],[115.331741,33.235625],[115.329728,33.250546],[115.340109,33.261145],[115.340927,33.271391],[115.333818,33.284749],[115.335013,33.298055],[115.346966,33.301017],[115.360178,33.298105],[115.358794,33.311459],[115.365022,33.336003],[115.34835,33.338963],[115.34684,33.358683],[115.338536,33.362998],[115.341619,33.371175],[115.316139,33.370974],[115.313245,33.377094],[115.329414,33.40167],[115.317334,33.418216],[115.315636,33.431452],[115.319033,33.441477],[115.316391,33.448895],[115.323877,33.449045],[115.324569,33.457615],[115.335957,33.447291],[115.345771,33.449747],[115.348854,33.478962],[115.343821,33.480866],[115.351244,33.490384],[115.345393,33.502707],[115.366595,33.523441],[115.395094,33.506463],[115.396793,33.502006],[115.405349,33.51668],[115.401763,33.524342],[115.41466,33.541617],[115.421958,33.556786],[115.463731,33.567197],[115.47191,33.558037],[115.484933,33.558638],[115.500598,33.564794],[115.511293,33.553331],[115.528594,33.562692],[115.552752,33.565545],[115.559358,33.561941],[115.56609,33.576356],[115.601132,33.578157],[115.63976,33.585113],[115.625038,33.625637],[115.6173,33.633189],[115.601635,33.657692],[115.602516,33.67259],[115.599622,33.688285],[115.607171,33.689035],[115.596288,33.70033],[115.601572,33.71692],[115.595281,33.732957],[115.583516,33.747243],[115.574834,33.752237],[115.56999,33.765321],[115.563133,33.771663],[115.565209,33.780201],[115.582258,33.788738],[115.590563,33.783696],[115.614218,33.775658],[115.621201,33.796775],[115.62334,33.811949],[115.616608,33.820034],[115.625605,33.823627],[115.626297,33.836201],[115.636111,33.84119],[115.633532,33.86733],[115.620886,33.876108],[115.605724,33.867429],[115.591632,33.868327],[115.579553,33.877005],[115.564202,33.87132],[115.557974,33.876108],[115.546146,33.875509],[115.546587,33.888425],[115.555332,33.888574],[115.55464,33.900342],[115.568543,33.910013],[115.559798,33.91455],[115.562629,33.92721],[115.56999,33.932842],[115.569172,33.9455],[115.57754,33.950134],[115.57905,33.973949],[115.588361,33.976987],[115.591066,33.986202],[115.584083,33.988643],[115.592702,34.009857],[115.606605,34.013243],[115.600943,34.023798],[115.615035,34.033356],[115.62139,34.030121],[115.642214,34.032261],[115.649889,34.036194],[115.648001,34.046298],[115.653601,34.060084],[115.641962,34.084166],[115.627555,34.087499],[115.619754,34.083171],[115.573702,34.086404],[115.543693,34.084564],[115.547593,34.074414],[115.549921,34.047542],[115.547782,34.037737],[115.53564,34.021757],[115.53023,34.018819],[115.513369,34.019367],[115.502989,34.015434],[115.489274,34.017575],[115.462599,34.006023],[115.458824,33.987099],[115.439573,33.986053],[115.402581,33.993374],[115.375403,34.00677],[115.361813,34.01628],[115.349042,34.018222],[115.33539,34.006969],[115.32092,34.004828],[115.312742,33.995715],[115.292484,33.996163],[115.28959,34.003981],[115.295441,34.018172],[115.288395,34.019516],[115.258449,34.015334],[115.252975,34.008861],[115.254548,33.995117],[115.252283,33.982467],[115.240959,33.975144],[115.23039,33.974148],[115.203778,33.988942],[115.195473,33.987398],[115.204722,33.974447],[115.189497,33.958106],[115.176474,33.950732],[115.148541,33.950184],[115.142375,33.958306],[115.124257,33.963089],[115.115009,33.961096],[115.106453,33.94844],[115.107207,33.936331],[115.085251,33.93354],[115.070026,33.935583],[115.050398,33.941962],[115.049957,33.950035],[115.05801,33.95721],[115.065748,33.97355],[115.062351,33.979329],[115.070089,33.990635],[115.083238,34.003185],[115.074871,34.014438],[115.074241,34.022802],[115.083364,34.024893],[115.107962,34.022703],[115.121363,34.02569],[115.13967,34.050628],[115.140048,34.055854],[115.128661,34.064164],[115.116707,34.066353],[115.120608,34.078196],[115.118217,34.098642],[115.126144,34.105207],[115.119538,34.120475],[115.12671,34.133652],[115.127906,34.146777],[115.133442,34.154234],[115.133127,34.170835],[115.11872,34.189966],[115.12627,34.209441],[115.107207,34.208845],[115.093556,34.219277],[115.082609,34.222555],[115.052474,34.224641],[115.041087,34.246342],[115.012965,34.253393],[114.998558,34.250116],[114.986605,34.253393],[114.98088,34.262975],[114.962258,34.261883],[114.940804,34.274243],[114.933695,34.282135],[114.912179,34.281837],[114.901988,34.284567],[114.896514,34.265804],[114.867763,34.271066],[114.845492,34.280696],[114.832847,34.281937],[114.8314,34.268138],[114.812778,34.259003],[114.788242,34.261138],[114.781196,34.255627],[114.76465,34.254436],[114.758736,34.238397],[114.752697,34.23363],[114.730426,34.225237],[114.723946,34.228018],[114.71388,34.241327],[114.702241,34.244505],[114.679341,34.244307],[114.667514,34.250265],[114.647319,34.250315],[114.634044,34.261883],[114.611459,34.261088],[114.602085,34.271017],[114.58988,34.273747],[114.556662,34.267989],[114.551189,34.272059],[114.551629,34.284964],[114.528603,34.282234],[114.524703,34.306253],[114.519355,34.313448],[114.509855,34.309727],[114.493876,34.31191],[114.485949,34.325057],[114.479343,34.32962],[114.462042,34.330166],[114.46179,34.319947],[114.452857,34.319997],[114.438576,34.328033],[114.439897,34.336366],[114.427692,34.333837],[114.436059,34.330265],[114.434486,34.313894],[114.424546,34.309032],[114.430649,34.302284],[114.442539,34.300696],[114.455688,34.294096],[114.440652,34.270719],[114.434927,34.267145],[114.417689,34.265308],[114.405798,34.248031],[114.385729,34.24386],[114.356412,34.247186],[114.344207,34.251804],[114.328857,34.267294],[114.301175,34.26774],[114.287901,34.276527],[114.274626,34.274889],[114.267517,34.256968],[114.259905,34.251854],[114.272676,34.24237],[114.273053,34.227869],[114.286013,34.218234],[114.287649,34.206958],[114.276199,34.190811],[114.275255,34.174661],[114.28746,34.137033],[114.285133,34.120873],[114.273808,34.107545],[114.273431,34.102571],[114.262107,34.095856],[114.270411,34.063219],[114.271103,34.053813],[114.281987,34.046597],[114.287523,34.022902],[114.295324,34.007467],[114.311745,34.001492],[114.312248,33.98162],[114.307026,33.978233],[114.31036,33.96],[114.299917,33.953024],[114.305642,33.889572],[114.3164,33.880446],[114.311304,33.87142],[114.315834,33.865734],[114.312122,33.853263],[114.301112,33.852365],[114.301301,33.842188],[114.310738,33.842637],[114.316085,33.833207],[114.323383,33.832908],[114.325082,33.818337],[114.313066,33.80012],[114.309983,33.781349],[114.290354,33.771813],[114.249776,33.779252],[114.242604,33.790785],[114.217565,33.793131],[114.211525,33.798123],[114.19888,33.797374],[114.190638,33.801917],[114.179503,33.799321],[114.178308,33.806409],[114.161447,33.79982],[114.15503,33.809304],[114.145404,33.810551],[114.134772,33.806409],[114.133703,33.791484],[114.139931,33.783097],[114.142007,33.765921],[114.133262,33.768118],[114.098032,33.765072],[114.10319,33.756832],[114.106839,33.739051],[114.095263,33.728061],[114.091489,33.71642],[114.097717,33.683187],[114.115836,33.684587],[114.118226,33.67159],[114.116402,33.651392],[114.125398,33.652842],[114.149745,33.650442],[114.152639,33.662242],[114.162265,33.669941],[114.169563,33.664791],[114.186235,33.67219],[114.186549,33.682538],[114.196489,33.690934],[114.214231,33.691334],[114.249084,33.704328],[114.250783,33.693233],[114.259842,33.680588],[114.260849,33.661942],[114.264183,33.654742],[114.264938,33.635239],[114.277332,33.621735],[114.279659,33.604427],[114.265881,33.597923],[114.265378,33.593219],[114.278653,33.57015],[114.282868,33.558688],[114.295324,33.553782],[114.289348,33.522089],[114.281106,33.513976],[114.283371,33.500353],[114.279785,33.489282],[114.284629,33.472548],[114.307907,33.481316],[114.347227,33.462376],[114.349429,33.452604],[114.362137,33.454057],[114.368932,33.44659],[114.382143,33.454508],[114.402967,33.457064],[114.407937,33.460873],[114.446628,33.464581],[114.459777,33.454458],[114.464118,33.437467],[114.480098,33.443131],[114.490415,33.43481],[114.488654,33.417565],[114.52313,33.418969],[114.537663,33.426589],[114.554146,33.42714],[114.563016,33.42333],[114.57239,33.406835],[114.572013,33.396053],[114.577423,33.390035],[114.575536,33.376392],[114.585728,33.374837],[114.589314,33.362847],[114.605293,33.35778],[114.615925,33.344383],[114.623664,33.341723],[114.645557,33.34624],[114.654491,33.341924],[114.662481,33.322954],[114.669715,33.31944],[114.665563,33.313416],[114.684122,33.314671],[114.685255,33.298205],[114.705764,33.302171],[114.722373,33.301117],[114.728853,33.289368],[114.73074,33.261597],[114.717529,33.221808],[114.69897,33.208139],[114.697648,33.197081],[114.681354,33.170487],[114.704003,33.160531],[114.705764,33.14821],[114.717592,33.144036],[114.720863,33.125626],[114.731621,33.120746],[114.742757,33.106709],[114.761756,33.10535],[114.765845,33.090858],[114.77069,33.087184],[114.77157,33.069517],[114.7951,33.068561],[114.800447,33.05819],[114.817937,33.060456],[114.833917,33.059449],[114.850022,33.052753],[114.854552,33.055421],[114.857446,33.075306],[114.897206,33.080591],[114.897269,33.08658]]]]}},{"type":"Feature","properties":{"adcode":411700,"name":"驻马店市","center":[114.024736,32.980169],"centroid":[114.156353,32.922684],"childrenNum":10,"level":"city","parent":{"adcode":410000},"subFeatureIndex":16,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.814423,32.600842],[113.820211,32.601804],[113.820337,32.619109],[113.826691,32.622397],[113.843614,32.622245],[113.850409,32.617338],[113.86513,32.623814],[113.87268,32.622751],[113.886646,32.607016],[113.893315,32.604891],[113.911811,32.607775],[113.919738,32.605295],[113.92238,32.59396],[113.932824,32.578219],[113.940373,32.576195],[113.938046,32.555996],[113.953837,32.526575],[113.95434,32.514268],[113.962204,32.505403],[113.982147,32.503579],[114.007375,32.507784],[114.014861,32.51599],[114.053867,32.523233],[114.056258,32.539033],[114.067204,32.534881],[114.066638,32.527031],[114.072992,32.517205],[114.071357,32.505909],[114.07639,32.493548],[114.087336,32.481236],[114.078529,32.479614],[114.080731,32.454832],[114.085512,32.450777],[114.097654,32.451639],[114.112564,32.447786],[114.136723,32.461978],[114.157421,32.458279],[114.16497,32.461877],[114.163397,32.469986],[114.167675,32.487012],[114.192274,32.492585],[114.197433,32.486353],[114.198314,32.46877],[114.209135,32.468719],[114.210078,32.45838],[114.201522,32.453514],[114.204479,32.445252],[114.221214,32.445961],[114.226876,32.454122],[114.243485,32.458583],[114.249084,32.450625],[114.247511,32.436583],[114.254117,32.424516],[114.269027,32.409253],[114.277961,32.418888],[114.288467,32.418939],[114.28098,32.407428],[114.286894,32.369892],[114.293877,32.36492],[114.315142,32.37324],[114.34276,32.365021],[114.348422,32.347566],[114.349303,32.323002],[114.368177,32.313407],[114.369813,32.298735],[114.376607,32.292032],[114.397054,32.293353],[114.421589,32.279134],[114.429328,32.289341],[114.438324,32.288478],[114.452479,32.281368],[114.468333,32.294165],[114.483621,32.285177],[114.490856,32.28665],[114.492177,32.299953],[114.498342,32.301527],[114.521934,32.298684],[114.535083,32.286091],[114.550685,32.289036],[114.563645,32.306401],[114.582519,32.308432],[114.575976,32.316402],[114.5929,32.321326],[114.607998,32.33701],[114.610767,32.350002],[114.623349,32.352539],[114.620141,32.363398],[114.623727,32.370602],[114.644551,32.375879],[114.647759,32.387597],[114.634673,32.39982],[114.603595,32.41833],[114.576542,32.425733],[114.570125,32.435721],[114.582142,32.445657],[114.585665,32.455136],[114.571509,32.466793],[114.574781,32.486353],[114.569559,32.495119],[114.571258,32.508088],[114.582393,32.51371],[114.606866,32.512697],[114.615737,32.509911],[114.650338,32.527842],[114.666067,32.527183],[114.676699,32.514977],[114.701927,32.517357],[114.702115,32.535134],[114.713062,32.543743],[114.724512,32.541464],[114.729545,32.519333],[114.736088,32.516901],[114.752319,32.523942],[114.774024,32.508696],[114.789689,32.50824],[114.793527,32.521764],[114.786858,32.52384],[114.781133,32.535539],[114.785789,32.545616],[114.808877,32.558882],[114.810136,32.569007],[114.802649,32.583433],[114.791325,32.584141],[114.788997,32.607168],[114.79403,32.613695],[114.806172,32.609495],[114.813785,32.611165],[114.822404,32.622853],[114.856565,32.61926],[114.862856,32.624117],[114.884875,32.616225],[114.89167,32.61749],[114.901799,32.634741],[114.901296,32.648954],[114.911047,32.653405],[114.919351,32.648903],[114.93357,32.649308],[114.957791,32.659979],[114.985472,32.659322],[115.030077,32.6486],[115.05002,32.640153],[115.065182,32.629075],[115.090599,32.637017],[115.098022,32.63378],[115.099532,32.619868],[115.111548,32.607421],[115.12476,32.607573],[115.140362,32.599223],[115.137028,32.587026],[115.145647,32.580143],[115.152127,32.590012],[115.175341,32.605346],[115.192013,32.603018],[115.204029,32.606662],[115.209125,32.612936],[115.199437,32.619665],[115.202079,32.632464],[115.19453,32.63125],[115.194907,32.642379],[115.202708,32.645515],[115.209503,32.636714],[115.208874,32.649864],[115.219443,32.659221],[115.203967,32.65391],[115.205162,32.672924],[115.193649,32.682885],[115.189434,32.678789],[115.19692,32.672722],[115.182954,32.666755],[115.18459,32.678284],[115.178487,32.682885],[115.182702,32.694512],[115.179116,32.701943],[115.184338,32.720391],[115.179368,32.726354],[115.189623,32.770913],[115.183583,32.776923],[115.182073,32.787326],[115.19107,32.790053],[115.206923,32.785306],[115.212334,32.787175],[115.206357,32.797678],[115.19692,32.802121],[115.189937,32.812522],[115.195599,32.828877],[115.188868,32.840435],[115.202645,32.843514],[115.198619,32.854363],[115.191132,32.857492],[115.176222,32.856281],[115.159802,32.862285],[115.154958,32.877269],[115.142501,32.884332],[115.140551,32.897496],[115.116141,32.90022],[115.102426,32.894268],[115.086258,32.903246],[115.067321,32.903246],[115.029762,32.906827],[115.027435,32.91434],[115.036746,32.916307],[115.035425,32.932341],[115.023975,32.933702],[115.009253,32.940155],[114.978803,32.941314],[114.959993,32.9395],[114.943573,32.935013],[114.936023,32.952152],[114.924133,32.958956],[114.91608,32.971304],[114.893809,32.972664],[114.886071,32.978611],[114.882799,32.990351],[114.901547,33.000326],[114.891922,33.020525],[114.915388,33.016093],[114.924321,33.016697],[114.936967,33.025511],[114.923,33.036087],[114.922497,33.048322],[114.91501,33.059801],[114.91954,33.068812],[114.914004,33.082805],[114.897269,33.08658],[114.897206,33.080591],[114.857446,33.075306],[114.854552,33.055421],[114.850022,33.052753],[114.833917,33.059449],[114.817937,33.060456],[114.800447,33.05819],[114.7951,33.068561],[114.77157,33.069517],[114.77069,33.087184],[114.765845,33.090858],[114.761756,33.10535],[114.742757,33.106709],[114.731621,33.120746],[114.720863,33.125626],[114.717592,33.144036],[114.705764,33.14821],[114.704003,33.160531],[114.681354,33.170487],[114.697648,33.197081],[114.69897,33.208139],[114.717529,33.221808],[114.73074,33.261597],[114.728853,33.289368],[114.722373,33.301117],[114.705764,33.302171],[114.685255,33.298205],[114.684122,33.314671],[114.665563,33.313416],[114.669715,33.31944],[114.662481,33.322954],[114.654491,33.341924],[114.645557,33.34624],[114.623664,33.341723],[114.615925,33.344383],[114.605293,33.35778],[114.589314,33.362847],[114.585728,33.374837],[114.575536,33.376392],[114.577423,33.390035],[114.572013,33.396053],[114.57239,33.406835],[114.563016,33.42333],[114.554146,33.42714],[114.537663,33.426589],[114.52313,33.418969],[114.488654,33.417565],[114.490415,33.43481],[114.480098,33.443131],[114.464118,33.437467],[114.459777,33.454458],[114.446628,33.464581],[114.407937,33.460873],[114.402967,33.457064],[114.382143,33.454508],[114.368932,33.44659],[114.362137,33.454057],[114.349429,33.452604],[114.347227,33.462376],[114.307907,33.481316],[114.284629,33.472548],[114.266636,33.461625],[114.247574,33.45967],[114.230714,33.451551],[114.211399,33.453757],[114.195294,33.447692],[114.190575,33.426489],[114.171324,33.440926],[114.180384,33.453656],[114.171639,33.459019],[114.159937,33.456713],[114.150312,33.460372],[114.151507,33.468139],[114.131501,33.472298],[114.130683,33.495093],[114.115836,33.488631],[114.103505,33.491586],[114.104071,33.499351],[114.118101,33.502406],[114.116276,33.51027],[114.099101,33.503108],[114.075572,33.517782],[114.055692,33.523942],[114.052168,33.528999],[114.038579,33.5296],[114.033735,33.523892],[114.014924,33.522039],[114.01354,33.511071],[114.001084,33.510671],[113.998693,33.500904],[113.981329,33.482268],[113.9712,33.482619],[113.967929,33.477408],[113.95434,33.473901],[113.94528,33.465633],[113.933768,33.465884],[113.914139,33.478511],[113.865508,33.479362],[113.856134,33.47796],[113.847515,33.466836],[113.825999,33.460723],[113.805804,33.446189],[113.799513,33.43481],[113.771139,33.435713],[113.766861,33.432154],[113.721187,33.432705],[113.713197,33.430249],[113.710429,33.417013],[113.693065,33.418216],[113.688347,33.407737],[113.676897,33.378298],[113.655003,33.371175],[113.639149,33.355221],[113.642106,33.34905],[113.640282,33.325162],[113.627448,33.312212],[113.618766,33.291477],[113.613167,33.261798],[113.606875,33.237786],[113.613796,33.211506],[113.627511,33.186475],[113.644623,33.186575],[113.64846,33.182402],[113.63506,33.160833],[113.626001,33.150423],[113.617004,33.147255],[113.600144,33.163146],[113.593601,33.157715],[113.573846,33.15691],[113.561201,33.161134],[113.550254,33.140113],[113.541321,33.14308],[113.532324,33.152736],[113.521378,33.154698],[113.514772,33.162492],[113.499987,33.156206],[113.46029,33.156458],[113.449217,33.160581],[113.432545,33.15681],[113.413105,33.156659],[113.397881,33.14997],[113.388821,33.128393],[113.386619,33.113451],[113.357239,33.091613],[113.333836,33.085976],[113.325469,33.079181],[113.313138,33.075608],[113.301436,33.080138],[113.271427,33.08049],[113.257335,33.083409],[113.250477,33.077822],[113.237077,33.077017],[113.219273,33.064584],[113.206124,33.070826],[113.190019,33.067202],[113.18574,33.056932],[113.165546,33.048977],[113.161456,33.038906],[113.142016,33.016647],[113.127358,33.010552],[113.120312,33.001182],[113.116097,32.986421],[113.108799,32.97332],[113.097789,32.946406],[113.109805,32.94202],[113.11553,32.932996],[113.140129,32.930627],[113.145854,32.940306],[113.15592,32.936122],[113.161897,32.92745],[113.181714,32.920644],[113.199015,32.920291],[113.208137,32.916408],[113.201154,32.888821],[113.205558,32.884937],[113.195681,32.871871],[113.187062,32.866422],[113.177059,32.852446],[113.167999,32.847046],[113.165797,32.838063],[113.175737,32.83241],[113.187062,32.819943],[113.17838,32.806665],[113.184294,32.801364],[113.185237,32.788286],[113.177247,32.775307],[113.199959,32.750253],[113.201343,32.738835],[113.193982,32.733378],[113.191528,32.717712],[113.207697,32.717257],[113.213736,32.703055],[113.231226,32.701488],[113.241103,32.691429],[113.236259,32.682581],[113.259914,32.677778],[113.269351,32.662053],[113.258467,32.653961],[113.252679,32.666907],[113.243305,32.66984],[113.236196,32.679143],[113.220594,32.684452],[113.210276,32.678941],[113.20172,32.660333],[113.18788,32.652241],[113.186181,32.646476],[113.19222,32.635398],[113.20279,32.632262],[113.201783,32.614504],[113.196121,32.606156],[113.200651,32.585103],[113.198575,32.579536],[113.205432,32.569969],[113.221286,32.570424],[113.243871,32.578827],[113.249785,32.593555],[113.280486,32.595984],[113.282311,32.591986],[113.303135,32.586723],[113.31037,32.579536],[113.315717,32.587988],[113.321631,32.58733],[113.326349,32.577561],[113.342832,32.567893],[113.351577,32.573664],[113.364537,32.569462],[113.372024,32.576245],[113.382216,32.593353],[113.400712,32.61324],[113.422354,32.605245],[113.437893,32.589203],[113.447393,32.584698],[113.458528,32.585508],[113.458843,32.575689],[113.472621,32.578574],[113.492752,32.567741],[113.512759,32.571538],[113.513513,32.579384],[113.524397,32.593505],[113.542264,32.589152],[113.565416,32.602715],[113.571582,32.624775],[113.583535,32.633577],[113.588882,32.650421],[113.596243,32.649763],[113.594041,32.661092],[113.619332,32.667362],[113.616941,32.69158],[113.609832,32.696484],[113.614676,32.711344],[113.623358,32.706138],[113.642987,32.703106],[113.649089,32.708261],[113.668404,32.692389],[113.696274,32.695624],[113.717727,32.683694],[113.729114,32.669688],[113.761199,32.652697],[113.771894,32.655276],[113.781079,32.652595],[113.791963,32.642075],[113.785169,32.631402],[113.799072,32.620879],[113.809264,32.603828],[113.814423,32.600842]]]]}},{"type":"Feature","properties":{"adcode":419001,"name":"济源市","center":[112.590047,35.090378],"centroid":[112.398673,35.099131],"childrenNum":0,"level":"city","parent":{"adcode":410000},"subFeatureIndex":17,"acroutes":[100000,410000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.758,35.204436],[112.744662,35.205123],[112.735351,35.210424],[112.720315,35.206448],[112.71264,35.18701],[112.703077,35.20154],[112.707418,35.216951],[112.695339,35.218718],[112.684267,35.227256],[112.682694,35.233733],[112.67288,35.234272],[112.655012,35.244232],[112.651426,35.259242],[112.645009,35.260566],[112.639159,35.247862],[112.633056,35.265569],[112.618335,35.254043],[112.617643,35.244575],[112.634188,35.239326],[112.637208,35.225686],[112.619027,35.220043],[112.602544,35.22284],[112.574988,35.221122],[112.567879,35.211749],[112.559071,35.21278],[112.536234,35.223429],[112.513523,35.21857],[112.489805,35.229955],[112.482444,35.224655],[112.472378,35.230298],[112.45772,35.226373],[112.423999,35.23805],[112.401413,35.241877],[112.390718,35.238786],[112.376751,35.224115],[112.367315,35.22019],[112.320697,35.21911],[112.306667,35.220975],[112.288548,35.21754],[112.304465,35.251884],[112.294462,35.252816],[112.282823,35.242024],[112.261307,35.24119],[112.242748,35.234812],[112.21664,35.240209],[112.220792,35.247028],[112.217269,35.253258],[112.191097,35.256348],[112.173545,35.263803],[112.134287,35.271258],[112.120006,35.265275],[112.110947,35.27013],[112.115665,35.273072],[112.093961,35.279202],[112.075842,35.277143],[112.058793,35.279889],[112.055018,35.271454],[112.067978,35.265275],[112.079617,35.242367],[112.08119,35.221613],[112.058919,35.206301],[112.042058,35.200264],[112.041492,35.189808],[112.051935,35.177044],[112.066279,35.153522],[112.060177,35.140752],[112.067223,35.136233],[112.056276,35.098449],[112.056591,35.089061],[112.062756,35.078591],[112.062127,35.055779],[112.053571,35.044223],[112.038912,35.045501],[112.035075,35.033845],[112.042436,35.027845],[112.09352,35.029911],[112.108242,35.029222],[112.125857,35.021204],[112.1514,35.015399],[112.169896,35.00241],[112.1877,34.972981],[112.212047,34.965007],[112.226831,34.956589],[112.247844,34.940735],[112.258099,34.942212],[112.267284,34.953537],[112.28188,34.960232],[112.301068,34.945462],[112.3212,34.941375],[112.334537,34.941425],[112.360268,34.931428],[112.384993,34.924533],[112.39097,34.918574],[112.433247,34.920987],[112.462501,34.915668],[112.489616,34.90286],[112.496536,34.895717],[112.505659,34.898821],[112.521072,34.892761],[112.534221,34.893746],[112.537304,34.916013],[112.527426,34.929163],[112.515976,34.929212],[112.511447,34.92084],[112.496914,34.921726],[112.505155,34.942459],[112.519436,34.940341],[112.527867,34.932019],[112.551207,34.938569],[112.563853,34.949696],[112.5692,34.958608],[112.579392,34.971751],[112.596001,34.971013],[112.614182,34.98002],[112.624752,34.977903],[112.644695,34.978888],[112.653062,34.988681],[112.666462,34.9875],[112.675962,34.993504],[112.684581,35.012497],[112.698988,35.023221],[112.72711,35.035026],[112.735289,35.043338],[112.736043,35.060008],[112.743341,35.06458],[112.753219,35.08508],[112.754288,35.098891],[112.766304,35.107196],[112.761963,35.158041],[112.76687,35.182985],[112.758,35.204436]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/420000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/420000.json new file mode 100644 index 0000000..90fca62 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/420000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":420100,"name":"武汉市","center":[114.298572,30.584355],"centroid":[114.348204,30.623025],"childrenNum":13,"level":"city","parent":{"adcode":420000},"subFeatureIndex":0,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.710002,30.388924],[113.709614,30.377791],[113.73657,30.372824],[113.751718,30.375393],[113.741153,30.34901],[113.746047,30.337016],[113.763293,30.324378],[113.759564,30.31945],[113.76407,30.304495],[113.761817,30.298196],[113.762128,30.296353],[113.76438,30.288981],[113.776421,30.283709],[113.789627,30.287824],[113.792735,30.28388],[113.78318,30.263776],[113.779373,30.249627],[113.764924,30.245682],[113.755913,30.232045],[113.769585,30.215447],[113.800891,30.203308],[113.811223,30.204166],[113.817282,30.198246],[113.820157,30.178982],[113.84284,30.186748],[113.851385,30.183444],[113.866223,30.189665],[113.863504,30.200005],[113.867233,30.209528],[113.888518,30.238307],[113.911978,30.274793],[113.929457,30.289195],[113.953616,30.296481],[113.975678,30.295196],[114.000071,30.278994],[114.01452,30.267248],[114.02757,30.244138],[114.035572,30.225355],[114.048467,30.219651],[114.044738,30.210171],[114.036737,30.208241],[114.038524,30.197431],[114.0487,30.198203],[114.056002,30.205367],[114.075345,30.208413],[114.10603,30.202364],[114.115275,30.194428],[114.129413,30.168726],[114.151397,30.143876],[114.154893,30.127778],[114.150465,30.117174],[114.162195,30.110046],[114.167788,30.090679],[114.192725,30.086685],[114.197386,30.071093],[114.195676,30.053995],[114.198939,30.040633],[114.208805,30.031781],[114.214087,30.020736],[114.212145,30.003243],[114.237548,29.995892],[114.265436,29.99946],[114.297907,30.006424],[114.305986,30.011754],[114.324941,30.017513],[114.334496,30.027441],[114.347158,30.02628],[114.361996,30.033027],[114.372483,30.028042],[114.406508,30.020951],[114.423132,30.011023],[114.43999,30.004876],[114.451021,30.004833],[114.461119,29.995591],[114.481239,29.988154],[114.487765,29.994087],[114.497475,29.991894],[114.497242,29.983898],[114.514099,29.975428],[114.524353,29.976073],[114.532277,29.969322],[114.5409,29.975084],[114.533831,29.984156],[114.534374,29.99284],[114.543929,30.007885],[114.534297,30.022026],[114.537948,30.027183],[114.548901,30.021295],[114.549989,30.031566],[114.562185,30.026882],[114.565137,30.030277],[114.553718,30.037711],[114.545017,30.05421],[114.54626,30.062802],[114.54292,30.077794],[114.536394,30.082003],[114.533908,30.094673],[114.518682,30.101973],[114.519925,30.107384],[114.505476,30.123829],[114.508118,30.138382],[114.506486,30.149842],[114.515964,30.162933],[114.513089,30.172588],[114.519848,30.176364],[114.521479,30.192797],[114.534841,30.194599],[114.540589,30.202579],[114.544396,30.218621],[114.544473,30.234619],[114.567778,30.254086],[114.570264,30.273336],[114.590772,30.284481],[114.595045,30.296396],[114.592947,30.313923],[114.598696,30.339244],[114.59722,30.347126],[114.586577,30.363059],[114.593025,30.410287],[114.591161,30.421417],[114.583237,30.437466],[114.591083,30.445298],[114.590539,30.457407],[114.608173,30.456851],[114.619981,30.451331],[114.626662,30.469772],[114.635052,30.470157],[114.640956,30.4779],[114.633265,30.499971],[114.637304,30.50737],[114.633343,30.526697],[114.624021,30.530716],[114.630857,30.538668],[114.625963,30.54149],[114.621146,30.556879],[114.630235,30.556494],[114.66628,30.571923],[114.692848,30.577009],[114.71926,30.584102],[114.739225,30.592862],[114.760044,30.60914],[114.784902,30.616829],[114.791738,30.616829],[114.803235,30.621485],[114.85101,30.628191],[114.859556,30.636349],[114.855283,30.642669],[114.848136,30.641046],[114.840213,30.658383],[114.830813,30.668374],[114.815587,30.659707],[114.805954,30.671576],[114.81279,30.685578],[114.795467,30.708285],[114.791428,30.718783],[114.79873,30.73201],[114.811004,30.72625],[114.829415,30.735295],[114.848214,30.741695],[114.875558,30.764516],[114.877966,30.776458],[114.875947,30.793387],[114.883404,30.797309],[114.900106,30.793984],[114.900728,30.788568],[114.917662,30.783451],[114.924887,30.791297],[114.933898,30.792918],[114.952231,30.774368],[114.958135,30.788654],[114.946949,30.801147],[114.970099,30.810867],[114.972196,30.805666],[114.983848,30.815769],[114.989752,30.808778],[114.993248,30.82438],[115.000861,30.834524],[114.992704,30.843602],[114.999385,30.857537],[115.010571,30.85221],[115.011271,30.858644],[115.029914,30.857579],[115.03442,30.846841],[115.056327,30.855832],[115.051899,30.860136],[115.062153,30.869083],[115.081651,30.87803],[115.079399,30.89098],[115.057026,30.896219],[115.059822,30.903246],[115.05454,30.908783],[115.036828,30.909549],[115.028283,30.916576],[115.035896,30.926923],[115.009562,30.926114],[114.990529,30.945146],[114.9868,30.957022],[114.994103,30.965067],[114.983072,30.971749],[114.983848,30.979665],[114.991228,30.981963],[114.988976,30.99643],[114.985713,30.99443],[114.977634,30.995111],[114.969089,30.99392],[114.964661,30.985878],[114.954484,30.990558],[114.957359,31.000004],[114.942754,30.993622],[114.93786,31.001834],[114.931878,30.994856],[114.921469,31.014341],[114.905699,31.005748],[114.883482,31.006471],[114.863906,30.991026],[114.855205,30.991367],[114.855516,30.984175],[114.870509,30.980175],[114.876257,30.968897],[114.862352,30.945699],[114.843009,30.944805],[114.8413,30.949573],[114.825608,30.948807],[114.825453,30.956426],[114.818151,30.956256],[114.808829,30.974175],[114.80712,30.993622],[114.795312,30.988899],[114.798497,31.000855],[114.778765,30.986643],[114.777988,30.978516],[114.767967,30.96047],[114.762996,30.966386],[114.764472,30.979196],[114.77022,30.985622],[114.760743,30.987154],[114.757869,30.995069],[114.750566,30.994005],[114.730524,30.980048],[114.713589,30.980558],[114.702481,30.973792],[114.704112,30.957831],[114.70116,30.953106],[114.708617,30.939909],[114.693625,30.947615],[114.682594,30.948679],[114.655405,30.932246],[114.650744,30.941868],[114.642975,30.933395],[114.628604,30.927945],[114.615942,30.927264],[114.614233,30.940079],[114.608562,30.944166],[114.604367,30.960555],[114.576246,30.969876],[114.559932,30.984175],[114.551775,30.998004],[114.544007,30.990814],[114.540978,31.000132],[114.525286,31.01264],[114.512157,31.01349],[114.500427,31.03344],[114.504855,31.045008],[114.515575,31.050834],[114.515653,31.063675],[114.534064,31.094369],[114.528548,31.108224],[114.53453,31.117021],[114.527616,31.122375],[114.525674,31.135462],[114.518139,31.144978],[114.493591,31.149184],[114.486522,31.159761],[114.471218,31.170167],[114.461585,31.168553],[114.459177,31.183077],[114.472228,31.183884],[114.472306,31.190932],[114.45273,31.195943],[114.454982,31.204052],[114.434785,31.206047],[114.424453,31.211779],[114.405887,31.229564],[114.402236,31.249341],[114.411868,31.258719],[114.440067,31.307968],[114.431833,31.312124],[114.407363,31.314626],[114.397497,31.311234],[114.376523,31.31276],[114.366501,31.310555],[114.357568,31.32264],[114.347314,31.323192],[114.332942,31.316619],[114.31826,31.325693],[114.31189,31.335233],[114.301558,31.336759],[114.297286,31.349265],[114.282915,31.361261],[114.267456,31.350367],[114.240111,31.339176],[114.239179,31.323701],[114.229003,31.318315],[114.21937,31.302879],[114.203911,31.301649],[114.19723,31.288585],[114.196065,31.278574],[114.200726,31.268053],[114.183558,31.267502],[114.179985,31.256767],[114.184102,31.240557],[114.192103,31.223749],[114.20259,31.217849],[114.212301,31.206896],[114.212145,31.199297],[114.233197,31.203627],[114.243218,31.191867],[114.248346,31.179807],[114.243607,31.169699],[114.232654,31.16078],[114.222866,31.142939],[114.206086,31.126114],[114.181849,31.112644],[114.186432,31.094241],[114.182548,31.084465],[114.191482,31.073837],[114.186355,31.054023],[114.166002,31.046794],[114.167866,31.038459],[114.157923,31.029144],[114.159399,31.021148],[114.170663,31.012299],[114.166157,31.007279],[114.179441,30.986814],[114.173381,30.978516],[114.175401,30.967663],[114.163749,30.955192],[114.157845,30.953659],[114.161185,30.942591],[114.162661,30.91334],[114.159243,30.906015],[114.164603,30.89213],[114.157534,30.885698],[114.16639,30.875218],[114.170973,30.830177],[114.180218,30.818711],[114.173537,30.798503],[114.180917,30.767971],[114.178353,30.75799],[114.165458,30.755815],[114.149533,30.768781],[114.125606,30.77198],[114.113876,30.767757],[114.110303,30.775264],[114.087153,30.782087],[114.030289,30.785328],[114.021977,30.780083],[114.006208,30.785711],[113.994944,30.786266],[113.976533,30.77778],[113.949266,30.779699],[113.94041,30.776842],[113.924174,30.76153],[113.91594,30.769634],[113.905297,30.764047],[113.905919,30.755815],[113.917338,30.753511],[113.910347,30.732266],[113.915862,30.725397],[113.906463,30.721386],[113.902501,30.727658],[113.894422,30.725909],[113.896985,30.708242],[113.913143,30.713534],[113.917882,30.699408],[113.924407,30.693134],[113.937847,30.697615],[113.94445,30.687457],[113.95719,30.683017],[113.939944,30.659536],[113.92534,30.647836],[113.924485,30.642242],[113.940565,30.634597],[113.926583,30.619221],[113.940565,30.608584],[113.939711,30.586282],[113.921067,30.571154],[113.890538,30.568547],[113.881138,30.551707],[113.879584,30.537471],[113.882148,30.525928],[113.868087,30.517633],[113.863038,30.530246],[113.852784,30.530075],[113.838102,30.516307],[113.831421,30.495224],[113.820623,30.49424],[113.811767,30.486327],[113.790171,30.457108],[113.779995,30.44932],[113.774635,30.432716],[113.752806,30.425526],[113.723131,30.423557],[113.716994,30.408404],[113.702312,30.395304],[113.710002,30.388924]]],[[[114.939258,31.019914],[114.947726,31.023317],[114.946328,31.034035],[114.93351,31.03714],[114.929004,31.025188],[114.939258,31.019914]]],[[[114.969089,30.99392],[114.977634,30.995111],[114.985713,30.99443],[114.988976,30.99643],[114.982916,31.002387],[114.98548,31.017659],[114.980663,31.025231],[114.971575,31.021148],[114.977867,31.006131],[114.969089,30.99392]]]]}},{"type":"Feature","properties":{"adcode":420200,"name":"黄石市","center":[115.077048,30.220074],"centroid":[115.02984,29.925181],"childrenNum":6,"level":"city","parent":{"adcode":420000},"subFeatureIndex":1,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.54626,30.062802],[114.545017,30.05421],[114.553718,30.037711],[114.565137,30.030277],[114.562185,30.026882],[114.549989,30.031566],[114.548901,30.021295],[114.537948,30.027183],[114.534297,30.022026],[114.543929,30.007885],[114.534374,29.99284],[114.533831,29.984156],[114.5409,29.975084],[114.532277,29.969322],[114.53686,29.963087],[114.545949,29.962614],[114.553018,29.953884],[114.540822,29.948293],[114.539735,29.939562],[114.554184,29.946272],[114.562806,29.935605],[114.592637,29.940551],[114.605532,29.934959],[114.604911,29.925195],[114.648102,29.911557],[114.665659,29.910309],[114.667989,29.904156],[114.703723,29.893183],[114.724387,29.89469],[114.713201,29.849797],[114.715687,29.838216],[114.734098,29.837398],[114.733165,29.809751],[114.736583,29.797347],[114.731379,29.788129],[114.723766,29.759435],[114.745828,29.741206],[114.76152,29.74349],[114.765792,29.73974],[114.789252,29.73556],[114.790262,29.738792],[114.8138,29.738835],[114.835707,29.73293],[114.845573,29.708877],[114.845417,29.698961],[114.867169,29.695986],[114.882472,29.674468],[114.885346,29.65411],[114.895678,29.640823],[114.891794,29.622875],[114.894125,29.612605],[114.906787,29.600305],[114.906165,29.585803],[114.937006,29.582738],[114.934209,29.564391],[114.944075,29.556317],[114.956892,29.553554],[114.970565,29.552345],[114.980275,29.564305],[114.995268,29.563528],[115.000473,29.572119],[115.012824,29.564477],[115.018961,29.554979],[115.034265,29.5463],[115.046772,29.55187],[115.057259,29.55105],[115.072096,29.557785],[115.087555,29.56003],[115.099518,29.550229],[115.086623,29.522936],[115.100917,29.520517],[115.124688,29.509718],[115.153974,29.510366],[115.157315,29.518919],[115.153275,29.528939],[115.152576,29.550013],[115.157315,29.563916],[115.153508,29.575745],[115.157781,29.584853],[115.172463,29.589084],[115.170909,29.595687],[115.160034,29.598406],[115.133621,29.590033],[115.120959,29.595169],[115.131368,29.602334],[115.128805,29.606779],[115.136418,29.616747],[115.132301,29.61925],[115.132301,29.632324],[115.139059,29.636725],[115.142322,29.651608],[115.120726,29.654714],[115.109073,29.663125],[115.106044,29.673605],[115.113501,29.685033],[115.122202,29.686197],[115.131912,29.679341],[115.137738,29.669637],[115.155217,29.658596],[115.176658,29.6548],[115.188932,29.657388],[115.214412,29.657819],[115.228705,29.654282],[115.250845,29.659933],[115.268557,29.658337],[115.270033,29.646431],[115.265838,29.638062],[115.273995,29.623608],[115.28588,29.61856],[115.30701,29.637285],[115.320915,29.637544],[115.329305,29.646129],[115.34958,29.650745],[115.359834,29.646431],[115.363252,29.653506],[115.378556,29.667524],[115.412581,29.688871],[115.419806,29.699607],[115.436663,29.716723],[115.46292,29.733189],[115.472009,29.742585],[115.466571,29.766286],[115.473951,29.786319],[115.479233,29.811302],[115.48739,29.817848],[115.505801,29.82237],[115.511627,29.840282],[115.488011,29.845018],[115.460356,29.859397],[115.448781,29.869384],[115.436896,29.893571],[115.43107,29.900542],[115.415533,29.90919],[115.406677,29.92356],[115.411027,29.941798],[115.409008,29.950357],[115.385159,29.965409],[115.361776,30.002942],[115.329383,30.028945],[115.322624,30.04652],[115.321925,30.074744],[115.317419,30.089691],[115.301494,30.116616],[115.269256,30.155164],[115.223112,30.196144],[115.209518,30.213517],[115.175182,30.219265],[115.15646,30.209828],[115.147449,30.208112],[115.126164,30.21],[115.112492,30.213732],[115.095168,30.22201],[115.080175,30.240065],[115.079787,30.259231],[115.061764,30.261418],[115.056171,30.254858],[115.024632,30.248341],[115.018806,30.237835],[115.005833,30.230973],[115.01096,30.222868],[114.996511,30.212659],[114.988665,30.218578],[114.97406,30.215619],[114.961786,30.203651],[114.954407,30.203994],[114.93584,30.217635],[114.875403,30.236034],[114.867091,30.242638],[114.861731,30.261632],[114.87183,30.271707],[114.861187,30.28178],[114.848835,30.281309],[114.836173,30.291767],[114.837804,30.30411],[114.830036,30.311909],[114.807663,30.311952],[114.787854,30.308995],[114.784125,30.303767],[114.786301,30.29211],[114.774337,30.290867],[114.737438,30.301067],[114.727417,30.315508],[114.726407,30.325277],[114.716619,30.324677],[114.698441,30.309209],[114.688964,30.289881],[114.695955,30.281009],[114.692692,30.275822],[114.674437,30.267162],[114.671718,30.257087],[114.660687,30.249584],[114.665193,30.234404],[114.665892,30.218064],[114.676612,30.211758],[114.680574,30.203308],[114.704889,30.185289],[114.723688,30.178939],[114.712113,30.167353],[114.71592,30.162074],[114.702636,30.15671],[114.699917,30.145636],[114.715531,30.136407],[114.717706,30.126533],[114.729126,30.119836],[114.731379,30.104421],[114.742099,30.090636],[114.728893,30.088489],[114.719415,30.079985],[114.724853,30.063747],[114.731767,30.059151],[114.72866,30.052449],[114.715997,30.041965],[114.703024,30.040203],[114.697509,30.050215],[114.68508,30.042309],[114.691372,30.037109],[114.687488,30.022413],[114.674825,30.0231],[114.665736,30.016567],[114.658512,30.019834],[114.645228,30.015493],[114.639402,30.026237],[114.641111,30.037066],[114.624098,30.053351],[114.599162,30.04682],[114.593414,30.04884],[114.583082,30.036465],[114.573993,30.034617],[114.567079,30.040719],[114.573371,30.045789],[114.559311,30.057647],[114.54626,30.062802]]],[[[115.140069,30.23702],[115.147294,30.233461],[115.162908,30.229944],[115.164228,30.23449],[115.15009,30.243538],[115.135253,30.247783],[115.140069,30.23702]]]]}},{"type":"Feature","properties":{"adcode":420300,"name":"十堰市","center":[110.787916,32.646907],"centroid":[110.446495,32.45798],"childrenNum":8,"level":"city","parent":{"adcode":420000},"subFeatureIndex":2,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.046718,33.202923],[111.032424,33.20936],[111.024966,33.219492],[111.017975,33.22215],[111.011139,33.234108],[110.99669,33.239422],[110.985037,33.255446],[110.96616,33.256151],[110.95645,33.250714],[110.942933,33.23635],[110.945963,33.228669],[110.941535,33.221942],[110.921648,33.204002],[110.903004,33.204376],[110.881796,33.212059],[110.865328,33.214094],[110.858647,33.20666],[110.830526,33.20259],[110.820971,33.191625],[110.81732,33.177293],[110.824233,33.1603],[110.814135,33.152695],[110.810561,33.161422],[110.795102,33.149911],[110.765893,33.152446],[110.74554,33.147043],[110.727829,33.133868],[110.717885,33.116949],[110.719905,33.09957],[110.702504,33.097158],[110.686501,33.111503],[110.669566,33.130169],[110.657448,33.154233],[110.651078,33.157516],[110.632745,33.146378],[110.616354,33.145589],[110.60105,33.154482],[110.594136,33.168568],[110.596467,33.183026],[110.593903,33.207076],[110.58497,33.225472],[110.577667,33.250547],[110.563918,33.254864],[110.541001,33.255612],[110.528727,33.246687],[110.527795,33.230413],[110.508996,33.221486],[110.492371,33.201801],[110.481807,33.199101],[110.468445,33.181198],[110.472174,33.172557],[110.450733,33.179578],[110.422301,33.170272],[110.404201,33.175839],[110.376002,33.176005],[110.372196,33.186391],[110.360854,33.181198],[110.353863,33.172889],[110.341744,33.172765],[110.337782,33.160217],[110.297309,33.170563],[110.285502,33.171103],[110.264294,33.166491],[110.250311,33.160217],[110.232366,33.159136],[110.218306,33.163208],[110.204401,33.178955],[110.185057,33.189756],[110.174493,33.203089],[110.165015,33.209318],[110.14272,33.206536],[110.130602,33.201718],[110.114444,33.203878],[110.077622,33.20205],[110.040412,33.191251],[110.03109,33.191916],[110.017961,33.1996],[110.012135,33.208612],[109.999084,33.212641],[109.973604,33.203919],[109.959233,33.208322],[109.916585,33.229707],[109.874714,33.239214],[109.863838,33.244902],[109.845272,33.246978],[109.813189,33.236391],[109.786777,33.233651],[109.762928,33.23581],[109.732476,33.231326],[109.717872,33.233444],[109.701403,33.241249],[109.693013,33.254325],[109.675923,33.255902],[109.659221,33.248513],[109.649744,33.25171],[109.647802,33.268146],[109.636227,33.275616],[109.61634,33.274122],[109.607407,33.264245],[109.606863,33.236059],[109.587675,33.22979],[109.549766,33.242328],[109.537414,33.243615],[109.514265,33.237761],[109.507195,33.230454],[109.505797,33.216918],[109.498262,33.207325],[109.481948,33.200223],[109.472083,33.181406],[109.438912,33.152072],[109.450875,33.145547],[109.468509,33.140269],[109.514032,33.140269],[109.54526,33.128257],[109.560331,33.125638],[109.576178,33.110256],[109.592181,33.11961],[109.601969,33.108177],[109.613932,33.10851],[109.633275,33.117989],[109.666213,33.114829],[109.688041,33.116617],[109.7042,33.10194],[109.715231,33.099487],[109.746148,33.083809],[109.761607,33.079858],[109.768055,33.074534],[109.794467,33.066922],[109.795866,33.05827],[109.790661,33.038174],[109.787398,33.000259],[109.784601,32.985979],[109.773337,32.952206],[109.773104,32.935961],[109.767278,32.924087],[109.764326,32.909295],[109.772949,32.903586],[109.789884,32.882538],[109.798895,32.877452],[109.808372,32.878953],[109.827483,32.890791],[109.847758,32.893292],[109.85708,32.910295],[109.871917,32.910879],[109.883803,32.901752],[109.907574,32.903753],[109.915963,32.90096],[109.931267,32.885331],[109.950999,32.886706],[109.975702,32.884122],[109.991083,32.885873],[110.004367,32.873284],[110.0321,32.870949],[110.036528,32.861235],[110.051287,32.851937],[110.08407,32.842971],[110.101393,32.834672],[110.116153,32.822535],[110.119493,32.81294],[110.129203,32.807517],[110.140856,32.80881],[110.142176,32.802844],[110.13099,32.788157],[110.127494,32.777766],[110.139613,32.764953],[110.159577,32.767207],[110.164238,32.750802],[110.162296,32.715938],[110.15445,32.690083],[110.157169,32.683274],[110.17892,32.663344],[110.187854,32.646335],[110.20642,32.633001],[110.200749,32.62439],[110.18498,32.617408],[110.165171,32.593867],[110.153751,32.593156],[110.133398,32.612182],[110.124076,32.616781],[110.102558,32.619039],[110.085312,32.613144],[110.088808,32.59968],[110.088187,32.585461],[110.05152,32.558648],[110.028215,32.548398],[110.017651,32.546976],[109.995744,32.550741],[109.987898,32.556473],[109.971118,32.577556],[109.960942,32.580275],[109.944784,32.576845],[109.924819,32.588723],[109.910526,32.592696],[109.881239,32.591985],[109.849467,32.579773],[109.817073,32.577389],[109.758189,32.589852],[109.736749,32.600307],[109.726728,32.608294],[109.709016,32.608252],[109.697519,32.603778],[109.631799,32.600056],[109.619292,32.593073],[109.615952,32.58107],[109.619991,32.567434],[109.633353,32.551996],[109.636771,32.541076],[109.629779,32.531493],[109.618127,32.524755],[109.58752,32.516092],[109.575712,32.506381],[109.576023,32.491728],[109.565613,32.481135],[109.552795,32.477157],[109.548212,32.468992],[109.547435,32.454794],[109.541609,32.444323],[109.526927,32.433389],[109.529646,32.405735],[109.526305,32.399909],[109.511546,32.399071],[109.506263,32.395299],[109.500437,32.378868],[109.513177,32.342307],[109.510691,32.324609],[109.495465,32.300404],[109.502301,32.289578],[109.518615,32.280137],[109.528714,32.270316],[109.548678,32.234425],[109.550387,32.224852],[109.562117,32.222626],[109.573847,32.22523],[109.592724,32.219309],[109.603833,32.20566],[109.604299,32.199276],[109.590394,32.174155],[109.587131,32.161466],[109.592569,32.139151],[109.603367,32.124817],[109.609426,32.122001],[109.621622,32.10674],[109.617894,32.085126],[109.590938,32.047732],[109.587597,32.025262],[109.590938,32.012679],[109.601347,31.997652],[109.613077,31.989738],[109.631255,31.962243],[109.630711,31.943923],[109.620613,31.92859],[109.594511,31.923366],[109.584956,31.900487],[109.587675,31.892438],[109.607562,31.881649],[109.619292,31.852983],[109.633663,31.824815],[109.638247,31.811065],[109.633896,31.804611],[109.614476,31.806257],[109.604532,31.803768],[109.591792,31.788876],[109.589928,31.777652],[109.594356,31.763684],[109.592957,31.751909],[109.604455,31.742412],[109.592414,31.736502],[109.585733,31.726708],[109.606164,31.714717],[109.617039,31.711592],[109.644927,31.720881],[109.658988,31.716955],[109.682992,31.719784],[109.693324,31.716575],[109.696043,31.707074],[109.709482,31.70112],[109.731078,31.700444],[109.728048,31.68883],[109.731855,31.673159],[109.740633,31.663611],[109.7404,31.635174],[109.73737,31.628666],[109.764249,31.603008],[109.745138,31.597047],[109.746459,31.577978],[109.727504,31.570746],[109.718882,31.557001],[109.727815,31.54833],[109.740244,31.546215],[109.765414,31.549641],[109.788563,31.550445],[109.800993,31.541435],[109.822045,31.553744],[109.83797,31.555267],[109.860187,31.54355],[109.869198,31.530097],[109.87821,31.52887],[109.894601,31.519181],[109.923809,31.521465],[109.934918,31.517742],[109.94525,31.506697],[109.965603,31.507882],[109.982305,31.512537],[109.994656,31.521338],[110.012601,31.523666],[110.025186,31.519604],[110.041266,31.529377],[110.048646,31.537585],[110.065892,31.544861],[110.069931,31.549641],[110.064959,31.563895],[110.083836,31.572057],[110.098208,31.586096],[110.129436,31.603896],[110.168666,31.60398],[110.180163,31.599119],[110.191505,31.581445],[110.202691,31.57895],[110.215509,31.569097],[110.219393,31.570746],[110.223044,31.58673],[110.233842,31.59172],[110.234075,31.599161],[110.223511,31.612815],[110.206187,31.619029],[110.212013,31.632638],[110.236173,31.645696],[110.237882,31.659935],[110.233143,31.667456],[110.217374,31.675355],[110.222889,31.686169],[110.233532,31.716532],[110.233454,31.732787],[110.249457,31.745747],[110.271829,31.753133],[110.283482,31.762714],[110.298863,31.763516],[110.314244,31.760857],[110.330169,31.763178],[110.348269,31.762207],[110.370176,31.771702],[110.368622,31.800815],[110.387266,31.802587],[110.399152,31.806974],[110.405056,31.81773],[110.428283,31.820429],[110.432556,31.812246],[110.451044,31.805961],[110.464017,31.813596],[110.472562,31.814651],[110.472019,31.828653],[110.489186,31.836117],[110.482894,31.847376],[110.509229,31.856778],[110.51824,31.854501],[110.518861,31.838563],[110.530514,31.840798],[110.536806,31.84999],[110.58598,31.844719],[110.598642,31.84805],[110.611149,31.844382],[110.618296,31.849568],[110.627074,31.845816],[110.636473,31.848598],[110.652321,31.842991],[110.660555,31.844888],[110.664595,31.857832],[110.670809,31.860403],[110.685025,31.85408],[110.700873,31.852351],[110.708641,31.845858],[110.723478,31.842527],[110.752687,31.839702],[110.760766,31.828147],[110.766826,31.832069],[110.765427,31.840545],[110.782595,31.844213],[110.785314,31.848809],[110.782207,31.864155],[110.795491,31.864282],[110.808386,31.853194],[110.816387,31.856525],[110.842023,31.852899],[110.847072,31.849062],[110.872863,31.852056],[110.867347,31.863439],[110.880087,31.860656],[110.874184,31.871659],[110.892517,31.875242],[110.907277,31.861879],[110.917453,31.859097],[110.9152,31.867106],[110.939127,31.877012],[110.955518,31.869425],[110.957304,31.858801],[110.971676,31.845984],[110.994748,31.864029],[111.002671,31.85741],[110.995757,31.841726],[110.996068,31.828569],[111.000574,31.822833],[111.020461,31.832406],[111.025821,31.847418],[111.016343,31.859181],[111.017276,31.879626],[111.005157,31.886074],[111.000574,31.895599],[111.015722,31.90862],[111.004769,31.918142],[111.006245,31.922481],[110.992806,31.927158],[110.988455,31.920291],[110.983872,31.934867],[110.978123,31.94089],[110.987601,31.941143],[110.999253,31.985949],[110.995214,31.99138],[111.006012,31.998199],[111.005701,32.008807],[111.018985,32.013731],[111.036774,32.013984],[111.046718,32.009312],[111.054253,31.982665],[111.063264,31.970918],[111.065051,31.959716],[111.073829,31.966749],[111.094104,31.94367],[111.105291,31.948935],[111.098687,31.962959],[111.086802,31.968897],[111.085714,31.991211],[111.074373,31.995295],[111.066216,31.981528],[111.058525,31.985233],[111.058448,32.003461],[111.07212,32.007965],[111.079966,32.019286],[111.08152,32.024589],[111.069556,32.02905],[111.071498,32.044071],[111.077169,32.04689],[111.083384,32.063676],[111.078179,32.068176],[111.057671,32.061783],[111.063885,32.084495],[111.080665,32.097069],[111.090841,32.085883],[111.120361,32.107371],[111.128285,32.106151],[111.144987,32.121623],[111.158659,32.117166],[111.183673,32.126121],[111.219096,32.148565],[111.231681,32.163861],[111.254442,32.204904],[111.257161,32.219183],[111.248771,32.234887],[111.237895,32.239841],[111.236575,32.254786],[111.240459,32.268638],[111.224612,32.265909],[111.211872,32.276612],[111.233778,32.294404],[111.230749,32.303173],[111.235332,32.321631],[111.25483,32.337485],[111.275494,32.347843],[111.303848,32.353755],[111.316122,32.365202],[111.316744,32.375724],[111.329484,32.388719],[111.354886,32.396682],[111.375317,32.408417],[111.382308,32.428194],[111.399631,32.419228],[111.408099,32.41047],[111.424024,32.413403],[111.441347,32.425513],[111.466672,32.431755],[111.484617,32.448763],[111.474363,32.470457],[111.483218,32.470499],[111.489977,32.477786],[111.499376,32.475524],[111.507999,32.4893],[111.526177,32.497966],[111.533169,32.491017],[111.539306,32.499306],[111.542102,32.515129],[111.555774,32.533125],[111.556396,32.540406],[111.578691,32.564171],[111.585139,32.577807],[111.583041,32.596544],[111.572476,32.594118],[111.559115,32.601102],[111.530217,32.62832],[111.524779,32.647296],[111.526566,32.654192],[111.512971,32.673999],[111.479878,32.694678],[111.467837,32.707376],[111.472654,32.717775],[111.464652,32.722369],[111.441114,32.722787],[111.4255,32.732641],[111.427209,32.736274],[111.441736,32.726754],[111.444455,32.736691],[111.456962,32.726962],[111.469002,32.738612],[111.469158,32.752806],[111.475062,32.76128],[111.461933,32.774386],[111.462943,32.765454],[111.448261,32.761489],[111.447329,32.754935],[111.437541,32.75026],[111.422936,32.750969],[111.413537,32.757148],[111.410196,32.769336],[111.404137,32.775638],[111.405691,32.782524],[111.396136,32.794541],[111.385105,32.821325],[111.380055,32.828833],[111.358615,32.837007],[111.33127,32.841178],[111.316355,32.850811],[111.293516,32.8594],[111.289865,32.865071],[111.29072,32.892583],[111.280155,32.904336],[111.26959,32.89846],[111.254908,32.884039],[111.246363,32.888499],[111.249936,32.914212],[111.242789,32.930628],[111.245586,32.944167],[111.253121,32.955788],[111.267803,32.963743],[111.27363,32.971863],[111.269512,32.987852],[111.258792,33.006461],[111.240537,33.019988],[111.240459,33.037175],[111.22166,33.042626],[111.189344,33.038673],[111.179866,33.043958],[111.152988,33.039714],[111.148249,33.042418],[111.150735,33.053194],[111.167825,33.063969],[111.192917,33.071623],[111.190975,33.08672],[111.176992,33.101192],[111.179555,33.115453],[111.162543,33.124266],[111.146307,33.123809],[111.139238,33.134367],[111.132013,33.137775],[111.128207,33.154441],[111.106689,33.164455],[111.098532,33.176919],[111.088822,33.182029],[111.073207,33.180658],[111.061866,33.174011],[111.045475,33.158139],[111.03724,33.161006],[111.045785,33.170064],[111.0339,33.178041],[111.0158,33.174053],[111.030482,33.18772],[111.035997,33.187969],[111.046718,33.202923]]],[[[111.143666,32.046806],[111.137296,32.047437],[111.131004,32.038391],[111.122225,32.038602],[111.110495,32.047984],[111.101406,32.034773],[111.098765,32.023411],[111.088822,32.01512],[111.084471,32.00102],[111.099231,32.002493],[111.102805,32.012342],[111.112282,32.012258],[111.122847,32.019791],[111.122692,32.028461],[111.143355,32.030438],[111.150502,32.035951],[111.143666,32.046806]]],[[[110.999253,31.985949],[110.987601,31.941143],[110.996224,31.940932],[110.992806,31.927158],[111.006245,31.922481],[111.009818,31.939669],[111.015411,31.946071],[111.01075,31.951673],[111.007876,31.966581],[111.017043,31.967254],[111.010983,31.977697],[110.999253,31.985949]]],[[[111.046718,33.202923],[111.035997,33.187969],[111.0339,33.178041],[111.045785,33.170064],[111.057826,33.183608],[111.056506,33.192746],[111.046718,33.202923]]]]}},{"type":"Feature","properties":{"adcode":420500,"name":"宜昌市","center":[111.290843,30.702636],"centroid":[111.140801,30.747312],"childrenNum":13,"level":"city","parent":{"adcode":420000},"subFeatureIndex":3,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.079824,30.659323],[112.086427,30.670082],[112.079902,30.683914],[112.070269,30.687329],[112.060714,30.688396],[112.069881,30.696335],[112.072755,30.699152],[112.055898,30.723007],[112.066851,30.731541],[112.069181,30.740543],[112.063122,30.760805],[112.046653,30.768056],[112.049217,30.785584],[112.045333,30.79441],[112.052713,30.796457],[112.047586,30.806476],[112.049139,30.818839],[112.046032,30.829452],[112.033758,30.84113],[112.015192,30.865419],[112.024436,30.873216],[112.027388,30.881438],[112.028476,30.902054],[112.031428,30.907377],[112.027776,30.920962],[112.031117,30.927647],[112.025524,30.933182],[112.015891,30.923389],[112.015036,30.934034],[112.0082,30.957533],[112.011152,30.968004],[112.02094,30.984473],[112.013017,30.984941],[112.004005,30.993196],[112.002685,31.002514],[111.989634,31.005152],[111.988935,31.014171],[111.976195,31.015405],[111.973631,31.027655],[111.964853,31.034886],[111.969825,31.050068],[111.961746,31.056574],[111.945355,31.055767],[111.935489,31.04875],[111.919331,31.050324],[111.917,31.058871],[111.905736,31.076302],[111.911873,31.081149],[111.919564,31.074262],[111.928653,31.074559],[111.942558,31.098619],[111.949317,31.099001],[111.962678,31.117021],[111.952968,31.123267],[111.944578,31.123097],[111.937664,31.138096],[111.928187,31.141197],[111.934013,31.15237],[111.934634,31.173479],[111.926944,31.173352],[111.918088,31.180401],[111.90931,31.170549],[111.902784,31.175475],[111.908378,31.186898],[111.901775,31.193013],[111.899755,31.184775],[111.88515,31.174031],[111.883752,31.189319],[111.877537,31.197004],[111.883907,31.207873],[111.869847,31.211948],[111.871711,31.222433],[111.861535,31.2288],[111.849028,31.23279],[111.837142,31.228758],[111.830617,31.240684],[111.810342,31.250657],[111.799699,31.246328],[111.800165,31.253627],[111.787503,31.273484],[111.782453,31.264192],[111.77554,31.264871],[111.774141,31.277811],[111.767228,31.281544],[111.754954,31.280356],[111.752934,31.289307],[111.744311,31.288585],[111.749283,31.295669],[111.737475,31.294778],[111.741592,31.306484],[111.750137,31.309919],[111.748273,31.317722],[111.757362,31.318612],[111.754021,31.324718],[111.745166,31.324252],[111.753478,31.343034],[111.743767,31.350706],[111.748195,31.353419],[111.740815,31.36711],[111.72155,31.357361],[111.710286,31.35876],[111.702595,31.351258],[111.695371,31.358167],[111.676105,31.350155],[111.660336,31.349562],[111.647518,31.362151],[111.628719,31.373001],[111.596869,31.340066],[111.518953,31.302243],[111.507145,31.302582],[111.507145,31.302582],[111.467604,31.306696],[111.438318,31.31293],[111.433424,31.320817],[111.435133,31.335742],[111.431715,31.344772],[111.43086,31.36444],[111.409031,31.369949],[111.391319,31.360286],[111.376249,31.358718],[111.361489,31.347103],[111.349759,31.346467],[111.32459,31.356344],[111.314258,31.366728],[111.315345,31.374865],[111.298333,31.383553],[111.276115,31.383892],[111.266794,31.397239],[111.262832,31.417065],[111.271066,31.421428],[111.275727,31.436337],[111.271998,31.445738],[111.263919,31.452217],[111.236264,31.461617],[111.218863,31.462844],[111.212105,31.458102],[111.202394,31.439428],[111.195636,31.438369],[111.18274,31.4465],[111.176448,31.442138],[111.16868,31.451412],[111.157494,31.441207],[111.145064,31.434473],[111.12611,31.437946],[111.116088,31.430111],[111.108864,31.414396],[111.088744,31.417997],[111.091696,31.424139],[111.060545,31.430873],[111.045475,31.42075],[111.039726,31.423334],[111.051534,31.438369],[111.052699,31.441461],[111.04563,31.447262],[111.039027,31.461151],[111.040581,31.482234],[111.052311,31.497429],[111.062099,31.503904],[111.055806,31.513468],[111.055185,31.524385],[111.036075,31.538008],[111.046407,31.547484],[111.043999,31.565079],[111.007643,31.563937],[111.000496,31.568632],[110.989854,31.566263],[110.976414,31.569393],[110.947827,31.566433],[110.914035,31.55146],[110.908908,31.532424],[110.892284,31.529039],[110.884438,31.518927],[110.856239,31.499757],[110.84816,31.499503],[110.840858,31.513553],[110.829827,31.523412],[110.829516,31.538346],[110.824932,31.542027],[110.81227,31.536654],[110.796578,31.55311],[110.789509,31.552983],[110.769234,31.541689],[110.743676,31.538685],[110.733189,31.531028],[110.733267,31.516261],[110.709262,31.482615],[110.707864,31.477154],[110.695435,31.477789],[110.68588,31.485451],[110.677879,31.48198],[110.656749,31.482911],[110.637173,31.479609],[110.616587,31.485662],[110.611926,31.483123],[110.613712,31.466824],[110.606332,31.458399],[110.606488,31.4501],[110.598564,31.438073],[110.587844,31.409101],[110.578522,31.399823],[110.580852,31.381519],[110.566481,31.366093],[110.567724,31.356556],[110.576658,31.34439],[110.573861,31.330145],[110.567258,31.326117],[110.53735,31.317298],[110.525464,31.324718],[110.522668,31.336717],[110.508063,31.347697],[110.512569,31.356302],[110.503325,31.368381],[110.490818,31.369822],[110.490662,31.356344],[110.483438,31.339515],[110.467591,31.328873],[110.447781,31.329128],[110.443509,31.319757],[110.42704,31.310258],[110.43644,31.301861],[110.438615,31.2899],[110.434498,31.282944],[110.438537,31.276199],[110.45019,31.26958],[110.45252,31.260798],[110.464328,31.262198],[110.473728,31.253033],[110.498198,31.254136],[110.505189,31.249171],[110.485069,31.23313],[110.483826,31.225829],[110.488876,31.212458],[110.487555,31.205495],[110.476524,31.204859],[110.476136,31.186177],[110.50014,31.182695],[110.499208,31.163031],[110.512103,31.153771],[110.514744,31.143874],[110.538826,31.132615],[110.536107,31.12076],[110.517541,31.107502],[110.512647,31.097301],[110.498275,31.085612],[110.479088,31.084932],[110.465959,31.081404],[110.464561,31.074517],[110.477689,31.037778],[110.4599,31.031696],[110.446305,31.030675],[110.443509,31.023444],[110.442887,30.999281],[110.444907,30.969578],[110.425486,30.910912],[110.430769,30.910188],[110.440324,30.892641],[110.44312,30.881012],[110.421214,30.870745],[110.413756,30.875644],[110.404667,30.872875],[110.376002,30.847096],[110.362097,30.841471],[110.35697,30.833118],[110.335996,30.82698],[110.332811,30.813425],[110.339336,30.806305],[110.336617,30.797011],[110.324965,30.783366],[110.318284,30.762213],[110.326052,30.754535],[110.339181,30.752573],[110.360388,30.756924],[110.37507,30.76763],[110.38478,30.781831],[110.422379,30.782087],[110.433643,30.771639],[110.442577,30.743273],[110.454229,30.731071],[110.460988,30.730773],[110.460521,30.721044],[110.465571,30.713406],[110.457803,30.70359],[110.452442,30.669655],[110.463706,30.666069],[110.469222,30.64916],[110.44918,30.649502],[110.447393,30.63101],[110.432866,30.617384],[110.441489,30.605765],[110.449413,30.604227],[110.466037,30.594272],[110.471941,30.577992],[110.467435,30.562606],[110.484215,30.565384],[110.487633,30.553929],[110.472407,30.551707],[110.474194,30.541704],[110.466581,30.522806],[110.45151,30.521267],[110.445762,30.512587],[110.439547,30.489578],[110.411814,30.48299],[110.387111,30.469173],[110.373827,30.474478],[110.367224,30.466563],[110.377867,30.44564],[110.373283,30.441318],[110.37507,30.423557],[110.367224,30.416366],[110.369399,30.40545],[110.377944,30.401083],[110.375614,30.390936],[110.363418,30.381431],[110.354873,30.3667],[110.353474,30.346869],[110.367146,30.336245],[110.350911,30.331275],[110.36769,30.315337],[110.373439,30.304324],[110.35798,30.273893],[110.351998,30.258588],[110.350212,30.243452],[110.323489,30.25027],[110.298475,30.243495],[110.27618,30.243624],[110.255671,30.234404],[110.266159,30.221752],[110.279209,30.220852],[110.297076,30.212145],[110.300572,30.200133],[110.276956,30.192068],[110.275791,30.182157],[110.284259,30.176407],[110.303524,30.169627],[110.304845,30.151516],[110.342055,30.135033],[110.348114,30.127435],[110.318905,30.100728],[110.341356,30.093728],[110.343375,30.081574],[110.324965,30.069289],[110.320304,30.063146],[110.32411,30.044543],[110.318206,30.037668],[110.316963,30.01704],[110.305621,30.001739],[110.313312,29.977836],[110.302592,29.962786],[110.307253,29.954486],[110.339957,29.943089],[110.354639,29.955131],[110.370254,29.959389],[110.382683,29.955647],[110.423389,29.95741],[110.43007,29.962614],[110.441878,29.98364],[110.46627,30.006725],[110.491595,30.019705],[110.499829,30.026968],[110.495945,30.040246],[110.496333,30.054597],[110.508219,30.050429],[110.52127,30.058936],[110.531368,30.061127],[110.5511,30.055628],[110.568035,30.054339],[110.576347,30.059065],[110.597632,30.054468],[110.626608,30.06379],[110.651,30.077622],[110.659623,30.071222],[110.686346,30.059151],[110.682151,30.053866],[110.694037,30.041535],[110.71237,30.033156],[110.722391,30.039645],[110.735675,30.039902],[110.748259,30.045875],[110.756183,30.054296],[110.754163,30.064091],[110.756028,30.082991],[110.748959,30.088317],[110.753153,30.101286],[110.746395,30.112623],[110.763019,30.11902],[110.788344,30.120008],[110.802948,30.114426],[110.814368,30.125975],[110.836119,30.122712],[110.848626,30.126104],[110.858025,30.118548],[110.87395,30.113438],[110.897877,30.109789],[110.924289,30.111334],[110.925221,30.094501],[110.922968,30.075732],[110.929882,30.063447],[110.970899,30.058979],[110.998399,30.059366],[111.005856,30.054468],[111.031569,30.048883],[111.086258,30.049441],[111.124012,30.044457],[111.133489,30.045273],[111.178934,30.040504],[111.179711,30.044242],[111.199753,30.040977],[111.213348,30.04175],[111.243799,30.039559],[111.251102,30.043727],[111.27899,30.04682],[111.306257,30.046434],[111.31721,30.050687],[111.324046,30.074658],[111.331426,30.084409],[111.352245,30.090808],[111.375705,30.105623],[111.388212,30.123829],[111.403593,30.123313],[111.424801,30.116272],[111.436531,30.109874],[111.45735,30.111034],[111.470556,30.102274],[111.484228,30.100342],[111.507222,30.110261],[111.526721,30.096563],[111.54218,30.103391],[111.558571,30.114984],[111.573253,30.121682],[111.575972,30.136364],[111.573875,30.147954],[111.583663,30.166194],[111.578302,30.169541],[111.579701,30.189537],[111.590266,30.193612],[111.592285,30.213474],[111.5985,30.216091],[111.606967,30.231831],[111.594849,30.240365],[111.594305,30.233632],[111.576283,30.239422],[111.573952,30.254601],[111.587158,30.257516],[111.602073,30.268106],[111.609376,30.281737],[111.633846,30.315465],[111.680067,30.337187],[111.693429,30.345541],[111.715413,30.363316],[111.736387,30.373766],[111.764353,30.373123],[111.779035,30.361646],[111.781987,30.345926],[111.788435,30.330419],[111.814148,30.29751],[111.825024,30.301238],[111.831627,30.283452],[111.857884,30.288081],[111.89253,30.279037],[111.900842,30.281609],[111.907756,30.317779],[111.913349,30.327162],[111.914126,30.341943],[111.929663,30.35415],[111.939606,30.347768],[111.958794,30.316665],[111.991498,30.282937],[112.013716,30.274793],[112.043779,30.276551],[112.041371,30.283923],[112.048673,30.288981],[112.049761,30.298324],[112.027388,30.308566],[111.996392,30.33556],[111.976972,30.36246],[111.977671,30.38734],[111.980778,30.407548],[111.978603,30.420347],[111.971845,30.435883],[111.956463,30.448036],[111.952191,30.441147],[111.942636,30.439221],[111.92205,30.444485],[111.90931,30.456637],[111.927643,30.475077],[111.913505,30.479526],[111.924147,30.505916],[111.974719,30.503777],[111.981555,30.524132],[111.999966,30.546791],[112.002141,30.557862],[111.997402,30.567222],[111.976661,30.572778],[111.989013,30.589016],[111.986604,30.600809],[112.011618,30.615676],[112.018299,30.626824],[112.021251,30.645146],[112.061646,30.65706],[112.06654,30.652064],[112.079824,30.659323]]],[[[111.052699,31.441461],[111.051534,31.438369],[111.060545,31.430873],[111.091696,31.424139],[111.089521,31.431297],[111.073674,31.442393],[111.065361,31.437692],[111.052699,31.441461]]],[[[111.596869,30.155336],[111.601297,30.155336],[111.597646,30.167782],[111.588246,30.166924],[111.596869,30.155336]]],[[[112.079902,30.683914],[112.072755,30.699152],[112.069881,30.696335],[112.070269,30.687329],[112.079902,30.683914]]]]}},{"type":"Feature","properties":{"adcode":420600,"name":"襄阳市","center":[112.144146,32.042426],"centroid":[111.944787,31.930988],"childrenNum":9,"level":"city","parent":{"adcode":420000},"subFeatureIndex":4,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.583041,32.596544],[111.585139,32.577807],[111.578691,32.564171],[111.556396,32.540406],[111.555774,32.533125],[111.542102,32.515129],[111.539306,32.499306],[111.533169,32.491017],[111.526177,32.497966],[111.507999,32.4893],[111.499376,32.475524],[111.489977,32.477786],[111.483218,32.470499],[111.474363,32.470457],[111.484617,32.448763],[111.466672,32.431755],[111.441347,32.425513],[111.424024,32.413403],[111.408099,32.41047],[111.399631,32.419228],[111.382308,32.428194],[111.375317,32.408417],[111.354886,32.396682],[111.329484,32.388719],[111.316744,32.375724],[111.316122,32.365202],[111.303848,32.353755],[111.275494,32.347843],[111.25483,32.337485],[111.235332,32.321631],[111.230749,32.303173],[111.233778,32.294404],[111.211872,32.276612],[111.224612,32.265909],[111.240459,32.268638],[111.236575,32.254786],[111.237895,32.239841],[111.248771,32.234887],[111.257161,32.219183],[111.254442,32.204904],[111.231681,32.163861],[111.219096,32.148565],[111.183673,32.126121],[111.158659,32.117166],[111.144987,32.121623],[111.128285,32.106151],[111.134266,32.076378],[111.139782,32.068681],[111.133023,32.058375],[111.143666,32.046806],[111.150502,32.035951],[111.143355,32.030438],[111.122692,32.028461],[111.122847,32.019791],[111.112282,32.012258],[111.102805,32.012342],[111.099231,32.002493],[111.084471,32.00102],[111.088822,32.01512],[111.079966,32.019286],[111.07212,32.007965],[111.058448,32.003461],[111.058525,31.985233],[111.066216,31.981528],[111.074373,31.995295],[111.085714,31.991211],[111.086802,31.968897],[111.098687,31.962959],[111.105291,31.948935],[111.094104,31.94367],[111.073829,31.966749],[111.065051,31.959716],[111.063264,31.970918],[111.054253,31.982665],[111.046718,32.009312],[111.036774,32.013984],[111.018985,32.013731],[111.005701,32.008807],[111.006012,31.998199],[110.995214,31.99138],[110.999253,31.985949],[111.010983,31.977697],[111.017043,31.967254],[111.007876,31.966581],[111.01075,31.951673],[111.015411,31.946071],[111.009818,31.939669],[111.006245,31.922481],[111.004769,31.918142],[111.015722,31.90862],[111.000574,31.895599],[111.005157,31.886074],[111.017276,31.879626],[111.016343,31.859181],[111.025821,31.847418],[111.020461,31.832406],[111.000574,31.822833],[110.996068,31.828569],[110.995757,31.841726],[111.002671,31.85741],[110.994748,31.864029],[110.971676,31.845984],[110.957304,31.858801],[110.955518,31.869425],[110.939127,31.877012],[110.9152,31.867106],[110.917453,31.859097],[110.907277,31.861879],[110.892517,31.875242],[110.874184,31.871659],[110.880087,31.860656],[110.867347,31.863439],[110.872863,31.852056],[110.847072,31.849062],[110.842023,31.852899],[110.816387,31.856525],[110.808386,31.853194],[110.795491,31.864282],[110.782207,31.864155],[110.785314,31.848809],[110.782595,31.844213],[110.765427,31.840545],[110.766826,31.832069],[110.775138,31.827894],[110.777701,31.816464],[110.802249,31.789424],[110.81126,31.782462],[110.835497,31.782589],[110.848704,31.771491],[110.852588,31.763347],[110.868357,31.746464],[110.875504,31.732998],[110.872708,31.71611],[110.878922,31.711677],[110.880709,31.69546],[110.891429,31.675778],[110.906966,31.666019],[110.914656,31.657696],[110.946739,31.665681],[110.95241,31.660611],[110.976414,31.650344],[110.982318,31.643203],[110.970666,31.638174],[110.957382,31.615478],[110.941612,31.593622],[110.947827,31.566433],[110.976414,31.569393],[110.989854,31.566263],[111.000496,31.568632],[111.007643,31.563937],[111.043999,31.565079],[111.046407,31.547484],[111.036075,31.538008],[111.055185,31.524385],[111.055806,31.513468],[111.062099,31.503904],[111.052311,31.497429],[111.040581,31.482234],[111.039027,31.461151],[111.04563,31.447262],[111.052699,31.441461],[111.065361,31.437692],[111.073674,31.442393],[111.089521,31.431297],[111.091696,31.424139],[111.088744,31.417997],[111.108864,31.414396],[111.116088,31.430111],[111.12611,31.437946],[111.145064,31.434473],[111.157494,31.441207],[111.16868,31.451412],[111.176448,31.442138],[111.18274,31.4465],[111.195636,31.438369],[111.202394,31.439428],[111.212105,31.458102],[111.218863,31.462844],[111.236264,31.461617],[111.263919,31.452217],[111.271998,31.445738],[111.275727,31.436337],[111.271066,31.421428],[111.262832,31.417065],[111.266794,31.397239],[111.276115,31.383892],[111.298333,31.383553],[111.315345,31.374865],[111.314258,31.366728],[111.32459,31.356344],[111.349759,31.346467],[111.361489,31.347103],[111.376249,31.358718],[111.391319,31.360286],[111.409031,31.369949],[111.43086,31.36444],[111.431715,31.344772],[111.435133,31.335742],[111.433424,31.320817],[111.438318,31.31293],[111.467604,31.306696],[111.507145,31.302582],[111.507145,31.302582],[111.518953,31.302243],[111.596869,31.340066],[111.628719,31.373001],[111.647518,31.362151],[111.660336,31.349562],[111.676105,31.350155],[111.695371,31.358167],[111.702595,31.351258],[111.710286,31.35876],[111.72155,31.357361],[111.740815,31.36711],[111.748195,31.353419],[111.743767,31.350706],[111.753478,31.343034],[111.745166,31.324252],[111.754021,31.324718],[111.757362,31.318612],[111.748273,31.317722],[111.750137,31.309919],[111.741592,31.306484],[111.737475,31.294778],[111.749283,31.295669],[111.744311,31.288585],[111.752934,31.289307],[111.754954,31.280356],[111.767228,31.281544],[111.774141,31.277811],[111.77554,31.264871],[111.782453,31.264192],[111.787503,31.273484],[111.800165,31.253627],[111.799699,31.246328],[111.810342,31.250657],[111.830617,31.240684],[111.837142,31.228758],[111.849028,31.23279],[111.861535,31.2288],[111.87311,31.236822],[111.884296,31.235124],[111.901153,31.25473],[111.919253,31.260755],[111.92974,31.256088],[111.935955,31.258931],[111.945122,31.273484],[111.93914,31.295075],[111.928109,31.298511],[111.931061,31.313396],[111.918399,31.328153],[111.9358,31.331629],[111.93813,31.359947],[111.94217,31.366474],[111.93611,31.369441],[111.943257,31.388765],[111.946675,31.425282],[111.953978,31.438242],[111.972855,31.444764],[111.985361,31.442816],[111.994994,31.450354],[112.0082,31.447347],[112.024048,31.4346],[112.032127,31.436294],[112.0357,31.443748],[112.045644,31.442731],[112.063355,31.431],[112.073143,31.444171],[112.074464,31.456451],[112.092875,31.455901],[112.110975,31.464115],[112.125269,31.46149],[112.138319,31.462802],[112.146398,31.471397],[112.161236,31.47944],[112.171645,31.478763],[112.191144,31.469576],[112.192853,31.49108],[112.191377,31.514272],[112.204272,31.531662],[112.22579,31.525443],[112.232782,31.52595],[112.249484,31.539362],[112.273022,31.543677],[112.280091,31.547188],[112.298968,31.533016],[112.32538,31.527685],[112.344335,31.514441],[112.357075,31.517403],[112.375796,31.51423],[112.384808,31.509025],[112.41324,31.502169],[112.42295,31.502846],[112.447964,31.523835],[112.468395,31.53272],[112.48129,31.534666],[112.494574,31.549895],[112.51213,31.560892],[112.528055,31.557974],[112.547476,31.562922],[112.566741,31.561061],[112.59696,31.54355],[112.604573,31.530985],[112.633626,31.501873],[112.652659,31.507374],[112.668428,31.498318],[112.68816,31.493747],[112.709367,31.476519],[112.717446,31.477704],[112.724671,31.498402],[112.722884,31.51076],[112.702609,31.543169],[112.708047,31.553363],[112.725137,31.557297],[112.74044,31.556493],[112.746422,31.565714],[112.745334,31.574003],[112.752248,31.609856],[112.737722,31.617085],[112.729798,31.635597],[112.733993,31.647429],[112.729409,31.670244],[112.731818,31.699937],[112.748442,31.712183],[112.75186,31.725188],[112.747121,31.744312],[112.755899,31.748659],[112.770038,31.745578],[112.782778,31.736966],[112.790313,31.740681],[112.799324,31.752331],[112.828766,31.756805],[112.840341,31.77453],[112.854324,31.801237],[112.868229,31.807269],[112.88563,31.797398],[112.898292,31.804865],[112.903264,31.815494],[112.932007,31.84181],[112.941639,31.840882],[112.950573,31.833756],[112.963624,31.829328],[112.978539,31.845478],[112.961759,31.880469],[112.960749,31.889193],[112.966498,31.897116],[112.988016,31.901161],[112.997494,31.916288],[113.000601,31.941817],[113.007359,31.940553],[113.013574,31.954873],[113.03113,31.953062],[113.031674,31.967044],[113.016759,31.973823],[112.991745,31.977865],[112.992133,32.021601],[112.990036,32.050046],[112.994619,32.056945],[113.01171,32.07049],[113.049697,32.115401],[113.048609,32.126163],[113.027945,32.143984],[113.02476,32.149238],[113.025693,32.171802],[113.035947,32.198688],[113.035714,32.235097],[113.025149,32.263181],[113.027635,32.272415],[113.040375,32.276318],[113.05226,32.275898],[113.067719,32.281186],[113.08916,32.305438],[113.091102,32.32205],[113.067564,32.337946],[113.061116,32.361303],[113.083023,32.369352],[113.108736,32.364741],[113.118679,32.375808],[113.107959,32.398485],[113.078905,32.394419],[113.058863,32.404603],[113.050318,32.417929],[113.025304,32.424591],[113.012564,32.417133],[113.000523,32.416797],[112.988638,32.399574],[112.9919,32.378282],[112.988094,32.372329],[112.969838,32.371155],[112.960361,32.385324],[112.948165,32.388258],[112.911887,32.390731],[112.902332,32.388677],[112.888815,32.376772],[112.87724,32.379539],[112.878561,32.392575],[112.870482,32.397856],[112.860694,32.395802],[112.835602,32.381635],[112.803985,32.372245],[112.77633,32.358368],[112.767863,32.344153],[112.754113,32.342853],[112.734925,32.351701],[112.735857,32.356313],[112.734148,32.356774],[112.724127,32.358493],[112.716747,32.357781],[112.71364,32.352581],[112.685596,32.357697],[112.672079,32.368136],[112.645512,32.368472],[112.630441,32.379958],[112.61203,32.387042],[112.596649,32.385575],[112.589036,32.3813],[112.577228,32.382515],[112.57785,32.387964],[112.561692,32.398904],[112.545223,32.403849],[112.544757,32.395509],[112.53124,32.37715],[112.521607,32.383102],[112.506537,32.380755],[112.495661,32.374928],[112.476163,32.379581],[112.472745,32.371742],[112.460238,32.368262],[112.446643,32.357445],[112.451848,32.343607],[112.444857,32.343943],[112.418056,32.356355],[112.414172,32.363189],[112.391022,32.371155],[112.387915,32.363692],[112.368183,32.367927],[112.360027,32.365621],[112.351171,32.350443],[112.338586,32.348514],[112.329808,32.338156],[112.328099,32.321673],[112.299512,32.334926],[112.288325,32.34562],[112.261991,32.358871],[112.255388,32.359751],[112.251581,32.368136],[112.230918,32.377485],[112.229053,32.385366],[112.205904,32.392994],[112.172733,32.385156],[112.178792,32.392114],[112.1725,32.405902],[112.164654,32.411308],[112.150205,32.411643],[112.143602,32.407034],[112.150904,32.401041],[112.158905,32.401879],[112.161391,32.393455],[112.150593,32.384192],[112.164499,32.385324],[112.156886,32.377108],[112.137387,32.390563],[112.13024,32.403095],[112.124414,32.398736],[112.108411,32.404771],[112.093652,32.418892],[112.084407,32.419689],[112.081378,32.42568],[112.086039,32.435316],[112.075163,32.436908],[112.065996,32.444658],[112.069803,32.459988],[112.064054,32.474226],[112.047974,32.473724],[112.038108,32.470081],[112.033836,32.463338],[112.014337,32.450313],[112.007035,32.451025],[112.002141,32.459024],[111.990411,32.457475],[111.992819,32.467317],[111.975573,32.471881],[111.966795,32.49491],[111.956463,32.512283],[111.948695,32.51697],[111.932304,32.515213],[111.915291,32.50772],[111.889889,32.503157],[111.870235,32.506339],[111.862778,32.513622],[111.858272,32.528689],[111.828209,32.531284],[111.827043,32.538063],[111.809176,32.536682],[111.785095,32.557352],[111.766839,32.565175],[111.747341,32.577598],[111.740349,32.589267],[111.729241,32.593993],[111.713549,32.606537],[111.692108,32.60591],[111.672998,32.614983],[111.64643,32.606203],[111.640837,32.617325],[111.640837,32.634757],[111.634001,32.635133],[111.618387,32.627609],[111.603705,32.610259],[111.583041,32.596544]]],[[[111.143666,32.046806],[111.133023,32.058375],[111.139782,32.068681],[111.134266,32.076378],[111.128285,32.106151],[111.120361,32.107371],[111.090841,32.085883],[111.080665,32.097069],[111.063885,32.084495],[111.057671,32.061783],[111.078179,32.068176],[111.083384,32.063676],[111.077169,32.04689],[111.071498,32.044071],[111.069556,32.02905],[111.08152,32.024589],[111.079966,32.019286],[111.088822,32.01512],[111.098765,32.023411],[111.101406,32.034773],[111.110495,32.047984],[111.122225,32.038602],[111.131004,32.038391],[111.137296,32.047437],[111.143666,32.046806]]],[[[110.992806,31.927158],[110.996224,31.940932],[110.987601,31.941143],[110.978123,31.94089],[110.983872,31.934867],[110.988455,31.920291],[110.992806,31.927158]]],[[[111.060545,31.430873],[111.051534,31.438369],[111.039726,31.423334],[111.045475,31.42075],[111.060545,31.430873]]],[[[112.716747,32.357781],[112.724127,32.358493],[112.730885,32.363105],[112.734148,32.356774],[112.735857,32.356313],[112.733604,32.366208],[112.716747,32.357781]]]]}},{"type":"Feature","properties":{"adcode":420700,"name":"鄂州市","center":[114.890593,30.396536],"centroid":[114.759738,30.326618],"childrenNum":3,"level":"city","parent":{"adcode":420000},"subFeatureIndex":5,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.079787,30.259231],[115.086545,30.281094],[115.088643,30.296096],[115.082739,30.329819],[115.071009,30.366742],[115.056016,30.388667],[115.03776,30.401126],[115.018417,30.404679],[114.979187,30.400998],[114.917429,30.407933],[114.892493,30.413712],[114.86375,30.427537],[114.846116,30.44641],[114.839203,30.45929],[114.835707,30.474349],[114.835474,30.493384],[114.840135,30.527253],[114.839591,30.561495],[114.836018,30.580513],[114.828793,30.596494],[114.808673,30.615291],[114.791738,30.616829],[114.784902,30.616829],[114.760044,30.60914],[114.739225,30.592862],[114.71926,30.584102],[114.692848,30.577009],[114.66628,30.571923],[114.630235,30.556494],[114.621146,30.556879],[114.625963,30.54149],[114.630857,30.538668],[114.624021,30.530716],[114.633343,30.526697],[114.637304,30.50737],[114.633265,30.499971],[114.640956,30.4779],[114.635052,30.470157],[114.626662,30.469772],[114.619981,30.451331],[114.608173,30.456851],[114.590539,30.457407],[114.591083,30.445298],[114.583237,30.437466],[114.591161,30.421417],[114.593025,30.410287],[114.586577,30.363059],[114.59722,30.347126],[114.598696,30.339244],[114.592947,30.313923],[114.595045,30.296396],[114.590772,30.284481],[114.570264,30.273336],[114.567778,30.254086],[114.544473,30.234619],[114.544396,30.218621],[114.540589,30.202579],[114.534841,30.194599],[114.521479,30.192797],[114.519848,30.176364],[114.513089,30.172588],[114.515964,30.162933],[114.506486,30.149842],[114.508118,30.138382],[114.505476,30.123829],[114.519925,30.107384],[114.518682,30.101973],[114.533908,30.094673],[114.536394,30.082003],[114.54292,30.077794],[114.54626,30.062802],[114.559311,30.057647],[114.573371,30.045789],[114.567079,30.040719],[114.573993,30.034617],[114.583082,30.036465],[114.593414,30.04884],[114.599162,30.04682],[114.624098,30.053351],[114.641111,30.037066],[114.639402,30.026237],[114.645228,30.015493],[114.658512,30.019834],[114.665736,30.016567],[114.674825,30.0231],[114.687488,30.022413],[114.691372,30.037109],[114.68508,30.042309],[114.697509,30.050215],[114.703024,30.040203],[114.715997,30.041965],[114.72866,30.052449],[114.731767,30.059151],[114.724853,30.063747],[114.719415,30.079985],[114.728893,30.088489],[114.742099,30.090636],[114.731379,30.104421],[114.729126,30.119836],[114.717706,30.126533],[114.715531,30.136407],[114.699917,30.145636],[114.702636,30.15671],[114.71592,30.162074],[114.712113,30.167353],[114.723688,30.178939],[114.704889,30.185289],[114.680574,30.203308],[114.676612,30.211758],[114.665892,30.218064],[114.665193,30.234404],[114.660687,30.249584],[114.671718,30.257087],[114.674437,30.267162],[114.692692,30.275822],[114.695955,30.281009],[114.688964,30.289881],[114.698441,30.309209],[114.716619,30.324677],[114.726407,30.325277],[114.727417,30.315508],[114.737438,30.301067],[114.774337,30.290867],[114.786301,30.29211],[114.784125,30.303767],[114.787854,30.308995],[114.807663,30.311952],[114.830036,30.311909],[114.837804,30.30411],[114.836173,30.291767],[114.848835,30.281309],[114.861187,30.28178],[114.87183,30.271707],[114.861731,30.261632],[114.867091,30.242638],[114.875403,30.236034],[114.93584,30.217635],[114.954407,30.203994],[114.961786,30.203651],[114.97406,30.215619],[114.988665,30.218578],[114.996511,30.212659],[115.01096,30.222868],[115.005833,30.230973],[115.018806,30.237835],[115.024632,30.248341],[115.056171,30.254858],[115.061764,30.261418],[115.079787,30.259231]]]]}},{"type":"Feature","properties":{"adcode":420800,"name":"荆门市","center":[112.204251,31.03542],"centroid":[112.614753,31.06948],"childrenNum":5,"level":"city","parent":{"adcode":420000},"subFeatureIndex":6,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.079824,30.659323],[112.08534,30.651338],[112.096681,30.646982],[112.100721,30.630198],[112.117345,30.625585],[112.109965,30.606448],[112.112451,30.599057],[112.124802,30.58641],[112.133658,30.570855],[112.136921,30.558161],[112.133192,30.546064],[112.136222,30.53294],[112.152069,30.522635],[112.158828,30.534393],[112.173665,30.532555],[112.183065,30.519899],[112.175452,30.492914],[112.17584,30.479055],[112.18858,30.469387],[112.200699,30.473237],[112.214138,30.470071],[112.212507,30.47713],[112.20031,30.481707],[112.200155,30.494026],[112.221518,30.505188],[112.228742,30.499244],[112.248319,30.49779],[112.263078,30.502494],[112.272556,30.499287],[112.275508,30.490519],[112.285839,30.485129],[112.296637,30.4856],[112.302619,30.480167],[112.311164,30.460573],[112.311708,30.451288],[112.304017,30.448849],[112.30293,30.436867],[112.307435,30.426382],[112.330973,30.405621],[112.345578,30.402325],[112.356065,30.406691],[112.381079,30.423386],[112.400266,30.425954],[112.433826,30.422401],[112.439186,30.433272],[112.449207,30.438322],[112.463656,30.435883],[112.505993,30.410887],[112.515703,30.400313],[112.5279,30.394447],[112.533104,30.408789],[112.527045,30.423856],[112.535435,30.437381],[112.545301,30.441489],[112.568295,30.443158],[112.578238,30.45116],[112.582822,30.471569],[112.581501,30.482734],[112.569926,30.485685],[112.568217,30.494881],[112.572257,30.510278],[112.57917,30.509722],[112.57917,30.521994],[112.58422,30.526997],[112.597581,30.515152],[112.597271,30.503692],[112.61203,30.509294],[112.621585,30.52332],[112.616614,30.534693],[112.603408,30.550595],[112.610477,30.56282],[112.62578,30.567479],[112.625547,30.584487],[112.63821,30.599143],[112.636967,30.605038],[112.623761,30.6126],[112.622906,30.619007],[112.632849,30.620161],[112.638598,30.625372],[112.649396,30.623279],[112.651649,30.633701],[112.663457,30.639039],[112.660971,30.62896],[112.669982,30.630369],[112.670914,30.639338],[112.681712,30.638142],[112.68816,30.644634],[112.710222,30.633829],[112.717602,30.634],[112.721408,30.641687],[112.71698,30.651765],[112.704473,30.656334],[112.694607,30.655224],[112.658563,30.643096],[112.63619,30.640961],[112.61405,30.649843],[112.593231,30.665386],[112.593076,30.676315],[112.605427,30.702566],[112.605816,30.704231],[112.607214,30.710888],[112.614594,30.703932],[112.616458,30.70167],[112.632927,30.706877],[112.648464,30.721514],[112.654834,30.731754],[112.689247,30.753767],[112.699501,30.762895],[112.726535,30.780083],[112.771125,30.80315],[112.780292,30.813894],[112.798392,30.826],[112.811598,30.823528],[112.813929,30.813595],[112.823484,30.801616],[112.820687,30.78972],[112.832417,30.777737],[112.829465,30.772278],[112.834204,30.757777],[112.828067,30.753383],[112.834903,30.730815],[112.829776,30.728981],[112.841195,30.729322],[112.848264,30.719167],[112.849197,30.716137],[112.871492,30.705298],[112.880192,30.697743],[112.892388,30.700176],[112.891301,30.711102],[112.89635,30.717289],[112.9101,30.714345],[112.921287,30.717375],[112.930608,30.73649],[112.947155,30.748606],[112.978694,30.764175],[112.995474,30.785285],[113.011477,30.787545],[113.021032,30.775605],[113.036957,30.77134],[113.046201,30.778036],[113.067874,30.779955],[113.075953,30.785072],[113.078905,30.795817],[113.075021,30.810355],[113.07642,30.821141],[113.082323,30.823996],[113.094131,30.817134],[113.123962,30.809844],[113.143693,30.80234],[113.166532,30.811933],[113.188594,30.816281],[113.199236,30.825701],[113.217103,30.851187],[113.220366,30.858985],[113.230931,30.85319],[113.237534,30.85988],[113.230776,30.866484],[113.246701,30.869722],[113.25711,30.88033],[113.25812,30.886464],[113.280337,30.901798],[113.291912,30.903332],[113.32617,30.888935],[113.329977,30.894685],[113.32819,30.911168],[113.334172,30.918194],[113.328967,30.930968],[113.343338,30.937908],[113.345747,30.931905],[113.362914,30.929563],[113.35802,30.945188],[113.364468,30.947402],[113.366255,30.959959],[113.371848,30.966259],[113.391968,30.966557],[113.386841,30.972685],[113.381791,30.99209],[113.39391,30.985367],[113.408825,31.004727],[113.413642,31.003791],[113.429333,31.013618],[113.436403,31.027145],[113.459008,31.045221],[113.469185,31.07035],[113.46833,31.102657],[113.480682,31.113111],[113.49482,31.117106],[113.478662,31.127389],[113.477497,31.13219],[113.491169,31.148377],[113.49047,31.212161],[113.487363,31.226296],[113.474079,31.231389],[113.465223,31.224428],[113.444715,31.234573],[113.437568,31.253839],[113.433684,31.254391],[113.423041,31.280229],[113.412554,31.283029],[113.406262,31.291512],[113.393599,31.286931],[113.388783,31.291936],[113.380005,31.285022],[113.377053,31.275478],[113.369362,31.284089],[113.365944,31.298935],[113.358487,31.307756],[113.349941,31.304151],[113.343416,31.315135],[113.330132,31.319163],[113.331531,31.324379],[113.316693,31.340109],[113.297661,31.327559],[113.295175,31.340956],[113.280027,31.346298],[113.263325,31.356895],[113.24973,31.358675],[113.240486,31.354818],[113.226503,31.374272],[113.206772,31.395501],[113.169406,31.412024],[113.159074,31.406686],[113.147888,31.416133],[113.147344,31.424859],[113.154413,31.42003],[113.161327,31.428544],[113.15418,31.428755],[113.145557,31.437522],[113.134526,31.427019],[113.115572,31.426426],[113.102909,31.442647],[113.080304,31.446712],[113.055445,31.436591],[113.037345,31.44849],[113.026314,31.449464],[113.016371,31.441461],[112.992366,31.43333],[112.982268,31.43676],[112.968518,31.451836],[112.959429,31.466697],[112.951894,31.472624],[112.937367,31.472963],[112.917092,31.469364],[112.903419,31.475715],[112.902099,31.490403],[112.904274,31.506401],[112.89837,31.52722],[112.887261,31.545876],[112.871647,31.560046],[112.847954,31.563218],[112.832573,31.589563],[112.818046,31.596624],[112.782545,31.600345],[112.768018,31.613576],[112.752248,31.609856],[112.745334,31.574003],[112.746422,31.565714],[112.74044,31.556493],[112.725137,31.557297],[112.708047,31.553363],[112.702609,31.543169],[112.722884,31.51076],[112.724671,31.498402],[112.717446,31.477704],[112.709367,31.476519],[112.68816,31.493747],[112.668428,31.498318],[112.652659,31.507374],[112.633626,31.501873],[112.604573,31.530985],[112.59696,31.54355],[112.566741,31.561061],[112.547476,31.562922],[112.528055,31.557974],[112.51213,31.560892],[112.494574,31.549895],[112.48129,31.534666],[112.468395,31.53272],[112.447964,31.523835],[112.42295,31.502846],[112.41324,31.502169],[112.384808,31.509025],[112.375796,31.51423],[112.357075,31.517403],[112.344335,31.514441],[112.32538,31.527685],[112.298968,31.533016],[112.280091,31.547188],[112.273022,31.543677],[112.249484,31.539362],[112.232782,31.52595],[112.22579,31.525443],[112.204272,31.531662],[112.191377,31.514272],[112.192853,31.49108],[112.191144,31.469576],[112.171645,31.478763],[112.161236,31.47944],[112.146398,31.471397],[112.138319,31.462802],[112.125269,31.46149],[112.110975,31.464115],[112.092875,31.455901],[112.074464,31.456451],[112.073143,31.444171],[112.063355,31.431],[112.045644,31.442731],[112.0357,31.443748],[112.032127,31.436294],[112.024048,31.4346],[112.0082,31.447347],[111.994994,31.450354],[111.985361,31.442816],[111.972855,31.444764],[111.953978,31.438242],[111.946675,31.425282],[111.943257,31.388765],[111.93611,31.369441],[111.94217,31.366474],[111.93813,31.359947],[111.9358,31.331629],[111.918399,31.328153],[111.931061,31.313396],[111.928109,31.298511],[111.93914,31.295075],[111.945122,31.273484],[111.935955,31.258931],[111.92974,31.256088],[111.919253,31.260755],[111.901153,31.25473],[111.884296,31.235124],[111.87311,31.236822],[111.861535,31.2288],[111.871711,31.222433],[111.869847,31.211948],[111.883907,31.207873],[111.877537,31.197004],[111.883752,31.189319],[111.88515,31.174031],[111.899755,31.184775],[111.901775,31.193013],[111.908378,31.186898],[111.902784,31.175475],[111.90931,31.170549],[111.918088,31.180401],[111.926944,31.173352],[111.934634,31.173479],[111.934013,31.15237],[111.928187,31.141197],[111.937664,31.138096],[111.944578,31.123097],[111.952968,31.123267],[111.962678,31.117021],[111.949317,31.099001],[111.942558,31.098619],[111.928653,31.074559],[111.919564,31.074262],[111.911873,31.081149],[111.905736,31.076302],[111.917,31.058871],[111.919331,31.050324],[111.935489,31.04875],[111.945355,31.055767],[111.961746,31.056574],[111.969825,31.050068],[111.964853,31.034886],[111.973631,31.027655],[111.976195,31.015405],[111.988935,31.014171],[111.989634,31.005152],[112.002685,31.002514],[112.004005,30.993196],[112.013017,30.984941],[112.02094,30.984473],[112.011152,30.968004],[112.0082,30.957533],[112.015036,30.934034],[112.015891,30.923389],[112.025524,30.933182],[112.031117,30.927647],[112.027776,30.920962],[112.031428,30.907377],[112.028476,30.902054],[112.027388,30.881438],[112.024436,30.873216],[112.015192,30.865419],[112.033758,30.84113],[112.046032,30.829452],[112.049139,30.818839],[112.047586,30.806476],[112.052713,30.796457],[112.045333,30.79441],[112.049217,30.785584],[112.046653,30.768056],[112.063122,30.760805],[112.069181,30.740543],[112.066851,30.731541],[112.055898,30.723007],[112.072755,30.699152],[112.079902,30.683914],[112.086427,30.670082],[112.079824,30.659323]]],[[[112.070269,30.687329],[112.069881,30.696335],[112.060714,30.688396],[112.070269,30.687329]]],[[[112.614594,30.703932],[112.605816,30.704231],[112.605427,30.702566],[112.616458,30.70167],[112.614594,30.703932]]]]}},{"type":"Feature","properties":{"adcode":420900,"name":"孝感市","center":[113.926655,30.926423],"centroid":[113.885608,31.118116],"childrenNum":7,"level":"city","parent":{"adcode":420000},"subFeatureIndex":7,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.465611,30.391921],[113.473535,30.394319],[113.487363,30.381987],[113.501268,30.384343],[113.501423,30.398386],[113.515251,30.414953],[113.536924,30.420561],[113.542207,30.428393],[113.545703,30.449235],[113.554947,30.459718],[113.562948,30.474948],[113.570406,30.479911],[113.5847,30.482049],[113.595187,30.490775],[113.600236,30.479782],[113.611034,30.475162],[113.621754,30.486027],[113.626493,30.482691],[113.636592,30.460188],[113.629367,30.453385],[113.62191,30.430662],[113.621211,30.421246],[113.651973,30.418378],[113.663004,30.414354],[113.682192,30.391921],[113.710002,30.388924],[113.702312,30.395304],[113.716994,30.408404],[113.723131,30.423557],[113.752806,30.425526],[113.774635,30.432716],[113.779995,30.44932],[113.790171,30.457108],[113.811767,30.486327],[113.820623,30.49424],[113.831421,30.495224],[113.838102,30.516307],[113.852784,30.530075],[113.863038,30.530246],[113.868087,30.517633],[113.882148,30.525928],[113.879584,30.537471],[113.881138,30.551707],[113.890538,30.568547],[113.921067,30.571154],[113.939711,30.586282],[113.940565,30.608584],[113.926583,30.619221],[113.940565,30.634597],[113.924485,30.642242],[113.92534,30.647836],[113.939944,30.659536],[113.95719,30.683017],[113.94445,30.687457],[113.937847,30.697615],[113.924407,30.693134],[113.917882,30.699408],[113.913143,30.713534],[113.896985,30.708242],[113.894422,30.725909],[113.902501,30.727658],[113.906463,30.721386],[113.915862,30.725397],[113.910347,30.732266],[113.917338,30.753511],[113.905919,30.755815],[113.905297,30.764047],[113.91594,30.769634],[113.924174,30.76153],[113.94041,30.776842],[113.949266,30.779699],[113.976533,30.77778],[113.994944,30.786266],[114.006208,30.785711],[114.021977,30.780083],[114.030289,30.785328],[114.087153,30.782087],[114.110303,30.775264],[114.113876,30.767757],[114.125606,30.77198],[114.149533,30.768781],[114.165458,30.755815],[114.178353,30.75799],[114.180917,30.767971],[114.173537,30.798503],[114.180218,30.818711],[114.170973,30.830177],[114.16639,30.875218],[114.157534,30.885698],[114.164603,30.89213],[114.159243,30.906015],[114.162661,30.91334],[114.161185,30.942591],[114.157845,30.953659],[114.163749,30.955192],[114.175401,30.967663],[114.173381,30.978516],[114.179441,30.986814],[114.166157,31.007279],[114.170663,31.012299],[114.159399,31.021148],[114.157923,31.029144],[114.167866,31.038459],[114.166002,31.046794],[114.186355,31.054023],[114.191482,31.073837],[114.182548,31.084465],[114.186432,31.094241],[114.181849,31.112644],[114.206086,31.126114],[114.222866,31.142939],[114.232654,31.16078],[114.243607,31.169699],[114.248346,31.179807],[114.243218,31.191867],[114.233197,31.203627],[114.212145,31.199297],[114.212301,31.206896],[114.20259,31.217849],[114.192103,31.223749],[114.184102,31.240557],[114.179985,31.256767],[114.183558,31.267502],[114.200726,31.268053],[114.196065,31.278574],[114.19723,31.288585],[114.203911,31.301649],[114.21937,31.302879],[114.229003,31.318315],[114.239179,31.323701],[114.240111,31.339176],[114.267456,31.350367],[114.282915,31.361261],[114.297286,31.349265],[114.301558,31.336759],[114.31189,31.335233],[114.31826,31.325693],[114.332942,31.316619],[114.347314,31.323192],[114.357568,31.32264],[114.366501,31.310555],[114.376523,31.31276],[114.397497,31.311234],[114.407363,31.314626],[114.431833,31.312124],[114.440067,31.307968],[114.441233,31.327432],[114.437581,31.336335],[114.440999,31.342143],[114.429114,31.352402],[114.428182,31.361091],[114.43696,31.381307],[114.450321,31.387493],[114.454361,31.398594],[114.450943,31.414481],[114.46547,31.406347],[114.477821,31.405288],[114.481705,31.409271],[114.481705,31.440487],[114.489707,31.463861],[114.512002,31.461532],[114.512312,31.479186],[114.50369,31.499333],[114.503068,31.514018],[114.510992,31.524258],[114.513788,31.536147],[114.521246,31.541815],[114.51977,31.557466],[114.527849,31.550276],[114.542065,31.549049],[114.551698,31.553279],[114.558689,31.568928],[114.55364,31.59544],[114.548901,31.609772],[114.54828,31.625115],[114.552941,31.635174],[114.549678,31.642485],[114.559155,31.656048],[114.570808,31.660104],[114.574226,31.689167],[114.586111,31.692546],[114.591394,31.700359],[114.57912,31.708172],[114.579741,31.724681],[114.584092,31.731901],[114.581606,31.742539],[114.588053,31.756594],[114.58448,31.764106],[114.57275,31.762587],[114.55496,31.768537],[114.549523,31.765457],[114.550299,31.753175],[114.545328,31.746127],[114.532122,31.740808],[114.521246,31.766934],[114.509671,31.766892],[114.504311,31.756425],[114.508661,31.740681],[114.488852,31.7357],[114.471995,31.740977],[114.463372,31.733758],[114.450865,31.737642],[114.446593,31.728059],[114.430901,31.73494],[114.419171,31.733167],[114.416296,31.742074],[114.401692,31.74714],[114.390039,31.741019],[114.373804,31.744269],[114.350421,31.755412],[114.321523,31.755075],[114.31391,31.751951],[114.29278,31.752289],[114.287498,31.762038],[114.264348,31.788496],[114.260309,31.798706],[114.248501,31.810517],[114.23545,31.833376],[114.23646,31.841936],[114.221312,31.832364],[114.208883,31.842738],[114.194977,31.850158],[114.180295,31.854037],[114.167011,31.851044],[114.16336,31.841683],[114.150077,31.839238],[114.134074,31.84278],[114.12716,31.8354],[114.127937,31.826333],[114.118149,31.805708],[114.107895,31.787061],[114.120324,31.771407],[114.100515,31.7525],[114.100592,31.746886],[114.113488,31.731901],[114.105253,31.724935],[114.097407,31.71155],[114.097252,31.70378],[114.114265,31.682874],[114.127704,31.675947],[114.126383,31.659175],[114.112478,31.634455],[114.108982,31.620973],[114.109215,31.605756],[114.097485,31.603473],[114.10168,31.592185],[114.094456,31.578908],[114.095776,31.573833],[114.088552,31.556536],[114.089018,31.543973],[114.11007,31.535977],[114.106962,31.528151],[114.095621,31.517234],[114.083114,31.511352],[114.081638,31.500095],[114.063615,31.487694],[114.061673,31.473683],[114.071228,31.463056],[114.063305,31.439809],[114.054837,31.432101],[114.041631,31.438115],[114.02524,31.436252],[114.012112,31.422529],[113.999061,31.41859],[113.989273,31.429094],[113.979718,31.430196],[113.976144,31.4177],[113.977853,31.400713],[113.981815,31.3944],[113.966434,31.396179],[113.94445,31.384019],[113.934428,31.382408],[113.928602,31.389866],[113.930622,31.396942],[113.949421,31.400077],[113.95214,31.411643],[113.928447,31.415964],[113.918659,31.43405],[113.911046,31.43748],[113.901258,31.432906],[113.892868,31.413591],[113.87904,31.416048],[113.874146,31.436125],[113.862882,31.450438],[113.84789,31.448533],[113.83414,31.432948],[113.831887,31.425198],[113.827226,31.432525],[113.81837,31.433668],[113.813243,31.441461],[113.797939,31.438158],[113.774712,31.453699],[113.728335,31.465385],[113.69967,31.444468],[113.690115,31.42812],[113.671005,31.418209],[113.664247,31.40783],[113.651274,31.397154],[113.640864,31.395163],[113.63465,31.387027],[113.624085,31.389104],[113.613986,31.397917],[113.608082,31.415455],[113.593167,31.421004],[113.57965,31.417489],[113.570406,31.404738],[113.560229,31.405331],[113.557044,31.396815],[113.545159,31.398467],[113.540187,31.38868],[113.534672,31.393341],[113.521621,31.391392],[113.506473,31.406136],[113.484411,31.420496],[113.4747,31.432313],[113.462116,31.431466],[113.459474,31.42452],[113.447434,31.421089],[113.435548,31.424054],[113.430965,31.418505],[113.416283,31.421216],[113.40362,31.418505],[113.392512,31.410584],[113.379927,31.411643],[113.35802,31.426468],[113.336036,31.4202],[113.333007,31.411812],[113.342173,31.369102],[113.33355,31.354903],[113.322597,31.358591],[113.316693,31.340109],[113.331531,31.324379],[113.330132,31.319163],[113.343416,31.315135],[113.349941,31.304151],[113.358487,31.307756],[113.365944,31.298935],[113.369362,31.284089],[113.377053,31.275478],[113.380005,31.285022],[113.388783,31.291936],[113.393599,31.286931],[113.406262,31.291512],[113.412554,31.283029],[113.423041,31.280229],[113.433684,31.254391],[113.437568,31.253839],[113.444715,31.234573],[113.465223,31.224428],[113.474079,31.231389],[113.487363,31.226296],[113.49047,31.212161],[113.491169,31.148377],[113.477497,31.13219],[113.478662,31.127389],[113.49482,31.117106],[113.480682,31.113111],[113.46833,31.102657],[113.469185,31.07035],[113.459008,31.045221],[113.436403,31.027145],[113.429333,31.013618],[113.413642,31.003791],[113.408825,31.004727],[113.39391,30.985367],[113.381791,30.99209],[113.386841,30.972685],[113.391968,30.966557],[113.371848,30.966259],[113.366255,30.959959],[113.364468,30.947402],[113.35802,30.945188],[113.362914,30.929563],[113.345747,30.931905],[113.343338,30.937908],[113.328967,30.930968],[113.334172,30.918194],[113.32819,30.911168],[113.329977,30.894685],[113.338677,30.889659],[113.3386,30.878584],[113.344348,30.870958],[113.359108,30.871128],[113.367342,30.863885],[113.371615,30.850293],[113.388084,30.842835],[113.428867,30.794367],[113.437257,30.781959],[113.433373,30.761872],[113.437956,30.757009],[113.424051,30.736405],[113.435781,30.73009],[113.439743,30.722751],[113.432752,30.703548],[113.425527,30.696634],[113.441996,30.694158],[113.441141,30.677126],[113.433373,30.670722],[113.435548,30.654071],[113.453027,30.645274],[113.455202,30.636349],[113.462426,30.633871],[113.460407,30.614736],[113.44922,30.605081],[113.452871,30.598374],[113.435626,30.566111],[113.43516,30.538369],[113.447667,30.530161],[113.447822,30.514254],[113.453881,30.506856],[113.458154,30.506044],[113.448133,30.492999],[113.440131,30.489407],[113.441996,30.473323],[113.447589,30.467077],[113.466155,30.460317],[113.466155,30.444442],[113.461417,30.430148],[113.464369,30.42193],[113.462582,30.406263],[113.465611,30.391921]]],[[[113.440131,30.489407],[113.448133,30.492999],[113.453881,30.506856],[113.447822,30.514254],[113.436558,30.49471],[113.440131,30.489407]]],[[[113.390803,30.676059],[113.398571,30.684554],[113.389793,30.685237],[113.387152,30.678578],[113.390803,30.676059]]]]}},{"type":"Feature","properties":{"adcode":421000,"name":"荆州市","center":[112.23813,30.326857],"centroid":[112.574526,29.995051],"childrenNum":8,"level":"city","parent":{"adcode":420000},"subFeatureIndex":8,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.583663,30.166194],[111.588246,30.166924],[111.597646,30.167782],[111.601297,30.155336],[111.596869,30.155336],[111.573875,30.147954],[111.575972,30.136364],[111.573253,30.121682],[111.558571,30.114984],[111.54218,30.103391],[111.526721,30.096563],[111.507222,30.110261],[111.484228,30.100342],[111.470556,30.102274],[111.45735,30.111034],[111.436531,30.109874],[111.424801,30.116272],[111.403593,30.123313],[111.388212,30.123829],[111.375705,30.105623],[111.352245,30.090808],[111.331426,30.084409],[111.324046,30.074658],[111.31721,30.050687],[111.306257,30.046434],[111.27899,30.04682],[111.251102,30.043727],[111.243799,30.039559],[111.257938,30.031523],[111.267027,30.01141],[111.285671,30.011324],[111.297711,30.004619],[111.297245,29.990218],[111.318763,29.971902],[111.324124,29.97818],[111.342068,29.945368],[111.348904,29.942272],[111.351468,29.951304],[111.375394,29.954228],[111.382852,29.949755],[111.378113,29.936809],[111.388678,29.937669],[111.382852,29.923646],[111.390853,29.914826],[111.404292,29.910997],[111.41812,29.915171],[111.437774,29.930013],[111.445542,29.924721],[111.462089,29.927345],[111.475683,29.918828],[111.514525,29.92769],[111.52742,29.925668],[111.538451,29.904672],[111.546142,29.904199],[111.551346,29.895249],[111.56766,29.898261],[111.577914,29.894431],[111.583973,29.898046],[111.597801,29.889483],[111.620018,29.891419],[111.62165,29.894948],[111.651402,29.893097],[111.662355,29.885825],[111.668881,29.888837],[111.681776,29.884577],[111.699488,29.887632],[111.723803,29.906092],[111.730173,29.918053],[111.757439,29.920075],[111.79465,29.905705],[111.809642,29.902263],[111.810342,29.893786],[111.830695,29.887933],[111.828986,29.873989],[111.839628,29.87683],[111.852757,29.86835],[111.863399,29.856556],[111.880645,29.86],[111.914592,29.852681],[111.919253,29.842435],[111.937043,29.832403],[111.960969,29.837441],[111.965242,29.831154],[111.951569,29.81423],[111.954832,29.796744],[111.977049,29.790498],[111.987071,29.793987],[111.991265,29.782787],[112.009754,29.778048],[112.031194,29.762278],[112.045566,29.7584],[112.050693,29.749178],[112.064676,29.745946],[112.05481,29.757237],[112.064443,29.769819],[112.066152,29.753703],[112.075707,29.744222],[112.07291,29.715085],[112.06452,29.710343],[112.059937,29.69577],[112.065453,29.681756],[112.087515,29.681756],[112.091865,29.68568],[112.107479,29.67119],[112.112606,29.659243],[112.11851,29.662693],[112.124958,29.657],[112.14399,29.657431],[112.150593,29.654541],[112.164576,29.662348],[112.178171,29.656655],[112.183997,29.648027],[112.185861,29.634352],[112.198291,29.617438],[112.199456,29.629865],[112.20668,29.635085],[112.22043,29.637242],[112.219498,29.64738],[112.236122,29.658466],[112.244201,29.659631],[112.231461,29.639658],[112.228432,29.627707],[112.234413,29.615798],[112.242337,29.609972],[112.255543,29.609929],[112.282033,29.596248],[112.294307,29.59586],[112.302852,29.586192],[112.303163,29.567241],[112.291588,29.542759],[112.282732,29.537533],[112.279314,29.529155],[112.278226,29.508465],[112.282654,29.49503],[112.290733,29.516932],[112.298424,29.516932],[112.315747,29.524275],[112.32002,29.540556],[112.332061,29.544745],[112.370281,29.542197],[112.391799,29.567845],[112.397237,29.564132],[112.402209,29.576393],[112.408967,29.578638],[112.423571,29.595687],[112.4273,29.616963],[112.439652,29.633791],[112.456664,29.635948],[112.468472,29.631332],[112.481989,29.633489],[112.499079,29.629261],[112.505216,29.611008],[112.535202,29.599701],[112.540795,29.600823],[112.56511,29.62076],[112.572257,29.623867],[112.589658,29.620243],[112.607136,29.61226],[112.607758,29.608031],[112.624693,29.616532],[112.640152,29.607901],[112.650639,29.592493],[112.660272,29.599529],[112.6734,29.600046],[112.678993,29.589515],[112.686917,29.592752],[112.689014,29.602377],[112.699035,29.610749],[112.698647,29.619984],[112.713951,29.637544],[112.714028,29.647165],[112.727545,29.655318],[112.731818,29.645051],[112.763823,29.664807],[112.763668,29.672311],[112.779127,29.679729],[112.788604,29.679901],[112.784875,29.693571],[112.795207,29.697667],[112.791789,29.713748],[112.806083,29.726077],[112.793964,29.735904],[112.815405,29.746636],[112.843603,29.771111],[112.861626,29.783131],[112.880658,29.786879],[112.894408,29.783778],[112.902021,29.791273],[112.886562,29.796442],[112.901167,29.803162],[112.919655,29.799673],[112.933793,29.789292],[112.93962,29.779986],[112.937911,29.766587],[112.929366,29.774084],[112.923772,29.766544],[112.930686,29.752238],[112.931308,29.726206],[112.927346,29.708403],[112.927035,29.692148],[112.935192,29.681928],[112.944824,29.682748],[112.959351,29.696374],[112.962925,29.706807],[112.979238,29.737628],[113.003475,29.755255],[113.011787,29.767664],[113.026081,29.772792],[113.030897,29.762278],[113.025071,29.748661],[113.015205,29.710903],[113.004951,29.693743],[112.976208,29.672139],[112.96541,29.658941],[112.945368,29.64751],[112.912042,29.616143],[112.911809,29.606865],[112.924005,29.571644],[112.927113,29.556188],[112.937367,29.527125],[112.943271,29.493907],[112.950185,29.472907],[112.96409,29.468068],[112.973334,29.472389],[112.990347,29.497968],[113.018779,29.516198],[113.034393,29.523584],[113.05762,29.522461],[113.064689,29.51244],[113.072768,29.48276],[113.076031,29.450175],[113.08077,29.434095],[113.090558,29.430766],[113.102676,29.443043],[113.099957,29.459683],[113.113552,29.456701],[113.132584,29.45735],[113.145324,29.44931],[113.155734,29.457134],[113.182068,29.485568],[113.222386,29.543709],[113.256644,29.566507],[113.272258,29.580839],[113.277308,29.595126],[113.298049,29.613856],[113.326248,29.647812],[113.377364,29.703186],[113.401756,29.724051],[113.438655,29.751635],[113.456678,29.759219],[113.493111,29.786578],[113.517892,29.812422],[113.571493,29.848936],[113.605829,29.869254],[113.640165,29.904414],[113.670073,29.918354],[113.696175,29.923947],[113.724529,29.920075],[113.741075,29.91986],[113.800115,29.924291],[113.82777,29.935389],[113.845171,29.954744],[113.886653,30.008229],[113.902656,30.023057],[113.929379,30.03393],[114.046447,30.071823],[114.077365,30.087587],[114.088319,30.099397],[114.091892,30.110991],[114.086843,30.123957],[114.055303,30.139412],[114.028658,30.157268],[113.976766,30.195672],[113.968842,30.200477],[113.94344,30.203651],[113.908249,30.188979],[113.893956,30.185718],[113.873991,30.186362],[113.866223,30.189665],[113.851385,30.183444],[113.84284,30.186748],[113.820157,30.178982],[113.824041,30.170142],[113.822565,30.158212],[113.789006,30.130569],[113.775411,30.128594],[113.764846,30.119063],[113.737813,30.134132],[113.731365,30.13044],[113.732919,30.118762],[113.717149,30.117002],[113.706507,30.094201],[113.684134,30.092182],[113.677841,30.084022],[113.668053,30.079899],[113.648011,30.089391],[113.618647,30.082819],[113.598372,30.081831],[113.558365,30.069289],[113.542207,30.072081],[113.534516,30.067871],[113.521232,30.071952],[113.51494,30.079727],[113.517659,30.088532],[113.480837,30.116744],[113.481148,30.121811],[113.463203,30.148383],[113.446113,30.15525],[113.436713,30.164992],[113.419934,30.165679],[113.376897,30.19284],[113.344737,30.192368],[113.332773,30.171043],[113.325394,30.164134],[113.309624,30.156581],[113.279716,30.151817],[113.250973,30.153233],[113.237146,30.149971],[113.213142,30.156452],[113.150995,30.141301],[113.138255,30.141987],[113.12132,30.151259],[113.097083,30.145722],[113.091801,30.146752],[113.067486,30.165422],[113.060494,30.180483],[113.047288,30.18958],[113.033616,30.188979],[113.024993,30.182929],[113.028256,30.171944],[113.015516,30.163405],[113.020022,30.147825],[113.001999,30.135849],[112.989259,30.132243],[112.977451,30.138124],[112.963468,30.134089],[112.946689,30.143404],[112.945446,30.158727],[112.923384,30.164821],[112.904352,30.163362],[112.892855,30.171258],[112.881202,30.16937],[112.880736,30.180741],[112.869938,30.189279],[112.853314,30.179625],[112.844225,30.164864],[112.835991,30.160701],[112.817347,30.163362],[112.810433,30.152246],[112.8189,30.13117],[112.818667,30.122455],[112.810511,30.108844],[112.792799,30.108973],[112.788992,30.102832],[112.794119,30.096777],[112.809734,30.089605],[112.817036,30.078309],[112.740829,30.078309],[112.739974,30.088918],[112.70828,30.088231],[112.699812,30.092826],[112.684276,30.092569],[112.670137,30.102231],[112.649551,30.105065],[112.632849,30.114039],[112.622052,30.116272],[112.603563,30.115156],[112.590435,30.117431],[112.583288,30.127435],[112.59797,30.146709],[112.598436,30.159542],[112.592687,30.171558],[112.580336,30.175463],[112.575286,30.185632],[112.575209,30.205367],[112.580413,30.209485],[112.570392,30.230759],[112.545844,30.260046],[112.527667,30.274879],[112.521452,30.287652],[112.516869,30.316494],[112.520908,30.329733],[112.521219,30.350638],[112.512052,30.356592],[112.502342,30.373894],[112.513062,30.379632],[112.5279,30.394447],[112.515703,30.400313],[112.505993,30.410887],[112.463656,30.435883],[112.449207,30.438322],[112.439186,30.433272],[112.433826,30.422401],[112.400266,30.425954],[112.381079,30.423386],[112.356065,30.406691],[112.345578,30.402325],[112.330973,30.405621],[112.307435,30.426382],[112.30293,30.436867],[112.304017,30.448849],[112.311708,30.451288],[112.311164,30.460573],[112.302619,30.480167],[112.296637,30.4856],[112.285839,30.485129],[112.275508,30.490519],[112.272556,30.499287],[112.263078,30.502494],[112.248319,30.49779],[112.228742,30.499244],[112.221518,30.505188],[112.200155,30.494026],[112.20031,30.481707],[112.212507,30.47713],[112.214138,30.470071],[112.200699,30.473237],[112.18858,30.469387],[112.17584,30.479055],[112.175452,30.492914],[112.183065,30.519899],[112.173665,30.532555],[112.158828,30.534393],[112.152069,30.522635],[112.136222,30.53294],[112.133192,30.546064],[112.136921,30.558161],[112.133658,30.570855],[112.124802,30.58641],[112.112451,30.599057],[112.109965,30.606448],[112.117345,30.625585],[112.100721,30.630198],[112.096681,30.646982],[112.08534,30.651338],[112.079824,30.659323],[112.06654,30.652064],[112.061646,30.65706],[112.021251,30.645146],[112.018299,30.626824],[112.011618,30.615676],[111.986604,30.600809],[111.989013,30.589016],[111.976661,30.572778],[111.997402,30.567222],[112.002141,30.557862],[111.999966,30.546791],[111.981555,30.524132],[111.974719,30.503777],[111.924147,30.505916],[111.913505,30.479526],[111.927643,30.475077],[111.90931,30.456637],[111.92205,30.444485],[111.942636,30.439221],[111.952191,30.441147],[111.956463,30.448036],[111.971845,30.435883],[111.978603,30.420347],[111.980778,30.407548],[111.977671,30.38734],[111.976972,30.36246],[111.996392,30.33556],[112.027388,30.308566],[112.049761,30.298324],[112.048673,30.288981],[112.041371,30.283923],[112.043779,30.276551],[112.013716,30.274793],[111.991498,30.282937],[111.958794,30.316665],[111.939606,30.347768],[111.929663,30.35415],[111.914126,30.341943],[111.913349,30.327162],[111.907756,30.317779],[111.900842,30.281609],[111.89253,30.279037],[111.857884,30.288081],[111.831627,30.283452],[111.825024,30.301238],[111.814148,30.29751],[111.788435,30.330419],[111.781987,30.345926],[111.779035,30.361646],[111.764353,30.373123],[111.736387,30.373766],[111.715413,30.363316],[111.693429,30.345541],[111.680067,30.337187],[111.633846,30.315465],[111.609376,30.281737],[111.602073,30.268106],[111.587158,30.257516],[111.573952,30.254601],[111.576283,30.239422],[111.594305,30.233632],[111.594849,30.240365],[111.606967,30.231831],[111.5985,30.216091],[111.592285,30.213474],[111.590266,30.193612],[111.579701,30.189537],[111.578302,30.169541],[111.583663,30.166194]]],[[[113.930544,30.028085],[113.913842,30.022971],[113.903744,30.016525],[113.894033,30.004919],[113.894033,29.997827],[113.924097,30.020092],[113.936215,30.026839],[113.930544,30.028085]]],[[[111.573875,30.147954],[111.596869,30.155336],[111.588246,30.166924],[111.583663,30.166194],[111.573875,30.147954]]],[[[112.902021,29.791273],[112.894408,29.783778],[112.923772,29.766544],[112.929366,29.774084],[112.902021,29.791273]]]]}},{"type":"Feature","properties":{"adcode":421100,"name":"黄冈市","center":[114.879365,30.447711],"centroid":[115.343867,30.717343],"childrenNum":10,"level":"city","parent":{"adcode":420000},"subFeatureIndex":9,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.147294,30.233461],[115.134787,30.22261],[115.134476,30.222353],[115.133777,30.220466],[115.131524,30.216991],[115.126164,30.21],[115.147449,30.208112],[115.15646,30.209828],[115.175182,30.219265],[115.209518,30.213517],[115.223112,30.196144],[115.269256,30.155164],[115.301494,30.116616],[115.317419,30.089691],[115.321925,30.074744],[115.322624,30.04652],[115.329383,30.028945],[115.361776,30.002942],[115.385159,29.965409],[115.409008,29.950357],[115.411027,29.941798],[115.406677,29.92356],[115.415533,29.90919],[115.43107,29.900542],[115.436896,29.893571],[115.448781,29.869384],[115.460356,29.859397],[115.488011,29.845018],[115.511627,29.840282],[115.550002,29.837914],[115.578823,29.84067],[115.611683,29.841574],[115.667847,29.850185],[115.683073,29.847774],[115.706223,29.837871],[115.762543,29.792996],[115.837196,29.748532],[115.90983,29.72418],[115.932669,29.72112],[115.96584,29.724741],[115.988212,29.733879],[116.049582,29.761891],[116.077237,29.787008],[116.107145,29.808287],[116.135188,29.819441],[116.132003,29.844243],[116.134567,29.877432],[116.125789,29.901359],[116.104038,29.926829],[116.085704,29.950787],[116.077936,29.95612],[116.073819,29.97001],[116.08151,29.981748],[116.078325,30.010249],[116.088967,30.026968],[116.091686,30.036207],[116.079956,30.057261],[116.079257,30.066196],[116.084772,30.075947],[116.083762,30.095661],[116.087724,30.103305],[116.085005,30.12619],[116.075062,30.133531],[116.063176,30.151602],[116.056729,30.169928],[116.056029,30.181041],[116.063875,30.19357],[116.064342,30.206911],[116.046086,30.223897],[116.031715,30.227028],[116.026588,30.239765],[116.013382,30.248941],[115.994815,30.255029],[115.988911,30.267034],[115.985338,30.291038],[115.980988,30.295753],[115.953799,30.306381],[115.938728,30.306938],[115.921871,30.301281],[115.904392,30.310066],[115.903771,30.315808],[115.914336,30.324292],[115.916666,30.334403],[115.896469,30.356678],[115.884894,30.379547],[115.900896,30.39783],[115.909286,30.398857],[115.921482,30.416366],[115.93096,30.420475],[115.938184,30.417778],[115.946186,30.425183],[115.920783,30.429849],[115.917987,30.441104],[115.894837,30.452743],[115.89406,30.459547],[115.900819,30.469729],[115.8981,30.482263],[115.909752,30.506771],[115.919929,30.514981],[115.905169,30.524602],[115.899498,30.537856],[115.887768,30.542516],[115.883107,30.559443],[115.875572,30.569359],[115.879068,30.578291],[115.86625,30.587905],[115.857316,30.589486],[115.84846,30.60192],[115.828108,30.606149],[115.824146,30.596109],[115.819174,30.597904],[115.807832,30.615547],[115.814979,30.624774],[115.80993,30.642584],[115.798743,30.6501],[115.797034,30.658597],[115.775361,30.668844],[115.772409,30.677852],[115.762543,30.685621],[115.767359,30.694329],[115.765573,30.707517],[115.776371,30.728853],[115.782896,30.75172],[115.792762,30.75927],[115.810473,30.75944],[115.822437,30.750355],[115.834633,30.756369],[115.851568,30.75671],[115.854364,30.767459],[115.868347,30.774283],[115.869513,30.782471],[115.858715,30.784816],[115.865861,30.798247],[115.863764,30.815769],[115.848771,30.828557],[115.851645,30.844199],[115.863919,30.855278],[115.865628,30.864226],[115.876892,30.868998],[115.885671,30.877859],[115.912782,30.887572],[115.932358,30.889404],[115.936087,30.902863],[115.970578,30.920025],[115.976327,30.931479],[115.993417,30.936759],[116.009886,30.949701],[116.024723,30.953617],[116.034511,30.951148],[116.039561,30.957831],[116.071721,30.956682],[116.069702,30.969153],[116.060302,30.994941],[116.058904,31.012725],[116.039405,31.014894],[116.015013,31.011916],[116.010041,31.017319],[116.006623,31.034673],[115.994038,31.034588],[115.983707,31.041903],[115.961101,31.046879],[115.946186,31.042414],[115.938573,31.047304],[115.942224,31.060699],[115.939816,31.071668],[115.925755,31.076813],[115.909597,31.090713],[115.902761,31.089225],[115.887457,31.109244],[115.88637,31.127346],[115.880077,31.141919],[115.86928,31.147654],[115.857161,31.143279],[115.834944,31.126327],[115.81327,31.130916],[115.797889,31.127856],[115.781498,31.113536],[115.770078,31.113026],[115.764019,31.118211],[115.755862,31.142557],[115.740559,31.152964],[115.730382,31.171568],[115.700863,31.201123],[115.678102,31.207661],[115.655263,31.210972],[115.645941,31.209614],[115.636308,31.199976],[115.629084,31.184648],[115.603681,31.173734],[115.596767,31.150161],[115.585736,31.144171],[115.559557,31.160313],[115.542467,31.187026],[115.539282,31.20367],[115.540059,31.22914],[115.530038,31.249341],[115.515977,31.263513],[115.507587,31.267926],[115.501062,31.262368],[115.493993,31.265932],[115.473096,31.265253],[115.466415,31.276326],[115.457793,31.281586],[115.462609,31.31751],[115.449636,31.315856],[115.442023,31.346128],[115.420505,31.349943],[115.40458,31.337819],[115.399064,31.342991],[115.37203,31.349308],[115.38244,31.356598],[115.375759,31.371051],[115.383217,31.375628],[115.392772,31.389866],[115.373662,31.405754],[115.355329,31.39995],[115.335986,31.403382],[115.327207,31.391137],[115.313535,31.383425],[115.301106,31.384061],[115.294037,31.395035],[115.281374,31.399865],[115.2604,31.387409],[115.250457,31.391773],[115.260322,31.412151],[115.252554,31.421682],[115.232978,31.427104],[115.220471,31.426722],[115.210527,31.445442],[115.212237,31.456747],[115.218373,31.466867],[115.218063,31.477069],[115.212314,31.490107],[115.219539,31.506909],[115.218218,31.515288],[115.23057,31.53822],[115.23593,31.555478],[115.212625,31.555521],[115.207265,31.564233],[115.192971,31.564064],[115.192816,31.569562],[115.180386,31.577766],[115.176891,31.598865],[115.164384,31.604572],[115.134864,31.602416],[115.125387,31.599119],[115.127251,31.579077],[115.106743,31.56749],[115.103092,31.555774],[115.111093,31.552348],[115.106122,31.545538],[115.113346,31.528954],[115.102082,31.520577],[115.092838,31.519096],[115.096256,31.508475],[115.06627,31.510506],[115.048947,31.51753],[115.03846,31.517023],[115.030303,31.527685],[115.023078,31.5276],[115.010028,31.504878],[115.001716,31.499968],[115.010804,31.488244],[115.001405,31.484435],[114.998297,31.471608],[114.985402,31.477704],[114.976158,31.495905],[114.968001,31.496625],[114.939958,31.477154],[114.936462,31.469788],[114.925275,31.480456],[114.896377,31.47436],[114.886745,31.469449],[114.876801,31.47055],[114.869965,31.479355],[114.848835,31.474529],[114.841533,31.461955],[114.829803,31.458907],[114.82421,31.469957],[114.813023,31.478847],[114.789408,31.48054],[114.783038,31.484604],[114.783115,31.494805],[114.774648,31.500899],[114.774027,31.512452],[114.778843,31.520746],[114.770997,31.520535],[114.757014,31.52722],[114.747226,31.524046],[114.739535,31.527177],[114.7233,31.520619],[114.71724,31.527939],[114.696577,31.525823],[114.699839,31.54613],[114.678476,31.544015],[114.670087,31.547061],[114.656958,31.56288],[114.652996,31.572692],[114.644451,31.574679],[114.641732,31.582164],[114.616796,31.585335],[114.612057,31.578485],[114.595666,31.576286],[114.587354,31.560596],[114.574925,31.559539],[114.572517,31.55404],[114.561097,31.560934],[114.558689,31.568928],[114.551698,31.553279],[114.542065,31.549049],[114.527849,31.550276],[114.51977,31.557466],[114.521246,31.541815],[114.513788,31.536147],[114.510992,31.524258],[114.503068,31.514018],[114.50369,31.499333],[114.512312,31.479186],[114.512002,31.461532],[114.489707,31.463861],[114.481705,31.440487],[114.481705,31.409271],[114.477821,31.405288],[114.46547,31.406347],[114.450943,31.414481],[114.454361,31.398594],[114.450321,31.387493],[114.43696,31.381307],[114.428182,31.361091],[114.429114,31.352402],[114.440999,31.342143],[114.437581,31.336335],[114.441233,31.327432],[114.440067,31.307968],[114.411868,31.258719],[114.402236,31.249341],[114.405887,31.229564],[114.424453,31.211779],[114.434785,31.206047],[114.454982,31.204052],[114.45273,31.195943],[114.472306,31.190932],[114.472228,31.183884],[114.459177,31.183077],[114.461585,31.168553],[114.471218,31.170167],[114.486522,31.159761],[114.493591,31.149184],[114.518139,31.144978],[114.525674,31.135462],[114.527616,31.122375],[114.53453,31.117021],[114.528548,31.108224],[114.534064,31.094369],[114.515653,31.063675],[114.515575,31.050834],[114.504855,31.045008],[114.500427,31.03344],[114.512157,31.01349],[114.525286,31.01264],[114.540978,31.000132],[114.544007,30.990814],[114.551775,30.998004],[114.559932,30.984175],[114.576246,30.969876],[114.604367,30.960555],[114.608562,30.944166],[114.614233,30.940079],[114.615942,30.927264],[114.628604,30.927945],[114.642975,30.933395],[114.650744,30.941868],[114.655405,30.932246],[114.682594,30.948679],[114.693625,30.947615],[114.708617,30.939909],[114.70116,30.953106],[114.704112,30.957831],[114.702481,30.973792],[114.713589,30.980558],[114.730524,30.980048],[114.750566,30.994005],[114.757869,30.995069],[114.760743,30.987154],[114.77022,30.985622],[114.764472,30.979196],[114.762996,30.966386],[114.767967,30.96047],[114.777988,30.978516],[114.778765,30.986643],[114.798497,31.000855],[114.795312,30.988899],[114.80712,30.993622],[114.808829,30.974175],[114.818151,30.956256],[114.825453,30.956426],[114.825608,30.948807],[114.8413,30.949573],[114.843009,30.944805],[114.862352,30.945699],[114.876257,30.968897],[114.870509,30.980175],[114.855516,30.984175],[114.855205,30.991367],[114.863906,30.991026],[114.883482,31.006471],[114.905699,31.005748],[114.921469,31.014341],[114.929004,31.025188],[114.93351,31.03714],[114.946328,31.034035],[114.947726,31.023317],[114.939258,31.019914],[114.93786,31.001834],[114.942754,30.993622],[114.957359,31.000004],[114.954484,30.990558],[114.964661,30.985878],[114.969089,30.99392],[114.977867,31.006131],[114.971575,31.021148],[114.980663,31.025231],[114.98548,31.017659],[114.982916,31.002387],[114.988976,30.99643],[114.991228,30.981963],[114.983848,30.979665],[114.983072,30.971749],[114.994103,30.965067],[114.9868,30.957022],[114.990529,30.945146],[115.009562,30.926114],[115.035896,30.926923],[115.028283,30.916576],[115.036828,30.909549],[115.05454,30.908783],[115.059822,30.903246],[115.057026,30.896219],[115.079399,30.89098],[115.081651,30.87803],[115.062153,30.869083],[115.051899,30.860136],[115.056327,30.855832],[115.03442,30.846841],[115.029914,30.857579],[115.011271,30.858644],[115.010571,30.85221],[114.999385,30.857537],[114.992704,30.843602],[115.000861,30.834524],[114.993248,30.82438],[114.989752,30.808778],[114.983848,30.815769],[114.972196,30.805666],[114.970099,30.810867],[114.946949,30.801147],[114.958135,30.788654],[114.952231,30.774368],[114.933898,30.792918],[114.924887,30.791297],[114.917662,30.783451],[114.900728,30.788568],[114.900106,30.793984],[114.883404,30.797309],[114.875947,30.793387],[114.877966,30.776458],[114.875558,30.764516],[114.848214,30.741695],[114.829415,30.735295],[114.811004,30.72625],[114.79873,30.73201],[114.791428,30.718783],[114.795467,30.708285],[114.81279,30.685578],[114.805954,30.671576],[114.815587,30.659707],[114.830813,30.668374],[114.840213,30.658383],[114.848136,30.641046],[114.855283,30.642669],[114.859556,30.636349],[114.85101,30.628191],[114.803235,30.621485],[114.791738,30.616829],[114.808673,30.615291],[114.828793,30.596494],[114.836018,30.580513],[114.839591,30.561495],[114.840135,30.527253],[114.835474,30.493384],[114.835707,30.474349],[114.839203,30.45929],[114.846116,30.44641],[114.86375,30.427537],[114.892493,30.413712],[114.917429,30.407933],[114.979187,30.400998],[115.018417,30.404679],[115.03776,30.401126],[115.056016,30.388667],[115.071009,30.366742],[115.082739,30.329819],[115.088643,30.296096],[115.086545,30.281094],[115.079787,30.259231],[115.080175,30.240065],[115.095168,30.22201],[115.112492,30.213732],[115.140069,30.23702],[115.135253,30.247783],[115.15009,30.243538],[115.164228,30.23449],[115.162908,30.229944],[115.147294,30.233461]]],[[[114.939258,31.019914],[114.929004,31.025188],[114.921469,31.014341],[114.931878,30.994856],[114.93786,31.001834],[114.939258,31.019914]]],[[[115.126164,30.21],[115.131524,30.216991],[115.133777,30.220466],[115.134476,30.222353],[115.134787,30.22261],[115.147294,30.233461],[115.140069,30.23702],[115.112492,30.213732],[115.126164,30.21]]]]}},{"type":"Feature","properties":{"adcode":421200,"name":"咸宁市","center":[114.328963,29.832798],"centroid":[114.180828,29.622169],"childrenNum":6,"level":"city","parent":{"adcode":420000},"subFeatureIndex":10,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.532277,29.969322],[114.524353,29.976073],[114.514099,29.975428],[114.497242,29.983898],[114.497475,29.991894],[114.487765,29.994087],[114.481239,29.988154],[114.461119,29.995591],[114.451021,30.004833],[114.43999,30.004876],[114.423132,30.011023],[114.406508,30.020951],[114.372483,30.028042],[114.361996,30.033027],[114.347158,30.02628],[114.334496,30.027441],[114.324941,30.017513],[114.305986,30.011754],[114.297907,30.006424],[114.265436,29.99946],[114.237548,29.995892],[114.212145,30.003243],[114.214087,30.020736],[114.208805,30.031781],[114.198939,30.040633],[114.195676,30.053995],[114.197386,30.071093],[114.192725,30.086685],[114.167788,30.090679],[114.162195,30.110046],[114.150465,30.117174],[114.154893,30.127778],[114.151397,30.143876],[114.129413,30.168726],[114.115275,30.194428],[114.10603,30.202364],[114.075345,30.208413],[114.056002,30.205367],[114.0487,30.198203],[114.038524,30.197431],[114.036737,30.208241],[114.044738,30.210171],[114.048467,30.219651],[114.035572,30.225355],[114.02757,30.244138],[114.01452,30.267248],[114.000071,30.278994],[113.975678,30.295196],[113.953616,30.296481],[113.929457,30.289195],[113.911978,30.274793],[113.888518,30.238307],[113.867233,30.209528],[113.863504,30.200005],[113.866223,30.189665],[113.873991,30.186362],[113.893956,30.185718],[113.908249,30.188979],[113.94344,30.203651],[113.968842,30.200477],[113.976766,30.195672],[114.028658,30.157268],[114.055303,30.139412],[114.086843,30.123957],[114.091892,30.110991],[114.088319,30.099397],[114.077365,30.087587],[114.046447,30.071823],[113.929379,30.03393],[113.930544,30.028085],[113.936215,30.026839],[113.924097,30.020092],[113.894033,29.997827],[113.894033,30.004919],[113.886653,30.008229],[113.845171,29.954744],[113.82777,29.935389],[113.800115,29.924291],[113.741075,29.91986],[113.724529,29.920075],[113.696175,29.923947],[113.670073,29.918354],[113.640165,29.904414],[113.605829,29.869254],[113.571493,29.848936],[113.580893,29.835675],[113.577242,29.818537],[113.565667,29.810397],[113.569396,29.804583],[113.561861,29.791575],[113.567842,29.786535],[113.559996,29.783174],[113.550985,29.768181],[113.555879,29.763657],[113.561162,29.739051],[113.558443,29.727068],[113.540109,29.69965],[113.5384,29.683653],[113.547179,29.675373],[113.575533,29.674942],[113.59977,29.670931],[113.606373,29.666791],[113.614297,29.670931],[113.637835,29.669853],[113.652672,29.683567],[113.664791,29.683308],[113.671627,29.658941],[113.67924,29.64078],[113.688096,29.640823],[113.692446,29.633575],[113.702778,29.63474],[113.703788,29.619293],[113.708371,29.60898],[113.722898,29.610836],[113.732841,29.593745],[113.740998,29.591544],[113.735638,29.576479],[113.711245,29.569399],[113.709303,29.554331],[113.701612,29.55554],[113.691824,29.547941],[113.68157,29.548631],[113.680793,29.539347],[113.668986,29.53572],[113.657255,29.537015],[113.654459,29.530883],[113.630921,29.522979],[113.635349,29.510021],[113.643428,29.507861],[113.672481,29.510539],[113.679162,29.513476],[113.688872,29.509589],[113.707283,29.485741],[113.72383,29.473556],[113.742318,29.468197],[113.740532,29.465388],[113.754903,29.447582],[113.754515,29.4414],[113.736958,29.42627],[113.741697,29.412867],[113.731831,29.394792],[113.723286,29.389602],[113.710701,29.393581],[113.691902,29.392716],[113.672404,29.386618],[113.660984,29.368192],[113.665956,29.347037],[113.661062,29.33345],[113.643428,29.326873],[113.633018,29.31839],[113.613598,29.272418],[113.606917,29.267655],[113.609636,29.251546],[113.635271,29.250637],[113.646458,29.231406],[113.660052,29.224519],[113.665801,29.232229],[113.681881,29.233962],[113.690115,29.2308],[113.693766,29.201818],[113.680327,29.182448],[113.671938,29.179458],[113.661994,29.167279],[113.670384,29.154363],[113.667976,29.143742],[113.672637,29.136198],[113.682969,29.132209],[113.690581,29.114518],[113.68561,29.082293],[113.69633,29.077651],[113.706351,29.0829],[113.709536,29.092616],[113.722742,29.104717],[113.732064,29.105064],[113.726238,29.083638],[113.734162,29.064463],[113.741231,29.058128],[113.749388,29.060905],[113.765468,29.079907],[113.766478,29.089233],[113.775567,29.095219],[113.815962,29.105324],[113.827148,29.102462],[113.837014,29.086804],[113.831576,29.069322],[113.854881,29.058909],[113.868631,29.065808],[113.881837,29.065461],[113.876089,29.057],[113.876555,29.038211],[113.895354,29.029488],[113.911667,29.030746],[113.914852,29.036301],[113.933341,29.045979],[113.942041,29.047324],[113.951907,29.064289],[113.952606,29.092747],[113.962084,29.101855],[113.973348,29.102158],[113.987175,29.126226],[114.012888,29.142008],[114.021433,29.144175],[114.039223,29.158004],[114.041087,29.170443],[114.052041,29.175818],[114.059809,29.186175],[114.063227,29.204937],[114.09329,29.211739],[114.121256,29.211306],[114.149222,29.213559],[114.165225,29.217155],[114.179751,29.214642],[114.192414,29.223913],[114.208417,29.226078],[114.224342,29.235435],[114.23848,29.232706],[114.252307,29.234828],[114.253162,29.250334],[114.246326,29.26523],[114.253162,29.269517],[114.253628,29.281683],[114.261163,29.291078],[114.251686,29.30164],[114.251919,29.31034],[114.262251,29.321896],[114.258988,29.343965],[114.266368,29.349762],[114.306841,29.365293],[114.323776,29.357809],[114.333952,29.337864],[114.344828,29.325228],[114.375823,29.322891],[114.398895,29.336912],[114.428803,29.337864],[114.43999,29.341585],[114.443874,29.349113],[114.449855,29.34297],[114.443019,29.339595],[114.455215,29.335917],[114.457235,29.325531],[114.465936,29.324189],[114.497087,29.327608],[114.502524,29.3238],[114.519615,29.325401],[114.548047,29.337604],[114.556747,29.344051],[114.592714,29.354565],[114.621846,29.380044],[114.648491,29.382033],[114.654861,29.388434],[114.673272,29.396219],[114.688964,29.391894],[114.719027,29.397257],[114.732777,29.394229],[114.740701,29.386445],[114.740701,29.366764],[114.759966,29.363131],[114.768822,29.378833],[114.784591,29.386185],[114.805177,29.38173],[114.811936,29.383288],[114.83159,29.396694],[114.866314,29.404565],[114.877811,29.399376],[114.876957,29.391591],[114.894824,29.39704],[114.913002,29.42173],[114.926674,29.416153],[114.930869,29.422422],[114.931102,29.445982],[114.941822,29.457566],[114.942909,29.46837],[114.934908,29.475327],[114.935763,29.486432],[114.923178,29.48492],[114.905233,29.472907],[114.907253,29.462406],[114.918051,29.454497],[114.904223,29.447841],[114.888531,29.436127],[114.884181,29.437769],[114.876257,29.46824],[114.864838,29.469839],[114.860488,29.476062],[114.87183,29.482544],[114.875558,29.490321],[114.885036,29.495073],[114.897154,29.527082],[114.901194,29.530019],[114.908185,29.520776],[114.900572,29.50596],[114.918983,29.510755],[114.926674,29.519739],[114.923333,29.505874],[114.925508,29.498832],[114.939258,29.494296],[114.957592,29.500517],[114.9687,29.515722],[114.96668,29.522201],[114.948658,29.525311],[114.947804,29.542888],[114.956892,29.553554],[114.944075,29.556317],[114.934209,29.564391],[114.937006,29.582738],[114.906165,29.585803],[114.906787,29.600305],[114.894125,29.612605],[114.891794,29.622875],[114.895678,29.640823],[114.885346,29.65411],[114.882472,29.674468],[114.867169,29.695986],[114.845417,29.698961],[114.845573,29.708877],[114.835707,29.73293],[114.8138,29.738835],[114.790262,29.738792],[114.789252,29.73556],[114.765792,29.73974],[114.76152,29.74349],[114.745828,29.741206],[114.723766,29.759435],[114.731379,29.788129],[114.736583,29.797347],[114.733165,29.809751],[114.734098,29.837398],[114.715687,29.838216],[114.713201,29.849797],[114.724387,29.89469],[114.703723,29.893183],[114.667989,29.904156],[114.665659,29.910309],[114.648102,29.911557],[114.604911,29.925195],[114.605532,29.934959],[114.592637,29.940551],[114.562806,29.935605],[114.554184,29.946272],[114.539735,29.939562],[114.540822,29.948293],[114.553018,29.953884],[114.545949,29.962614],[114.53686,29.963087],[114.532277,29.969322]]],[[[113.930544,30.028085],[113.929379,30.03393],[113.902656,30.023057],[113.886653,30.008229],[113.894033,30.004919],[113.903744,30.016525],[113.913842,30.022971],[113.930544,30.028085]]]]}},{"type":"Feature","properties":{"adcode":421300,"name":"随州市","center":[113.37377,31.717497],"centroid":[113.429995,31.828026],"childrenNum":3,"level":"city","parent":{"adcode":420000},"subFeatureIndex":11,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.118149,31.805708],[114.099194,31.803388],[114.089872,31.794867],[114.08661,31.782209],[114.072316,31.78491],[114.063771,31.781914],[114.05911,31.772293],[114.048079,31.773348],[114.038368,31.768833],[114.01584,31.770268],[113.988807,31.750179],[113.978941,31.753809],[113.972493,31.763094],[113.972338,31.771618],[113.965346,31.785627],[113.952606,31.793854],[113.952995,31.813512],[113.947013,31.826502],[113.957423,31.843117],[113.954937,31.856356],[113.933496,31.869383],[113.934739,31.879457],[113.920601,31.879626],[113.90654,31.86854],[113.896364,31.849357],[113.872981,31.840629],[113.867155,31.845099],[113.858377,31.841262],[113.838645,31.85467],[113.838024,31.869509],[113.831265,31.878993],[113.835305,31.892817],[113.835849,31.910937],[113.832508,31.91869],[113.81635,31.92324],[113.805164,31.931497],[113.807339,31.948893],[113.817205,31.964601],[113.798483,31.974118],[113.788151,31.973992],[113.77611,31.980434],[113.770129,31.978581],[113.759409,31.986454],[113.758943,32.000935],[113.769896,32.017014],[113.779295,32.018908],[113.791259,32.035993],[113.781315,32.048783],[113.7664,32.053327],[113.747445,32.069775],[113.744882,32.076799],[113.728491,32.083192],[113.728335,32.099382],[113.722432,32.124271],[113.736958,32.121581],[113.73991,32.113046],[113.75032,32.116326],[113.766167,32.138394],[113.763759,32.161676],[113.78349,32.18638],[113.777043,32.208432],[113.767022,32.203728],[113.75265,32.216159],[113.748378,32.234803],[113.740454,32.242822],[113.739366,32.257599],[113.749776,32.260285],[113.750553,32.269981],[113.743872,32.28362],[113.748533,32.291928],[113.77277,32.302543],[113.766167,32.318107],[113.753893,32.328216],[113.753893,32.342098],[113.758476,32.352204],[113.770673,32.358619],[113.768886,32.369478],[113.760341,32.369185],[113.754204,32.359709],[113.743872,32.369478],[113.752806,32.388677],[113.740765,32.39312],[113.735249,32.410847],[113.718547,32.417216],[113.70674,32.410889],[113.702156,32.420191],[113.690815,32.415876],[113.683823,32.420233],[113.672792,32.417594],[113.665412,32.421993],[113.662771,32.410135],[113.651196,32.413445],[113.643273,32.40255],[113.636592,32.385911],[113.624629,32.379497],[113.625017,32.363567],[113.61585,32.357655],[113.606062,32.363986],[113.59239,32.364489],[113.593245,32.358577],[113.606062,32.354007],[113.604819,32.350149],[113.589594,32.349478],[113.579184,32.355265],[113.58299,32.343062],[113.565279,32.340211],[113.551296,32.329264],[113.556578,32.324189],[113.56155,32.307368],[113.55083,32.302543],[113.547567,32.31257],[113.550053,32.328761],[113.541974,32.326832],[113.529855,32.330816],[113.511677,32.316807],[113.500258,32.312696],[113.480294,32.298977],[113.471049,32.299145],[113.428867,32.270568],[113.420478,32.269519],[113.40999,32.278038],[113.39795,32.279255],[113.394065,32.28811],[113.376664,32.29839],[113.365167,32.294739],[113.347689,32.298641],[113.332074,32.316094],[113.320033,32.318233],[113.317703,32.327041],[113.333861,32.337652],[113.325161,32.346585],[113.298748,32.353965],[113.295408,32.367424],[113.273191,32.384779],[113.259518,32.390563],[113.236369,32.40695],[113.226503,32.425471],[113.211821,32.432006],[113.18572,32.421867],[113.172669,32.421155],[113.159152,32.41068],[113.159696,32.400748],[113.155579,32.380755],[113.150218,32.376269],[113.118679,32.375808],[113.108736,32.364741],[113.083023,32.369352],[113.061116,32.361303],[113.067564,32.337946],[113.091102,32.32205],[113.08916,32.305438],[113.067719,32.281186],[113.05226,32.275898],[113.040375,32.276318],[113.027635,32.272415],[113.025149,32.263181],[113.035714,32.235097],[113.035947,32.198688],[113.025693,32.171802],[113.02476,32.149238],[113.027945,32.143984],[113.048609,32.126163],[113.049697,32.115401],[113.01171,32.07049],[112.994619,32.056945],[112.990036,32.050046],[112.992133,32.021601],[112.991745,31.977865],[113.016759,31.973823],[113.031674,31.967044],[113.03113,31.953062],[113.013574,31.954873],[113.007359,31.940553],[113.000601,31.941817],[112.997494,31.916288],[112.988016,31.901161],[112.966498,31.897116],[112.960749,31.889193],[112.961759,31.880469],[112.978539,31.845478],[112.963624,31.829328],[112.950573,31.833756],[112.941639,31.840882],[112.932007,31.84181],[112.903264,31.815494],[112.898292,31.804865],[112.88563,31.797398],[112.868229,31.807269],[112.854324,31.801237],[112.840341,31.77453],[112.828766,31.756805],[112.799324,31.752331],[112.790313,31.740681],[112.782778,31.736966],[112.770038,31.745578],[112.755899,31.748659],[112.747121,31.744312],[112.75186,31.725188],[112.748442,31.712183],[112.731818,31.699937],[112.729409,31.670244],[112.733993,31.647429],[112.729798,31.635597],[112.737722,31.617085],[112.752248,31.609856],[112.768018,31.613576],[112.782545,31.600345],[112.818046,31.596624],[112.832573,31.589563],[112.847954,31.563218],[112.871647,31.560046],[112.887261,31.545876],[112.89837,31.52722],[112.904274,31.506401],[112.902099,31.490403],[112.903419,31.475715],[112.917092,31.469364],[112.937367,31.472963],[112.951894,31.472624],[112.959429,31.466697],[112.968518,31.451836],[112.982268,31.43676],[112.992366,31.43333],[113.016371,31.441461],[113.026314,31.449464],[113.037345,31.44849],[113.055445,31.436591],[113.080304,31.446712],[113.102909,31.442647],[113.115572,31.426426],[113.134526,31.427019],[113.145557,31.437522],[113.15418,31.428755],[113.161327,31.428544],[113.154413,31.42003],[113.147344,31.424859],[113.147888,31.416133],[113.159074,31.406686],[113.169406,31.412024],[113.206772,31.395501],[113.226503,31.374272],[113.240486,31.354818],[113.24973,31.358675],[113.263325,31.356895],[113.280027,31.346298],[113.295175,31.340956],[113.297661,31.327559],[113.316693,31.340109],[113.322597,31.358591],[113.33355,31.354903],[113.342173,31.369102],[113.333007,31.411812],[113.336036,31.4202],[113.35802,31.426468],[113.379927,31.411643],[113.392512,31.410584],[113.40362,31.418505],[113.416283,31.421216],[113.430965,31.418505],[113.435548,31.424054],[113.447434,31.421089],[113.459474,31.42452],[113.462116,31.431466],[113.4747,31.432313],[113.484411,31.420496],[113.506473,31.406136],[113.521621,31.391392],[113.534672,31.393341],[113.540187,31.38868],[113.545159,31.398467],[113.557044,31.396815],[113.560229,31.405331],[113.570406,31.404738],[113.57965,31.417489],[113.593167,31.421004],[113.608082,31.415455],[113.613986,31.397917],[113.624085,31.389104],[113.63465,31.387027],[113.640864,31.395163],[113.651274,31.397154],[113.664247,31.40783],[113.671005,31.418209],[113.690115,31.42812],[113.69967,31.444468],[113.728335,31.465385],[113.774712,31.453699],[113.797939,31.438158],[113.813243,31.441461],[113.81837,31.433668],[113.827226,31.432525],[113.831887,31.425198],[113.83414,31.432948],[113.84789,31.448533],[113.862882,31.450438],[113.874146,31.436125],[113.87904,31.416048],[113.892868,31.413591],[113.901258,31.432906],[113.911046,31.43748],[113.918659,31.43405],[113.928447,31.415964],[113.95214,31.411643],[113.949421,31.400077],[113.930622,31.396942],[113.928602,31.389866],[113.934428,31.382408],[113.94445,31.384019],[113.966434,31.396179],[113.981815,31.3944],[113.977853,31.400713],[113.976144,31.4177],[113.979718,31.430196],[113.989273,31.429094],[113.999061,31.41859],[114.012112,31.422529],[114.02524,31.436252],[114.041631,31.438115],[114.054837,31.432101],[114.063305,31.439809],[114.071228,31.463056],[114.061673,31.473683],[114.063615,31.487694],[114.081638,31.500095],[114.083114,31.511352],[114.095621,31.517234],[114.106962,31.528151],[114.11007,31.535977],[114.089018,31.543973],[114.088552,31.556536],[114.095776,31.573833],[114.094456,31.578908],[114.10168,31.592185],[114.097485,31.603473],[114.109215,31.605756],[114.108982,31.620973],[114.112478,31.634455],[114.126383,31.659175],[114.127704,31.675947],[114.114265,31.682874],[114.097252,31.70378],[114.097407,31.71155],[114.105253,31.724935],[114.113488,31.731901],[114.100592,31.746886],[114.100515,31.7525],[114.120324,31.771407],[114.107895,31.787061],[114.118149,31.805708]]],[[[113.768187,32.284039],[113.758476,32.291928],[113.754049,32.288278],[113.760263,32.268218],[113.762438,32.275311],[113.769974,32.275982],[113.768187,32.284039]]]]}},{"type":"Feature","properties":{"adcode":422800,"name":"恩施土家族苗族自治州","center":[109.48699,30.283114],"centroid":[109.555117,30.191808],"childrenNum":8,"level":"city","parent":{"adcode":420000},"subFeatureIndex":12,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.447781,31.329128],[110.446772,31.336081],[110.437993,31.343076],[110.438537,31.358336],[110.425409,31.36232],[110.403968,31.375543],[110.387033,31.37673],[110.378333,31.387366],[110.359223,31.391349],[110.349668,31.388256],[110.343842,31.394866],[110.321702,31.394866],[110.272839,31.343966],[110.256215,31.339303],[110.239746,31.329764],[110.227317,31.314965],[110.213878,31.30589],[110.181096,31.295584],[110.164005,31.303218],[110.162219,31.291003],[110.155926,31.279508],[110.162452,31.25193],[110.171385,31.250572],[110.174881,31.243527],[110.169599,31.227951],[110.175658,31.215005],[110.180163,31.179595],[110.186456,31.169572],[110.196943,31.163583],[110.198885,31.156532],[110.186844,31.145318],[110.189408,31.129471],[110.180241,31.121653],[110.162529,31.116043],[110.146915,31.116893],[110.145828,31.108182],[110.135418,31.106269],[110.120192,31.088375],[110.122134,31.072901],[110.133088,31.059806],[110.12664,31.054661],[110.120814,31.031994],[110.140157,31.030633],[110.140933,31.005024],[110.136039,30.986771],[110.163539,30.991622],[110.171541,30.987537],[110.17325,30.979622],[110.161675,30.967918],[110.164005,30.96213],[110.153907,30.95383],[110.145128,30.925816],[110.151731,30.911508],[110.123999,30.867975],[110.115376,30.84488],[110.0958,30.829879],[110.095644,30.821268],[110.08943,30.815897],[110.081739,30.799271],[110.052996,30.799569],[110.042509,30.806689],[110.039169,30.820501],[110.031944,30.820458],[110.019593,30.82958],[110.017961,30.855321],[110.005066,30.870404],[110.008251,30.881864],[109.995045,30.887828],[109.975935,30.888679],[109.958378,30.877476],[109.943696,30.878967],[109.9409,30.889702],[109.932277,30.887657],[109.905632,30.899796],[109.894523,30.899796],[109.87821,30.889191],[109.85607,30.880245],[109.819403,30.860221],[109.797652,30.855619],[109.780795,30.848588],[109.759044,30.832819],[109.729602,30.815386],[109.716551,30.801701],[109.718105,30.778675],[109.702646,30.770231],[109.702102,30.783665],[109.692159,30.778931],[109.6854,30.768653],[109.656658,30.760464],[109.660775,30.737258],[109.649045,30.718911],[109.625429,30.702652],[109.602279,30.69881],[109.590627,30.693432],[109.581616,30.670851],[109.587986,30.66466],[109.57711,30.655309],[109.574158,30.646854],[109.562894,30.646726],[109.538812,30.638441],[109.533685,30.641559],[109.541376,30.651637],[109.53788,30.663977],[109.528714,30.663891],[109.514653,30.655394],[109.493368,30.637203],[109.482803,30.623194],[109.465868,30.61952],[109.456468,30.613796],[109.449322,30.603714],[109.437824,30.598074],[109.428036,30.576154],[109.418093,30.559999],[109.393778,30.531144],[109.380805,30.518317],[109.368687,30.50027],[109.352529,30.487011],[109.342818,30.49471],[109.341575,30.512715],[109.337536,30.518616],[109.345304,30.533495],[109.361074,30.55098],[109.361151,30.554742],[109.344294,30.577137],[109.314542,30.599783],[109.32332,30.604141],[109.328136,30.61606],[109.313609,30.610165],[109.299549,30.630583],[109.278807,30.610165],[109.251152,30.592905],[109.234217,30.589273],[109.227847,30.580897],[109.247734,30.583205],[109.222798,30.569615],[109.192113,30.545637],[109.168964,30.545979],[109.163836,30.537129],[109.147523,30.521652],[109.141153,30.525073],[109.139444,30.534564],[109.124373,30.5317],[109.12484,30.538925],[109.113498,30.548672],[109.104487,30.565085],[109.096796,30.57218],[109.08359,30.598245],[109.093145,30.609011],[109.112488,30.612685],[109.121732,30.628746],[109.114741,30.643908],[109.107206,30.64553],[109.097884,30.6381],[109.088018,30.646641],[109.071549,30.640534],[109.055546,30.64237],[109.045214,30.653943],[109.022065,30.642968],[109.009713,30.627251],[108.99876,30.632291],[108.987496,30.623279],[108.978019,30.629814],[108.967454,30.624817],[108.943838,30.601834],[108.919523,30.589358],[108.894665,30.567008],[108.893111,30.557819],[108.871671,30.532726],[108.854425,30.521909],[108.843782,30.505916],[108.811544,30.492016],[108.806028,30.492016],[108.79927,30.505916],[108.78855,30.512929],[108.772935,30.503478],[108.761516,30.505317],[108.744892,30.494625],[108.723995,30.507541],[108.726015,30.515708],[108.713974,30.520754],[108.715838,30.530374],[108.710711,30.537984],[108.69937,30.544397],[108.699991,30.561794],[108.690436,30.586709],[108.666199,30.588589],[108.654469,30.585],[108.639864,30.574744],[108.64336,30.562179],[108.649886,30.553929],[108.649342,30.537856],[108.6286,30.525201],[108.620133,30.522892],[108.621764,30.515452],[108.604519,30.510833],[108.611432,30.502195],[108.598537,30.493898],[108.590536,30.494625],[108.591235,30.487781],[108.58168,30.485899],[108.56995,30.470414],[108.564978,30.468574],[108.555035,30.487995],[108.543926,30.491716],[108.528312,30.487482],[108.510911,30.502537],[108.491723,30.501511],[108.479138,30.488936],[108.469273,30.486926],[108.455057,30.489321],[108.456066,30.495395],[108.440996,30.491032],[108.427557,30.492443],[108.414273,30.476446],[108.421187,30.464381],[108.421808,30.448849],[108.412098,30.436183],[108.422352,30.428393],[108.430431,30.415595],[108.421653,30.410544],[108.425304,30.399071],[108.41839,30.393463],[108.399591,30.390166],[108.40332,30.374751],[108.421886,30.366485],[108.432684,30.354108],[108.451017,30.355607],[108.459873,30.359804],[108.46904,30.343827],[108.482789,30.336031],[108.499336,30.315722],[108.51495,30.315165],[108.52637,30.305267],[108.524894,30.294724],[108.533905,30.291595],[108.534837,30.282423],[108.546179,30.276293],[108.545247,30.269949],[108.562026,30.262875],[108.567309,30.254901],[108.58168,30.255887],[108.573523,30.237192],[108.567464,30.234361],[108.568862,30.225612],[108.553792,30.174519],[108.552238,30.163319],[108.567464,30.155722],[108.561482,30.144134],[108.546101,30.104378],[108.533206,30.084194],[108.532351,30.07367],[108.525282,30.073842],[108.516271,30.06422],[108.516426,30.053007],[108.524194,30.058678],[108.531807,30.055069],[108.526137,30.049527],[108.530642,30.043082],[108.528855,30.005478],[108.542605,29.997354],[108.533361,29.96915],[108.519456,29.943519],[108.515882,29.9304],[108.524039,29.911643],[108.524272,29.896798],[108.516193,29.885609],[108.517048,29.865467],[108.509046,29.878637],[108.497471,29.878723],[108.491878,29.868867],[108.46803,29.864218],[108.457387,29.865423],[108.453114,29.871708],[108.433771,29.880058],[108.402776,29.85591],[108.392755,29.86353],[108.386929,29.860043],[108.39159,29.853198],[108.37147,29.841617],[108.366964,29.820432],[108.394231,29.81647],[108.395474,29.832058],[108.404718,29.834125],[108.409379,29.820432],[108.424527,29.815307],[108.425537,29.804195],[108.416992,29.787353],[108.425071,29.772749],[108.441384,29.778694],[108.445502,29.76439],[108.438588,29.756203],[108.437112,29.740775],[108.460494,29.740904],[108.467641,29.729698],[108.487528,29.724224],[108.503608,29.708489],[108.512853,29.711291],[108.514562,29.720344],[108.504152,29.729439],[108.516659,29.735646],[108.521009,29.730172],[108.547033,29.742585],[108.548509,29.749523],[108.540119,29.756763],[108.522485,29.763787],[108.534449,29.787482],[108.557443,29.819054],[108.565833,29.820862],[108.579893,29.831197],[108.57733,29.844674],[108.588128,29.848075],[108.587972,29.853887],[108.601411,29.865596],[108.608403,29.86297],[108.62293,29.867317],[108.632951,29.864692],[108.632795,29.856728],[108.648099,29.852768],[108.658664,29.854619],[108.657732,29.848075],[108.666898,29.842392],[108.670316,29.819054],[108.657654,29.815221],[108.671015,29.811819],[108.680648,29.801309],[108.678395,29.777875],[108.681813,29.770465],[108.677308,29.76146],[108.677618,29.748532],[108.686707,29.740042],[108.681036,29.721379],[108.693155,29.704479],[108.684765,29.693528],[108.691135,29.68969],[108.710323,29.699219],[108.718247,29.691932],[108.710944,29.679168],[108.733628,29.671492],[108.740619,29.665713],[108.743028,29.655921],[108.75266,29.64902],[108.762992,29.653376],[108.765866,29.661054],[108.774567,29.651737],[108.783267,29.653808],[108.773013,29.661529],[108.775965,29.675373],[108.765089,29.68223],[108.758176,29.678694],[108.752583,29.689345],[108.760662,29.693528],[108.786297,29.691501],[108.784666,29.677185],[108.794143,29.67119],[108.797483,29.660062],[108.792279,29.647337],[108.785909,29.650702],[108.779694,29.644404],[108.785675,29.633834],[108.804397,29.640564],[108.813641,29.631547],[108.819856,29.63241],[108.817681,29.647812],[108.82809,29.671276],[108.835393,29.66843],[108.827314,29.654369],[108.832984,29.651306],[108.844482,29.65838],[108.855746,29.636379],[108.869729,29.64298],[108.886586,29.633057],[108.885887,29.621149],[108.87035,29.596551],[108.885887,29.588479],[108.897617,29.596507],[108.901268,29.604794],[108.909192,29.59327],[108.900258,29.583084],[108.912532,29.572162],[108.886896,29.553122],[108.878429,29.539347],[108.886974,29.53058],[108.88744,29.499869],[108.871438,29.488549],[108.866466,29.472475],[108.873768,29.462752],[108.87369,29.449656],[108.884488,29.440925],[108.898083,29.441962],[108.90958,29.436818],[108.921232,29.436905],[108.93203,29.431717],[108.943683,29.410748],[108.934128,29.399462],[108.934516,29.386229],[108.924417,29.350238],[108.916649,29.334618],[108.919756,29.32631],[108.956112,29.33094],[108.972348,29.329209],[108.986175,29.336739],[108.985088,29.350455],[108.994721,29.355041],[108.999459,29.363909],[109.009791,29.360189],[109.034727,29.360275],[109.033484,29.378227],[109.039932,29.389818],[109.053216,29.402705],[109.065723,29.40063],[109.080793,29.39064],[109.090348,29.37866],[109.099282,29.375113],[109.111944,29.361833],[109.113731,29.352315],[109.109924,29.342061],[109.114275,29.331676],[109.108526,29.319905],[109.113886,29.314192],[109.104642,29.293156],[109.106429,29.288567],[109.129967,29.282463],[109.142008,29.27047],[109.118547,29.232403],[109.119479,29.227855],[109.110391,29.215119],[109.122975,29.199261],[109.123053,29.191288],[109.138823,29.16949],[109.152883,29.171744],[109.162516,29.180671],[109.170983,29.177898],[109.203066,29.151805],[109.215496,29.145302],[109.228546,29.129955],[109.232586,29.119461],[109.245326,29.115082],[109.255969,29.123234],[109.274146,29.122107],[109.277176,29.134074],[109.264048,29.144002],[109.261484,29.161038],[109.273913,29.172567],[109.271039,29.183228],[109.276088,29.200301],[109.257833,29.22257],[109.261406,29.227811],[109.28611,29.242061],[109.315085,29.252109],[109.326815,29.260684],[109.352218,29.284627],[109.352295,29.305233],[109.344139,29.306445],[109.345304,29.314668],[109.340177,29.33596],[109.343983,29.369446],[109.347401,29.373815],[109.368764,29.382898],[109.376766,29.37654],[109.391525,29.372258],[109.382048,29.382898],[109.385311,29.393581],[109.368609,29.411354],[109.372881,29.425016],[109.397041,29.439109],[109.404731,29.434397],[109.402246,29.444599],[109.417161,29.4548],[109.40512,29.468759],[109.412811,29.484704],[109.410014,29.49058],[109.418326,29.498011],[109.434873,29.489068],[109.440621,29.493172],[109.431299,29.505269],[109.430988,29.529069],[109.445282,29.529371],[109.447613,29.520733],[109.458566,29.513174],[109.465091,29.516932],[109.458566,29.530537],[109.461829,29.554245],[109.467033,29.559987],[109.479929,29.552734],[109.488707,29.553165],[109.49764,29.568104],[109.50401,29.588609],[109.503622,29.597716],[109.495931,29.598709],[109.501447,29.605441],[109.514498,29.600262],[109.525062,29.608807],[109.514265,29.617999],[109.516517,29.625981],[109.529801,29.625205],[109.531277,29.61528],[109.550387,29.612777],[109.558622,29.607038],[109.575867,29.62089],[109.575401,29.62788],[109.609426,29.634481],[109.641432,29.623867],[109.650831,29.626456],[109.651064,29.610102],[109.663494,29.599658],[109.678797,29.607987],[109.704976,29.608376],[109.717794,29.615021],[109.71088,29.629606],[109.701248,29.636293],[109.715774,29.649494],[109.718416,29.658639],[109.71492,29.673346],[109.737059,29.678392],[109.760131,29.68913],[109.766191,29.702884],[109.760209,29.71336],[109.772949,29.724224],[109.753528,29.734094],[109.755237,29.743145],[109.769298,29.744481],[109.779474,29.757754],[109.791904,29.763399],[109.820879,29.769905],[109.836649,29.769819],[109.86982,29.774687],[109.888464,29.765898],[109.896853,29.770422],[109.907884,29.764174],[109.940201,29.77417],[109.946493,29.779125],[109.949756,29.772964],[109.96972,29.771801],[109.976012,29.768138],[109.99085,29.772231],[110.024176,29.769646],[110.064105,29.78283],[110.113511,29.789679],[110.131068,29.781063],[110.144895,29.771111],[110.16082,29.75379],[110.188165,29.754479],[110.219859,29.746636],[110.245806,29.732241],[110.26041,29.719525],[110.278199,29.709092],[110.28993,29.696374],[110.292027,29.671837],[110.299873,29.662391],[110.31572,29.661141],[110.321236,29.665022],[110.339491,29.668128],[110.352387,29.654714],[110.355805,29.638839],[110.373439,29.633834],[110.413601,29.654153],[110.417019,29.661874],[110.447005,29.664634],[110.449335,29.690811],[110.465182,29.713059],[110.493847,29.700987],[110.507131,29.692105],[110.525231,29.693485],[110.545351,29.705428],[110.56283,29.712541],[110.57456,29.723448],[110.60206,29.742025],[110.614412,29.74711],[110.623733,29.755944],[110.634998,29.760426],[110.642455,29.772145],[110.640047,29.782485],[110.629715,29.798424],[110.629249,29.805143],[110.618373,29.82659],[110.597787,29.840024],[110.584037,29.835072],[110.575415,29.844846],[110.549935,29.847989],[110.547604,29.8634],[110.535719,29.880316],[110.537894,29.896798],[110.52694,29.904672],[110.515521,29.902478],[110.50783,29.908932],[110.49812,29.910051],[110.506743,29.919043],[110.508063,29.944121],[110.517385,29.961367],[110.53533,29.975084],[110.5511,29.979684],[110.557159,29.98695],[110.547293,29.999589],[110.520104,30.001782],[110.504645,30.008788],[110.491595,30.019705],[110.46627,30.006725],[110.441878,29.98364],[110.43007,29.962614],[110.423389,29.95741],[110.382683,29.955647],[110.370254,29.959389],[110.354639,29.955131],[110.339957,29.943089],[110.307253,29.954486],[110.302592,29.962786],[110.313312,29.977836],[110.305621,30.001739],[110.316963,30.01704],[110.318206,30.037668],[110.32411,30.044543],[110.320304,30.063146],[110.324965,30.069289],[110.343375,30.081574],[110.341356,30.093728],[110.318905,30.100728],[110.348114,30.127435],[110.342055,30.135033],[110.304845,30.151516],[110.303524,30.169627],[110.284259,30.176407],[110.275791,30.182157],[110.276956,30.192068],[110.300572,30.200133],[110.297076,30.212145],[110.279209,30.220852],[110.266159,30.221752],[110.255671,30.234404],[110.27618,30.243624],[110.298475,30.243495],[110.323489,30.25027],[110.350212,30.243452],[110.351998,30.258588],[110.35798,30.273893],[110.373439,30.304324],[110.36769,30.315337],[110.350911,30.331275],[110.367146,30.336245],[110.353474,30.346869],[110.354873,30.3667],[110.363418,30.381431],[110.375614,30.390936],[110.377944,30.401083],[110.369399,30.40545],[110.367224,30.416366],[110.37507,30.423557],[110.373283,30.441318],[110.377867,30.44564],[110.367224,30.466563],[110.373827,30.474478],[110.387111,30.469173],[110.411814,30.48299],[110.439547,30.489578],[110.445762,30.512587],[110.45151,30.521267],[110.466581,30.522806],[110.474194,30.541704],[110.472407,30.551707],[110.487633,30.553929],[110.484215,30.565384],[110.467435,30.562606],[110.471941,30.577992],[110.466037,30.594272],[110.449413,30.604227],[110.441489,30.605765],[110.432866,30.617384],[110.447393,30.63101],[110.44918,30.649502],[110.469222,30.64916],[110.463706,30.666069],[110.452442,30.669655],[110.457803,30.70359],[110.465571,30.713406],[110.460521,30.721044],[110.460988,30.730773],[110.454229,30.731071],[110.442577,30.743273],[110.433643,30.771639],[110.422379,30.782087],[110.38478,30.781831],[110.37507,30.76763],[110.360388,30.756924],[110.339181,30.752573],[110.326052,30.754535],[110.318284,30.762213],[110.324965,30.783366],[110.336617,30.797011],[110.339336,30.806305],[110.332811,30.813425],[110.335996,30.82698],[110.35697,30.833118],[110.362097,30.841471],[110.376002,30.847096],[110.404667,30.872875],[110.413756,30.875644],[110.421214,30.870745],[110.44312,30.881012],[110.440324,30.892641],[110.430769,30.910188],[110.425486,30.910912],[110.444907,30.969578],[110.442887,30.999281],[110.443509,31.023444],[110.446305,31.030675],[110.4599,31.031696],[110.477689,31.037778],[110.464561,31.074517],[110.465959,31.081404],[110.479088,31.084932],[110.498275,31.085612],[110.512647,31.097301],[110.517541,31.107502],[110.536107,31.12076],[110.538826,31.132615],[110.514744,31.143874],[110.512103,31.153771],[110.499208,31.163031],[110.50014,31.182695],[110.476136,31.186177],[110.476524,31.204859],[110.487555,31.205495],[110.488876,31.212458],[110.483826,31.225829],[110.485069,31.23313],[110.505189,31.249171],[110.498198,31.254136],[110.473728,31.253033],[110.464328,31.262198],[110.45252,31.260798],[110.45019,31.26958],[110.438537,31.276199],[110.434498,31.282944],[110.438615,31.2899],[110.43644,31.301861],[110.42704,31.310258],[110.443509,31.319757],[110.447781,31.329128]]]]}},{"type":"Feature","properties":{"adcode":429004,"name":"仙桃市","center":[113.453974,30.364953],"centroid":[113.381345,30.287564],"childrenNum":0,"level":"city","parent":{"adcode":420000},"subFeatureIndex":13,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.465611,30.391921],[113.463436,30.380532],[113.45458,30.378305],[113.446346,30.382673],[113.437956,30.394233],[113.410301,30.396288],[113.393755,30.408404],[113.380626,30.410116],[113.365323,30.420432],[113.345047,30.425226],[113.325161,30.419619],[113.293077,30.427623],[113.276842,30.428693],[113.228756,30.426211],[113.207859,30.42193],[113.199159,30.426382],[113.194187,30.441361],[113.181292,30.448079],[113.174455,30.447009],[113.166687,30.436482],[113.158453,30.430191],[113.135692,30.447223],[113.124039,30.467761],[113.127535,30.479269],[113.12435,30.484017],[113.110988,30.485386],[113.083411,30.471697],[113.072535,30.472767],[113.069195,30.485343],[113.077662,30.504034],[113.075099,30.511133],[113.059019,30.510406],[113.049153,30.51357],[113.023129,30.529305],[112.992366,30.530417],[112.961526,30.521609],[112.954535,30.525714],[112.943426,30.512886],[112.944669,30.499543],[112.953836,30.485557],[112.951117,30.477643],[112.961604,30.473836],[112.968207,30.479953],[112.977917,30.472039],[112.979393,30.472296],[112.995707,30.474863],[112.99796,30.461215],[112.989181,30.459161],[112.980636,30.447181],[112.99058,30.436268],[112.992522,30.427452],[112.984676,30.426253],[112.985453,30.417778],[112.980636,30.412599],[112.957564,30.380874],[112.960283,30.372781],[112.973101,30.355821],[112.984987,30.34417],[112.976131,30.330504],[112.984054,30.309723],[113.000912,30.304667],[113.010855,30.290438],[113.008292,30.273593],[113.011943,30.261503],[113.007049,30.260174],[113.002621,30.232389],[113.006039,30.213946],[113.013652,30.220594],[113.021109,30.1958],[113.029266,30.195843],[113.032684,30.191639],[113.033616,30.188979],[113.047288,30.18958],[113.060494,30.180483],[113.067486,30.165422],[113.091801,30.146752],[113.097083,30.145722],[113.12132,30.151259],[113.138255,30.141987],[113.150995,30.141301],[113.213142,30.156452],[113.237146,30.149971],[113.250973,30.153233],[113.279716,30.151817],[113.309624,30.156581],[113.325394,30.164134],[113.332773,30.171043],[113.344737,30.192368],[113.376897,30.19284],[113.419934,30.165679],[113.436713,30.164992],[113.446113,30.15525],[113.463203,30.148383],[113.481148,30.121811],[113.480837,30.116744],[113.517659,30.088532],[113.51494,30.079727],[113.521232,30.071952],[113.534516,30.067871],[113.542207,30.072081],[113.558365,30.069289],[113.598372,30.081831],[113.618647,30.082819],[113.648011,30.089391],[113.668053,30.079899],[113.677841,30.084022],[113.684134,30.092182],[113.706507,30.094201],[113.717149,30.117002],[113.732919,30.118762],[113.731365,30.13044],[113.737813,30.134132],[113.764846,30.119063],[113.775411,30.128594],[113.789006,30.130569],[113.822565,30.158212],[113.824041,30.170142],[113.820157,30.178982],[113.817282,30.198246],[113.811223,30.204166],[113.800891,30.203308],[113.769585,30.215447],[113.755913,30.232045],[113.764924,30.245682],[113.779373,30.249627],[113.78318,30.263776],[113.792735,30.28388],[113.789627,30.287824],[113.776421,30.283709],[113.76438,30.288981],[113.762128,30.296353],[113.761273,30.296267],[113.761118,30.29811],[113.761817,30.298196],[113.76407,30.304495],[113.759564,30.31945],[113.763293,30.324378],[113.746047,30.337016],[113.741153,30.34901],[113.751718,30.375393],[113.73657,30.372824],[113.709614,30.377791],[113.710002,30.388924],[113.682192,30.391921],[113.663004,30.414354],[113.651973,30.418378],[113.621211,30.421246],[113.62191,30.430662],[113.629367,30.453385],[113.636592,30.460188],[113.626493,30.482691],[113.621754,30.486027],[113.611034,30.475162],[113.600236,30.479782],[113.595187,30.490775],[113.5847,30.482049],[113.570406,30.479911],[113.562948,30.474948],[113.554947,30.459718],[113.545703,30.449235],[113.542207,30.428393],[113.536924,30.420561],[113.515251,30.414953],[113.501423,30.398386],[113.501268,30.384343],[113.487363,30.381987],[113.473535,30.394319],[113.465611,30.391921]]],[[[113.761817,30.298196],[113.761118,30.29811],[113.761273,30.296267],[113.762128,30.296353],[113.761817,30.298196]]]]}},{"type":"Feature","properties":{"adcode":429005,"name":"潜江市","center":[112.896866,30.421215],"centroid":[112.762642,30.336071],"childrenNum":0,"level":"city","parent":{"adcode":420000},"subFeatureIndex":14,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.5279,30.394447],[112.513062,30.379632],[112.502342,30.373894],[112.512052,30.356592],[112.521219,30.350638],[112.520908,30.329733],[112.516869,30.316494],[112.521452,30.287652],[112.527667,30.274879],[112.545844,30.260046],[112.570392,30.230759],[112.580413,30.209485],[112.575209,30.205367],[112.575286,30.185632],[112.580336,30.175463],[112.592687,30.171558],[112.598436,30.159542],[112.59797,30.146709],[112.583288,30.127435],[112.590435,30.117431],[112.603563,30.115156],[112.622052,30.116272],[112.632849,30.114039],[112.649551,30.105065],[112.670137,30.102231],[112.684276,30.092569],[112.699812,30.092826],[112.70828,30.088231],[112.739974,30.088918],[112.740829,30.078309],[112.817036,30.078309],[112.809734,30.089605],[112.794119,30.096777],[112.788992,30.102832],[112.792799,30.108973],[112.810511,30.108844],[112.818667,30.122455],[112.8189,30.13117],[112.810433,30.152246],[112.817347,30.163362],[112.835991,30.160701],[112.844225,30.164864],[112.853314,30.179625],[112.869938,30.189279],[112.880736,30.180741],[112.881202,30.16937],[112.892855,30.171258],[112.904352,30.163362],[112.923384,30.164821],[112.945446,30.158727],[112.946689,30.143404],[112.963468,30.134089],[112.977451,30.138124],[112.989259,30.132243],[113.001999,30.135849],[113.020022,30.147825],[113.015516,30.163405],[113.028256,30.171944],[113.024993,30.182929],[113.033616,30.188979],[113.032684,30.191639],[113.032218,30.19151],[113.029887,30.194385],[113.029266,30.195843],[113.021109,30.1958],[113.013652,30.220594],[113.006039,30.213946],[113.002621,30.232389],[113.007049,30.260174],[113.011943,30.261503],[113.008292,30.273593],[113.010855,30.290438],[113.000912,30.304667],[112.984054,30.309723],[112.976131,30.330504],[112.984987,30.34417],[112.973101,30.355821],[112.960283,30.372781],[112.957564,30.380874],[112.980636,30.412599],[112.980248,30.416751],[112.980792,30.417778],[112.985453,30.417778],[112.984676,30.426253],[112.992522,30.427452],[112.99058,30.436268],[112.980636,30.447181],[112.989181,30.459161],[112.99796,30.461215],[112.995707,30.474863],[112.979393,30.472296],[112.979238,30.471611],[112.978539,30.471398],[112.977917,30.472039],[112.968207,30.479953],[112.961604,30.473836],[112.951117,30.477643],[112.953836,30.485557],[112.944669,30.499543],[112.943426,30.512886],[112.954535,30.525714],[112.950495,30.530588],[112.938299,30.558888],[112.908857,30.574445],[112.897438,30.571453],[112.883222,30.559358],[112.877007,30.549313],[112.875997,30.538155],[112.884776,30.518103],[112.884931,30.504889],[112.871647,30.491545],[112.833893,30.500313],[112.818512,30.511475],[112.805617,30.532213],[112.800256,30.554485],[112.791401,30.573462],[112.785652,30.575983],[112.765299,30.569103],[112.738421,30.574017],[112.722573,30.568932],[112.711309,30.554143],[112.702764,30.553673],[112.68412,30.572735],[112.677206,30.584102],[112.676119,30.599228],[112.682334,30.616444],[112.689713,30.622382],[112.71162,30.629216],[112.717602,30.634],[112.710222,30.633829],[112.68816,30.644634],[112.681712,30.638142],[112.670914,30.639338],[112.669982,30.630369],[112.671458,30.627807],[112.67037,30.625671],[112.647842,30.612215],[112.641472,30.614949],[112.632849,30.620161],[112.622906,30.619007],[112.623761,30.6126],[112.636967,30.605038],[112.63821,30.599143],[112.625547,30.584487],[112.62578,30.567479],[112.610477,30.56282],[112.603408,30.550595],[112.616614,30.534693],[112.621585,30.52332],[112.61203,30.509294],[112.597271,30.503692],[112.597581,30.515152],[112.58422,30.526997],[112.57917,30.521994],[112.57917,30.509722],[112.572257,30.510278],[112.568217,30.494881],[112.569926,30.485685],[112.581501,30.482734],[112.582822,30.471569],[112.578238,30.45116],[112.568295,30.443158],[112.545301,30.441489],[112.535435,30.437381],[112.527045,30.423856],[112.533104,30.408789],[112.5279,30.394447]]],[[[112.671458,30.627807],[112.669982,30.630369],[112.660971,30.62896],[112.663457,30.639039],[112.651649,30.633701],[112.649396,30.623279],[112.638598,30.625372],[112.632849,30.620161],[112.641472,30.614949],[112.647842,30.612215],[112.67037,30.625671],[112.671458,30.627807]]],[[[112.985453,30.417778],[112.980792,30.417778],[112.980248,30.416751],[112.980636,30.412599],[112.985453,30.417778]]],[[[113.029266,30.195843],[113.029887,30.194385],[113.032218,30.19151],[113.032684,30.191639],[113.029266,30.195843]]],[[[112.979393,30.472296],[112.977917,30.472039],[112.978539,30.471398],[112.979238,30.471611],[112.979393,30.472296]]]]}},{"type":"Feature","properties":{"adcode":429006,"name":"天门市","center":[113.165862,30.653061],"centroid":[113.114735,30.642494],"childrenNum":0,"level":"city","parent":{"adcode":420000},"subFeatureIndex":15,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.440131,30.489407],[113.436558,30.49471],[113.447822,30.514254],[113.447667,30.530161],[113.43516,30.538369],[113.435626,30.566111],[113.452871,30.598374],[113.44922,30.605081],[113.460407,30.614736],[113.462426,30.633871],[113.455202,30.636349],[113.453027,30.645274],[113.435548,30.654071],[113.433373,30.670722],[113.390803,30.676059],[113.387152,30.678578],[113.38552,30.678706],[113.384976,30.682292],[113.393832,30.715668],[113.394454,30.722581],[113.439743,30.722751],[113.435781,30.73009],[113.424051,30.736405],[113.437956,30.757009],[113.433373,30.761872],[113.437257,30.781959],[113.428867,30.794367],[113.388084,30.842835],[113.371615,30.850293],[113.367342,30.863885],[113.359108,30.871128],[113.344348,30.870958],[113.3386,30.878584],[113.338677,30.889659],[113.329977,30.894685],[113.32617,30.888935],[113.291912,30.903332],[113.280337,30.901798],[113.25812,30.886464],[113.25711,30.88033],[113.246701,30.869722],[113.230776,30.866484],[113.237534,30.85988],[113.230931,30.85319],[113.220366,30.858985],[113.217103,30.851187],[113.199236,30.825701],[113.188594,30.816281],[113.166532,30.811933],[113.143693,30.80234],[113.123962,30.809844],[113.094131,30.817134],[113.082323,30.823996],[113.07642,30.821141],[113.075021,30.810355],[113.078905,30.795817],[113.075953,30.785072],[113.067874,30.779955],[113.046201,30.778036],[113.036957,30.77134],[113.021032,30.775605],[113.011477,30.787545],[112.995474,30.785285],[112.978694,30.764175],[112.947155,30.748606],[112.930608,30.73649],[112.921287,30.717375],[112.9101,30.714345],[112.89635,30.717289],[112.891301,30.711102],[112.892388,30.700176],[112.880192,30.697743],[112.871492,30.705298],[112.849197,30.716137],[112.848264,30.719167],[112.826436,30.722922],[112.827989,30.727189],[112.829776,30.728981],[112.834903,30.730815],[112.828067,30.753383],[112.834204,30.757777],[112.829465,30.772278],[112.832417,30.777737],[112.820687,30.78972],[112.823484,30.801616],[112.813929,30.813595],[112.811598,30.823528],[112.798392,30.826],[112.780292,30.813894],[112.771125,30.80315],[112.726535,30.780083],[112.699501,30.762895],[112.689247,30.753767],[112.654834,30.731754],[112.648464,30.721514],[112.632927,30.706877],[112.616458,30.70167],[112.605427,30.702566],[112.593076,30.676315],[112.593231,30.665386],[112.61405,30.649843],[112.63619,30.640961],[112.658563,30.643096],[112.694607,30.655224],[112.704473,30.656334],[112.71698,30.651765],[112.721408,30.641687],[112.717602,30.634],[112.71162,30.629216],[112.689713,30.622382],[112.682334,30.616444],[112.676119,30.599228],[112.677206,30.584102],[112.68412,30.572735],[112.702764,30.553673],[112.711309,30.554143],[112.722573,30.568932],[112.738421,30.574017],[112.765299,30.569103],[112.785652,30.575983],[112.791401,30.573462],[112.800256,30.554485],[112.805617,30.532213],[112.818512,30.511475],[112.833893,30.500313],[112.871647,30.491545],[112.884931,30.504889],[112.884776,30.518103],[112.875997,30.538155],[112.877007,30.549313],[112.883222,30.559358],[112.897438,30.571453],[112.908857,30.574445],[112.938299,30.558888],[112.950495,30.530588],[112.954535,30.525714],[112.961526,30.521609],[112.992366,30.530417],[113.023129,30.529305],[113.049153,30.51357],[113.059019,30.510406],[113.075099,30.511133],[113.077662,30.504034],[113.069195,30.485343],[113.072535,30.472767],[113.083411,30.471697],[113.110988,30.485386],[113.12435,30.484017],[113.127535,30.479269],[113.124039,30.467761],[113.135692,30.447223],[113.158453,30.430191],[113.15822,30.43156],[113.165134,30.437424],[113.166687,30.436482],[113.174455,30.447009],[113.181292,30.448079],[113.194187,30.441361],[113.199159,30.426382],[113.207859,30.42193],[113.228756,30.426211],[113.276842,30.428693],[113.293077,30.427623],[113.325161,30.419619],[113.345047,30.425226],[113.365323,30.420432],[113.380626,30.410116],[113.393755,30.408404],[113.410301,30.396288],[113.437956,30.394233],[113.446346,30.382673],[113.45458,30.378305],[113.463436,30.380532],[113.465611,30.391921],[113.462582,30.406263],[113.464369,30.42193],[113.461417,30.430148],[113.466155,30.444442],[113.466155,30.460317],[113.447589,30.467077],[113.441996,30.473323],[113.440131,30.489407]]],[[[113.439743,30.722751],[113.394454,30.722581],[113.393832,30.715668],[113.384976,30.682292],[113.38552,30.678706],[113.387152,30.678578],[113.389793,30.685237],[113.398571,30.684554],[113.390803,30.676059],[113.433373,30.670722],[113.441141,30.677126],[113.441996,30.694158],[113.425527,30.696634],[113.432752,30.703548],[113.439743,30.722751]]],[[[113.453881,30.506856],[113.448133,30.492999],[113.458154,30.506044],[113.453881,30.506856]]],[[[112.829776,30.728981],[112.827989,30.727189],[112.826436,30.722922],[112.848264,30.719167],[112.841195,30.729322],[112.829776,30.728981]]],[[[112.614594,30.703932],[112.607214,30.710888],[112.605816,30.704231],[112.614594,30.703932]]],[[[113.166687,30.436482],[113.165134,30.437424],[113.15822,30.43156],[113.158453,30.430191],[113.166687,30.436482]]]]}},{"type":"Feature","properties":{"adcode":429021,"name":"神农架林区","center":[110.671525,31.744449],"centroid":[110.480761,31.589684],"childrenNum":0,"level":"city","parent":{"adcode":420000},"subFeatureIndex":16,"acroutes":[100000,420000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.982305,31.512537],[109.96133,31.499291],[109.957213,31.490784],[109.949289,31.488625],[109.940589,31.47872],[109.946027,31.469449],[109.954727,31.468391],[109.967933,31.474318],[109.98782,31.474656],[109.996365,31.469364],[110.003668,31.453656],[110.02068,31.442096],[110.033498,31.439682],[110.03443,31.430831],[110.049811,31.418378],[110.054006,31.41088],[110.106287,31.408211],[110.114521,31.412109],[110.118872,31.400628],[110.127339,31.393383],[110.140001,31.390502],[110.145284,31.381307],[110.140001,31.368296],[110.149168,31.355835],[110.147537,31.346425],[110.158024,31.333495],[110.151731,31.317891],[110.159655,31.315347],[110.164005,31.303218],[110.181096,31.295584],[110.213878,31.30589],[110.227317,31.314965],[110.239746,31.329764],[110.256215,31.339303],[110.272839,31.343966],[110.321702,31.394866],[110.343842,31.394866],[110.349668,31.388256],[110.359223,31.391349],[110.378333,31.387366],[110.387033,31.37673],[110.403968,31.375543],[110.425409,31.36232],[110.438537,31.358336],[110.437993,31.343076],[110.446772,31.336081],[110.447781,31.329128],[110.467591,31.328873],[110.483438,31.339515],[110.490662,31.356344],[110.490818,31.369822],[110.503325,31.368381],[110.512569,31.356302],[110.508063,31.347697],[110.522668,31.336717],[110.525464,31.324718],[110.53735,31.317298],[110.567258,31.326117],[110.573861,31.330145],[110.576658,31.34439],[110.567724,31.356556],[110.566481,31.366093],[110.580852,31.381519],[110.578522,31.399823],[110.587844,31.409101],[110.598564,31.438073],[110.606488,31.4501],[110.606332,31.458399],[110.613712,31.466824],[110.611926,31.483123],[110.616587,31.485662],[110.637173,31.479609],[110.656749,31.482911],[110.677879,31.48198],[110.68588,31.485451],[110.695435,31.477789],[110.707864,31.477154],[110.709262,31.482615],[110.733267,31.516261],[110.733189,31.531028],[110.743676,31.538685],[110.769234,31.541689],[110.789509,31.552983],[110.796578,31.55311],[110.81227,31.536654],[110.824932,31.542027],[110.829516,31.538346],[110.829827,31.523412],[110.840858,31.513553],[110.84816,31.499503],[110.856239,31.499757],[110.884438,31.518927],[110.892284,31.529039],[110.908908,31.532424],[110.914035,31.55146],[110.947827,31.566433],[110.941612,31.593622],[110.957382,31.615478],[110.970666,31.638174],[110.982318,31.643203],[110.976414,31.650344],[110.95241,31.660611],[110.946739,31.665681],[110.914656,31.657696],[110.906966,31.666019],[110.891429,31.675778],[110.880709,31.69546],[110.878922,31.711677],[110.872708,31.71611],[110.875504,31.732998],[110.868357,31.746464],[110.852588,31.763347],[110.848704,31.771491],[110.835497,31.782589],[110.81126,31.782462],[110.802249,31.789424],[110.777701,31.816464],[110.775138,31.827894],[110.766826,31.832069],[110.760766,31.828147],[110.752687,31.839702],[110.723478,31.842527],[110.708641,31.845858],[110.700873,31.852351],[110.685025,31.85408],[110.670809,31.860403],[110.664595,31.857832],[110.660555,31.844888],[110.652321,31.842991],[110.636473,31.848598],[110.627074,31.845816],[110.618296,31.849568],[110.611149,31.844382],[110.598642,31.84805],[110.58598,31.844719],[110.536806,31.84999],[110.530514,31.840798],[110.518861,31.838563],[110.51824,31.854501],[110.509229,31.856778],[110.482894,31.847376],[110.489186,31.836117],[110.472019,31.828653],[110.472562,31.814651],[110.464017,31.813596],[110.451044,31.805961],[110.432556,31.812246],[110.428283,31.820429],[110.405056,31.81773],[110.399152,31.806974],[110.387266,31.802587],[110.368622,31.800815],[110.370176,31.771702],[110.348269,31.762207],[110.330169,31.763178],[110.314244,31.760857],[110.298863,31.763516],[110.283482,31.762714],[110.271829,31.753133],[110.249457,31.745747],[110.233454,31.732787],[110.233532,31.716532],[110.222889,31.686169],[110.217374,31.675355],[110.233143,31.667456],[110.237882,31.659935],[110.236173,31.645696],[110.212013,31.632638],[110.206187,31.619029],[110.223511,31.612815],[110.234075,31.599161],[110.233842,31.59172],[110.223044,31.58673],[110.219393,31.570746],[110.215509,31.569097],[110.202691,31.57895],[110.191505,31.581445],[110.180163,31.599119],[110.168666,31.60398],[110.129436,31.603896],[110.098208,31.586096],[110.083836,31.572057],[110.064959,31.563895],[110.069931,31.549641],[110.065892,31.544861],[110.048646,31.537585],[110.041266,31.529377],[110.025186,31.519604],[110.012601,31.523666],[109.994656,31.521338],[109.982305,31.512537]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/430000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/430000.json new file mode 100644 index 0000000..2e444b2 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/430000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":430100,"name":"长沙市","center":[112.982279,28.19409],"centroid":[113.158697,28.224232],"childrenNum":9,"level":"city","parent":{"adcode":430000},"subFeatureIndex":0,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.902613,28.021982],[111.896377,28.00871],[111.908303,28.000189],[111.900097,27.981343],[111.912624,27.973803],[111.926848,27.980851],[111.936311,27.991231],[111.951246,27.987079],[111.964156,27.965171],[111.982264,27.954351],[111.99025,27.940962],[111.999714,27.907837],[112.017548,27.906307],[112.030513,27.914398],[112.04408,27.912156],[112.051246,27.919208],[112.060218,27.920028],[112.087734,27.908384],[112.093095,27.895919],[112.101137,27.893622],[112.11826,27.897614],[112.127669,27.911227],[112.137625,27.905705],[112.149551,27.908001],[112.160656,27.916912],[112.158851,27.928337],[112.173457,27.940743],[112.180897,27.93812],[112.18303,27.947083],[112.199223,27.969487],[112.199059,27.96222],[112.211094,27.95375],[112.223785,27.971399],[112.23035,27.961837],[112.245284,27.963695],[112.257647,27.95916],[112.298457,27.971235],[112.306663,27.971618],[112.313009,27.95916],[112.328217,27.963968],[112.342604,27.957193],[112.354037,27.965662],[112.371105,27.970033],[112.382757,27.967957],[112.389814,27.962111],[112.402341,27.966373],[112.411313,27.963258],[112.415361,27.99216],[112.398129,27.996857],[112.407101,28.001118],[112.415033,28.01521],[112.41011,28.031593],[112.413282,28.040657],[112.42291,28.049339],[112.443972,28.05731],[112.459125,28.051905],[112.468698,28.058893],[112.480241,28.056272],[112.486259,28.04022],[112.516401,28.018814],[112.508086,28.008874],[112.511806,27.994672],[112.531117,27.994126],[112.539486,27.975388],[112.553874,27.972601],[112.561368,27.980469],[112.574279,27.967848],[112.576686,27.959324],[112.596926,27.953477],[112.594738,27.931507],[112.599005,27.921176],[112.606937,27.918006],[112.611642,27.900293],[112.619684,27.899801],[112.630515,27.890561],[112.633852,27.880116],[112.649443,27.880281],[112.657047,27.900347],[112.651248,27.918552],[112.641948,27.923308],[112.654585,27.941509],[112.687135,27.927079],[112.683415,27.920301],[112.706062,27.923089],[112.712463,27.916475],[112.731008,27.916967],[112.731828,27.929156],[112.743098,27.931944],[112.744082,27.946427],[112.758415,27.965389],[112.764487,27.986806],[112.763667,28.00232],[112.770122,28.017449],[112.779476,28.02149],[112.772419,28.031047],[112.777015,28.036944],[112.790472,28.031757],[112.792441,28.023729],[112.804257,28.025641],[112.808689,28.03689],[112.791785,28.049775],[112.78254,28.052778],[112.777124,28.061131],[112.782704,28.073577],[112.802124,28.069374],[112.81859,28.06921],[112.81591,28.061513],[112.825538,28.043988],[112.833525,28.037709],[112.831774,28.027388],[112.838776,28.021436],[112.850483,28.021272],[112.859728,28.004177],[112.858689,27.988882],[112.873021,27.990302],[112.869903,28.001937],[112.877562,28.004231],[112.882266,27.992924],[112.893481,27.99216],[112.883744,27.979158],[112.885658,27.974295],[112.900264,27.97812],[112.906555,27.971072],[112.914542,27.977737],[112.924116,27.974896],[112.928328,27.983583],[112.941402,27.984839],[112.937628,27.992378],[112.928054,27.993088],[112.935822,28.003958],[112.93347,28.015264],[112.945724,28.014773],[112.956774,27.998933],[112.992059,27.975825],[113.003164,27.965171],[113.023897,27.976972],[113.022858,27.985276],[113.035932,27.977409],[113.030079,27.991941],[113.041676,28.006198],[113.071709,28.010895],[113.090965,27.989865],[113.073733,27.972],[113.082322,27.964296],[113.09009,27.965171],[113.086698,27.950089],[113.101797,27.933693],[113.108635,27.933037],[113.122092,27.914288],[113.136644,27.914999],[113.138996,27.927845],[113.132978,27.930578],[113.131064,27.942219],[113.138832,27.945717],[113.135495,27.953422],[113.146545,27.953859],[113.158744,27.966373],[113.149554,27.980851],[113.148624,27.992269],[113.17067,27.999916],[113.164106,28.006744],[113.175812,28.015046],[113.190801,28.010676],[113.209182,28.012315],[113.214598,28.024057],[113.226578,28.020398],[113.228165,28.014445],[113.243865,28.009912],[113.250266,28.019688],[113.259839,28.013243],[113.258252,27.996475],[113.264051,28.011714],[113.271436,27.99063],[113.269576,27.977027],[113.277673,27.970634],[113.271819,27.961783],[113.271546,27.949706],[113.261863,27.948559],[113.259073,27.941782],[113.266677,27.934185],[113.273296,27.91888],[113.287574,27.916858],[113.2902,27.909915],[113.274883,27.909587],[113.281611,27.894443],[113.28101,27.880882],[113.274992,27.862671],[113.2902,27.865843],[113.288504,27.877218],[113.300102,27.877218],[113.300758,27.868851],[113.315747,27.865077],[113.331338,27.856928],[113.343045,27.858569],[113.359402,27.848067],[113.384402,27.854357],[113.399993,27.853373],[113.413231,27.857803],[113.416185,27.872789],[113.415529,27.888975],[113.424172,27.897668],[113.446163,27.895645],[113.459511,27.900183],[113.458144,27.908056],[113.463614,27.918224],[113.481557,27.927134],[113.490201,27.939432],[113.507323,27.938175],[113.521547,27.942328],[113.525923,27.959925],[113.554205,27.961236],[113.567717,27.964788],[113.575704,27.959761],[113.578221,27.93976],[113.569413,27.92779],[113.571383,27.912594],[113.576798,27.899746],[113.591405,27.891271],[113.597258,27.902917],[113.594796,27.910352],[113.602181,27.913578],[113.633965,27.895755],[113.644906,27.879734],[113.654971,27.87782],[113.660661,27.884929],[113.672203,27.876835],[113.69693,27.86989],[113.72286,27.885749],[113.730409,27.88471],[113.7367,27.90576],[113.745016,27.915983],[113.75344,27.934677],[113.771055,27.952712],[113.792718,27.955062],[113.793101,27.96222],[113.802948,27.974022],[113.82193,27.982272],[113.826799,27.973257],[113.845235,27.971673],[113.852018,27.976098],[113.852182,27.988609],[113.859841,28.001719],[113.869524,28.004231],[113.878714,27.991941],[113.900158,27.987571],[113.914272,27.99134],[113.935552,28.018923],[113.944032,28.014172],[113.965585,28.016848],[113.956997,28.028426],[113.957927,28.034815],[113.968813,28.041149],[113.989272,28.038746],[114.000596,28.040439],[114.026855,28.031811],[114.027566,28.041804],[114.047095,28.057473],[114.036318,28.078162],[114.019086,28.085422],[114.02855,28.084767],[114.027019,28.092408],[114.017336,28.102777],[114.013452,28.124003],[114.007216,28.125421],[114.005957,28.144842],[113.999885,28.147243],[113.992664,28.161424],[114.00738,28.166551],[114.012358,28.175113],[114.025049,28.172168],[114.048025,28.176694],[114.053441,28.171077],[114.068649,28.171677],[114.083802,28.179203],[114.105301,28.181493],[114.106614,28.201613],[114.12122,28.213116],[114.129645,28.228161],[114.143759,28.238135],[114.145017,28.247782],[114.170673,28.253504],[114.18052,28.249798],[114.184678,28.267617],[114.19912,28.272466],[114.198135,28.290717],[114.215695,28.293985],[114.235116,28.310925],[114.250652,28.318223],[114.255521,28.326609],[114.247096,28.338099],[114.260116,28.355685],[114.250597,28.368097],[114.258092,28.372942],[114.256013,28.3921],[114.252457,28.395747],[114.228168,28.39542],[114.214601,28.403039],[114.202238,28.424422],[114.193376,28.430842],[114.172369,28.432801],[114.182982,28.436881],[114.219306,28.470549],[114.218814,28.482621],[114.195619,28.498552],[114.174667,28.497356],[114.154645,28.507577],[114.14064,28.523395],[114.138124,28.533722],[114.12319,28.534755],[114.118485,28.538994],[114.100651,28.540299],[114.086756,28.555895],[114.073901,28.555188],[114.065968,28.547689],[114.051745,28.544374],[114.040038,28.551004],[114.025432,28.542798],[114.015038,28.545679],[114.013561,28.554591],[113.995782,28.564915],[113.975979,28.564752],[113.962467,28.542309],[113.950979,28.53644],[113.941242,28.526385],[113.935443,28.531385],[113.917883,28.525461],[113.903222,28.528613],[113.889546,28.515622],[113.876471,28.518884],[113.858473,28.532255],[113.844414,28.523885],[113.832434,28.498878],[113.832981,28.489037],[113.824885,28.484089],[113.817554,28.466851],[113.806394,28.458638],[113.78495,28.457551],[113.7739,28.451024],[113.7617,28.451405],[113.729698,28.441287],[113.717773,28.424042],[113.704643,28.422192],[113.676963,28.442049],[113.657324,28.447706],[113.661427,28.45445],[113.64972,28.470005],[113.635825,28.482621],[113.615311,28.495725],[113.598133,28.51198],[113.575923,28.536386],[113.558035,28.533179],[113.547258,28.52508],[113.52822,28.528287],[113.51542,28.537038],[113.507378,28.536929],[113.500923,28.559155],[113.491349,28.570457],[113.474391,28.579801],[113.462739,28.596532],[113.454369,28.591046],[113.446492,28.593925],[113.430408,28.590286],[113.424336,28.578715],[113.414599,28.590883],[113.42078,28.609513],[113.4245,28.636068],[113.411809,28.632267],[113.384785,28.644538],[113.375813,28.643343],[113.360113,28.631453],[113.358581,28.622384],[113.349226,28.616573],[113.332213,28.618963],[113.320342,28.615759],[113.316513,28.628629],[113.310003,28.633136],[113.283635,28.638728],[113.27253,28.631398],[113.258854,28.627597],[113.251797,28.629715],[113.245944,28.640629],[113.243592,28.656156],[113.233635,28.661639],[113.234729,28.646438],[113.216458,28.638077],[113.212957,28.632647],[113.215473,28.620809],[113.195014,28.603648],[113.183252,28.596858],[113.189653,28.580181],[113.186097,28.567957],[113.194685,28.56649],[113.200758,28.555569],[113.19392,28.55008],[113.19474,28.541549],[113.185933,28.529211],[113.183088,28.510132],[113.18544,28.503391],[113.171381,28.492408],[113.169904,28.480446],[113.154313,28.470875],[113.128657,28.473975],[113.132103,28.490777],[113.130462,28.498498],[113.111917,28.499313],[113.0966,28.50812],[113.085002,28.508229],[113.07904,28.521873],[113.067935,28.519264],[113.063722,28.505294],[113.041403,28.484905],[113.027781,28.483219],[113.019028,28.47305],[112.99184,28.460923],[112.974006,28.465274],[112.960768,28.477075],[112.977726,28.498552],[112.974882,28.506979],[112.978656,28.52345],[112.965637,28.521167],[112.939816,28.508501],[112.921271,28.520297],[112.898733,28.517525],[112.891293,28.524754],[112.87149,28.519156],[112.872365,28.500618],[112.852617,28.512524],[112.845341,28.510621],[112.822529,28.512796],[112.822419,28.528396],[112.815581,28.527798],[112.808579,28.519319],[112.792058,28.523015],[112.788831,28.535027],[112.808798,28.559046],[112.796435,28.558503],[112.772693,28.546385],[112.757704,28.529755],[112.753874,28.518014],[112.746872,28.510458],[112.731664,28.507414],[112.714542,28.510621],[112.700428,28.519699],[112.685384,28.525407],[112.672583,28.517525],[112.663229,28.501053],[112.651741,28.495671],[112.654421,28.484524],[112.639815,28.469352],[112.627288,28.468265],[112.624279,28.446074],[112.612134,28.424531],[112.594793,28.414629],[112.594355,28.40761],[112.584235,28.40244],[112.578436,28.382358],[112.580351,28.372887],[112.575427,28.369077],[112.575209,28.354596],[112.562462,28.344742],[112.564432,28.333144],[112.571379,28.324976],[112.560493,28.325411],[112.553928,28.318931],[112.535766,28.325466],[112.534563,28.332],[112.525974,28.325956],[112.505296,28.320728],[112.500974,28.311905],[112.486915,28.309236],[112.472965,28.317733],[112.466018,28.312886],[112.451248,28.317842],[112.438337,28.310652],[112.432976,28.317896],[112.429311,28.311143],[112.420066,28.312559],[112.422692,28.305587],[112.408468,28.294366],[112.404803,28.29867],[112.393753,28.290281],[112.377998,28.290063],[112.370339,28.284397],[112.352779,28.291261],[112.345284,28.289518],[112.349168,28.281837],[112.358632,28.283471],[112.356937,28.277369],[112.346761,28.274809],[112.332921,28.284397],[112.316674,28.282981],[112.322473,28.263258],[112.306444,28.261351],[112.294135,28.247073],[112.288282,28.254049],[112.280678,28.252632],[112.264431,28.235683],[112.255733,28.233448],[112.251685,28.2244],[112.237954,28.210445],[112.227286,28.221239],[112.223293,28.233939],[112.210109,28.239225],[112.195503,28.23323],[112.177997,28.235737],[112.169518,28.245602],[112.146214,28.254539],[112.137297,28.266636],[112.123128,28.266146],[112.11629,28.271703],[112.099058,28.270069],[112.093424,28.265001],[112.082264,28.267889],[112.080677,28.260806],[112.051684,28.25127],[112.033139,28.252468],[112.009671,28.244021],[112.003981,28.235029],[112.003489,28.224509],[111.986585,28.224182],[111.962132,28.208864],[111.961147,28.198124],[111.944736,28.186728],[111.941782,28.172277],[111.933248,28.168132],[111.93188,28.133332],[111.90885,28.116036],[111.899167,28.09983],[111.91525,28.082802],[111.914101,28.079363],[111.926246,28.065498],[111.911038,28.052287],[111.907537,28.041804],[111.913117,28.027989],[111.902613,28.021982]]]]}},{"type":"Feature","properties":{"adcode":430200,"name":"株洲市","center":[113.151737,27.835806],"centroid":[113.522078,27.11883],"childrenNum":9,"level":"city","parent":{"adcode":430000},"subFeatureIndex":1,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.730409,27.88471],[113.72286,27.885749],[113.69693,27.86989],[113.672203,27.876835],[113.660661,27.884929],[113.654971,27.87782],[113.644906,27.879734],[113.633965,27.895755],[113.602181,27.913578],[113.594796,27.910352],[113.597258,27.902917],[113.591405,27.891271],[113.576798,27.899746],[113.571383,27.912594],[113.569413,27.92779],[113.578221,27.93976],[113.575704,27.959761],[113.567717,27.964788],[113.554205,27.961236],[113.525923,27.959925],[113.521547,27.942328],[113.507323,27.938175],[113.490201,27.939432],[113.481557,27.927134],[113.463614,27.918224],[113.458144,27.908056],[113.459511,27.900183],[113.446163,27.895645],[113.424172,27.897668],[113.415529,27.888975],[113.416185,27.872789],[113.413231,27.857803],[113.399993,27.853373],[113.384402,27.854357],[113.359402,27.848067],[113.343045,27.858569],[113.331338,27.856928],[113.315747,27.865077],[113.300758,27.868851],[113.300102,27.877218],[113.288504,27.877218],[113.2902,27.865843],[113.274992,27.862671],[113.28101,27.880882],[113.281611,27.894443],[113.274883,27.909587],[113.2902,27.909915],[113.287574,27.916858],[113.273296,27.91888],[113.266677,27.934185],[113.259073,27.941782],[113.261863,27.948559],[113.271546,27.949706],[113.271819,27.961783],[113.277673,27.970634],[113.269576,27.977027],[113.271436,27.99063],[113.264051,28.011714],[113.258252,27.996475],[113.259839,28.013243],[113.250266,28.019688],[113.243865,28.009912],[113.228165,28.014445],[113.226578,28.020398],[113.214598,28.024057],[113.209182,28.012315],[113.190801,28.010676],[113.175812,28.015046],[113.164106,28.006744],[113.17067,27.999916],[113.148624,27.992269],[113.149554,27.980851],[113.158744,27.966373],[113.146545,27.953859],[113.135495,27.953422],[113.138832,27.945717],[113.131064,27.942219],[113.132978,27.930578],[113.138996,27.927845],[113.136644,27.914999],[113.122092,27.914288],[113.108635,27.933037],[113.101797,27.933693],[113.086698,27.950089],[113.069193,27.938557],[113.061315,27.910899],[113.048405,27.890998],[113.045943,27.875632],[113.038613,27.864093],[113.046381,27.846426],[113.03812,27.843308],[113.012464,27.822902],[113.002343,27.810427],[113.003766,27.798772],[113.023022,27.791821],[113.033689,27.77064],[113.034893,27.762812],[113.029532,27.752082],[113.032048,27.742391],[113.053711,27.733356],[113.058963,27.727114],[113.050429,27.711013],[113.026195,27.711013],[113.00847,27.684775],[112.995068,27.676613],[112.994575,27.665819],[113.003985,27.652395],[113.016129,27.660395],[113.027289,27.659025],[113.031446,27.651901],[113.024554,27.642585],[113.03905,27.630747],[113.038832,27.621594],[113.018974,27.612714],[113.007759,27.621649],[112.997147,27.616112],[112.999006,27.606135],[113.009017,27.598734],[112.988831,27.578337],[112.972146,27.568796],[112.970779,27.561666],[112.976523,27.54214],[112.975265,27.526287],[112.969411,27.511638],[112.975757,27.501267],[112.987573,27.498688],[112.983963,27.487328],[112.971381,27.475199],[112.979039,27.467515],[112.985659,27.469765],[112.989105,27.447094],[112.995396,27.438309],[112.999225,27.435619],[112.994247,27.407064],[113.002015,27.392729],[113.024171,27.385807],[113.021545,27.378337],[113.025265,27.367239],[113.042223,27.350921],[113.033306,27.345041],[113.032541,27.329269],[113.048843,27.320915],[113.04381,27.309647],[113.051031,27.287492],[113.068427,27.280949],[113.085878,27.266433],[113.082431,27.253895],[113.092606,27.238274],[113.087847,27.235469],[113.107814,27.225238],[113.115473,27.205597],[113.127508,27.207358],[113.133252,27.229638],[113.144138,27.249275],[113.148296,27.251695],[113.164324,27.236019],[113.173734,27.233489],[113.182979,27.240915],[113.23183,27.237339],[113.248406,27.23943],[113.255408,27.223642],[113.271929,27.205707],[113.283964,27.178634],[113.280298,27.166636],[113.260058,27.173186],[113.257815,27.160141],[113.245944,27.151609],[113.244795,27.139994],[113.236042,27.145224],[113.219467,27.131736],[113.196053,27.14181],[113.193482,27.1357],[113.16799,27.126175],[113.164543,27.101285],[113.170779,27.099027],[113.175101,27.088838],[113.193865,27.076059],[113.199171,27.056888],[113.198022,27.04069],[113.215856,27.0408],[113.220014,27.024434],[113.23462,27.021403],[113.235714,27.014789],[113.224937,27.012474],[113.21892,27.002939],[113.226852,26.994671],[113.221546,26.974549],[113.225594,26.956298],[113.235331,26.951721],[113.245014,26.93832],[113.280955,26.939974],[113.278329,26.928447],[113.266458,26.918408],[113.257104,26.917691],[113.254751,26.900259],[113.239708,26.894466],[113.24288,26.889279],[113.239106,26.877747],[113.227125,26.876423],[113.232869,26.860971],[113.252399,26.839224],[113.259784,26.827797],[113.280627,26.825202],[113.273789,26.813056],[113.285331,26.799694],[113.285441,26.79003],[113.27811,26.777715],[113.283417,26.771473],[113.299281,26.768104],[113.306283,26.773517],[113.315091,26.79616],[113.326305,26.80759],[113.338121,26.81024],[113.363669,26.800081],[113.384456,26.797099],[113.394303,26.804774],[113.404697,26.797596],[113.412684,26.782575],[113.428111,26.769761],[113.427618,26.764569],[113.413286,26.72982],[113.400758,26.706943],[113.382049,26.69915],[113.381448,26.6939],[113.392224,26.674885],[113.399883,26.666593],[113.400977,26.658245],[113.415474,26.645694],[113.418045,26.629381],[113.411371,26.610134],[113.400266,26.605211],[113.399117,26.596969],[113.414599,26.587399],[113.429478,26.558738],[113.458144,26.561782],[113.467279,26.559347],[113.477072,26.562667],[113.491021,26.575338],[113.495781,26.58419],[113.509183,26.59271],[113.523461,26.595476],[113.541295,26.59271],[113.554971,26.585352],[113.562192,26.575172],[113.558691,26.549497],[113.572969,26.519111],[113.587028,26.520882],[113.589162,26.511416],[113.603604,26.507652],[113.595671,26.479913],[113.588998,26.467121],[113.603275,26.448345],[113.609621,26.431007],[113.607707,26.419096],[113.583199,26.394661],[113.583527,26.370331],[113.592499,26.360187],[113.597149,26.34583],[113.598954,26.326646],[113.60705,26.315113],[113.617061,26.308236],[113.615201,26.278896],[113.64414,26.267968],[113.655464,26.270575],[113.671602,26.256761],[113.67833,26.247273],[113.708473,26.234067],[113.725158,26.223745],[113.738724,26.18317],[113.736536,26.159351],[113.729261,26.139248],[113.72204,26.133139],[113.702455,26.124419],[113.693265,26.09581],[113.709074,26.065805],[113.736427,26.041129],[113.750705,26.041629],[113.761536,26.04791],[113.780957,26.066139],[113.780792,26.093699],[113.791624,26.10431],[113.805793,26.100033],[113.811099,26.086421],[113.824775,26.084087],[113.845071,26.095699],[113.849611,26.107588],[113.860278,26.119309],[113.888451,26.130362],[113.896438,26.135527],[113.902839,26.148023],[113.914491,26.15874],[113.916953,26.171344],[113.930246,26.172788],[113.94611,26.184502],[113.949502,26.192663],[113.970071,26.202099],[113.971548,26.219305],[113.980191,26.226464],[113.978933,26.23773],[113.989108,26.246663],[114.00273,26.251324],[114.011264,26.258481],[114.029316,26.266359],[114.02122,26.283056],[114.02576,26.296812],[114.041789,26.309567],[114.035607,26.323375],[114.047588,26.337403],[114.039765,26.345663],[114.039655,26.361407],[114.030574,26.376594],[114.036264,26.377314],[114.042992,26.390227],[114.049885,26.391114],[114.062522,26.406131],[114.071658,26.409843],[114.076472,26.404136],[114.085443,26.406242],[114.089054,26.418043],[114.085772,26.422808],[114.086428,26.439593],[114.090531,26.455712],[114.110115,26.483014],[114.09808,26.484121],[114.086756,26.478196],[114.072697,26.479913],[114.084185,26.504994],[114.086264,26.525753],[114.097533,26.541196],[114.096275,26.548279],[114.105903,26.559679],[114.108091,26.575006],[114.084677,26.577772],[114.069634,26.575836],[114.060881,26.580649],[114.042555,26.57993],[114.033091,26.585629],[114.019743,26.587454],[114.017664,26.599624],[113.996384,26.61561],[113.984404,26.614559],[113.960005,26.618099],[113.953167,26.613729],[113.938944,26.612844],[113.906449,26.615665],[113.901362,26.627888],[113.88495,26.635796],[113.881449,26.654319],[113.867992,26.652992],[113.860497,26.664105],[113.862686,26.689478],[113.861373,26.705948],[113.856449,26.714735],[113.856777,26.735622],[113.852839,26.750041],[113.85355,26.76943],[113.845946,26.788153],[113.836755,26.79616],[113.835771,26.806375],[113.857926,26.826803],[113.85902,26.833814],[113.877456,26.859481],[113.892062,26.860529],[113.891406,26.897831],[113.903058,26.91063],[113.902182,26.925855],[113.926362,26.947144],[113.921384,26.960047],[113.8925,26.964734],[113.879808,26.983315],[113.871493,26.990095],[113.870727,27.003876],[113.863287,27.018482],[113.848134,27.016663],[113.845563,27.028402],[113.838506,27.034959],[113.8239,27.036116],[113.816679,27.046806],[113.811919,27.081568],[113.807652,27.097705],[113.803276,27.099358],[113.788178,27.086525],[113.779972,27.087131],[113.77193,27.096384],[113.774173,27.120283],[113.77937,27.137186],[113.801088,27.158435],[113.814709,27.174286],[113.823025,27.192997],[113.847204,27.222487],[113.853057,27.234754],[113.859896,27.269127],[113.871712,27.284743],[113.869141,27.296509],[113.858364,27.298763],[113.854644,27.305249],[113.872915,27.346745],[113.876198,27.382072],[113.872642,27.384874],[113.837412,27.371909],[113.822915,27.364767],[113.81088,27.368393],[113.783254,27.362185],[113.762904,27.360866],[113.743648,27.348723],[113.722751,27.348998],[113.717991,27.342403],[113.699775,27.332072],[113.672149,27.333281],[113.657707,27.347459],[113.639162,27.349932],[113.625923,27.343228],[113.616678,27.345426],[113.60437,27.365536],[113.602674,27.385753],[113.618866,27.398441],[113.629753,27.401022],[113.620672,27.418267],[113.606886,27.417498],[113.59775,27.428755],[113.599665,27.450333],[113.592006,27.468173],[113.614381,27.477449],[113.613724,27.48409],[113.627017,27.498029],[113.622367,27.503627],[113.628604,27.512241],[113.621875,27.52678],[113.610442,27.514546],[113.583363,27.524696],[113.578822,27.545157],[113.599391,27.567425],[113.601525,27.57905],[113.608801,27.584972],[113.604917,27.594622],[113.607269,27.625376],[113.619413,27.641763],[113.652127,27.663628],[113.659238,27.672011],[113.669742,27.694855],[113.696328,27.718899],[113.700431,27.731002],[113.699009,27.741131],[113.73123,27.774471],[113.763232,27.799319],[113.767226,27.808184],[113.767062,27.824489],[113.763506,27.842214],[113.756339,27.86021],[113.731503,27.869125],[113.730409,27.88471]]]]}},{"type":"Feature","properties":{"adcode":430300,"name":"湘潭市","center":[112.944052,27.82973],"centroid":[112.608495,27.72863],"childrenNum":5,"level":"city","parent":{"adcode":430000},"subFeatureIndex":2,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.999714,27.907837],[112.012296,27.87864],[112.014813,27.847083],[112.026957,27.835157],[112.040524,27.839534],[112.04687,27.817048],[112.069901,27.80397],[112.087023,27.81382],[112.101246,27.807363],[112.106498,27.790617],[112.097745,27.776551],[112.098675,27.765001],[112.11268,27.761991],[112.130623,27.747428],[112.110929,27.738722],[112.106389,27.717147],[112.100699,27.722295],[112.099113,27.73467],[112.087187,27.733739],[112.081826,27.721747],[112.092111,27.716325],[112.083303,27.71523],[112.071761,27.720652],[112.053489,27.714135],[112.045338,27.706303],[112.052997,27.690527],[112.048785,27.688336],[112.048183,27.674038],[112.05803,27.680393],[112.07094,27.6696],[112.067001,27.658477],[112.078052,27.645764],[112.091235,27.642366],[112.104255,27.653381],[112.113664,27.653436],[112.11722,27.645435],[112.124879,27.646147],[112.134616,27.654696],[112.137953,27.666258],[112.145776,27.665162],[112.154857,27.64949],[112.166673,27.660066],[112.176083,27.650203],[112.199387,27.654313],[112.206827,27.651627],[112.2071,27.670531],[112.216564,27.675846],[112.222636,27.671517],[112.230623,27.685871],[112.240853,27.691075],[112.243369,27.707727],[112.268534,27.700935],[112.290525,27.7057],[112.304201,27.697868],[112.315744,27.685871],[112.320613,27.675298],[112.315142,27.664285],[112.313501,27.651025],[112.288884,27.646915],[112.281882,27.643298],[112.283906,27.633652],[112.298019,27.620991],[112.330788,27.602517],[112.334289,27.581408],[112.332429,27.569947],[112.325317,27.556182],[112.308578,27.53457],[112.301411,27.503188],[112.306389,27.492816],[112.321652,27.496493],[112.328709,27.490511],[112.333851,27.495725],[112.346105,27.496273],[112.348129,27.488206],[112.365799,27.480907],[112.373731,27.48656],[112.393479,27.492542],[112.391948,27.499731],[112.401193,27.503736],[112.399606,27.510266],[112.406007,27.524092],[112.417604,27.527713],[112.427123,27.526067],[112.435985,27.514546],[112.429639,27.499785],[112.446379,27.491499],[112.460164,27.490456],[112.47023,27.461916],[112.480952,27.453132],[112.500974,27.445831],[112.521981,27.429194],[112.531007,27.430293],[112.538885,27.416674],[112.55453,27.424911],[112.553327,27.432379],[112.566893,27.441768],[112.576576,27.434466],[112.587244,27.437046],[112.592605,27.454999],[112.608305,27.455987],[112.615143,27.465978],[112.63046,27.466252],[112.639596,27.45983],[112.64627,27.464715],[112.659727,27.452309],[112.673075,27.456811],[112.69069,27.454121],[112.687244,27.437101],[112.678491,27.42892],[112.677397,27.419255],[112.685658,27.405691],[112.704093,27.407668],[112.715308,27.404263],[112.727507,27.394871],[112.735822,27.401517],[112.748404,27.39899],[112.76033,27.403988],[112.771818,27.392784],[112.77417,27.376359],[112.791566,27.36213],[112.80382,27.36202],[112.806282,27.348723],[112.799826,27.344327],[112.807868,27.338392],[112.815691,27.343777],[112.831118,27.338337],[112.834947,27.354382],[112.852999,27.355097],[112.863886,27.351196],[112.869958,27.356141],[112.901906,27.360536],[112.920177,27.356635],[112.924936,27.367074],[112.921818,27.409865],[112.9251,27.418871],[112.939597,27.426284],[112.955954,27.430293],[112.978109,27.439188],[112.995396,27.438309],[112.989105,27.447094],[112.985659,27.469765],[112.979039,27.467515],[112.971381,27.475199],[112.983963,27.487328],[112.987573,27.498688],[112.975757,27.501267],[112.969411,27.511638],[112.975265,27.526287],[112.976523,27.54214],[112.970779,27.561666],[112.972146,27.568796],[112.988831,27.578337],[113.009017,27.598734],[112.999006,27.606135],[112.997147,27.616112],[113.007759,27.621649],[113.018974,27.612714],[113.038832,27.621594],[113.03905,27.630747],[113.024554,27.642585],[113.031446,27.651901],[113.027289,27.659025],[113.016129,27.660395],[113.003985,27.652395],[112.994575,27.665819],[112.995068,27.676613],[113.00847,27.684775],[113.026195,27.711013],[113.050429,27.711013],[113.058963,27.727114],[113.053711,27.733356],[113.032048,27.742391],[113.029532,27.752082],[113.034893,27.762812],[113.033689,27.77064],[113.023022,27.791821],[113.003766,27.798772],[113.002343,27.810427],[113.012464,27.822902],[113.03812,27.843308],[113.046381,27.846426],[113.038613,27.864093],[113.045943,27.875632],[113.048405,27.890998],[113.061315,27.910899],[113.069193,27.938557],[113.086698,27.950089],[113.09009,27.965171],[113.082322,27.964296],[113.073733,27.972],[113.090965,27.989865],[113.071709,28.010895],[113.041676,28.006198],[113.030079,27.991941],[113.035932,27.977409],[113.022858,27.985276],[113.023897,27.976972],[113.003164,27.965171],[112.992059,27.975825],[112.956774,27.998933],[112.945724,28.014773],[112.93347,28.015264],[112.935822,28.003958],[112.928054,27.993088],[112.937628,27.992378],[112.941402,27.984839],[112.928328,27.983583],[112.924116,27.974896],[112.914542,27.977737],[112.906555,27.971072],[112.900264,27.97812],[112.885658,27.974295],[112.883744,27.979158],[112.893481,27.99216],[112.882266,27.992924],[112.877562,28.004231],[112.869903,28.001937],[112.873021,27.990302],[112.858689,27.988882],[112.859728,28.004177],[112.850483,28.021272],[112.838776,28.021436],[112.831774,28.027388],[112.833525,28.037709],[112.825538,28.043988],[112.81591,28.061513],[112.81859,28.06921],[112.802124,28.069374],[112.782704,28.073577],[112.777124,28.061131],[112.78254,28.052778],[112.791785,28.049775],[112.808689,28.03689],[112.804257,28.025641],[112.792441,28.023729],[112.790472,28.031757],[112.777015,28.036944],[112.772419,28.031047],[112.779476,28.02149],[112.770122,28.017449],[112.763667,28.00232],[112.764487,27.986806],[112.758415,27.965389],[112.744082,27.946427],[112.743098,27.931944],[112.731828,27.929156],[112.731008,27.916967],[112.712463,27.916475],[112.706062,27.923089],[112.683415,27.920301],[112.687135,27.927079],[112.654585,27.941509],[112.641948,27.923308],[112.651248,27.918552],[112.657047,27.900347],[112.649443,27.880281],[112.633852,27.880116],[112.630515,27.890561],[112.619684,27.899801],[112.611642,27.900293],[112.606937,27.918006],[112.599005,27.921176],[112.594738,27.931507],[112.596926,27.953477],[112.576686,27.959324],[112.574279,27.967848],[112.561368,27.980469],[112.553874,27.972601],[112.539486,27.975388],[112.531117,27.994126],[112.511806,27.994672],[112.508086,28.008874],[112.516401,28.018814],[112.486259,28.04022],[112.480241,28.056272],[112.468698,28.058893],[112.459125,28.051905],[112.443972,28.05731],[112.42291,28.049339],[112.413282,28.040657],[112.41011,28.031593],[112.415033,28.01521],[112.407101,28.001118],[112.398129,27.996857],[112.415361,27.99216],[112.411313,27.963258],[112.402341,27.966373],[112.389814,27.962111],[112.382757,27.967957],[112.371105,27.970033],[112.354037,27.965662],[112.342604,27.957193],[112.328217,27.963968],[112.313009,27.95916],[112.306663,27.971618],[112.298457,27.971235],[112.257647,27.95916],[112.245284,27.963695],[112.23035,27.961837],[112.223785,27.971399],[112.211094,27.95375],[112.199059,27.96222],[112.199223,27.969487],[112.18303,27.947083],[112.180897,27.93812],[112.173457,27.940743],[112.158851,27.928337],[112.160656,27.916912],[112.149551,27.908001],[112.137625,27.905705],[112.127669,27.911227],[112.11826,27.897614],[112.101137,27.893622],[112.093095,27.895919],[112.087734,27.908384],[112.060218,27.920028],[112.051246,27.919208],[112.04408,27.912156],[112.030513,27.914398],[112.017548,27.906307],[111.999714,27.907837]]]]}},{"type":"Feature","properties":{"adcode":430400,"name":"衡阳市","center":[112.607693,26.900358],"centroid":[112.579689,26.792402],"childrenNum":12,"level":"city","parent":{"adcode":430000},"subFeatureIndex":3,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.995396,27.438309],[112.978109,27.439188],[112.955954,27.430293],[112.939597,27.426284],[112.9251,27.418871],[112.921818,27.409865],[112.924936,27.367074],[112.920177,27.356635],[112.901906,27.360536],[112.869958,27.356141],[112.863886,27.351196],[112.852999,27.355097],[112.834947,27.354382],[112.831118,27.338337],[112.815691,27.343777],[112.807868,27.338392],[112.799826,27.344327],[112.806282,27.348723],[112.80382,27.36202],[112.791566,27.36213],[112.77417,27.376359],[112.771818,27.392784],[112.76033,27.403988],[112.748404,27.39899],[112.735822,27.401517],[112.727507,27.394871],[112.715308,27.404263],[112.704093,27.407668],[112.685658,27.405691],[112.677397,27.419255],[112.678491,27.42892],[112.687244,27.437101],[112.69069,27.454121],[112.673075,27.456811],[112.659727,27.452309],[112.64627,27.464715],[112.639596,27.45983],[112.63046,27.466252],[112.615143,27.465978],[112.608305,27.455987],[112.592605,27.454999],[112.587244,27.437046],[112.576576,27.434466],[112.566893,27.441768],[112.553327,27.432379],[112.55453,27.424911],[112.538885,27.416674],[112.531007,27.430293],[112.521981,27.429194],[112.522418,27.420464],[112.508359,27.417004],[112.51279,27.403164],[112.50453,27.403988],[112.499005,27.397727],[112.49988,27.374931],[112.489596,27.371909],[112.485712,27.359877],[112.471871,27.372404],[112.459891,27.355152],[112.438118,27.344602],[112.432374,27.354218],[112.408523,27.36147],[112.368151,27.356086],[112.370503,27.363888],[112.358742,27.362459],[112.339267,27.365921],[112.331061,27.370206],[112.321543,27.363998],[112.312133,27.367074],[112.309125,27.360426],[112.299715,27.358723],[112.282593,27.337073],[112.287844,27.328939],[112.279857,27.31223],[112.267275,27.305084],[112.256116,27.310691],[112.254912,27.295684],[112.239048,27.287822],[112.233085,27.265388],[112.223785,27.261209],[112.213938,27.268908],[112.206225,27.285128],[112.20535,27.296564],[112.197691,27.295794],[112.190634,27.311791],[112.182374,27.309812],[112.174824,27.319651],[112.163883,27.324542],[112.153654,27.305689],[112.162844,27.284193],[112.163063,27.277321],[112.150535,27.265828],[112.1507,27.254609],[112.160054,27.247515],[112.154091,27.239375],[112.137899,27.237009],[112.127942,27.227658],[112.129529,27.220892],[112.112625,27.222322],[112.114211,27.210714],[112.107209,27.214125],[112.092165,27.205652],[112.08861,27.195143],[112.091235,27.185623],[112.076739,27.185183],[112.070666,27.191071],[112.058139,27.175442],[112.049003,27.150784],[112.05245,27.142856],[112.046596,27.132672],[112.056006,27.116649],[112.051684,27.102882],[112.056224,27.085754],[112.046925,27.077271],[112.05059,27.071102],[112.071815,27.064987],[112.078052,27.041792],[112.086859,27.033912],[112.086804,27.013246],[112.081006,27.008561],[112.060108,27.013026],[112.050152,27.006467],[112.043205,26.995663],[112.047143,26.975265],[112.019846,26.9649],[112.01629,26.955416],[112.007045,26.952658],[112.000644,26.943669],[111.979474,26.942291],[111.986366,26.950011],[111.983795,26.958228],[111.972526,26.958118],[111.961804,26.951169],[111.953598,26.955195],[111.9356,26.952217],[111.929802,26.93854],[111.917821,26.935176],[111.907427,26.924752],[111.89851,26.926627],[111.898237,26.96887],[111.894353,26.978243],[111.898401,26.986677],[111.881278,26.999632],[111.868696,27.013411],[111.863171,27.009774],[111.841946,27.008726],[111.817438,27.020962],[111.823237,27.036778],[111.81607,27.045428],[111.809178,27.046035],[111.807865,27.033141],[111.786913,27.039698],[111.776683,27.046586],[111.772525,27.058045],[111.753543,27.057329],[111.758029,27.062728],[111.737897,27.061571],[111.724768,27.069063],[111.712842,27.052316],[111.699276,27.046586],[111.68828,27.031377],[111.665796,27.031763],[111.659615,27.012144],[111.651518,27.008726],[111.649768,27.00112],[111.6577,26.986016],[111.649713,26.962915],[111.635271,26.963742],[111.622033,26.954202],[111.613663,26.959717],[111.604472,26.958393],[111.587569,26.96694],[111.581442,26.962143],[111.576463,26.945048],[111.567109,26.934845],[111.583137,26.925028],[111.583028,26.909031],[111.5891,26.896728],[111.578597,26.8831],[111.569078,26.884314],[111.564483,26.86958],[111.551026,26.860033],[111.550752,26.846952],[111.543586,26.840935],[111.549111,26.832324],[111.545938,26.821724],[111.549986,26.812338],[111.558083,26.808639],[111.575369,26.809357],[111.577229,26.79986],[111.588006,26.797596],[111.601245,26.785888],[111.618477,26.7913],[111.629637,26.789312],[111.638006,26.802344],[111.644516,26.803228],[111.642437,26.817252],[111.650862,26.840438],[111.66596,26.843309],[111.684615,26.833538],[111.701464,26.836188],[111.700589,26.843198],[111.712678,26.84916],[111.719243,26.847283],[111.731278,26.8326],[111.739046,26.832876],[111.746759,26.841487],[111.752285,26.831551],[111.745009,26.825534],[111.744735,26.812173],[111.753707,26.807038],[111.772142,26.80875],[111.771705,26.79986],[111.781278,26.789147],[111.797307,26.79257],[111.802504,26.801516],[111.820556,26.804498],[111.824057,26.798479],[111.817055,26.784011],[111.827504,26.780918],[111.831825,26.786164],[111.850206,26.789809],[111.859178,26.799584],[111.871486,26.796491],[111.874769,26.785888],[111.903325,26.751754],[111.917985,26.748936],[111.916399,26.733688],[111.927066,26.711032],[111.94036,26.699427],[111.949003,26.681519],[111.951902,26.664216],[111.959342,26.65642],[111.960983,26.645307],[111.973565,26.630929],[111.990196,26.624182],[111.997526,26.605101],[112.006005,26.596914],[112.014922,26.605322],[112.019736,26.619205],[112.013992,26.627556],[112.005513,26.624791],[111.995666,26.63939],[112.006498,26.648458],[112.028489,26.651831],[112.04583,26.643205],[112.05617,26.647961],[112.076903,26.64398],[112.093478,26.634026],[112.094189,26.645141],[112.10978,26.654043],[112.117822,26.650504],[112.115743,26.643371],[112.126356,26.63574],[112.151082,26.625731],[112.150317,26.617048],[112.141454,26.603386],[112.143916,26.593429],[112.158577,26.591825],[112.170557,26.585352],[112.168205,26.574674],[112.174715,26.571188],[112.169518,26.557078],[112.156389,26.555529],[112.149113,26.547173],[112.162735,26.539314],[112.147363,26.527469],[112.144737,26.504441],[112.15245,26.502725],[112.174223,26.524148],[112.19047,26.536879],[112.213118,26.548556],[112.227833,26.546453],[112.242713,26.535052],[112.243205,26.514073],[112.236695,26.505382],[112.211258,26.502725],[112.195339,26.486613],[112.1757,26.500178],[112.159999,26.493866],[112.159562,26.486336],[112.166509,26.477033],[112.152177,26.469668],[112.157975,26.465016],[112.161914,26.450727],[112.155295,26.444523],[112.143205,26.441477],[112.145612,26.431727],[112.152724,26.430065],[112.150098,26.416326],[112.153271,26.403139],[112.140634,26.407959],[112.141728,26.387068],[112.150152,26.38463],[112.148183,26.35736],[112.153161,26.349544],[112.158741,26.353036],[112.181498,26.34339],[112.177724,26.325925],[112.177942,26.305741],[112.190415,26.312229],[112.199004,26.30746],[112.20896,26.31356],[112.212461,26.30563],[112.205021,26.285275],[112.197308,26.277287],[112.200809,26.262365],[112.19605,26.229794],[112.190306,26.22369],[112.194901,26.206873],[112.192877,26.19394],[112.185929,26.185668],[112.195448,26.172011],[112.206115,26.165514],[112.217221,26.165459],[112.212571,26.151188],[112.222636,26.150799],[112.224332,26.138915],[112.231389,26.134417],[112.232428,26.117865],[112.257702,26.123308],[112.258523,26.130751],[112.266947,26.13114],[112.284453,26.143636],[112.290689,26.144024],[112.292385,26.134417],[112.304256,26.132917],[112.31186,26.148967],[112.310437,26.158574],[112.327068,26.161128],[112.33779,26.167569],[112.357046,26.161294],[112.364322,26.181282],[112.375044,26.190553],[112.377287,26.201544],[112.386641,26.205208],[112.395066,26.186168],[112.405788,26.184835],[112.429256,26.189721],[112.444574,26.175953],[112.450919,26.180394],[112.47953,26.175786],[112.485055,26.167957],[112.482046,26.160739],[112.48872,26.150911],[112.507812,26.159573],[112.50825,26.143858],[112.5129,26.135583],[112.524443,26.137471],[112.529092,26.147579],[112.554804,26.147245],[112.566565,26.158518],[112.578381,26.153632],[112.582047,26.15924],[112.576248,26.168346],[112.577451,26.182004],[112.572309,26.193384],[112.58057,26.208982],[112.581062,26.219083],[112.597802,26.220526],[112.602834,26.217085],[112.608961,26.198436],[112.623403,26.192108],[112.633688,26.163293],[112.630132,26.154409],[112.637299,26.138915],[112.654257,26.129251],[112.670668,26.127696],[112.658196,26.114976],[112.646161,26.112421],[112.642277,26.105977],[112.654913,26.101033],[112.665307,26.10981],[112.673787,26.111032],[112.676139,26.125974],[112.686423,26.123808],[112.688557,26.114198],[112.707704,26.122419],[112.710275,26.131751],[112.720395,26.125474],[112.735056,26.134583],[112.739979,26.144469],[112.746216,26.143802],[112.752507,26.129862],[112.760384,26.133084],[112.758743,26.149855],[112.768371,26.145524],[112.782157,26.146024],[112.783634,26.164237],[112.791402,26.166292],[112.78812,26.175342],[112.777179,26.177341],[112.775975,26.183892],[112.786041,26.196993],[112.79173,26.193218],[112.78987,26.179839],[112.795614,26.180116],[112.802616,26.19022],[112.809728,26.192163],[112.818535,26.186667],[112.818754,26.161794],[112.838557,26.155742],[112.846435,26.158296],[112.857923,26.154187],[112.870067,26.155797],[112.875866,26.1498],[112.891074,26.156519],[112.903601,26.148467],[112.920997,26.157963],[112.921052,26.174398],[112.930133,26.176785],[112.942606,26.170789],[112.949882,26.160184],[112.968645,26.154242],[112.984564,26.156575],[112.992989,26.162349],[113.008635,26.155631],[113.035659,26.172843],[113.034948,26.206651],[113.039926,26.213589],[113.025867,26.245276],[113.032103,26.25199],[113.045287,26.254542],[113.05207,26.248494],[113.068153,26.252933],[113.073514,26.24855],[113.091676,26.250103],[113.087136,26.273626],[113.103547,26.290544],[113.117059,26.287327],[113.119193,26.29304],[113.128821,26.29304],[113.130626,26.306572],[113.127344,26.31356],[113.142059,26.32587],[113.162683,26.324317],[113.173788,26.329696],[113.164762,26.344499],[113.168865,26.3491],[113.156556,26.36246],[113.167114,26.374266],[113.16044,26.387733],[113.163558,26.409566],[113.171874,26.412115],[113.179095,26.404967],[113.191239,26.406186],[113.212191,26.425246],[113.211699,26.433112],[113.192278,26.44552],[113.194904,26.451669],[113.210112,26.465182],[113.217388,26.462746],[113.226852,26.467065],[113.230079,26.482072],[113.214324,26.502448],[113.189653,26.506157],[113.179423,26.519388],[113.171655,26.521214],[113.160003,26.534222],[113.159182,26.541638],[113.179149,26.564438],[113.179259,26.578492],[113.186699,26.608088],[113.179587,26.638339],[113.188176,26.662447],[113.182979,26.687765],[113.160878,26.687875],[113.152289,26.700532],[113.134784,26.71258],[113.13916,26.71794],[113.122311,26.72319],[113.121381,26.73098],[113.131392,26.738053],[113.12904,26.74413],[113.115364,26.74413],[113.113066,26.753024],[113.101961,26.753245],[113.09556,26.759929],[113.097256,26.781636],[113.149062,26.792129],[113.142935,26.812504],[113.144138,26.834477],[113.153165,26.837568],[113.160495,26.827521],[113.183854,26.825202],[113.207103,26.829674],[113.206338,26.825478],[113.223679,26.820896],[113.224609,26.814437],[113.238066,26.805216],[113.258526,26.815486],[113.259784,26.827797],[113.252399,26.839224],[113.232869,26.860971],[113.227125,26.876423],[113.239106,26.877747],[113.24288,26.889279],[113.239708,26.894466],[113.254751,26.900259],[113.257104,26.917691],[113.266458,26.918408],[113.278329,26.928447],[113.280955,26.939974],[113.245014,26.93832],[113.235331,26.951721],[113.225594,26.956298],[113.221546,26.974549],[113.226852,26.994671],[113.21892,27.002939],[113.224937,27.012474],[113.235714,27.014789],[113.23462,27.021403],[113.220014,27.024434],[113.215856,27.0408],[113.198022,27.04069],[113.199171,27.056888],[113.193865,27.076059],[113.175101,27.088838],[113.170779,27.099027],[113.164543,27.101285],[113.16799,27.126175],[113.193482,27.1357],[113.196053,27.14181],[113.219467,27.131736],[113.236042,27.145224],[113.244795,27.139994],[113.245944,27.151609],[113.257815,27.160141],[113.260058,27.173186],[113.280298,27.166636],[113.283964,27.178634],[113.271929,27.205707],[113.255408,27.223642],[113.248406,27.23943],[113.23183,27.237339],[113.182979,27.240915],[113.173734,27.233489],[113.164324,27.236019],[113.148296,27.251695],[113.144138,27.249275],[113.133252,27.229638],[113.127508,27.207358],[113.115473,27.205597],[113.107814,27.225238],[113.087847,27.235469],[113.092606,27.238274],[113.082431,27.253895],[113.085878,27.266433],[113.068427,27.280949],[113.051031,27.287492],[113.04381,27.309647],[113.048843,27.320915],[113.032541,27.329269],[113.033306,27.345041],[113.042223,27.350921],[113.025265,27.367239],[113.021545,27.378337],[113.024171,27.385807],[113.002015,27.392729],[112.994247,27.407064],[112.999225,27.435619],[112.995396,27.438309]]]]}},{"type":"Feature","properties":{"adcode":430500,"name":"邵阳市","center":[111.46923,27.237842],"centroid":[110.880659,26.912035],"childrenNum":12,"level":"city","parent":{"adcode":430000},"subFeatureIndex":4,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.008573,26.358857],[111.01656,26.366007],[111.025094,26.384575],[111.019022,26.391058],[111.019186,26.401033],[111.031768,26.432503],[111.044952,26.440923],[111.043694,26.451225],[111.052665,26.457041],[111.060269,26.473766],[111.05644,26.486613],[111.067217,26.505548],[111.063278,26.526528],[111.06656,26.541306],[111.063934,26.558406],[111.067107,26.577274],[111.073562,26.587841],[111.088716,26.588893],[111.104744,26.585905],[111.11388,26.609249],[111.10923,26.617435],[111.127447,26.623076],[111.137129,26.610632],[111.133191,26.590773],[111.127118,26.577496],[111.12586,26.553924],[111.142272,26.541306],[111.153978,26.527026],[111.15923,26.515734],[111.165959,26.511748],[111.154416,26.500399],[111.158847,26.49442],[111.15551,26.48246],[111.168038,26.474154],[111.184668,26.470499],[111.181057,26.463355],[111.201189,26.457318],[111.203322,26.462856],[111.229635,26.481131],[111.251353,26.483844],[111.259723,26.479913],[111.263388,26.493423],[111.271867,26.499403],[111.278268,26.490212],[111.288771,26.492316],[111.296922,26.511748],[111.296047,26.526196],[111.288498,26.557078],[111.297031,26.567758],[111.297688,26.576943],[111.304581,26.58336],[111.30387,26.60405],[111.306058,26.619758],[111.314263,26.626616],[111.312568,26.639003],[111.301244,26.644201],[111.299384,26.660677],[111.293694,26.67284],[111.281112,26.678699],[111.276244,26.68887],[111.30294,26.700035],[111.309067,26.710922],[111.32143,26.714238],[111.317218,26.733191],[111.324001,26.737721],[111.329417,26.757609],[111.329198,26.772136],[111.321485,26.783127],[111.32411,26.788318],[111.315139,26.802565],[111.322524,26.813111],[111.321922,26.820123],[111.329854,26.836685],[111.349712,26.851533],[111.349657,26.859812],[111.366397,26.864944],[111.372907,26.858211],[111.392437,26.863013],[111.406441,26.858211],[111.419625,26.867814],[111.430019,26.867924],[111.43817,26.86086],[111.4455,26.867593],[111.460106,26.867097],[111.462513,26.861081],[111.471485,26.861964],[111.482535,26.856776],[111.495227,26.860695],[111.507973,26.859536],[111.517218,26.86511],[111.528269,26.865],[111.53363,26.847117],[111.543586,26.840935],[111.550752,26.846952],[111.551026,26.860033],[111.564483,26.86958],[111.569078,26.884314],[111.578597,26.8831],[111.5891,26.896728],[111.583028,26.909031],[111.583137,26.925028],[111.567109,26.934845],[111.576463,26.945048],[111.581442,26.962143],[111.587569,26.96694],[111.604472,26.958393],[111.613663,26.959717],[111.622033,26.954202],[111.635271,26.963742],[111.649713,26.962915],[111.6577,26.986016],[111.649768,27.00112],[111.651518,27.008726],[111.659615,27.012144],[111.665796,27.031763],[111.68828,27.031377],[111.699276,27.046586],[111.712842,27.052316],[111.724768,27.069063],[111.737897,27.061571],[111.758029,27.062728],[111.753543,27.057329],[111.772525,27.058045],[111.776683,27.046586],[111.786913,27.039698],[111.807865,27.033141],[111.809178,27.046035],[111.81607,27.045428],[111.823237,27.036778],[111.817438,27.020962],[111.841946,27.008726],[111.863171,27.009774],[111.868696,27.013411],[111.881278,26.999632],[111.898401,26.986677],[111.894353,26.978243],[111.898237,26.96887],[111.89851,26.926627],[111.907427,26.924752],[111.917821,26.935176],[111.929802,26.93854],[111.9356,26.952217],[111.953598,26.955195],[111.961804,26.951169],[111.972526,26.958118],[111.983795,26.958228],[111.986366,26.950011],[111.979474,26.942291],[112.000644,26.943669],[112.007045,26.952658],[112.01629,26.955416],[112.019846,26.9649],[112.047143,26.975265],[112.043205,26.995663],[112.050152,27.006467],[112.060108,27.013026],[112.081006,27.008561],[112.086804,27.013246],[112.086859,27.033912],[112.078052,27.041792],[112.071815,27.064987],[112.05059,27.071102],[112.046925,27.077271],[112.056224,27.085754],[112.051684,27.102882],[112.056006,27.116649],[112.046596,27.132672],[112.05245,27.142856],[112.049003,27.150784],[112.058139,27.175442],[112.070666,27.191071],[112.076739,27.185183],[112.091235,27.185623],[112.08861,27.195143],[112.092165,27.205652],[112.085327,27.204002],[112.068424,27.218636],[112.069244,27.235909],[112.065196,27.250815],[112.062406,27.285843],[112.051301,27.292385],[112.041071,27.289142],[112.025152,27.3036],[112.01804,27.317562],[111.990797,27.317342],[111.98571,27.332731],[111.990305,27.341579],[111.970502,27.357514],[111.940852,27.369217],[111.909451,27.388939],[111.907318,27.39542],[111.912843,27.410304],[111.892766,27.426833],[111.882537,27.438364],[111.855294,27.461147],[111.840195,27.456646],[111.835162,27.44605],[111.819517,27.44929],[111.813609,27.45434],[111.810764,27.471357],[111.803598,27.474815],[111.796377,27.468173],[111.790195,27.470479],[111.78746,27.494627],[111.744079,27.499401],[111.73095,27.518222],[111.717766,27.516576],[111.692985,27.533857],[111.690742,27.523708],[111.67537,27.537149],[111.668915,27.537149],[111.654035,27.514765],[111.643914,27.520142],[111.638663,27.537917],[111.650096,27.534022],[111.652831,27.540111],[111.641672,27.54779],[111.639866,27.559198],[111.630621,27.553056],[111.625917,27.556127],[111.635599,27.562379],[111.641398,27.574663],[111.635162,27.578776],[111.625479,27.575212],[111.612405,27.580695],[111.620665,27.571757],[111.615577,27.566163],[111.6077,27.57587],[111.594625,27.582944],[111.589046,27.606574],[111.574056,27.607725],[111.568148,27.61688],[111.567984,27.627075],[111.560927,27.630583],[111.553597,27.626034],[111.542656,27.609644],[111.522251,27.605532],[111.489373,27.594238],[111.477831,27.578666],[111.468257,27.579599],[111.457918,27.595445],[111.441944,27.597473],[111.430347,27.59062],[111.414373,27.575212],[111.403979,27.557388],[111.388388,27.544938],[111.374603,27.542963],[111.376518,27.532815],[111.367765,27.524915],[111.357097,27.522885],[111.349822,27.537039],[111.322141,27.546858],[111.300861,27.567096],[111.278377,27.555798],[111.270718,27.541756],[111.256112,27.542799],[111.244624,27.52508],[111.223782,27.536161],[111.220773,27.551739],[111.204143,27.552781],[111.197414,27.549161],[111.182863,27.557005],[111.182151,27.56375],[111.169515,27.562653],[111.163442,27.576473],[111.150094,27.582176],[111.143147,27.578008],[111.130237,27.581408],[111.116287,27.577186],[111.106932,27.590729],[111.080291,27.588756],[111.07411,27.591442],[111.070827,27.620607],[111.059941,27.631295],[111.040247,27.631843],[111.02575,27.63568],[111.008081,27.625869],[110.994076,27.630144],[110.998453,27.639352],[110.994733,27.652395],[110.983792,27.660121],[110.945717,27.653819],[110.91749,27.656395],[110.882916,27.650696],[110.869185,27.655463],[110.855564,27.647353],[110.852336,27.627568],[110.857314,27.621375],[110.845662,27.62428],[110.847632,27.608986],[110.854579,27.601804],[110.853485,27.592045],[110.824328,27.578831],[110.808682,27.563366],[110.799437,27.559418],[110.7868,27.560515],[110.776898,27.574005],[110.767052,27.581299],[110.755837,27.596815],[110.746647,27.603833],[110.737949,27.600708],[110.743693,27.617318],[110.741067,27.62565],[110.734174,27.616386],[110.714426,27.616003],[110.710542,27.606958],[110.674053,27.60005],[110.653047,27.57417],[110.652773,27.565834],[110.638112,27.555908],[110.632642,27.536106],[110.648233,27.529578],[110.68029,27.497042],[110.68401,27.487877],[110.684666,27.468722],[110.69331,27.455822],[110.688222,27.443854],[110.674108,27.434575],[110.663113,27.420683],[110.659666,27.396793],[110.649218,27.365206],[110.636526,27.353613],[110.632204,27.343283],[110.614863,27.324103],[110.606548,27.32108],[110.609994,27.309537],[110.606384,27.301841],[110.609064,27.288977],[110.598725,27.281444],[110.585104,27.278585],[110.573998,27.281059],[110.553922,27.308218],[110.540847,27.305194],[110.524272,27.293375],[110.526405,27.289911],[110.511635,27.273746],[110.483517,27.262144],[110.462127,27.247075],[110.456274,27.2133],[110.443035,27.201251],[110.424053,27.19949],[110.387127,27.218801],[110.375584,27.223037],[110.352116,27.19905],[110.355891,27.175277],[110.342707,27.150508],[110.331766,27.151444],[110.325803,27.158765],[110.31437,27.157939],[110.304632,27.166966],[110.26705,27.153866],[110.24949,27.151059],[110.226514,27.130359],[110.200474,27.118191],[110.194183,27.102111],[110.204413,27.092033],[110.208352,27.081292],[110.201404,27.061902],[110.162619,27.04642],[110.155069,27.037714],[110.15031,27.022891],[110.153647,26.998419],[110.146262,26.986898],[110.125529,26.984803],[110.116284,26.978022],[110.104796,26.951941],[110.089697,26.948743],[110.075911,26.941684],[110.072137,26.932032],[110.09741,26.906383],[110.093253,26.891155],[110.078209,26.881996],[110.063548,26.882051],[110.055944,26.876202],[110.048668,26.86075],[110.042104,26.835029],[110.048723,26.825037],[110.057421,26.822718],[110.056546,26.80886],[110.061634,26.793509],[110.068581,26.784618],[110.063493,26.769927],[110.068253,26.759653],[110.061688,26.760316],[110.064095,26.750925],[110.04927,26.747555],[110.056546,26.740207],[110.05031,26.735622],[110.047465,26.724681],[110.060813,26.717553],[110.067323,26.718382],[110.072082,26.700145],[110.065189,26.695392],[110.044183,26.6981],[110.036907,26.681961],[110.021863,26.668251],[110.020331,26.662889],[110.002005,26.666593],[110.007476,26.673116],[109.997738,26.674277],[109.987618,26.685333],[109.963603,26.691855],[109.950036,26.68887],[109.941939,26.67776],[109.934062,26.673724],[109.91404,26.676212],[109.901075,26.66803],[109.898942,26.655591],[109.885429,26.653822],[109.858241,26.643427],[109.851458,26.621804],[109.83067,26.621528],[109.826841,26.60582],[109.856819,26.580926],[109.861688,26.583637],[109.872081,26.571022],[109.864368,26.561007],[109.862672,26.539867],[109.8723,26.538871],[109.892541,26.525477],[109.879685,26.517395],[109.883187,26.509977],[109.879357,26.497022],[109.862344,26.486834],[109.856272,26.465182],[109.875418,26.468173],[109.891392,26.459367],[109.902826,26.461804],[109.919018,26.474652],[109.932585,26.475981],[109.934883,26.456986],[109.955014,26.446905],[109.950583,26.43699],[109.96683,26.428016],[109.98729,26.432447],[109.979412,26.40735],[109.978646,26.388011],[110.012235,26.372492],[110.011524,26.364622],[110.017706,26.347548],[110.013001,26.335074],[110.009281,26.304021],[109.995933,26.294981],[109.984281,26.279118],[109.990408,26.27285],[109.995331,26.258703],[109.988821,26.245165],[109.99276,26.238617],[109.974379,26.218362],[109.966228,26.195494],[109.98439,26.17995],[110.005725,26.185779],[110.016721,26.184225],[110.030233,26.166125],[110.041557,26.162461],[110.051568,26.169235],[110.068417,26.168069],[110.084008,26.171511],[110.098723,26.169123],[110.094402,26.147134],[110.100474,26.133028],[110.074434,26.083087],[110.072137,26.063916],[110.064916,26.050022],[110.073176,26.040295],[110.083406,26.039016],[110.101021,26.020172],[110.112509,26.034792],[110.129632,26.029233],[110.140463,26.020394],[110.156382,26.018504],[110.165846,26.023841],[110.172958,26.045019],[110.181656,26.06047],[110.190956,26.067639],[110.201185,26.066139],[110.212126,26.043074],[110.234118,26.032735],[110.245223,26.022284],[110.251295,26.003715],[110.245824,25.96857],[110.261689,25.961395],[110.287947,25.966901],[110.305124,25.967346],[110.325529,25.975633],[110.335322,25.992483],[110.357969,26.046465],[110.353265,26.05469],[110.373232,26.078531],[110.377116,26.094421],[110.400365,26.116476],[110.414534,26.125752],[110.427171,26.138027],[110.437948,26.153965],[110.45693,26.164404],[110.474108,26.180172],[110.490519,26.16557],[110.500147,26.169734],[110.517543,26.186834],[110.531055,26.209371],[110.542653,26.221137],[110.546646,26.233568],[110.546099,26.25726],[110.555235,26.286384],[110.569349,26.289601],[110.584064,26.296922],[110.595114,26.318384],[110.612346,26.333688],[110.62285,26.330084],[110.625804,26.315667],[110.643747,26.308458],[110.667215,26.317608],[110.697795,26.308735],[110.709502,26.293151],[110.720935,26.294205],[110.732533,26.311785],[110.741778,26.313893],[110.749491,26.301082],[110.750038,26.290489],[110.742817,26.276122],[110.735213,26.271019],[110.758189,26.255208],[110.759119,26.248716],[110.78226,26.257482],[110.814645,26.258814],[110.841177,26.257316],[110.855619,26.268134],[110.914919,26.276344],[110.924328,26.26303],[110.921593,26.254875],[110.929962,26.255651],[110.9304,26.264362],[110.939755,26.286662],[110.936035,26.305352],[110.925422,26.318717],[110.943912,26.326702],[110.950531,26.356972],[110.944842,26.373601],[110.958956,26.382746],[110.974547,26.385572],[110.983628,26.378035],[110.991888,26.363568],[111.008573,26.358857]]]]}},{"type":"Feature","properties":{"adcode":430600,"name":"岳阳市","center":[113.132855,29.37029],"centroid":[113.259661,29.064701],"childrenNum":9,"level":"city","parent":{"adcode":430000},"subFeatureIndex":5,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.315744,29.524298],[112.320066,29.516007],[112.331116,29.51057],[112.324442,29.480416],[112.328271,29.450091],[112.342002,29.444435],[112.350974,29.453108],[112.366182,29.458441],[112.366783,29.442549],[112.386149,29.426871],[112.388829,29.420997],[112.386641,29.406016],[112.392057,29.396476],[112.423075,29.371734],[112.439924,29.360627],[112.464267,29.35351],[112.485766,29.342941],[112.490963,29.337602],[112.496981,29.317052],[112.502068,29.312198],[112.532429,29.308907],[112.547364,29.301786],[112.560219,29.304591],[112.579421,29.303674],[112.590417,29.317861],[112.611806,29.333287],[112.634454,29.335984],[112.652561,29.321421],[112.66476,29.300383],[112.673622,29.306264],[112.680789,29.294988],[112.689268,29.295743],[112.699881,29.287381],[112.683305,29.27497],[112.682813,29.269573],[112.693699,29.253976],[112.679093,29.2448],[112.681664,29.230441],[112.676358,29.224718],[112.680953,29.214027],[112.677561,29.205388],[112.68243,29.192265],[112.693207,29.192589],[112.711259,29.185352],[112.715855,29.18735],[112.724553,29.177628],[112.741949,29.168283],[112.75661,29.169958],[112.775592,29.176602],[112.793864,29.190915],[112.810384,29.185514],[112.813448,29.178654],[112.798513,29.159802],[112.812901,29.1524],[112.88161,29.162773],[112.901085,29.154615],[112.924663,29.149429],[112.92707,29.109061],[112.937737,29.078139],[112.93905,29.065541],[112.949389,29.060783],[112.9344,29.037311],[112.927945,29.023031],[112.891402,28.999388],[112.876085,28.984075],[112.87242,28.962967],[112.847967,28.935521],[112.83812,28.929295],[112.811588,28.921552],[112.797474,28.9137],[112.784181,28.911967],[112.773185,28.90276],[112.722911,28.883478],[112.685165,28.879741],[112.677452,28.871235],[112.668371,28.85043],[112.659837,28.840839],[112.664924,28.821057],[112.672966,28.811517],[112.671708,28.791568],[112.641784,28.789453],[112.619137,28.778555],[112.617495,28.770042],[112.606117,28.758002],[112.603764,28.746884],[112.58057,28.73967],[112.569082,28.731641],[112.552233,28.72958],[112.555843,28.719652],[112.548239,28.712328],[112.534563,28.70956],[112.526412,28.702561],[112.525318,28.678357],[112.521106,28.665493],[112.510602,28.654799],[112.533797,28.640412],[112.544136,28.639434],[112.552561,28.644104],[112.563666,28.629389],[112.57406,28.623796],[112.580515,28.629715],[112.588721,28.62738],[112.585001,28.620918],[112.590143,28.601692],[112.582813,28.590123],[112.574388,28.585125],[112.563721,28.570946],[112.562462,28.563556],[112.582539,28.556873],[112.591948,28.542962],[112.609727,28.540788],[112.629366,28.5472],[112.635439,28.559046],[112.648841,28.564263],[112.658688,28.580507],[112.668371,28.584256],[112.675154,28.581214],[112.684016,28.596369],[112.705351,28.599574],[112.717496,28.596206],[112.713229,28.587189],[112.716456,28.579203],[112.726194,28.581702],[112.736095,28.568229],[112.726522,28.557199],[112.701741,28.552417],[112.688283,28.54432],[112.685384,28.525407],[112.700428,28.519699],[112.714542,28.510621],[112.731664,28.507414],[112.746872,28.510458],[112.753874,28.518014],[112.757704,28.529755],[112.772693,28.546385],[112.796435,28.558503],[112.808798,28.559046],[112.788831,28.535027],[112.792058,28.523015],[112.808579,28.519319],[112.815581,28.527798],[112.822419,28.528396],[112.822529,28.512796],[112.845341,28.510621],[112.852617,28.512524],[112.872365,28.500618],[112.87149,28.519156],[112.891293,28.524754],[112.898733,28.517525],[112.921271,28.520297],[112.939816,28.508501],[112.965637,28.521167],[112.978656,28.52345],[112.974882,28.506979],[112.977726,28.498552],[112.960768,28.477075],[112.974006,28.465274],[112.99184,28.460923],[113.019028,28.47305],[113.027781,28.483219],[113.041403,28.484905],[113.063722,28.505294],[113.067935,28.519264],[113.07904,28.521873],[113.085002,28.508229],[113.0966,28.50812],[113.111917,28.499313],[113.130462,28.498498],[113.132103,28.490777],[113.128657,28.473975],[113.154313,28.470875],[113.169904,28.480446],[113.171381,28.492408],[113.18544,28.503391],[113.183088,28.510132],[113.185933,28.529211],[113.19474,28.541549],[113.19392,28.55008],[113.200758,28.555569],[113.194685,28.56649],[113.186097,28.567957],[113.189653,28.580181],[113.183252,28.596858],[113.195014,28.603648],[113.215473,28.620809],[113.212957,28.632647],[113.216458,28.638077],[113.234729,28.646438],[113.233635,28.661639],[113.243592,28.656156],[113.245944,28.640629],[113.251797,28.629715],[113.258854,28.627597],[113.27253,28.631398],[113.283635,28.638728],[113.310003,28.633136],[113.316513,28.628629],[113.320342,28.615759],[113.332213,28.618963],[113.349226,28.616573],[113.358581,28.622384],[113.360113,28.631453],[113.375813,28.643343],[113.384785,28.644538],[113.411809,28.632267],[113.4245,28.636068],[113.42078,28.609513],[113.414599,28.590883],[113.424336,28.578715],[113.430408,28.590286],[113.446492,28.593925],[113.454369,28.591046],[113.462739,28.596532],[113.474391,28.579801],[113.491349,28.570457],[113.500923,28.559155],[113.507378,28.536929],[113.51542,28.537038],[113.52822,28.528287],[113.547258,28.52508],[113.558035,28.533179],[113.575923,28.536386],[113.598133,28.51198],[113.615311,28.495725],[113.635825,28.482621],[113.64972,28.470005],[113.661427,28.45445],[113.657324,28.447706],[113.676963,28.442049],[113.704643,28.422192],[113.717773,28.424042],[113.729698,28.441287],[113.7617,28.451405],[113.7739,28.451024],[113.78495,28.457551],[113.806394,28.458638],[113.817554,28.466851],[113.824885,28.484089],[113.832981,28.489037],[113.832434,28.498878],[113.844414,28.523885],[113.858473,28.532255],[113.876471,28.518884],[113.889546,28.515622],[113.903222,28.528613],[113.917883,28.525461],[113.935443,28.531385],[113.941242,28.526385],[113.950979,28.53644],[113.962467,28.542309],[113.975979,28.564752],[113.995782,28.564915],[114.013561,28.554591],[114.015038,28.545679],[114.025432,28.542798],[114.040038,28.551004],[114.051745,28.544374],[114.065968,28.547689],[114.073901,28.555188],[114.086756,28.555895],[114.094688,28.562252],[114.094798,28.570076],[114.104535,28.583115],[114.118704,28.586863],[114.132107,28.607178],[114.12226,28.623253],[114.132818,28.641823],[114.12959,28.645895],[114.133091,28.671681],[114.123299,28.68221],[114.122369,28.689483],[114.128222,28.701041],[114.139984,28.702941],[114.149339,28.723775],[114.146603,28.734571],[114.151964,28.742436],[114.157107,28.761473],[114.15377,28.770747],[114.137468,28.779748],[114.140258,28.789182],[114.151964,28.801597],[114.153934,28.82935],[114.149503,28.83504],[114.142938,28.827995],[114.134459,28.826965],[114.124885,28.843277],[114.097478,28.83374],[114.080411,28.833252],[114.069196,28.847016],[114.059677,28.849726],[114.062303,28.856716],[114.056395,28.870531],[114.066844,28.884507],[114.06017,28.902381],[114.048682,28.908122],[114.040585,28.906551],[114.028332,28.89117],[114.023955,28.907689],[114.014601,28.91787],[114.00541,28.917815],[114.003933,28.926479],[114.009623,28.94532],[114.008857,28.955389],[113.985115,28.948839],[113.973791,28.937903],[113.966734,28.944292],[113.955684,28.978392],[113.961482,28.996953],[113.94622,29.017946],[113.948189,29.031577],[113.946001,29.044775],[113.933364,29.045965],[113.914874,29.036283],[113.911701,29.030766],[113.895344,29.029468],[113.876581,29.03823],[113.876088,29.056997],[113.881832,29.065433],[113.868648,29.065811],[113.85262,29.058674],[113.831558,29.069326],[113.837029,29.08679],[113.827182,29.102467],[113.815968,29.105331],[113.775595,29.095223],[113.76646,29.089222],[113.765475,29.079924],[113.749447,29.060945],[113.740147,29.058728],[113.734184,29.06446],[113.726252,29.083654],[113.732105,29.105061],[113.722751,29.104737],[113.709512,29.092628],[113.706339,29.082897],[113.696328,29.077653],[113.685606,29.082302],[113.690584,29.11452],[113.68298,29.132192],[113.672586,29.136191],[113.667991,29.143755],[113.670344,29.154345],[113.662028,29.167257],[113.67193,29.179465],[113.6803,29.182435],[113.693812,29.201824],[113.690092,29.230818],[113.681886,29.23395],[113.665803,29.232222],[113.660059,29.224502],[113.646438,29.231412],[113.635223,29.25063],[113.609621,29.251547],[113.606886,29.267631],[113.613615,29.272433],[113.633035,29.318401],[113.643429,29.326869],[113.661044,29.333449],[113.665967,29.347039],[113.660934,29.368229],[113.670015,29.384564],[113.691897,29.392703],[113.710716,29.393566],[113.723243,29.389631],[113.731886,29.394805],[113.741733,29.41286],[113.736974,29.426278],[113.754479,29.441418],[113.754917,29.447559],[113.73774,29.470345],[113.724775,29.473307],[113.707269,29.485747],[113.68856,29.509655],[113.677619,29.513531],[113.673024,29.510354],[113.643374,29.507824],[113.635332,29.510031],[113.631394,29.52349],[113.654479,29.530865],[113.657269,29.537001],[113.669031,29.535709],[113.680847,29.539369],[113.681284,29.548465],[113.691241,29.547765],[113.70158,29.555515],[113.709293,29.554331],[113.713943,29.570582],[113.735661,29.5765],[113.741022,29.591564],[113.728549,29.598234],[113.722915,29.610821],[113.708418,29.608992],[113.704096,29.618673],[113.702783,29.634752],[113.688068,29.640828],[113.679479,29.635129],[113.671602,29.640774],[113.680354,29.641366],[113.667116,29.664269],[113.668702,29.671311],[113.662357,29.684533],[113.652674,29.683565],[113.637849,29.669859],[113.599774,29.670934],[113.575595,29.674912],[113.547148,29.675396],[113.538396,29.683673],[113.540146,29.699634],[113.558472,29.727036],[113.561153,29.73907],[113.555901,29.763669],[113.550978,29.76818],[113.560004,29.783161],[113.567827,29.786544],[113.561919,29.79159],[113.569413,29.804582],[113.57565,29.807964],[113.565256,29.81258],[113.577236,29.818538],[113.580901,29.835659],[113.571547,29.848913],[113.517881,29.812419],[113.4931,29.786597],[113.456667,29.759211],[113.438614,29.751638],[113.401798,29.724082],[113.377345,29.703181],[113.326196,29.647818],[113.298078,29.613833],[113.27729,29.595114],[113.272257,29.580858],[113.256611,29.566492],[113.222421,29.543729],[113.182103,29.485586],[113.155736,29.457148],[113.145342,29.449337],[113.132541,29.457364],[113.113558,29.456663],[113.099992,29.45968],[113.102672,29.443034],[113.090582,29.43075],[113.080735,29.434091],[113.075976,29.450199],[113.072803,29.482785],[113.064707,29.512454],[113.05765,29.522467],[113.0344,29.523598],[113.018755,29.516169],[112.990308,29.497971],[112.969192,29.469052],[112.950155,29.472876],[112.943317,29.493879],[112.937409,29.527097],[112.92707,29.556161],[112.924006,29.571658],[112.911862,29.606841],[112.912026,29.616145],[112.945396,29.647495],[112.965418,29.658947],[112.976195,29.672117],[113.004969,29.693777],[113.015254,29.710918],[113.025046,29.748631],[113.030899,29.762272],[113.02614,29.772798],[113.011807,29.767696],[113.003492,29.755237],[112.979258,29.737619],[112.957814,29.694153],[112.944794,29.682759],[112.933197,29.683243],[112.927015,29.692164],[112.927343,29.708393],[112.932048,29.739929],[112.929914,29.755344],[112.922748,29.76732],[112.899717,29.781711],[112.889433,29.785738],[112.870013,29.786007],[112.843645,29.771079],[112.815417,29.746643],[112.793918,29.7359],[112.806117,29.726069],[112.791785,29.713712],[112.795176,29.697646],[112.784837,29.693562],[112.788557,29.679911],[112.765964,29.675073],[112.763831,29.664806],[112.735439,29.646259],[112.730242,29.654216],[112.718973,29.652549],[112.71394,29.637548],[112.698677,29.619964],[112.699005,29.610767],[112.688995,29.602376],[112.68697,29.592747],[112.678984,29.58952],[112.673404,29.600009],[112.660275,29.599525],[112.650646,29.592478],[112.640198,29.607916],[112.624716,29.616522],[112.607758,29.608024],[112.607156,29.612273],[112.589651,29.620233],[112.5722,29.62389],[112.565143,29.62077],[112.540799,29.600816],[112.535219,29.599687],[112.505241,29.610982],[112.499114,29.629267],[112.481992,29.633462],[112.465854,29.631418],[112.456663,29.635935],[112.43965,29.633784],[112.427287,29.616952],[112.424825,29.598665],[112.407812,29.577845],[112.402177,29.576393],[112.397254,29.564125],[112.391838,29.567837],[112.370284,29.542222],[112.332046,29.544751],[112.320066,29.540553],[112.315744,29.524298]]],[[[112.929367,29.774086],[112.937901,29.766569],[112.939597,29.779993],[112.933744,29.789282],[112.919685,29.799697],[112.901194,29.803186],[112.886533,29.796422],[112.898733,29.793255],[112.929367,29.774086]]]]}},{"type":"Feature","properties":{"adcode":430700,"name":"常德市","center":[111.691347,29.040225],"centroid":[111.524565,29.299744],"childrenNum":9,"level":"city","parent":{"adcode":430000},"subFeatureIndex":6,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.283413,29.495225],[112.278216,29.50987],[112.281991,29.537109],[112.291564,29.54276],[112.302724,29.566008],[112.303216,29.585485],[112.295175,29.59533],[112.282046,29.596244],[112.251958,29.61152],[112.241728,29.610122],[112.234398,29.615823],[112.228271,29.62959],[112.2321,29.640559],[112.24419,29.659592],[112.236094,29.658463],[112.218205,29.64513],[112.220448,29.637226],[112.206717,29.635075],[112.199441,29.629859],[112.198293,29.617436],[112.18582,29.634322],[112.184015,29.648033],[112.178161,29.656635],[112.16454,29.662333],[112.150535,29.654538],[112.144026,29.657441],[112.124988,29.657011],[112.118478,29.66271],[112.111531,29.659646],[112.107483,29.671149],[112.091892,29.685661],[112.087461,29.681738],[112.065469,29.681792],[112.059944,29.695765],[112.064485,29.710327],[112.074003,29.717097],[112.073292,29.734718],[112.07641,29.743474],[112.065907,29.754646],[112.06443,29.769844],[112.054693,29.758835],[112.064704,29.745945],[112.050754,29.749168],[112.045557,29.758406],[112.031224,29.762272],[112.00978,29.77806],[111.99129,29.782785],[111.987078,29.793953],[111.977067,29.790517],[111.954856,29.796744],[111.951574,29.814244],[111.96525,29.831151],[111.960929,29.83743],[111.936202,29.832492],[111.919298,29.84242],[111.914594,29.852669],[111.880622,29.860019],[111.86339,29.856532],[111.849987,29.870964],[111.839648,29.876811],[111.828981,29.873968],[111.830677,29.887914],[111.810326,29.89376],[111.809615,29.902288],[111.794626,29.90572],[111.757427,29.920091],[111.736475,29.919608],[111.724878,29.915533],[111.718915,29.90084],[111.705403,29.896764],[111.705074,29.89006],[111.68177,29.884535],[111.66235,29.885822],[111.651464,29.892956],[111.621704,29.89494],[111.597962,29.889362],[111.584013,29.898051],[111.577886,29.89435],[111.56596,29.898534],[111.551409,29.895208],[111.546102,29.904218],[111.538444,29.904647],[111.527448,29.925667],[111.514483,29.927704],[111.483465,29.91816],[111.474931,29.919072],[111.463553,29.9269],[111.445555,29.924702],[111.437787,29.93001],[111.419953,29.916391],[111.405347,29.911136],[111.39085,29.914836],[111.382809,29.92363],[111.390139,29.937515],[111.378323,29.937247],[111.383301,29.945878],[111.37515,29.954401],[111.351682,29.951399],[111.347141,29.941965],[111.342108,29.945342],[111.335762,29.963352],[111.322141,29.978304],[111.318749,29.971873],[111.29725,29.9902],[111.297688,30.004612],[111.286091,30.011309],[111.266999,30.011416],[111.25562,30.034555],[111.242217,30.040393],[111.199712,30.040982],[111.179744,30.044249],[111.178979,30.0405],[111.106659,30.047729],[111.078924,30.049122],[111.031549,30.048854],[111.005838,30.054476],[110.998398,30.059349],[110.970936,30.058974],[110.929908,30.063418],[110.923015,30.075732],[110.925203,30.094521],[110.924273,30.111327],[110.897905,30.109828],[110.873945,30.113414],[110.858026,30.118551],[110.853048,30.125721],[110.836089,30.122671],[110.814371,30.125989],[110.802993,30.11443],[110.788332,30.119996],[110.769568,30.12021],[110.746373,30.112611],[110.753102,30.101319],[110.748999,30.088312],[110.756001,30.083013],[110.75529,30.052816],[110.742106,30.041785],[110.722358,30.039643],[110.712347,30.033163],[110.694075,30.041517],[110.68215,30.053834],[110.686362,30.059135],[110.659611,30.071235],[110.650968,30.077606],[110.62657,30.063793],[110.597631,30.054423],[110.576405,30.059081],[110.564753,30.054369],[110.531329,30.061116],[110.508189,30.050407],[110.501022,30.055226],[110.495989,30.040232],[110.499819,30.02695],[110.491558,30.019719],[110.504687,30.008791],[110.520114,30.001773],[110.547248,29.999576],[110.557204,29.986931],[110.551077,29.979697],[110.535267,29.975089],[110.517324,29.961369],[110.508079,29.944109],[110.506766,29.919018],[110.498068,29.910063],[110.50786,29.908937],[110.515519,29.902502],[110.526952,29.904647],[110.537839,29.896764],[110.535705,29.880351],[110.547631,29.863399],[110.549983,29.848001],[110.575366,29.844835],[110.579907,29.835873],[110.597795,29.840005],[110.606493,29.837],[110.618419,29.826589],[110.62925,29.805119],[110.629688,29.798409],[110.640027,29.782463],[110.641723,29.770435],[110.631821,29.757761],[110.634666,29.749597],[110.652992,29.744656],[110.661088,29.735793],[110.66076,29.719622],[110.672576,29.706835],[110.699327,29.699688],[110.721428,29.687489],[110.731876,29.690283],[110.747686,29.70705],[110.762839,29.715593],[110.764973,29.709897],[110.766559,29.680502],[110.78133,29.683243],[110.814481,29.680556],[110.854415,29.696249],[110.874984,29.684909],[110.890356,29.686898],[110.904689,29.684479],[110.927391,29.676578],[110.927938,29.671633],[110.94249,29.668032],[110.965083,29.677492],[110.98609,29.675933],[110.998562,29.667171],[111.020444,29.669967],[111.032096,29.669053],[111.039208,29.653302],[111.030729,29.645398],[111.049711,29.636957],[111.053322,29.619049],[111.077009,29.619318],[111.110652,29.613779],[111.124383,29.607755],[111.133847,29.608992],[111.148234,29.604743],[111.151298,29.596836],[111.158957,29.59463],[111.173453,29.600547],[111.213278,29.599203],[111.224821,29.60286],[111.252283,29.600547],[111.257316,29.596997],[111.254581,29.587045],[111.267108,29.579782],[111.273782,29.580858],[111.286911,29.555246],[111.294679,29.55686],[111.303213,29.549703],[111.300916,29.5384],[111.319242,29.533341],[111.320445,29.520852],[111.328377,29.511216],[111.337513,29.493448],[111.329417,29.486717],[111.3176,29.464366],[111.32969,29.443681],[111.311255,29.419273],[111.294843,29.412914],[111.291725,29.407848],[111.300697,29.395991],[111.2862,29.389523],[111.26946,29.386558],[111.25923,29.380629],[111.234723,29.33264],[111.245554,29.321044],[111.252009,29.302757],[111.25097,29.29461],[111.234887,29.273513],[111.222141,29.265688],[111.220171,29.25743],[111.232753,29.239888],[111.23144,29.231736],[111.22318,29.223692],[111.20644,29.217537],[111.192928,29.218077],[111.177884,29.223422],[111.165685,29.236163],[111.153869,29.237728],[111.121812,29.218563],[111.092819,29.204146],[111.080783,29.188376],[111.071867,29.16985],[111.043475,29.139271],[111.025805,29.137704],[111.022304,29.120465],[111.00168,29.117925],[110.985324,29.111007],[110.983792,29.118952],[110.974711,29.119222],[110.958464,29.133867],[110.941615,29.138082],[110.945772,29.130949],[110.929744,29.130841],[110.925367,29.118681],[110.913113,29.111331],[110.88959,29.109872],[110.886636,29.100683],[110.876297,29.09771],[110.868693,29.108088],[110.852555,29.09425],[110.852172,29.08679],[110.86098,29.073057],[110.862676,29.064027],[110.873179,29.066406],[110.88215,29.054726],[110.894568,29.049588],[110.909722,29.048723],[110.9147,29.035742],[110.919076,29.022544],[110.943529,29.011778],[110.955291,29.002851],[110.949,28.997007],[110.962019,28.99836],[110.970717,28.992733],[110.98702,28.988404],[110.982588,28.976823],[110.974602,28.976769],[110.965356,28.965186],[110.954908,28.960748],[110.956768,28.951059],[110.950148,28.937308],[110.96284,28.917924],[110.9583,28.906389],[110.972687,28.904223],[110.9897,28.89729],[110.992435,28.888245],[111.002063,28.875732],[111.013114,28.851297],[111.031494,28.838075],[111.040302,28.822683],[111.048453,28.825393],[111.064427,28.823442],[111.072742,28.809837],[111.079361,28.805717],[111.078759,28.793682],[111.086309,28.785387],[111.102228,28.777959],[111.098453,28.770747],[111.115138,28.743358],[111.102556,28.734028],[111.105455,28.727085],[111.09632,28.700499],[111.081166,28.69187],[111.06574,28.696592],[111.051571,28.692088],[111.046648,28.684707],[111.06191,28.668587],[111.064646,28.659739],[111.051681,28.652301],[111.015247,28.649858],[110.995335,28.63786],[110.991724,28.619995],[110.9554,28.61918],[110.946155,28.622004],[110.934722,28.617551],[110.945936,28.601421],[110.943857,28.591644],[110.950696,28.568229],[110.956166,28.568827],[110.978376,28.585505],[110.989262,28.587841],[111.005729,28.583604],[111.010105,28.587352],[111.008026,28.598162],[111.015794,28.599302],[111.020171,28.589742],[111.036691,28.596858],[111.049766,28.608156],[111.057425,28.607938],[111.055346,28.590177],[111.064481,28.582789],[111.054744,28.57062],[111.079306,28.53769],[111.075915,28.53019],[111.067545,28.530135],[111.049274,28.53682],[111.041888,28.535027],[111.029689,28.543668],[111.013168,28.545787],[111.002009,28.537146],[110.993146,28.521765],[110.981658,28.51198],[110.969897,28.512524],[110.959339,28.492245],[110.943803,28.478434],[110.929744,28.484796],[110.923453,28.473268],[110.905345,28.455103],[110.889207,28.447325],[110.88866,28.438948],[110.862129,28.418818],[110.860433,28.406032],[110.88226,28.408099],[110.889481,28.404889],[110.944623,28.42649],[110.96738,28.430353],[110.978704,28.439492],[111.001407,28.440145],[111.007753,28.44553],[111.020116,28.445639],[111.034831,28.454886],[111.050204,28.45891],[111.061692,28.451676],[111.09353,28.456952],[111.096867,28.463642],[111.109339,28.468156],[111.11667,28.464403],[111.126353,28.470549],[111.144952,28.473703],[111.147852,28.487841],[111.154361,28.496541],[111.152173,28.514318],[111.168639,28.517471],[111.175204,28.513883],[111.192217,28.518829],[111.198235,28.526548],[111.215193,28.536222],[111.228651,28.522471],[111.252611,28.531548],[111.281058,28.517905],[111.309176,28.520949],[111.315686,28.524428],[111.324165,28.518829],[111.333793,28.520134],[111.339209,28.527852],[111.34818,28.528722],[111.363388,28.539538],[111.373892,28.551819],[111.383192,28.55057],[111.396594,28.540788],[111.412294,28.547852],[111.431386,28.547418],[111.443367,28.557308],[111.46782,28.556927],[111.491452,28.571652],[111.494187,28.581268],[111.509341,28.585668],[111.518641,28.5955],[111.53921,28.609731],[111.567218,28.638783],[111.574494,28.639326],[111.605402,28.624936],[111.624385,28.618311],[111.636092,28.628466],[111.644954,28.623742],[111.662842,28.624665],[111.663663,28.607884],[111.67351,28.591426],[111.688389,28.589199],[111.702777,28.598976],[111.708904,28.594251],[111.723401,28.609839],[111.719079,28.636448],[111.728269,28.642529],[111.722525,28.645027],[111.730676,28.652193],[111.74211,28.651596],[111.751573,28.657622],[111.759068,28.653442],[111.768258,28.639054],[111.776191,28.634113],[111.787843,28.648718],[111.791344,28.643126],[111.8106,28.640955],[111.81618,28.626403],[111.828488,28.615759],[111.844025,28.616682],[111.850151,28.633353],[111.854747,28.636991],[111.873073,28.630964],[111.888062,28.6371],[111.901191,28.635959],[111.9106,28.643452],[111.918204,28.655396],[111.910163,28.664136],[111.910217,28.671464],[111.923237,28.676946],[111.951519,28.674395],[111.984123,28.663864],[111.979583,28.65621],[111.992001,28.657513],[111.998456,28.646764],[112.014047,28.640737],[112.034616,28.640032],[112.040743,28.65773],[112.025863,28.669292],[112.033412,28.673418],[112.070448,28.672332],[112.07827,28.655124],[112.086531,28.652681],[112.094354,28.641986],[112.107373,28.652301],[112.139759,28.649316],[112.149441,28.656427],[112.142931,28.662236],[112.158796,28.667447],[112.161476,28.675697],[112.169026,28.678303],[112.182757,28.66837],[112.199715,28.674069],[112.207975,28.691002],[112.215306,28.692576],[112.232046,28.707064],[112.231006,28.711839],[112.264923,28.719164],[112.283194,28.728441],[112.283413,28.776874],[112.299606,28.784845],[112.306389,28.800242],[112.304693,28.823009],[112.276466,28.84073],[112.256991,28.861483],[112.258632,28.900811],[112.26175,28.908122],[112.259562,28.922743],[112.257319,28.96773],[112.246871,28.980828],[112.247636,28.997062],[112.254037,29.04975],[112.241455,29.06792],[112.245284,29.100683],[112.235711,29.114412],[112.222855,29.118627],[112.211203,29.117276],[112.208194,29.126356],[112.187735,29.134516],[112.189978,29.145268],[112.201028,29.146025],[112.195776,29.160018],[112.20163,29.179248],[112.223895,29.19907],[112.236422,29.213163],[112.22849,29.216079],[112.22652,29.228443],[112.228763,29.251763],[112.223457,29.266659],[112.222199,29.287327],[112.213446,29.296121],[112.22663,29.294071],[112.234234,29.298657],[112.245284,29.292992],[112.258249,29.29229],[112.263665,29.298711],[112.251192,29.31894],[112.249387,29.328541],[112.252615,29.351946],[112.261696,29.375615],[112.28117,29.395129],[112.284179,29.403483],[112.2943,29.406124],[112.294464,29.428541],[112.300317,29.448206],[112.293534,29.45634],[112.291728,29.478262],[112.283413,29.495225]]]]}},{"type":"Feature","properties":{"adcode":430800,"name":"张家界市","center":[110.479921,29.127401],"centroid":[110.531625,29.390312],"childrenNum":4,"level":"city","parent":{"adcode":430000},"subFeatureIndex":7,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.390409,28.881149],[110.400201,28.89572],[110.423123,28.900594],[110.432805,28.890791],[110.449162,28.889816],[110.450913,28.882828],[110.468035,28.880228],[110.472138,28.887487],[110.481766,28.889437],[110.476569,28.898807],[110.4839,28.910776],[110.490191,28.911263],[110.524381,28.886132],[110.530782,28.874107],[110.543966,28.889328],[110.538987,28.908447],[110.521044,28.93276],[110.521919,28.938499],[110.533243,28.946132],[110.551077,28.953278],[110.553539,28.963346],[110.541777,28.982289],[110.558408,28.995438],[110.572576,29.000579],[110.593309,28.969354],[110.620716,28.965186],[110.635979,28.949705],[110.656986,28.935034],[110.666504,28.923501],[110.670498,28.91083],[110.678594,28.906172],[110.690684,28.908122],[110.690903,28.923988],[110.716942,28.913429],[110.730454,28.926154],[110.739371,28.924476],[110.76366,28.905847],[110.775695,28.906172],[110.788879,28.913808],[110.798069,28.935738],[110.798616,28.955227],[110.811417,28.955281],[110.8368,28.941855],[110.849163,28.946511],[110.851844,28.952033],[110.850258,28.968542],[110.839371,28.987754],[110.840465,28.99257],[110.860706,28.998955],[110.889153,28.992462],[110.898452,29.00112],[110.905126,28.995709],[110.915137,29.008532],[110.903102,29.0213],[110.903814,29.034769],[110.9147,29.035742],[110.909722,29.048723],[110.894568,29.049588],[110.88215,29.054726],[110.873179,29.066406],[110.862676,29.064027],[110.86098,29.073057],[110.852172,29.08679],[110.852555,29.09425],[110.868693,29.108088],[110.876297,29.09771],[110.886636,29.100683],[110.88959,29.109872],[110.913113,29.111331],[110.925367,29.118681],[110.929744,29.130841],[110.945772,29.130949],[110.941615,29.138082],[110.958464,29.133867],[110.974711,29.119222],[110.983792,29.118952],[110.985324,29.111007],[111.00168,29.117925],[111.022304,29.120465],[111.025805,29.137704],[111.043475,29.139271],[111.071867,29.16985],[111.080783,29.188376],[111.092819,29.204146],[111.121812,29.218563],[111.153869,29.237728],[111.165685,29.236163],[111.177884,29.223422],[111.192928,29.218077],[111.20644,29.217537],[111.22318,29.223692],[111.23144,29.231736],[111.232753,29.239888],[111.220171,29.25743],[111.222141,29.265688],[111.234887,29.273513],[111.25097,29.29461],[111.252009,29.302757],[111.245554,29.321044],[111.234723,29.33264],[111.25923,29.380629],[111.26946,29.386558],[111.2862,29.389523],[111.300697,29.395991],[111.291725,29.407848],[111.294843,29.412914],[111.311255,29.419273],[111.32969,29.443681],[111.3176,29.464366],[111.329417,29.486717],[111.337513,29.493448],[111.328377,29.511216],[111.320445,29.520852],[111.319242,29.533341],[111.300916,29.5384],[111.303213,29.549703],[111.294679,29.55686],[111.286911,29.555246],[111.273782,29.580858],[111.267108,29.579782],[111.254581,29.587045],[111.257316,29.596997],[111.252283,29.600547],[111.224821,29.60286],[111.213278,29.599203],[111.173453,29.600547],[111.158957,29.59463],[111.151298,29.596836],[111.148234,29.604743],[111.133847,29.608992],[111.124383,29.607755],[111.110652,29.613779],[111.077009,29.619318],[111.053322,29.619049],[111.049711,29.636957],[111.030729,29.645398],[111.039208,29.653302],[111.032096,29.669053],[111.020444,29.669967],[110.998562,29.667171],[110.98609,29.675933],[110.965083,29.677492],[110.94249,29.668032],[110.927938,29.671633],[110.927391,29.676578],[110.904689,29.684479],[110.890356,29.686898],[110.874984,29.684909],[110.854415,29.696249],[110.814481,29.680556],[110.78133,29.683243],[110.766559,29.680502],[110.764973,29.709897],[110.762839,29.715593],[110.747686,29.70705],[110.731876,29.690283],[110.721428,29.687489],[110.699327,29.699688],[110.672576,29.706835],[110.66076,29.719622],[110.661088,29.735793],[110.652992,29.744656],[110.634666,29.749597],[110.631821,29.757761],[110.62378,29.755935],[110.614425,29.747127],[110.602062,29.742024],[110.574545,29.723437],[110.562839,29.712584],[110.525256,29.693508],[110.507095,29.692111],[110.493856,29.700978],[110.465191,29.713068],[110.449381,29.690821],[110.447029,29.664645],[110.416175,29.661742],[110.413878,29.654646],[110.372575,29.633515],[110.355836,29.638839],[110.353101,29.653839],[110.339479,29.668139],[110.321262,29.665021],[110.315682,29.661151],[110.299873,29.662387],[110.29205,29.671848],[110.289917,29.69641],[110.27821,29.709091],[110.260376,29.719515],[110.24577,29.732247],[110.219894,29.746643],[110.188166,29.754485],[110.160813,29.753787],[110.144894,29.771133],[110.131054,29.781067],[110.113494,29.789658],[110.06415,29.782839],[110.024161,29.76963],[109.990846,29.772207],[109.976021,29.768126],[109.969729,29.771777],[109.949708,29.772959],[109.947136,29.778865],[109.940298,29.77414],[109.907913,29.764206],[109.896863,29.770435],[109.888438,29.76587],[109.869784,29.774677],[109.836633,29.769844],[109.820878,29.769898],[109.791884,29.7634],[109.771862,29.75137],[109.769291,29.744495],[109.755943,29.743259],[109.753536,29.734128],[109.76858,29.727842],[109.771589,29.720966],[109.76021,29.71339],[109.766173,29.702912],[109.760101,29.689101],[109.73707,29.678406],[109.714969,29.673353],[109.718416,29.658624],[109.71579,29.649485],[109.701238,29.636312],[109.710866,29.629644],[109.715571,29.613133],[109.72695,29.607863],[109.745713,29.615339],[109.761687,29.615177],[109.769565,29.606518],[109.764915,29.596136],[109.768525,29.587314],[109.782366,29.576608],[109.760101,29.561649],[109.74916,29.549487],[109.738766,29.547604],[109.734663,29.540984],[109.740954,29.534256],[109.752934,29.509062],[109.76579,29.500017],[109.769455,29.491779],[109.778755,29.486878],[109.779357,29.478046],[109.788383,29.463935],[109.801895,29.448852],[109.808241,29.427086],[109.795276,29.417117],[109.79451,29.411675],[109.821206,29.388661],[109.828919,29.373297],[109.908405,29.441741],[109.925637,29.444435],[109.935867,29.434414],[109.945276,29.398417],[109.952662,29.383486],[109.945167,29.369901],[109.954795,29.358147],[109.960375,29.341269],[109.952935,29.333827],[109.936141,29.325143],[109.951294,29.318077],[109.975528,29.299142],[110.001568,29.29542],[110.016338,29.288298],[110.049216,29.314571],[110.068417,29.323795],[110.097192,29.308853],[110.112564,29.289701],[110.113548,29.279017],[110.103537,29.253436],[110.082859,29.251223],[110.080616,29.2326],[110.073176,29.225636],[110.070058,29.211867],[110.084828,29.184434],[110.090518,29.167311],[110.089041,29.151266],[110.099872,29.139595],[110.119128,29.141216],[110.128428,29.136407],[110.140408,29.14543],[110.158187,29.165204],[110.164861,29.165528],[110.179085,29.153967],[110.189643,29.162827],[110.203921,29.161044],[110.205562,29.151968],[110.215901,29.136083],[110.223997,29.136461],[110.216722,29.129112],[110.238986,29.122248],[110.261634,29.1196],[110.264041,29.110142],[110.250529,29.093655],[110.249654,29.076896],[110.261962,29.069542],[110.273505,29.074409],[110.284446,29.085438],[110.304194,29.091331],[110.299599,29.057159],[110.305289,29.038609],[110.313987,29.035905],[110.323122,29.041746],[110.340354,29.041313],[110.341613,29.02725],[110.347357,29.019406],[110.346208,29.011129],[110.327991,28.983858],[110.33193,28.981315],[110.318965,28.973143],[110.319184,28.967297],[110.306492,28.958258],[110.308133,28.944292],[110.314588,28.938336],[110.331,28.941152],[110.361087,28.927454],[110.364807,28.907959],[110.358735,28.891224],[110.384665,28.885428],[110.390409,28.881149]]]]}},{"type":"Feature","properties":{"adcode":430900,"name":"益阳市","center":[112.355042,28.570066],"centroid":[111.958046,28.573867],"childrenNum":6,"level":"city","parent":{"adcode":430000},"subFeatureIndex":8,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.685384,28.525407],[112.688283,28.54432],[112.701741,28.552417],[112.726522,28.557199],[112.736095,28.568229],[112.726194,28.581702],[112.716456,28.579203],[112.713229,28.587189],[112.717496,28.596206],[112.705351,28.599574],[112.684016,28.596369],[112.675154,28.581214],[112.668371,28.584256],[112.658688,28.580507],[112.648841,28.564263],[112.635439,28.559046],[112.629366,28.5472],[112.609727,28.540788],[112.591948,28.542962],[112.582539,28.556873],[112.562462,28.563556],[112.563721,28.570946],[112.574388,28.585125],[112.582813,28.590123],[112.590143,28.601692],[112.585001,28.620918],[112.588721,28.62738],[112.580515,28.629715],[112.57406,28.623796],[112.563666,28.629389],[112.552561,28.644104],[112.544136,28.639434],[112.533797,28.640412],[112.510602,28.654799],[112.521106,28.665493],[112.525318,28.678357],[112.526412,28.702561],[112.534563,28.70956],[112.548239,28.712328],[112.555843,28.719652],[112.552233,28.72958],[112.569082,28.731641],[112.58057,28.73967],[112.603764,28.746884],[112.606117,28.758002],[112.617495,28.770042],[112.619137,28.778555],[112.641784,28.789453],[112.671708,28.791568],[112.672966,28.811517],[112.664924,28.821057],[112.659837,28.840839],[112.668371,28.85043],[112.677452,28.871235],[112.685165,28.879741],[112.722911,28.883478],[112.773185,28.90276],[112.784181,28.911967],[112.797474,28.9137],[112.811588,28.921552],[112.83812,28.929295],[112.847967,28.935521],[112.87242,28.962967],[112.876085,28.984075],[112.891402,28.999388],[112.927945,29.023031],[112.9344,29.037311],[112.949389,29.060783],[112.93905,29.065541],[112.937737,29.078139],[112.92707,29.109061],[112.924663,29.149429],[112.901085,29.154615],[112.88161,29.162773],[112.812901,29.1524],[112.798513,29.159802],[112.813448,29.178654],[112.810384,29.185514],[112.793864,29.190915],[112.775592,29.176602],[112.75661,29.169958],[112.741949,29.168283],[112.724553,29.177628],[112.715855,29.18735],[112.711259,29.185352],[112.693207,29.192589],[112.68243,29.192265],[112.677561,29.205388],[112.680953,29.214027],[112.676358,29.224718],[112.681664,29.230441],[112.679093,29.2448],[112.693699,29.253976],[112.682813,29.269573],[112.683305,29.27497],[112.699881,29.287381],[112.689268,29.295743],[112.680789,29.294988],[112.673622,29.306264],[112.66476,29.300383],[112.652561,29.321421],[112.634454,29.335984],[112.611806,29.333287],[112.590417,29.317861],[112.579421,29.303674],[112.560219,29.304591],[112.547364,29.301786],[112.532429,29.308907],[112.502068,29.312198],[112.496981,29.317052],[112.490963,29.337602],[112.485766,29.342941],[112.464267,29.35351],[112.439924,29.360627],[112.423075,29.371734],[112.392057,29.396476],[112.386641,29.406016],[112.388829,29.420997],[112.386149,29.426871],[112.366783,29.442549],[112.366182,29.458441],[112.350974,29.453108],[112.342002,29.444435],[112.328271,29.450091],[112.324442,29.480416],[112.331116,29.51057],[112.320066,29.516007],[112.315744,29.524298],[112.297691,29.516815],[112.290744,29.516923],[112.283413,29.495225],[112.291728,29.478262],[112.293534,29.45634],[112.300317,29.448206],[112.294464,29.428541],[112.2943,29.406124],[112.284179,29.403483],[112.28117,29.395129],[112.261696,29.375615],[112.252615,29.351946],[112.249387,29.328541],[112.251192,29.31894],[112.263665,29.298711],[112.258249,29.29229],[112.245284,29.292992],[112.234234,29.298657],[112.22663,29.294071],[112.213446,29.296121],[112.222199,29.287327],[112.223457,29.266659],[112.228763,29.251763],[112.22652,29.228443],[112.22849,29.216079],[112.236422,29.213163],[112.223895,29.19907],[112.20163,29.179248],[112.195776,29.160018],[112.201028,29.146025],[112.189978,29.145268],[112.187735,29.134516],[112.208194,29.126356],[112.211203,29.117276],[112.222855,29.118627],[112.235711,29.114412],[112.245284,29.100683],[112.241455,29.06792],[112.254037,29.04975],[112.247636,28.997062],[112.246871,28.980828],[112.257319,28.96773],[112.259562,28.922743],[112.26175,28.908122],[112.258632,28.900811],[112.256991,28.861483],[112.276466,28.84073],[112.304693,28.823009],[112.306389,28.800242],[112.299606,28.784845],[112.283413,28.776874],[112.283194,28.728441],[112.264923,28.719164],[112.231006,28.711839],[112.232046,28.707064],[112.215306,28.692576],[112.207975,28.691002],[112.199715,28.674069],[112.182757,28.66837],[112.169026,28.678303],[112.161476,28.675697],[112.158796,28.667447],[112.142931,28.662236],[112.149441,28.656427],[112.139759,28.649316],[112.107373,28.652301],[112.094354,28.641986],[112.086531,28.652681],[112.07827,28.655124],[112.070448,28.672332],[112.033412,28.673418],[112.025863,28.669292],[112.040743,28.65773],[112.034616,28.640032],[112.014047,28.640737],[111.998456,28.646764],[111.992001,28.657513],[111.979583,28.65621],[111.984123,28.663864],[111.951519,28.674395],[111.923237,28.676946],[111.910217,28.671464],[111.910163,28.664136],[111.918204,28.655396],[111.9106,28.643452],[111.901191,28.635959],[111.888062,28.6371],[111.873073,28.630964],[111.854747,28.636991],[111.850151,28.633353],[111.844025,28.616682],[111.828488,28.615759],[111.81618,28.626403],[111.8106,28.640955],[111.791344,28.643126],[111.787843,28.648718],[111.776191,28.634113],[111.768258,28.639054],[111.759068,28.653442],[111.751573,28.657622],[111.74211,28.651596],[111.730676,28.652193],[111.722525,28.645027],[111.728269,28.642529],[111.719079,28.636448],[111.723401,28.609839],[111.708904,28.594251],[111.702777,28.598976],[111.688389,28.589199],[111.67351,28.591426],[111.663663,28.607884],[111.662842,28.624665],[111.644954,28.623742],[111.636092,28.628466],[111.624385,28.618311],[111.605402,28.624936],[111.574494,28.639326],[111.567218,28.638783],[111.53921,28.609731],[111.518641,28.5955],[111.509341,28.585668],[111.494187,28.581268],[111.491452,28.571652],[111.46782,28.556927],[111.443367,28.557308],[111.431386,28.547418],[111.412294,28.547852],[111.396594,28.540788],[111.383192,28.55057],[111.373892,28.551819],[111.363388,28.539538],[111.34818,28.528722],[111.339209,28.527852],[111.333793,28.520134],[111.324165,28.518829],[111.315686,28.524428],[111.309176,28.520949],[111.281058,28.517905],[111.252611,28.531548],[111.228651,28.522471],[111.215193,28.536222],[111.198235,28.526548],[111.192217,28.518829],[111.175204,28.513883],[111.168639,28.517471],[111.152173,28.514318],[111.154361,28.496541],[111.147852,28.487841],[111.144952,28.473703],[111.126353,28.470549],[111.11667,28.464403],[111.109339,28.468156],[111.096867,28.463642],[111.09353,28.456952],[111.061692,28.451676],[111.050204,28.45891],[111.034831,28.454886],[111.020116,28.445639],[111.007753,28.44553],[111.001407,28.440145],[110.978704,28.439492],[110.96738,28.430353],[110.944623,28.42649],[110.889481,28.404889],[110.88226,28.408099],[110.860433,28.406032],[110.853923,28.398468],[110.83587,28.393896],[110.832752,28.380508],[110.825914,28.37169],[110.793966,28.354379],[110.753266,28.338698],[110.741067,28.325466],[110.733189,28.311361],[110.7211,28.300794],[110.739535,28.281619],[110.74971,28.280911],[110.774601,28.27312],[110.783354,28.278241],[110.793036,28.275898],[110.802719,28.264348],[110.806275,28.253013],[110.787839,28.231268],[110.79982,28.223201],[110.804579,28.213225],[110.824601,28.203794],[110.826789,28.209082],[110.840082,28.214643],[110.848069,28.213007],[110.84889,28.204721],[110.858518,28.205157],[110.860487,28.198614],[110.853266,28.188418],[110.849163,28.172277],[110.818638,28.13966],[110.833026,28.118874],[110.844349,28.116364],[110.823452,28.087441],[110.83319,28.087496],[110.858846,28.076361],[110.876352,28.081819],[110.896155,28.058784],[110.884065,28.050977],[110.86645,28.025477],[110.866177,28.013735],[110.878157,28.01308],[110.88959,28.000954],[110.907698,27.998223],[110.92203,28.000626],[110.92575,28.021326],[110.938059,28.018486],[110.942982,28.038364],[110.955728,28.050758],[110.953485,28.057091],[110.962676,28.058129],[110.970936,28.065826],[110.971319,28.054798],[110.992162,28.054034],[111.010488,28.044534],[111.022031,28.041531],[111.013223,28.028917],[111.022031,28.027497],[111.03505,28.033723],[111.04156,28.022309],[111.063223,28.007236],[111.070608,27.995273],[111.081987,27.995601],[111.097906,28.006799],[111.093803,28.02717],[111.118475,28.050158],[111.114208,28.064134],[111.123289,28.068774],[111.137895,28.085968],[111.140959,28.103431],[111.151571,28.122966],[111.160926,28.122857],[111.189537,28.154988],[111.186528,28.160606],[111.216014,28.159297],[111.225149,28.161479],[111.235653,28.154115],[111.257753,28.167532],[111.279034,28.191036],[111.285215,28.214806],[111.296047,28.225436],[111.314373,28.234211],[111.32597,28.226526],[111.337732,28.20592],[111.332097,28.195943],[111.341835,28.193162],[111.352064,28.199051],[111.382918,28.196324],[111.386911,28.17893],[111.398016,28.180021],[111.434833,28.208101],[111.448454,28.202867],[111.445336,28.189509],[111.450095,28.187382],[111.477448,28.199323],[111.483137,28.204176],[111.495719,28.189945],[111.485763,28.159515],[111.49096,28.153024],[111.481387,28.138351],[111.482645,28.120402],[111.499877,28.101412],[111.500424,28.092626],[111.510982,28.090279],[111.493312,28.074887],[111.49189,28.066863],[111.494789,28.037873],[111.501956,28.04164],[111.517875,28.030992],[111.524439,28.031211],[111.522032,28.044479],[111.506879,28.053324],[111.514702,28.06528],[111.527886,28.049393],[111.534013,28.054143],[111.543914,28.047537],[111.540687,28.035579],[111.543859,28.020398],[111.567547,28.032903],[111.575807,28.018869],[111.564264,28.018104],[111.551409,27.991886],[111.542054,27.994126],[111.529527,27.986587],[111.55026,27.974841],[111.583794,27.994454],[111.592766,28.006471],[111.599768,28.009693],[111.588991,28.018596],[111.589811,28.027115],[111.601682,28.034542],[111.621704,28.016083],[111.634286,28.015319],[111.651518,28.026241],[111.662788,28.024712],[111.651573,28.021163],[111.652284,28.015756],[111.662952,28.014227],[111.672853,28.036453],[111.68549,28.040493],[111.683466,28.0145],[111.691289,28.009912],[111.684888,28.002975],[111.688499,27.99063],[111.697689,27.994181],[111.706114,27.99063],[111.71514,27.993361],[111.726792,27.983474],[111.743368,27.994235],[111.747963,28.003904],[111.765633,28.006143],[111.773893,28.010676],[111.779418,28.007072],[111.778871,27.996639],[111.793094,27.989701],[111.796103,28.00516],[111.823401,28.022582],[111.838335,28.019961],[111.848346,28.028644],[111.858193,28.030938],[111.870173,28.026678],[111.891837,28.026951],[111.902613,28.021982],[111.913117,28.027989],[111.907537,28.041804],[111.911038,28.052287],[111.926246,28.065498],[111.914101,28.079363],[111.91525,28.082802],[111.899167,28.09983],[111.90885,28.116036],[111.93188,28.133332],[111.933248,28.168132],[111.941782,28.172277],[111.944736,28.186728],[111.961147,28.198124],[111.962132,28.208864],[111.986585,28.224182],[112.003489,28.224509],[112.003981,28.235029],[112.009671,28.244021],[112.033139,28.252468],[112.051684,28.25127],[112.080677,28.260806],[112.082264,28.267889],[112.093424,28.265001],[112.099058,28.270069],[112.11629,28.271703],[112.123128,28.266146],[112.137297,28.266636],[112.146214,28.254539],[112.169518,28.245602],[112.177997,28.235737],[112.195503,28.23323],[112.210109,28.239225],[112.223293,28.233939],[112.227286,28.221239],[112.237954,28.210445],[112.251685,28.2244],[112.255733,28.233448],[112.264431,28.235683],[112.280678,28.252632],[112.288282,28.254049],[112.294135,28.247073],[112.306444,28.261351],[112.322473,28.263258],[112.316674,28.282981],[112.332921,28.284397],[112.346761,28.274809],[112.356937,28.277369],[112.358632,28.283471],[112.349168,28.281837],[112.345284,28.289518],[112.352779,28.291261],[112.370339,28.284397],[112.377998,28.290063],[112.393753,28.290281],[112.404803,28.29867],[112.408468,28.294366],[112.422692,28.305587],[112.420066,28.312559],[112.429311,28.311143],[112.432976,28.317896],[112.438337,28.310652],[112.451248,28.317842],[112.466018,28.312886],[112.472965,28.317733],[112.486915,28.309236],[112.500974,28.311905],[112.505296,28.320728],[112.525974,28.325956],[112.534563,28.332],[112.535766,28.325466],[112.553928,28.318931],[112.560493,28.325411],[112.571379,28.324976],[112.564432,28.333144],[112.562462,28.344742],[112.575209,28.354596],[112.575427,28.369077],[112.580351,28.372887],[112.578436,28.382358],[112.584235,28.40244],[112.594355,28.40761],[112.594793,28.414629],[112.612134,28.424531],[112.624279,28.446074],[112.627288,28.468265],[112.639815,28.469352],[112.654421,28.484524],[112.651741,28.495671],[112.663229,28.501053],[112.672583,28.517525],[112.685384,28.525407]]]]}},{"type":"Feature","properties":{"adcode":431000,"name":"郴州市","center":[113.032067,25.793589],"centroid":[113.142071,25.813202],"childrenNum":11,"level":"city","parent":{"adcode":430000},"subFeatureIndex":9,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.364212,25.191725],[112.373731,25.177561],[112.393151,25.160148],[112.387407,25.152196],[112.399497,25.14066],[112.413337,25.141332],[112.426138,25.156284],[112.430077,25.17409],[112.442987,25.185623],[112.454858,25.17353],[112.45267,25.159868],[112.45825,25.152084],[112.477451,25.151413],[112.491018,25.144468],[112.502615,25.144636],[112.507703,25.13674],[112.537025,25.13422],[112.562681,25.12453],[112.596543,25.126266],[112.612736,25.133212],[112.624826,25.134108],[112.628218,25.140604],[112.648021,25.133604],[112.659782,25.132764],[112.669848,25.113047],[112.679749,25.10991],[112.695231,25.095513],[112.697255,25.089966],[112.715636,25.078368],[112.719192,25.048219],[112.715143,25.026023],[112.724881,25.010831],[112.741839,24.998609],[112.745505,24.981675],[112.742168,24.977469],[112.743152,24.960308],[112.750537,24.955372],[112.773459,24.949987],[112.784673,24.936637],[112.782211,24.922724],[112.786697,24.912401],[112.780734,24.897307],[112.788284,24.892369],[112.80382,24.890517],[112.843973,24.897363],[112.873514,24.89669],[112.877835,24.905668],[112.904367,24.921827],[112.924553,24.918853],[112.937354,24.92048],[112.941785,24.915936],[112.959236,24.923454],[112.966785,24.919302],[112.983634,24.920929],[112.994794,24.927381],[112.991676,24.938488],[113.011917,24.946117],[113.002781,24.957111],[113.00847,24.961934],[113.010002,24.977357],[113.002289,24.990871],[112.990527,24.995413],[112.992059,25.017951],[112.978437,25.026472],[112.979422,25.033927],[113.002289,25.057971],[113.002015,25.07114],[113.018427,25.083131],[113.004532,25.089182],[112.999608,25.103076],[112.991129,25.109462],[112.981939,25.125258],[112.967989,25.141612],[112.974335,25.168267],[112.991567,25.176777],[113.00858,25.190101],[113.030516,25.194468],[113.034455,25.201409],[113.029751,25.210533],[113.01777,25.211149],[112.999006,25.244055],[112.979915,25.245062],[112.972912,25.251161],[112.959564,25.254071],[112.951851,25.245734],[112.934072,25.250378],[112.933361,25.24316],[112.924006,25.248643],[112.896927,25.239299],[112.89173,25.246181],[112.868317,25.248811],[112.86591,25.259778],[112.873951,25.274324],[112.866457,25.276561],[112.856391,25.291609],[112.854914,25.311855],[112.858798,25.320243],[112.851796,25.33344],[112.857376,25.336851],[112.8687,25.327849],[112.877671,25.33372],[112.894849,25.337578],[112.900593,25.311352],[112.913175,25.299887],[112.927836,25.299887],[112.931829,25.322816],[112.945068,25.326339],[112.95114,25.337466],[112.964707,25.342163],[112.968098,25.349822],[112.987956,25.353791],[112.995396,25.348983],[113.009236,25.352897],[113.023678,25.345964],[113.029751,25.361227],[113.041622,25.366034],[113.064598,25.381797],[113.080134,25.383362],[113.080626,25.390963],[113.088777,25.396552],[113.090418,25.406778],[113.096873,25.410746],[113.092388,25.417507],[113.114379,25.42058],[113.128383,25.413204],[113.130736,25.427117],[113.118427,25.447285],[113.127946,25.449687],[113.122366,25.45572],[113.13462,25.467673],[113.149992,25.468008],[113.152016,25.492246],[113.169357,25.488058],[113.177071,25.471583],[113.200812,25.479402],[113.210659,25.496713],[113.226195,25.509667],[113.243263,25.515641],[113.249062,25.514078],[113.260824,25.499449],[113.269412,25.505256],[113.282596,25.4942],[113.291786,25.500901],[113.291732,25.516367],[113.303329,25.515864],[113.296819,25.508383],[113.311371,25.490459],[113.309183,25.481021],[113.315966,25.467506],[113.313942,25.442928],[113.329752,25.450804],[113.340091,25.449911],[113.352782,25.436838],[113.35973,25.438403],[113.366951,25.431196],[113.371874,25.406834],[113.376524,25.400743],[113.38938,25.403649],[113.393592,25.397558],[113.407049,25.401414],[113.424117,25.392695],[113.427728,25.373245],[113.442279,25.361283],[113.449829,25.35955],[113.462411,25.369835],[113.470179,25.365643],[113.480026,25.375201],[113.50415,25.374978],[113.519194,25.370059],[113.515091,25.360668],[113.524336,25.353624],[113.536098,25.368494],[113.544304,25.366593],[113.554533,25.351835],[113.581448,25.342722],[113.583308,25.331875],[113.579807,25.316609],[113.585989,25.307325],[113.61077,25.32701],[113.620507,25.325668],[113.628823,25.330141],[113.658035,25.329246],[113.663998,25.337746],[113.68019,25.334503],[113.687138,25.352058],[113.707926,25.352617],[113.706558,25.360891],[113.725267,25.358599],[113.734512,25.348872],[113.743976,25.363966],[113.754097,25.361171],[113.758418,25.343784],[113.764162,25.333608],[113.75809,25.329973],[113.780191,25.334055],[113.800486,25.32947],[113.821274,25.330756],[113.832817,25.343896],[113.833418,25.353959],[113.839764,25.363463],[113.860935,25.369332],[113.876909,25.380344],[113.883254,25.395322],[113.881777,25.406946],[113.892062,25.411863],[113.884458,25.420301],[113.886865,25.436615],[113.913397,25.442816],[113.943484,25.43885],[113.939929,25.459407],[113.951417,25.470857],[113.958966,25.483646],[113.952073,25.486941],[113.955629,25.496657],[113.945837,25.499561],[113.953277,25.505033],[113.96285,25.528258],[113.986099,25.528984],[113.984075,25.538585],[113.992391,25.565152],[113.97948,25.573244],[113.983091,25.599357],[113.978441,25.605606],[113.957106,25.61191],[113.949557,25.625186],[113.951253,25.637569],[113.943266,25.6427],[113.937576,25.662664],[113.932926,25.663445],[113.926635,25.685468],[113.913834,25.703753],[113.918266,25.71741],[113.914272,25.728668],[113.918922,25.739479],[113.937358,25.756196],[113.946876,25.761322],[113.961701,25.777311],[113.960662,25.796863],[113.971329,25.814741],[113.970071,25.833953],[113.977292,25.839855],[113.991351,25.860565],[114.010279,25.871086],[114.013944,25.885614],[114.028277,25.89335],[114.022533,25.906817],[114.021822,25.919226],[114.03145,25.938921],[114.021111,25.95561],[114.021056,25.975243],[114.028222,25.981361],[114.027128,25.991037],[114.017609,25.992928],[114.009075,26.00416],[114.008474,26.015669],[114.028113,26.031179],[114.036592,26.046798],[114.035224,26.059025],[114.045837,26.070695],[114.043813,26.076697],[114.069852,26.078531],[114.085607,26.066361],[114.10005,26.071807],[114.106888,26.069473],[114.120181,26.084198],[114.118977,26.089865],[114.107489,26.095144],[114.108748,26.10031],[114.156724,26.115809],[114.171056,26.123253],[114.187687,26.120975],[114.214984,26.137471],[114.225323,26.14769],[114.237249,26.152188],[114.235717,26.160073],[114.225378,26.159684],[114.218485,26.168513],[114.232216,26.17995],[114.222096,26.188888],[114.21679,26.203154],[114.192282,26.196715],[114.183748,26.201045],[114.181286,26.214477],[114.148846,26.203265],[114.141953,26.203376],[114.102785,26.187833],[114.100378,26.178395],[114.088562,26.168402],[114.074667,26.171789],[114.05913,26.166181],[114.055356,26.181338],[114.040968,26.177396],[114.036373,26.188555],[114.027894,26.180061],[114.013397,26.184058],[113.992117,26.167791],[113.985443,26.166403],[113.97215,26.154742],[113.962686,26.150855],[113.944524,26.163738],[113.9518,26.177896],[113.94611,26.184502],[113.930246,26.172788],[113.916953,26.171344],[113.914491,26.15874],[113.902839,26.148023],[113.896438,26.135527],[113.888451,26.130362],[113.860278,26.119309],[113.849611,26.107588],[113.845071,26.095699],[113.824775,26.084087],[113.811099,26.086421],[113.805793,26.100033],[113.791624,26.10431],[113.780792,26.093699],[113.780957,26.066139],[113.761536,26.04791],[113.750705,26.041629],[113.736427,26.041129],[113.709074,26.065805],[113.693265,26.09581],[113.702455,26.124419],[113.72204,26.133139],[113.729261,26.139248],[113.736536,26.159351],[113.738724,26.18317],[113.725158,26.223745],[113.708473,26.234067],[113.67833,26.247273],[113.671602,26.256761],[113.655464,26.270575],[113.64414,26.267968],[113.615201,26.278896],[113.617061,26.308236],[113.60705,26.315113],[113.598954,26.326646],[113.597149,26.34583],[113.592499,26.360187],[113.583527,26.370331],[113.583199,26.394661],[113.607707,26.419096],[113.609621,26.431007],[113.603275,26.448345],[113.588998,26.467121],[113.595671,26.479913],[113.603604,26.507652],[113.589162,26.511416],[113.587028,26.520882],[113.572969,26.519111],[113.558691,26.549497],[113.562192,26.575172],[113.554971,26.585352],[113.541295,26.59271],[113.523461,26.595476],[113.509183,26.59271],[113.495781,26.58419],[113.491021,26.575338],[113.477072,26.562667],[113.467279,26.559347],[113.458144,26.561782],[113.429478,26.558738],[113.414599,26.587399],[113.399117,26.596969],[113.400266,26.605211],[113.411371,26.610134],[113.418045,26.629381],[113.415474,26.645694],[113.400977,26.658245],[113.399883,26.666593],[113.392224,26.674885],[113.381448,26.6939],[113.382049,26.69915],[113.400758,26.706943],[113.413286,26.72982],[113.427618,26.764569],[113.428111,26.769761],[113.412684,26.782575],[113.404697,26.797596],[113.394303,26.804774],[113.384456,26.797099],[113.363669,26.800081],[113.338121,26.81024],[113.326305,26.80759],[113.315091,26.79616],[113.306283,26.773517],[113.299281,26.768104],[113.283417,26.771473],[113.27811,26.777715],[113.285441,26.79003],[113.285331,26.799694],[113.273789,26.813056],[113.280627,26.825202],[113.259784,26.827797],[113.258526,26.815486],[113.238066,26.805216],[113.224609,26.814437],[113.223679,26.820896],[113.206338,26.825478],[113.207103,26.829674],[113.183854,26.825202],[113.160495,26.827521],[113.153165,26.837568],[113.144138,26.834477],[113.142935,26.812504],[113.149062,26.792129],[113.097256,26.781636],[113.09556,26.759929],[113.101961,26.753245],[113.113066,26.753024],[113.115364,26.74413],[113.12904,26.74413],[113.131392,26.738053],[113.121381,26.73098],[113.122311,26.72319],[113.13916,26.71794],[113.134784,26.71258],[113.152289,26.700532],[113.160878,26.687875],[113.182979,26.687765],[113.188176,26.662447],[113.179587,26.638339],[113.186699,26.608088],[113.179259,26.578492],[113.179149,26.564438],[113.159182,26.541638],[113.160003,26.534222],[113.171655,26.521214],[113.179423,26.519388],[113.189653,26.506157],[113.214324,26.502448],[113.230079,26.482072],[113.226852,26.467065],[113.217388,26.462746],[113.210112,26.465182],[113.194904,26.451669],[113.192278,26.44552],[113.211699,26.433112],[113.212191,26.425246],[113.191239,26.406186],[113.179095,26.404967],[113.171874,26.412115],[113.163558,26.409566],[113.16044,26.387733],[113.167114,26.374266],[113.156556,26.36246],[113.168865,26.3491],[113.164762,26.344499],[113.173788,26.329696],[113.162683,26.324317],[113.142059,26.32587],[113.127344,26.31356],[113.130626,26.306572],[113.128821,26.29304],[113.119193,26.29304],[113.117059,26.287327],[113.103547,26.290544],[113.087136,26.273626],[113.091676,26.250103],[113.073514,26.24855],[113.068153,26.252933],[113.05207,26.248494],[113.045287,26.254542],[113.032103,26.25199],[113.025867,26.245276],[113.039926,26.213589],[113.034948,26.206651],[113.035659,26.172843],[113.008635,26.155631],[112.992989,26.162349],[112.984564,26.156575],[112.968645,26.154242],[112.949882,26.160184],[112.942606,26.170789],[112.930133,26.176785],[112.921052,26.174398],[112.920997,26.157963],[112.903601,26.148467],[112.891074,26.156519],[112.875866,26.1498],[112.870067,26.155797],[112.857923,26.154187],[112.846435,26.158296],[112.838557,26.155742],[112.818754,26.161794],[112.818535,26.186667],[112.809728,26.192163],[112.802616,26.19022],[112.795614,26.180116],[112.78987,26.179839],[112.79173,26.193218],[112.786041,26.196993],[112.775975,26.183892],[112.777179,26.177341],[112.78812,26.175342],[112.791402,26.166292],[112.783634,26.164237],[112.782157,26.146024],[112.768371,26.145524],[112.758743,26.149855],[112.760384,26.133084],[112.752507,26.129862],[112.746216,26.143802],[112.739979,26.144469],[112.735056,26.134583],[112.720395,26.125474],[112.710275,26.131751],[112.707704,26.122419],[112.688557,26.114198],[112.686423,26.123808],[112.676139,26.125974],[112.673787,26.111032],[112.665307,26.10981],[112.654913,26.101033],[112.642277,26.105977],[112.646161,26.112421],[112.658196,26.114976],[112.670668,26.127696],[112.654257,26.129251],[112.637299,26.138915],[112.630132,26.154409],[112.633688,26.163293],[112.623403,26.192108],[112.608961,26.198436],[112.602834,26.217085],[112.597802,26.220526],[112.581062,26.219083],[112.58057,26.208982],[112.572309,26.193384],[112.577451,26.182004],[112.576248,26.168346],[112.582047,26.15924],[112.578381,26.153632],[112.566565,26.158518],[112.554804,26.147245],[112.529092,26.147579],[112.524443,26.137471],[112.5129,26.135583],[112.50825,26.143858],[112.507812,26.159573],[112.48872,26.150911],[112.482046,26.160739],[112.485055,26.167957],[112.47953,26.175786],[112.450919,26.180394],[112.444574,26.175953],[112.429256,26.189721],[112.405788,26.184835],[112.395066,26.186168],[112.386641,26.205208],[112.377287,26.201544],[112.375044,26.190553],[112.364322,26.181282],[112.357046,26.161294],[112.33779,26.167569],[112.327068,26.161128],[112.310437,26.158574],[112.31186,26.148967],[112.304256,26.132917],[112.292385,26.134417],[112.290689,26.144024],[112.284453,26.143636],[112.266947,26.13114],[112.258523,26.130751],[112.257702,26.123308],[112.232428,26.117865],[112.230295,26.107032],[112.240579,26.09331],[112.251685,26.089588],[112.26186,26.092866],[112.271159,26.089032],[112.282593,26.101699],[112.291619,26.099977],[112.299715,26.090365],[112.309836,26.099033],[112.321816,26.093755],[112.33582,26.076641],[112.328545,26.039072],[112.306444,26.00694],[112.300426,25.978747],[112.292987,25.974298],[112.311532,25.962396],[112.299332,25.962507],[112.304475,25.953997],[112.309836,25.95611],[112.316783,25.944039],[112.315197,25.935806],[112.296816,25.931466],[112.265525,25.896689],[112.272089,25.886337],[112.288665,25.886282],[112.312407,25.890567],[112.33686,25.885725],[112.349715,25.906595],[112.360383,25.905871],[112.359562,25.894407],[112.377998,25.859285],[112.38686,25.859786],[112.387024,25.846258],[112.380514,25.837293],[112.359289,25.834398],[112.357101,25.818249],[112.361696,25.809116],[112.377068,25.803658],[112.385383,25.805552],[112.38686,25.789343],[112.377013,25.760486],[112.37756,25.750791],[112.392057,25.740315],[112.383523,25.730618],[112.361805,25.720196],[112.352068,25.712393],[112.343315,25.694277],[112.336422,25.690876],[112.321433,25.698458],[112.317002,25.723262],[112.310602,25.728891],[112.297363,25.730284],[112.278107,25.711167],[112.247363,25.703921],[112.243041,25.684855],[112.245612,25.672087],[112.257921,25.650452],[112.257429,25.634055],[112.238829,25.603876],[112.243643,25.589928],[112.260492,25.58234],[112.257702,25.573021],[112.246269,25.567608],[112.250973,25.559013],[112.270284,25.554883],[112.285766,25.555776],[112.312844,25.535013],[112.325591,25.529989],[112.357812,25.541655],[112.369902,25.539422],[112.372418,25.530044],[112.367932,25.520442],[112.372144,25.512068],[112.392002,25.490961],[112.39802,25.476888],[112.399989,25.457172],[112.411805,25.440581],[112.420668,25.435498],[112.426904,25.423318],[112.439924,25.408287],[112.440963,25.399346],[112.426466,25.398508],[112.421324,25.39359],[112.435711,25.379952],[112.455186,25.38107],[112.458414,25.37509],[112.45256,25.365475],[112.444464,25.362736],[112.432867,25.368382],[112.420011,25.339087],[112.409508,25.32578],[112.394026,25.314595],[112.386094,25.313141],[112.374934,25.300837],[112.362188,25.298153],[112.345175,25.289259],[112.344901,25.284673],[112.357593,25.278631],[112.355405,25.263974],[112.360492,25.258547],[112.357593,25.244279],[112.368151,25.232696],[112.368096,25.222846],[112.36186,25.211988],[112.364212,25.191725]]]]}},{"type":"Feature","properties":{"adcode":431100,"name":"永州市","center":[111.608019,26.434516],"centroid":[111.734581,25.774386],"childrenNum":11,"level":"city","parent":{"adcode":430000},"subFeatureIndex":10,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.364212,25.191725],[112.36186,25.211988],[112.368096,25.222846],[112.368151,25.232696],[112.357593,25.244279],[112.360492,25.258547],[112.355405,25.263974],[112.357593,25.278631],[112.344901,25.284673],[112.345175,25.289259],[112.362188,25.298153],[112.374934,25.300837],[112.386094,25.313141],[112.394026,25.314595],[112.409508,25.32578],[112.420011,25.339087],[112.432867,25.368382],[112.444464,25.362736],[112.45256,25.365475],[112.458414,25.37509],[112.455186,25.38107],[112.435711,25.379952],[112.421324,25.39359],[112.426466,25.398508],[112.440963,25.399346],[112.439924,25.408287],[112.426904,25.423318],[112.420668,25.435498],[112.411805,25.440581],[112.399989,25.457172],[112.39802,25.476888],[112.392002,25.490961],[112.372144,25.512068],[112.367932,25.520442],[112.372418,25.530044],[112.369902,25.539422],[112.357812,25.541655],[112.325591,25.529989],[112.312844,25.535013],[112.285766,25.555776],[112.270284,25.554883],[112.250973,25.559013],[112.246269,25.567608],[112.257702,25.573021],[112.260492,25.58234],[112.243643,25.589928],[112.238829,25.603876],[112.257429,25.634055],[112.257921,25.650452],[112.245612,25.672087],[112.243041,25.684855],[112.247363,25.703921],[112.278107,25.711167],[112.297363,25.730284],[112.310602,25.728891],[112.317002,25.723262],[112.321433,25.698458],[112.336422,25.690876],[112.343315,25.694277],[112.352068,25.712393],[112.361805,25.720196],[112.383523,25.730618],[112.392057,25.740315],[112.37756,25.750791],[112.377013,25.760486],[112.38686,25.789343],[112.385383,25.805552],[112.377068,25.803658],[112.361696,25.809116],[112.357101,25.818249],[112.359289,25.834398],[112.380514,25.837293],[112.387024,25.846258],[112.38686,25.859786],[112.377998,25.859285],[112.359562,25.894407],[112.360383,25.905871],[112.349715,25.906595],[112.33686,25.885725],[112.312407,25.890567],[112.288665,25.886282],[112.272089,25.886337],[112.265525,25.896689],[112.296816,25.931466],[112.315197,25.935806],[112.316783,25.944039],[112.309836,25.95611],[112.304475,25.953997],[112.299332,25.962507],[112.311532,25.962396],[112.292987,25.974298],[112.300426,25.978747],[112.306444,26.00694],[112.328545,26.039072],[112.33582,26.076641],[112.321816,26.093755],[112.309836,26.099033],[112.299715,26.090365],[112.291619,26.099977],[112.282593,26.101699],[112.271159,26.089032],[112.26186,26.092866],[112.251685,26.089588],[112.240579,26.09331],[112.230295,26.107032],[112.232428,26.117865],[112.231389,26.134417],[112.224332,26.138915],[112.222636,26.150799],[112.212571,26.151188],[112.217221,26.165459],[112.206115,26.165514],[112.195448,26.172011],[112.185929,26.185668],[112.192877,26.19394],[112.194901,26.206873],[112.190306,26.22369],[112.19605,26.229794],[112.200809,26.262365],[112.197308,26.277287],[112.205021,26.285275],[112.212461,26.30563],[112.20896,26.31356],[112.199004,26.30746],[112.190415,26.312229],[112.177942,26.305741],[112.177724,26.325925],[112.181498,26.34339],[112.158741,26.353036],[112.153161,26.349544],[112.148183,26.35736],[112.150152,26.38463],[112.141728,26.387068],[112.140634,26.407959],[112.153271,26.403139],[112.150098,26.416326],[112.152724,26.430065],[112.145612,26.431727],[112.143205,26.441477],[112.155295,26.444523],[112.161914,26.450727],[112.157975,26.465016],[112.152177,26.469668],[112.166509,26.477033],[112.159562,26.486336],[112.159999,26.493866],[112.1757,26.500178],[112.195339,26.486613],[112.211258,26.502725],[112.236695,26.505382],[112.243205,26.514073],[112.242713,26.535052],[112.227833,26.546453],[112.213118,26.548556],[112.19047,26.536879],[112.174223,26.524148],[112.15245,26.502725],[112.144737,26.504441],[112.147363,26.527469],[112.162735,26.539314],[112.149113,26.547173],[112.156389,26.555529],[112.169518,26.557078],[112.174715,26.571188],[112.168205,26.574674],[112.170557,26.585352],[112.158577,26.591825],[112.143916,26.593429],[112.141454,26.603386],[112.150317,26.617048],[112.151082,26.625731],[112.126356,26.63574],[112.115743,26.643371],[112.117822,26.650504],[112.10978,26.654043],[112.094189,26.645141],[112.093478,26.634026],[112.076903,26.64398],[112.05617,26.647961],[112.04583,26.643205],[112.028489,26.651831],[112.006498,26.648458],[111.995666,26.63939],[112.005513,26.624791],[112.013992,26.627556],[112.019736,26.619205],[112.014922,26.605322],[112.006005,26.596914],[111.997526,26.605101],[111.990196,26.624182],[111.973565,26.630929],[111.960983,26.645307],[111.959342,26.65642],[111.951902,26.664216],[111.949003,26.681519],[111.94036,26.699427],[111.927066,26.711032],[111.916399,26.733688],[111.917985,26.748936],[111.903325,26.751754],[111.874769,26.785888],[111.871486,26.796491],[111.859178,26.799584],[111.850206,26.789809],[111.831825,26.786164],[111.827504,26.780918],[111.817055,26.784011],[111.824057,26.798479],[111.820556,26.804498],[111.802504,26.801516],[111.797307,26.79257],[111.781278,26.789147],[111.771705,26.79986],[111.772142,26.80875],[111.753707,26.807038],[111.744735,26.812173],[111.745009,26.825534],[111.752285,26.831551],[111.746759,26.841487],[111.739046,26.832876],[111.731278,26.8326],[111.719243,26.847283],[111.712678,26.84916],[111.700589,26.843198],[111.701464,26.836188],[111.684615,26.833538],[111.66596,26.843309],[111.650862,26.840438],[111.642437,26.817252],[111.644516,26.803228],[111.638006,26.802344],[111.629637,26.789312],[111.618477,26.7913],[111.601245,26.785888],[111.588006,26.797596],[111.577229,26.79986],[111.575369,26.809357],[111.558083,26.808639],[111.549986,26.812338],[111.545938,26.821724],[111.549111,26.832324],[111.543586,26.840935],[111.53363,26.847117],[111.528269,26.865],[111.517218,26.86511],[111.507973,26.859536],[111.495227,26.860695],[111.482535,26.856776],[111.471485,26.861964],[111.462513,26.861081],[111.460106,26.867097],[111.4455,26.867593],[111.43817,26.86086],[111.430019,26.867924],[111.419625,26.867814],[111.406441,26.858211],[111.392437,26.863013],[111.372907,26.858211],[111.366397,26.864944],[111.349657,26.859812],[111.349712,26.851533],[111.329854,26.836685],[111.321922,26.820123],[111.322524,26.813111],[111.315139,26.802565],[111.32411,26.788318],[111.321485,26.783127],[111.329198,26.772136],[111.329417,26.757609],[111.324001,26.737721],[111.317218,26.733191],[111.32143,26.714238],[111.309067,26.710922],[111.30294,26.700035],[111.276244,26.68887],[111.281112,26.678699],[111.293694,26.67284],[111.299384,26.660677],[111.301244,26.644201],[111.312568,26.639003],[111.314263,26.626616],[111.306058,26.619758],[111.30387,26.60405],[111.304581,26.58336],[111.297688,26.576943],[111.297031,26.567758],[111.288498,26.557078],[111.296047,26.526196],[111.296922,26.511748],[111.288771,26.492316],[111.278268,26.490212],[111.271867,26.499403],[111.263388,26.493423],[111.259723,26.479913],[111.251353,26.483844],[111.229635,26.481131],[111.203322,26.462856],[111.201189,26.457318],[111.181057,26.463355],[111.184668,26.470499],[111.168038,26.474154],[111.15551,26.48246],[111.158847,26.49442],[111.154416,26.500399],[111.165959,26.511748],[111.15923,26.515734],[111.153978,26.527026],[111.142272,26.541306],[111.12586,26.553924],[111.127118,26.577496],[111.133191,26.590773],[111.137129,26.610632],[111.127447,26.623076],[111.10923,26.617435],[111.11388,26.609249],[111.104744,26.585905],[111.088716,26.588893],[111.073562,26.587841],[111.067107,26.577274],[111.063934,26.558406],[111.06656,26.541306],[111.063278,26.526528],[111.067217,26.505548],[111.05644,26.486613],[111.060269,26.473766],[111.052665,26.457041],[111.043694,26.451225],[111.044952,26.440923],[111.031768,26.432503],[111.019186,26.401033],[111.019022,26.391058],[111.025094,26.384575],[111.01656,26.366007],[111.008573,26.358857],[111.00261,26.340119],[111.0083,26.337014],[111.026188,26.337403],[111.043201,26.332468],[111.040357,26.323486],[111.053486,26.319493],[111.061199,26.325371],[111.06481,26.318883],[111.079361,26.318218],[111.0926,26.306683],[111.106878,26.304077],[111.116396,26.309179],[111.135817,26.306517],[111.157808,26.30746],[111.168913,26.31051],[111.177775,26.307127],[111.204745,26.307848],[111.20923,26.30269],[111.208847,26.290932],[111.203322,26.280671],[111.212841,26.269133],[111.225423,26.269466],[111.231659,26.262309],[111.240521,26.26708],[111.247852,26.263641],[111.252447,26.269244],[111.267874,26.273071],[111.281277,26.27113],[111.2926,26.252434],[111.295336,26.240338],[111.291452,26.220804],[111.271703,26.217196],[111.270664,26.200767],[111.266506,26.191331],[111.274384,26.182559],[111.268913,26.16879],[111.258136,26.152021],[111.262403,26.135861],[111.26864,26.129307],[111.268913,26.107366],[111.25934,26.096699],[111.265959,26.096032],[111.244624,26.077975],[111.252666,26.068139],[111.26492,26.061248],[111.264318,26.055691],[111.252939,26.056691],[111.236802,26.048855],[111.23051,26.034458],[111.213716,26.01767],[111.215357,26.011777],[111.202939,25.976133],[111.196703,25.97085],[111.196101,25.960894],[111.189537,25.953274],[111.205018,25.952884],[111.20655,25.939645],[111.219679,25.93703],[111.216615,25.928963],[111.232261,25.911046],[111.222469,25.907318],[111.229143,25.897524],[111.24271,25.887784],[111.251627,25.864685],[111.259887,25.861066],[111.278541,25.860287],[111.291889,25.854442],[111.297086,25.874259],[111.305292,25.883666],[111.326517,25.89552],[111.327611,25.900195],[111.346211,25.906316],[111.355019,25.892126],[111.362568,25.892292],[111.365248,25.900585],[111.378432,25.904758],[111.378815,25.894073],[111.385489,25.882107],[111.408684,25.885057],[111.41585,25.876875],[111.432207,25.88695],[111.440632,25.884946],[111.454253,25.888452],[111.456824,25.871086],[111.470993,25.875261],[111.492054,25.868581],[111.486201,25.859341],[111.465139,25.855833],[111.456879,25.848095],[111.433246,25.846258],[111.425041,25.826268],[111.436091,25.813571],[111.442273,25.778091],[111.440194,25.769623],[111.432863,25.766615],[111.416069,25.768174],[111.399603,25.744606],[111.346813,25.729671],[111.327283,25.732736],[111.318695,25.729504],[111.307535,25.716351],[111.308738,25.692326],[111.313935,25.682625],[111.309778,25.658091],[111.309997,25.64493],[111.317655,25.631266],[111.334723,25.618381],[111.343148,25.602761],[111.336857,25.595787],[111.324931,25.564148],[111.323892,25.548856],[111.327721,25.537413],[111.328104,25.521447],[111.320609,25.49554],[111.300861,25.46974],[111.301244,25.451084],[111.292108,25.435833],[111.280839,25.430078],[111.278979,25.423318],[111.26585,25.425441],[111.256933,25.407616],[111.25748,25.395937],[111.242163,25.387833],[111.236692,25.378164],[111.227994,25.375425],[111.210543,25.363519],[111.181823,25.366593],[111.16388,25.342386],[111.155456,25.324382],[111.138442,25.303578],[111.119514,25.290825],[111.103322,25.285064],[111.109504,25.266268],[111.109832,25.252728],[111.117819,25.239299],[111.112786,25.217081],[111.077884,25.201073],[111.065466,25.18747],[111.054963,25.187694],[111.047249,25.179017],[111.034613,25.179129],[111.00272,25.165747],[111.000532,25.150013],[110.994459,25.146261],[110.982807,25.126659],[110.97761,25.108958],[110.983956,25.101676],[110.961418,25.077864],[110.966724,25.073101],[110.956166,25.058812],[110.951899,25.041157],[110.957479,25.024902],[110.9554,25.016886],[110.960761,25.001524],[110.975477,24.987787],[110.968748,24.975506],[110.973453,24.968272],[110.985542,24.966028],[110.992107,24.959018],[110.987238,24.942527],[110.994897,24.930354],[110.983737,24.924183],[110.979142,24.914701],[110.997195,24.927044],[111.003431,24.921434],[111.014536,24.92379],[111.018529,24.929793],[111.030346,24.931981],[111.050258,24.928278],[111.08609,24.941125],[111.097414,24.9409],[111.100423,24.945724],[111.096976,24.974889],[111.102064,24.982292],[111.107917,25.00971],[111.101845,25.035216],[111.123016,25.042559],[111.140029,25.04239],[111.167162,25.060605],[111.200751,25.07467],[111.206714,25.08498],[111.219296,25.093552],[111.222031,25.106437],[111.249493,25.128675],[111.263716,25.133604],[111.263224,25.143796],[111.274767,25.151133],[111.289099,25.142452],[111.296703,25.122066],[111.310981,25.116184],[111.321813,25.104925],[111.347141,25.101115],[111.36038,25.103076],[111.367874,25.108846],[111.37515,25.128507],[111.387076,25.130243],[111.399767,25.124586],[111.402831,25.107558],[111.412677,25.100723],[111.429089,25.103468],[111.436693,25.098426],[111.418804,25.065592],[111.416561,25.047659],[111.4234,25.035496],[111.439319,25.027481],[111.465303,25.023781],[111.468312,25.019464],[111.467327,25.002477],[111.460489,24.992777],[111.438389,24.98431],[111.431113,24.97259],[111.431386,24.959691],[111.440194,24.944547],[111.462185,24.930803],[111.470227,24.928952],[111.463936,24.908978],[111.453159,24.904602],[111.447087,24.893098],[111.45945,24.882323],[111.460489,24.872221],[111.449439,24.857066],[111.452995,24.844211],[111.471102,24.82063],[111.479417,24.797551],[111.470446,24.773456],[111.467163,24.758064],[111.461255,24.750086],[111.464155,24.733849],[111.437295,24.697433],[111.431113,24.685854],[111.435489,24.68102],[111.446758,24.682538],[111.451791,24.665786],[111.468039,24.666741],[111.471594,24.674668],[111.48538,24.672982],[111.504144,24.664886],[111.514319,24.655103],[111.52154,24.642171],[111.52991,24.636548],[111.549877,24.648581],[111.560107,24.63891],[111.570719,24.644702],[111.580348,24.674724],[111.589155,24.690688],[111.597689,24.693892],[111.619297,24.683718],[111.636639,24.681357],[111.641672,24.684674],[111.643367,24.701311],[111.637788,24.71553],[111.642328,24.730028],[111.666453,24.760817],[111.689593,24.778567],[111.70398,24.778174],[111.708411,24.788846],[111.733247,24.780252],[111.761858,24.782106],[111.783466,24.785757],[111.794243,24.774298],[111.814101,24.77031],[111.835272,24.776938],[111.856388,24.772051],[111.868696,24.771827],[111.868915,24.760311],[111.875206,24.75666],[111.903707,24.763457],[111.924605,24.757053],[111.938226,24.756997],[111.950972,24.769636],[111.963554,24.770085],[111.970119,24.763738],[111.99769,24.758907],[112.024113,24.740142],[112.033577,24.753457],[112.033795,24.771153],[112.0542,24.788902],[112.059233,24.799516],[112.083796,24.804851],[112.096487,24.817261],[112.097253,24.826358],[112.112625,24.831523],[112.124058,24.841123],[112.141454,24.844492],[112.149496,24.836969],[112.161093,24.844211],[112.17105,24.862735],[112.165689,24.867226],[112.165306,24.882492],[112.174058,24.913972],[112.175207,24.927493],[112.15245,24.93243],[112.142111,24.937927],[112.12001,24.963729],[112.122034,24.989525],[112.134671,24.995861],[112.155732,25.026976],[112.148894,25.03544],[112.153544,25.045473],[112.152177,25.055953],[112.164266,25.0717],[112.165579,25.083691],[112.177122,25.10739],[112.174168,25.129515],[112.183249,25.1401],[112.183304,25.148837],[112.19315,25.172186],[112.187133,25.182544],[112.201739,25.185791],[112.246542,25.184951],[112.255569,25.17157],[112.256061,25.159364],[112.281991,25.164739],[112.286969,25.158972],[112.30256,25.15718],[112.315963,25.17521],[112.332429,25.174538],[112.350864,25.187022],[112.364212,25.191725]]]]}},{"type":"Feature","properties":{"adcode":431200,"name":"怀化市","center":[109.97824,27.550082],"centroid":[110.082325,27.552517],"childrenNum":12,"level":"city","parent":{"adcode":430000},"subFeatureIndex":11,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.418415,27.721364],[109.418251,27.714244],[109.429957,27.703564],[109.456872,27.69354],[109.470439,27.680283],[109.458185,27.67475],[109.456161,27.669436],[109.464476,27.651408],[109.470056,27.628774],[109.469181,27.620936],[109.451238,27.585959],[109.46196,27.565615],[109.45917,27.560131],[109.445986,27.562379],[109.433623,27.548393],[109.404957,27.550478],[109.379137,27.535832],[109.325909,27.494243],[109.312342,27.486176],[109.302988,27.475638],[109.306926,27.434411],[109.299869,27.423923],[109.286467,27.424637],[109.245548,27.418157],[109.24325,27.429634],[109.221915,27.438913],[109.213709,27.450497],[109.202112,27.450058],[109.18953,27.436552],[109.166992,27.417828],[109.156215,27.41651],[109.159442,27.442317],[109.154081,27.448795],[109.140405,27.447094],[109.123337,27.42859],[109.123282,27.418432],[109.11453,27.424911],[109.111959,27.413709],[109.124541,27.415137],[109.129245,27.42557],[109.138655,27.430348],[109.14221,27.418212],[109.127659,27.405087],[109.115897,27.400089],[109.12476,27.387895],[109.113819,27.367184],[109.118468,27.36224],[109.114092,27.352404],[109.104519,27.355481],[109.101072,27.349822],[109.103753,27.337128],[109.086357,27.331028],[109.074376,27.331907],[109.072188,27.323553],[109.059551,27.326851],[109.052112,27.336688],[109.044398,27.331083],[109.054136,27.306074],[109.053917,27.294859],[109.045602,27.288207],[109.041389,27.276606],[109.023884,27.282214],[109.010591,27.270502],[108.99954,27.267533],[108.987177,27.270557],[108.984661,27.256259],[108.968523,27.245535],[108.963435,27.235524],[108.951455,27.236074],[108.947078,27.228428],[108.914256,27.21462],[108.908676,27.204332],[108.925744,27.1996],[108.919179,27.193492],[108.929792,27.180065],[108.926017,27.175167],[108.926783,27.160912],[108.909989,27.147536],[108.904901,27.134929],[108.887614,27.121495],[108.88477,27.108499],[108.878752,27.106296],[108.868522,27.116594],[108.859934,27.114887],[108.856542,27.098091],[108.846969,27.098146],[108.824376,27.089058],[108.807472,27.098587],[108.792209,27.083275],[108.803807,27.078869],[108.831432,27.057825],[108.840951,27.063059],[108.845656,27.058045],[108.84396,27.047963],[108.854737,27.031983],[108.868522,27.031047],[108.877658,27.015451],[108.878424,27.006356],[108.872899,26.999852],[108.884113,27.002388],[108.900634,27.016939],[108.918468,27.019088],[108.914912,27.025922],[108.920984,27.029779],[108.921367,27.009774],[108.936794,27.011813],[108.951947,27.018757],[108.950962,27.036943],[108.94314,27.037384],[108.940404,27.044712],[108.964256,27.054464],[108.989639,27.074076],[109.007582,27.080246],[109.016116,27.086745],[109.018851,27.095833],[109.032527,27.103818],[109.035864,27.098091],[109.053753,27.098311],[109.061958,27.110427],[109.064748,27.103488],[109.080394,27.116484],[109.097188,27.116098],[109.111357,27.123146],[109.122954,27.123367],[109.13395,27.11775],[109.131051,27.110096],[109.118961,27.10525],[109.109169,27.092528],[109.101127,27.068953],[109.130558,27.065042],[109.141062,27.073581],[109.1543,27.071928],[109.163545,27.065813],[109.175252,27.087241],[109.185482,27.082284],[109.19593,27.091262],[109.21825,27.116429],[109.238928,27.149132],[109.248119,27.153426],[109.257419,27.150618],[109.264257,27.131901],[109.280559,27.127111],[109.29894,27.135259],[109.335045,27.139058],[109.333677,27.148747],[109.358732,27.152875],[109.373994,27.147811],[109.376894,27.154196],[109.384552,27.143902],[109.393196,27.143847],[109.392813,27.156068],[109.400855,27.159591],[109.400253,27.15238],[109.41464,27.154141],[109.427933,27.12601],[109.440898,27.118191],[109.448338,27.120558],[109.457583,27.133332],[109.472682,27.134929],[109.469345,27.115438],[109.459607,27.108279],[109.463437,27.10123],[109.459717,27.09363],[109.462069,27.081292],[109.482419,27.081127],[109.481653,27.071763],[109.454575,27.069449],[109.468251,27.064767],[109.487069,27.053968],[109.49615,27.062453],[109.487999,27.066474],[109.489804,27.078593],[109.498503,27.079364],[109.505067,27.072699],[109.518524,27.072589],[109.510483,27.067962],[109.518853,27.060029],[109.517923,27.043224],[109.525034,27.037273],[109.5258,27.026528],[109.541336,27.01286],[109.542376,26.996435],[109.532091,26.993182],[109.527605,26.977195],[109.536796,26.974659],[109.546697,26.984583],[109.555013,26.946923],[109.533623,26.938596],[109.530231,26.92751],[109.514093,26.930764],[109.493251,26.921111],[109.484225,26.913554],[109.471807,26.911182],[109.45824,26.901859],[109.446588,26.899652],[109.436413,26.892645],[109.438546,26.877416],[109.444837,26.871732],[109.436631,26.862461],[109.447901,26.859591],[109.457474,26.864117],[109.456763,26.873222],[109.472955,26.884755],[109.474214,26.8943],[109.486796,26.895293],[109.490844,26.883651],[109.51382,26.874271],[109.510373,26.865496],[109.513109,26.840273],[109.497354,26.823105],[109.497463,26.815265],[109.507693,26.801185],[109.51754,26.779924],[109.517485,26.756228],[109.522244,26.749378],[109.528645,26.744019],[109.53417,26.744572],[109.553918,26.73529],[109.561522,26.742251],[109.558076,26.754626],[109.570439,26.747887],[109.580341,26.755676],[109.577113,26.77059],[109.596424,26.760703],[109.579083,26.740815],[109.578153,26.733301],[109.568251,26.726173],[109.553371,26.723024],[109.547299,26.717885],[109.546041,26.731201],[109.528535,26.743909],[109.522135,26.749212],[109.504629,26.744627],[109.502332,26.757664],[109.497682,26.76015],[109.453973,26.7612],[109.437671,26.755234],[109.417758,26.739765],[109.413984,26.72225],[109.407091,26.719819],[109.38127,26.727444],[109.385975,26.712138],[109.37301,26.705009],[109.364968,26.696166],[109.355012,26.693237],[109.335592,26.699979],[109.319126,26.701748],[109.298447,26.696553],[109.292922,26.701251],[109.283732,26.698598],[109.287014,26.689699],[109.304191,26.66311],[109.33406,26.646247],[109.355121,26.659019],[109.364366,26.633473],[109.378699,26.622468],[109.384717,26.604713],[109.391281,26.60051],[109.387178,26.588063],[109.389859,26.581147],[109.385482,26.571022],[109.399049,26.570967],[109.395165,26.56643],[109.403973,26.560177],[109.408732,26.5371],[109.404301,26.529628],[109.381708,26.518502],[109.385537,26.493534],[109.364038,26.475926],[109.362452,26.466235],[109.380997,26.461749],[109.373557,26.449453],[109.361029,26.44829],[109.326784,26.42796],[109.319563,26.418653],[109.313546,26.397376],[109.299049,26.368225],[109.292594,26.345331],[109.277331,26.340008],[109.271423,26.327755],[109.274486,26.31539],[109.285865,26.295813],[109.296861,26.297366],[109.30534,26.29121],[109.325745,26.289879],[109.323393,26.282446],[109.334771,26.276677],[109.339804,26.264084],[109.351456,26.264251],[109.373229,26.278175],[109.391172,26.277121],[109.401511,26.283722],[109.421041,26.288714],[109.442649,26.289879],[109.444454,26.303079],[109.46103,26.314114],[109.466555,26.314059],[109.476894,26.299252],[109.458842,26.284166],[109.453426,26.264528],[109.43964,26.238839],[109.452386,26.209648],[109.468306,26.20321],[109.470439,26.196327],[109.459334,26.194106],[109.470001,26.177007],[109.467485,26.162349],[109.476183,26.148078],[109.493196,26.144024],[109.495166,26.152632],[109.501128,26.139082],[109.514093,26.128251],[109.512726,26.115476],[109.504082,26.09681],[109.475964,26.099477],[109.466555,26.091588],[109.450417,26.101921],[109.450964,26.075974],[109.447572,26.071807],[109.454793,26.053079],[109.479137,26.047743],[109.482638,26.029622],[109.496424,26.023785],[109.508896,26.009553],[109.513163,25.998099],[109.5287,25.995764],[109.540297,26.000045],[109.545385,26.013889],[109.559772,26.02145],[109.588273,26.019727],[109.604466,26.026398],[109.612726,26.037071],[109.634991,26.047298],[109.646041,26.041962],[109.649269,26.01678],[109.656709,26.013445],[109.675472,26.015113],[109.690133,26.007551],[109.689149,25.998266],[109.698066,25.998933],[109.708241,26.013556],[109.72323,26.003437],[109.729685,25.991538],[109.723558,25.974632],[109.711468,25.961784],[109.709991,25.954052],[109.69347,25.95917],[109.690297,25.937642],[109.682584,25.933914],[109.679302,25.923065],[109.69254,25.909933],[109.69254,25.898025],[109.68521,25.901085],[109.68056,25.895131],[109.688711,25.888285],[109.68521,25.880326],[109.702114,25.882274],[109.710648,25.886894],[109.7194,25.883833],[109.747245,25.889231],[109.768361,25.890345],[109.764751,25.876207],[109.779521,25.865965],[109.799379,25.871866],[109.813219,25.879825],[109.815845,25.890845],[109.825965,25.911436],[109.825035,25.922898],[109.810429,25.945653],[109.80649,25.973631],[109.784663,25.985754],[109.782475,25.997209],[109.80195,26.034403],[109.814587,26.040962],[109.840189,26.029066],[109.856272,26.026287],[109.870878,26.033347],[109.880451,26.057302],[109.882475,26.075252],[109.888165,26.087976],[109.898996,26.095199],[109.899051,26.108977],[109.907202,26.144857],[109.914478,26.154409],[109.931217,26.161239],[109.966228,26.195494],[109.974379,26.218362],[109.99276,26.238617],[109.988821,26.245165],[109.995331,26.258703],[109.990408,26.27285],[109.984281,26.279118],[109.995933,26.294981],[110.009281,26.304021],[110.013001,26.335074],[110.017706,26.347548],[110.011524,26.364622],[110.012235,26.372492],[109.978646,26.388011],[109.979412,26.40735],[109.98729,26.432447],[109.96683,26.428016],[109.950583,26.43699],[109.955014,26.446905],[109.934883,26.456986],[109.932585,26.475981],[109.919018,26.474652],[109.902826,26.461804],[109.891392,26.459367],[109.875418,26.468173],[109.856272,26.465182],[109.862344,26.486834],[109.879357,26.497022],[109.883187,26.509977],[109.879685,26.517395],[109.892541,26.525477],[109.8723,26.538871],[109.862672,26.539867],[109.864368,26.561007],[109.872081,26.571022],[109.861688,26.583637],[109.856819,26.580926],[109.826841,26.60582],[109.83067,26.621528],[109.851458,26.621804],[109.858241,26.643427],[109.885429,26.653822],[109.898942,26.655591],[109.901075,26.66803],[109.91404,26.676212],[109.934062,26.673724],[109.941939,26.67776],[109.950036,26.68887],[109.963603,26.691855],[109.987618,26.685333],[109.997738,26.674277],[110.007476,26.673116],[110.002005,26.666593],[110.020331,26.662889],[110.021863,26.668251],[110.036907,26.681961],[110.044183,26.6981],[110.065189,26.695392],[110.072082,26.700145],[110.067323,26.718382],[110.060813,26.717553],[110.047465,26.724681],[110.05031,26.735622],[110.056546,26.740207],[110.04927,26.747555],[110.064095,26.750925],[110.061688,26.760316],[110.068253,26.759653],[110.063493,26.769927],[110.068581,26.784618],[110.061634,26.793509],[110.056546,26.80886],[110.057421,26.822718],[110.048723,26.825037],[110.042104,26.835029],[110.048668,26.86075],[110.055944,26.876202],[110.063548,26.882051],[110.078209,26.881996],[110.093253,26.891155],[110.09741,26.906383],[110.072137,26.932032],[110.075911,26.941684],[110.089697,26.948743],[110.104796,26.951941],[110.116284,26.978022],[110.125529,26.984803],[110.146262,26.986898],[110.153647,26.998419],[110.15031,27.022891],[110.155069,27.037714],[110.162619,27.04642],[110.201404,27.061902],[110.208352,27.081292],[110.204413,27.092033],[110.194183,27.102111],[110.200474,27.118191],[110.226514,27.130359],[110.24949,27.151059],[110.26705,27.153866],[110.304632,27.166966],[110.31437,27.157939],[110.325803,27.158765],[110.331766,27.151444],[110.342707,27.150508],[110.355891,27.175277],[110.352116,27.19905],[110.375584,27.223037],[110.387127,27.218801],[110.424053,27.19949],[110.443035,27.201251],[110.456274,27.2133],[110.462127,27.247075],[110.483517,27.262144],[110.511635,27.273746],[110.526405,27.289911],[110.524272,27.293375],[110.540847,27.305194],[110.553922,27.308218],[110.573998,27.281059],[110.585104,27.278585],[110.598725,27.281444],[110.609064,27.288977],[110.606384,27.301841],[110.609994,27.309537],[110.606548,27.32108],[110.614863,27.324103],[110.632204,27.343283],[110.636526,27.353613],[110.649218,27.365206],[110.659666,27.396793],[110.663113,27.420683],[110.674108,27.434575],[110.688222,27.443854],[110.69331,27.455822],[110.684666,27.468722],[110.68401,27.487877],[110.68029,27.497042],[110.648233,27.529578],[110.632642,27.536106],[110.638112,27.555908],[110.652773,27.565834],[110.653047,27.57417],[110.674053,27.60005],[110.710542,27.606958],[110.714426,27.616003],[110.734174,27.616386],[110.741067,27.62565],[110.743693,27.617318],[110.737949,27.600708],[110.746647,27.603833],[110.755837,27.596815],[110.767052,27.581299],[110.776898,27.574005],[110.7868,27.560515],[110.799437,27.559418],[110.808682,27.563366],[110.824328,27.578831],[110.853485,27.592045],[110.854579,27.601804],[110.847632,27.608986],[110.845662,27.62428],[110.857314,27.621375],[110.852336,27.627568],[110.855564,27.647353],[110.869185,27.655463],[110.86831,27.672887],[110.859995,27.677215],[110.849163,27.675791],[110.837511,27.681489],[110.830345,27.714956],[110.811472,27.757775],[110.795717,27.758158],[110.785706,27.782681],[110.767763,27.795433],[110.78587,27.832914],[110.791614,27.85567],[110.806548,27.864257],[110.837183,27.849216],[110.87668,27.846371],[110.882096,27.850474],[110.894514,27.849872],[110.898507,27.855998],[110.912785,27.864257],[110.922358,27.863273],[110.929689,27.879077],[110.944787,27.896247],[110.973945,27.910899],[110.9804,27.919973],[110.970772,27.925276],[110.966669,27.949269],[110.987402,27.972875],[111.000532,27.992214],[110.990958,27.992979],[110.971155,28.002757],[110.9804,28.029081],[111.013223,28.028917],[111.022031,28.041531],[111.010488,28.044534],[110.992162,28.054034],[110.971319,28.054798],[110.970936,28.065826],[110.962676,28.058129],[110.953485,28.057091],[110.955728,28.050758],[110.942982,28.038364],[110.938059,28.018486],[110.92575,28.021326],[110.92203,28.000626],[110.907698,27.998223],[110.88959,28.000954],[110.878157,28.01308],[110.866177,28.013735],[110.86645,28.025477],[110.884065,28.050977],[110.896155,28.058784],[110.876352,28.081819],[110.858846,28.076361],[110.83319,28.087496],[110.823452,28.087441],[110.844349,28.116364],[110.833026,28.118874],[110.818638,28.13966],[110.849163,28.172277],[110.853266,28.188418],[110.860487,28.198614],[110.858518,28.205157],[110.84889,28.204721],[110.848069,28.213007],[110.840082,28.214643],[110.826789,28.209082],[110.824601,28.203794],[110.804579,28.213225],[110.79982,28.223201],[110.787839,28.231268],[110.806275,28.253013],[110.802719,28.264348],[110.793036,28.275898],[110.783354,28.278241],[110.774601,28.27312],[110.74971,28.280911],[110.739535,28.281619],[110.7211,28.300794],[110.733189,28.311361],[110.741067,28.325466],[110.753266,28.338698],[110.793966,28.354379],[110.825914,28.37169],[110.832752,28.380508],[110.83587,28.393896],[110.853923,28.398468],[110.860433,28.406032],[110.862129,28.418818],[110.88866,28.438948],[110.889207,28.447325],[110.905345,28.455103],[110.923453,28.473268],[110.929744,28.484796],[110.943803,28.478434],[110.959339,28.492245],[110.969897,28.512524],[110.981658,28.51198],[110.993146,28.521765],[111.002009,28.537146],[111.013168,28.545787],[111.029689,28.543668],[111.041888,28.535027],[111.049274,28.53682],[111.067545,28.530135],[111.075915,28.53019],[111.079306,28.53769],[111.054744,28.57062],[111.064481,28.582789],[111.055346,28.590177],[111.057425,28.607938],[111.049766,28.608156],[111.036691,28.596858],[111.020171,28.589742],[111.015794,28.599302],[111.008026,28.598162],[111.010105,28.587352],[111.005729,28.583604],[110.989262,28.587841],[110.978376,28.585505],[110.956166,28.568827],[110.950696,28.568229],[110.943857,28.591644],[110.945936,28.601421],[110.934722,28.617551],[110.946155,28.622004],[110.9554,28.61918],[110.991724,28.619995],[110.995335,28.63786],[111.015247,28.649858],[111.051681,28.652301],[111.064646,28.659739],[111.06191,28.668587],[111.046648,28.684707],[111.051571,28.692088],[111.06574,28.696592],[111.081166,28.69187],[111.09632,28.700499],[111.105455,28.727085],[111.102556,28.734028],[111.115138,28.743358],[111.098453,28.770747],[111.102228,28.777959],[111.086309,28.785387],[111.078759,28.793682],[111.079361,28.805717],[111.072742,28.809837],[111.064427,28.823442],[111.048453,28.825393],[111.040302,28.822683],[111.031494,28.838075],[111.013114,28.851297],[111.002063,28.875732],[110.992435,28.888245],[110.9897,28.89729],[110.972687,28.904223],[110.9583,28.906389],[110.96284,28.917924],[110.950148,28.937308],[110.956768,28.951059],[110.954908,28.960748],[110.965356,28.965186],[110.974602,28.976769],[110.982588,28.976823],[110.98702,28.988404],[110.970717,28.992733],[110.962019,28.99836],[110.949,28.997007],[110.955291,29.002851],[110.943529,29.011778],[110.919076,29.022544],[110.9147,29.035742],[110.903814,29.034769],[110.903102,29.0213],[110.915137,29.008532],[110.905126,28.995709],[110.898452,29.00112],[110.889153,28.992462],[110.860706,28.998955],[110.840465,28.99257],[110.839371,28.987754],[110.850258,28.968542],[110.851844,28.952033],[110.849163,28.946511],[110.8368,28.941855],[110.811417,28.955281],[110.798616,28.955227],[110.798069,28.935738],[110.788879,28.913808],[110.775695,28.906172],[110.76366,28.905847],[110.739371,28.924476],[110.730454,28.926154],[110.716942,28.913429],[110.690903,28.923988],[110.690684,28.908122],[110.678594,28.906172],[110.670498,28.91083],[110.666504,28.923501],[110.656986,28.935034],[110.635979,28.949705],[110.620716,28.965186],[110.593309,28.969354],[110.572576,29.000579],[110.558408,28.995438],[110.541777,28.982289],[110.553539,28.963346],[110.551077,28.953278],[110.533243,28.946132],[110.521919,28.938499],[110.521044,28.93276],[110.538987,28.908447],[110.543966,28.889328],[110.530782,28.874107],[110.524381,28.886132],[110.490191,28.911263],[110.4839,28.910776],[110.476569,28.898807],[110.481766,28.889437],[110.472138,28.887487],[110.468035,28.880228],[110.450913,28.882828],[110.449162,28.889816],[110.432805,28.890791],[110.423123,28.900594],[110.400201,28.89572],[110.390409,28.881149],[110.396317,28.864192],[110.377608,28.850268],[110.365901,28.846095],[110.344785,28.820732],[110.340464,28.80176],[110.342597,28.782025],[110.340409,28.769825],[110.33089,28.760063],[110.310868,28.757135],[110.288275,28.767439],[110.283844,28.762721],[110.28554,28.743521],[110.271536,28.700716],[110.273724,28.689428],[110.270278,28.671409],[110.257695,28.672386],[110.251076,28.659956],[110.244019,28.658164],[110.243363,28.644755],[110.228647,28.653116],[110.218582,28.644158],[110.212072,28.625697],[110.230835,28.615922],[110.224544,28.612066],[110.229905,28.587569],[110.236634,28.57339],[110.224216,28.563285],[110.211087,28.566545],[110.207531,28.575129],[110.188603,28.574966],[110.185868,28.582735],[110.172465,28.584256],[110.167542,28.574749],[110.165463,28.556982],[110.167104,28.535027],[110.150857,28.527798],[110.148614,28.483654],[110.163603,28.467558],[110.15775,28.461412],[110.141667,28.456517],[110.138111,28.447706],[110.126349,28.44863],[110.127389,28.459944],[110.109227,28.463642],[110.10299,28.45271],[110.114205,28.442538],[110.110375,28.425239],[110.111743,28.415935],[110.125802,28.402495],[110.141448,28.383338],[110.152061,28.391719],[110.170058,28.378058],[110.179796,28.37648],[110.190409,28.363252],[110.205835,28.362599],[110.211525,28.346974],[110.203045,28.339787],[110.185047,28.333144],[110.1781,28.316426],[110.178428,28.3027],[110.185759,28.285705],[110.175037,28.280529],[110.186525,28.259389],[110.205999,28.252523],[110.208844,28.243803],[110.226514,28.24086],[110.240299,28.230832],[110.24298,28.207229],[110.235923,28.197688],[110.223013,28.198069],[110.216667,28.204394],[110.191448,28.201231],[110.202006,28.187873],[110.194293,28.173477],[110.174544,28.165733],[110.169183,28.155588],[110.182258,28.145715],[110.177881,28.133987],[110.154905,28.13044],[110.151787,28.120893],[110.166338,28.110635],[110.166776,28.103104],[110.147301,28.092189],[110.123176,28.093663],[110.111743,28.090934],[110.116284,28.075542],[110.124489,28.065771],[110.137454,28.057801],[110.137509,28.047264],[110.130835,28.03962],[110.122192,28.040002],[110.128592,28.024821],[110.117706,28.016411],[110.111141,28.005542],[110.110321,27.988554],[110.09927,27.977082],[110.06962,27.96834],[110.062454,27.959269],[110.047848,27.950034],[110.053975,27.933146],[110.044292,27.918661],[110.02252,27.908001],[110.016064,27.908603],[110.000364,27.919755],[110.001732,27.936153],[109.984117,27.945935],[109.974106,27.93812],[109.970277,27.956865],[109.958406,27.961182],[109.957913,27.951673],[109.951513,27.94834],[109.947793,27.956865],[109.933624,27.959269],[109.914368,27.951236],[109.909335,27.93741],[109.882585,27.946919],[109.876841,27.956318],[109.857147,27.970908],[109.837453,27.975005],[109.842158,27.984402],[109.833186,27.986205],[109.816118,27.980906],[109.797847,27.979322],[109.792924,27.973913],[109.77591,27.999097],[109.784444,28.006744],[109.784718,28.021436],[109.790134,28.029736],[109.752442,28.02149],[109.732201,28.02362],[109.736031,28.012424],[109.730834,28.00516],[109.733077,27.987407],[109.719783,27.98178],[109.713383,27.96752],[109.719127,27.952657],[109.711249,27.949815],[109.696096,27.936972],[109.681982,27.935934],[109.670713,27.921668],[109.661523,27.919536],[109.649871,27.903956],[109.63045,27.90997],[109.622737,27.89324],[109.622518,27.878859],[109.63696,27.876015],[109.643142,27.861905],[109.640516,27.856053],[109.647628,27.843308],[109.647409,27.834993],[109.636796,27.827334],[109.623175,27.826623],[109.626676,27.817103],[109.613383,27.815625],[109.603372,27.79817],[109.59626,27.804627],[109.585975,27.802766],[109.573776,27.808895],[109.559662,27.799209],[109.549761,27.786184],[109.540953,27.786513],[109.533021,27.795871],[109.532802,27.811522],[109.52126,27.812507],[109.51196,27.80014],[109.507255,27.802821],[109.492649,27.795762],[109.485866,27.787881],[109.47673,27.788702],[109.479192,27.799428],[109.475144,27.804736],[109.461358,27.803423],[109.454465,27.794886],[109.461522,27.773322],[109.451128,27.765056],[109.442704,27.74918],[109.426402,27.738941],[109.418415,27.721364]]],[[[109.466938,26.831937],[109.468634,26.826527],[109.482146,26.835029],[109.466938,26.831937]]],[[[109.528535,26.743909],[109.528645,26.744019],[109.522244,26.749378],[109.522135,26.749212],[109.528535,26.743909]]]]}},{"type":"Feature","properties":{"adcode":431300,"name":"娄底市","center":[112.008497,27.728136],"centroid":[111.617993,27.73631],"childrenNum":5,"level":"city","parent":{"adcode":430000},"subFeatureIndex":12,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.092165,27.205652],[112.107209,27.214125],[112.114211,27.210714],[112.112625,27.222322],[112.129529,27.220892],[112.127942,27.227658],[112.137899,27.237009],[112.154091,27.239375],[112.160054,27.247515],[112.1507,27.254609],[112.150535,27.265828],[112.163063,27.277321],[112.162844,27.284193],[112.153654,27.305689],[112.163883,27.324542],[112.174824,27.319651],[112.182374,27.309812],[112.190634,27.311791],[112.197691,27.295794],[112.20535,27.296564],[112.206225,27.285128],[112.213938,27.268908],[112.223785,27.261209],[112.233085,27.265388],[112.239048,27.287822],[112.254912,27.295684],[112.256116,27.310691],[112.267275,27.305084],[112.279857,27.31223],[112.287844,27.328939],[112.282593,27.337073],[112.299715,27.358723],[112.309125,27.360426],[112.312133,27.367074],[112.321543,27.363998],[112.331061,27.370206],[112.339267,27.365921],[112.358742,27.362459],[112.370503,27.363888],[112.368151,27.356086],[112.408523,27.36147],[112.432374,27.354218],[112.438118,27.344602],[112.459891,27.355152],[112.471871,27.372404],[112.485712,27.359877],[112.489596,27.371909],[112.49988,27.374931],[112.499005,27.397727],[112.50453,27.403988],[112.51279,27.403164],[112.508359,27.417004],[112.522418,27.420464],[112.521981,27.429194],[112.500974,27.445831],[112.480952,27.453132],[112.47023,27.461916],[112.460164,27.490456],[112.446379,27.491499],[112.429639,27.499785],[112.435985,27.514546],[112.427123,27.526067],[112.417604,27.527713],[112.406007,27.524092],[112.399606,27.510266],[112.401193,27.503736],[112.391948,27.499731],[112.393479,27.492542],[112.373731,27.48656],[112.365799,27.480907],[112.348129,27.488206],[112.346105,27.496273],[112.333851,27.495725],[112.328709,27.490511],[112.321652,27.496493],[112.306389,27.492816],[112.301411,27.503188],[112.308578,27.53457],[112.325317,27.556182],[112.332429,27.569947],[112.334289,27.581408],[112.330788,27.602517],[112.298019,27.620991],[112.283906,27.633652],[112.281882,27.643298],[112.288884,27.646915],[112.313501,27.651025],[112.315142,27.664285],[112.320613,27.675298],[112.315744,27.685871],[112.304201,27.697868],[112.290525,27.7057],[112.268534,27.700935],[112.243369,27.707727],[112.240853,27.691075],[112.230623,27.685871],[112.222636,27.671517],[112.216564,27.675846],[112.2071,27.670531],[112.206827,27.651627],[112.199387,27.654313],[112.176083,27.650203],[112.166673,27.660066],[112.154857,27.64949],[112.145776,27.665162],[112.137953,27.666258],[112.134616,27.654696],[112.124879,27.646147],[112.11722,27.645435],[112.113664,27.653436],[112.104255,27.653381],[112.091235,27.642366],[112.078052,27.645764],[112.067001,27.658477],[112.07094,27.6696],[112.05803,27.680393],[112.048183,27.674038],[112.048785,27.688336],[112.052997,27.690527],[112.045338,27.706303],[112.053489,27.714135],[112.071761,27.720652],[112.083303,27.71523],[112.092111,27.716325],[112.081826,27.721747],[112.087187,27.733739],[112.099113,27.73467],[112.100699,27.722295],[112.106389,27.717147],[112.110929,27.738722],[112.130623,27.747428],[112.11268,27.761991],[112.098675,27.765001],[112.097745,27.776551],[112.106498,27.790617],[112.101246,27.807363],[112.087023,27.81382],[112.069901,27.80397],[112.04687,27.817048],[112.040524,27.839534],[112.026957,27.835157],[112.014813,27.847083],[112.012296,27.87864],[111.999714,27.907837],[111.99025,27.940962],[111.982264,27.954351],[111.964156,27.965171],[111.951246,27.987079],[111.936311,27.991231],[111.926848,27.980851],[111.912624,27.973803],[111.900097,27.981343],[111.908303,28.000189],[111.896377,28.00871],[111.902613,28.021982],[111.891837,28.026951],[111.870173,28.026678],[111.858193,28.030938],[111.848346,28.028644],[111.838335,28.019961],[111.823401,28.022582],[111.796103,28.00516],[111.793094,27.989701],[111.778871,27.996639],[111.779418,28.007072],[111.773893,28.010676],[111.765633,28.006143],[111.747963,28.003904],[111.743368,27.994235],[111.726792,27.983474],[111.71514,27.993361],[111.706114,27.99063],[111.697689,27.994181],[111.688499,27.99063],[111.684888,28.002975],[111.691289,28.009912],[111.683466,28.0145],[111.68549,28.040493],[111.672853,28.036453],[111.662952,28.014227],[111.652284,28.015756],[111.651573,28.021163],[111.662788,28.024712],[111.651518,28.026241],[111.634286,28.015319],[111.621704,28.016083],[111.601682,28.034542],[111.589811,28.027115],[111.588991,28.018596],[111.599768,28.009693],[111.592766,28.006471],[111.583794,27.994454],[111.55026,27.974841],[111.529527,27.986587],[111.542054,27.994126],[111.551409,27.991886],[111.564264,28.018104],[111.575807,28.018869],[111.567547,28.032903],[111.543859,28.020398],[111.540687,28.035579],[111.543914,28.047537],[111.534013,28.054143],[111.527886,28.049393],[111.514702,28.06528],[111.506879,28.053324],[111.522032,28.044479],[111.524439,28.031211],[111.517875,28.030992],[111.501956,28.04164],[111.494789,28.037873],[111.49189,28.066863],[111.493312,28.074887],[111.510982,28.090279],[111.500424,28.092626],[111.499877,28.101412],[111.482645,28.120402],[111.481387,28.138351],[111.49096,28.153024],[111.485763,28.159515],[111.495719,28.189945],[111.483137,28.204176],[111.477448,28.199323],[111.450095,28.187382],[111.445336,28.189509],[111.448454,28.202867],[111.434833,28.208101],[111.398016,28.180021],[111.386911,28.17893],[111.382918,28.196324],[111.352064,28.199051],[111.341835,28.193162],[111.332097,28.195943],[111.337732,28.20592],[111.32597,28.226526],[111.314373,28.234211],[111.296047,28.225436],[111.285215,28.214806],[111.279034,28.191036],[111.257753,28.167532],[111.235653,28.154115],[111.225149,28.161479],[111.216014,28.159297],[111.186528,28.160606],[111.189537,28.154988],[111.160926,28.122857],[111.151571,28.122966],[111.140959,28.103431],[111.137895,28.085968],[111.123289,28.068774],[111.114208,28.064134],[111.118475,28.050158],[111.093803,28.02717],[111.097906,28.006799],[111.081987,27.995601],[111.070608,27.995273],[111.063223,28.007236],[111.04156,28.022309],[111.03505,28.033723],[111.022031,28.027497],[111.013223,28.028917],[110.9804,28.029081],[110.971155,28.002757],[110.990958,27.992979],[111.000532,27.992214],[110.987402,27.972875],[110.966669,27.949269],[110.970772,27.925276],[110.9804,27.919973],[110.973945,27.910899],[110.944787,27.896247],[110.929689,27.879077],[110.922358,27.863273],[110.912785,27.864257],[110.898507,27.855998],[110.894514,27.849872],[110.882096,27.850474],[110.87668,27.846371],[110.837183,27.849216],[110.806548,27.864257],[110.791614,27.85567],[110.78587,27.832914],[110.767763,27.795433],[110.785706,27.782681],[110.795717,27.758158],[110.811472,27.757775],[110.830345,27.714956],[110.837511,27.681489],[110.849163,27.675791],[110.859995,27.677215],[110.86831,27.672887],[110.869185,27.655463],[110.882916,27.650696],[110.91749,27.656395],[110.945717,27.653819],[110.983792,27.660121],[110.994733,27.652395],[110.998453,27.639352],[110.994076,27.630144],[111.008081,27.625869],[111.02575,27.63568],[111.040247,27.631843],[111.059941,27.631295],[111.070827,27.620607],[111.07411,27.591442],[111.080291,27.588756],[111.106932,27.590729],[111.116287,27.577186],[111.130237,27.581408],[111.143147,27.578008],[111.150094,27.582176],[111.163442,27.576473],[111.169515,27.562653],[111.182151,27.56375],[111.182863,27.557005],[111.197414,27.549161],[111.204143,27.552781],[111.220773,27.551739],[111.223782,27.536161],[111.244624,27.52508],[111.256112,27.542799],[111.270718,27.541756],[111.278377,27.555798],[111.300861,27.567096],[111.322141,27.546858],[111.349822,27.537039],[111.357097,27.522885],[111.367765,27.524915],[111.376518,27.532815],[111.374603,27.542963],[111.388388,27.544938],[111.403979,27.557388],[111.414373,27.575212],[111.430347,27.59062],[111.441944,27.597473],[111.457918,27.595445],[111.468257,27.579599],[111.477831,27.578666],[111.489373,27.594238],[111.522251,27.605532],[111.542656,27.609644],[111.553597,27.626034],[111.560927,27.630583],[111.567984,27.627075],[111.568148,27.61688],[111.574056,27.607725],[111.589046,27.606574],[111.594625,27.582944],[111.6077,27.57587],[111.615577,27.566163],[111.620665,27.571757],[111.612405,27.580695],[111.625479,27.575212],[111.635162,27.578776],[111.641398,27.574663],[111.635599,27.562379],[111.625917,27.556127],[111.630621,27.553056],[111.639866,27.559198],[111.641672,27.54779],[111.652831,27.540111],[111.650096,27.534022],[111.638663,27.537917],[111.643914,27.520142],[111.654035,27.514765],[111.668915,27.537149],[111.67537,27.537149],[111.690742,27.523708],[111.692985,27.533857],[111.717766,27.516576],[111.73095,27.518222],[111.744079,27.499401],[111.78746,27.494627],[111.790195,27.470479],[111.796377,27.468173],[111.803598,27.474815],[111.810764,27.471357],[111.813609,27.45434],[111.819517,27.44929],[111.835162,27.44605],[111.840195,27.456646],[111.855294,27.461147],[111.882537,27.438364],[111.892766,27.426833],[111.912843,27.410304],[111.907318,27.39542],[111.909451,27.388939],[111.940852,27.369217],[111.970502,27.357514],[111.990305,27.341579],[111.98571,27.332731],[111.990797,27.317342],[112.01804,27.317562],[112.025152,27.3036],[112.041071,27.289142],[112.051301,27.292385],[112.062406,27.285843],[112.065196,27.250815],[112.069244,27.235909],[112.068424,27.218636],[112.085327,27.204002],[112.092165,27.205652]]]]}},{"type":"Feature","properties":{"adcode":433100,"name":"湘西土家族苗族自治州","center":[109.739735,28.314296],"centroid":[109.731854,28.694703],"childrenNum":8,"level":"city","parent":{"adcode":430000},"subFeatureIndex":13,"acroutes":[100000,430000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.418415,27.721364],[109.426402,27.738941],[109.442704,27.74918],[109.451128,27.765056],[109.461522,27.773322],[109.454465,27.794886],[109.461358,27.803423],[109.475144,27.804736],[109.479192,27.799428],[109.47673,27.788702],[109.485866,27.787881],[109.492649,27.795762],[109.507255,27.802821],[109.51196,27.80014],[109.52126,27.812507],[109.532802,27.811522],[109.533021,27.795871],[109.540953,27.786513],[109.549761,27.786184],[109.559662,27.799209],[109.573776,27.808895],[109.585975,27.802766],[109.59626,27.804627],[109.603372,27.79817],[109.613383,27.815625],[109.626676,27.817103],[109.623175,27.826623],[109.636796,27.827334],[109.647409,27.834993],[109.647628,27.843308],[109.640516,27.856053],[109.643142,27.861905],[109.63696,27.876015],[109.622518,27.878859],[109.622737,27.89324],[109.63045,27.90997],[109.649871,27.903956],[109.661523,27.919536],[109.670713,27.921668],[109.681982,27.935934],[109.696096,27.936972],[109.711249,27.949815],[109.719127,27.952657],[109.713383,27.96752],[109.719783,27.98178],[109.733077,27.987407],[109.730834,28.00516],[109.736031,28.012424],[109.732201,28.02362],[109.752442,28.02149],[109.790134,28.029736],[109.784718,28.021436],[109.784444,28.006744],[109.77591,27.999097],[109.792924,27.973913],[109.797847,27.979322],[109.816118,27.980906],[109.833186,27.986205],[109.842158,27.984402],[109.837453,27.975005],[109.857147,27.970908],[109.876841,27.956318],[109.882585,27.946919],[109.909335,27.93741],[109.914368,27.951236],[109.933624,27.959269],[109.947793,27.956865],[109.951513,27.94834],[109.957913,27.951673],[109.958406,27.961182],[109.970277,27.956865],[109.974106,27.93812],[109.984117,27.945935],[110.001732,27.936153],[110.000364,27.919755],[110.016064,27.908603],[110.02252,27.908001],[110.044292,27.918661],[110.053975,27.933146],[110.047848,27.950034],[110.062454,27.959269],[110.06962,27.96834],[110.09927,27.977082],[110.110321,27.988554],[110.111141,28.005542],[110.117706,28.016411],[110.128592,28.024821],[110.122192,28.040002],[110.130835,28.03962],[110.137509,28.047264],[110.137454,28.057801],[110.124489,28.065771],[110.116284,28.075542],[110.111743,28.090934],[110.123176,28.093663],[110.147301,28.092189],[110.166776,28.103104],[110.166338,28.110635],[110.151787,28.120893],[110.154905,28.13044],[110.177881,28.133987],[110.182258,28.145715],[110.169183,28.155588],[110.174544,28.165733],[110.194293,28.173477],[110.202006,28.187873],[110.191448,28.201231],[110.216667,28.204394],[110.223013,28.198069],[110.235923,28.197688],[110.24298,28.207229],[110.240299,28.230832],[110.226514,28.24086],[110.208844,28.243803],[110.205999,28.252523],[110.186525,28.259389],[110.175037,28.280529],[110.185759,28.285705],[110.178428,28.3027],[110.1781,28.316426],[110.185047,28.333144],[110.203045,28.339787],[110.211525,28.346974],[110.205835,28.362599],[110.190409,28.363252],[110.179796,28.37648],[110.170058,28.378058],[110.152061,28.391719],[110.141448,28.383338],[110.125802,28.402495],[110.111743,28.415935],[110.110375,28.425239],[110.114205,28.442538],[110.10299,28.45271],[110.109227,28.463642],[110.127389,28.459944],[110.126349,28.44863],[110.138111,28.447706],[110.141667,28.456517],[110.15775,28.461412],[110.163603,28.467558],[110.148614,28.483654],[110.150857,28.527798],[110.167104,28.535027],[110.165463,28.556982],[110.167542,28.574749],[110.172465,28.584256],[110.185868,28.582735],[110.188603,28.574966],[110.207531,28.575129],[110.211087,28.566545],[110.224216,28.563285],[110.236634,28.57339],[110.229905,28.587569],[110.224544,28.612066],[110.230835,28.615922],[110.212072,28.625697],[110.218582,28.644158],[110.228647,28.653116],[110.243363,28.644755],[110.244019,28.658164],[110.251076,28.659956],[110.257695,28.672386],[110.270278,28.671409],[110.273724,28.689428],[110.271536,28.700716],[110.28554,28.743521],[110.283844,28.762721],[110.288275,28.767439],[110.310868,28.757135],[110.33089,28.760063],[110.340409,28.769825],[110.342597,28.782025],[110.340464,28.80176],[110.344785,28.820732],[110.365901,28.846095],[110.377608,28.850268],[110.396317,28.864192],[110.390409,28.881149],[110.384665,28.885428],[110.358735,28.891224],[110.364807,28.907959],[110.361087,28.927454],[110.331,28.941152],[110.314588,28.938336],[110.308133,28.944292],[110.306492,28.958258],[110.319184,28.967297],[110.318965,28.973143],[110.33193,28.981315],[110.327991,28.983858],[110.346208,29.011129],[110.347357,29.019406],[110.341613,29.02725],[110.340354,29.041313],[110.323122,29.041746],[110.313987,29.035905],[110.305289,29.038609],[110.299599,29.057159],[110.304194,29.091331],[110.284446,29.085438],[110.273505,29.074409],[110.261962,29.069542],[110.249654,29.076896],[110.250529,29.093655],[110.264041,29.110142],[110.261634,29.1196],[110.238986,29.122248],[110.216722,29.129112],[110.223997,29.136461],[110.215901,29.136083],[110.205562,29.151968],[110.203921,29.161044],[110.189643,29.162827],[110.179085,29.153967],[110.164861,29.165528],[110.158187,29.165204],[110.140408,29.14543],[110.128428,29.136407],[110.119128,29.141216],[110.099872,29.139595],[110.089041,29.151266],[110.090518,29.167311],[110.084828,29.184434],[110.070058,29.211867],[110.073176,29.225636],[110.080616,29.2326],[110.082859,29.251223],[110.103537,29.253436],[110.113548,29.279017],[110.112564,29.289701],[110.097192,29.308853],[110.068417,29.323795],[110.049216,29.314571],[110.016338,29.288298],[110.001568,29.29542],[109.975528,29.299142],[109.951294,29.318077],[109.936141,29.325143],[109.952935,29.333827],[109.960375,29.341269],[109.954795,29.358147],[109.945167,29.369901],[109.952662,29.383486],[109.945276,29.398417],[109.935867,29.434414],[109.925637,29.444435],[109.908405,29.441741],[109.828919,29.373297],[109.821206,29.388661],[109.79451,29.411675],[109.795276,29.417117],[109.808241,29.427086],[109.801895,29.448852],[109.788383,29.463935],[109.779357,29.478046],[109.778755,29.486878],[109.769455,29.491779],[109.76579,29.500017],[109.752934,29.509062],[109.740954,29.534256],[109.734663,29.540984],[109.738766,29.547604],[109.74916,29.549487],[109.760101,29.561649],[109.782366,29.576608],[109.768525,29.587314],[109.764915,29.596136],[109.769565,29.606518],[109.761687,29.615177],[109.745713,29.615339],[109.72695,29.607863],[109.715571,29.613133],[109.701567,29.608239],[109.678755,29.60797],[109.663492,29.599687],[109.650637,29.611574],[109.652114,29.623782],[109.634553,29.625234],[109.609444,29.634483],[109.575417,29.627869],[109.575636,29.619856],[109.558678,29.607056],[109.550417,29.612811],[109.531107,29.615607],[109.529028,29.626041],[109.5165,29.625987],[109.514312,29.618028],[109.520275,29.608454],[109.514531,29.600278],[109.501457,29.605442],[109.495931,29.598718],[109.503645,29.59775],[109.504028,29.588605],[109.497627,29.568107],[109.488656,29.553201],[109.479903,29.55277],[109.467047,29.559981],[109.46185,29.554277],[109.458623,29.530542],[109.465242,29.515577],[109.458568,29.513208],[109.447627,29.520745],[109.446533,29.528766],[109.430997,29.529035],[109.431325,29.505294],[109.440625,29.493179],[109.434881,29.489032],[109.418305,29.498025],[109.40999,29.490594],[109.412835,29.484724],[109.405121,29.468729],[109.417102,29.454778],[109.403152,29.446159],[109.404793,29.434414],[109.394946,29.439694],[109.3729,29.424985],[109.368579,29.411351],[109.385264,29.393566],[109.382036,29.382893],[109.391445,29.372219],[109.376784,29.376532],[109.368798,29.382893],[109.347408,29.373782],[109.343962,29.369415],[109.340132,29.335984],[109.344126,29.323201],[109.344126,29.306425],[109.352277,29.305239],[109.352167,29.284629],[109.326839,29.260669],[109.315077,29.252087],[109.286084,29.242047],[109.261357,29.227795],[109.257856,29.222612],[109.276073,29.200312],[109.27104,29.183245],[109.273885,29.172551],[109.261467,29.161044],[109.264038,29.144026],[109.277167,29.134083],[109.274158,29.12214],[109.255942,29.123221],[109.245329,29.115114],[109.232583,29.119438],[109.225963,29.113277],[109.234497,29.096845],[109.235044,29.088844],[109.256106,29.087168],[109.266226,29.079545],[109.287834,29.071002],[109.301182,29.070678],[109.312233,29.066352],[109.319618,29.042557],[109.312123,29.035147],[109.304848,29.020813],[109.29429,29.014537],[109.29243,28.987646],[109.284826,28.972601],[109.272353,28.970924],[109.26174,28.953007],[109.255395,28.926154],[109.256872,28.907743],[109.240405,28.892741],[109.235427,28.881691],[109.23406,28.863813],[109.242648,28.85108],[109.239749,28.830108],[109.245821,28.812981],[109.246423,28.801652],[109.241882,28.794279],[109.241281,28.776495],[109.261303,28.774922],[109.256215,28.765595],[109.279629,28.756592],[109.28116,28.750572],[109.292594,28.750247],[109.299979,28.744931],[109.299158,28.736741],[109.288217,28.727302],[109.294673,28.71911],[109.284935,28.713847],[109.271478,28.698979],[109.265023,28.699468],[109.252933,28.691545],[109.266171,28.680202],[109.270876,28.671789],[109.240679,28.655776],[109.22476,28.650673],[109.202933,28.637968],[109.19314,28.636231],[109.181434,28.621733],[109.186357,28.610654],[109.201456,28.598433],[109.235482,28.619615],[109.249377,28.608644],[109.258896,28.605603],[109.278042,28.612337],[109.287014,28.626837],[109.300143,28.626457],[109.306653,28.620646],[109.30906,28.607612],[109.304465,28.602779],[109.32022,28.579801],[109.304738,28.579041],[109.29511,28.567305],[109.288929,28.546331],[109.274158,28.538886],[109.274705,28.524809],[109.28034,28.520406],[109.27197,28.513992],[109.273994,28.488113],[109.266335,28.481805],[109.26081,28.46473],[109.26464,28.457659],[109.260154,28.451296],[109.258294,28.428993],[109.264366,28.404399],[109.264694,28.392481],[109.276565,28.376861],[109.288381,28.374303],[109.28778,28.36445],[109.268578,28.338099],[109.275088,28.312668],[109.297572,28.292787],[109.294946,28.278568],[109.306379,28.274209],[109.314913,28.276389],[109.340953,28.293713],[109.363108,28.282981],[109.352167,28.268543],[109.359498,28.265873],[109.365898,28.274209],[109.376894,28.276934],[109.399651,28.269306],[109.387999,28.268107],[109.367649,28.255248],[109.372846,28.248381],[109.367266,28.239062],[109.356762,28.233503],[109.359552,28.220421],[109.345767,28.206683],[109.34046,28.190381],[109.34325,28.173586],[109.341828,28.162133],[109.335811,28.158206],[109.338163,28.141788],[109.328097,28.12684],[109.325417,28.115218],[109.314366,28.103923],[109.312123,28.083511],[109.304957,28.076416],[109.298721,28.032521],[109.305887,28.030009],[109.311522,28.037982],[109.325253,28.042787],[109.334552,28.062223],[109.347025,28.060367],[109.370548,28.046063],[109.379137,28.033067],[109.364859,28.008819],[109.344673,28.006198],[109.321587,27.991777],[109.320165,27.970962],[109.307145,27.968012],[109.301784,27.95834],[109.313819,27.93331],[109.314859,27.918115],[109.311905,27.907783],[109.320603,27.895591],[109.317758,27.88553],[109.321916,27.867976],[109.337561,27.869507],[109.326839,27.858624],[109.345548,27.840737],[109.340242,27.821425],[109.342649,27.800742],[109.331215,27.791602],[109.341062,27.790234],[109.333021,27.782791],[109.338163,27.775894],[109.34987,27.771077],[109.364312,27.759801],[109.362999,27.745019],[109.377988,27.73801],[109.365898,27.722185],[109.392375,27.726347],[109.400307,27.720268],[109.412616,27.725361],[109.418415,27.721364]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/440000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/440000.json new file mode 100644 index 0000000..906ebc2 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/440000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":440100,"name":"广州市","center":[113.280637,23.125178],"centroid":[113.544372,23.329249],"childrenNum":11,"level":"city","parent":{"adcode":440000},"subFeatureIndex":0,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.365116,22.772595],[113.412172,22.742849],[113.42612,22.738014],[113.447808,22.735836],[113.467964,22.728504],[113.464822,22.72096],[113.491875,22.699811],[113.523373,22.679297],[113.540693,22.666222],[113.533106,22.656388],[113.536861,22.647511],[113.561615,22.607528],[113.578552,22.604603],[113.589971,22.59519],[113.599628,22.594393],[113.62078,22.579554],[113.639326,22.548276],[113.651588,22.515715],[113.692052,22.515129],[113.728149,22.521993],[113.740487,22.534284],[113.716883,22.645172],[113.685308,22.717719],[113.678181,22.726113],[113.648139,22.761759],[113.612119,22.802281],[113.58407,22.831325],[113.571195,22.853143],[113.575104,22.888331],[113.564298,22.906903],[113.550503,22.936189],[113.541766,22.959369],[113.529198,22.982599],[113.52299,23.011338],[113.522913,23.037262],[113.531957,23.050938],[113.543759,23.06228],[113.54897,23.076006],[113.556327,23.081252],[113.586446,23.08777],[113.60139,23.0954],[113.610433,23.103772],[113.640245,23.103878],[113.642698,23.113467],[113.651281,23.119295],[113.661244,23.117971],[113.662011,23.111454],[113.670671,23.116434],[113.687837,23.119772],[113.71696,23.138895],[113.738572,23.141331],[113.754052,23.129572],[113.777427,23.131108],[113.791298,23.127665],[113.814673,23.127771],[113.841113,23.116169],[113.844715,23.125599],[113.849849,23.148853],[113.858739,23.157221],[113.874757,23.165377],[113.895679,23.164529],[113.902116,23.177186],[113.889011,23.178616],[113.8838,23.191694],[113.893993,23.21266],[113.903802,23.212554],[113.890084,23.242144],[113.895142,23.253523],[113.877209,23.264213],[113.890314,23.282681],[113.888475,23.290512],[113.894989,23.314689],[113.889394,23.334154],[113.895985,23.34505],[113.927483,23.339972],[113.939285,23.342934],[113.958905,23.33262],[113.958445,23.314953],[113.977451,23.304849],[113.978217,23.30104],[113.996687,23.297443],[113.996151,23.309346],[113.984195,23.330505],[113.993928,23.333149],[114.000902,23.346636],[113.990556,23.354833],[113.982049,23.379369],[113.995997,23.386771],[114.000442,23.39338],[113.986801,23.405591],[113.984195,23.421238],[113.98795,23.431439],[113.975382,23.429378],[113.960054,23.43276],[113.952774,23.442907],[113.955456,23.466053],[113.974462,23.46489],[113.981743,23.472129],[113.974156,23.478839],[113.96105,23.480371],[113.938749,23.476726],[113.931162,23.483066],[113.940895,23.483594],[113.946643,23.492522],[113.929936,23.494213],[113.923115,23.503088],[113.911543,23.504144],[113.906408,23.511856],[113.89315,23.520254],[113.888168,23.535095],[113.871384,23.541327],[113.862495,23.566303],[113.852838,23.570579],[113.864027,23.587368],[113.858356,23.593491],[113.859582,23.60996],[113.843565,23.617877],[113.834215,23.61756],[113.832223,23.624263],[113.817432,23.623471],[113.816742,23.63582],[113.825555,23.639883],[113.827778,23.648009],[113.818811,23.656188],[113.839963,23.655449],[113.847857,23.679348],[113.881884,23.685151],[113.897595,23.700184],[113.900967,23.715426],[113.912386,23.716534],[113.920049,23.729454],[113.93645,23.732143],[113.940282,23.738155],[113.955916,23.732671],[113.96105,23.738207],[113.972853,23.739262],[113.976071,23.757716],[113.998756,23.762988],[114.013087,23.777959],[114.017686,23.778276],[114.009945,23.762988],[114.018222,23.76283],[114.02489,23.752549],[114.027419,23.760141],[114.038454,23.771212],[114.05999,23.775851],[114.056311,23.784021],[114.037228,23.793509],[114.047728,23.803312],[114.035312,23.813378],[114.040294,23.824444],[114.052249,23.830029],[114.057767,23.846784],[114.050487,23.85474],[114.047728,23.867488],[114.041827,23.871491],[114.04267,23.889874],[114.036232,23.901776],[114.031327,23.906305],[114.033856,23.91889],[114.017992,23.925261],[114.008413,23.933001],[113.984502,23.926157],[113.982126,23.929684],[113.952697,23.929632],[113.941201,23.923577],[113.93645,23.928737],[113.907787,23.924577],[113.892536,23.931685],[113.887478,23.923998],[113.879815,23.930369],[113.865177,23.928947],[113.851152,23.920312],[113.841496,23.918732],[113.807315,23.900407],[113.800265,23.902566],[113.791605,23.903882],[113.781105,23.896299],[113.775358,23.877918],[113.767081,23.871439],[113.758191,23.857479],[113.749071,23.854371],[113.742327,23.859165],[113.733667,23.855003],[113.713511,23.862484],[113.709756,23.856267],[113.718033,23.843887],[113.714814,23.834982],[113.720178,23.825129],[113.706384,23.815275],[113.687378,23.825709],[113.684312,23.812956],[113.666379,23.813694],[113.651664,23.820123],[113.640245,23.814274],[113.633731,23.797198],[113.615185,23.779804],[113.626144,23.767416],[113.636414,23.750229],[113.630742,23.738946],[113.63649,23.731985],[113.631662,23.727872],[113.628137,23.711682],[113.638176,23.704562],[113.622619,23.699446],[113.623845,23.694699],[113.61166,23.686206],[113.615721,23.680192],[113.597252,23.664946],[113.587212,23.669008],[113.587289,23.675234],[113.568053,23.679454],[113.568053,23.690215],[113.55878,23.700712],[113.546901,23.702558],[113.545445,23.696387],[113.527052,23.686153],[113.510268,23.682461],[113.481069,23.684043],[113.468731,23.691006],[113.464286,23.70799],[113.443823,23.715901],[113.438459,23.727134],[113.404278,23.723495],[113.397841,23.730562],[113.378375,23.731511],[113.372397,23.709731],[113.366343,23.710311],[113.347413,23.667215],[113.338447,23.665737],[113.334845,23.656399],[113.327947,23.655502],[113.32833,23.645371],[113.31101,23.643313],[113.289245,23.644368],[113.299438,23.637456],[113.290548,23.617085],[113.280049,23.608957],[113.2766,23.615977],[113.248474,23.601567],[113.24035,23.606212],[113.245868,23.588265],[113.227859,23.594441],[113.227015,23.585731],[113.214524,23.584253],[113.202262,23.576492],[113.200805,23.561815],[113.210155,23.552997],[113.211918,23.543914],[113.191149,23.523212],[113.192069,23.514761],[113.172066,23.512384],[113.15352,23.502823],[113.128689,23.512596],[113.108994,23.497964],[113.083933,23.494266],[113.075503,23.484228],[113.063854,23.482537],[113.055884,23.471971],[113.042932,23.474137],[113.018025,23.469065],[113.00469,23.462037],[112.993347,23.466845],[112.975184,23.463622],[112.972962,23.450042],[112.961926,23.44444],[112.96024,23.425995],[112.974188,23.434081],[112.978633,23.441586],[112.989132,23.443277],[112.982771,23.434451],[112.988673,23.419811],[113.001088,23.406332],[112.990588,23.402631],[112.988366,23.390102],[112.980626,23.380268],[112.989822,23.354728],[113.012583,23.352612],[113.018331,23.341347],[113.034808,23.357372],[113.043392,23.351131],[113.027604,23.33352],[113.023466,23.324898],[113.037567,23.320084],[113.032509,23.300881],[113.042549,23.283422],[113.051439,23.278395],[113.052742,23.26342],[113.044925,23.2522],[113.053508,23.253418],[113.070215,23.248813],[113.079795,23.250083],[113.081941,23.261726],[113.072284,23.284268],[113.086156,23.285274],[113.090524,23.28993],[113.105545,23.289718],[113.11022,23.295961],[113.105775,23.302733],[113.124704,23.307653],[113.128,23.31453],[113.150838,23.297972],[113.150608,23.289983],[113.160877,23.286649],[113.177738,23.271304],[113.182029,23.251459],[113.176511,23.236587],[113.177508,23.220866],[113.191072,23.214937],[113.204867,23.201172],[113.209006,23.192171],[113.209465,23.17708],[113.1877,23.159127],[113.186857,23.14827],[113.191992,23.14345],[113.211535,23.142603],[113.209695,23.121838],[113.203718,23.121891],[113.208163,23.099692],[113.215826,23.100646],[113.208776,23.083531],[113.193678,23.083902],[113.177201,23.076695],[113.184865,23.05963],[113.195747,23.056185],[113.211688,23.043305],[113.225713,23.041874],[113.254912,23.044842],[113.25836,23.013989],[113.250007,23.009058],[113.251923,22.970348],[113.267557,22.958786],[113.285183,22.951095],[113.298212,22.934014],[113.282424,22.927383],[113.28595,22.901438],[113.27706,22.894699],[113.300434,22.87708],[113.301354,22.866094],[113.296296,22.862485],[113.309631,22.851179],[113.312083,22.830369],[113.335994,22.817945],[113.364273,22.823467],[113.37439,22.822618],[113.393396,22.809822],[113.38305,22.799308],[113.356533,22.792989],[113.365116,22.772595]]]]}},{"type":"Feature","properties":{"adcode":440200,"name":"韶关市","center":[113.591544,24.801322],"centroid":[113.779323,24.81941],"childrenNum":10,"level":"city","parent":{"adcode":440000},"subFeatureIndex":1,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.800265,23.902566],[113.807315,23.900407],[113.841496,23.918732],[113.851152,23.920312],[113.865177,23.928947],[113.879815,23.930369],[113.887478,23.923998],[113.892536,23.931685],[113.907787,23.924577],[113.93645,23.928737],[113.941201,23.923577],[113.952697,23.929632],[113.982126,23.929684],[113.984502,23.926157],[114.008413,23.933001],[114.017992,23.925261],[114.033856,23.91889],[114.031327,23.906305],[114.036232,23.901776],[114.04129,23.906937],[114.056771,23.935844],[114.074398,23.930895],[114.075624,23.924366],[114.117008,23.929737],[114.119844,23.936002],[114.142835,23.940425],[114.158162,23.939846],[114.16368,23.953586],[114.174333,23.959429],[114.186518,23.95627],[114.19196,23.9449],[114.201999,23.941267],[114.213341,23.946163],[114.21702,23.942636],[114.238479,23.941899],[114.244303,23.948269],[114.258711,23.952744],[114.263309,23.960218],[114.271816,23.959482],[114.271739,23.948479],[114.251047,23.940477],[114.254649,23.934686],[114.247905,23.929737],[114.236716,23.910676],[114.248671,23.906516],[114.263156,23.911044],[114.268367,23.902829],[114.279633,23.901091],[114.28814,23.90541],[114.303161,23.891454],[114.32163,23.894403],[114.331517,23.900512],[114.34991,23.887925],[114.362632,23.901091],[114.360486,23.910412],[114.36769,23.912519],[114.370449,23.92742],[114.382481,23.932159],[114.378036,23.942794],[114.386696,23.95627],[114.384856,23.967798],[114.389685,23.97043],[114.382941,23.981851],[114.385393,23.994482],[114.391984,23.991693],[114.385546,24.003901],[114.389685,24.012741],[114.399494,24.018003],[114.398038,24.026],[114.412523,24.027421],[114.420416,24.019582],[114.425628,24.032998],[114.440725,24.033208],[114.436587,24.048569],[114.437813,24.062192],[114.44586,24.07066],[114.46364,24.07592],[114.481267,24.086595],[114.493222,24.106787],[114.489697,24.114043],[114.495828,24.118617],[114.509469,24.106682],[114.522957,24.12419],[114.527939,24.135807],[114.533993,24.138856],[114.535833,24.124347],[114.546715,24.130393],[114.554226,24.124295],[114.565568,24.136175],[114.558134,24.15063],[114.568327,24.159303],[114.594077,24.164138],[114.600055,24.174911],[114.590782,24.187838],[114.590935,24.203653],[114.597602,24.21248],[114.591318,24.225981],[114.577293,24.227241],[114.566028,24.233019],[114.556065,24.245888],[114.548324,24.230603],[114.512458,24.210904],[114.511155,24.205335],[114.491613,24.192357],[114.48119,24.172284],[114.474216,24.16624],[114.470537,24.171811],[114.460574,24.169604],[114.46272,24.161931],[114.469848,24.162141],[114.469311,24.144376],[114.463946,24.14017],[114.474063,24.135229],[114.482953,24.118827],[114.479044,24.112939],[114.46387,24.110836],[114.446856,24.121245],[114.439499,24.121982],[114.433215,24.133337],[114.422179,24.131181],[114.419956,24.139329],[114.393517,24.140959],[114.378879,24.139172],[114.365161,24.132233],[114.352209,24.143219],[114.340713,24.135807],[114.337418,24.125294],[114.329831,24.126871],[114.33029,24.137279],[114.316419,24.147319],[114.306533,24.165399],[114.292891,24.175069],[114.289289,24.1819],[114.298026,24.195142],[114.290899,24.207594],[114.274192,24.212742],[114.274958,24.224195],[114.263156,24.246676],[114.254802,24.256707],[114.272889,24.257495],[114.254649,24.266055],[114.266451,24.272776],[114.263692,24.27829],[114.279326,24.303176],[114.280553,24.313098],[114.272966,24.324856],[114.280859,24.337348],[114.292508,24.346952],[114.293581,24.352672],[114.278637,24.364951],[114.249208,24.362695],[114.249898,24.386935],[114.254879,24.400155],[114.245683,24.411328],[114.242004,24.426014],[114.257868,24.435245],[114.283465,24.453965],[114.292968,24.468856],[114.306839,24.472998],[114.310595,24.480757],[114.286607,24.500572],[114.280399,24.511526],[114.280169,24.523109],[114.273732,24.533695],[114.288906,24.537991],[114.293275,24.551982],[114.310518,24.558583],[114.308142,24.574143],[114.301015,24.579067],[114.299942,24.58839],[114.291052,24.600175],[114.289749,24.618767],[114.281932,24.621019],[114.27902,24.631596],[114.265992,24.630915],[114.258481,24.641544],[114.242847,24.645419],[114.231581,24.640445],[114.208743,24.648665],[114.207134,24.653952],[114.193799,24.652643],[114.174563,24.645576],[114.175866,24.658978],[114.181537,24.653324],[114.189814,24.657983],[114.169811,24.682585],[114.169045,24.689651],[114.191576,24.694204],[114.210353,24.6885],[114.230815,24.697763],[114.257485,24.697292],[114.272506,24.700432],[114.279556,24.70802],[114.284385,24.72738],[114.293198,24.732037],[114.311744,24.734077],[114.319638,24.742291],[114.335808,24.749092],[114.341863,24.763686],[114.333892,24.7799],[114.344085,24.789574],[114.342399,24.807353],[114.349297,24.816922],[114.357497,24.818699],[114.356577,24.828999],[114.377882,24.860832],[114.387385,24.863341],[114.40302,24.877555],[114.404859,24.892605],[114.401027,24.902637],[114.390758,24.913138],[114.400031,24.919511],[114.402177,24.928444],[114.396199,24.937324],[114.395892,24.951112],[114.425551,24.959259],[114.423635,24.972576],[114.442181,24.972315],[114.456666,24.978528],[114.456666,24.99722],[114.479887,25.005781],[114.484639,25.001762],[114.506174,25.000091],[114.511385,25.006617],[114.516903,25.024573],[114.53269,25.022851],[114.539664,25.031619],[114.541121,25.049729],[114.546332,25.053382],[114.561583,25.077592],[114.584957,25.078688],[114.598369,25.071123],[114.604653,25.083696],[114.608715,25.075871],[114.640136,25.073888],[114.654238,25.080618],[114.665733,25.091104],[114.66512,25.101224],[114.679681,25.106806],[114.693936,25.104406],[114.712022,25.110039],[114.716084,25.114577],[114.735627,25.122035],[114.737696,25.130432],[114.732101,25.142478],[114.735014,25.155826],[114.724821,25.162813],[114.702596,25.163178],[114.685736,25.173188],[114.690334,25.179756],[114.680141,25.1931],[114.695162,25.195185],[114.693936,25.213635],[114.702213,25.221192],[114.712712,25.221817],[114.726277,25.233073],[114.740685,25.226246],[114.748425,25.235157],[114.738309,25.231978],[114.738386,25.240107],[114.749345,25.242555],[114.743597,25.24813],[114.742907,25.274542],[114.73463,25.283293],[114.723978,25.28397],[114.722828,25.302146],[114.713019,25.306208],[114.714398,25.315373],[114.702903,25.314123],[114.69225,25.322142],[114.685736,25.313706],[114.674393,25.317195],[114.664814,25.326776],[114.657073,25.328181],[114.636458,25.324537],[114.627568,25.330628],[114.61155,25.358272],[114.599518,25.359417],[114.599748,25.385856],[114.586183,25.3959],[114.580359,25.393506],[114.580972,25.384035],[114.573002,25.384503],[114.573385,25.395015],[114.579056,25.397617],[114.556755,25.406359],[114.540431,25.417025],[114.531311,25.414215],[114.520275,25.403289],[114.505944,25.39871],[114.508856,25.384659],[114.496977,25.377634],[114.477741,25.371544],[114.462644,25.381485],[114.458658,25.387834],[114.448006,25.386533],[114.438809,25.376072],[114.429919,25.349943],[114.430149,25.343852],[114.417581,25.335054],[114.403096,25.334273],[114.400874,25.327817],[114.387692,25.323548],[114.382941,25.317143],[114.372824,25.325422],[114.357344,25.326776],[114.338184,25.334065],[114.31481,25.338594],[114.306226,25.334117],[114.30477,25.314696],[114.312357,25.311832],[114.295727,25.299802],[114.302854,25.290845],[114.292891,25.289178],[114.287297,25.299698],[114.270973,25.302146],[114.265915,25.293813],[114.257025,25.29272],[114.236026,25.300115],[114.227749,25.295376],[114.215871,25.30074],[114.204681,25.299646],[114.204988,25.31027],[114.194105,25.317351],[114.173643,25.305062],[114.168508,25.312509],[114.158546,25.313602],[114.147203,25.305323],[114.144751,25.310634],[114.131339,25.308447],[114.126511,25.300531],[114.115629,25.301885],[114.10375,25.294438],[114.083517,25.275532],[114.076313,25.278501],[114.06865,25.273709],[114.064588,25.281105],[114.055928,25.277667],[114.039911,25.250735],[114.029105,25.254226],[114.031404,25.263655],[114.022131,25.269594],[114.01462,25.280532],[114.025503,25.28897],[114.027649,25.301833],[114.037228,25.308291],[114.056158,25.311884],[114.035466,25.320007],[114.029335,25.328338],[114.036768,25.342707],[114.049107,25.341874],[114.051406,25.34885],[114.041367,25.360666],[114.047881,25.367276],[114.024353,25.37399],[114.045122,25.384035],[114.0406,25.391216],[114.02305,25.384659],[114.010788,25.386429],[114.00573,25.396732],[113.98772,25.403497],[113.983275,25.415308],[114.002971,25.43284],[113.997913,25.444232],[113.961894,25.452554],[113.952544,25.443816],[113.93507,25.437522],[113.926564,25.442151],[113.913382,25.442775],[113.886865,25.436637],[113.88449,25.420302],[113.892077,25.411874],[113.881807,25.406931],[113.883263,25.395327],[113.876902,25.38034],[113.860962,25.369306],[113.839733,25.363477],[113.833449,25.353951],[113.832836,25.343904],[113.823179,25.33193],[113.814979,25.328702],[113.780186,25.334065],[113.758114,25.330004],[113.764168,25.333596],[113.758421,25.3438],[113.754129,25.361186],[113.744013,25.363945],[113.73451,25.348902],[113.725237,25.358636],[113.706537,25.360874],[113.707916,25.352598],[113.687148,25.352077],[113.685385,25.341249],[113.679101,25.334481],[113.663697,25.337709],[113.657489,25.329119],[113.631202,25.330576],[113.620473,25.325682],[113.61074,25.327036],[113.585986,25.307353],[113.579778,25.316622],[113.583304,25.331878],[113.581464,25.342707],[113.554565,25.351869],[113.544295,25.3666],[113.536095,25.368525],[113.524293,25.353587],[113.515096,25.360666],[113.518392,25.370555],[113.504137,25.374979],[113.480073,25.375187],[113.470187,25.365663],[113.462446,25.369827],[113.449878,25.359573],[113.442291,25.361291],[113.427729,25.373262],[113.424127,25.392673],[113.407037,25.401415],[113.393626,25.397565],[113.389334,25.403653],[113.373317,25.402612],[113.366956,25.431175],[113.359752,25.438406],[113.351705,25.437574],[113.340056,25.449901],[113.32971,25.450838],[113.313923,25.442931],[113.315992,25.467532],[113.309171,25.481001],[113.311393,25.490413],[113.296832,25.508402],[113.303347,25.515836],[113.29346,25.516771],[113.288785,25.50939],[113.291774,25.500915],[113.282654,25.494208],[113.269396,25.505282],[113.260813,25.49946],[113.249087,25.51412],[113.243263,25.515628],[113.226172,25.509701],[113.210692,25.496704],[113.200805,25.479389],[113.177048,25.471589],[113.169307,25.488021],[113.151987,25.492232],[113.149995,25.468],[113.134591,25.467688],[113.122329,25.455727],[113.127923,25.449693],[113.118497,25.44548],[113.126237,25.438406],[113.131525,25.414735],[113.114435,25.420562],[113.092363,25.417493],[113.096885,25.410729],[113.090447,25.406775],[113.088761,25.396524],[113.080638,25.390956],[113.080178,25.383358],[113.06462,25.381797],[113.041629,25.366027],[113.02975,25.361239],[113.023696,25.345934],[113.009211,25.352858],[112.995417,25.348954],[112.987983,25.353795],[112.968134,25.349839],[112.964685,25.342134],[112.95112,25.337449],[112.945066,25.326359],[112.931807,25.322819],[112.927822,25.299907],[112.913184,25.299907],[112.900616,25.311363],[112.894868,25.337605],[112.877701,25.333752],[112.868735,25.327817],[112.857392,25.336824],[112.851798,25.33344],[112.858772,25.320215],[112.855476,25.313654],[112.856396,25.291574],[112.866436,25.276574],[112.873946,25.274282],[112.865899,25.2598],[112.868351,25.248808],[112.88092,25.249641],[112.904524,25.238439],[112.910732,25.245161],[112.92399,25.248651],[112.944223,25.249485],[112.951886,25.245734],[112.958401,25.254382],[112.972885,25.251152],[112.979936,25.245056],[112.992581,25.247193],[113.006682,25.231509],[113.017718,25.211186],[113.02975,25.210508],[113.034502,25.201388],[113.030517,25.194508],[113.008598,25.190129],[112.991585,25.176785],[112.974341,25.168235],[112.96798,25.141644],[112.972809,25.132101],[112.986833,25.119219],[112.991125,25.109466],[112.999632,25.10305],[113.004537,25.089174],[113.018408,25.083122],[113.002007,25.071123],[113.002391,25.058235],[112.979706,25.034125],[112.97848,25.026504],[112.992045,25.017944],[112.990512,24.995393],[113.002084,24.991059],[113.009978,24.97738],[113.008522,24.961975],[113.002774,24.957118],[113.011894,24.946099],[112.991661,24.937533],[112.994804,24.927347],[113.00515,24.914078],[113.004766,24.900129],[113.009901,24.896889],[113.010974,24.882781],[113.022163,24.870866],[113.019557,24.855971],[113.014729,24.851528],[112.998942,24.850483],[112.979246,24.832553],[112.95978,24.824241],[112.95158,24.815771],[112.960087,24.800974],[112.95112,24.788476],[112.954109,24.782201],[112.940161,24.757514],[112.933647,24.755369],[112.938781,24.73821],[112.930351,24.718695],[112.900616,24.713776],[112.914487,24.662695],[112.896401,24.650602],[112.89778,24.632277],[112.884599,24.616358],[112.887971,24.595304],[112.8987,24.600542],[112.902072,24.595671],[112.91717,24.60049],[112.926366,24.596457],[112.950507,24.59499],[112.964378,24.586138],[112.96139,24.570266],[112.96936,24.568118],[112.981928,24.542917],[112.991048,24.544751],[112.999708,24.528716],[113.02063,24.513675],[113.025612,24.493863],[113.047377,24.475515],[113.063701,24.468804],[113.087305,24.471583],[113.096808,24.496431],[113.114128,24.502983],[113.13712,24.482907],[113.151451,24.478713],[113.153367,24.467703],[113.16195,24.479027],[113.174979,24.475882],[113.186781,24.480705],[113.19705,24.474676],[113.20617,24.476458],[113.216516,24.495697],[113.230158,24.498475],[113.235829,24.505866],[113.244642,24.502144],[113.25108,24.510216],[113.252766,24.497794],[113.261809,24.482225],[113.270392,24.47672],[113.272155,24.466969],[113.294993,24.457164],[113.31944,24.465291],[113.331243,24.472579],[113.350632,24.472159],[113.362051,24.47908],[113.37416,24.49402],[113.379754,24.485213],[113.415544,24.485266],[113.412172,24.472526],[113.419223,24.459943],[113.440988,24.453703],[113.467428,24.461726],[113.478847,24.477769],[113.489269,24.471006],[113.499309,24.473785],[113.507816,24.484007],[113.518852,24.469852],[113.530271,24.479551],[113.531343,24.489826],[113.540463,24.506233],[113.552572,24.511055],[113.57564,24.509115],[113.579548,24.50052],[113.589665,24.515248],[113.599628,24.512994],[113.596792,24.500886],[113.609667,24.489983],[113.625761,24.491923],[113.63718,24.486471],[113.643234,24.477717],[113.656799,24.468227],[113.666072,24.467493],[113.683163,24.454175],[113.686381,24.437709],[113.709909,24.412377],[113.722248,24.414633],[113.723934,24.43493],[113.726999,24.437028],[113.753439,24.437185],[113.762866,24.43299],[113.765318,24.417727],[113.77827,24.410909],[113.803867,24.401781],[113.805553,24.384364],[113.800955,24.377334],[113.818581,24.3522],[113.817048,24.34459],[113.831303,24.33656],[113.8405,24.336246],[113.850462,24.318872],[113.844791,24.304541],[113.844715,24.279707],[113.850003,24.274561],[113.84004,24.265109],[113.855827,24.252926],[113.862878,24.259018],[113.872074,24.253976],[113.870541,24.242264],[113.88311,24.245415],[113.890774,24.241476],[113.890391,24.229763],[113.896522,24.210326],[113.921199,24.200974],[113.922119,24.19304],[113.930319,24.19593],[113.930242,24.188416],[113.909167,24.184318],[113.901043,24.188521],[113.880045,24.174123],[113.857053,24.16151],[113.862265,24.147319],[113.870465,24.141169],[113.86464,24.133021],[113.853911,24.132811],[113.850999,24.124978],[113.839273,24.119931],[113.836974,24.111729],[113.842415,24.104053],[113.836668,24.098637],[113.836821,24.088331],[113.845711,24.086806],[113.837434,24.072764],[113.828467,24.069608],[113.83115,24.063507],[113.813063,24.052567],[113.803637,24.053566],[113.790379,24.034471],[113.790608,24.025106],[113.784171,24.022317],[113.772982,24.026947],[113.763555,24.02137],[113.753592,24.026842],[113.747078,24.023212],[113.728149,23.997166],[113.718646,23.993008],[113.732364,23.981114],[113.730448,23.974641],[113.739415,23.969588],[113.744703,23.95906],[113.766468,23.96085],[113.774285,23.952691],[113.775358,23.938424],[113.792294,23.931527],[113.799345,23.923524],[113.800265,23.902566]]]]}},{"type":"Feature","properties":{"adcode":440300,"name":"深圳市","center":[114.085947,22.547],"centroid":[114.143142,22.643377],"childrenNum":9,"level":"city","parent":{"adcode":440000},"subFeatureIndex":2,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.229205,22.81253],[114.215641,22.807751],[114.20721,22.789802],[114.189967,22.785713],[114.180847,22.775728],[114.187974,22.770364],[114.182073,22.765265],[114.201079,22.764787],[114.203149,22.75512],[114.215641,22.73557],[114.208513,22.729248],[114.208053,22.71469],[114.196711,22.710227],[114.19947,22.702043],[114.195332,22.680095],[114.187515,22.673557],[114.187515,22.666382],[114.172494,22.654368],[114.15548,22.668933],[114.16391,22.665372],[114.167436,22.680679],[114.151801,22.690139],[114.145057,22.701193],[114.144674,22.714159],[114.121989,22.716231],[114.117621,22.723244],[114.107198,22.722979],[114.098462,22.747205],[114.08436,22.750551],[114.074781,22.740883],[114.064588,22.755916],[114.049414,22.756448],[114.049797,22.771161],[114.039911,22.764309],[114.035236,22.766752],[114.017916,22.760219],[114.002971,22.763459],[113.995308,22.771267],[113.990863,22.800211],[113.984578,22.803662],[113.974999,22.798458],[113.978371,22.806529],[113.972393,22.812476],[113.954996,22.815078],[113.954613,22.821025],[113.937829,22.832705],[113.910929,22.829997],[113.904875,22.840137],[113.893916,22.846189],[113.89951,22.855478],[113.887325,22.858504],[113.883263,22.850542],[113.877669,22.85447],[113.872611,22.837271],[113.857053,22.832599],[113.851305,22.837483],[113.841496,22.833979],[113.834675,22.822193],[113.838737,22.819591],[113.837204,22.800901],[113.824942,22.792935],[113.813446,22.790439],[113.811071,22.782473],[113.802257,22.784863],[113.801874,22.777109],[113.791835,22.767655],[113.790838,22.75342],[113.762406,22.736899],[113.751447,22.715381],[113.757808,22.678766],[113.765471,22.665744],[113.773288,22.643205],[113.782255,22.625713],[113.803407,22.593169],[113.832223,22.570246],[113.838354,22.559342],[113.834675,22.539552],[113.851152,22.542584],[113.856593,22.539605],[113.864027,22.515981],[113.859352,22.495652],[113.862801,22.475853],[113.870005,22.459565],[113.881731,22.446788],[113.89177,22.442635],[113.915758,22.455945],[113.946873,22.477343],[113.959135,22.504912],[113.976531,22.510606],[114.024047,22.509808],[114.030867,22.504274],[114.054702,22.49959],[114.064588,22.510553],[114.077003,22.515502],[114.081601,22.512415],[114.090338,22.520982],[114.084284,22.52508],[114.094093,22.533593],[114.114862,22.532795],[114.117238,22.526942],[114.135094,22.53886],[114.153488,22.539285],[114.157166,22.551947],[114.165596,22.558916],[114.182303,22.556788],[114.182686,22.552798],[114.201463,22.554341],[114.223304,22.552745],[114.232578,22.54003],[114.258864,22.55881],[114.292432,22.562959],[114.304847,22.568704],[114.311821,22.578597],[114.325309,22.588649],[114.346997,22.588702],[114.359489,22.591574],[114.381868,22.601519],[114.398345,22.602848],[114.422562,22.592744],[114.430686,22.583384],[114.434748,22.566576],[114.467625,22.53338],[114.471917,22.522206],[114.468162,22.491395],[114.474446,22.464515],[114.48027,22.45291],[114.48985,22.443647],[114.50694,22.438589],[114.52541,22.440559],[114.539281,22.449237],[114.549244,22.46574],[114.585417,22.473405],[114.611397,22.482027],[114.627798,22.502996],[114.627031,22.519918],[114.614539,22.545191],[114.589632,22.549766],[114.568097,22.560778],[114.559743,22.573172],[114.559054,22.583277],[114.572312,22.602689],[114.58672,22.612845],[114.60312,22.638739],[114.60289,22.655272],[114.580282,22.661491],[114.553229,22.656229],[114.515217,22.655485],[114.514451,22.660747],[114.505867,22.668455],[114.481956,22.668136],[114.478278,22.661864],[114.453447,22.669943],[114.449692,22.665319],[114.431912,22.660907],[114.428157,22.676746],[114.441338,22.682167],[114.445324,22.68897],[114.442028,22.697579],[114.426394,22.699918],[114.42057,22.713999],[114.409227,22.713574],[114.403403,22.723935],[114.413902,22.736261],[114.414055,22.752251],[114.41827,22.766327],[114.404706,22.781305],[114.396352,22.777322],[114.394819,22.759794],[114.388075,22.757191],[114.36562,22.766062],[114.355964,22.764893],[114.354125,22.778172],[114.342706,22.783642],[114.351136,22.789696],[114.353128,22.806636],[114.33052,22.809291],[114.318565,22.806583],[114.314503,22.800157],[114.294347,22.803397],[114.284844,22.808282],[114.282852,22.802388],[114.26147,22.781783],[114.250817,22.781677],[114.245529,22.790652],[114.234953,22.792989],[114.229205,22.81253]]],[[[113.819961,22.396362],[113.824176,22.40435],[113.811224,22.420432],[113.798885,22.422509],[113.7867,22.413563],[113.801338,22.407386],[113.807315,22.40025],[113.819961,22.396362]]],[[[113.844485,22.510234],[113.856823,22.503582],[113.8569,22.509595],[113.842569,22.515821],[113.844485,22.510234]]],[[[113.839657,22.498526],[113.847244,22.491927],[113.851995,22.49661],[113.844485,22.503369],[113.839657,22.498526]]]]}},{"type":"Feature","properties":{"adcode":440400,"name":"珠海市","center":[113.553986,22.224979],"centroid":[113.337286,22.160135],"childrenNum":3,"level":"city","parent":{"adcode":440000},"subFeatureIndex":3,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.262652,22.392048],[113.24947,22.399344],[113.237285,22.391782],[113.212224,22.398599],[113.209389,22.388054],[113.192145,22.381662],[113.18839,22.394924],[113.181646,22.40238],[113.165399,22.40025],[113.1631,22.387947],[113.169154,22.377987],[113.183255,22.369837],[113.193065,22.358171],[113.185478,22.294762],[113.176281,22.280158],[113.176128,22.267792],[113.168541,22.238417],[113.158885,22.228712],[113.129686,22.218208],[113.120413,22.209622],[113.115584,22.215115],[113.106388,22.209355],[113.109453,22.204609],[113.097421,22.187702],[113.091903,22.136595],[113.087152,22.126137],[113.092057,22.065346],[113.10156,22.048262],[113.143097,22.011846],[113.147542,22.004689],[113.151451,21.979853],[113.159574,21.969009],[113.182106,21.952982],[113.218126,21.904998],[113.235216,21.887788],[113.26679,21.871645],[113.289399,21.883405],[113.300051,21.898958],[113.3199,21.909701],[113.328024,21.934442],[113.33017,21.961637],[113.33768,21.969009],[113.352165,21.974511],[113.410256,21.99091],[113.442214,22.009496],[113.448805,22.017079],[113.450567,22.032244],[113.459764,22.043724],[113.482679,22.054669],[113.503831,22.054722],[113.520308,22.069136],[113.530654,22.07362],[113.554488,22.069884],[113.565754,22.07266],[113.56583,22.091715],[113.554028,22.103884],[113.554641,22.142411],[113.544602,22.154095],[113.534562,22.1741],[113.534332,22.185622],[113.54077,22.199382],[113.538241,22.209409],[113.54943,22.213995],[113.558856,22.212395],[113.568819,22.22466],[113.589895,22.226793],[113.597175,22.234951],[113.599781,22.261128],[113.592194,22.268058],[113.595412,22.28245],[113.590124,22.29391],[113.595949,22.304249],[113.612809,22.308832],[113.616948,22.31885],[113.605299,22.329135],[113.604762,22.339897],[113.62806,22.349274],[113.649289,22.386243],[113.669368,22.416279],[113.669904,22.435607],[113.659098,22.441358],[113.624841,22.442955],[113.617791,22.436885],[113.608901,22.408824],[113.603766,22.403392],[113.585986,22.40041],[113.568743,22.411912],[113.537168,22.416332],[113.51433,22.408717],[113.508889,22.413403],[113.49586,22.407546],[113.495247,22.395403],[113.48697,22.390184],[113.491339,22.376922],[113.489193,22.365842],[113.493255,22.354069],[113.490342,22.34075],[113.494787,22.339684],[113.504137,22.324286],[113.493331,22.317998],[113.482985,22.318797],[113.470493,22.310377],[113.480456,22.303876],[113.496397,22.282237],[113.50475,22.266992],[113.514407,22.261555],[113.512797,22.249986],[113.478847,22.23831],[113.486357,22.227113],[113.462676,22.218847],[113.458384,22.213781],[113.430565,22.201302],[113.415774,22.202902],[113.390943,22.231858],[113.385272,22.230365],[113.352395,22.249133],[113.345114,22.258569],[113.336607,22.280105],[113.32128,22.312189],[113.32036,22.329561],[113.307178,22.346504],[113.273841,22.384751],[113.262652,22.392048]]],[[[114.051789,22.086324],[114.056081,22.094277],[114.047651,22.108954],[114.026959,22.10319],[114.034546,22.091342],[114.051789,22.086324]]],[[[114.231045,22.016332],[114.241238,22.023701],[114.266451,22.027599],[114.284231,22.036196],[114.299865,22.036142],[114.311361,22.041428],[114.308985,22.048636],[114.323623,22.056377],[114.32301,22.064172],[114.305537,22.060542],[114.302778,22.050505],[114.282852,22.049704],[114.267218,22.041268],[114.239781,22.035502],[114.227826,22.028827],[114.222615,22.018948],[114.231045,22.016332]]],[[[113.714584,22.007413],[113.729988,22.016385],[113.723014,22.02872],[113.702628,22.029308],[113.695731,22.021565],[113.705694,22.016225],[113.705924,22.00784],[113.714584,22.007413]]],[[[113.824406,22.001271],[113.825402,21.990536],[113.831763,21.98888],[113.842339,21.998868],[113.830767,21.996625],[113.824406,22.001271]]],[[[114.009945,21.853148],[114.016536,21.863145],[114.031557,21.873623],[114.010252,21.86368],[114.009945,21.853148]]],[[[113.815056,22.157136],[113.808542,22.174207],[113.799575,22.166472],[113.815056,22.157136]]],[[[113.999293,22.045273],[114.001055,22.035929],[114.005424,22.045112],[113.999293,22.045273]]],[[[113.765165,21.961958],[113.768154,21.972001],[113.778653,21.978357],[113.780109,21.989254],[113.772905,21.998761],[113.765855,21.992672],[113.750067,21.995129],[113.742403,21.987812],[113.755738,21.974672],[113.758191,21.965163],[113.765165,21.961958]]],[[[114.034469,21.886077],[114.04926,21.88271],[114.052862,21.893346],[114.063592,21.892384],[114.058687,21.902326],[114.042976,21.895431],[114.034469,21.886077]]],[[[113.919436,22.036997],[113.924111,22.032778],[113.937753,22.036249],[113.934687,22.043991],[113.922962,22.048583],[113.919436,22.036997]]],[[[113.143251,21.831707],[113.145856,21.838872],[113.159881,21.851864],[113.177431,21.854752],[113.179653,21.847373],[113.187624,21.848389],[113.203871,21.86122],[113.205787,21.871324],[113.191532,21.87234],[113.18088,21.862183],[113.167698,21.876563],[113.151221,21.864963],[113.144707,21.873516],[113.137043,21.868651],[113.138269,21.839193],[113.143251,21.831707]]],[[[113.722937,21.922152],[113.743476,21.928244],[113.751677,21.940747],[113.743093,21.950738],[113.727842,21.955119],[113.717956,21.951273],[113.71719,21.935244],[113.725083,21.932572],[113.722937,21.922152]]],[[[113.876979,22.117653],[113.869622,22.11301],[113.880581,22.10746],[113.88426,22.112583],[113.876979,22.117653]]],[[[113.828238,22.117919],[113.83958,22.130993],[113.828544,22.156283],[113.818045,22.153295],[113.822413,22.136542],[113.816435,22.132327],[113.820727,22.120588],[113.828238,22.117919]]],[[[114.18989,21.986423],[114.202689,21.991497],[114.220239,21.989842],[114.223841,22.007787],[114.217863,22.011098],[114.18192,22.010938],[114.178701,22.003034],[114.180847,21.988506],[114.18989,21.986423]]],[[[113.165399,21.953463],[113.172373,21.941068],[113.172066,21.954745],[113.165399,21.953463]]],[[[114.153947,21.975099],[114.167972,21.983111],[114.17395,21.992939],[114.17234,21.999776],[114.160308,21.995343],[114.152568,22.000524],[114.148276,21.99091],[114.124212,21.985248],[114.123675,21.97996],[114.144598,21.980441],[114.153947,21.975099]]],[[[113.138039,21.919213],[113.127617,21.910395],[113.125164,21.896126],[113.141258,21.912854],[113.156202,21.919587],[113.158731,21.927015],[113.150455,21.937915],[113.144707,21.937007],[113.13597,21.925465],[113.138039,21.919213]]],[[[113.665306,22.039239],[113.670211,22.033419],[113.666532,22.02338],[113.675805,22.029361],[113.67136,22.045433],[113.665306,22.039239]]],[[[113.683163,21.938824],[113.709449,21.944968],[113.70669,21.957203],[113.692819,21.962973],[113.6814,21.949296],[113.683163,21.938824]]],[[[113.901733,22.114184],[113.900047,22.123683],[113.890161,22.122775],[113.886405,22.111249],[113.901733,22.114184]]],[[[113.707687,22.143532],[113.707993,22.134728],[113.722094,22.141878],[113.707687,22.143532]]],[[[114.007493,22.026958],[114.017992,22.028346],[114.013471,22.038225],[114.007493,22.026958]]],[[[113.702705,22.101696],[113.700866,22.094864],[113.711059,22.091769],[113.702705,22.101696]]],[[[114.126664,21.961744],[114.142835,21.965484],[114.139003,21.970345],[114.126664,21.961744]]],[[[113.576866,22.212075],[113.576176,22.201036],[113.586523,22.201036],[113.590738,22.208982],[113.576866,22.212075]]]]}},{"type":"Feature","properties":{"adcode":440500,"name":"汕头市","center":[116.708463,23.37102],"centroid":[116.575361,23.322231],"childrenNum":7,"level":"city","parent":{"adcode":440000},"subFeatureIndex":4,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.552551,23.105891],[116.552245,23.114527],[116.566423,23.134339],[116.577765,23.141755],[116.597691,23.146522],[116.651874,23.152931],[116.665285,23.158174],[116.676014,23.168078],[116.701458,23.198207],[116.71487,23.20996],[116.724756,23.214407],[116.744682,23.215042],[116.788518,23.199266],[116.806758,23.20096],[116.814728,23.207631],[116.823542,23.230447],[116.816644,23.243044],[116.799861,23.244209],[116.791277,23.265801],[116.791814,23.278236],[116.786986,23.288554],[116.782771,23.313842],[116.806452,23.347958],[116.833045,23.36578],[116.858488,23.408023],[116.8719,23.414631],[116.873433,23.445074],[116.885235,23.454481],[116.896194,23.476197],[116.885158,23.478734],[116.88853,23.501609],[116.899183,23.518881],[116.91704,23.531662],[116.918342,23.561603],[116.909146,23.58193],[116.911062,23.602201],[116.900563,23.611965],[116.900639,23.61946],[116.891289,23.622785],[116.874812,23.616082],[116.86278,23.623471],[116.863087,23.632601],[116.83818,23.644632],[116.830976,23.645793],[116.821319,23.635609],[116.822545,23.627429],[116.831895,23.622152],[116.827527,23.611807],[116.815035,23.612493],[116.805379,23.606793],[116.795799,23.610488],[116.791737,23.59935],[116.794496,23.589532],[116.785223,23.579554],[116.772578,23.584147],[116.761389,23.573958],[116.755794,23.575648],[116.747211,23.59233],[116.738934,23.60162],[116.71303,23.597925],[116.714946,23.584728],[116.702991,23.574433],[116.718701,23.563135],[116.719391,23.552522],[116.70621,23.542541],[116.70483,23.517561],[116.71326,23.493103],[116.717935,23.471072],[116.7128,23.459236],[116.702378,23.456172],[116.698469,23.446977],[116.702608,23.438204],[116.68659,23.429483],[116.681915,23.438627],[116.668504,23.428638],[116.654403,23.431069],[116.650264,23.426312],[116.630108,23.429378],[116.614015,23.433289],[116.605431,23.443013],[116.58995,23.453265],[116.588111,23.461984],[116.580294,23.461139],[116.579834,23.447981],[116.58949,23.443383],[116.591177,23.426524],[116.58198,23.423194],[116.575313,23.40797],[116.577535,23.40242],[116.569105,23.388093],[116.568339,23.378258],[116.561978,23.38693],[116.553088,23.412305],[116.544887,23.424356],[116.523429,23.437517],[116.512316,23.439472],[116.469553,23.437622],[116.465721,23.442485],[116.472005,23.455802],[116.482658,23.465472],[116.491164,23.478734],[116.492314,23.492839],[116.482581,23.500552],[116.465797,23.497647],[116.448707,23.488349],[116.435832,23.473344],[116.426482,23.468642],[116.415676,23.479737],[116.41491,23.510271],[116.408856,23.512596],[116.401115,23.500394],[116.377051,23.500658],[116.355363,23.472288],[116.350764,23.449619],[116.332371,23.443647],[116.319649,23.449196],[116.316891,23.442273],[116.322868,23.421767],[116.331758,23.424409],[116.34563,23.408182],[116.34517,23.399565],[116.350994,23.386559],[116.349768,23.358112],[116.354903,23.347324],[116.348848,23.335794],[116.329689,23.336376],[116.319573,23.332303],[116.319343,23.325903],[116.330839,23.316487],[116.328846,23.299559],[116.323558,23.302839],[116.308997,23.296067],[116.312752,23.286649],[116.302406,23.279348],[116.305548,23.272839],[116.298727,23.263526],[116.294129,23.239815],[116.279415,23.226],[116.26677,23.227906],[116.259719,23.216842],[116.261328,23.205301],[116.269222,23.204984],[116.26447,23.196724],[116.252745,23.191536],[116.262325,23.175174],[116.252362,23.176286],[116.254891,23.152507],[116.244545,23.140431],[116.261558,23.12295],[116.29183,23.110501],[116.29137,23.099162],[116.302866,23.096036],[116.312829,23.102712],[116.327543,23.09646],[116.340648,23.086498],[116.346703,23.05857],[116.368314,23.05751],[116.374982,23.050408],[116.370077,23.046856],[116.3805,23.039807],[116.395904,23.044524],[116.405484,23.053959],[116.426865,23.063393],[116.437212,23.080246],[116.446561,23.085863],[116.445488,23.093281],[116.453919,23.091161],[116.478826,23.104249],[116.509787,23.100646],[116.520287,23.094553],[116.552551,23.105891]]],[[[117.14542,23.456119],[117.141281,23.460029],[117.12764,23.458814],[117.132928,23.47271],[117.129479,23.48333],[117.109247,23.476831],[117.103882,23.464573],[117.093383,23.459395],[117.084569,23.461878],[117.079435,23.472922],[117.06449,23.475669],[117.051232,23.467849],[117.0228,23.43683],[117.016669,23.438785],[117.001341,23.457334],[116.98563,23.460822],[116.974441,23.457123],[116.961413,23.447241],[116.951067,23.44629],[116.944706,23.440001],[116.945089,23.422824],[116.964708,23.416375],[116.981722,23.414525],[116.999502,23.416216],[117.028854,23.414789],[117.029927,23.406332],[117.051155,23.400781],[117.079128,23.409027],[117.098747,23.405063],[117.102196,23.393644],[117.114075,23.399459],[117.124268,23.389732],[117.142967,23.400411],[117.145496,23.411829],[117.135993,23.422665],[117.136836,23.439895],[117.148562,23.437992],[117.154769,23.445074],[117.145113,23.450095],[117.14542,23.456119]]]]}},{"type":"Feature","properties":{"adcode":440600,"name":"佛山市","center":[113.122717,23.028762],"centroid":[112.949778,23.004314],"childrenNum":5,"level":"city","parent":{"adcode":440000},"subFeatureIndex":5,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.975184,23.463622],[112.966294,23.460663],[112.965835,23.452155],[112.957634,23.447558],[112.94223,23.460188],[112.930198,23.463094],[112.933493,23.47065],[112.925753,23.472393],[112.928435,23.483488],[112.903298,23.488613],[112.887741,23.517402],[112.893259,23.526434],[112.911192,23.541643],[112.91533,23.55231],[112.900309,23.566725],[112.893412,23.55268],[112.871647,23.570896],[112.86291,23.57343],[112.848502,23.566936],[112.827197,23.567042],[112.830493,23.545762],[112.831642,23.537577],[112.840762,23.536046],[112.850418,23.527596],[112.845284,23.502929],[112.845743,23.487134],[112.838156,23.484704],[112.831029,23.468114],[112.811793,23.462513],[112.802673,23.444229],[112.803669,23.435773],[112.796389,23.429113],[112.794166,23.407547],[112.785736,23.394173],[112.787269,23.371173],[112.806582,23.367419],[112.810107,23.371332],[112.805892,23.387511],[112.814092,23.391793],[112.838386,23.387352],[112.859691,23.364563],[112.863907,23.349122],[112.883296,23.347324],[112.87134,23.315588],[112.866895,23.293263],[112.857546,23.287231],[112.847966,23.275061],[112.844977,23.263314],[112.823595,23.24569],[112.8472,23.238651],[112.842984,23.224465],[112.831949,23.215678],[112.815012,23.217107],[112.810873,23.200378],[112.80091,23.200431],[112.806582,23.212395],[112.799837,23.228224],[112.795316,23.226318],[112.7934,23.208213],[112.786349,23.205937],[112.781521,23.225842],[112.769412,23.223354],[112.772861,23.215678],[112.766347,23.21356],[112.764431,23.202919],[112.772938,23.199742],[112.771941,23.191694],[112.775773,23.166754],[112.793936,23.150071],[112.798458,23.13863],[112.799684,23.109971],[112.805355,23.091426],[112.818767,23.072614],[112.819227,23.052051],[112.834094,23.014784],[112.820453,23.010225],[112.794856,22.990394],[112.788189,22.991879],[112.790564,23.00206],[112.789721,23.00137],[112.788572,23.001158],[112.787882,23.000999],[112.777076,22.996545],[112.759679,22.979735],[112.751556,22.99103],[112.734772,22.98122],[112.736228,22.963878],[112.74144,22.962923],[112.734082,22.940751],[112.708869,22.927754],[112.699749,22.94839],[112.686874,22.948443],[112.672696,22.940486],[112.690092,22.927277],[112.696683,22.917196],[112.68649,22.907593],[112.692468,22.901969],[112.685418,22.89836],[112.677524,22.902764],[112.676374,22.895442],[112.659284,22.887163],[112.635526,22.883714],[112.632384,22.877664],[112.604258,22.870552],[112.591613,22.869809],[112.587168,22.862962],[112.561648,22.873312],[112.557816,22.863387],[112.563104,22.854151],[112.57414,22.84741],[112.571841,22.833077],[112.557433,22.826122],[112.532449,22.822883],[112.527544,22.815131],[112.52034,22.82729],[112.510531,22.823042],[112.499035,22.826918],[112.500414,22.812476],[112.489992,22.809131],[112.482788,22.795006],[112.463398,22.789271],[112.443779,22.791661],[112.441403,22.787731],[112.413507,22.774454],[112.392509,22.76978],[112.392739,22.744442],[112.399023,22.726485],[112.410748,22.704488],[112.403085,22.700183],[112.401475,22.690565],[112.411898,22.671219],[112.426306,22.670847],[112.435809,22.680998],[112.448607,22.70842],[112.463168,22.711661],[112.47658,22.704009],[112.47704,22.715912],[112.500108,22.728664],[112.507542,22.723457],[112.523176,22.728079],[112.53835,22.71825],[112.549462,22.70098],[112.560038,22.695826],[112.554214,22.682061],[112.535591,22.67765],[112.540189,22.661864],[112.536281,22.648627],[112.546474,22.642248],[112.577359,22.656388],[112.583566,22.664362],[112.584716,22.677809],[112.595981,22.680786],[112.600273,22.688439],[112.587321,22.696357],[112.604182,22.706241],[112.616674,22.707995],[112.620965,22.70114],[112.625104,22.711077],[112.641044,22.712883],[112.646256,22.726698],[112.660127,22.727335],[112.664649,22.713043],[112.672083,22.713521],[112.665109,22.724041],[112.680053,22.713999],[112.682659,22.72165],[112.675914,22.727495],[112.683885,22.733923],[112.690322,22.726379],[112.701128,22.728398],[112.687563,22.737164],[112.680436,22.747045],[112.69653,22.75905],[112.702891,22.756395],[112.707796,22.74407],[112.698599,22.733764],[112.709022,22.729567],[112.706646,22.718303],[112.692392,22.705232],[112.69538,22.695613],[112.708256,22.71028],[112.717989,22.691681],[112.734082,22.698217],[112.741286,22.691362],[112.744505,22.696729],[112.755771,22.692425],[112.769489,22.701246],[112.778302,22.715221],[112.807961,22.72877],[112.810413,22.750498],[112.803899,22.752145],[112.811486,22.765318],[112.818001,22.765424],[112.822369,22.784545],[112.812099,22.791714],[112.819303,22.803025],[112.835857,22.803821],[112.843061,22.810671],[112.852947,22.809609],[112.850648,22.830157],[112.844594,22.835306],[112.851491,22.839978],[112.860305,22.833767],[112.867892,22.835412],[112.873639,22.848206],[112.883679,22.852187],[112.888967,22.845764],[112.900463,22.845286],[112.905904,22.851444],[112.923454,22.856274],[112.963995,22.826971],[112.980396,22.802759],[112.988596,22.800423],[113.025229,22.802335],[113.049523,22.807751],[113.059562,22.801219],[113.075273,22.777959],[113.087228,22.717878],[113.102096,22.698536],[113.113362,22.701618],[113.161414,22.673717],[113.17199,22.680679],[113.189386,22.673876],[113.201035,22.675949],[113.199273,22.682539],[113.204254,22.697314],[113.222264,22.712246],[113.236289,22.740777],[113.243033,22.745345],[113.254069,22.74083],[113.260889,22.730311],[113.270546,22.726485],[113.284877,22.738864],[113.301431,22.736261],[113.329097,22.741255],[113.329327,22.749011],[113.342432,22.758254],[113.358756,22.764893],[113.365116,22.772595],[113.356533,22.792989],[113.38305,22.799308],[113.393396,22.809822],[113.37439,22.822618],[113.364273,22.823467],[113.335994,22.817945],[113.312083,22.830369],[113.309631,22.851179],[113.296296,22.862485],[113.301354,22.866094],[113.300434,22.87708],[113.27706,22.894699],[113.28595,22.901438],[113.282424,22.927383],[113.298212,22.934014],[113.285183,22.951095],[113.267557,22.958786],[113.251923,22.970348],[113.250007,23.009058],[113.25836,23.013989],[113.254912,23.044842],[113.225713,23.041874],[113.211688,23.043305],[113.195747,23.056185],[113.184865,23.05963],[113.177201,23.076695],[113.193678,23.083902],[113.208776,23.083531],[113.215826,23.100646],[113.208163,23.099692],[113.203718,23.121891],[113.209695,23.121838],[113.211535,23.142603],[113.191992,23.14345],[113.186857,23.14827],[113.1877,23.159127],[113.209465,23.17708],[113.209006,23.192171],[113.204867,23.201172],[113.191072,23.214937],[113.177508,23.220866],[113.176511,23.236587],[113.182029,23.251459],[113.177738,23.271304],[113.160877,23.286649],[113.150608,23.289983],[113.150838,23.297972],[113.128,23.31453],[113.124704,23.307653],[113.105775,23.302733],[113.11022,23.295961],[113.105545,23.289718],[113.090524,23.28993],[113.086156,23.285274],[113.072284,23.284268],[113.081941,23.261726],[113.079795,23.250083],[113.070215,23.248813],[113.053508,23.253418],[113.044925,23.2522],[113.052742,23.26342],[113.051439,23.278395],[113.042549,23.283422],[113.032509,23.300881],[113.037567,23.320084],[113.023466,23.324898],[113.027604,23.33352],[113.043392,23.351131],[113.034808,23.357372],[113.018331,23.341347],[113.012583,23.352612],[112.989822,23.354728],[112.980626,23.380268],[112.988366,23.390102],[112.990588,23.402631],[113.001088,23.406332],[112.988673,23.419811],[112.982771,23.434451],[112.989132,23.443277],[112.978633,23.441586],[112.974188,23.434081],[112.96024,23.425995],[112.961926,23.44444],[112.972962,23.450042],[112.975184,23.463622]]],[[[112.789721,23.00137],[112.790564,23.00206],[112.787882,23.000999],[112.788572,23.001158],[112.789721,23.00137]]]]}},{"type":"Feature","properties":{"adcode":440700,"name":"江门市","center":[113.094942,22.590431],"centroid":[112.676451,22.284348],"childrenNum":7,"level":"city","parent":{"adcode":440000},"subFeatureIndex":6,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.165431,22.385018],[112.154012,22.37591],[112.153323,22.368452],[112.144433,22.358597],[112.150564,22.35327],[112.147268,22.339098],[112.13447,22.337233],[112.1347,22.349221],[112.128185,22.349754],[112.119832,22.337766],[112.119985,22.35636],[112.107877,22.347463],[112.098757,22.351618],[112.081896,22.351086],[112.065036,22.324392],[112.068945,22.318477],[112.062201,22.304515],[112.068332,22.295988],[112.061511,22.28357],[112.049479,22.270777],[112.036604,22.262781],[112.019973,22.268271],[112.010547,22.266193],[112.004262,22.248333],[112.021353,22.242842],[112.024112,22.235217],[112.037906,22.232178],[112.037906,22.215061],[112.051625,22.207542],[112.052161,22.194742],[112.041585,22.187489],[112.03668,22.168019],[112.051165,22.14684],[112.038826,22.131366],[112.027254,22.127044],[112.034381,22.113437],[112.072776,22.125177],[112.073236,22.130192],[112.086341,22.131313],[112.089867,22.137342],[112.105884,22.135795],[112.106727,22.125497],[112.126806,22.105538],[112.126116,22.096572],[112.143206,22.095185],[112.149721,22.090915],[112.156541,22.095718],[112.16773,22.085417],[112.173785,22.085204],[112.185051,22.066841],[112.199075,22.064706],[112.212334,22.069243],[112.226818,22.063585],[112.231263,22.0528],[112.216779,22.03956],[112.221607,22.01788],[112.232029,22.019589],[112.225669,22.012219],[112.239387,22.006185],[112.263757,22.001432],[112.273644,21.99358],[112.276939,21.982524],[112.299011,21.985248],[112.318477,21.976381],[112.323841,21.962919],[112.331045,21.9595],[112.340472,21.942831],[112.341085,21.919213],[112.346909,21.920442],[112.345147,21.906067],[112.350818,21.901631],[112.348365,21.885276],[112.343077,21.876723],[112.356872,21.872019],[112.370054,21.861434],[112.351737,21.849298],[112.358558,21.834006],[112.342464,21.818499],[112.34576,21.811814],[112.32775,21.799193],[112.333574,21.770844],[112.326754,21.767527],[112.313955,21.751263],[112.304529,21.744415],[112.310047,21.732483],[112.303456,21.71445],[112.307824,21.704174],[112.315105,21.700749],[112.323995,21.705994],[112.35327,21.707118],[112.409522,21.728417],[112.415806,21.734784],[112.427379,21.790207],[112.439411,21.803685],[112.47773,21.795663],[112.497502,21.785393],[112.523406,21.761],[112.535591,21.754099],[112.558812,21.750996],[112.598817,21.75014],[112.639358,21.756025],[112.651697,21.762124],[112.686031,21.810531],[112.737454,21.864214],[112.767113,21.89046],[112.792327,21.921297],[112.800374,21.924824],[112.832332,21.924557],[112.840915,21.920496],[112.86291,21.883084],[112.885135,21.852185],[112.893565,21.844326],[112.911345,21.838979],[112.944529,21.84208],[112.972042,21.857157],[112.989669,21.86956],[113.037797,21.935297],[113.04753,21.956455],[113.051822,21.977556],[113.054198,22.003835],[113.050672,22.018254],[113.032279,22.045753],[113.03067,22.066521],[113.035498,22.077357],[113.045844,22.088513],[113.078568,22.116212],[113.087152,22.126137],[113.091903,22.136595],[113.097421,22.187702],[113.109453,22.204609],[113.106388,22.209355],[113.115584,22.215115],[113.120413,22.209622],[113.129686,22.218208],[113.158885,22.228712],[113.168541,22.238417],[113.176128,22.267792],[113.176281,22.280158],[113.185478,22.294762],[113.193065,22.358171],[113.183255,22.369837],[113.169154,22.377987],[113.1631,22.387947],[113.165399,22.40025],[113.181646,22.40238],[113.18839,22.394924],[113.192145,22.381662],[113.209389,22.388054],[113.212224,22.398599],[113.237285,22.391782],[113.24947,22.399344],[113.262652,22.392048],[113.256368,22.410794],[113.256444,22.43779],[113.245179,22.457276],[113.240121,22.476172],[113.2251,22.497142],[113.2251,22.497142],[113.215367,22.513107],[113.187087,22.539924],[113.188697,22.552798],[113.185095,22.574289],[113.176358,22.590032],[113.157045,22.614228],[113.157199,22.63204],[113.163176,22.651392],[113.17061,22.651392],[113.160801,22.665425],[113.161414,22.673717],[113.113362,22.701618],[113.102096,22.698536],[113.087228,22.717878],[113.075273,22.777959],[113.059562,22.801219],[113.049523,22.807751],[113.025229,22.802335],[112.988596,22.800423],[112.980396,22.802759],[112.963995,22.826971],[112.923454,22.856274],[112.905904,22.851444],[112.900463,22.845286],[112.888967,22.845764],[112.883679,22.852187],[112.873639,22.848206],[112.867892,22.835412],[112.860305,22.833767],[112.851491,22.839978],[112.844594,22.835306],[112.850648,22.830157],[112.852947,22.809609],[112.843061,22.810671],[112.835857,22.803821],[112.819303,22.803025],[112.812099,22.791714],[112.822369,22.784545],[112.818001,22.765424],[112.811486,22.765318],[112.803899,22.752145],[112.810413,22.750498],[112.807961,22.72877],[112.778302,22.715221],[112.769489,22.701246],[112.755771,22.692425],[112.744505,22.696729],[112.741286,22.691362],[112.734082,22.698217],[112.717989,22.691681],[112.708256,22.71028],[112.69538,22.695613],[112.692392,22.705232],[112.706646,22.718303],[112.709022,22.729567],[112.698599,22.733764],[112.707796,22.74407],[112.702891,22.756395],[112.69653,22.75905],[112.680436,22.747045],[112.687563,22.737164],[112.701128,22.728398],[112.690322,22.726379],[112.683885,22.733923],[112.675914,22.727495],[112.682659,22.72165],[112.680053,22.713999],[112.665109,22.724041],[112.672083,22.713521],[112.664649,22.713043],[112.660127,22.727335],[112.646256,22.726698],[112.641044,22.712883],[112.625104,22.711077],[112.620965,22.70114],[112.616674,22.707995],[112.604182,22.706241],[112.587321,22.696357],[112.600273,22.688439],[112.595981,22.680786],[112.584716,22.677809],[112.583566,22.664362],[112.577359,22.656388],[112.546474,22.642248],[112.536281,22.648627],[112.540189,22.661864],[112.535591,22.67765],[112.554214,22.682061],[112.560038,22.695826],[112.549462,22.70098],[112.53835,22.71825],[112.523176,22.728079],[112.507542,22.723457],[112.500108,22.728664],[112.47704,22.715912],[112.47658,22.704009],[112.492674,22.686897],[112.489992,22.676215],[112.500261,22.668667],[112.506545,22.657664],[112.505243,22.638473],[112.515742,22.626617],[112.52172,22.607262],[112.505626,22.597849],[112.483171,22.592372],[112.475047,22.585511],[112.463552,22.584873],[112.456348,22.600562],[112.441787,22.606039],[112.435732,22.619971],[112.440867,22.627627],[112.443243,22.642248],[112.428375,22.657133],[112.435272,22.661279],[112.429218,22.666063],[112.419562,22.664202],[112.412741,22.656814],[112.416113,22.647723],[112.400402,22.635921],[112.407146,22.628425],[112.405077,22.618216],[112.398333,22.619917],[112.396034,22.602636],[112.390363,22.594765],[112.380247,22.594978],[112.379404,22.57881],[112.371127,22.558278],[112.377411,22.552479],[112.366835,22.550404],[112.364306,22.558544],[112.344533,22.564342],[112.342694,22.558065],[112.353577,22.556682],[112.359631,22.545457],[112.342541,22.55067],[112.33641,22.545457],[112.323918,22.554554],[112.331505,22.563916],[112.328133,22.569874],[112.309127,22.572427],[112.303609,22.560139],[112.307747,22.556841],[112.302153,22.544818],[112.307364,22.525399],[112.301233,22.515289],[112.275636,22.510659],[112.25732,22.500229],[112.262531,22.480803],[112.252875,22.458926],[112.242835,22.445191],[112.235938,22.427035],[112.243678,22.408238],[112.226895,22.408025],[112.211184,22.399078],[112.196163,22.404936],[112.188423,22.398066],[112.192791,22.384432],[112.186353,22.376069],[112.189189,22.36467],[112.175088,22.36989],[112.172022,22.381769],[112.165431,22.385018]]],[[[112.77539,21.564101],[112.806735,21.578778],[112.817311,21.59008],[112.81164,21.599935],[112.798918,21.610861],[112.798611,21.618572],[112.805432,21.639509],[112.821066,21.653697],[112.813096,21.674843],[112.805432,21.68132],[112.811256,21.703746],[112.81869,21.712202],[112.826124,21.729005],[112.832945,21.736389],[112.866436,21.742542],[112.875785,21.750354],[112.876015,21.772716],[112.859232,21.770576],[112.840839,21.776674],[112.817311,21.767367],[112.806888,21.769346],[112.800067,21.759502],[112.789108,21.759556],[112.781368,21.768329],[112.776386,21.751103],[112.782287,21.737994],[112.77493,21.732269],[112.765351,21.733874],[112.740443,21.727507],[112.724196,21.719694],[112.707872,21.698501],[112.712164,21.688118],[112.70542,21.682605],[112.713467,21.673344],[112.727568,21.672381],[112.734542,21.666599],[112.749257,21.671417],[112.754621,21.682658],[112.763358,21.681802],[112.780295,21.671524],[112.77608,21.655625],[112.752399,21.649896],[112.738681,21.630353],[112.73094,21.613752],[112.735385,21.602506],[112.744888,21.604006],[112.756001,21.611932],[112.753548,21.583546],[112.76696,21.588099],[112.770255,21.583224],[112.761289,21.573743],[112.77539,21.564101]]],[[[112.530993,21.583921],[112.53766,21.591259],[112.546703,21.586813],[112.562414,21.59008],[112.560881,21.59474],[112.544788,21.600631],[112.54701,21.60754],[112.568622,21.619429],[112.583566,21.613324],[112.595138,21.613324],[112.598817,21.606416],[112.610543,21.611396],[112.621502,21.606737],[112.62495,21.616162],[112.634683,21.623766],[112.637672,21.632655],[112.659821,21.630942],[112.665645,21.642507],[112.650241,21.646362],[112.639895,21.6545],[112.640431,21.673719],[112.665952,21.683943],[112.669707,21.693952],[112.664036,21.713754],[112.657215,21.708242],[112.648631,21.715092],[112.631465,21.706904],[112.610006,21.702676],[112.592303,21.693042],[112.589237,21.676128],[112.572377,21.672381],[112.559808,21.665475],[112.561648,21.657177],[112.570155,21.652787],[112.570461,21.64572],[112.550382,21.633726],[112.544328,21.638866],[112.535055,21.628479],[112.524249,21.596293],[112.524938,21.586277],[112.530993,21.583921]]],[[[112.435426,21.663548],[112.445772,21.649146],[112.456348,21.648772],[112.460869,21.660764],[112.468073,21.66692],[112.466081,21.686673],[112.458417,21.690098],[112.449987,21.673077],[112.435426,21.663548]]],[[[112.680513,21.69818],[112.690092,21.699893],[112.686184,21.713701],[112.6799,21.707493],[112.680513,21.69818]]],[[[112.883449,21.593776],[112.893105,21.594794],[112.902532,21.602292],[112.903222,21.610861],[112.883066,21.615466],[112.861991,21.60663],[112.867049,21.595597],[112.883449,21.593776]]],[[[113.025459,21.847801],[113.032663,21.854698],[113.04684,21.854752],[113.051975,21.868812],[113.045844,21.882763],[113.023466,21.879823],[113.007372,21.869186],[113.020247,21.849619],[113.025459,21.847801]]],[[[112.656372,21.595704],[112.667025,21.607862],[112.65369,21.60588],[112.656372,21.595704]]],[[[112.587934,21.58617],[112.60035,21.591741],[112.59989,21.599185],[112.581727,21.600578],[112.579274,21.591634],[112.587934,21.58617]]],[[[112.674228,21.610646],[112.672312,21.617608],[112.664802,21.612467],[112.674228,21.610646]]],[[[112.801677,21.564261],[112.814245,21.569458],[112.818077,21.579635],[112.807195,21.577439],[112.794013,21.568922],[112.801677,21.564261]]]]}},{"type":"Feature","properties":{"adcode":440800,"name":"湛江市","center":[110.364977,21.274898],"centroid":[110.109828,21.047893],"childrenNum":9,"level":"city","parent":{"adcode":440000},"subFeatureIndex":7,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.645401,21.227394],[110.644635,21.254507],[110.637967,21.289022],[110.62287,21.291062],[110.6126,21.286231],[110.592138,21.265351],[110.570296,21.281884],[110.555582,21.286929],[110.522168,21.303567],[110.523011,21.316607],[110.529755,21.318056],[110.538875,21.330183],[110.55152,21.32648],[110.548225,21.333456],[110.56041,21.337963],[110.556961,21.344455],[110.568457,21.361408],[110.558187,21.370581],[110.558801,21.37616],[110.546998,21.371547],[110.539258,21.376696],[110.531288,21.39874],[110.53305,21.411558],[110.521785,21.414132],[110.50845,21.427002],[110.508066,21.436439],[110.494348,21.443194],[110.49021,21.438744],[110.484002,21.447108],[110.484539,21.456705],[110.494118,21.474234],[110.490823,21.482811],[110.509063,21.479273],[110.508066,21.490583],[110.508373,21.490958],[110.510442,21.499587],[110.497567,21.517111],[110.485152,21.513735],[110.477718,21.526221],[110.483849,21.543849],[110.475572,21.554136],[110.470361,21.547546],[110.45534,21.554511],[110.450358,21.550439],[110.443768,21.556386],[110.434494,21.553868],[110.422692,21.562226],[110.429666,21.575725],[110.427904,21.580653],[110.439399,21.581082],[110.443154,21.58692],[110.427214,21.600096],[110.417481,21.598168],[110.42024,21.591312],[110.413342,21.586063],[110.406522,21.60181],[110.412653,21.60438],[110.412653,21.616966],[110.405525,21.61809],[110.405295,21.634636],[110.396865,21.633137],[110.407058,21.648611],[110.385753,21.657552],[110.382457,21.667456],[110.412346,21.675753],[110.40974,21.686619],[110.402843,21.689188],[110.396712,21.673612],[110.39242,21.681588],[110.385753,21.674736],[110.367666,21.683354],[110.369889,21.689349],[110.351419,21.713647],[110.368739,21.721835],[110.365367,21.748],[110.375177,21.760305],[110.370042,21.770148],[110.373184,21.784163],[110.380312,21.784484],[110.388359,21.789084],[110.386749,21.795556],[110.37556,21.798765],[110.377246,21.806627],[110.362225,21.797642],[110.348354,21.802509],[110.350193,21.809675],[110.365137,21.807055],[110.357857,21.815451],[110.348124,21.809354],[110.345901,21.800851],[110.339387,21.806359],[110.342606,21.837322],[110.351572,21.845663],[110.354255,21.856462],[110.350729,21.863947],[110.362532,21.868224],[110.372571,21.856355],[110.387362,21.852239],[110.398398,21.861755],[110.387592,21.890407],[110.381001,21.892865],[110.368126,21.889017],[110.34866,21.890941],[110.337318,21.887841],[110.323906,21.892812],[110.312027,21.906601],[110.290416,21.917984],[110.283748,21.892224],[110.272482,21.895003],[110.254779,21.881694],[110.236003,21.878647],[110.210099,21.887467],[110.212015,21.893079],[110.185729,21.893614],[110.18205,21.899653],[110.161281,21.894255],[110.150859,21.897088],[110.141815,21.881801],[110.133462,21.899867],[110.11982,21.901684],[110.107175,21.882603],[110.107942,21.870789],[110.101197,21.870255],[110.097212,21.886291],[110.092154,21.883993],[110.082038,21.864481],[110.054372,21.856837],[110.038048,21.869988],[110.022184,21.869667],[110.00655,21.875119],[110.005017,21.880198],[109.986241,21.879128],[109.978654,21.866246],[109.944933,21.846839],[109.953363,21.842294],[109.945393,21.830317],[109.946773,21.824328],[109.936197,21.81283],[109.940718,21.807964],[109.935584,21.798658],[109.939952,21.768115],[109.931292,21.752173],[109.941715,21.73671],[109.922632,21.727507],[109.923781,21.704442],[109.915351,21.705619],[109.904622,21.686994],[109.913742,21.683782],[109.906844,21.672488],[109.915811,21.668794],[109.898338,21.649628],[109.884773,21.648076],[109.874044,21.658087],[109.864157,21.646844],[109.853275,21.649949],[109.844615,21.638331],[109.820014,21.637849],[109.809055,21.642989],[109.807216,21.628907],[109.795183,21.63046],[109.784684,21.63817],[109.786064,21.646523],[109.777863,21.670507],[109.766368,21.668045],[109.765985,21.657231],[109.757018,21.644917],[109.753799,21.627836],[109.746212,21.622963],[109.743836,21.60106],[109.754489,21.582582],[109.752113,21.5776],[109.754795,21.556333],[109.772882,21.531258],[109.774185,21.507626],[109.788363,21.490476],[109.785604,21.456919],[109.819171,21.445285],[109.843465,21.442926],[109.894353,21.442283],[109.904699,21.430112],[109.889754,21.395898],[109.868832,21.365807],[109.862165,21.362642],[109.836798,21.359155],[109.770659,21.35953],[109.757478,21.346762],[109.760083,21.335548],[109.765218,21.262184],[109.763992,21.226266],[109.758551,21.21746],[109.720768,21.183734],[109.674939,21.136622],[109.667505,21.121793],[109.667122,21.112604],[109.673866,21.068265],[109.664133,21.010363],[109.655626,20.929251],[109.654937,20.903532],[109.657082,20.888033],[109.664823,20.862306],[109.693026,20.807394],[109.711725,20.774706],[109.729888,20.719653],[109.732724,20.674767],[109.745062,20.621134],[109.749124,20.617953],[109.77748,20.622536],[109.793344,20.615635],[109.803,20.600754],[109.813576,20.574655],[109.81212,20.541593],[109.816565,20.518774],[109.824459,20.502913],[109.83994,20.489478],[109.888298,20.475448],[109.896882,20.461848],[109.898798,20.447276],[109.895579,20.427521],[109.886612,20.410084],[109.864924,20.401716],[109.860709,20.391997],[109.861245,20.376663],[109.871131,20.361705],[109.902476,20.339508],[109.915811,20.316875],[109.91742,20.282407],[109.909297,20.230691],[109.913512,20.219448],[109.929223,20.211718],[109.949302,20.216691],[109.968461,20.228259],[109.986318,20.251714],[109.993368,20.254471],[110.026246,20.257389],[110.07652,20.259929],[110.082574,20.258686],[110.117981,20.219773],[110.146337,20.21761],[110.168639,20.219502],[110.192243,20.227664],[110.21646,20.250526],[110.258305,20.253174],[110.277464,20.24885],[110.285664,20.238312],[110.296777,20.249175],[110.327508,20.251552],[110.348814,20.25901],[110.376173,20.288621],[110.389585,20.293213],[110.404529,20.289161],[110.425145,20.291646],[110.43641,20.297157],[110.452274,20.311203],[110.483542,20.358302],[110.491666,20.374125],[110.516727,20.404361],[110.541557,20.420665],[110.545772,20.427521],[110.55175,20.462982],[110.546462,20.48079],[110.522934,20.514728],[110.49979,20.572443],[110.493275,20.613856],[110.486915,20.64011],[110.466146,20.680264],[110.442235,20.671479],[110.41135,20.671156],[110.392267,20.682905],[110.405295,20.721377],[110.407365,20.732098],[110.407748,20.764365],[110.404759,20.783269],[110.393723,20.816655],[110.357014,20.839375],[110.33249,20.848365],[110.291489,20.848203],[110.269034,20.839698],[110.257691,20.843305],[110.233244,20.858485],[110.209716,20.860207],[110.20121,20.867312],[110.184196,20.891746],[110.177682,20.907083],[110.175689,20.94028],[110.179521,20.960453],[110.180747,20.981753],[110.205041,21.003426],[110.207264,21.009718],[110.201899,21.029344],[110.203739,21.040312],[110.211249,21.054182],[110.217993,21.053053],[110.216997,21.04058],[110.23424,21.014342],[110.247652,21.020741],[110.249644,21.045258],[110.29693,21.093795],[110.311644,21.099761],[110.334406,21.101427],[110.348967,21.106048],[110.359696,21.113894],[110.371498,21.131035],[110.37694,21.133345],[110.388282,21.125823],[110.401234,21.131088],[110.409894,21.146508],[110.422386,21.190716],[110.427674,21.193563],[110.439706,21.186312],[110.451125,21.186419],[110.460475,21.193079],[110.46331,21.203015],[110.481397,21.207579],[110.491896,21.216118],[110.501092,21.217514],[110.52439,21.206344],[110.534736,21.204411],[110.562786,21.211016],[110.626395,21.215688],[110.645401,21.227394]]],[[[110.508373,21.490958],[110.508066,21.490583],[110.514044,21.480774],[110.506687,21.472251],[110.494118,21.474234],[110.484539,21.456705],[110.49044,21.456866],[110.484002,21.447108],[110.49021,21.438744],[110.494348,21.443194],[110.508066,21.436439],[110.50845,21.427002],[110.521785,21.414132],[110.53305,21.411558],[110.531288,21.39874],[110.539258,21.376696],[110.546998,21.371547],[110.558801,21.37616],[110.558187,21.370581],[110.568457,21.361408],[110.556961,21.344455],[110.56041,21.337963],[110.548225,21.333456],[110.55152,21.32648],[110.538875,21.330183],[110.529755,21.318056],[110.523011,21.316607],[110.522168,21.303567],[110.555582,21.286929],[110.570296,21.281884],[110.592138,21.265351],[110.6126,21.286231],[110.62287,21.291062],[110.637967,21.289022],[110.644635,21.254507],[110.645401,21.227394],[110.659579,21.239636],[110.688855,21.278126],[110.713149,21.312582],[110.741351,21.344133],[110.768558,21.364948],[110.796377,21.374765],[110.848414,21.369401],[110.888572,21.367577],[110.907272,21.369669],[110.929113,21.376052],[110.950879,21.388282],[110.977012,21.406785],[110.965363,21.433329],[110.950112,21.443731],[110.938233,21.441854],[110.929037,21.447912],[110.927121,21.441586],[110.910337,21.439817],[110.901907,21.425768],[110.893554,21.436653],[110.880449,21.444856],[110.895853,21.451236],[110.895316,21.460833],[110.883897,21.469678],[110.870409,21.471125],[110.877843,21.476754],[110.874471,21.484848],[110.876004,21.49814],[110.867344,21.506125],[110.857841,21.496103],[110.840674,21.493638],[110.856231,21.503714],[110.848721,21.517058],[110.848031,21.527668],[110.828872,21.542671],[110.822127,21.541974],[110.818679,21.551672],[110.826342,21.559815],[110.817759,21.569083],[110.813697,21.583064],[110.795611,21.579582],[110.793618,21.596025],[110.79883,21.619857],[110.798216,21.631852],[110.786874,21.633298],[110.771853,21.647808],[110.761507,21.647969],[110.75461,21.634797],[110.749858,21.635922],[110.736217,21.623874],[110.73683,21.609522],[110.743344,21.606201],[110.747176,21.588741],[110.736523,21.58542],[110.734301,21.575564],[110.727403,21.573636],[110.725257,21.547761],[110.735987,21.533348],[110.72817,21.531097],[110.729396,21.523863],[110.714758,21.526811],[110.717364,21.519684],[110.730775,21.501088],[110.723342,21.503553],[110.708474,21.500927],[110.713532,21.511752],[110.708014,21.519362],[110.706788,21.521023],[110.693453,21.513896],[110.677742,21.521398],[110.672148,21.51261],[110.681881,21.507519],[110.687935,21.49144],[110.683337,21.488332],[110.665863,21.497497],[110.656973,21.490904],[110.657893,21.503607],[110.645095,21.501248],[110.645478,21.482918],[110.621184,21.481042],[110.609381,21.498997],[110.599035,21.507304],[110.590069,21.500605],[110.577194,21.499158],[110.575201,21.515772],[110.557038,21.512663],[110.54171,21.493102],[110.545466,21.47922],[110.538875,21.473859],[110.532437,21.480345],[110.518183,21.480184],[110.517646,21.489725],[110.508373,21.490958]]],[[[110.396329,21.90612],[110.413726,21.911304],[110.400391,21.913976],[110.413419,21.915686],[110.414799,21.932732],[110.440702,21.93658],[110.442388,21.940854],[110.418477,21.944381],[110.412959,21.953837],[110.400007,21.955387],[110.391117,21.950258],[110.372954,21.93332],[110.384297,21.930595],[110.395946,21.91264],[110.396329,21.90612]]],[[[110.381078,21.783361],[110.379162,21.763675],[110.389048,21.762124],[110.391041,21.776674],[110.381078,21.783361]]],[[[110.545006,21.083853],[110.574971,21.087991],[110.582328,21.094763],[110.604247,21.155856],[110.615819,21.177718],[110.631606,21.190877],[110.635132,21.205807],[110.632373,21.21107],[110.613443,21.207633],[110.60394,21.198074],[110.589532,21.194529],[110.583018,21.201726],[110.557115,21.201618],[110.525463,21.190501],[110.506534,21.209781],[110.496034,21.212144],[110.482853,21.201028],[110.465073,21.198933],[110.465533,21.191683],[110.457409,21.184915],[110.433805,21.183626],[110.432042,21.174173],[110.436717,21.16676],[110.451201,21.165203],[110.46331,21.14957],[110.489214,21.139094],[110.502012,21.142908],[110.510825,21.137858],[110.520405,21.114539],[110.530521,21.115667],[110.533357,21.108359],[110.528759,21.099922],[110.53466,21.088529],[110.545006,21.083853]]],[[[110.51757,21.078962],[110.497644,21.076059],[110.478944,21.062729],[110.459708,21.06289],[110.433881,21.078693],[110.413879,21.093688],[110.398551,21.096268],[110.383684,21.092774],[110.352492,21.079499],[110.334865,21.078585],[110.328964,21.088152],[110.306126,21.088099],[110.283595,21.053644],[110.275778,21.033591],[110.262673,21.025956],[110.227649,20.994876],[110.211096,20.986862],[110.205348,20.978526],[110.198451,20.956903],[110.20121,20.938397],[110.214468,20.937698],[110.241598,20.949372],[110.272253,20.952976],[110.309498,20.963358],[110.347664,20.984765],[110.363911,20.988046],[110.391654,20.985894],[110.407518,20.990466],[110.434341,20.985141],[110.451661,20.988368],[110.467372,20.987185],[110.47289,20.983151],[110.495651,20.950125],[110.501935,20.925593],[110.511822,20.916553],[110.526153,20.916284],[110.535809,20.92301],[110.538108,20.937644],[110.536576,20.961798],[110.539181,20.9874],[110.560717,21.048322],[110.560103,21.061385],[110.548838,21.069609],[110.530138,21.077457],[110.51757,21.078962]]],[[[110.714758,21.526811],[110.706788,21.521023],[110.708014,21.519362],[110.717364,21.519684],[110.714758,21.526811]]],[[[110.405372,20.678054],[110.42047,20.676977],[110.423995,20.683659],[110.428593,20.675198],[110.438786,20.679779],[110.435414,20.698747],[110.423842,20.71114],[110.41043,20.707908],[110.408744,20.695999],[110.401004,20.691581],[110.405372,20.678054]]],[[[110.645018,20.935654],[110.639807,20.940173],[110.604553,20.952331],[110.589686,20.953084],[110.584091,20.948834],[110.567691,20.925324],[110.548914,20.908644],[110.546002,20.894975],[110.55152,20.872641],[110.562632,20.861068],[110.588536,20.856762],[110.611757,20.860046],[110.621107,20.87038],[110.634135,20.899011],[110.646321,20.917307],[110.645018,20.935654]]],[[[110.556655,20.327463],[110.564548,20.325302],[110.593671,20.360678],[110.594284,20.371155],[110.58639,20.381091],[110.575891,20.350687],[110.556655,20.327463]]],[[[110.420776,21.159992],[110.419473,21.151182],[110.442235,21.148281],[110.447753,21.160153],[110.42775,21.163323],[110.420776,21.159992]]],[[[110.395409,21.104382],[110.396099,21.098525],[110.426524,21.094602],[110.428593,21.105189],[110.416101,21.112389],[110.395409,21.104382]]]]}},{"type":"Feature","properties":{"adcode":440900,"name":"茂名市","center":[110.919229,21.659751],"centroid":[110.958736,22.008884],"childrenNum":5,"level":"city","parent":{"adcode":440000},"subFeatureIndex":8,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.706788,21.521023],[110.714758,21.526811],[110.729396,21.523863],[110.72817,21.531097],[110.735987,21.533348],[110.725257,21.547761],[110.727403,21.573636],[110.734301,21.575564],[110.736523,21.58542],[110.747176,21.588741],[110.743344,21.606201],[110.73683,21.609522],[110.736217,21.623874],[110.749858,21.635922],[110.75461,21.634797],[110.761507,21.647969],[110.771853,21.647808],[110.786874,21.633298],[110.798216,21.631852],[110.79883,21.619857],[110.793618,21.596025],[110.795611,21.579582],[110.813697,21.583064],[110.817759,21.569083],[110.826342,21.559815],[110.818679,21.551672],[110.822127,21.541974],[110.828872,21.542671],[110.848031,21.527668],[110.848721,21.517058],[110.856231,21.503714],[110.840674,21.493638],[110.857841,21.496103],[110.867344,21.506125],[110.876004,21.49814],[110.874471,21.484848],[110.877843,21.476754],[110.870409,21.471125],[110.883897,21.469678],[110.895316,21.460833],[110.895853,21.451236],[110.880449,21.444856],[110.893554,21.436653],[110.901907,21.425768],[110.910337,21.439817],[110.927121,21.441586],[110.929037,21.447912],[110.938233,21.441854],[110.950112,21.443731],[110.965363,21.433329],[110.977012,21.406785],[111.00077,21.417993],[111.034797,21.438744],[111.061313,21.449199],[111.076564,21.45247],[111.108599,21.455472],[111.116646,21.453167],[111.146611,21.459225],[111.171442,21.458474],[111.211983,21.469035],[111.239113,21.471769],[111.251605,21.48056],[111.276895,21.484955],[111.290536,21.484204],[111.295595,21.476271],[111.281493,21.458152],[111.2818,21.446518],[111.273829,21.443891],[111.253597,21.452577],[111.250532,21.449574],[111.257736,21.436546],[111.257352,21.415151],[111.263483,21.412684],[111.285862,21.419012],[111.301189,21.433704],[111.307627,21.433811],[111.329852,21.446787],[111.353149,21.464317],[111.382502,21.495514],[111.395837,21.501731],[111.452395,21.515182],[111.459139,21.524935],[111.458909,21.534151],[111.44703,21.570904],[111.439367,21.575725],[111.428944,21.570315],[111.430783,21.57985],[111.42151,21.573743],[111.418291,21.578671],[111.423809,21.591794],[111.416452,21.598061],[111.427718,21.614234],[111.42059,21.617394],[111.415456,21.632762],[111.416299,21.646898],[111.421587,21.648772],[111.42289,21.661353],[111.43155,21.670293],[111.428944,21.676984],[111.44067,21.69347],[111.431243,21.71857],[111.40304,21.728095],[111.389859,21.727132],[111.381275,21.734463],[111.383651,21.750247],[111.388786,21.756239],[111.374301,21.774374],[111.386947,21.780258],[111.401508,21.798337],[111.423503,21.81374],[111.417218,21.850154],[111.402887,21.854858],[111.40327,21.862183],[111.374608,21.860525],[111.367864,21.862557],[111.362499,21.877044],[111.340044,21.874424],[111.325177,21.886986],[111.320119,21.897836],[111.310922,21.893988],[111.290077,21.907991],[111.287241,21.924129],[111.294675,21.935885],[111.283409,21.952181],[111.283716,21.971841],[111.287624,21.977984],[111.283333,21.986797],[111.287624,22.000043],[111.305941,22.011846],[111.304638,22.029948],[111.295901,22.03139],[111.285325,22.048369],[111.288467,22.058299],[111.300653,22.064012],[111.298583,22.069991],[111.304561,22.084403],[111.316976,22.082641],[111.312685,22.088353],[111.327169,22.10303],[111.32441,22.113383],[111.337515,22.118453],[111.340657,22.129445],[111.331384,22.142198],[111.33445,22.160017],[111.327169,22.171326],[111.348091,22.181035],[111.354069,22.193356],[111.346099,22.211488],[111.360507,22.233938],[111.37683,22.243162],[111.381275,22.240869],[111.388556,22.251319],[111.401278,22.253025],[111.416835,22.263367],[111.42266,22.272643],[111.433389,22.275255],[111.453468,22.270297],[111.459446,22.296415],[111.46481,22.30217],[111.459369,22.309738],[111.468182,22.326683],[111.465807,22.33004],[111.479601,22.334143],[111.492247,22.333557],[111.494163,22.339418],[111.511176,22.349594],[111.517001,22.365309],[111.531102,22.358384],[111.542751,22.368079],[111.55256,22.364723],[111.57149,22.375217],[111.590266,22.369784],[111.600689,22.375537],[111.60728,22.39322],[111.616783,22.390504],[111.630884,22.402859],[111.649584,22.426716],[111.660083,22.434915],[111.679089,22.45685],[111.683381,22.468774],[111.680315,22.4824],[111.678553,22.496397],[111.671425,22.503262],[111.648128,22.498207],[111.633873,22.503262],[111.625673,22.510925],[111.619618,22.497302],[111.616016,22.508158],[111.621304,22.521195],[111.616093,22.521408],[111.618315,22.533912],[111.610269,22.534125],[111.612031,22.542584],[111.60682,22.54966],[111.59632,22.551362],[111.569344,22.540722],[111.559381,22.528804],[111.561144,22.523377],[111.54459,22.517364],[111.545433,22.499324],[111.525201,22.480164],[111.507804,22.493949],[111.486882,22.505551],[111.469409,22.490277],[111.476919,22.480164],[111.47347,22.474629],[111.480444,22.46015],[111.471325,22.441996],[111.446034,22.442209],[111.43952,22.427834],[111.421817,22.426662],[111.417065,22.431135],[111.421127,22.446948],[111.409631,22.457116],[111.408788,22.475268],[111.403347,22.479526],[111.410628,22.492033],[111.413387,22.512628],[111.403117,22.516087],[111.384647,22.509808],[111.373688,22.516034],[111.350084,22.506988],[111.338588,22.522951],[111.329852,22.516087],[111.293295,22.50603],[111.276972,22.491927],[111.272067,22.506136],[111.277278,22.517843],[111.285172,22.523856],[111.293909,22.547638],[111.322724,22.54966],[111.326633,22.557267],[111.303641,22.569448],[111.303105,22.580724],[111.279271,22.592053],[111.25352,22.589234],[111.249076,22.58365],[111.219187,22.58583],[111.215662,22.594659],[111.196732,22.61024],[111.185849,22.60439],[111.174737,22.605773],[111.161862,22.620236],[111.144235,22.625713],[111.143162,22.638686],[111.136418,22.643789],[111.127911,22.666169],[111.137108,22.674514],[111.136878,22.685941],[111.124539,22.695826],[111.123543,22.701459],[111.108369,22.704328],[111.104767,22.694869],[111.089669,22.694285],[111.074035,22.667232],[111.06208,22.666169],[111.055642,22.648521],[111.030735,22.646767],[111.027976,22.651551],[111.010043,22.644906],[110.997091,22.631349],[110.987358,22.640228],[110.977319,22.641557],[110.959002,22.636506],[110.961761,22.625766],[110.957699,22.616727],[110.941299,22.608113],[110.895853,22.613537],[110.897922,22.591999],[110.887269,22.583543],[110.87769,22.582692],[110.861213,22.587745],[110.853779,22.582267],[110.83324,22.584926],[110.81546,22.578065],[110.807566,22.570672],[110.805804,22.558916],[110.799213,22.556841],[110.793542,22.571363],[110.778674,22.585405],[110.760204,22.580777],[110.764496,22.565938],[110.761507,22.559607],[110.748095,22.554767],[110.756909,22.548436],[110.754303,22.536838],[110.760817,22.516779],[110.750471,22.517045],[110.740432,22.498845],[110.739972,22.488734],[110.747789,22.476119],[110.741351,22.464302],[110.725947,22.461215],[110.705102,22.466432],[110.698358,22.474469],[110.688241,22.477769],[110.68349,22.473405],[110.692686,22.457755],[110.693529,22.448279],[110.706711,22.446415],[110.713302,22.437471],[110.713992,22.417078],[110.706864,22.405362],[110.712382,22.395457],[110.711539,22.369624],[110.723801,22.359876],[110.729396,22.366375],[110.741275,22.362007],[110.750165,22.344799],[110.749398,22.329774],[110.760511,22.324818],[110.773233,22.307393],[110.772619,22.295562],[110.785571,22.294603],[110.78971,22.286661],[110.784498,22.280798],[110.758748,22.274668],[110.738899,22.281917],[110.725334,22.295615],[110.720966,22.294123],[110.711999,22.27776],[110.695445,22.272323],[110.694526,22.258249],[110.686019,22.248547],[110.664637,22.245348],[110.653525,22.238203],[110.646857,22.223007],[110.652835,22.207702],[110.664714,22.203382],[110.67529,22.188449],[110.678892,22.17266],[110.670462,22.17282],[110.66548,22.165192],[110.658123,22.167539],[110.653141,22.159377],[110.629077,22.14908],[110.6208,22.15783],[110.606009,22.155909],[110.598422,22.163431],[110.602484,22.183382],[110.585317,22.185088],[110.560333,22.196396],[110.529295,22.164392],[110.529448,22.154469],[110.510672,22.145026],[110.489444,22.144599],[110.483389,22.150521],[110.490133,22.155162],[110.460245,22.178581],[110.453501,22.192182],[110.430816,22.206209],[110.414569,22.208555],[110.409817,22.203276],[110.41066,22.190209],[110.399318,22.187382],[110.390964,22.179008],[110.393493,22.170473],[110.381078,22.164232],[110.375407,22.166312],[110.348507,22.195862],[110.342529,22.183435],[110.337471,22.184022],[110.334789,22.170366],[110.326052,22.164445],[110.326589,22.152655],[110.334329,22.149027],[110.352186,22.132487],[110.360922,22.132113],[110.364601,22.12523],[110.362915,22.110288],[110.365674,22.098707],[110.350806,22.096999],[110.351266,22.088993],[110.359236,22.084083],[110.358853,22.075916],[110.351726,22.074421],[110.355481,22.061556],[110.353105,22.043564],[110.347741,22.038972],[110.363528,22.005811],[110.356324,22.00736],[110.359926,21.993901],[110.352952,21.976595],[110.376786,21.967781],[110.391117,21.950258],[110.400007,21.955387],[110.412959,21.953837],[110.418477,21.944381],[110.442388,21.940854],[110.440702,21.93658],[110.414799,21.932732],[110.413419,21.915686],[110.400391,21.913976],[110.413726,21.911304],[110.396329,21.90612],[110.387592,21.890407],[110.398398,21.861755],[110.387362,21.852239],[110.372571,21.856355],[110.362532,21.868224],[110.350729,21.863947],[110.354255,21.856462],[110.351572,21.845663],[110.342606,21.837322],[110.339387,21.806359],[110.345901,21.800851],[110.348124,21.809354],[110.357857,21.815451],[110.365137,21.807055],[110.350193,21.809675],[110.348354,21.802509],[110.362225,21.797642],[110.377246,21.806627],[110.37556,21.798765],[110.386749,21.795556],[110.388359,21.789084],[110.380312,21.784484],[110.381078,21.783361],[110.391041,21.776674],[110.389048,21.762124],[110.379162,21.763675],[110.375177,21.760305],[110.365367,21.748],[110.368739,21.721835],[110.351419,21.713647],[110.369889,21.689349],[110.367666,21.683354],[110.385753,21.674736],[110.39242,21.681588],[110.396712,21.673612],[110.402843,21.689188],[110.40974,21.686619],[110.412346,21.675753],[110.382457,21.667456],[110.385753,21.657552],[110.407058,21.648611],[110.396865,21.633137],[110.405295,21.634636],[110.405525,21.61809],[110.412653,21.616966],[110.412653,21.60438],[110.406522,21.60181],[110.413342,21.586063],[110.42024,21.591312],[110.417481,21.598168],[110.427214,21.600096],[110.443154,21.58692],[110.439399,21.581082],[110.427904,21.580653],[110.429666,21.575725],[110.422692,21.562226],[110.434494,21.553868],[110.443768,21.556386],[110.450358,21.550439],[110.45534,21.554511],[110.470361,21.547546],[110.475572,21.554136],[110.483849,21.543849],[110.477718,21.526221],[110.485152,21.513735],[110.497567,21.517111],[110.510442,21.499587],[110.508373,21.490958],[110.517646,21.489725],[110.518183,21.480184],[110.532437,21.480345],[110.538875,21.473859],[110.545466,21.47922],[110.54171,21.493102],[110.557038,21.512663],[110.575201,21.515772],[110.577194,21.499158],[110.590069,21.500605],[110.599035,21.507304],[110.609381,21.498997],[110.621184,21.481042],[110.645478,21.482918],[110.645095,21.501248],[110.657893,21.503607],[110.656973,21.490904],[110.665863,21.497497],[110.683337,21.488332],[110.687935,21.49144],[110.681881,21.507519],[110.672148,21.51261],[110.677742,21.521398],[110.693453,21.513896],[110.706788,21.521023]]],[[[110.508066,21.490583],[110.509063,21.479273],[110.490823,21.482811],[110.494118,21.474234],[110.506687,21.472251],[110.514044,21.480774],[110.508066,21.490583]]],[[[110.379162,21.763675],[110.381078,21.783361],[110.380312,21.784484],[110.373184,21.784163],[110.370042,21.770148],[110.375177,21.760305],[110.379162,21.763675]]],[[[110.717364,21.519684],[110.708014,21.519362],[110.713532,21.511752],[110.708474,21.500927],[110.723342,21.503553],[110.730775,21.501088],[110.717364,21.519684]]],[[[111.1847,21.37101],[111.194816,21.380075],[111.195659,21.391017],[111.1847,21.381953],[111.1847,21.37101]]],[[[110.484002,21.447108],[110.49044,21.456866],[110.484539,21.456705],[110.484002,21.447108]]]]}},{"type":"Feature","properties":{"adcode":441200,"name":"肇庆市","center":[112.472529,23.051546],"centroid":[112.210411,23.536359],"childrenNum":8,"level":"city","parent":{"adcode":440000},"subFeatureIndex":9,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.830493,23.545762],[112.802137,23.545551],[112.796772,23.551835],[112.7934,23.571688],[112.800144,23.571846],[112.799761,23.588951],[112.781828,23.588529],[112.772171,23.603309],[112.756844,23.603309],[112.750483,23.610065],[112.752092,23.628643],[112.778302,23.641255],[112.784663,23.655291],[112.780908,23.671224],[112.768646,23.677397],[112.75922,23.672332],[112.751249,23.675286],[112.744965,23.668481],[112.739907,23.672596],[112.744965,23.686523],[112.728718,23.678504],[112.715076,23.691639],[112.72159,23.698549],[112.724579,23.710258],[112.713467,23.706883],[112.711321,23.712104],[112.725882,23.725816],[112.743126,23.752444],[112.730021,23.758507],[112.706033,23.752813],[112.69768,23.765677],[112.704194,23.790557],[112.700668,23.793192],[112.70588,23.806369],[112.689479,23.806369],[112.675455,23.815169],[112.655376,23.812587],[112.661353,23.821651],[112.675225,23.831241],[112.672159,23.851473],[112.679516,23.857216],[112.672159,23.864801],[112.692162,23.88961],[112.685494,23.895351],[112.693235,23.904251],[112.693464,23.912729],[112.683272,23.92405],[112.682582,23.939056],[112.675838,23.939846],[112.662886,23.949585],[112.645106,23.941004],[112.622651,23.943636],[112.608167,23.952586],[112.588318,23.956692],[112.575136,23.967325],[112.567012,23.964903],[112.564253,23.977325],[112.535668,23.970746],[112.516125,23.977009],[112.511297,24.001376],[112.506469,24.007269],[112.518501,24.016635],[112.507618,24.043309],[112.507542,24.051778],[112.497885,24.064401],[112.500798,24.08081],[112.489532,24.086122],[112.49367,24.095377],[112.486696,24.114148],[112.463782,24.120772],[112.452516,24.115725],[112.455351,24.12482],[112.446921,24.121929],[112.429831,24.127081],[112.428452,24.139802],[112.434659,24.147529],[112.429525,24.160564],[112.434813,24.164453],[112.43144,24.173387],[112.439028,24.180324],[112.439564,24.19057],[112.453052,24.20938],[112.458723,24.238377],[112.449987,24.28102],[112.444239,24.287741],[112.423777,24.284958],[112.411285,24.307061],[112.401858,24.310211],[112.393888,24.326641],[112.384845,24.328373],[112.373732,24.347949],[112.342004,24.353512],[112.319703,24.380167],[112.307211,24.378593],[112.288971,24.388666],[112.284679,24.377334],[112.293646,24.344538],[112.293723,24.327585],[112.27441,24.320604],[112.258316,24.324279],[112.256937,24.320762],[112.261995,24.290576],[112.255557,24.279182],[112.256324,24.2597],[112.249503,24.243367],[112.235708,24.246203],[112.218311,24.244365],[112.215093,24.223459],[112.196929,24.204074],[112.169876,24.197454],[112.166658,24.187943],[112.157538,24.185841],[112.148341,24.190098],[112.144433,24.201394],[112.129258,24.207489],[112.122591,24.222986],[112.11508,24.229027],[112.106114,24.228555],[112.086878,24.256917],[112.067872,24.260698],[112.058369,24.247043],[112.053157,24.24594],[112.050398,24.224247],[112.041355,24.216682],[112.04603,24.197611],[112.041815,24.191516],[112.024955,24.188364],[112.006868,24.19015],[111.997672,24.186945],[111.994223,24.19861],[111.986866,24.205124],[111.978052,24.222671],[111.961575,24.234753],[111.942646,24.234858],[111.920804,24.233492],[111.912834,24.221726],[111.877887,24.228922],[111.87122,24.176593],[111.886777,24.163875],[111.88785,24.15473],[111.878807,24.126818],[111.878653,24.1101],[111.883482,24.095587],[111.88877,24.092064],[111.887927,24.07918],[111.89697,24.069608],[111.905783,24.046833],[111.921034,24.037364],[111.921494,24.012005],[111.940347,23.987746],[111.917585,23.95227],[111.910151,23.952164],[111.911991,23.943952],[111.897506,23.946637],[111.8867,23.944321],[111.87896,23.936213],[111.866085,23.946321],[111.854436,23.947427],[111.851294,23.93416],[111.857655,23.918311],[111.845929,23.904409],[111.838879,23.91136],[111.822861,23.911202],[111.822631,23.903567],[111.812668,23.887504],[111.816884,23.875073],[111.823781,23.871755],[111.820102,23.855372],[111.824777,23.832348],[111.815274,23.829081],[111.810599,23.807001],[111.796191,23.815696],[111.791593,23.809162],[111.774963,23.80816],[111.765843,23.815011],[111.752355,23.812745],[111.745994,23.820755],[111.737794,23.819227],[111.719707,23.825814],[111.714572,23.837195],[111.696946,23.835931],[111.693497,23.817277],[111.664451,23.834877],[111.654872,23.833296],[111.653722,23.821967],[111.645828,23.815327],[111.649354,23.811059],[111.641153,23.79704],[111.639161,23.786551],[111.628048,23.788607],[111.629351,23.736362],[111.618315,23.73478],[111.621611,23.725974],[111.66675,23.718907],[111.662689,23.706408],[111.665294,23.699973],[111.643223,23.696123],[111.635559,23.684518],[111.637092,23.678293],[111.625596,23.6765],[111.61479,23.658773],[111.615633,23.638986],[111.607433,23.637403],[111.594405,23.643471],[111.58858,23.638142],[111.584288,23.644685],[111.564286,23.633181],[111.551104,23.640464],[111.538382,23.630859],[111.508264,23.62574],[111.487035,23.626638],[111.482744,23.605684],[111.488951,23.592277],[111.489028,23.561339],[111.481901,23.558858],[111.478452,23.543914],[111.480215,23.532613],[111.464274,23.511486],[111.459599,23.49976],[111.452012,23.500975],[111.438754,23.481005],[111.433849,23.480266],[111.428867,23.466581],[111.399745,23.469382],[111.399975,23.456859],[111.392848,23.446712],[111.395607,23.43831],[111.383421,23.399671],[111.392081,23.391106],[111.389169,23.375985],[111.37798,23.369587],[111.373382,23.355203],[111.364722,23.343886],[111.361963,23.330293],[111.365565,23.31982],[111.375068,23.315271],[111.375757,23.319926],[111.392618,23.325586],[111.408712,23.315958],[111.421127,23.316276],[111.442202,23.301411],[111.437834,23.295115],[111.453391,23.289559],[111.456917,23.281729],[111.472551,23.275061],[111.49286,23.284586],[111.506348,23.282311],[111.515774,23.288448],[111.519989,23.305484],[111.52796,23.310351],[111.523898,23.322624],[111.532175,23.324634],[111.550185,23.298183],[111.573866,23.270881],[111.576318,23.253682],[111.569191,23.243097],[111.542598,23.234787],[111.533784,23.22113],[111.539839,23.212978],[111.575322,23.194077],[111.594251,23.188518],[111.624446,23.189894],[111.637781,23.185446],[111.649507,23.164741],[111.656098,23.158492],[111.679089,23.154732],[111.692118,23.157909],[111.707522,23.150971],[111.726988,23.150865],[111.753658,23.137994],[111.770441,23.13328],[111.814048,23.129943],[111.836963,23.131585],[111.860414,23.141225],[111.876737,23.138365],[111.884708,23.131267],[111.899192,23.125599],[111.9218,23.124857],[111.959353,23.130843],[111.967553,23.129678],[111.979049,23.119719],[111.982727,23.097308],[111.991464,23.087028],[112.025951,23.081199],[112.035761,23.07272],[112.047563,23.072349],[112.083736,23.079716],[112.099446,23.089943],[112.118299,23.083001],[112.133473,23.08581],[112.165431,23.075052],[112.191182,23.074522],[112.234712,23.114898],[112.265137,23.119507],[112.285676,23.129731],[112.301233,23.122315],[112.311886,23.121255],[112.312729,23.115163],[112.327137,23.104196],[112.32637,23.093599],[112.317634,23.080298],[112.301233,23.079557],[112.295869,23.060849],[112.285446,23.042563],[112.289814,23.024274],[112.286825,23.020033],[112.299087,23.010331],[112.286595,22.984985],[112.285369,22.976235],[112.277322,22.970613],[112.290197,22.952633],[112.283683,22.944518],[112.280158,22.949026],[112.270885,22.943775],[112.257167,22.951625],[112.262914,22.939796],[112.261075,22.918735],[112.257703,22.910564],[112.26598,22.906638],[112.278319,22.91465],[112.285369,22.911254],[112.295332,22.915605],[112.307364,22.911254],[112.305602,22.896132],[112.29993,22.89178],[112.296022,22.873312],[112.298704,22.865138],[112.312269,22.850489],[112.310353,22.824848],[112.319703,22.825378],[112.336257,22.806476],[112.323841,22.802706],[112.315488,22.790015],[112.32844,22.786722],[112.356336,22.787997],[112.374116,22.794369],[112.384232,22.792245],[112.382622,22.784545],[112.392509,22.76978],[112.413507,22.774454],[112.441403,22.787731],[112.443779,22.791661],[112.463398,22.789271],[112.482788,22.795006],[112.489992,22.809131],[112.500414,22.812476],[112.499035,22.826918],[112.510531,22.823042],[112.52034,22.82729],[112.527544,22.815131],[112.532449,22.822883],[112.557433,22.826122],[112.571841,22.833077],[112.57414,22.84741],[112.563104,22.854151],[112.557816,22.863387],[112.561648,22.873312],[112.587168,22.862962],[112.591613,22.869809],[112.604258,22.870552],[112.632384,22.877664],[112.635526,22.883714],[112.659284,22.887163],[112.676374,22.895442],[112.677524,22.902764],[112.685418,22.89836],[112.692468,22.901969],[112.68649,22.907593],[112.696683,22.917196],[112.690092,22.927277],[112.672696,22.940486],[112.686874,22.948443],[112.699749,22.94839],[112.708869,22.927754],[112.734082,22.940751],[112.74144,22.962923],[112.736228,22.963878],[112.734772,22.98122],[112.751556,22.99103],[112.759679,22.979735],[112.777076,22.996545],[112.787882,23.000999],[112.790564,23.00206],[112.788189,22.991879],[112.794856,22.990394],[112.820453,23.010225],[112.834094,23.014784],[112.819227,23.052051],[112.818767,23.072614],[112.805355,23.091426],[112.799684,23.109971],[112.798458,23.13863],[112.793936,23.150071],[112.775773,23.166754],[112.771941,23.191694],[112.772938,23.199742],[112.764431,23.202919],[112.766347,23.21356],[112.772861,23.215678],[112.769412,23.223354],[112.781521,23.225842],[112.786349,23.205937],[112.7934,23.208213],[112.795316,23.226318],[112.799837,23.228224],[112.806582,23.212395],[112.80091,23.200431],[112.810873,23.200378],[112.815012,23.217107],[112.831949,23.215678],[112.842984,23.224465],[112.8472,23.238651],[112.823595,23.24569],[112.844977,23.263314],[112.847966,23.275061],[112.857546,23.287231],[112.866895,23.293263],[112.87134,23.315588],[112.883296,23.347324],[112.863907,23.349122],[112.859691,23.364563],[112.838386,23.387352],[112.814092,23.391793],[112.805892,23.387511],[112.810107,23.371332],[112.806582,23.367419],[112.787269,23.371173],[112.785736,23.394173],[112.794166,23.407547],[112.796389,23.429113],[112.803669,23.435773],[112.802673,23.444229],[112.811793,23.462513],[112.831029,23.468114],[112.838156,23.484704],[112.845743,23.487134],[112.845284,23.502929],[112.850418,23.527596],[112.840762,23.536046],[112.831642,23.537577],[112.830493,23.545762]]]]}},{"type":"Feature","properties":{"adcode":441300,"name":"惠州市","center":[114.412599,23.079404],"centroid":[114.507032,23.234461],"childrenNum":5,"level":"city","parent":{"adcode":440000},"subFeatureIndex":10,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.514451,22.660747],[114.532231,22.665691],[114.558441,22.682752],[114.599365,22.691574],[114.608178,22.695613],[114.6045,22.713202],[114.59423,22.721172],[114.601741,22.730736],[114.685966,22.765212],[114.693706,22.774507],[114.695545,22.784173],[114.709647,22.787678],[114.731335,22.771214],[114.749881,22.76399],[114.75241,22.759741],[114.739305,22.734242],[114.733941,22.719259],[114.738462,22.686047],[114.730492,22.671591],[114.728576,22.651285],[114.740915,22.638473],[114.743597,22.620183],[114.738999,22.606358],[114.747352,22.581628],[114.806517,22.584873],[114.842766,22.590351],[114.875184,22.590351],[114.885453,22.569182],[114.883614,22.540243],[114.914422,22.545776],[114.925305,22.551628],[114.927374,22.55849],[114.923236,22.58833],[114.924232,22.610878],[114.93772,22.637357],[114.945307,22.645491],[114.974353,22.668455],[114.997881,22.683071],[115.008533,22.698058],[115.02616,22.702149],[115.023094,22.717559],[115.009836,22.729248],[115.007154,22.740724],[114.994432,22.754376],[114.999797,22.773551],[114.992286,22.771055],[114.977725,22.776631],[114.974276,22.78805],[114.952741,22.794582],[114.944388,22.809397],[114.950595,22.81614],[114.950135,22.834722],[114.940556,22.842473],[114.931666,22.840456],[114.927987,22.849745],[114.932356,22.859035],[114.925075,22.868323],[114.939023,22.870075],[114.941245,22.877452],[114.926071,22.890454],[114.926225,22.900854],[114.917794,22.907009],[114.930363,22.920698],[114.946304,22.919372],[114.953507,22.928656],[114.965923,22.926693],[114.975962,22.938682],[114.986308,22.935075],[114.997804,22.938682],[114.99995,22.949504],[115.010066,22.955922],[115.020029,22.955498],[115.043557,22.969924],[115.047925,22.966848],[115.062333,22.994106],[115.075974,22.995219],[115.074901,22.999727],[115.085937,23.007733],[115.099349,22.996227],[115.110998,23.009589],[115.129467,23.003279],[115.146864,22.991136],[115.14878,23.000363],[115.163341,23.012558],[115.165947,23.027084],[115.180431,23.040337],[115.194226,23.045637],[115.20235,23.043835],[115.220743,23.054754],[115.22695,23.0538],[115.24588,23.061803],[115.251551,23.073568],[115.265882,23.084114],[115.262664,23.091426],[115.290253,23.095559],[115.287724,23.117865],[115.281363,23.125016],[115.285348,23.135505],[115.28167,23.145145],[115.283509,23.157433],[115.294468,23.160981],[115.311635,23.157645],[115.317076,23.163523],[115.325277,23.159392],[115.336925,23.170302],[115.342367,23.19413],[115.376241,23.205143],[115.388119,23.22023],[115.404443,23.21986],[115.40314,23.230658],[115.409655,23.237963],[115.425289,23.236322],[115.419311,23.243785],[115.403447,23.250083],[115.401378,23.276437],[115.39494,23.288342],[115.384517,23.289877],[115.377313,23.302892],[115.365971,23.299823],[115.362369,23.305114],[115.348191,23.308552],[115.345585,23.316964],[115.334856,23.322412],[115.310792,23.307971],[115.303665,23.324634],[115.306884,23.344415],[115.303282,23.346425],[115.306117,23.360597],[115.295618,23.357319],[115.277608,23.375879],[115.265039,23.384445],[115.240822,23.376725],[115.235457,23.385343],[115.221739,23.384445],[115.205799,23.377412],[115.197675,23.380796],[115.189551,23.376619],[115.17637,23.381008],[115.168553,23.377307],[115.169089,23.368794],[115.157517,23.362342],[115.141346,23.360809],[115.12234,23.368159],[115.11345,23.35954],[115.100269,23.355997],[115.087623,23.343886],[115.078274,23.344944],[115.069384,23.330875],[115.06126,23.331351],[115.056125,23.321195],[115.048768,23.320561],[115.031525,23.329235],[115.007154,23.332356],[115.007384,23.324475],[114.996884,23.31379],[114.992133,23.296755],[114.978032,23.294374],[114.971058,23.302469],[114.976116,23.316858],[114.970981,23.313631],[114.961631,23.326749],[114.948066,23.329606],[114.953891,23.343727],[114.944158,23.350179],[114.923236,23.338597],[114.913043,23.338756],[114.915419,23.316064],[114.919097,23.314848],[114.91174,23.295908],[114.91174,23.274532],[114.89488,23.254899],[114.898865,23.246643],[114.879629,23.241139],[114.87595,23.222877],[114.859933,23.211072],[114.861926,23.199901],[114.868823,23.189841],[114.856944,23.177451],[114.850353,23.165271],[114.834413,23.171784],[114.827362,23.184493],[114.804294,23.199795],[114.802455,23.205566],[114.786361,23.207101],[114.782989,23.224571],[114.786284,23.236269],[114.793258,23.23971],[114.786821,23.25654],[114.786821,23.266277],[114.78023,23.265801],[114.779234,23.275114],[114.768581,23.2794],[114.779617,23.294903],[114.776628,23.313472],[114.761684,23.314636],[114.75448,23.328812],[114.73693,23.328389],[114.73509,23.334366],[114.72758,23.327649],[114.727427,23.338333],[114.715854,23.347905],[114.719916,23.358588],[114.697461,23.366203],[114.703746,23.367578],[114.70022,23.389256],[114.693246,23.393538],[114.707501,23.40427],[114.686119,23.413521],[114.665657,23.409662],[114.659985,23.403318],[114.652858,23.411882],[114.650712,23.396922],[114.632779,23.407865],[114.642435,23.416956],[114.66673,23.447347],[114.676079,23.45522],[114.697155,23.46061],[114.698381,23.470438],[114.68267,23.493949],[114.685582,23.508317],[114.698764,23.520624],[114.692173,23.532402],[114.677076,23.529338],[114.661825,23.535623],[114.65554,23.562871],[114.6396,23.556429],[114.636764,23.548614],[114.625039,23.549406],[114.623583,23.529233],[114.606646,23.536838],[114.611321,23.544178],[114.600591,23.555214],[114.583041,23.563504],[114.57898,23.561498],[114.567637,23.570738],[114.567561,23.579554],[114.554609,23.590165],[114.556985,23.5965],[114.55047,23.605315],[114.557061,23.622204],[114.545872,23.631757],[114.530545,23.666634],[114.520428,23.668428],[114.512688,23.688527],[114.493529,23.699182],[114.473143,23.703349],[114.440112,23.687578],[114.424248,23.697178],[114.421413,23.709942],[114.405395,23.708201],[114.388612,23.739262],[114.378649,23.744693],[114.368839,23.725499],[114.355351,23.736046],[114.357267,23.747593],[114.341556,23.7516],[114.337954,23.770632],[114.348913,23.791453],[114.342706,23.796882],[114.34102,23.807844],[114.332666,23.808635],[114.326918,23.8324],[114.33029,23.852948],[114.343855,23.86654],[114.356347,23.869595],[114.346154,23.878392],[114.34991,23.887925],[114.331517,23.900512],[114.32163,23.894403],[114.303161,23.891454],[114.28814,23.90541],[114.279633,23.901091],[114.268367,23.902829],[114.263156,23.911044],[114.248671,23.906516],[114.236716,23.910676],[114.247905,23.929737],[114.254649,23.934686],[114.251047,23.940477],[114.271739,23.948479],[114.271816,23.959482],[114.263309,23.960218],[114.258711,23.952744],[114.244303,23.948269],[114.238479,23.941899],[114.21702,23.942636],[114.213341,23.946163],[114.201999,23.941267],[114.19196,23.9449],[114.186518,23.95627],[114.174333,23.959429],[114.16368,23.953586],[114.158162,23.939846],[114.142835,23.940425],[114.119844,23.936002],[114.117008,23.929737],[114.075624,23.924366],[114.074398,23.930895],[114.056771,23.935844],[114.04129,23.906937],[114.036232,23.901776],[114.04267,23.889874],[114.041827,23.871491],[114.047728,23.867488],[114.050487,23.85474],[114.057767,23.846784],[114.052249,23.830029],[114.040294,23.824444],[114.035312,23.813378],[114.047728,23.803312],[114.037228,23.793509],[114.056311,23.784021],[114.05999,23.775851],[114.038454,23.771212],[114.027419,23.760141],[114.02489,23.752549],[114.018222,23.76283],[114.009945,23.762988],[114.017686,23.778276],[114.013087,23.777959],[113.998756,23.762988],[113.976071,23.757716],[113.972853,23.739262],[113.96105,23.738207],[113.955916,23.732671],[113.940282,23.738155],[113.93645,23.732143],[113.920049,23.729454],[113.912386,23.716534],[113.900967,23.715426],[113.897595,23.700184],[113.881884,23.685151],[113.847857,23.679348],[113.839963,23.655449],[113.818811,23.656188],[113.827778,23.648009],[113.825555,23.639883],[113.816742,23.63582],[113.817432,23.623471],[113.832223,23.624263],[113.834215,23.61756],[113.843565,23.617877],[113.859582,23.60996],[113.858356,23.593491],[113.864027,23.587368],[113.852838,23.570579],[113.862495,23.566303],[113.871384,23.541327],[113.888168,23.535095],[113.89315,23.520254],[113.906408,23.511856],[113.911543,23.504144],[113.923115,23.503088],[113.929936,23.494213],[113.946643,23.492522],[113.940895,23.483594],[113.931162,23.483066],[113.938749,23.476726],[113.96105,23.480371],[113.974156,23.478839],[113.981743,23.472129],[113.974462,23.46489],[113.955456,23.466053],[113.952774,23.442907],[113.960054,23.43276],[113.975382,23.429378],[113.98795,23.431439],[113.984195,23.421238],[113.986801,23.405591],[114.000442,23.39338],[113.995997,23.386771],[113.982049,23.379369],[113.990556,23.354833],[114.000902,23.346636],[113.993928,23.333149],[113.984195,23.330505],[113.996151,23.309346],[113.996687,23.297443],[113.978217,23.30104],[113.977451,23.304849],[113.958445,23.314953],[113.958905,23.33262],[113.939285,23.342934],[113.927483,23.339972],[113.895985,23.34505],[113.889394,23.334154],[113.894989,23.314689],[113.888475,23.290512],[113.890314,23.282681],[113.877209,23.264213],[113.895142,23.253523],[113.890084,23.242144],[113.903802,23.212554],[113.893993,23.21266],[113.8838,23.191694],[113.889011,23.178616],[113.902116,23.177186],[113.895679,23.164529],[113.874757,23.165377],[113.858739,23.157221],[113.849849,23.148853],[113.844715,23.125599],[113.848163,23.116911],[113.863261,23.114633],[113.876596,23.124275],[113.894836,23.111295],[113.905565,23.11511],[113.938366,23.107534],[113.962737,23.114209],[113.970554,23.113308],[113.986418,23.10197],[113.993315,23.092645],[114.010252,23.083425],[114.029871,23.084379],[114.049797,23.097467],[114.065891,23.101441],[114.088959,23.094182],[114.091564,23.077331],[114.102217,23.058623],[114.120993,23.048022],[114.150269,23.024698],[114.151035,23.019079],[114.139233,23.023479],[114.124442,22.994],[114.132182,22.994424],[114.13816,22.986417],[114.15571,22.983129],[114.158546,22.978303],[114.178701,22.989174],[114.182303,22.995432],[114.20039,22.986682],[114.212498,22.987796],[114.222385,22.980743],[114.223841,22.963719],[114.211349,22.953959],[114.213035,22.928444],[114.229742,22.914703],[114.245299,22.911732],[114.249208,22.905152],[114.259171,22.906054],[114.26032,22.899634],[114.251737,22.884351],[114.24484,22.88053],[114.236946,22.88589],[114.231198,22.880318],[114.2348,22.862962],[114.233114,22.842314],[114.235643,22.839872],[114.23388,22.816937],[114.229205,22.81253],[114.234953,22.792989],[114.245529,22.790652],[114.250817,22.781677],[114.26147,22.781783],[114.282852,22.802388],[114.284844,22.808282],[114.294347,22.803397],[114.314503,22.800157],[114.318565,22.806583],[114.33052,22.809291],[114.353128,22.806636],[114.351136,22.789696],[114.342706,22.783642],[114.354125,22.778172],[114.355964,22.764893],[114.36562,22.766062],[114.388075,22.757191],[114.394819,22.759794],[114.396352,22.777322],[114.404706,22.781305],[114.41827,22.766327],[114.414055,22.752251],[114.413902,22.736261],[114.403403,22.723935],[114.409227,22.713574],[114.42057,22.713999],[114.426394,22.699918],[114.442028,22.697579],[114.445324,22.68897],[114.441338,22.682167],[114.428157,22.676746],[114.431912,22.660907],[114.449692,22.665319],[114.453447,22.669943],[114.478278,22.661864],[114.481956,22.668136],[114.505867,22.668455],[114.514451,22.660747]]],[[[114.650482,22.573916],[114.658913,22.560512],[114.657763,22.575565],[114.638144,22.585724],[114.641592,22.572799],[114.650482,22.573916]]],[[[114.628947,22.448492],[114.638527,22.454241],[114.652092,22.454507],[114.657227,22.462439],[114.631783,22.468082],[114.620287,22.466325],[114.628947,22.448492]]],[[[114.609941,22.670262],[114.61293,22.661704],[114.617988,22.669518],[114.609941,22.670262]]],[[[114.840007,22.51199],[114.84062,22.502038],[114.855641,22.513799],[114.845908,22.516779],[114.840007,22.51199]]],[[[114.649409,22.675152],[114.648107,22.664734],[114.653548,22.664043],[114.649409,22.675152]]],[[[114.72689,22.577693],[114.720836,22.588543],[114.719226,22.580246],[114.72689,22.577693]]],[[[114.641286,22.429378],[114.650482,22.428739],[114.659602,22.444073],[114.654238,22.445138],[114.641286,22.429378]]]]}},{"type":"Feature","properties":{"adcode":441400,"name":"梅州市","center":[116.117582,24.299112],"centroid":[116.084478,24.201791],"childrenNum":8,"level":"city","parent":{"adcode":440000},"subFeatureIndex":11,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.368468,23.73304],[116.373296,23.740264],[116.380883,23.737364],[116.401958,23.76225],[116.402955,23.769261],[116.416903,23.777854],[116.436215,23.780331],[116.439357,23.773584],[116.451849,23.76905],[116.464954,23.755238],[116.485187,23.751547],[116.496146,23.752496],[116.504729,23.763673],[116.505955,23.793614],[116.516761,23.802679],[116.510324,23.808793],[116.513389,23.815854],[116.509864,23.827764],[116.518371,23.823443],[116.525881,23.8324],[116.516608,23.845994],[116.498981,23.85848],[116.496989,23.869226],[116.514386,23.866698],[116.522279,23.882131],[116.535384,23.88171],[116.536304,23.886608],[116.558682,23.899037],[116.557992,23.907253],[116.575083,23.909149],[116.590487,23.900933],[116.604741,23.910781],[116.604205,23.929474],[116.608343,23.94153],[116.604205,23.950322],[116.623518,23.947269],[116.62574,23.950006],[116.60842,23.961166],[116.610796,23.968483],[116.628652,23.973693],[116.637312,23.968851],[116.641144,23.989588],[116.646969,23.994429],[116.657775,23.988588],[116.684751,23.989588],[116.68797,23.981062],[116.69548,23.991903],[116.690422,24.005375],[116.697166,24.002586],[116.708815,24.019161],[116.708662,24.033471],[116.700155,24.050094],[116.71257,24.062455],[116.734642,24.053619],[116.744069,24.061982],[116.75748,24.082125],[116.76752,24.074657],[116.772195,24.09401],[116.766447,24.107523],[116.76637,24.124032],[116.780241,24.147319],[116.789745,24.157095],[116.796872,24.157043],[116.809594,24.169183],[116.831819,24.161878],[116.836034,24.173387],[116.847836,24.182689],[116.859485,24.177276],[116.867072,24.163717],[116.878568,24.167817],[116.883856,24.181638],[116.884315,24.193671],[116.900333,24.196771],[116.904548,24.202813],[116.896577,24.218784],[116.917116,24.232809],[116.933363,24.222251],[116.939188,24.239585],[116.935203,24.249879],[116.939418,24.274561],[116.935892,24.284748],[116.918189,24.283383],[116.914281,24.287741],[116.912978,24.31147],[116.919569,24.320972],[116.909299,24.329212],[116.908226,24.341756],[116.896118,24.35073],[116.896961,24.360071],[116.903935,24.369883],[116.885235,24.396221],[116.87328,24.391132],[116.869448,24.407237],[116.863547,24.409807],[116.8555,24.423812],[116.848219,24.426906],[116.838946,24.442586],[116.841475,24.453389],[116.85343,24.453127],[116.860788,24.46225],[116.849369,24.47908],[116.832278,24.496117],[116.814269,24.483798],[116.816798,24.490403],[116.796795,24.50204],[116.783307,24.51834],[116.781085,24.533747],[116.772348,24.534743],[116.758323,24.546637],[116.757327,24.557483],[116.767826,24.564189],[116.761159,24.582943],[116.781621,24.603056],[116.787522,24.614735],[116.798864,24.624003],[116.798558,24.637146],[116.811969,24.644895],[116.815342,24.65458],[116.80124,24.678293],[116.777559,24.67955],[116.753802,24.654528],[116.741923,24.666568],[116.707282,24.665103],[116.700462,24.655732],[116.690116,24.659501],[116.667048,24.658611],[116.650954,24.651387],[116.635167,24.647722],[116.632101,24.640078],[116.624131,24.641387],[116.596465,24.654057],[116.586425,24.636727],[116.57217,24.628978],[116.570484,24.621752],[116.553318,24.613059],[116.530096,24.604941],[116.510477,24.615572],[116.513466,24.645052],[116.517681,24.651544],[116.504959,24.66704],[116.501511,24.698339],[116.486949,24.71859],[116.469706,24.719323],[116.455911,24.713724],[116.446102,24.714456],[116.437365,24.733606],[116.417209,24.743076],[116.41537,24.756467],[116.419125,24.767295],[116.40717,24.777808],[116.399659,24.794019],[116.38939,24.790359],[116.374905,24.807197],[116.377894,24.821836],[116.417822,24.840656],[116.407323,24.853253],[116.393911,24.856912],[116.394754,24.877869],[116.379274,24.877503],[116.374599,24.86841],[116.3618,24.869873],[116.349768,24.856703],[116.351071,24.848549],[116.345783,24.829103],[116.332295,24.826646],[116.318193,24.818176],[116.299954,24.802909],[116.29137,24.800242],[116.26493,24.799876],[116.251289,24.793392],[116.233049,24.80066],[116.23895,24.813262],[116.250906,24.822777],[116.250063,24.827901],[116.23895,24.83041],[116.229294,24.826019],[116.22117,24.830828],[116.22048,24.842642],[116.210901,24.854455],[116.200938,24.85801],[116.191741,24.877137],[116.181012,24.875099],[116.153269,24.846667],[116.139551,24.844681],[116.116023,24.851424],[116.094871,24.849229],[116.09058,24.838199],[116.083222,24.853515],[116.068891,24.84996],[116.06276,24.859891],[116.051648,24.862034],[116.043907,24.87165],[116.038313,24.886909],[116.023368,24.902166],[116.015245,24.905719],[116.00306,24.896471],[115.985586,24.899658],[115.976696,24.915959],[115.962748,24.91319],[115.954625,24.918519],[115.908412,24.923272],[115.8973,24.937115],[115.878447,24.932571],[115.882049,24.923847],[115.885421,24.898823],[115.904044,24.888007],[115.907033,24.880168],[115.893544,24.871075],[115.871779,24.868671],[115.8599,24.864804],[115.864729,24.876144],[115.865572,24.89041],[115.856145,24.891769],[115.850474,24.900338],[115.831621,24.908175],[115.819666,24.906816],[115.809243,24.892866],[115.805105,24.873218],[115.80725,24.862766],[115.796674,24.858584],[115.782573,24.862922],[115.79108,24.855083],[115.785562,24.846145],[115.791846,24.83867],[115.78081,24.835115],[115.779278,24.819797],[115.77284,24.814046],[115.774143,24.80453],[115.765406,24.79381],[115.776672,24.77446],[115.765406,24.76332],[115.757129,24.749929],[115.757359,24.73617],[115.771614,24.726282],[115.769162,24.709904],[115.780887,24.702054],[115.794988,24.70174],[115.801196,24.705665],[115.808017,24.697606],[115.805641,24.685883],[115.797747,24.682114],[115.798284,24.674944],[115.779584,24.677299],[115.761804,24.668139],[115.780197,24.663166],[115.789471,24.644895],[115.786712,24.634162],[115.796828,24.629606],[115.818056,24.603213],[115.840971,24.584043],[115.840971,24.576238],[115.848941,24.569952],[115.844113,24.562722],[115.806101,24.562932],[115.785102,24.56728],[115.759429,24.5502],[115.743948,24.543651],[115.717968,24.539721],[115.708541,24.544856],[115.686086,24.547004],[115.678269,24.56487],[115.687083,24.570633],[115.685167,24.585352],[115.671679,24.604732],[115.660566,24.606774],[115.649607,24.614735],[115.635582,24.612168],[115.629068,24.619762],[115.608682,24.62615],[115.594198,24.615206],[115.578181,24.615206],[115.570747,24.61929],[115.567681,24.631963],[115.559481,24.64301],[115.529056,24.634476],[115.520779,24.628507],[115.520702,24.618296],[115.506065,24.601485],[115.513882,24.576186],[115.493649,24.569166],[115.50024,24.562093],[115.483227,24.562722],[115.488055,24.547947],[115.485679,24.541502],[115.491427,24.522847],[115.486982,24.516348],[115.493266,24.498004],[115.505452,24.493181],[115.515951,24.495068],[115.530129,24.491661],[115.538712,24.48233],[115.554116,24.484427],[115.551511,24.469433],[115.560401,24.477035],[115.57067,24.478398],[115.576495,24.470953],[115.575728,24.461044],[115.593048,24.459733],[115.58891,24.45061],[115.575805,24.441747],[115.573812,24.42785],[115.582166,24.42271],[115.583852,24.411276],[115.576035,24.395801],[115.557948,24.386201],[115.550898,24.359914],[115.552737,24.333359],[115.560477,24.329002],[115.563619,24.312993],[115.571743,24.309948],[115.567758,24.295249],[115.577721,24.290313],[115.580863,24.277554],[115.576725,24.270098],[115.592205,24.255289],[115.590826,24.242894],[115.577874,24.242264],[115.570823,24.235751],[115.573276,24.227136],[115.571437,24.204231],[115.564156,24.200816],[115.557718,24.206333],[115.551204,24.198504],[115.538099,24.192777],[115.538789,24.179588],[115.545303,24.170234],[115.520626,24.182689],[115.515185,24.190728],[115.503612,24.187575],[115.510356,24.175542],[115.507061,24.165977],[115.520856,24.143324],[115.509897,24.140381],[115.521929,24.137122],[115.522235,24.128868],[115.532581,24.12256],[115.537409,24.108838],[115.529592,24.098479],[115.513192,24.099058],[115.508364,24.105157],[115.500393,24.128395],[115.494339,24.122297],[115.483763,24.123506],[115.480084,24.130761],[115.481387,24.143167],[115.473494,24.142168],[115.463301,24.130077],[115.453261,24.125504],[115.446824,24.130498],[115.442302,24.124452],[115.44874,24.112781],[115.437551,24.104],[115.428967,24.076708],[115.417778,24.068241],[115.426132,24.053934],[115.445598,24.038311],[115.445214,24.016109],[115.449889,24.012531],[115.446517,23.99364],[115.452495,23.983956],[115.453261,23.967009],[115.425212,23.953796],[115.408505,23.950585],[115.411877,23.939898],[115.400688,23.927999],[115.403524,23.909675],[115.391491,23.89672],[115.391875,23.881921],[115.381835,23.88034],[115.378846,23.867646],[115.371872,23.865223],[115.37647,23.851052],[115.354399,23.842411],[115.356315,23.829028],[115.349801,23.818489],[115.363136,23.80426],[115.35072,23.800677],[115.358461,23.792455],[115.349264,23.782545],[115.317153,23.761617],[115.325966,23.75761],[115.347961,23.75392],[115.365588,23.760246],[115.387276,23.778223],[115.399385,23.768734],[115.382985,23.748173],[115.388503,23.734516],[115.403677,23.724392],[115.412567,23.723021],[115.411724,23.707568],[115.407432,23.703349],[115.420231,23.696123],[115.443528,23.703349],[115.445981,23.709572],[115.454028,23.706672],[115.457093,23.696281],[115.451652,23.680509],[115.452648,23.663363],[115.448893,23.662888],[115.441919,23.643102],[115.432722,23.63772],[115.43142,23.600195],[115.428737,23.581138],[115.437781,23.571688],[115.436708,23.561762],[115.450349,23.555954],[115.435328,23.534356],[115.432569,23.516134],[115.440616,23.500975],[115.432569,23.495903],[115.418468,23.495956],[115.416858,23.484122],[115.426438,23.483119],[115.426208,23.468431],[115.432876,23.468906],[115.440693,23.447981],[115.435558,23.43165],[115.454871,23.418119],[115.454411,23.404904],[115.460082,23.400252],[115.457017,23.38381],[115.463914,23.375456],[115.475486,23.373658],[115.505068,23.378734],[115.510816,23.388621],[115.50936,23.399935],[115.513652,23.407177],[115.507827,23.411142],[115.518403,23.422506],[115.52668,23.421978],[115.527293,23.428743],[115.543234,23.436935],[115.561244,23.434557],[115.582013,23.448668],[115.596804,23.464838],[115.594964,23.469434],[115.606537,23.471865],[115.616116,23.475035],[115.623167,23.489934],[115.622094,23.507102],[115.637115,23.514972],[115.642096,23.513863],[115.639797,23.528758],[115.659493,23.532613],[115.669686,23.548403],[115.687389,23.557538],[115.69467,23.550092],[115.70195,23.534092],[115.713829,23.519092],[115.723179,23.514656],[115.733755,23.51624],[115.736437,23.525958],[115.751612,23.52749],[115.759735,23.522895],[115.776059,23.524638],[115.786175,23.517455],[115.793302,23.525694],[115.788398,23.539267],[115.801349,23.543122],[115.80794,23.554158],[115.802116,23.557168],[115.812309,23.578974],[115.798131,23.597133],[115.807787,23.59877],[115.808247,23.606687],[115.800047,23.615502],[115.81844,23.644632],[115.83461,23.660884],[115.86036,23.65756],[115.863656,23.646057],[115.876148,23.633973],[115.896227,23.625846],[115.897836,23.620093],[115.914696,23.630859],[115.923663,23.628168],[115.954471,23.64516],[115.95861,23.655871],[115.972328,23.664102],[115.985816,23.676974],[116.006585,23.675497],[116.017467,23.661939],[116.01126,23.654236],[116.021223,23.644685],[116.039386,23.648168],[116.055786,23.639514],[116.056476,23.646374],[116.072417,23.642785],[116.074256,23.636295],[116.087208,23.626426],[116.09878,23.622574],[116.106137,23.628379],[116.117326,23.620885],[116.133497,23.62421],[116.150664,23.616241],[116.165455,23.616082],[116.17787,23.628221],[116.179939,23.637139],[116.191358,23.641361],[116.187373,23.652336],[116.17764,23.657296],[116.183005,23.674442],[116.181089,23.68552],[116.19588,23.685784],[116.214349,23.702558],[116.214119,23.71896],[116.227684,23.728821],[116.236957,23.727608],[116.233126,23.718169],[116.271598,23.746433],[116.271215,23.757294],[116.288458,23.763199],[116.295892,23.759139],[116.306621,23.769841],[116.320033,23.775534],[116.335437,23.773953],[116.338732,23.758823],[116.350151,23.751969],[116.35475,23.743058],[116.368468,23.73304]]]]}},{"type":"Feature","properties":{"adcode":441500,"name":"汕尾市","center":[115.364238,22.774485],"centroid":[115.53778,23.004558],"childrenNum":4,"level":"city","parent":{"adcode":440000},"subFeatureIndex":12,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.606537,23.471865],[115.594964,23.469434],[115.596804,23.464838],[115.582013,23.448668],[115.561244,23.434557],[115.543234,23.436935],[115.527293,23.428743],[115.52668,23.421978],[115.518403,23.422506],[115.507827,23.411142],[115.513652,23.407177],[115.50936,23.399935],[115.510816,23.388621],[115.505068,23.378734],[115.475486,23.373658],[115.470888,23.35642],[115.47564,23.333467],[115.471348,23.327543],[115.497328,23.322465],[115.485756,23.315218],[115.468359,23.311409],[115.458396,23.312414],[115.460235,23.30067],[115.452342,23.29321],[115.459009,23.288554],[115.445674,23.279718],[115.437934,23.281993],[115.423909,23.277178],[115.430883,23.270617],[115.418161,23.25527],[115.419311,23.243785],[115.425289,23.236322],[115.409655,23.237963],[115.40314,23.230658],[115.404443,23.21986],[115.388119,23.22023],[115.376241,23.205143],[115.342367,23.19413],[115.336925,23.170302],[115.325277,23.159392],[115.317076,23.163523],[115.311635,23.157645],[115.294468,23.160981],[115.283509,23.157433],[115.28167,23.145145],[115.285348,23.135505],[115.281363,23.125016],[115.287724,23.117865],[115.290253,23.095559],[115.262664,23.091426],[115.265882,23.084114],[115.251551,23.073568],[115.24588,23.061803],[115.22695,23.0538],[115.220743,23.054754],[115.20235,23.043835],[115.194226,23.045637],[115.180431,23.040337],[115.165947,23.027084],[115.163341,23.012558],[115.14878,23.000363],[115.146864,22.991136],[115.129467,23.003279],[115.110998,23.009589],[115.099349,22.996227],[115.085937,23.007733],[115.074901,22.999727],[115.075974,22.995219],[115.062333,22.994106],[115.047925,22.966848],[115.043557,22.969924],[115.020029,22.955498],[115.010066,22.955922],[114.99995,22.949504],[114.997804,22.938682],[114.986308,22.935075],[114.975962,22.938682],[114.965923,22.926693],[114.953507,22.928656],[114.946304,22.919372],[114.930363,22.920698],[114.917794,22.907009],[114.926225,22.900854],[114.926071,22.890454],[114.941245,22.877452],[114.939023,22.870075],[114.925075,22.868323],[114.932356,22.859035],[114.927987,22.849745],[114.931666,22.840456],[114.940556,22.842473],[114.950135,22.834722],[114.950595,22.81614],[114.944388,22.809397],[114.952741,22.794582],[114.974276,22.78805],[114.977725,22.776631],[114.992286,22.771055],[114.999797,22.773551],[114.994432,22.754376],[115.007154,22.740724],[115.009836,22.729248],[115.023094,22.717559],[115.02616,22.702149],[115.039112,22.710811],[115.034513,22.721916],[115.023708,22.726167],[115.023784,22.736527],[115.034054,22.744442],[115.05352,22.747523],[115.050991,22.764628],[115.055129,22.778384],[115.066931,22.785607],[115.081799,22.789006],[115.106246,22.790174],[115.133376,22.799945],[115.154528,22.801644],[115.161195,22.786934],[115.173917,22.775357],[115.188402,22.772701],[115.194303,22.775463],[115.193307,22.791395],[115.18411,22.800635],[115.190241,22.818636],[115.198595,22.821874],[115.227947,22.825272],[115.244347,22.823945],[115.259521,22.817414],[115.233311,22.80175],[115.22902,22.782208],[115.235764,22.775569],[115.284429,22.783058],[115.310256,22.78412],[115.326886,22.781677],[115.337998,22.776684],[115.34344,22.768505],[115.346505,22.743008],[115.34183,22.72521],[115.35118,22.710545],[115.365741,22.698058],[115.378923,22.6937],[115.381375,22.683974],[115.396933,22.68525],[115.42912,22.683815],[115.441536,22.694285],[115.471731,22.697845],[115.493803,22.682805],[115.507827,22.682593],[115.537793,22.662927],[115.556722,22.665212],[115.559175,22.658515],[115.574195,22.650488],[115.581936,22.673185],[115.565382,22.685463],[115.567758,22.696251],[115.589063,22.724307],[115.607609,22.731533],[115.609142,22.752782],[115.602551,22.753898],[115.588067,22.744974],[115.573429,22.753101],[115.549595,22.749117],[115.541701,22.755492],[115.546376,22.766752],[115.570364,22.78651],[115.580173,22.80483],[115.583699,22.828564],[115.598949,22.842526],[115.63244,22.860043],[115.654205,22.865457],[115.682561,22.863918],[115.690301,22.857071],[115.696279,22.842791],[115.740116,22.840827],[115.755903,22.837324],[115.788398,22.809981],[115.794759,22.798883],[115.795985,22.783589],[115.793302,22.762397],[115.794222,22.744761],[115.805105,22.733711],[115.818746,22.731373],[115.829322,22.73472],[115.84488,22.749117],[115.86243,22.770789],[115.883352,22.785341],[115.909485,22.787147],[115.929487,22.801644],[115.942286,22.802759],[115.950563,22.795644],[115.959529,22.796175],[115.976083,22.812636],[115.997312,22.826865],[116.010647,22.828086],[116.038926,22.840774],[116.056093,22.844703],[116.070501,22.843588],[116.081077,22.834882],[116.088204,22.821609],[116.097094,22.816777],[116.106903,22.817892],[116.122538,22.82936],[116.138018,22.833607],[116.147675,22.843004],[116.155262,22.844384],[116.17672,22.860574],[116.192661,22.876019],[116.20408,22.892895],[116.21389,22.899262],[116.226918,22.914491],[116.223929,22.926852],[116.211667,22.926004],[116.198256,22.93168],[116.181549,22.92611],[116.16806,22.913695],[116.172505,22.893425],[116.156105,22.886208],[116.143843,22.890294],[116.135106,22.900589],[116.124453,22.892523],[116.109969,22.891143],[116.086595,22.901491],[116.080234,22.915764],[116.055633,22.920433],[116.026894,22.939107],[116.017697,22.934067],[116.005665,22.945632],[116.0026,22.937409],[115.983287,22.925897],[115.979225,22.938629],[115.967116,22.943775],[115.977846,22.951838],[115.973247,22.969818],[115.963515,22.94961],[115.958993,22.957036],[115.943819,22.956293],[115.9488,22.972682],[115.941213,22.987053],[115.94949,22.990023],[115.945505,22.996015],[115.959989,23.017435],[115.954471,23.021571],[115.942209,23.006195],[115.923586,23.017594],[115.937688,23.030424],[115.950716,23.024327],[115.955314,23.038322],[115.966963,23.04728],[115.964741,23.052952],[115.951099,23.061273],[115.950333,23.06599],[115.937688,23.067156],[115.939833,23.082206],[115.920751,23.100116],[115.923126,23.110977],[115.916612,23.112302],[115.908795,23.125652],[115.898832,23.129466],[115.883505,23.11956],[115.864345,23.117865],[115.85147,23.098791],[115.832924,23.112196],[115.833154,23.122897],[115.79951,23.133015],[115.791386,23.13953],[115.780657,23.15828],[115.76349,23.159233],[115.752991,23.167813],[115.725631,23.183805],[115.733525,23.192806],[115.730613,23.199107],[115.73866,23.211125],[115.752148,23.193601],[115.757743,23.215942],[115.750079,23.225683],[115.749236,23.236375],[115.758126,23.244949],[115.768089,23.24442],[115.797288,23.249184],[115.810929,23.24876],[115.831621,23.258128],[115.824571,23.272416],[115.797671,23.286596],[115.797288,23.309134],[115.802039,23.324422],[115.812845,23.326696],[115.819666,23.335741],[115.811236,23.346689],[115.787401,23.368952],[115.777668,23.383651],[115.739886,23.379263],[115.725938,23.369375],[115.703023,23.368265],[115.694057,23.354675],[115.676813,23.354992],[115.671602,23.38344],[115.673058,23.395071],[115.682868,23.407759],[115.657884,23.420445],[115.648304,23.430329],[115.646235,23.439684],[115.625236,23.45168],[115.61443,23.469751],[115.606537,23.471865]]],[[[116.769589,20.771743],[116.769742,20.75817],[116.761005,20.750306],[116.768976,20.743896],[116.797638,20.745458],[116.809747,20.738401],[116.831129,20.741526],[116.872513,20.738294],[116.880943,20.733499],[116.888301,20.713996],[116.88991,20.683066],[116.874506,20.650621],[116.848832,20.628304],[116.82791,20.619732],[116.791737,20.613155],[116.758476,20.618438],[116.748667,20.612292],[116.749586,20.600915],[116.770355,20.58792],[116.796029,20.582636],[116.825611,20.583714],[116.862933,20.588891],[116.887151,20.604043],[116.904931,20.619301],[116.917729,20.637037],[116.931831,20.666198],[116.933747,20.67633],[116.9257,20.726765],[116.911982,20.755908],[116.90677,20.762049],[116.886001,20.775514],[116.860328,20.779876],[116.845307,20.778529],[116.820093,20.780414],[116.769589,20.771743]]],[[[115.107702,22.77132],[115.117129,22.779712],[115.108622,22.783217],[115.107702,22.77132]]],[[[116.735562,20.694544],[116.736788,20.701118],[116.72238,20.707476],[116.71441,20.700256],[116.735562,20.694544]]],[[[115.185796,22.737695],[115.196525,22.735889],[115.195146,22.741945],[115.185796,22.737695]]],[[[115.943359,21.09745],[115.944125,21.08267],[115.953322,21.064288],[115.989188,21.035473],[116.016931,21.023214],[116.040075,21.020472],[116.055096,21.027408],[116.067358,21.040419],[116.065749,21.064879],[116.057549,21.087507],[116.043831,21.110186],[116.024441,21.124211],[116.000301,21.126951],[115.965047,21.12362],[115.950026,21.110616],[115.943359,21.09745]]],[[[115.926728,20.981538],[115.931173,20.964057],[115.939374,20.945821],[115.953168,20.928337],[115.969875,20.919513],[115.998844,20.922956],[116.000914,20.948404],[115.987196,20.966693],[115.954088,20.999823],[115.931557,20.992993],[115.926728,20.981538]]]]}},{"type":"Feature","properties":{"adcode":441600,"name":"河源市","center":[114.697802,23.746266],"centroid":[114.962729,24.043541],"childrenNum":6,"level":"city","parent":{"adcode":440000},"subFeatureIndex":13,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[115.419311,23.243785],[115.418161,23.25527],[115.430883,23.270617],[115.423909,23.277178],[115.437934,23.281993],[115.445674,23.279718],[115.459009,23.288554],[115.452342,23.29321],[115.460235,23.30067],[115.458396,23.312414],[115.468359,23.311409],[115.485756,23.315218],[115.497328,23.322465],[115.471348,23.327543],[115.47564,23.333467],[115.470888,23.35642],[115.475486,23.373658],[115.463914,23.375456],[115.457017,23.38381],[115.460082,23.400252],[115.454411,23.404904],[115.454871,23.418119],[115.435558,23.43165],[115.440693,23.447981],[115.432876,23.468906],[115.426208,23.468431],[115.426438,23.483119],[115.416858,23.484122],[115.418468,23.495956],[115.432569,23.495903],[115.440616,23.500975],[115.432569,23.516134],[115.435328,23.534356],[115.450349,23.555954],[115.436708,23.561762],[115.437781,23.571688],[115.428737,23.581138],[115.43142,23.600195],[115.432722,23.63772],[115.441919,23.643102],[115.448893,23.662888],[115.452648,23.663363],[115.451652,23.680509],[115.457093,23.696281],[115.454028,23.706672],[115.445981,23.709572],[115.443528,23.703349],[115.420231,23.696123],[115.407432,23.703349],[115.411724,23.707568],[115.412567,23.723021],[115.403677,23.724392],[115.388503,23.734516],[115.382985,23.748173],[115.399385,23.768734],[115.387276,23.778223],[115.365588,23.760246],[115.347961,23.75392],[115.325966,23.75761],[115.317153,23.761617],[115.349264,23.782545],[115.358461,23.792455],[115.35072,23.800677],[115.363136,23.80426],[115.349801,23.818489],[115.356315,23.829028],[115.354399,23.842411],[115.37647,23.851052],[115.371872,23.865223],[115.378846,23.867646],[115.381835,23.88034],[115.391875,23.881921],[115.391491,23.89672],[115.403524,23.909675],[115.400688,23.927999],[115.411877,23.939898],[115.408505,23.950585],[115.425212,23.953796],[115.453261,23.967009],[115.452495,23.983956],[115.446517,23.99364],[115.449889,24.012531],[115.445214,24.016109],[115.445598,24.038311],[115.426132,24.053934],[115.417778,24.068241],[115.428967,24.076708],[115.437551,24.104],[115.44874,24.112781],[115.442302,24.124452],[115.446824,24.130498],[115.453261,24.125504],[115.463301,24.130077],[115.473494,24.142168],[115.481387,24.143167],[115.480084,24.130761],[115.483763,24.123506],[115.494339,24.122297],[115.500393,24.128395],[115.508364,24.105157],[115.513192,24.099058],[115.529592,24.098479],[115.537409,24.108838],[115.532581,24.12256],[115.522235,24.128868],[115.521929,24.137122],[115.509897,24.140381],[115.520856,24.143324],[115.507061,24.165977],[115.510356,24.175542],[115.503612,24.187575],[115.515185,24.190728],[115.520626,24.182689],[115.545303,24.170234],[115.538789,24.179588],[115.538099,24.192777],[115.551204,24.198504],[115.557718,24.206333],[115.564156,24.200816],[115.571437,24.204231],[115.573276,24.227136],[115.570823,24.235751],[115.577874,24.242264],[115.590826,24.242894],[115.592205,24.255289],[115.576725,24.270098],[115.580863,24.277554],[115.577721,24.290313],[115.567758,24.295249],[115.571743,24.309948],[115.563619,24.312993],[115.560477,24.329002],[115.552737,24.333359],[115.550898,24.359914],[115.557948,24.386201],[115.576035,24.395801],[115.583852,24.411276],[115.582166,24.42271],[115.573812,24.42785],[115.575805,24.441747],[115.58891,24.45061],[115.593048,24.459733],[115.575728,24.461044],[115.576495,24.470953],[115.57067,24.478398],[115.560401,24.477035],[115.551511,24.469433],[115.554116,24.484427],[115.538712,24.48233],[115.530129,24.491661],[115.515951,24.495068],[115.505452,24.493181],[115.493266,24.498004],[115.486982,24.516348],[115.491427,24.522847],[115.485679,24.541502],[115.488055,24.547947],[115.483227,24.562722],[115.50024,24.562093],[115.493649,24.569166],[115.513882,24.576186],[115.506065,24.601485],[115.520702,24.618296],[115.520779,24.628507],[115.529056,24.634476],[115.559481,24.64301],[115.559634,24.660915],[115.555189,24.671803],[115.556186,24.68269],[115.534191,24.691954],[115.523078,24.703049],[115.52783,24.712573],[115.523691,24.717544],[115.507904,24.716497],[115.506601,24.724921],[115.496485,24.734077],[115.500087,24.74114],[115.48292,24.749667],[115.478705,24.761123],[115.465677,24.767243],[115.450962,24.766301],[115.41295,24.792869],[115.401301,24.790359],[115.389499,24.774408],[115.372562,24.774408],[115.362829,24.757461],[115.363749,24.739361],[115.358537,24.735176],[115.338995,24.749092],[115.321981,24.748725],[115.306654,24.758664],[115.278528,24.754113],[115.269944,24.749406],[115.258908,24.728793],[115.247566,24.731671],[115.233771,24.723508],[115.224575,24.726386],[115.200204,24.713671],[115.18434,24.711421],[115.188095,24.697135],[115.195146,24.691902],[115.168859,24.695094],[115.155448,24.688761],[115.14832,24.68986],[115.138511,24.681277],[115.125636,24.681486],[115.120731,24.66437],[115.111611,24.671437],[115.104943,24.667825],[115.08724,24.687087],[115.083255,24.700484],[115.074212,24.697972],[115.073829,24.704252],[115.059421,24.702735],[115.054899,24.709904],[115.045549,24.69792],[115.046699,24.688761],[115.030911,24.678136],[115.024857,24.669133],[115.007844,24.672431],[115.003858,24.679183],[114.991213,24.673321],[114.978875,24.673216],[114.962321,24.665155],[114.955194,24.655418],[114.937414,24.651911],[114.936801,24.665417],[114.919634,24.667092],[114.909594,24.661543],[114.905839,24.632538],[114.898558,24.623008],[114.901854,24.607926],[114.893807,24.590957],[114.89327,24.582367],[114.88668,24.580271],[114.882924,24.569218],[114.869053,24.562355],[114.861619,24.56728],[114.854262,24.582524],[114.859243,24.597295],[114.846675,24.60248],[114.83288,24.596352],[114.826366,24.588286],[114.804217,24.605413],[114.796017,24.602166],[114.781226,24.612954],[114.768964,24.605779],[114.752717,24.616253],[114.729879,24.608922],[114.730415,24.592424],[114.735703,24.582838],[114.732868,24.57519],[114.738079,24.56508],[114.72666,24.549781],[114.71869,24.55413],[114.705202,24.526096],[114.699914,24.537101],[114.686502,24.538568],[114.677842,24.553815],[114.665197,24.583676],[114.638604,24.570371],[114.624349,24.575662],[114.608255,24.563613],[114.592468,24.537991],[114.572159,24.542288],[114.562579,24.53752],[114.546715,24.542812],[114.534147,24.559002],[114.500656,24.534166],[114.481113,24.529974],[114.469924,24.510688],[114.451455,24.500362],[114.442718,24.498633],[114.42877,24.486262],[114.422256,24.496903],[114.41099,24.502564],[114.402023,24.498528],[114.406315,24.517973],[114.403403,24.528716],[114.390758,24.533537],[114.387309,24.548],[114.391677,24.563455],[114.379722,24.563403],[114.37658,24.571995],[114.363858,24.582524],[114.351059,24.57849],[114.338567,24.583362],[114.331593,24.576971],[114.324006,24.579538],[114.308142,24.574143],[114.310518,24.558583],[114.293275,24.551982],[114.288906,24.537991],[114.273732,24.533695],[114.280169,24.523109],[114.280399,24.511526],[114.286607,24.500572],[114.310595,24.480757],[114.306839,24.472998],[114.292968,24.468856],[114.283465,24.453965],[114.257868,24.435245],[114.242004,24.426014],[114.245683,24.411328],[114.254879,24.400155],[114.249898,24.386935],[114.249208,24.362695],[114.278637,24.364951],[114.293581,24.352672],[114.292508,24.346952],[114.280859,24.337348],[114.272966,24.324856],[114.280553,24.313098],[114.279326,24.303176],[114.263692,24.27829],[114.266451,24.272776],[114.254649,24.266055],[114.272889,24.257495],[114.254802,24.256707],[114.263156,24.246676],[114.274958,24.224195],[114.274192,24.212742],[114.290899,24.207594],[114.298026,24.195142],[114.289289,24.1819],[114.292891,24.175069],[114.306533,24.165399],[114.316419,24.147319],[114.33029,24.137279],[114.329831,24.126871],[114.337418,24.125294],[114.340713,24.135807],[114.352209,24.143219],[114.365161,24.132233],[114.378879,24.139172],[114.393517,24.140959],[114.419956,24.139329],[114.422179,24.131181],[114.433215,24.133337],[114.439499,24.121982],[114.446856,24.121245],[114.46387,24.110836],[114.479044,24.112939],[114.482953,24.118827],[114.474063,24.135229],[114.463946,24.14017],[114.469311,24.144376],[114.469848,24.162141],[114.46272,24.161931],[114.460574,24.169604],[114.470537,24.171811],[114.474216,24.16624],[114.48119,24.172284],[114.491613,24.192357],[114.511155,24.205335],[114.512458,24.210904],[114.548324,24.230603],[114.556065,24.245888],[114.566028,24.233019],[114.577293,24.227241],[114.591318,24.225981],[114.597602,24.21248],[114.590935,24.203653],[114.590782,24.187838],[114.600055,24.174911],[114.594077,24.164138],[114.568327,24.159303],[114.558134,24.15063],[114.565568,24.136175],[114.554226,24.124295],[114.546715,24.130393],[114.535833,24.124347],[114.533993,24.138856],[114.527939,24.135807],[114.522957,24.12419],[114.509469,24.106682],[114.495828,24.118617],[114.489697,24.114043],[114.493222,24.106787],[114.481267,24.086595],[114.46364,24.07592],[114.44586,24.07066],[114.437813,24.062192],[114.436587,24.048569],[114.440725,24.033208],[114.425628,24.032998],[114.420416,24.019582],[114.412523,24.027421],[114.398038,24.026],[114.399494,24.018003],[114.389685,24.012741],[114.385546,24.003901],[114.391984,23.991693],[114.385393,23.994482],[114.382941,23.981851],[114.389685,23.97043],[114.384856,23.967798],[114.386696,23.95627],[114.378036,23.942794],[114.382481,23.932159],[114.370449,23.92742],[114.36769,23.912519],[114.360486,23.910412],[114.362632,23.901091],[114.34991,23.887925],[114.346154,23.878392],[114.356347,23.869595],[114.343855,23.86654],[114.33029,23.852948],[114.326918,23.8324],[114.332666,23.808635],[114.34102,23.807844],[114.342706,23.796882],[114.348913,23.791453],[114.337954,23.770632],[114.341556,23.7516],[114.357267,23.747593],[114.355351,23.736046],[114.368839,23.725499],[114.378649,23.744693],[114.388612,23.739262],[114.405395,23.708201],[114.421413,23.709942],[114.424248,23.697178],[114.440112,23.687578],[114.473143,23.703349],[114.493529,23.699182],[114.512688,23.688527],[114.520428,23.668428],[114.530545,23.666634],[114.545872,23.631757],[114.557061,23.622204],[114.55047,23.605315],[114.556985,23.5965],[114.554609,23.590165],[114.567561,23.579554],[114.567637,23.570738],[114.57898,23.561498],[114.583041,23.563504],[114.600591,23.555214],[114.611321,23.544178],[114.606646,23.536838],[114.623583,23.529233],[114.625039,23.549406],[114.636764,23.548614],[114.6396,23.556429],[114.65554,23.562871],[114.661825,23.535623],[114.677076,23.529338],[114.692173,23.532402],[114.698764,23.520624],[114.685582,23.508317],[114.68267,23.493949],[114.698381,23.470438],[114.697155,23.46061],[114.676079,23.45522],[114.66673,23.447347],[114.642435,23.416956],[114.632779,23.407865],[114.650712,23.396922],[114.652858,23.411882],[114.659985,23.403318],[114.665657,23.409662],[114.686119,23.413521],[114.707501,23.40427],[114.693246,23.393538],[114.70022,23.389256],[114.703746,23.367578],[114.697461,23.366203],[114.719916,23.358588],[114.715854,23.347905],[114.727427,23.338333],[114.72758,23.327649],[114.73509,23.334366],[114.73693,23.328389],[114.75448,23.328812],[114.761684,23.314636],[114.776628,23.313472],[114.779617,23.294903],[114.768581,23.2794],[114.779234,23.275114],[114.78023,23.265801],[114.786821,23.266277],[114.786821,23.25654],[114.793258,23.23971],[114.786284,23.236269],[114.782989,23.224571],[114.786361,23.207101],[114.802455,23.205566],[114.804294,23.199795],[114.827362,23.184493],[114.834413,23.171784],[114.850353,23.165271],[114.856944,23.177451],[114.868823,23.189841],[114.861926,23.199901],[114.859933,23.211072],[114.87595,23.222877],[114.879629,23.241139],[114.898865,23.246643],[114.89488,23.254899],[114.91174,23.274532],[114.91174,23.295908],[114.919097,23.314848],[114.915419,23.316064],[114.913043,23.338756],[114.923236,23.338597],[114.944158,23.350179],[114.953891,23.343727],[114.948066,23.329606],[114.961631,23.326749],[114.970981,23.313631],[114.976116,23.316858],[114.971058,23.302469],[114.978032,23.294374],[114.992133,23.296755],[114.996884,23.31379],[115.007384,23.324475],[115.007154,23.332356],[115.031525,23.329235],[115.048768,23.320561],[115.056125,23.321195],[115.06126,23.331351],[115.069384,23.330875],[115.078274,23.344944],[115.087623,23.343886],[115.100269,23.355997],[115.11345,23.35954],[115.12234,23.368159],[115.141346,23.360809],[115.157517,23.362342],[115.169089,23.368794],[115.168553,23.377307],[115.17637,23.381008],[115.189551,23.376619],[115.197675,23.380796],[115.205799,23.377412],[115.221739,23.384445],[115.235457,23.385343],[115.240822,23.376725],[115.265039,23.384445],[115.277608,23.375879],[115.295618,23.357319],[115.306117,23.360597],[115.303282,23.346425],[115.306884,23.344415],[115.303665,23.324634],[115.310792,23.307971],[115.334856,23.322412],[115.345585,23.316964],[115.348191,23.308552],[115.362369,23.305114],[115.365971,23.299823],[115.377313,23.302892],[115.384517,23.289877],[115.39494,23.288342],[115.401378,23.276437],[115.403447,23.250083],[115.419311,23.243785]]]]}},{"type":"Feature","properties":{"adcode":441700,"name":"阳江市","center":[111.975107,21.859222],"centroid":[111.779569,22.02617],"childrenNum":4,"level":"city","parent":{"adcode":440000},"subFeatureIndex":14,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.307824,21.704174],[112.303456,21.71445],[112.310047,21.732483],[112.304529,21.744415],[112.313955,21.751263],[112.326754,21.767527],[112.333574,21.770844],[112.32775,21.799193],[112.34576,21.811814],[112.342464,21.818499],[112.358558,21.834006],[112.351737,21.849298],[112.370054,21.861434],[112.356872,21.872019],[112.343077,21.876723],[112.348365,21.885276],[112.350818,21.901631],[112.345147,21.906067],[112.346909,21.920442],[112.341085,21.919213],[112.340472,21.942831],[112.331045,21.9595],[112.323841,21.962919],[112.318477,21.976381],[112.299011,21.985248],[112.276939,21.982524],[112.273644,21.99358],[112.263757,22.001432],[112.239387,22.006185],[112.225669,22.012219],[112.232029,22.019589],[112.221607,22.01788],[112.216779,22.03956],[112.231263,22.0528],[112.226818,22.063585],[112.212334,22.069243],[112.199075,22.064706],[112.185051,22.066841],[112.173785,22.085204],[112.16773,22.085417],[112.156541,22.095718],[112.149721,22.090915],[112.143206,22.095185],[112.126116,22.096572],[112.126806,22.105538],[112.106727,22.125497],[112.105884,22.135795],[112.089867,22.137342],[112.086341,22.131313],[112.073236,22.130192],[112.072776,22.125177],[112.034381,22.113437],[112.027254,22.127044],[112.038826,22.131366],[112.051165,22.14684],[112.03668,22.168019],[112.041585,22.187489],[112.052161,22.194742],[112.051625,22.207542],[112.037906,22.215061],[112.037906,22.232178],[112.024112,22.235217],[112.021353,22.242842],[112.004262,22.248333],[112.010547,22.266193],[112.019973,22.268271],[112.036604,22.262781],[112.049479,22.270777],[112.061511,22.28357],[112.068332,22.295988],[112.062201,22.304515],[112.068945,22.318477],[112.065036,22.324392],[112.081896,22.351086],[112.098757,22.351618],[112.107877,22.347463],[112.119985,22.35636],[112.119832,22.337766],[112.128185,22.349754],[112.1347,22.349221],[112.13447,22.337233],[112.147268,22.339098],[112.150564,22.35327],[112.144433,22.358597],[112.153323,22.368452],[112.154012,22.37591],[112.165431,22.385018],[112.161523,22.400676],[112.142057,22.41548],[112.13286,22.405842],[112.108949,22.41335],[112.086725,22.416226],[112.077375,22.420858],[112.073006,22.434969],[112.058828,22.451207],[112.045494,22.45307],[112.034534,22.466325],[112.012923,22.471755],[112.014302,22.484795],[112.008861,22.491075],[111.995373,22.492406],[111.983724,22.505391],[111.98403,22.515342],[111.969546,22.546468],[111.976366,22.562959],[111.989931,22.565033],[111.998591,22.575459],[111.998361,22.589287],[111.98518,22.593861],[111.96602,22.627521],[111.956517,22.633795],[111.939121,22.620875],[111.931227,22.606039],[111.918965,22.592106],[111.914213,22.593701],[111.902258,22.581469],[111.900265,22.570512],[111.873825,22.579288],[111.870836,22.571735],[111.859417,22.581575],[111.835736,22.585937],[111.83405,22.595829],[111.821788,22.59769],[111.831904,22.60891],[111.841178,22.605454],[111.846925,22.612207],[111.859111,22.605401],[111.86049,22.617099],[111.85344,22.624331],[111.857425,22.632731],[111.871296,22.633529],[111.870836,22.65979],[111.86256,22.658993],[111.850681,22.676268],[111.841331,22.679085],[111.84248,22.687801],[111.835277,22.68897],[111.833437,22.680732],[111.820102,22.676427],[111.820332,22.666701],[111.809756,22.656123],[111.807074,22.645384],[111.814508,22.633263],[111.802476,22.626192],[111.784313,22.607581],[111.780327,22.595988],[111.76408,22.588011],[111.764004,22.582692],[111.738023,22.570459],[111.719707,22.54035],[111.721393,22.525931],[111.713346,22.504699],[111.691198,22.482134],[111.680315,22.4824],[111.683381,22.468774],[111.679089,22.45685],[111.660083,22.434915],[111.649584,22.426716],[111.630884,22.402859],[111.616783,22.390504],[111.60728,22.39322],[111.600689,22.375537],[111.590266,22.369784],[111.57149,22.375217],[111.55256,22.364723],[111.542751,22.368079],[111.531102,22.358384],[111.517001,22.365309],[111.511176,22.349594],[111.494163,22.339418],[111.492247,22.333557],[111.479601,22.334143],[111.465807,22.33004],[111.468182,22.326683],[111.459369,22.309738],[111.46481,22.30217],[111.459446,22.296415],[111.453468,22.270297],[111.433389,22.275255],[111.42266,22.272643],[111.416835,22.263367],[111.401278,22.253025],[111.388556,22.251319],[111.381275,22.240869],[111.37683,22.243162],[111.360507,22.233938],[111.346099,22.211488],[111.354069,22.193356],[111.348091,22.181035],[111.327169,22.171326],[111.33445,22.160017],[111.331384,22.142198],[111.340657,22.129445],[111.337515,22.118453],[111.32441,22.113383],[111.327169,22.10303],[111.312685,22.088353],[111.316976,22.082641],[111.304561,22.084403],[111.298583,22.069991],[111.300653,22.064012],[111.288467,22.058299],[111.285325,22.048369],[111.295901,22.03139],[111.304638,22.029948],[111.305941,22.011846],[111.287624,22.000043],[111.283333,21.986797],[111.287624,21.977984],[111.283716,21.971841],[111.283409,21.952181],[111.294675,21.935885],[111.287241,21.924129],[111.290077,21.907991],[111.310922,21.893988],[111.320119,21.897836],[111.325177,21.886986],[111.340044,21.874424],[111.362499,21.877044],[111.367864,21.862557],[111.374608,21.860525],[111.40327,21.862183],[111.402887,21.854858],[111.417218,21.850154],[111.423503,21.81374],[111.401508,21.798337],[111.386947,21.780258],[111.374301,21.774374],[111.388786,21.756239],[111.383651,21.750247],[111.381275,21.734463],[111.389859,21.727132],[111.40304,21.728095],[111.431243,21.71857],[111.44067,21.69347],[111.428944,21.676984],[111.43155,21.670293],[111.42289,21.661353],[111.421587,21.648772],[111.416299,21.646898],[111.415456,21.632762],[111.42059,21.617394],[111.427718,21.614234],[111.416452,21.598061],[111.423809,21.591794],[111.418291,21.578671],[111.42151,21.573743],[111.430783,21.57985],[111.428944,21.570315],[111.439367,21.575725],[111.44703,21.570904],[111.458909,21.534151],[111.459139,21.524935],[111.452395,21.515182],[111.47577,21.50023],[111.495006,21.50157],[111.515851,21.514753],[111.539839,21.518987],[111.541755,21.506393],[111.547886,21.502642],[111.560684,21.505429],[111.579384,21.518237],[111.605977,21.529383],[111.615863,21.529597],[111.645139,21.519308],[111.650427,21.512288],[111.662382,21.525739],[111.677403,21.529758],[111.676407,21.565815],[111.68453,21.581403],[111.693727,21.590348],[111.736644,21.610004],[111.758716,21.613913],[111.794429,21.611289],[111.810293,21.604541],[111.830985,21.582849],[111.813665,21.57144],[111.80738,21.559065],[111.812822,21.555047],[111.829375,21.557994],[111.846772,21.567369],[111.854972,21.567261],[111.862789,21.556976],[111.868691,21.559172],[111.88762,21.578671],[111.921494,21.599507],[111.941726,21.606844],[111.947244,21.600417],[111.972458,21.603256],[111.999204,21.61793],[112.006178,21.614663],[112.024955,21.629764],[112.022196,21.645988],[112.001274,21.655946],[111.972228,21.653644],[111.954525,21.667723],[111.95031,21.675592],[111.949697,21.690848],[111.955981,21.710543],[112.001197,21.74281],[112.03645,21.761428],[112.063197,21.771325],[112.136539,21.793844],[112.171792,21.798444],[112.183901,21.796358],[112.192331,21.789351],[112.196163,21.779403],[112.192101,21.757684],[112.197006,21.736657],[112.208808,21.737085],[112.220381,21.726918],[112.231646,21.729594],[112.241073,21.71552],[112.240076,21.701606],[112.260232,21.698073],[112.263068,21.69347],[112.274103,21.699732],[112.292573,21.699465],[112.307824,21.704174]]],[[[112.181065,21.545885],[112.186813,21.543314],[112.204823,21.548189],[112.190952,21.5506],[112.189879,21.558315],[112.180836,21.554779],[112.181065,21.545885]]],[[[112.140601,21.601917],[112.150104,21.601863],[112.144816,21.613913],[112.140601,21.601917]]],[[[112.118146,21.633458],[112.129258,21.640526],[112.118146,21.642829],[112.118146,21.633458]]]]}},{"type":"Feature","properties":{"adcode":441800,"name":"清远市","center":[113.051227,23.685022],"centroid":[112.879397,24.313361],"childrenNum":8,"level":"city","parent":{"adcode":440000},"subFeatureIndex":15,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.994804,24.927347],[112.984457,24.921183],[112.966831,24.919302],[112.959244,24.923481],[112.94177,24.915907],[112.937402,24.920452],[112.924527,24.918884],[112.904371,24.92181],[112.879311,24.907809],[112.873486,24.89668],[112.842065,24.897151],[112.804436,24.890724],[112.788342,24.892396],[112.780755,24.897307],[112.786732,24.912406],[112.782211,24.922698],[112.784433,24.938577],[112.773474,24.949963],[112.746344,24.956492],[112.742206,24.977484],[112.745348,24.981348],[112.741823,24.998577],[112.725882,25.010062],[112.715153,25.026035],[112.719215,25.048268],[112.715613,25.078375],[112.697296,25.089957],[112.695227,25.095538],[112.679746,25.109935],[112.668864,25.113951],[112.667868,25.12214],[112.659821,25.132779],[112.648018,25.133613],[112.628169,25.140601],[112.624797,25.134082],[112.612765,25.133196],[112.596518,25.12626],[112.562644,25.124487],[112.537047,25.134239],[112.507695,25.136742],[112.502637,25.144616],[112.491065,25.144459],[112.4775,25.151394],[112.458264,25.152072],[112.452669,25.159841],[112.454815,25.1735],[112.443013,25.185594],[112.430674,25.175273],[112.426153,25.156244],[112.413354,25.141331],[112.399483,25.140653],[112.387374,25.152177],[112.393122,25.160154],[112.373732,25.177567],[112.364842,25.191693],[112.350894,25.187054],[112.329896,25.173813],[112.313648,25.173917],[112.302536,25.157182],[112.288435,25.15859],[112.281997,25.164742],[112.256094,25.159372],[112.255557,25.171571],[112.246591,25.184969],[112.201758,25.185803],[112.18735,25.183092],[112.193174,25.172197],[112.183288,25.14884],[112.183901,25.14107],[112.174168,25.129493],[112.17708,25.107379],[112.165815,25.085001],[112.162749,25.068462],[112.152173,25.055939],[112.153553,25.045502],[112.148878,25.035429],[112.155698,25.026974],[112.134623,24.99581],[112.122744,24.990485],[112.120062,24.963698],[112.142134,24.937951],[112.15248,24.932414],[112.175164,24.927504],[112.16819,24.890828],[112.165661,24.867208],[112.171103,24.862713],[112.161063,24.844211],[112.149491,24.836945],[112.141444,24.844524],[112.124047,24.841074],[112.112628,24.831508],[112.097224,24.826385],[112.096458,24.817235],[112.083812,24.804844],[112.059212,24.79951],[112.05423,24.788895],[112.033845,24.771165],[112.030473,24.745064],[112.013919,24.731514],[111.999128,24.733135],[111.985026,24.727485],[111.972688,24.72738],[111.961345,24.721206],[111.952839,24.69635],[111.939657,24.686616],[111.944179,24.676409],[111.939197,24.6695],[111.947551,24.665364],[111.953528,24.647199],[111.934292,24.641911],[111.927472,24.629397],[111.938431,24.609498],[111.937128,24.595828],[111.948547,24.592686],[111.963338,24.5809],[111.971998,24.578648],[111.978282,24.56136],[111.989855,24.550776],[111.997825,24.551196],[112.007405,24.534533],[112.005259,24.512051],[112.009704,24.502878],[111.996369,24.494911],[111.987096,24.480862],[111.986636,24.464505],[111.996522,24.459261],[111.999741,24.450452],[112.023192,24.441538],[112.042121,24.410279],[112.043578,24.392706],[112.057679,24.387093],[112.061817,24.368152],[112.059442,24.339709],[112.050552,24.332572],[112.045187,24.320762],[112.033231,24.31336],[112.026104,24.295091],[112.015911,24.293989],[112.003113,24.28165],[111.990391,24.279812],[111.988015,24.259018],[111.975983,24.255079],[111.969009,24.263691],[111.956057,24.26033],[111.952685,24.25156],[111.94073,24.245153],[111.942646,24.234858],[111.961575,24.234753],[111.978052,24.222671],[111.986866,24.205124],[111.994223,24.19861],[111.997672,24.186945],[112.006868,24.19015],[112.024955,24.188364],[112.041815,24.191516],[112.04603,24.197611],[112.041355,24.216682],[112.050398,24.224247],[112.053157,24.24594],[112.058369,24.247043],[112.067872,24.260698],[112.086878,24.256917],[112.106114,24.228555],[112.11508,24.229027],[112.122591,24.222986],[112.129258,24.207489],[112.144433,24.201394],[112.148341,24.190098],[112.157538,24.185841],[112.166658,24.187943],[112.169876,24.197454],[112.196929,24.204074],[112.215093,24.223459],[112.218311,24.244365],[112.235708,24.246203],[112.249503,24.243367],[112.256324,24.2597],[112.255557,24.279182],[112.261995,24.290576],[112.256937,24.320762],[112.258316,24.324279],[112.27441,24.320604],[112.293723,24.327585],[112.293646,24.344538],[112.284679,24.377334],[112.288971,24.388666],[112.307211,24.378593],[112.319703,24.380167],[112.342004,24.353512],[112.373732,24.347949],[112.384845,24.328373],[112.393888,24.326641],[112.401858,24.310211],[112.411285,24.307061],[112.423777,24.284958],[112.444239,24.287741],[112.449987,24.28102],[112.458723,24.238377],[112.453052,24.20938],[112.439564,24.19057],[112.439028,24.180324],[112.43144,24.173387],[112.434813,24.164453],[112.429525,24.160564],[112.434659,24.147529],[112.428452,24.139802],[112.429831,24.127081],[112.446921,24.121929],[112.455351,24.12482],[112.452516,24.115725],[112.463782,24.120772],[112.486696,24.114148],[112.49367,24.095377],[112.489532,24.086122],[112.500798,24.08081],[112.497885,24.064401],[112.507542,24.051778],[112.507618,24.043309],[112.518501,24.016635],[112.506469,24.007269],[112.511297,24.001376],[112.516125,23.977009],[112.535668,23.970746],[112.564253,23.977325],[112.567012,23.964903],[112.575136,23.967325],[112.588318,23.956692],[112.608167,23.952586],[112.622651,23.943636],[112.645106,23.941004],[112.662886,23.949585],[112.675838,23.939846],[112.682582,23.939056],[112.683272,23.92405],[112.693464,23.912729],[112.693235,23.904251],[112.685494,23.895351],[112.692162,23.88961],[112.672159,23.864801],[112.679516,23.857216],[112.672159,23.851473],[112.675225,23.831241],[112.661353,23.821651],[112.655376,23.812587],[112.675455,23.815169],[112.689479,23.806369],[112.70588,23.806369],[112.700668,23.793192],[112.704194,23.790557],[112.69768,23.765677],[112.706033,23.752813],[112.730021,23.758507],[112.743126,23.752444],[112.725882,23.725816],[112.711321,23.712104],[112.713467,23.706883],[112.724579,23.710258],[112.72159,23.698549],[112.715076,23.691639],[112.728718,23.678504],[112.744965,23.686523],[112.739907,23.672596],[112.744965,23.668481],[112.751249,23.675286],[112.75922,23.672332],[112.768646,23.677397],[112.780908,23.671224],[112.784663,23.655291],[112.778302,23.641255],[112.752092,23.628643],[112.750483,23.610065],[112.756844,23.603309],[112.772171,23.603309],[112.781828,23.588529],[112.799761,23.588951],[112.800144,23.571846],[112.7934,23.571688],[112.796772,23.551835],[112.802137,23.545551],[112.830493,23.545762],[112.827197,23.567042],[112.848502,23.566936],[112.86291,23.57343],[112.871647,23.570896],[112.893412,23.55268],[112.900309,23.566725],[112.91533,23.55231],[112.911192,23.541643],[112.893259,23.526434],[112.887741,23.517402],[112.903298,23.488613],[112.928435,23.483488],[112.925753,23.472393],[112.933493,23.47065],[112.930198,23.463094],[112.94223,23.460188],[112.957634,23.447558],[112.965835,23.452155],[112.966294,23.460663],[112.975184,23.463622],[112.993347,23.466845],[113.00469,23.462037],[113.018025,23.469065],[113.042932,23.474137],[113.055884,23.471971],[113.063854,23.482537],[113.075503,23.484228],[113.083933,23.494266],[113.108994,23.497964],[113.128689,23.512596],[113.15352,23.502823],[113.172066,23.512384],[113.192069,23.514761],[113.191149,23.523212],[113.211918,23.543914],[113.210155,23.552997],[113.200805,23.561815],[113.202262,23.576492],[113.214524,23.584253],[113.227015,23.585731],[113.227859,23.594441],[113.245868,23.588265],[113.24035,23.606212],[113.248474,23.601567],[113.2766,23.615977],[113.280049,23.608957],[113.290548,23.617085],[113.299438,23.637456],[113.289245,23.644368],[113.31101,23.643313],[113.32833,23.645371],[113.327947,23.655502],[113.334845,23.656399],[113.338447,23.665737],[113.347413,23.667215],[113.366343,23.710311],[113.372397,23.709731],[113.378375,23.731511],[113.397841,23.730562],[113.404278,23.723495],[113.438459,23.727134],[113.443823,23.715901],[113.464286,23.70799],[113.468731,23.691006],[113.481069,23.684043],[113.510268,23.682461],[113.527052,23.686153],[113.545445,23.696387],[113.546901,23.702558],[113.55878,23.700712],[113.568053,23.690215],[113.568053,23.679454],[113.587289,23.675234],[113.587212,23.669008],[113.597252,23.664946],[113.615721,23.680192],[113.61166,23.686206],[113.623845,23.694699],[113.622619,23.699446],[113.638176,23.704562],[113.628137,23.711682],[113.631662,23.727872],[113.63649,23.731985],[113.630742,23.738946],[113.636414,23.750229],[113.626144,23.767416],[113.615185,23.779804],[113.633731,23.797198],[113.640245,23.814274],[113.651664,23.820123],[113.666379,23.813694],[113.684312,23.812956],[113.687378,23.825709],[113.706384,23.815275],[113.720178,23.825129],[113.714814,23.834982],[113.718033,23.843887],[113.709756,23.856267],[113.713511,23.862484],[113.733667,23.855003],[113.742327,23.859165],[113.749071,23.854371],[113.758191,23.857479],[113.767081,23.871439],[113.775358,23.877918],[113.781105,23.896299],[113.791605,23.903882],[113.800265,23.902566],[113.799345,23.923524],[113.792294,23.931527],[113.775358,23.938424],[113.774285,23.952691],[113.766468,23.96085],[113.744703,23.95906],[113.739415,23.969588],[113.730448,23.974641],[113.732364,23.981114],[113.718646,23.993008],[113.728149,23.997166],[113.747078,24.023212],[113.753592,24.026842],[113.763555,24.02137],[113.772982,24.026947],[113.784171,24.022317],[113.790608,24.025106],[113.790379,24.034471],[113.803637,24.053566],[113.813063,24.052567],[113.83115,24.063507],[113.828467,24.069608],[113.837434,24.072764],[113.845711,24.086806],[113.836821,24.088331],[113.836668,24.098637],[113.842415,24.104053],[113.836974,24.111729],[113.839273,24.119931],[113.850999,24.124978],[113.853911,24.132811],[113.86464,24.133021],[113.870465,24.141169],[113.862265,24.147319],[113.857053,24.16151],[113.880045,24.174123],[113.901043,24.188521],[113.909167,24.184318],[113.930242,24.188416],[113.930319,24.19593],[113.922119,24.19304],[113.921199,24.200974],[113.896522,24.210326],[113.890391,24.229763],[113.890774,24.241476],[113.88311,24.245415],[113.870541,24.242264],[113.872074,24.253976],[113.862878,24.259018],[113.855827,24.252926],[113.84004,24.265109],[113.850003,24.274561],[113.844715,24.279707],[113.844791,24.304541],[113.850462,24.318872],[113.8405,24.336246],[113.831303,24.33656],[113.817048,24.34459],[113.818581,24.3522],[113.800955,24.377334],[113.805553,24.384364],[113.803867,24.401781],[113.77827,24.410909],[113.765318,24.417727],[113.762866,24.43299],[113.753439,24.437185],[113.726999,24.437028],[113.723934,24.43493],[113.722248,24.414633],[113.709909,24.412377],[113.686381,24.437709],[113.683163,24.454175],[113.666072,24.467493],[113.656799,24.468227],[113.643234,24.477717],[113.63718,24.486471],[113.625761,24.491923],[113.609667,24.489983],[113.596792,24.500886],[113.599628,24.512994],[113.589665,24.515248],[113.579548,24.50052],[113.57564,24.509115],[113.552572,24.511055],[113.540463,24.506233],[113.531343,24.489826],[113.530271,24.479551],[113.518852,24.469852],[113.507816,24.484007],[113.499309,24.473785],[113.489269,24.471006],[113.478847,24.477769],[113.467428,24.461726],[113.440988,24.453703],[113.419223,24.459943],[113.412172,24.472526],[113.415544,24.485266],[113.379754,24.485213],[113.37416,24.49402],[113.362051,24.47908],[113.350632,24.472159],[113.331243,24.472579],[113.31944,24.465291],[113.294993,24.457164],[113.272155,24.466969],[113.270392,24.47672],[113.261809,24.482225],[113.252766,24.497794],[113.25108,24.510216],[113.244642,24.502144],[113.235829,24.505866],[113.230158,24.498475],[113.216516,24.495697],[113.20617,24.476458],[113.19705,24.474676],[113.186781,24.480705],[113.174979,24.475882],[113.16195,24.479027],[113.153367,24.467703],[113.151451,24.478713],[113.13712,24.482907],[113.114128,24.502983],[113.096808,24.496431],[113.087305,24.471583],[113.063701,24.468804],[113.047377,24.475515],[113.025612,24.493863],[113.02063,24.513675],[112.999708,24.528716],[112.991048,24.544751],[112.981928,24.542917],[112.96936,24.568118],[112.96139,24.570266],[112.964378,24.586138],[112.950507,24.59499],[112.926366,24.596457],[112.91717,24.60049],[112.902072,24.595671],[112.8987,24.600542],[112.887971,24.595304],[112.884599,24.616358],[112.89778,24.632277],[112.896401,24.650602],[112.914487,24.662695],[112.900616,24.713776],[112.930351,24.718695],[112.938781,24.73821],[112.933647,24.755369],[112.940161,24.757514],[112.954109,24.782201],[112.95112,24.788476],[112.960087,24.800974],[112.95158,24.815771],[112.95978,24.824241],[112.979246,24.832553],[112.998942,24.850483],[113.014729,24.851528],[113.019557,24.855971],[113.022163,24.870866],[113.010974,24.882781],[113.009901,24.896889],[113.004766,24.900129],[113.00515,24.914078],[112.994804,24.927347]]]]}},{"type":"Feature","properties":{"adcode":441900,"name":"东莞市","center":[113.746262,23.046237],"centroid":[113.879966,22.931879],"childrenNum":0,"level":"city","parent":{"adcode":440000},"subFeatureIndex":16,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.229205,22.81253],[114.23388,22.816937],[114.235643,22.839872],[114.233114,22.842314],[114.2348,22.862962],[114.231198,22.880318],[114.236946,22.88589],[114.24484,22.88053],[114.251737,22.884351],[114.26032,22.899634],[114.259171,22.906054],[114.249208,22.905152],[114.245299,22.911732],[114.229742,22.914703],[114.213035,22.928444],[114.211349,22.953959],[114.223841,22.963719],[114.222385,22.980743],[114.212498,22.987796],[114.20039,22.986682],[114.182303,22.995432],[114.178701,22.989174],[114.158546,22.978303],[114.15571,22.983129],[114.13816,22.986417],[114.132182,22.994424],[114.124442,22.994],[114.139233,23.023479],[114.151035,23.019079],[114.150269,23.024698],[114.120993,23.048022],[114.102217,23.058623],[114.091564,23.077331],[114.088959,23.094182],[114.065891,23.101441],[114.049797,23.097467],[114.029871,23.084379],[114.010252,23.083425],[113.993315,23.092645],[113.986418,23.10197],[113.970554,23.113308],[113.962737,23.114209],[113.938366,23.107534],[113.905565,23.11511],[113.894836,23.111295],[113.876596,23.124275],[113.863261,23.114633],[113.848163,23.116911],[113.844715,23.125599],[113.841113,23.116169],[113.814673,23.127771],[113.791298,23.127665],[113.777427,23.131108],[113.754052,23.129572],[113.738572,23.141331],[113.71696,23.138895],[113.687837,23.119772],[113.670671,23.116434],[113.662011,23.111454],[113.661244,23.117971],[113.651281,23.119295],[113.642698,23.113467],[113.640245,23.103878],[113.610433,23.103772],[113.60139,23.0954],[113.586446,23.08777],[113.556327,23.081252],[113.54897,23.076006],[113.543759,23.06228],[113.531957,23.050938],[113.522913,23.037262],[113.52299,23.011338],[113.529198,22.982599],[113.541766,22.959369],[113.550503,22.936189],[113.564298,22.906903],[113.575104,22.888331],[113.571195,22.853143],[113.58407,22.831325],[113.612119,22.802281],[113.648139,22.761759],[113.678181,22.726113],[113.697724,22.73743],[113.723934,22.73828],[113.733743,22.736367],[113.746005,22.72606],[113.751447,22.715381],[113.762406,22.736899],[113.790838,22.75342],[113.791835,22.767655],[113.801874,22.777109],[113.802257,22.784863],[113.811071,22.782473],[113.813446,22.790439],[113.824942,22.792935],[113.837204,22.800901],[113.838737,22.819591],[113.834675,22.822193],[113.841496,22.833979],[113.851305,22.837483],[113.857053,22.832599],[113.872611,22.837271],[113.877669,22.85447],[113.883263,22.850542],[113.887325,22.858504],[113.89951,22.855478],[113.893916,22.846189],[113.904875,22.840137],[113.910929,22.829997],[113.937829,22.832705],[113.954613,22.821025],[113.954996,22.815078],[113.972393,22.812476],[113.978371,22.806529],[113.974999,22.798458],[113.984578,22.803662],[113.990863,22.800211],[113.995308,22.771267],[114.002971,22.763459],[114.017916,22.760219],[114.035236,22.766752],[114.039911,22.764309],[114.049797,22.771161],[114.049414,22.756448],[114.064588,22.755916],[114.074781,22.740883],[114.08436,22.750551],[114.098462,22.747205],[114.107198,22.722979],[114.117621,22.723244],[114.121989,22.716231],[114.144674,22.714159],[114.145057,22.701193],[114.151801,22.690139],[114.167436,22.680679],[114.16391,22.665372],[114.15548,22.668933],[114.172494,22.654368],[114.187515,22.666382],[114.187515,22.673557],[114.195332,22.680095],[114.19947,22.702043],[114.196711,22.710227],[114.208053,22.71469],[114.208513,22.729248],[114.215641,22.73557],[114.203149,22.75512],[114.201079,22.764787],[114.182073,22.765265],[114.187974,22.770364],[114.180847,22.775728],[114.189967,22.785713],[114.20721,22.789802],[114.215641,22.807751],[114.229205,22.81253]]]]}},{"type":"Feature","properties":{"adcode":442000,"name":"中山市","center":[113.382391,22.521113],"centroid":[113.398784,22.517323],"childrenNum":0,"level":"city","parent":{"adcode":440000},"subFeatureIndex":17,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.568743,22.411912],[113.573724,22.411699],[113.610127,22.445723],[113.631509,22.47596],[113.668448,22.480431],[113.692052,22.515129],[113.651588,22.515715],[113.639326,22.548276],[113.62078,22.579554],[113.599628,22.594393],[113.589971,22.59519],[113.578552,22.604603],[113.561615,22.607528],[113.536861,22.647511],[113.533106,22.656388],[113.540693,22.666222],[113.523373,22.679297],[113.491875,22.699811],[113.464822,22.72096],[113.467964,22.728504],[113.447808,22.735836],[113.42612,22.738014],[113.412172,22.742849],[113.365116,22.772595],[113.358756,22.764893],[113.342432,22.758254],[113.329327,22.749011],[113.329097,22.741255],[113.301431,22.736261],[113.284877,22.738864],[113.270546,22.726485],[113.260889,22.730311],[113.254069,22.74083],[113.243033,22.745345],[113.236289,22.740777],[113.222264,22.712246],[113.204254,22.697314],[113.199273,22.682539],[113.201035,22.675949],[113.189386,22.673876],[113.17199,22.680679],[113.161414,22.673717],[113.160801,22.665425],[113.17061,22.651392],[113.163176,22.651392],[113.157199,22.63204],[113.157045,22.614228],[113.176358,22.590032],[113.185095,22.574289],[113.188697,22.552798],[113.187087,22.539924],[113.215367,22.513107],[113.2251,22.497142],[113.2251,22.497142],[113.240121,22.476172],[113.245179,22.457276],[113.256444,22.43779],[113.256368,22.410794],[113.262652,22.392048],[113.273841,22.384751],[113.307178,22.346504],[113.32036,22.329561],[113.32128,22.312189],[113.336607,22.280105],[113.345114,22.258569],[113.352395,22.249133],[113.385272,22.230365],[113.390943,22.231858],[113.415774,22.202902],[113.430565,22.201302],[113.458384,22.213781],[113.462676,22.218847],[113.486357,22.227113],[113.478847,22.23831],[113.512797,22.249986],[113.514407,22.261555],[113.50475,22.266992],[113.496397,22.282237],[113.480456,22.303876],[113.470493,22.310377],[113.482985,22.318797],[113.493331,22.317998],[113.504137,22.324286],[113.494787,22.339684],[113.490342,22.34075],[113.493255,22.354069],[113.489193,22.365842],[113.491339,22.376922],[113.48697,22.390184],[113.495247,22.395403],[113.49586,22.407546],[113.508889,22.413403],[113.51433,22.408717],[113.537168,22.416332],[113.568743,22.411912]]]]}},{"type":"Feature","properties":{"adcode":445100,"name":"潮州市","center":[116.632301,23.661701],"centroid":[116.790217,23.783155],"childrenNum":3,"level":"city","parent":{"adcode":440000},"subFeatureIndex":18,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.91704,23.531662],[116.930528,23.528071],[116.940951,23.514656],[116.963405,23.506997],[117.010231,23.502665],[117.018125,23.505359],[117.031766,23.531293],[117.044795,23.539689],[117.069548,23.542277],[117.085566,23.536943],[117.09959,23.537577],[117.113002,23.542383],[117.192935,23.561656],[117.192552,23.629593],[117.185961,23.636242],[117.173699,23.634659],[117.159368,23.640094],[117.147489,23.653813],[117.132928,23.651439],[117.124881,23.646057],[117.115454,23.665263],[117.087941,23.669325],[117.07407,23.690954],[117.066636,23.688791],[117.053225,23.698391],[117.049929,23.721649],[117.051079,23.736731],[117.047783,23.758665],[117.042572,23.763779],[117.039353,23.778434],[117.031766,23.791348],[117.020041,23.800729],[117.018431,23.812218],[117.026785,23.819912],[117.022416,23.838776],[117.01207,23.855266],[116.989922,23.8628],[116.981568,23.855582],[116.962026,23.861377],[116.960033,23.868173],[116.975514,23.872281],[116.979269,23.884449],[116.972985,23.894824],[116.958807,23.90067],[116.959267,23.91452],[116.954745,23.920417],[116.973292,23.927052],[116.980189,23.941056],[116.982641,23.959324],[116.973138,23.97422],[116.975361,23.99064],[116.981339,23.996692],[116.96992,24.007427],[116.96011,24.002112],[116.954439,24.005954],[116.955129,24.020266],[116.939801,24.03305],[116.95007,24.040836],[116.952446,24.054723],[116.936965,24.054566],[116.929761,24.065453],[116.929455,24.091381],[116.926619,24.098585],[116.934896,24.126923],[116.947082,24.134914],[116.964785,24.153364],[116.972908,24.153521],[116.97881,24.162088],[116.990382,24.168342],[116.998659,24.17901],[116.991148,24.189887],[116.976357,24.199818],[116.971299,24.198084],[116.956125,24.216998],[116.94325,24.216262],[116.933363,24.222251],[116.917116,24.232809],[116.896577,24.218784],[116.904548,24.202813],[116.900333,24.196771],[116.884315,24.193671],[116.883856,24.181638],[116.878568,24.167817],[116.867072,24.163717],[116.859485,24.177276],[116.847836,24.182689],[116.836034,24.173387],[116.831819,24.161878],[116.809594,24.169183],[116.796872,24.157043],[116.789745,24.157095],[116.780241,24.147319],[116.76637,24.124032],[116.766447,24.107523],[116.772195,24.09401],[116.76752,24.074657],[116.75748,24.082125],[116.744069,24.061982],[116.734642,24.053619],[116.71257,24.062455],[116.700155,24.050094],[116.708662,24.033471],[116.708815,24.019161],[116.697166,24.002586],[116.690422,24.005375],[116.69548,23.991903],[116.68797,23.981062],[116.684751,23.989588],[116.657775,23.988588],[116.646969,23.994429],[116.641144,23.989588],[116.637312,23.968851],[116.628652,23.973693],[116.610796,23.968483],[116.60842,23.961166],[116.62574,23.950006],[116.623518,23.947269],[116.604205,23.950322],[116.608343,23.94153],[116.604205,23.929474],[116.604741,23.910781],[116.590487,23.900933],[116.575083,23.909149],[116.557992,23.907253],[116.558682,23.899037],[116.536304,23.886608],[116.535384,23.88171],[116.522279,23.882131],[116.514386,23.866698],[116.496989,23.869226],[116.498981,23.85848],[116.516608,23.845994],[116.525881,23.8324],[116.518371,23.823443],[116.509864,23.827764],[116.513389,23.815854],[116.510324,23.808793],[116.516761,23.802679],[116.505955,23.793614],[116.504729,23.763673],[116.496146,23.752496],[116.485187,23.751547],[116.464954,23.755238],[116.451849,23.76905],[116.439357,23.773584],[116.436215,23.780331],[116.416903,23.777854],[116.402955,23.769261],[116.401958,23.76225],[116.380883,23.737364],[116.373296,23.740264],[116.368468,23.73304],[116.37161,23.717431],[116.377741,23.712209],[116.385481,23.714688],[116.404104,23.694382],[116.43154,23.690637],[116.434376,23.67977],[116.444722,23.6698],[116.448477,23.677766],[116.470319,23.669589],[116.474534,23.655924],[116.48488,23.658879],[116.514156,23.655924],[116.527184,23.63429],[116.526111,23.626532],[116.533545,23.617296],[116.533698,23.606265],[116.527261,23.603309],[116.526264,23.590165],[116.533775,23.590113],[116.533315,23.581508],[116.542282,23.573694],[116.551555,23.579502],[116.567036,23.569207],[116.564966,23.557063],[116.570638,23.548614],[116.553624,23.541591],[116.554007,23.534356],[116.544811,23.528546],[116.543661,23.505623],[116.554774,23.495586],[116.559908,23.482432],[116.580754,23.473873],[116.586578,23.475563],[116.608343,23.464785],[116.619762,23.466423],[116.633557,23.45057],[116.630108,23.429378],[116.650264,23.426312],[116.654403,23.431069],[116.668504,23.428638],[116.681915,23.438627],[116.68659,23.429483],[116.702608,23.438204],[116.698469,23.446977],[116.702378,23.456172],[116.7128,23.459236],[116.717935,23.471072],[116.71326,23.493103],[116.70483,23.517561],[116.70621,23.542541],[116.719391,23.552522],[116.718701,23.563135],[116.702991,23.574433],[116.714946,23.584728],[116.71303,23.597925],[116.738934,23.60162],[116.747211,23.59233],[116.755794,23.575648],[116.761389,23.573958],[116.772578,23.584147],[116.785223,23.579554],[116.794496,23.589532],[116.791737,23.59935],[116.795799,23.610488],[116.805379,23.606793],[116.815035,23.612493],[116.827527,23.611807],[116.831895,23.622152],[116.822545,23.627429],[116.821319,23.635609],[116.830976,23.645793],[116.83818,23.644632],[116.863087,23.632601],[116.86278,23.623471],[116.874812,23.616082],[116.891289,23.622785],[116.900639,23.61946],[116.900563,23.611965],[116.911062,23.602201],[116.909146,23.58193],[116.918342,23.561603],[116.91704,23.531662]]]]}},{"type":"Feature","properties":{"adcode":445200,"name":"揭阳市","center":[116.355733,23.543778],"centroid":[116.124317,23.334057],"childrenNum":5,"level":"city","parent":{"adcode":440000},"subFeatureIndex":19,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.552551,23.105891],[116.520287,23.094553],[116.509787,23.100646],[116.478826,23.104249],[116.453919,23.091161],[116.445488,23.093281],[116.446561,23.085863],[116.437212,23.080246],[116.426865,23.063393],[116.405484,23.053959],[116.395904,23.044524],[116.3805,23.039807],[116.370077,23.046856],[116.374982,23.050408],[116.368314,23.05751],[116.346703,23.05857],[116.340648,23.086498],[116.327543,23.09646],[116.312829,23.102712],[116.302866,23.096036],[116.29137,23.099162],[116.29183,23.110501],[116.261558,23.12295],[116.244545,23.140431],[116.254891,23.152507],[116.252362,23.176286],[116.262325,23.175174],[116.252745,23.191536],[116.26447,23.196724],[116.269222,23.204984],[116.261328,23.205301],[116.259719,23.216842],[116.26677,23.227906],[116.279415,23.226],[116.294129,23.239815],[116.298727,23.263526],[116.305548,23.272839],[116.302406,23.279348],[116.312752,23.286649],[116.308997,23.296067],[116.323558,23.302839],[116.328846,23.299559],[116.330839,23.316487],[116.319343,23.325903],[116.319573,23.332303],[116.329689,23.336376],[116.348848,23.335794],[116.354903,23.347324],[116.349768,23.358112],[116.350994,23.386559],[116.34517,23.399565],[116.34563,23.408182],[116.331758,23.424409],[116.322868,23.421767],[116.316891,23.442273],[116.319649,23.449196],[116.332371,23.443647],[116.350764,23.449619],[116.355363,23.472288],[116.377051,23.500658],[116.401115,23.500394],[116.408856,23.512596],[116.41491,23.510271],[116.415676,23.479737],[116.426482,23.468642],[116.435832,23.473344],[116.448707,23.488349],[116.465797,23.497647],[116.482581,23.500552],[116.492314,23.492839],[116.491164,23.478734],[116.482658,23.465472],[116.472005,23.455802],[116.465721,23.442485],[116.469553,23.437622],[116.512316,23.439472],[116.523429,23.437517],[116.544887,23.424356],[116.553088,23.412305],[116.561978,23.38693],[116.568339,23.378258],[116.569105,23.388093],[116.577535,23.40242],[116.575313,23.40797],[116.58198,23.423194],[116.591177,23.426524],[116.58949,23.443383],[116.579834,23.447981],[116.580294,23.461139],[116.588111,23.461984],[116.58995,23.453265],[116.605431,23.443013],[116.614015,23.433289],[116.630108,23.429378],[116.633557,23.45057],[116.619762,23.466423],[116.608343,23.464785],[116.586578,23.475563],[116.580754,23.473873],[116.559908,23.482432],[116.554774,23.495586],[116.543661,23.505623],[116.544811,23.528546],[116.554007,23.534356],[116.553624,23.541591],[116.570638,23.548614],[116.564966,23.557063],[116.567036,23.569207],[116.551555,23.579502],[116.542282,23.573694],[116.533315,23.581508],[116.533775,23.590113],[116.526264,23.590165],[116.527261,23.603309],[116.533698,23.606265],[116.533545,23.617296],[116.526111,23.626532],[116.527184,23.63429],[116.514156,23.655924],[116.48488,23.658879],[116.474534,23.655924],[116.470319,23.669589],[116.448477,23.677766],[116.444722,23.6698],[116.434376,23.67977],[116.43154,23.690637],[116.404104,23.694382],[116.385481,23.714688],[116.377741,23.712209],[116.37161,23.717431],[116.368468,23.73304],[116.35475,23.743058],[116.350151,23.751969],[116.338732,23.758823],[116.335437,23.773953],[116.320033,23.775534],[116.306621,23.769841],[116.295892,23.759139],[116.288458,23.763199],[116.271215,23.757294],[116.271598,23.746433],[116.233126,23.718169],[116.236957,23.727608],[116.227684,23.728821],[116.214119,23.71896],[116.214349,23.702558],[116.19588,23.685784],[116.181089,23.68552],[116.183005,23.674442],[116.17764,23.657296],[116.187373,23.652336],[116.191358,23.641361],[116.179939,23.637139],[116.17787,23.628221],[116.165455,23.616082],[116.150664,23.616241],[116.133497,23.62421],[116.117326,23.620885],[116.106137,23.628379],[116.09878,23.622574],[116.087208,23.626426],[116.074256,23.636295],[116.072417,23.642785],[116.056476,23.646374],[116.055786,23.639514],[116.039386,23.648168],[116.021223,23.644685],[116.01126,23.654236],[116.017467,23.661939],[116.006585,23.675497],[115.985816,23.676974],[115.972328,23.664102],[115.95861,23.655871],[115.954471,23.64516],[115.923663,23.628168],[115.914696,23.630859],[115.897836,23.620093],[115.896227,23.625846],[115.876148,23.633973],[115.863656,23.646057],[115.86036,23.65756],[115.83461,23.660884],[115.81844,23.644632],[115.800047,23.615502],[115.808247,23.606687],[115.807787,23.59877],[115.798131,23.597133],[115.812309,23.578974],[115.802116,23.557168],[115.80794,23.554158],[115.801349,23.543122],[115.788398,23.539267],[115.793302,23.525694],[115.786175,23.517455],[115.776059,23.524638],[115.759735,23.522895],[115.751612,23.52749],[115.736437,23.525958],[115.733755,23.51624],[115.723179,23.514656],[115.713829,23.519092],[115.70195,23.534092],[115.69467,23.550092],[115.687389,23.557538],[115.669686,23.548403],[115.659493,23.532613],[115.639797,23.528758],[115.642096,23.513863],[115.637115,23.514972],[115.622094,23.507102],[115.623167,23.489934],[115.616116,23.475035],[115.606537,23.471865],[115.61443,23.469751],[115.625236,23.45168],[115.646235,23.439684],[115.648304,23.430329],[115.657884,23.420445],[115.682868,23.407759],[115.673058,23.395071],[115.671602,23.38344],[115.676813,23.354992],[115.694057,23.354675],[115.703023,23.368265],[115.725938,23.369375],[115.739886,23.379263],[115.777668,23.383651],[115.787401,23.368952],[115.811236,23.346689],[115.819666,23.335741],[115.812845,23.326696],[115.802039,23.324422],[115.797288,23.309134],[115.797671,23.286596],[115.824571,23.272416],[115.831621,23.258128],[115.810929,23.24876],[115.797288,23.249184],[115.768089,23.24442],[115.758126,23.244949],[115.749236,23.236375],[115.750079,23.225683],[115.757743,23.215942],[115.752148,23.193601],[115.73866,23.211125],[115.730613,23.199107],[115.733525,23.192806],[115.725631,23.183805],[115.752991,23.167813],[115.76349,23.159233],[115.780657,23.15828],[115.791386,23.13953],[115.79951,23.133015],[115.833154,23.122897],[115.832924,23.112196],[115.85147,23.098791],[115.864345,23.117865],[115.883505,23.11956],[115.898832,23.129466],[115.908795,23.125652],[115.916612,23.112302],[115.923126,23.110977],[115.920751,23.100116],[115.939833,23.082206],[115.937688,23.067156],[115.950333,23.06599],[115.951099,23.061273],[115.964741,23.052952],[115.966963,23.04728],[115.955314,23.038322],[115.950716,23.024327],[115.937688,23.030424],[115.923586,23.017594],[115.942209,23.006195],[115.954471,23.021571],[115.959989,23.017435],[115.945505,22.996015],[115.94949,22.990023],[115.941213,22.987053],[115.9488,22.972682],[115.943819,22.956293],[115.958993,22.957036],[115.963515,22.94961],[115.973247,22.969818],[115.977846,22.951838],[115.967116,22.943775],[115.979225,22.938629],[115.983287,22.925897],[116.0026,22.937409],[116.005665,22.945632],[116.017697,22.934067],[116.026894,22.939107],[116.055633,22.920433],[116.080234,22.915764],[116.086595,22.901491],[116.109969,22.891143],[116.124453,22.892523],[116.135106,22.900589],[116.143843,22.890294],[116.156105,22.886208],[116.172505,22.893425],[116.16806,22.913695],[116.181549,22.92611],[116.198256,22.93168],[116.211667,22.926004],[116.223929,22.926852],[116.226918,22.914491],[116.246844,22.921918],[116.269452,22.938364],[116.302789,22.951519],[116.31735,22.952845],[116.334977,22.938736],[116.382646,22.919213],[116.45024,22.936773],[116.473691,22.937728],[116.486949,22.93115],[116.505572,22.930884],[116.515995,22.939001],[116.52956,22.96531],[116.533162,22.984561],[116.540979,22.994583],[116.550405,22.993894],[116.563051,23.000734],[116.561978,23.006991],[116.576002,23.017117],[116.563204,23.025812],[116.557379,23.056238],[116.565809,23.08316],[116.56374,23.092963],[116.552551,23.105891]]]]}},{"type":"Feature","properties":{"adcode":445300,"name":"云浮市","center":[112.044439,22.929801],"centroid":[111.798791,22.813664],"childrenNum":5,"level":"city","parent":{"adcode":440000},"subFeatureIndex":20,"acroutes":[100000,440000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.47658,22.704009],[112.463168,22.711661],[112.448607,22.70842],[112.435809,22.680998],[112.426306,22.670847],[112.411898,22.671219],[112.401475,22.690565],[112.403085,22.700183],[112.410748,22.704488],[112.399023,22.726485],[112.392739,22.744442],[112.392509,22.76978],[112.382622,22.784545],[112.384232,22.792245],[112.374116,22.794369],[112.356336,22.787997],[112.32844,22.786722],[112.315488,22.790015],[112.323841,22.802706],[112.336257,22.806476],[112.319703,22.825378],[112.310353,22.824848],[112.312269,22.850489],[112.298704,22.865138],[112.296022,22.873312],[112.29993,22.89178],[112.305602,22.896132],[112.307364,22.911254],[112.295332,22.915605],[112.285369,22.911254],[112.278319,22.91465],[112.26598,22.906638],[112.257703,22.910564],[112.261075,22.918735],[112.262914,22.939796],[112.257167,22.951625],[112.270885,22.943775],[112.280158,22.949026],[112.283683,22.944518],[112.290197,22.952633],[112.277322,22.970613],[112.285369,22.976235],[112.286595,22.984985],[112.299087,23.010331],[112.286825,23.020033],[112.289814,23.024274],[112.285446,23.042563],[112.295869,23.060849],[112.301233,23.079557],[112.317634,23.080298],[112.32637,23.093599],[112.327137,23.104196],[112.312729,23.115163],[112.311886,23.121255],[112.301233,23.122315],[112.285676,23.129731],[112.265137,23.119507],[112.234712,23.114898],[112.191182,23.074522],[112.165431,23.075052],[112.133473,23.08581],[112.118299,23.083001],[112.099446,23.089943],[112.083736,23.079716],[112.047563,23.072349],[112.035761,23.07272],[112.025951,23.081199],[111.991464,23.087028],[111.982727,23.097308],[111.979049,23.119719],[111.967553,23.129678],[111.959353,23.130843],[111.9218,23.124857],[111.899192,23.125599],[111.884708,23.131267],[111.876737,23.138365],[111.860414,23.141225],[111.836963,23.131585],[111.814048,23.129943],[111.770441,23.13328],[111.753658,23.137994],[111.726988,23.150865],[111.707522,23.150971],[111.692118,23.157909],[111.679089,23.154732],[111.656098,23.158492],[111.649507,23.164741],[111.637781,23.185446],[111.624446,23.189894],[111.594251,23.188518],[111.575322,23.194077],[111.539839,23.212978],[111.533784,23.22113],[111.542598,23.234787],[111.569191,23.243097],[111.576318,23.253682],[111.573866,23.270881],[111.550185,23.298183],[111.532175,23.324634],[111.523898,23.322624],[111.52796,23.310351],[111.519989,23.305484],[111.515774,23.288448],[111.506348,23.282311],[111.49286,23.284586],[111.472551,23.275061],[111.456917,23.281729],[111.453391,23.289559],[111.437834,23.295115],[111.442202,23.301411],[111.421127,23.316276],[111.408712,23.315958],[111.392618,23.325586],[111.375757,23.319926],[111.375068,23.315271],[111.376524,23.304638],[111.353379,23.288977],[111.356598,23.283369],[111.349624,23.272786],[111.351233,23.266013],[111.36112,23.270564],[111.371926,23.264319],[111.365795,23.236904],[111.379206,23.221554],[111.377903,23.215784],[111.388862,23.210225],[111.384264,23.19413],[111.384341,23.167654],[111.392464,23.16956],[111.398672,23.159816],[111.366024,23.144721],[111.3766,23.14202],[111.379973,23.123162],[111.374991,23.111295],[111.374225,23.092539],[111.379513,23.081305],[111.394687,23.06811],[111.402044,23.066202],[111.434539,23.071555],[111.427181,23.060637],[111.434002,23.036202],[111.416069,23.025653],[111.414,23.01611],[111.396986,23.013353],[111.389629,23.005612],[111.40373,22.991242],[111.397216,22.981273],[111.37729,22.973265],[111.375374,22.967856],[111.363572,22.968598],[111.36932,22.951042],[111.364722,22.947594],[111.373995,22.939213],[111.375528,22.926534],[111.370316,22.915446],[111.361963,22.909981],[111.358744,22.889233],[111.35154,22.885147],[111.341577,22.870552],[111.330541,22.866094],[111.319659,22.851232],[111.303641,22.843959],[111.30663,22.839606],[111.287624,22.816087],[111.291609,22.807804],[111.272833,22.798883],[111.272143,22.790652],[111.256893,22.793838],[111.255207,22.787094],[111.241105,22.781305],[111.239036,22.768824],[111.232139,22.758997],[111.218497,22.748108],[111.204626,22.750126],[111.202097,22.740458],[111.176193,22.736261],[111.174737,22.740086],[111.146304,22.73727],[111.120094,22.742424],[111.099249,22.741786],[111.095111,22.733445],[111.085378,22.729673],[111.060547,22.731533],[111.063919,22.719897],[111.083155,22.708739],[111.089669,22.694285],[111.104767,22.694869],[111.108369,22.704328],[111.123543,22.701459],[111.124539,22.695826],[111.136878,22.685941],[111.137108,22.674514],[111.127911,22.666169],[111.136418,22.643789],[111.143162,22.638686],[111.144235,22.625713],[111.161862,22.620236],[111.174737,22.605773],[111.185849,22.60439],[111.196732,22.61024],[111.215662,22.594659],[111.219187,22.58583],[111.249076,22.58365],[111.25352,22.589234],[111.279271,22.592053],[111.303105,22.580724],[111.303641,22.569448],[111.326633,22.557267],[111.322724,22.54966],[111.293909,22.547638],[111.285172,22.523856],[111.277278,22.517843],[111.272067,22.506136],[111.276972,22.491927],[111.293295,22.50603],[111.329852,22.516087],[111.338588,22.522951],[111.350084,22.506988],[111.373688,22.516034],[111.384647,22.509808],[111.403117,22.516087],[111.413387,22.512628],[111.410628,22.492033],[111.403347,22.479526],[111.408788,22.475268],[111.409631,22.457116],[111.421127,22.446948],[111.417065,22.431135],[111.421817,22.426662],[111.43952,22.427834],[111.446034,22.442209],[111.471325,22.441996],[111.480444,22.46015],[111.47347,22.474629],[111.476919,22.480164],[111.469409,22.490277],[111.486882,22.505551],[111.507804,22.493949],[111.525201,22.480164],[111.545433,22.499324],[111.54459,22.517364],[111.561144,22.523377],[111.559381,22.528804],[111.569344,22.540722],[111.59632,22.551362],[111.60682,22.54966],[111.612031,22.542584],[111.610269,22.534125],[111.618315,22.533912],[111.616093,22.521408],[111.621304,22.521195],[111.616016,22.508158],[111.619618,22.497302],[111.625673,22.510925],[111.633873,22.503262],[111.648128,22.498207],[111.671425,22.503262],[111.678553,22.496397],[111.680315,22.4824],[111.691198,22.482134],[111.713346,22.504699],[111.721393,22.525931],[111.719707,22.54035],[111.738023,22.570459],[111.764004,22.582692],[111.76408,22.588011],[111.780327,22.595988],[111.784313,22.607581],[111.802476,22.626192],[111.814508,22.633263],[111.807074,22.645384],[111.809756,22.656123],[111.820332,22.666701],[111.820102,22.676427],[111.833437,22.680732],[111.835277,22.68897],[111.84248,22.687801],[111.841331,22.679085],[111.850681,22.676268],[111.86256,22.658993],[111.870836,22.65979],[111.871296,22.633529],[111.857425,22.632731],[111.85344,22.624331],[111.86049,22.617099],[111.859111,22.605401],[111.846925,22.612207],[111.841178,22.605454],[111.831904,22.60891],[111.821788,22.59769],[111.83405,22.595829],[111.835736,22.585937],[111.859417,22.581575],[111.870836,22.571735],[111.873825,22.579288],[111.900265,22.570512],[111.902258,22.581469],[111.914213,22.593701],[111.918965,22.592106],[111.931227,22.606039],[111.939121,22.620875],[111.956517,22.633795],[111.96602,22.627521],[111.98518,22.593861],[111.998361,22.589287],[111.998591,22.575459],[111.989931,22.565033],[111.976366,22.562959],[111.969546,22.546468],[111.98403,22.515342],[111.983724,22.505391],[111.995373,22.492406],[112.008861,22.491075],[112.014302,22.484795],[112.012923,22.471755],[112.034534,22.466325],[112.045494,22.45307],[112.058828,22.451207],[112.073006,22.434969],[112.077375,22.420858],[112.086725,22.416226],[112.108949,22.41335],[112.13286,22.405842],[112.142057,22.41548],[112.161523,22.400676],[112.165431,22.385018],[112.172022,22.381769],[112.175088,22.36989],[112.189189,22.36467],[112.186353,22.376069],[112.192791,22.384432],[112.188423,22.398066],[112.196163,22.404936],[112.211184,22.399078],[112.226895,22.408025],[112.243678,22.408238],[112.235938,22.427035],[112.242835,22.445191],[112.252875,22.458926],[112.262531,22.480803],[112.25732,22.500229],[112.275636,22.510659],[112.301233,22.515289],[112.307364,22.525399],[112.302153,22.544818],[112.307747,22.556841],[112.303609,22.560139],[112.309127,22.572427],[112.328133,22.569874],[112.331505,22.563916],[112.323918,22.554554],[112.33641,22.545457],[112.342541,22.55067],[112.359631,22.545457],[112.353577,22.556682],[112.342694,22.558065],[112.344533,22.564342],[112.364306,22.558544],[112.366835,22.550404],[112.377411,22.552479],[112.371127,22.558278],[112.379404,22.57881],[112.380247,22.594978],[112.390363,22.594765],[112.396034,22.602636],[112.398333,22.619917],[112.405077,22.618216],[112.407146,22.628425],[112.400402,22.635921],[112.416113,22.647723],[112.412741,22.656814],[112.419562,22.664202],[112.429218,22.666063],[112.435272,22.661279],[112.428375,22.657133],[112.443243,22.642248],[112.440867,22.627627],[112.435732,22.619971],[112.441787,22.606039],[112.456348,22.600562],[112.463552,22.584873],[112.475047,22.585511],[112.483171,22.592372],[112.505626,22.597849],[112.52172,22.607262],[112.515742,22.626617],[112.505243,22.638473],[112.506545,22.657664],[112.500261,22.668667],[112.489992,22.676215],[112.492674,22.686897],[112.47658,22.704009]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/450000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/450000.json new file mode 100644 index 0000000..f0d9f96 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/450000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":450100,"name":"南宁市","center":[108.320004,22.82402],"centroid":[108.467546,23.055985],"childrenNum":12,"level":"city","parent":{"adcode":450000},"subFeatureIndex":0,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.217018,23.296826],[109.207808,23.299964],[109.192737,23.282074],[109.20758,23.273375],[109.197989,23.266548],[109.187484,23.27321],[109.170738,23.277559],[109.165258,23.28956],[109.148588,23.28912],[109.141433,23.299524],[109.13405,23.297652],[109.131994,23.286202],[109.124078,23.291102],[109.110377,23.290826],[109.086628,23.314384],[109.087161,23.326932],[109.093631,23.331005],[109.099188,23.343991],[109.082898,23.344376],[109.086171,23.334086],[109.063869,23.322585],[109.056562,23.32297],[109.050472,23.337498],[109.051994,23.355821],[109.033193,23.354611],[109.020253,23.360003],[109.01325,23.350759],[108.987675,23.349329],[108.987675,23.357197],[108.979758,23.36897],[108.968265,23.370346],[108.965144,23.35406],[108.956847,23.362973],[108.951671,23.357967],[108.939035,23.360058],[108.930662,23.367375],[108.920767,23.389709],[108.9111,23.394605],[108.920234,23.40302],[108.915667,23.412755],[108.919169,23.417979],[108.906609,23.431837],[108.892375,23.433267],[108.890015,23.441295],[108.869616,23.443879],[108.869464,23.457404],[108.863755,23.469884],[108.857209,23.466145],[108.834373,23.478294],[108.836809,23.485935],[108.822347,23.49396],[108.821357,23.503413],[108.826305,23.518855],[108.820824,23.523196],[108.811995,23.540834],[108.813745,23.546933],[108.810015,23.569347],[108.805448,23.570555],[108.803698,23.588846],[108.782765,23.615426],[108.797075,23.634204],[108.780406,23.645514],[108.777209,23.681029],[108.778883,23.691621],[108.790605,23.692335],[108.796619,23.706274],[108.804307,23.714724],[108.788474,23.726904],[108.777589,23.727289],[108.777513,23.732555],[108.788246,23.740455],[108.781623,23.746051],[108.783603,23.768102],[108.773022,23.778193],[108.761833,23.776109],[108.747675,23.780497],[108.743641,23.796126],[108.734811,23.793055],[108.728798,23.798539],[108.713422,23.783513],[108.689597,23.782745],[108.687846,23.788503],[108.673079,23.785048],[108.6711,23.772818],[108.653289,23.766182],[108.638293,23.769089],[108.62718,23.764701],[108.628017,23.75587],[108.61013,23.751098],[108.60914,23.74638],[108.592927,23.744076],[108.596048,23.736615],[108.581433,23.734311],[108.566819,23.723119],[108.566514,23.707975],[108.554031,23.703804],[108.548931,23.707261],[108.542156,23.687835],[108.52914,23.680151],[108.529064,23.671918],[108.501357,23.662751],[108.50425,23.673126],[108.496866,23.676144],[108.497399,23.690963],[108.503717,23.704188],[108.49816,23.713626],[108.489254,23.713297],[108.482099,23.725478],[108.477228,23.72449],[108.474564,23.740565],[108.485601,23.741169],[108.487123,23.760862],[108.469616,23.768102],[108.474411,23.776054],[108.459112,23.787187],[108.456676,23.780716],[108.446096,23.787516],[108.435667,23.787461],[108.443736,23.802487],[108.434373,23.807641],[108.431405,23.798484],[108.418617,23.800787],[108.425848,23.808847],[108.415953,23.8174],[108.418389,23.824473],[108.430263,23.832312],[108.451043,23.837904],[108.45698,23.842728],[108.446552,23.853965],[108.458198,23.864817],[108.462156,23.874189],[108.460862,23.887012],[108.473346,23.888711],[108.476162,23.89419],[108.465353,23.898355],[108.444954,23.898355],[108.455306,23.912545],[108.443736,23.919777],[108.424326,23.916983],[108.422803,23.924433],[108.437875,23.939442],[108.442061,23.954176],[108.433688,23.962829],[108.448531,23.977999],[108.461243,23.98676],[108.476543,23.977889],[108.487656,23.989771],[108.498769,23.990428],[108.479892,24.019061],[108.472585,24.018952],[108.458274,24.010193],[108.451728,24.023824],[108.432547,24.03291],[108.410092,24.030939],[108.377437,24.014408],[108.36404,24.002528],[108.372261,23.998696],[108.367922,23.981832],[108.357723,23.980791],[108.354602,23.965403],[108.362137,23.968525],[108.368379,23.954833],[108.365334,23.931774],[108.365943,23.916106],[108.348817,23.910847],[108.329407,23.911997],[108.330472,23.905806],[108.321719,23.903505],[108.313117,23.893368],[108.317532,23.881806],[108.292718,23.85676],[108.290663,23.847223],[108.309159,23.839494],[108.303451,23.829133],[108.2915,23.823541],[108.282899,23.814385],[108.282823,23.800403],[108.277114,23.798429],[108.264021,23.817675],[108.249635,23.80457],[108.252223,23.814166],[108.243698,23.805064],[108.232585,23.806873],[108.232737,23.822664],[108.22307,23.825624],[108.225049,23.841796],[108.221319,23.854842],[108.209064,23.854951],[108.203051,23.871613],[108.186914,23.860816],[108.176181,23.844427],[108.183413,23.831326],[108.180368,23.823267],[108.162785,23.825679],[108.154107,23.840864],[108.136219,23.853033],[108.129521,23.851279],[108.118256,23.834889],[108.112242,23.814166],[108.104174,23.809724],[108.096181,23.796784],[108.08895,23.793165],[108.069159,23.796071],[108.058351,23.800677],[108.02189,23.776219],[108.01679,23.760039],[108.021814,23.753127],[108.024174,23.734146],[108.042823,23.72065],[108.038712,23.707755],[108.020901,23.690414],[108.019911,23.677571],[108.01169,23.672741],[108.000729,23.67351],[107.993727,23.649247],[107.996543,23.637059],[107.98307,23.626792],[107.96602,23.62789],[107.95993,23.644032],[107.942195,23.657043],[107.924688,23.63942],[107.905506,23.63695],[107.906952,23.625584],[107.893251,23.620697],[107.891424,23.612955],[107.87445,23.601093],[107.860063,23.601752],[107.846591,23.597414],[107.84621,23.606695],[107.839968,23.610209],[107.824669,23.599995],[107.818046,23.606804],[107.810967,23.595601],[107.799093,23.589066],[107.793917,23.580772],[107.793993,23.56671],[107.778846,23.56704],[107.767808,23.572423],[107.754488,23.571983],[107.742918,23.563139],[107.737894,23.566655],[107.72229,23.553965],[107.716277,23.554075],[107.7213,23.543087],[107.734849,23.533252],[107.738122,23.521053],[107.72975,23.496433],[107.735839,23.491101],[107.733099,23.478294],[107.741548,23.461363],[107.736828,23.450917],[107.749236,23.442669],[107.769026,23.449817],[107.775725,23.440195],[107.794298,23.430627],[107.805791,23.435136],[107.821015,23.430187],[107.827104,23.433542],[107.835325,23.427658],[107.843698,23.436181],[107.853365,23.433102],[107.87072,23.446133],[107.88366,23.438875],[107.864098,23.41468],[107.866914,23.401315],[107.85915,23.395485],[107.848113,23.379423],[107.832433,23.374912],[107.827333,23.367595],[107.832128,23.351584],[107.821396,23.343276],[107.836924,23.342065],[107.829236,23.333591],[107.81797,23.333371],[107.818503,23.34091],[107.800768,23.343496],[107.782347,23.349659],[107.764383,23.344872],[107.748018,23.333866],[107.750834,23.314054],[107.743679,23.30767],[107.716124,23.298092],[107.702423,23.280037],[107.671748,23.282239],[107.656067,23.274642],[107.649673,23.282074],[107.611919,23.292368],[107.584897,23.291047],[107.579188,23.276954],[107.581167,23.265062],[107.57622,23.258675],[107.585506,23.247442],[107.584821,23.230426],[107.569445,23.22178],[107.561681,23.204485],[107.53032,23.204099],[107.51974,23.219356],[107.499949,23.224038],[107.498503,23.230977],[107.490511,23.225855],[107.485106,23.230151],[107.471253,23.223322],[107.463261,23.228113],[107.477571,23.242872],[107.469883,23.250526],[107.462043,23.246561],[107.438979,23.25003],[107.42954,23.260217],[107.413556,23.25394],[107.398256,23.238466],[107.385696,23.244359],[107.379226,23.238246],[107.374126,23.214785],[107.366591,23.211039],[107.369712,23.197985],[107.353575,23.197985],[107.346496,23.18862],[107.355021,23.164323],[107.3468,23.157711],[107.357152,23.155177],[107.356543,23.148123],[107.337742,23.148068],[107.330283,23.137432],[107.333175,23.12911],[107.351063,23.121064],[107.3621,23.110756],[107.363013,23.102102],[107.389046,23.098133],[107.387675,23.091518],[107.376943,23.083579],[107.353422,23.080822],[107.353346,23.06588],[107.339417,23.058767],[107.337666,23.047462],[107.367504,23.031524],[107.381358,23.04476],[107.39346,23.04851],[107.397723,23.042995],[107.413175,23.051102],[107.420863,23.045036],[107.432509,23.044043],[107.436848,23.049613],[107.447352,23.049999],[107.460901,23.04294],[107.468437,23.032516],[107.478256,23.031634],[107.481301,23.02121],[107.475744,23.012108],[107.483736,23.006978],[107.490359,22.986787],[107.499873,22.979945],[107.498351,22.963171],[107.492642,22.950258],[107.499569,22.935632],[107.484345,22.925532],[107.477571,22.92509],[107.478484,22.916369],[107.488836,22.895833],[107.488151,22.871925],[107.49797,22.859831],[107.496905,22.851658],[107.504212,22.845417],[107.517152,22.845528],[107.542804,22.858782],[107.574317,22.860439],[107.575382,22.876066],[107.570587,22.888048],[107.583299,22.889815],[107.613974,22.904169],[107.645944,22.902237],[107.650511,22.899642],[107.648379,22.887109],[107.658427,22.87833],[107.660634,22.8669],[107.673574,22.855137],[107.692376,22.861985],[107.693213,22.869385],[107.702119,22.876011],[107.692985,22.890753],[107.674945,22.902292],[107.667181,22.918577],[107.649521,22.924373],[107.647314,22.932376],[107.635668,22.935025],[107.637799,22.947664],[107.676086,22.941979],[107.680197,22.944573],[107.697704,22.938778],[107.712319,22.949154],[107.730967,22.939937],[107.743907,22.943966],[107.752585,22.931051],[107.752813,22.922386],[107.764307,22.91543],[107.776638,22.898372],[107.793536,22.881091],[107.832433,22.872864],[107.859835,22.873195],[107.879017,22.857236],[107.882899,22.849725],[107.914107,22.846135],[107.943793,22.846411],[107.955591,22.844037],[107.970815,22.834702],[107.9817,22.816695],[107.973327,22.79316],[107.999435,22.788519],[108.023793,22.781999],[108.033308,22.776529],[108.026153,22.76824],[108.019683,22.77045],[108.019302,22.757187],[108.027142,22.747128],[108.019302,22.741601],[108.01169,22.720265],[107.999664,22.716672],[108.002785,22.705062],[107.998674,22.694281],[108.006286,22.68195],[108.022575,22.677471],[108.026686,22.666798],[108.041453,22.655793],[108.048531,22.656401],[108.059569,22.665748],[108.068551,22.667351],[108.074716,22.675536],[108.075477,22.695829],[108.085829,22.701966],[108.094354,22.680734],[108.090396,22.669508],[108.099759,22.662706],[108.104554,22.652585],[108.103336,22.643182],[108.086058,22.621277],[108.073498,22.625703],[108.060254,22.618401],[108.058655,22.623435],[108.027218,22.610711],[108.014126,22.61143],[108.006134,22.607557],[107.995325,22.581607],[108.004307,22.560965],[108.018465,22.547793],[108.013441,22.53329],[107.986191,22.504558],[107.997685,22.491601],[108.010929,22.496972],[108.01405,22.479086],[108.042138,22.477536],[108.037038,22.475487],[108.058884,22.47017],[108.058731,22.461974],[108.068627,22.456712],[108.079283,22.461752],[108.087732,22.458374],[108.08484,22.444804],[108.082937,22.411177],[108.087123,22.406025],[108.100596,22.408241],[108.114145,22.398212],[108.115744,22.388571],[108.095877,22.371668],[108.104935,22.35554],[108.11346,22.356205],[108.123888,22.34645],[108.13523,22.341461],[108.133175,22.328046],[108.136828,22.305093],[108.143831,22.303707],[108.15053,22.288791],[108.163698,22.2899],[108.173365,22.280972],[108.189197,22.273651],[108.206705,22.292173],[108.213175,22.285907],[108.218883,22.291952],[108.236238,22.282524],[108.23464,22.263003],[108.243926,22.257956],[108.246667,22.239207],[108.260672,22.229665],[108.267675,22.230664],[108.280691,22.223341],[108.279854,22.206974],[108.296904,22.212078],[108.3017,22.224506],[108.308703,22.224617],[108.321719,22.237432],[108.335648,22.24309],[108.354373,22.246363],[108.371804,22.242868],[108.382918,22.252631],[108.399435,22.261006],[108.406362,22.258566],[108.409863,22.265887],[108.423184,22.267218],[108.436048,22.249303],[108.468246,22.239207],[108.496181,22.238264],[108.501814,22.25019],[108.498236,22.259509],[108.505011,22.264223],[108.507066,22.275038],[108.521148,22.271932],[108.528151,22.274927],[108.538959,22.302043],[108.546343,22.30964],[108.543907,22.31474],[108.551519,22.326716],[108.541776,22.33043],[108.540558,22.346339],[108.54581,22.346284],[108.547789,22.359198],[108.568569,22.372112],[108.56385,22.385855],[108.547332,22.396217],[108.558674,22.408629],[108.558446,22.419876],[108.573289,22.42331],[108.583869,22.430734],[108.594221,22.415887],[108.60366,22.414003],[108.615306,22.428684],[108.617894,22.438378],[108.633193,22.445302],[108.628855,22.452281],[108.633574,22.460035],[108.653136,22.446632],[108.66189,22.429847],[108.673917,22.431011],[108.676276,22.442422],[108.682366,22.446355],[108.688836,22.462583],[108.698503,22.461309],[108.699873,22.450177],[108.720881,22.450897],[108.716162,22.460922],[108.710605,22.484569],[108.71365,22.488611],[108.733974,22.486396],[108.749121,22.504668],[108.767313,22.507049],[108.782689,22.52089],[108.782765,22.527146],[108.811538,22.524156],[108.820748,22.533844],[108.827218,22.530024],[108.842213,22.541593],[108.857818,22.524378],[108.872356,22.518509],[108.873117,22.512198],[108.896409,22.510869],[108.909273,22.515907],[108.91856,22.512253],[108.931424,22.524488],[108.945962,22.525429],[108.963013,22.518454],[108.977932,22.54259],[108.995591,22.538826],[109.001528,22.527921],[109.008683,22.528142],[109.008683,22.514247],[109.014621,22.510371],[109.041262,22.507271],[109.045829,22.518399],[109.079169,22.522274],[109.096295,22.510648],[109.134506,22.51635],[109.145087,22.511257],[109.152013,22.515852],[109.173403,22.52006],[109.163051,22.537774],[109.15384,22.536833],[109.153231,22.544693],[109.163736,22.553438],[109.167237,22.543475],[109.18581,22.546077],[109.197532,22.538327],[109.19738,22.53163],[109.182689,22.517458],[109.198217,22.516074],[109.216029,22.520281],[109.221129,22.513859],[109.229654,22.520392],[109.22874,22.50644],[109.250206,22.509928],[109.263602,22.494868],[109.265581,22.484569],[109.298464,22.509928],[109.317037,22.511146],[109.321376,22.522551],[109.292223,22.543254],[109.289787,22.559582],[109.294354,22.571148],[109.302879,22.575409],[109.306837,22.5862],[109.321528,22.596824],[109.324649,22.607834],[109.3315,22.609383],[109.351671,22.628082],[109.367047,22.626699],[109.374278,22.636379],[109.386913,22.639034],[109.401833,22.627639],[109.408607,22.633834],[109.417208,22.630073],[109.427865,22.634166],[109.440729,22.630737],[109.438902,22.613422],[109.448341,22.61486],[109.446133,22.625537],[109.45032,22.630681],[109.464173,22.629465],[109.472242,22.633115],[109.478559,22.643404],[109.491652,22.652143],[109.517608,22.635605],[109.534278,22.647718],[109.554601,22.65264],[109.556504,22.659664],[109.563507,22.656014],[109.569064,22.665637],[109.584135,22.681287],[109.611233,22.672439],[109.620139,22.676697],[109.618921,22.686871],[109.607579,22.703293],[109.595553,22.714516],[109.588017,22.709651],[109.581471,22.71728],[109.588398,22.724355],[109.578122,22.735134],[109.581166,22.748676],[109.576371,22.759619],[109.560158,22.765698],[109.559397,22.772826],[109.536257,22.774429],[109.50581,22.771887],[109.511442,22.782165],[109.507256,22.790011],[109.517151,22.805425],[109.518065,22.814596],[109.528797,22.809734],[109.535039,22.815203],[109.520729,22.828295],[109.504744,22.823047],[109.480995,22.823545],[109.471709,22.844257],[109.455267,22.849836],[109.459606,22.856905],[109.452755,22.866127],[109.485182,22.878661],[109.482137,22.891526],[109.429616,22.912946],[109.417437,22.909469],[109.409216,22.914326],[109.40952,22.926581],[109.384554,22.929451],[109.376257,22.937233],[109.377475,22.947885],[109.36149,22.960357],[109.355705,22.970124],[109.356542,22.979614],[109.347256,22.985131],[109.342993,22.993959],[109.331804,23.003503],[109.315515,23.006592],[109.311785,23.016907],[109.333402,23.035164],[109.331652,23.040238],[109.345277,23.041451],[109.33835,23.048731],[109.349463,23.064005],[109.338731,23.074537],[109.325715,23.095762],[109.308969,23.092014],[109.297855,23.099566],[109.287047,23.101661],[109.281033,23.09681],[109.27129,23.099787],[109.254164,23.095487],[109.250206,23.104086],[109.255991,23.109654],[109.247922,23.117646],[109.253098,23.125418],[109.245562,23.146139],[109.239321,23.144321],[109.243203,23.168566],[109.24815,23.178263],[109.248074,23.189446],[109.255382,23.193137],[109.260101,23.210764],[109.253935,23.213848],[109.253403,23.229215],[109.231861,23.236374],[109.242137,23.248984],[109.232546,23.254711],[109.232013,23.263135],[109.213288,23.272054],[109.226609,23.269907],[109.240158,23.285156],[109.220824,23.290331],[109.217018,23.296826]]]]}},{"type":"Feature","properties":{"adcode":450200,"name":"柳州市","center":[109.411703,24.314617],"centroid":[109.374902,24.94791],"childrenNum":10,"level":"city","parent":{"adcode":450000},"subFeatureIndex":1,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.116199,24.460826],[110.130357,24.47239],[110.135153,24.481663],[110.132184,24.491644],[110.137969,24.49617],[110.134544,24.505877],[110.138045,24.516511],[110.132869,24.525398],[110.152508,24.529106],[110.171537,24.549441],[110.163393,24.565576],[110.163773,24.591355],[110.15639,24.600564],[110.158445,24.610699],[110.152964,24.616147],[110.156694,24.626118],[110.167731,24.624647],[110.177627,24.63053],[110.170167,24.648289],[110.158369,24.643223],[110.141395,24.645783],[110.133859,24.651557],[110.11011,24.655697],[110.095952,24.647091],[110.084763,24.658311],[110.066038,24.684888],[110.057132,24.672689],[110.048074,24.672145],[110.045029,24.665664],[110.024173,24.659618],[110.01991,24.669149],[110.009178,24.675249],[110.003469,24.672962],[109.989006,24.677318],[109.984135,24.709988],[109.976066,24.708301],[109.972032,24.698555],[109.957722,24.700134],[109.952622,24.717774],[109.937855,24.717719],[109.943412,24.747113],[109.948588,24.749617],[109.947903,24.761263],[109.940367,24.770351],[109.93953,24.779493],[109.929178,24.771712],[109.928112,24.763005],[109.911975,24.763712],[109.905429,24.758053],[109.889444,24.767685],[109.888455,24.784499],[109.89424,24.79043],[109.88914,24.809743],[109.876047,24.815944],[109.872927,24.811484],[109.854506,24.807132],[109.837379,24.821003],[109.836847,24.832262],[109.828321,24.825899],[109.813555,24.825409],[109.807237,24.813388],[109.792165,24.820514],[109.742384,24.825899],[109.721528,24.835906],[109.709197,24.834329],[109.68697,24.846131],[109.674259,24.850318],[109.663907,24.848796],[109.648226,24.837973],[109.630034,24.833731],[109.619149,24.840312],[109.623564,24.859672],[109.629121,24.864185],[109.624097,24.873918],[109.631785,24.879681],[109.623945,24.887292],[109.630415,24.889195],[109.628207,24.915396],[109.621128,24.920016],[109.619225,24.936212],[109.632698,24.938494],[109.622422,24.948004],[109.619073,24.962674],[109.621813,24.98082],[109.633992,24.983645],[109.636809,24.989892],[109.649444,24.984134],[109.644953,25.016886],[109.654696,25.0442],[109.651347,25.064559],[109.664287,25.078836],[109.661699,25.096205],[109.639853,25.113354],[109.637722,25.120625],[109.648683,25.148621],[109.653402,25.166143],[109.679587,25.176937],[109.709501,25.211372],[109.716352,25.225252],[109.716961,25.235607],[109.724877,25.247696],[109.725258,25.268563],[109.739263,25.283033],[109.74855,25.300643],[109.751366,25.350968],[109.746875,25.36494],[109.748017,25.380644],[109.758521,25.375825],[109.762936,25.382485],[109.752965,25.392176],[109.762175,25.403978],[109.764687,25.418865],[109.754183,25.426822],[109.765829,25.429149],[109.768417,25.43927],[109.762403,25.445872],[109.770472,25.480069],[109.781433,25.490997],[109.781204,25.504575],[109.773669,25.518692],[109.769863,25.533564],[109.751595,25.549624],[109.749463,25.558762],[109.738807,25.572872],[109.74071,25.584819],[109.753421,25.596007],[109.764382,25.613032],[109.780748,25.614545],[109.786761,25.620922],[109.794144,25.639887],[109.815229,25.654528],[109.81424,25.660309],[109.799016,25.674191],[109.789577,25.675974],[109.782955,25.684021],[109.782879,25.693419],[109.804877,25.730299],[109.803279,25.737857],[109.782575,25.745144],[109.776561,25.755401],[109.772451,25.774399],[109.764002,25.7819],[109.749692,25.78557],[109.727617,25.796038],[109.72031,25.80602],[109.725486,25.836177],[109.73051,25.852789],[109.749996,25.863629],[109.764763,25.876194],[109.76834,25.890321],[109.747256,25.889242],[109.719397,25.883797],[109.710643,25.886924],[109.702118,25.882287],[109.68522,25.880346],[109.688417,25.887409],[109.6805,25.895173],[109.68522,25.901103],[109.692527,25.89803],[109.692603,25.90989],[109.679282,25.923043],[109.682556,25.933876],[109.69032,25.937649],[109.69344,25.959151],[109.710034,25.954085],[109.71148,25.961737],[109.723507,25.974614],[109.729673,25.991531],[109.723203,26.003435],[109.708207,26.013561],[109.698084,25.998911],[109.689178,25.998264],[109.690091,26.007583],[109.675477,26.015123],[109.656752,26.013453],[109.649292,26.016793],[109.646019,26.041995],[109.634982,26.047326],[109.612679,26.037095],[109.604459,26.026433],[109.588245,26.019755],[109.559777,26.021424],[109.545391,26.013884],[109.540291,26.000042],[109.528721,25.995786],[109.513193,25.998103],[109.50893,26.009522],[109.496447,26.02374],[109.48267,26.02961],[109.478407,26.025679],[109.473155,26.006559],[109.454354,25.991369],[109.408531,25.967287],[109.406856,25.961037],[109.426038,25.955163],[109.431975,25.947781],[109.434335,25.932313],[109.425734,25.916359],[109.41325,25.905632],[109.396733,25.900294],[109.391328,25.891237],[109.388664,25.870801],[109.373745,25.853329],[109.369102,25.842649],[109.358978,25.836069],[109.349007,25.838874],[109.339264,25.833803],[109.337132,25.8112],[109.33972,25.802513],[109.336295,25.789563],[109.32914,25.784221],[109.334164,25.772024],[109.327846,25.761446],[109.338426,25.755293],[109.341471,25.746926],[109.340101,25.731756],[109.314906,25.73316],[109.313916,25.722038],[109.296638,25.714155],[109.27776,25.714641],[109.256371,25.71977],[109.254773,25.728571],[109.247694,25.728247],[109.234145,25.736345],[109.206971,25.740232],[109.209482,25.74752],[109.204992,25.773913],[109.206666,25.788106],[109.193041,25.800085],[109.175382,25.804887],[109.166095,25.796308],[109.182308,25.788916],[109.17797,25.782062],[109.191062,25.774561],[109.182765,25.763281],[109.159245,25.759071],[109.160082,25.752162],[109.15209,25.741959],[109.144934,25.744389],[109.132299,25.762957],[109.143869,25.777205],[109.143564,25.795283],[109.135115,25.805427],[109.117989,25.809365],[109.094773,25.802297],[109.098274,25.795121],[109.087618,25.795823],[109.080539,25.788646],[109.077875,25.776774],[109.04933,25.790265],[109.031366,25.793934],[109.016752,25.790912],[109.011804,25.779526],[108.997722,25.784383],[108.989654,25.778932],[109.000006,25.760582],[108.98973,25.763011],[108.979606,25.745306],[108.96423,25.74509],[108.959511,25.740124],[108.963545,25.732512],[108.953802,25.730784],[108.940253,25.74007],[108.929749,25.732566],[108.911405,25.724738],[108.912166,25.718366],[108.896257,25.714155],[108.895039,25.703409],[108.900367,25.682347],[108.915743,25.677486],[108.929368,25.684183],[108.94817,25.676622],[108.958217,25.691366],[108.974582,25.700439],[108.983869,25.72058],[109.001376,25.724522],[109.003203,25.736345],[109.030529,25.72274],[109.036923,25.724522],[109.04286,25.737695],[109.055876,25.738127],[109.054278,25.732188],[109.079092,25.720688],[109.071937,25.708215],[109.07521,25.693851],[109.057475,25.679809],[109.049483,25.660579],[109.043013,25.656959],[109.041871,25.638969],[109.031214,25.629513],[109.046438,25.619949],[109.04248,25.608924],[109.046362,25.574818],[109.052223,25.566817],[109.067751,25.561843],[109.075591,25.553084],[109.088531,25.549516],[109.077342,25.536214],[109.066837,25.538755],[109.055496,25.52556],[109.044154,25.527994],[109.025125,25.512472],[109.011043,25.519233],[108.989654,25.533726],[108.972832,25.531779],[108.972451,25.542487],[108.952432,25.556383],[108.93797,25.553571],[108.931728,25.556383],[108.913079,25.54373],[108.897475,25.540864],[108.88895,25.544812],[108.890396,25.55622],[108.876238,25.553355],[108.867332,25.558545],[108.851576,25.554652],[108.855991,25.548651],[108.830339,25.546812],[108.826457,25.550057],[108.81268,25.526372],[108.80012,25.537998],[108.798065,25.546704],[108.789159,25.554652],[108.781319,25.554328],[108.786876,25.572115],[108.799131,25.576007],[108.794792,25.593953],[108.780329,25.601845],[108.78444,25.606006],[108.784059,25.62827],[108.765486,25.632107],[108.761985,25.63778],[108.723393,25.634484],[108.714487,25.623461],[108.703755,25.625515],[108.688988,25.623191],[108.682442,25.605844],[108.689825,25.604006],[108.683812,25.586116],[108.672775,25.59017],[108.660977,25.584819],[108.659987,25.573413],[108.665924,25.56233],[108.658236,25.551841],[108.687313,25.53524],[108.690434,25.518908],[108.675896,25.524857],[108.667751,25.532212],[108.663032,25.526047],[108.654583,25.530049],[108.632889,25.518908],[108.631291,25.508415],[108.622156,25.502898],[108.621167,25.492783],[108.607466,25.492079],[108.618503,25.483911],[108.620406,25.476661],[108.628246,25.477959],[108.633117,25.464433],[108.621319,25.468004],[108.6115,25.479637],[108.598864,25.454801],[108.600311,25.432451],[108.587675,25.421409],[108.595287,25.40766],[108.61386,25.407227],[108.622232,25.38974],[108.623907,25.377287],[108.615382,25.365753],[108.630073,25.335911],[108.624897,25.324318],[108.625201,25.30812],[108.631899,25.306278],[108.645144,25.293599],[108.651081,25.260325],[108.64796,25.251219],[108.656333,25.237667],[108.653441,25.233927],[108.655115,25.214951],[108.665696,25.203727],[108.683355,25.202751],[108.685791,25.194834],[108.702765,25.188217],[108.718141,25.17737],[108.713498,25.154914],[108.706876,25.162075],[108.694545,25.163648],[108.685258,25.140538],[108.686704,25.128385],[108.677418,25.128981],[108.674754,25.116501],[108.679016,25.106353],[108.69013,25.112051],[108.699873,25.10174],[108.725981,25.102934],[108.731157,25.096042],[108.748664,25.111509],[108.747142,25.124749],[108.753764,25.128276],[108.76229,25.121331],[108.781015,25.12616],[108.797837,25.12692],[108.802099,25.112811],[108.820824,25.114385],[108.823032,25.127462],[108.835287,25.139453],[108.845182,25.155402],[108.855686,25.150086],[108.862994,25.140809],[108.878902,25.142274],[108.899073,25.152744],[108.908132,25.144878],[108.902879,25.129849],[108.915363,25.128059],[108.930739,25.130663],[108.94817,25.121168],[108.960272,25.124858],[108.975724,25.138042],[108.979911,25.145475],[108.985924,25.170211],[108.99521,25.173194],[109.013403,25.168746],[109.03266,25.182035],[109.052223,25.202425],[109.061966,25.198955],[109.071709,25.181221],[109.076885,25.178401],[109.092261,25.158223],[109.093783,25.14401],[109.102385,25.12209],[109.105049,25.103748],[109.09835,25.072648],[109.083888,25.051693],[109.083203,25.034644],[109.074754,25.026933],[109.066761,25.010423],[109.033041,24.989729],[109.017132,24.976094],[108.990643,24.957567],[108.986457,24.941157],[108.994221,24.921103],[109.004497,24.916048],[109.032204,24.912787],[109.076657,24.917842],[109.100634,24.928169],[109.100329,24.944689],[109.118445,24.947569],[109.128721,24.940396],[109.139835,24.923766],[109.157875,24.909417],[109.152622,24.896262],[109.139378,24.893055],[109.136638,24.886966],[109.13816,24.867611],[109.146076,24.861684],[109.139073,24.85282],[109.137247,24.835798],[109.151176,24.836559],[109.158027,24.824648],[109.15011,24.807893],[109.131842,24.7913],[109.117836,24.801855],[109.097513,24.806751],[109.094164,24.824811],[109.07757,24.830467],[109.064097,24.823342],[109.038065,24.822309],[109.027256,24.813932],[109.015838,24.795435],[109.013783,24.786403],[108.99757,24.777534],[108.9911,24.759468],[108.980444,24.749617],[108.963013,24.747875],[108.956086,24.740364],[108.964687,24.731601],[108.935838,24.730294],[108.931652,24.715705],[108.950986,24.697085],[108.952813,24.683799],[108.970168,24.666208],[108.951519,24.640554],[108.927161,24.636632],[108.910263,24.625682],[108.899911,24.614023],[108.903945,24.601708],[108.912927,24.595442],[108.908817,24.586613],[108.87601,24.571517],[108.852109,24.571299],[108.846248,24.563396],[108.845563,24.549823],[108.838027,24.538211],[108.849521,24.53036],[108.862232,24.51373],[108.864211,24.521909],[108.875325,24.529433],[108.884078,24.528015],[108.892223,24.501351],[108.912546,24.498515],[108.937056,24.474899],[108.961033,24.474681],[108.983108,24.485699],[109.022765,24.481172],[109.032965,24.48439],[109.046666,24.460989],[109.046286,24.443532],[109.042404,24.437039],[109.009216,24.4294],[109.000843,24.420505],[109.00541,24.398567],[108.999245,24.374386],[108.990491,24.378589],[108.985391,24.387378],[108.977779,24.389015],[108.970548,24.378644],[108.953117,24.381646],[108.932565,24.37515],[108.920539,24.36183],[108.928531,24.340427],[108.920539,24.315416],[108.920386,24.288816],[108.916581,24.27057],[108.916885,24.254998],[108.925791,24.256419],[108.940862,24.243414],[108.944744,24.228112],[108.930434,24.217017],[108.938122,24.199745],[108.935153,24.185203],[108.941928,24.174105],[108.958065,24.161857],[108.972147,24.129755],[108.978008,24.126255],[109.00404,24.131396],[109.036466,24.12177],[109.050929,24.105359],[109.061814,24.100272],[109.076733,24.09874],[109.105886,24.083913],[109.094544,24.073134],[109.089368,24.063066],[109.114716,24.057429],[109.125677,24.064543],[109.136409,24.057593],[109.142423,24.046812],[109.142727,24.031487],[109.146914,24.022838],[109.155286,24.021798],[109.16503,24.028805],[109.172261,24.028257],[109.183983,24.016488],[109.211462,24.019006],[109.221966,24.032034],[109.217855,24.051738],[109.232242,24.058633],[109.278598,24.04725],[109.289787,24.038493],[109.295039,24.027601],[109.291385,24.006853],[109.306685,23.993494],[109.324801,23.987745],[109.328835,23.960967],[109.348169,23.952971],[109.344516,23.937471],[109.353726,23.934787],[109.357912,23.92142],[109.366057,23.918133],[109.359283,23.912216],[109.363697,23.907121],[109.375724,23.908326],[109.384097,23.915175],[109.406323,23.908107],[109.42855,23.9086],[109.442556,23.920325],[109.451233,23.939826],[109.469958,23.951657],[109.470567,23.96732],[109.483735,23.960529],[109.495229,23.970551],[109.502993,23.990319],[109.487313,24.011178],[109.493859,24.021743],[109.492641,24.032527],[109.501166,24.047688],[109.510681,24.052777],[109.530015,24.053981],[109.549045,24.063941],[109.560538,24.06323],[109.581928,24.070836],[109.598141,24.083913],[109.609026,24.115589],[109.615267,24.140858],[109.643659,24.150264],[109.659035,24.145287],[109.670148,24.146928],[109.684154,24.155076],[109.705467,24.153326],[109.710262,24.176893],[109.74581,24.214284],[109.762023,24.211989],[109.770928,24.215542],[109.781357,24.227238],[109.793764,24.234288],[109.803126,24.256146],[109.809825,24.258823],[109.820253,24.252649],[109.830681,24.258386],[109.840196,24.256091],[109.851537,24.260407],[109.849634,24.274995],[109.880082,24.276306],[109.88442,24.274613],[109.887541,24.288925],[109.902689,24.300997],[109.913878,24.301653],[109.927046,24.293732],[109.932907,24.271826],[109.925143,24.269095],[109.905505,24.272263],[109.907712,24.245272],[109.931842,24.234889],[109.941433,24.23702],[109.963431,24.256965],[109.97599,24.2615],[109.998826,24.255053],[110.015648,24.26751],[110.033231,24.273028],[110.027598,24.281496],[110.0362,24.290236],[110.029349,24.307551],[110.030795,24.318475],[110.021204,24.326994],[110.01717,24.336496],[110.034449,24.344031],[110.048683,24.36658],[110.045638,24.390543],[110.055838,24.419414],[110.072127,24.439058],[110.06893,24.457334],[110.079054,24.467426],[110.09344,24.457607],[110.097398,24.462517],[110.116199,24.460826]]]]}},{"type":"Feature","properties":{"adcode":450300,"name":"桂林市","center":[110.299121,25.274215],"centroid":[110.518333,25.35549],"childrenNum":17,"level":"city","parent":{"adcode":450000},"subFeatureIndex":2,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.097436,24.940885],[111.086094,24.941157],[111.050243,24.928277],[111.030376,24.931973],[111.018578,24.929799],[111.014544,24.923766],[111.00343,24.921484],[110.997189,24.927027],[110.979149,24.91469],[110.983716,24.924201],[110.994905,24.930342],[110.987293,24.942515],[110.992089,24.959034],[110.985543,24.966043],[110.97344,24.96827],[110.968797,24.97555],[110.975419,24.987773],[110.960728,25.001516],[110.9554,25.016886],[110.957455,25.024869],[110.951898,25.041159],[110.956161,25.058805],[110.966665,25.073136],[110.961413,25.077859],[110.983944,25.101686],[110.977626,25.108958],[110.982802,25.126648],[110.995819,25.147536],[111.000538,25.149978],[111.002745,25.165763],[111.034639,25.17916],[111.047198,25.178998],[111.054962,25.187675],[111.065466,25.187512],[111.077874,25.20107],[111.112736,25.217066],[111.117836,25.239293],[111.109843,25.252737],[111.109539,25.266287],[111.103297,25.285092],[111.11951,25.290836],[111.138464,25.303569],[111.155438,25.324373],[111.163887,25.34241],[111.181851,25.366565],[111.210547,25.363532],[111.227978,25.375446],[111.236732,25.378153],[111.242136,25.387845],[111.257512,25.395966],[111.256903,25.40766],[111.265885,25.425414],[111.278977,25.423303],[111.300214,25.448308],[111.300899,25.469736],[111.317265,25.494406],[111.321451,25.496137],[111.32815,25.52145],[111.323887,25.548867],[111.324876,25.564114],[111.336827,25.595791],[111.343145,25.602763],[111.334696,25.618382],[111.317645,25.631296],[111.310033,25.644966],[111.309805,25.658094],[111.313915,25.682671],[111.308739,25.692339],[111.307522,25.716315],[111.318711,25.729543],[111.327312,25.732728],[111.346798,25.729651],[111.399624,25.744605],[111.416066,25.768192],[111.432888,25.766627],[111.440195,25.769596],[111.44225,25.778069],[111.436085,25.813574],[111.425048,25.826251],[111.433268,25.846263],[111.456865,25.848097],[111.465162,25.855863],[111.486246,25.859315],[111.492108,25.86859],[111.471023,25.875277],[111.456789,25.871071],[111.454201,25.888433],[111.440652,25.884929],[111.432203,25.886924],[111.415837,25.876841],[111.408682,25.885091],[111.382574,25.882287],[111.378463,25.904769],[111.365219,25.900564],[111.360347,25.89059],[111.355019,25.892154],[111.346266,25.906332],[111.327617,25.900187],[111.326475,25.895496],[111.305314,25.883689],[111.297093,25.874253],[111.291917,25.854407],[111.278521,25.860286],[111.259872,25.861041],[111.251575,25.864708],[111.242669,25.887786],[111.22912,25.897491],[111.222498,25.907303],[111.232241,25.911076],[111.216637,25.928918],[111.219681,25.937056],[111.206513,25.939643],[111.204991,25.9529],[111.189539,25.953277],[111.196085,25.960875],[111.196694,25.970843],[111.202935,25.976123],[111.215343,26.011784],[111.213973,26.019809],[111.23049,26.034457],[111.236808,26.048834],[111.252945,26.056694],[111.265961,26.055725],[111.244648,26.077959],[111.265961,26.096044],[111.259339,26.09669],[111.26893,26.107346],[111.268625,26.129301],[111.262384,26.135865],[111.258045,26.149315],[111.269691,26.170563],[111.27441,26.184547],[111.266494,26.191377],[111.27068,26.200788],[111.27167,26.217187],[111.291461,26.22079],[111.295723,26.237563],[111.29207,26.253581],[111.281261,26.271102],[111.267864,26.273036],[111.252488,26.269221],[111.247845,26.263631],[111.240538,26.267071],[111.231708,26.262288],[111.225466,26.269436],[111.212831,26.269113],[111.203316,26.280667],[111.208873,26.29093],[111.209253,26.302697],[111.204762,26.307854],[111.177817,26.307102],[111.168911,26.310487],[111.157798,26.307478],[111.135799,26.306511],[111.128416,26.309305],[111.111061,26.308499],[111.106875,26.304094],[111.092564,26.306726],[111.079396,26.318222],[111.064781,26.318867],[111.061204,26.325367],[111.053516,26.319512],[111.040348,26.323487],[111.043164,26.332457],[111.034106,26.331974],[111.022536,26.337936],[111.002593,26.340138],[111.008606,26.35888],[110.99186,26.363552],[110.98364,26.377996],[110.974582,26.385566],[110.958901,26.382721],[110.94482,26.373593],[110.950528,26.356947],[110.947408,26.353134],[110.943906,26.32671],[110.925409,26.31876],[110.93599,26.305383],[110.93972,26.286685],[110.930357,26.26433],[110.929977,26.255677],[110.921604,26.254871],[110.924344,26.26304],[110.916351,26.275992],[110.899986,26.275025],[110.855609,26.268146],[110.846018,26.259869],[110.834296,26.255892],[110.814658,26.258794],[110.782232,26.257451],[110.759092,26.24869],[110.758178,26.255193],[110.735191,26.270994],[110.742802,26.276099],[110.750034,26.2905],[110.749501,26.301085],[110.741737,26.313925],[110.732527,26.311776],[110.720957,26.294208],[110.709463,26.293187],[110.697817,26.308714],[110.667217,26.317632],[110.643773,26.308445],[110.625809,26.315644],[110.622841,26.330094],[110.612336,26.333639],[110.595058,26.318384],[110.584097,26.296948],[110.56933,26.289587],[110.555248,26.286363],[110.546114,26.257289],[110.546647,26.233585],[110.542688,26.221166],[110.531042,26.209391],[110.517569,26.186806],[110.500138,26.169756],[110.490548,26.165561],[110.474106,26.180137],[110.45698,26.164431],[110.43795,26.153942],[110.427141,26.138018],[110.414582,26.12575],[110.400348,26.116441],[110.377132,26.09443],[110.373174,26.078551],[110.353307,26.054702],[110.35795,26.046465],[110.335343,25.9925],[110.325524,25.975638],[110.305124,25.967341],[110.287922,25.96691],[110.261737,25.96136],[110.245828,25.96858],[110.251081,25.996594],[110.245219,26.022286],[110.234106,26.032733],[110.212108,26.043072],[110.201147,26.06617],[110.190947,26.067677],[110.181661,26.060463],[110.172983,26.045011],[110.165828,26.023848],[110.15639,26.018516],[110.140481,26.020347],[110.129672,26.029233],[110.112546,26.03478],[110.100976,26.020186],[110.083393,26.039034],[110.073193,26.040272],[110.064896,26.050018],[110.072127,26.063909],[110.074411,26.083073],[110.100976,26.132583],[110.09443,26.14711],[110.098692,26.169165],[110.084002,26.171478],[110.068474,26.168035],[110.051575,26.169219],[110.041528,26.162441],[110.030186,26.166099],[110.016713,26.184224],[110.005752,26.185784],[109.984363,26.179922],[109.966247,26.195518],[109.931233,26.161258],[109.914487,26.154372],[109.90718,26.144904],[109.899035,26.108961],[109.899035,26.095183],[109.88815,26.087971],[109.882517,26.075268],[109.880462,26.057341],[109.870871,26.033326],[109.856257,26.026271],[109.840196,26.029072],[109.81462,26.040972],[109.801985,26.034403],[109.782422,25.997187],[109.78463,25.985766],[109.806476,25.973645],[109.810434,25.945679],[109.825048,25.922881],[109.825962,25.9114],[109.815838,25.89086],[109.81325,25.879806],[109.799397,25.87188],[109.77953,25.865948],[109.764763,25.876194],[109.749996,25.863629],[109.73051,25.852789],[109.725486,25.836177],[109.72031,25.80602],[109.727617,25.796038],[109.749692,25.78557],[109.764002,25.7819],[109.772451,25.774399],[109.776561,25.755401],[109.782575,25.745144],[109.803279,25.737857],[109.804877,25.730299],[109.782879,25.693419],[109.782955,25.684021],[109.789577,25.675974],[109.799016,25.674191],[109.81424,25.660309],[109.815229,25.654528],[109.794144,25.639887],[109.786761,25.620922],[109.780748,25.614545],[109.764382,25.613032],[109.753421,25.596007],[109.74071,25.584819],[109.738807,25.572872],[109.749463,25.558762],[109.751595,25.549624],[109.769863,25.533564],[109.773669,25.518692],[109.781204,25.504575],[109.781433,25.490997],[109.770472,25.480069],[109.762403,25.445872],[109.768417,25.43927],[109.765829,25.429149],[109.754183,25.426822],[109.764687,25.418865],[109.762175,25.403978],[109.752965,25.392176],[109.762936,25.382485],[109.758521,25.375825],[109.748017,25.380644],[109.746875,25.36494],[109.751366,25.350968],[109.74855,25.300643],[109.739263,25.283033],[109.725258,25.268563],[109.724877,25.247696],[109.716961,25.235607],[109.716352,25.225252],[109.709501,25.211372],[109.679587,25.176937],[109.653402,25.166143],[109.648683,25.148621],[109.637722,25.120625],[109.639853,25.113354],[109.661699,25.096205],[109.664287,25.078836],[109.651347,25.064559],[109.654696,25.0442],[109.644953,25.016886],[109.649444,24.984134],[109.636809,24.989892],[109.633992,24.983645],[109.621813,24.98082],[109.619073,24.962674],[109.622422,24.948004],[109.632698,24.938494],[109.619225,24.936212],[109.621128,24.920016],[109.628207,24.915396],[109.630415,24.889195],[109.623945,24.887292],[109.631785,24.879681],[109.624097,24.873918],[109.629121,24.864185],[109.623564,24.859672],[109.619149,24.840312],[109.630034,24.833731],[109.648226,24.837973],[109.663907,24.848796],[109.674259,24.850318],[109.68697,24.846131],[109.709197,24.834329],[109.721528,24.835906],[109.742384,24.825899],[109.792165,24.820514],[109.807237,24.813388],[109.813555,24.825409],[109.828321,24.825899],[109.836847,24.832262],[109.837379,24.821003],[109.854506,24.807132],[109.872927,24.811484],[109.876047,24.815944],[109.88914,24.809743],[109.89424,24.79043],[109.888455,24.784499],[109.889444,24.767685],[109.905429,24.758053],[109.911975,24.763712],[109.928112,24.763005],[109.929178,24.771712],[109.93953,24.779493],[109.940367,24.770351],[109.947903,24.761263],[109.948588,24.749617],[109.943412,24.747113],[109.937855,24.717719],[109.952622,24.717774],[109.957722,24.700134],[109.972032,24.698555],[109.976066,24.708301],[109.984135,24.709988],[109.989006,24.677318],[110.003469,24.672962],[110.009178,24.675249],[110.01991,24.669149],[110.024173,24.659618],[110.045029,24.665664],[110.048074,24.672145],[110.057132,24.672689],[110.066038,24.684888],[110.084763,24.658311],[110.095952,24.647091],[110.11011,24.655697],[110.133859,24.651557],[110.141395,24.645783],[110.158369,24.643223],[110.170167,24.648289],[110.177627,24.63053],[110.167731,24.624647],[110.156694,24.626118],[110.152964,24.616147],[110.158445,24.610699],[110.15639,24.600564],[110.163773,24.591355],[110.163393,24.565576],[110.171537,24.549441],[110.152508,24.529106],[110.132869,24.525398],[110.138045,24.516511],[110.134544,24.505877],[110.137969,24.49617],[110.132184,24.491644],[110.135153,24.481663],[110.130357,24.47239],[110.116199,24.460826],[110.120234,24.449587],[110.135001,24.447242],[110.147408,24.436002],[110.156161,24.44435],[110.164154,24.437857],[110.187141,24.447623],[110.202669,24.449697],[110.204496,24.44315],[110.195362,24.430655],[110.202517,24.414448],[110.189958,24.405771],[110.205029,24.405553],[110.21188,24.399931],[110.197189,24.386341],[110.188816,24.382574],[110.190643,24.372476],[110.200614,24.370892],[110.196961,24.357244],[110.198711,24.347908],[110.209672,24.350856],[110.220557,24.34627],[110.229463,24.360629],[110.23129,24.351948],[110.260367,24.360247],[110.267065,24.356971],[110.264477,24.34141],[110.258007,24.340209],[110.260139,24.322297],[110.271023,24.319785],[110.268359,24.303728],[110.27757,24.307333],[110.288987,24.299905],[110.316923,24.296409],[110.339377,24.300724],[110.352317,24.314215],[110.37363,24.323608],[110.398749,24.321806],[110.410548,24.325356],[110.424325,24.338844],[110.428588,24.330107],[110.44404,24.329451],[110.445334,24.317765],[110.455229,24.313614],[110.482403,24.31274],[110.484154,24.321533],[110.476161,24.340919],[110.467712,24.350365],[110.469463,24.357517],[110.483773,24.348181],[110.50638,24.345778],[110.507446,24.360247],[110.513992,24.364942],[110.516504,24.375751],[110.527769,24.38252],[110.538959,24.401514],[110.551899,24.404952],[110.555019,24.38645],[110.552127,24.371602],[110.555324,24.366088],[110.567503,24.362649],[110.581052,24.372476],[110.587902,24.390434],[110.598178,24.396438],[110.621547,24.394146],[110.640348,24.382793],[110.647731,24.368436],[110.656409,24.360684],[110.670262,24.355333],[110.682669,24.34627],[110.713193,24.337806],[110.727122,24.328032],[110.754068,24.329178],[110.771194,24.319403],[110.79129,24.31629],[110.797988,24.332619],[110.790833,24.346816],[110.796998,24.365215],[110.811156,24.38252],[110.832926,24.38836],[110.843735,24.386341],[110.856751,24.361885],[110.855,24.32896],[110.87677,24.310665],[110.875248,24.29701],[110.880043,24.289636],[110.879967,24.271007],[110.88324,24.259151],[110.888873,24.261828],[110.910034,24.287013],[110.911404,24.297611],[110.92343,24.299795],[110.918026,24.30919],[110.93226,24.309627],[110.934011,24.324373],[110.943221,24.336004],[110.950224,24.333547],[110.958445,24.31842],[110.960424,24.298048],[110.977322,24.294825],[110.993611,24.309081],[111.004115,24.310009],[111.014391,24.331963],[111.02619,24.332073],[111.024363,24.347853],[111.017817,24.353313],[110.992545,24.354896],[110.975038,24.36112],[110.962327,24.370674],[110.968264,24.376024],[110.981432,24.371002],[110.992469,24.37657],[110.995819,24.395074],[111.018882,24.419578],[111.026113,24.446696],[111.040652,24.46268],[111.025885,24.483244],[111.042022,24.489298],[111.044001,24.498952],[111.020176,24.519237],[111.011423,24.54279],[110.991175,24.556855],[110.982726,24.569664],[110.983411,24.58596],[111.001071,24.600346],[111.002517,24.606776],[110.989272,24.62116],[110.994829,24.631075],[111.009748,24.634616],[111.012641,24.649596],[111.020633,24.669639],[111.029691,24.675902],[111.058768,24.672907],[111.06912,24.682818],[111.072545,24.695941],[111.079396,24.703782],[111.090509,24.701332],[111.10657,24.707593],[111.100709,24.719516],[111.108016,24.732199],[111.118825,24.72877],[111.13245,24.735737],[111.147369,24.767903],[111.16579,24.771875],[111.170053,24.776718],[111.169215,24.801964],[111.16305,24.81502],[111.161527,24.83732],[111.169444,24.862608],[111.169139,24.883976],[111.164496,24.898437],[111.151936,24.900448],[111.138311,24.891479],[111.127503,24.890065],[111.117151,24.895501],[111.105961,24.908113],[111.09774,24.931973],[111.097436,24.940885]]]]}},{"type":"Feature","properties":{"adcode":450400,"name":"梧州市","center":[111.297604,23.474803],"centroid":[110.99512,23.479776],"childrenNum":7,"level":"city","parent":{"adcode":450000},"subFeatureIndex":3,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.391899,24.04216],[110.397608,24.033019],[110.398217,24.0172],[110.389311,23.997436],[110.395933,23.978765],[110.396618,23.96502],[110.388245,23.946454],[110.380177,23.939826],[110.359396,23.931883],[110.352546,23.912874],[110.357189,23.891286],[110.374239,23.882464],[110.37325,23.877477],[110.398902,23.878573],[110.411613,23.863173],[110.43384,23.865804],[110.443811,23.864159],[110.45972,23.848264],[110.475705,23.853636],[110.493059,23.841358],[110.484991,23.828585],[110.499606,23.804844],[110.511023,23.799964],[110.533174,23.803254],[110.543754,23.813453],[110.550072,23.826063],[110.558064,23.826227],[110.569939,23.809834],[110.572527,23.795852],[110.582194,23.783403],[110.569101,23.759874],[110.5554,23.74841],[110.548245,23.717358],[110.551975,23.702816],[110.571537,23.706713],[110.57207,23.698207],[110.565676,23.681249],[110.571004,23.677791],[110.558901,23.667966],[110.544287,23.666868],[110.542232,23.657482],[110.548093,23.646173],[110.56423,23.641726],[110.576713,23.634314],[110.576637,23.629043],[110.588055,23.620642],[110.586761,23.599995],[110.579529,23.588846],[110.59521,23.589889],[110.605257,23.577092],[110.601832,23.561381],[110.61363,23.558195],[110.617893,23.551932],[110.614391,23.540889],[110.61972,23.515173],[110.619644,23.50028],[110.630757,23.483241],[110.63167,23.469059],[110.622156,23.460373],[110.606399,23.453776],[110.593916,23.452456],[110.584629,23.438985],[110.587522,23.427713],[110.573364,23.390479],[110.581965,23.374637],[110.564382,23.36754],[110.567731,23.359562],[110.581889,23.363139],[110.588892,23.353125],[110.58227,23.344652],[110.591708,23.333536],[110.59049,23.323135],[110.60305,23.323851],[110.615305,23.329024],[110.62893,23.319998],[110.650624,23.315045],[110.656561,23.30767],[110.659225,23.294129],[110.652222,23.256528],[110.631214,23.24144],[110.624135,23.225635],[110.602898,23.214289],[110.587217,23.217373],[110.572831,23.225029],[110.550148,23.208175],[110.54383,23.191264],[110.553878,23.162946],[110.548245,23.145092],[110.547408,23.1263],[110.559206,23.108772],[110.578616,23.109323],[110.59148,23.098464],[110.602898,23.103645],[110.612032,23.12178],[110.624439,23.121945],[110.659758,23.116268],[110.66775,23.11004],[110.665086,23.101385],[110.667979,23.089147],[110.682213,23.088541],[110.678407,23.073985],[110.686932,23.063509],[110.710605,23.059318],[110.711442,23.042278],[110.724839,23.041175],[110.739986,23.057113],[110.750338,23.045642],[110.745314,23.03748],[110.758254,23.021044],[110.751099,23.009681],[110.756808,23.002455],[110.749958,22.989987],[110.754144,22.969903],[110.76678,22.963005],[110.765029,22.953183],[110.74539,22.951969],[110.726057,22.923269],[110.733288,22.911787],[110.7256,22.906046],[110.729939,22.900525],[110.728416,22.887164],[110.752241,22.852155],[110.768835,22.846301],[110.786799,22.860881],[110.799663,22.855745],[110.80187,22.846301],[110.795704,22.82592],[110.773021,22.772882],[110.771956,22.76509],[110.790376,22.741767],[110.786037,22.728446],[110.791442,22.721757],[110.816409,22.714903],[110.830719,22.706555],[110.843354,22.709651],[110.853935,22.703569],[110.888036,22.641689],[110.882327,22.630516],[110.883316,22.622163],[110.895876,22.613532],[110.941318,22.608111],[110.957683,22.616741],[110.961718,22.625758],[110.958977,22.636545],[110.977322,22.641523],[110.987369,22.640196],[110.997113,22.631401],[111.010738,22.645837],[111.024439,22.651368],[111.034563,22.645008],[111.039815,22.64899],[111.055571,22.648492],[111.062041,22.66619],[111.073992,22.667241],[111.089139,22.689028],[111.083202,22.708711],[111.063944,22.719878],[111.060519,22.731542],[111.085409,22.729717],[111.095152,22.733476],[111.099187,22.741767],[111.116694,22.745415],[111.129253,22.738838],[111.174696,22.740109],[111.176218,22.73624],[111.202098,22.740496],[111.20461,22.750113],[111.218464,22.748068],[111.232165,22.759011],[111.239015,22.768792],[111.241147,22.781281],[111.255152,22.787082],[111.256827,22.793823],[111.272127,22.790674],[111.272812,22.798851],[111.291613,22.807801],[111.287579,22.816087],[111.306608,22.839618],[111.30364,22.843981],[111.319624,22.851216],[111.325866,22.866403],[111.339643,22.868557],[111.343678,22.876784],[111.358749,22.889207],[111.361946,22.909965],[111.370319,22.91543],[111.375495,22.926525],[111.374429,22.938447],[111.364762,22.947554],[111.369329,22.95103],[111.363925,22.968799],[111.375343,22.967861],[111.377322,22.973269],[111.397188,22.981269],[111.403735,22.991255],[111.389577,23.005599],[111.39696,23.013377],[111.414011,23.016135],[111.416066,23.025677],[111.433953,23.036212],[111.427179,23.060642],[111.434562,23.071559],[111.40206,23.066211],[111.394677,23.068141],[111.379529,23.081318],[111.374277,23.092565],[111.375267,23.108166],[111.379986,23.123158],[111.376561,23.142006],[111.366056,23.144707],[111.398711,23.15986],[111.392469,23.169558],[111.384325,23.167629],[111.384248,23.194129],[111.388892,23.210213],[111.377855,23.215776],[111.379149,23.221504],[111.365752,23.236924],[111.371993,23.264291],[111.361109,23.270568],[111.351213,23.265998],[111.349615,23.27277],[111.356542,23.283395],[111.353421,23.288955],[111.376561,23.304642],[111.37755,23.313889],[111.3656,23.319778],[111.361946,23.330289],[111.368188,23.350594],[111.378007,23.369575],[111.38912,23.376012],[111.392089,23.391139],[111.383487,23.399665],[111.39559,23.438326],[111.39285,23.446683],[111.400005,23.456854],[111.399776,23.469389],[111.42893,23.466585],[111.430528,23.475491],[111.445371,23.488298],[111.45207,23.500995],[111.459529,23.499785],[111.464248,23.511491],[111.480233,23.532593],[111.478406,23.543911],[111.481908,23.558854],[111.489063,23.561381],[111.488987,23.592306],[111.482745,23.605706],[111.487084,23.626627],[111.508245,23.625749],[111.538387,23.630855],[111.551175,23.640463],[111.564267,23.633216],[111.584286,23.644691],[111.588549,23.638103],[111.59441,23.643483],[111.607426,23.637389],[111.615647,23.638981],[111.61481,23.658744],[111.625618,23.676474],[111.637112,23.678285],[111.63559,23.684542],[111.643202,23.696122],[111.665276,23.699963],[111.662688,23.706438],[111.666798,23.718949],[111.62166,23.725972],[111.618311,23.73475],[111.629348,23.736396],[111.628054,23.788613],[111.639167,23.786529],[111.641147,23.797003],[111.649367,23.811095],[111.64579,23.815317],[111.653706,23.821951],[111.654848,23.833299],[111.651422,23.860926],[111.659034,23.872654],[111.658197,23.885532],[111.6499,23.903012],[111.652031,23.929144],[111.649291,23.945194],[111.638254,23.961351],[111.623335,23.972084],[111.606132,23.973399],[111.591137,23.993549],[111.576979,24.000667],[111.564952,23.998805],[111.56107,23.99344],[111.54501,23.999188],[111.548511,24.006251],[111.538463,24.026725],[111.535343,24.043419],[111.539681,24.056991],[111.58421,24.088673],[111.585048,24.093926],[111.573325,24.107657],[111.578501,24.115917],[111.573097,24.123958],[111.575228,24.143373],[111.552545,24.140147],[111.540899,24.150155],[111.529634,24.150975],[111.525447,24.160162],[111.512736,24.167379],[111.500861,24.163114],[111.493021,24.151959],[111.490737,24.140365],[111.501698,24.13774],[111.501622,24.130412],[111.487845,24.132052],[111.480081,24.113565],[111.486399,24.096552],[111.46813,24.084296],[111.448111,24.090698],[111.424819,24.074885],[111.403735,24.081178],[111.39658,24.075378],[111.404267,24.05535],[111.403126,24.041722],[111.394905,24.031104],[111.390871,24.019171],[111.397569,24.005923],[111.40716,23.997436],[111.412869,23.973782],[111.412564,23.950397],[111.403202,23.923666],[111.365143,23.882518],[111.366437,23.86553],[111.358901,23.864707],[111.348777,23.872325],[111.323582,23.867009],[111.304096,23.869256],[111.28697,23.884053],[111.272279,23.886902],[111.24617,23.883012],[111.233535,23.888437],[111.232926,23.90219],[111.227598,23.919338],[111.207655,23.941633],[111.194867,23.939662],[111.161223,23.944153],[111.151404,23.937854],[111.139225,23.899231],[111.132907,23.888546],[111.105276,23.878025],[111.101546,23.854403],[111.092869,23.836863],[111.081299,23.828311],[111.059605,23.828639],[111.051232,23.813453],[111.037303,23.805448],[111.017817,23.814878],[111.01325,23.811314],[111.015761,23.79141],[111.025733,23.778084],[111.014315,23.759161],[111.005333,23.757241],[110.988968,23.76887],[110.979301,23.763001],[110.978996,23.740785],[110.976104,23.731787],[110.982346,23.721967],[110.965447,23.726301],[110.957379,23.721089],[110.955019,23.707645],[110.960348,23.698701],[110.957074,23.688274],[110.968416,23.671314],[110.968112,23.663026],[110.953801,23.651773],[110.952051,23.667582],[110.943297,23.669668],[110.930509,23.659952],[110.922821,23.663959],[110.922593,23.672522],[110.914068,23.684871],[110.900823,23.687176],[110.89207,23.703914],[110.89755,23.745118],[110.89717,23.752469],[110.884762,23.762836],[110.884077,23.770625],[110.895952,23.785926],[110.888797,23.802925],[110.889938,23.816688],[110.880728,23.820197],[110.858197,23.80797],[110.850357,23.824583],[110.840233,23.837027],[110.843963,23.842289],[110.866799,23.85402],[110.872736,23.873202],[110.856903,23.894409],[110.835971,23.899396],[110.818311,23.908272],[110.792888,23.941031],[110.779796,23.948699],[110.752393,23.947604],[110.734962,23.951164],[110.725752,23.945194],[110.71776,23.955545],[110.726818,23.971482],[110.732222,23.989552],[110.731385,24.002035],[110.741965,24.010959],[110.749577,24.011945],[110.74539,24.022017],[110.728949,24.028367],[110.690053,24.038657],[110.67696,24.059016],[110.684572,24.078223],[110.6899,24.099561],[110.686399,24.12084],[110.701318,24.147694],[110.709387,24.152123],[110.720119,24.167707],[110.712584,24.181157],[110.689368,24.187773],[110.673383,24.211934],[110.652603,24.217345],[110.626646,24.230845],[110.617436,24.254015],[110.605638,24.263467],[110.603735,24.27576],[110.613478,24.298539],[110.607236,24.306404],[110.610205,24.314542],[110.619263,24.319075],[110.601984,24.324536],[110.58638,24.32055],[110.573212,24.327158],[110.570776,24.333001],[110.576865,24.351511],[110.567503,24.362649],[110.555324,24.366088],[110.552127,24.371602],[110.555019,24.38645],[110.551899,24.404952],[110.538959,24.401514],[110.527769,24.38252],[110.516504,24.375751],[110.513992,24.364942],[110.507446,24.360247],[110.50638,24.345778],[110.483773,24.348181],[110.469463,24.357517],[110.467712,24.350365],[110.476161,24.340919],[110.484154,24.321533],[110.482403,24.31274],[110.455229,24.313614],[110.445334,24.317765],[110.44404,24.329451],[110.428588,24.330107],[110.424325,24.338844],[110.410548,24.325356],[110.398749,24.321806],[110.37363,24.323608],[110.352317,24.314215],[110.339377,24.300724],[110.316923,24.296409],[110.326666,24.26609],[110.33717,24.275869],[110.351937,24.278601],[110.369901,24.271936],[110.374924,24.264341],[110.365562,24.26232],[110.365257,24.244124],[110.358331,24.218985],[110.365638,24.227292],[110.375914,24.224505],[110.383221,24.214011],[110.392888,24.220406],[110.405067,24.220078],[110.413364,24.214339],[110.419073,24.201111],[110.43795,24.196738],[110.456218,24.184],[110.443887,24.172246],[110.444344,24.164864],[110.432698,24.16727],[110.428968,24.156498],[110.420291,24.15699],[110.407731,24.143756],[110.423107,24.142225],[110.429805,24.146491],[110.437569,24.139381],[110.448378,24.142991],[110.45462,24.138451],[110.458426,24.124833],[110.447922,24.116354],[110.411918,24.118761],[110.412451,24.107493],[110.407883,24.099834],[110.401185,24.100873],[110.403925,24.108915],[110.386799,24.126309],[110.364725,24.104812],[110.362822,24.095403],[110.376066,24.086211],[110.374315,24.081725],[110.354905,24.077129],[110.343412,24.060384],[110.361908,24.061917],[110.360386,24.05234],[110.373783,24.042105],[110.379644,24.043692],[110.381242,24.054857],[110.397836,24.058031],[110.400043,24.048071],[110.391899,24.04216]]]]}},{"type":"Feature","properties":{"adcode":450500,"name":"北海市","center":[109.119254,21.473343],"centroid":[109.343711,21.665234],"childrenNum":4,"level":"city","parent":{"adcode":450000},"subFeatureIndex":4,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.607655,21.908869],[109.594183,21.913372],[109.587256,21.910648],[109.576752,21.897358],[109.558864,21.893911],[109.540291,21.902085],[109.523697,21.873112],[109.493859,21.880842],[109.487846,21.885847],[109.483659,21.901306],[109.473307,21.900528],[109.468436,21.885847],[109.461509,21.885625],[109.444687,21.896024],[109.442403,21.914762],[109.426647,21.918321],[109.418502,21.906088],[109.398179,21.910036],[109.390872,21.907367],[109.389806,21.889907],[109.373669,21.898081],[109.360653,21.892632],[109.339949,21.908424],[109.32541,21.898971],[109.324268,21.888906],[109.310643,21.883845],[109.306761,21.889128],[109.312546,21.90114],[109.30326,21.905644],[109.299606,21.898693],[109.290548,21.914929],[109.281414,21.90809],[109.267256,21.910982],[109.267789,21.903086],[109.278445,21.890574],[109.259492,21.891297],[109.261319,21.87389],[109.254925,21.865826],[109.231557,21.852198],[109.154069,21.850697],[109.141509,21.844967],[109.133136,21.847693],[109.113878,21.871276],[109.104211,21.874447],[109.09462,21.871666],[109.084573,21.851865],[109.061205,21.837068],[109.035934,21.843187],[109.022156,21.836344],[108.998864,21.837958],[108.980215,21.831171],[108.972223,21.813924],[108.967732,21.821935],[108.975648,21.831505],[108.956162,21.82405],[108.956314,21.810696],[108.965448,21.812699],[108.968189,21.80708],[108.952584,21.787214],[108.944744,21.760444],[108.938655,21.763338],[108.91856,21.751427],[108.910111,21.75215],[108.898617,21.742687],[108.886895,21.740349],[108.879435,21.744357],[108.866799,21.742966],[108.859873,21.737287],[108.854697,21.724539],[108.850739,21.703715],[108.850282,21.686898],[108.85835,21.660555],[108.881414,21.627243],[108.901661,21.604399],[108.915972,21.596264],[108.938122,21.589688],[108.966057,21.587459],[108.991481,21.588184],[109.061433,21.583168],[109.092261,21.579936],[109.106875,21.566059],[109.123545,21.571576],[109.142727,21.564386],[109.152013,21.540752],[109.150263,21.523749],[109.142118,21.512041],[109.124535,21.501224],[109.074373,21.489514],[109.057932,21.480758],[109.042556,21.464473],[109.038065,21.451923],[109.040044,21.433348],[109.046666,21.424478],[109.064706,21.426932],[109.082898,21.424812],[109.094773,21.419401],[109.138845,21.388991],[109.16267,21.385922],[109.18619,21.390944],[109.230719,21.409804],[109.245791,21.425705],[109.279054,21.427323],[109.317113,21.435021],[109.417132,21.438815],[109.448493,21.442664],[109.485182,21.45343],[109.529863,21.436974],[109.544782,21.443612],[109.541052,21.466091],[109.566628,21.477524],[109.576828,21.493585],[109.604535,21.52347],[109.607503,21.544599],[109.612299,21.556918],[109.633612,21.540251],[109.641756,21.525589],[109.654925,21.493473],[109.663831,21.483435],[109.682099,21.472616],[109.704173,21.462633],[109.739948,21.455828],[109.76012,21.455047],[109.785619,21.456944],[109.788359,21.490462],[109.774202,21.507636],[109.772908,21.531276],[109.754791,21.55636],[109.752051,21.577651],[109.754487,21.582611],[109.74383,21.601056],[109.746266,21.622953],[109.753802,21.627856],[109.757075,21.644958],[109.765981,21.657213],[109.766209,21.666904],[109.758141,21.667127],[109.748626,21.652757],[109.744135,21.659664],[109.735229,21.660276],[109.715895,21.669912],[109.706761,21.659441],[109.696485,21.667684],[109.689026,21.686174],[109.696561,21.702267],[109.696257,21.728269],[109.69032,21.729382],[109.696333,21.76306],[109.708131,21.800291],[109.704934,21.809417],[109.694354,21.813311],[109.692375,21.823159],[109.707522,21.836178],[109.707598,21.845801],[109.695343,21.861154],[109.705163,21.872556],[109.70364,21.890519],[109.697018,21.902363],[109.681566,21.895801],[109.663754,21.895357],[109.641452,21.908201],[109.619758,21.895968],[109.607655,21.908869]]],[[[109.088531,21.014746],[109.104059,21.005403],[109.100177,21.019278],[109.107789,21.025879],[109.114031,21.01939],[109.128112,21.014523],[109.133821,21.01939],[109.144554,21.041262],[109.145011,21.057818],[109.138997,21.067325],[109.128874,21.071575],[109.118217,21.070233],[109.092413,21.057426],[109.085791,21.043275],[109.088531,21.014746]]],[[[109.206971,20.90679],[109.218541,20.899288],[109.22227,20.909085],[109.206818,20.916643],[109.206971,20.90679]]]]}},{"type":"Feature","properties":{"adcode":450600,"name":"防城港市","center":[108.345478,21.614631],"centroid":[108.016067,21.869663],"childrenNum":4,"level":"city","parent":{"adcode":450000},"subFeatureIndex":5,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.095877,22.371668],[108.083013,22.368787],[108.07464,22.355041],[108.066267,22.350829],[108.046629,22.354709],[108.030492,22.333146],[108.021586,22.330984],[108.006743,22.335419],[107.994259,22.327935],[107.979569,22.31036],[107.985506,22.296887],[107.961072,22.285963],[107.959245,22.279696],[107.946457,22.269936],[107.952014,22.249968],[107.94425,22.246918],[107.930929,22.254905],[107.921415,22.249136],[107.91837,22.233271],[107.910606,22.228223],[107.911595,22.210192],[107.898275,22.204421],[107.895991,22.215629],[107.883356,22.219235],[107.874145,22.211024],[107.859911,22.209637],[107.837837,22.212189],[107.821167,22.217238],[107.801148,22.209526],[107.776486,22.207418],[107.739416,22.19976],[107.727999,22.18672],[107.706001,22.191603],[107.675782,22.182724],[107.659721,22.180005],[107.632547,22.189439],[107.628284,22.18167],[107.642747,22.141208],[107.648379,22.132048],[107.660939,22.123999],[107.657666,22.098069],[107.66444,22.096126],[107.663222,22.087852],[107.678598,22.081909],[107.66779,22.065748],[107.657133,22.06447],[107.653099,22.053528],[107.646324,22.051473],[107.653479,22.041308],[107.632471,22.036864],[107.636657,22.028253],[107.625468,22.026586],[107.616105,22.004806],[107.60248,21.998638],[107.60248,21.990914],[107.579797,21.975298],[107.585278,21.969462],[107.575154,21.964961],[107.580178,21.959736],[107.572338,21.952121],[107.582614,21.93878],[107.56602,21.929551],[107.558408,21.931664],[107.554374,21.917542],[107.559626,21.91087],[107.550644,21.901974],[107.542956,21.888072],[107.55445,21.879841],[107.568379,21.862767],[107.571576,21.846413],[107.557799,21.815593],[107.558484,21.800458],[107.567542,21.784098],[107.560387,21.776306],[107.553232,21.759164],[107.552851,21.74163],[107.557266,21.724539],[107.541586,21.719138],[107.541129,21.713682],[107.519588,21.694137],[107.515249,21.685116],[107.498427,21.673978],[107.506115,21.664231],[107.481529,21.655542],[107.486705,21.64947],[107.49013,21.627132],[107.501015,21.613537],[107.497894,21.602895],[107.486477,21.595818],[107.508399,21.594425],[107.532528,21.587682],[107.541662,21.590914],[107.547371,21.586735],[107.563889,21.61025],[107.584516,21.614763],[107.603318,21.597713],[107.620368,21.602115],[107.654926,21.60635],[107.665125,21.61259],[107.680044,21.608523],[107.692604,21.609024],[107.716962,21.618552],[107.727009,21.626686],[107.739112,21.630084],[107.7468,21.636992],[107.775192,21.641783],[107.789122,21.652645],[107.800083,21.651086],[107.809902,21.655096],[107.831291,21.650362],[107.837228,21.641115],[107.84857,21.639388],[107.848798,21.645348],[107.861129,21.652033],[107.881909,21.637104],[107.881757,21.628469],[107.891881,21.622897],[107.894469,21.613426],[107.887238,21.609247],[107.895915,21.603341],[107.894317,21.5971],[107.903298,21.589465],[107.920197,21.583447],[107.92895,21.585899],[107.934278,21.574474],[107.945924,21.562714],[107.956124,21.536014],[107.972033,21.534397],[107.983527,21.542035],[108.010929,21.545658],[108.030644,21.545992],[108.048988,21.540139],[108.060025,21.526091],[108.108284,21.508305],[108.133631,21.505016],[108.162632,21.508249],[108.186153,21.515554],[108.196429,21.523415],[108.195287,21.532279],[108.179987,21.542202],[108.156162,21.550842],[108.151215,21.558255],[108.157,21.564386],[108.179607,21.57113],[108.188893,21.577094],[108.194526,21.588518],[108.205334,21.597768],[108.223679,21.603954],[108.235477,21.602783],[108.246667,21.593645],[108.252071,21.577205],[108.250168,21.561377],[108.234488,21.532558],[108.21051,21.50574],[108.208379,21.496261],[108.213631,21.490071],[108.229997,21.491019],[108.269121,21.512877],[108.2813,21.522969],[108.321567,21.537686],[108.338541,21.541198],[108.3715,21.534732],[108.397532,21.533115],[108.453251,21.539972],[108.479283,21.54694],[108.492604,21.5548],[108.497247,21.571465],[108.51993,21.583001],[108.533631,21.600499],[108.537361,21.616546],[108.554792,21.633817],[108.56796,21.654428],[108.591709,21.677208],[108.597037,21.691464],[108.585239,21.708002],[108.553346,21.722256],[108.544592,21.729271],[108.533251,21.72504],[108.527694,21.716076],[108.516733,21.716688],[108.50699,21.725708],[108.506838,21.759052],[108.528075,21.771965],[108.516961,21.779645],[108.513993,21.808137],[108.46718,21.851753],[108.462689,21.861154],[108.469159,21.887738],[108.457285,21.906811],[108.430111,21.917209],[108.415877,21.913873],[108.404764,21.916319],[108.390301,21.928106],[108.359549,21.91821],[108.337551,21.924381],[108.319359,21.916208],[108.290739,21.91037],[108.263032,21.922046],[108.258236,21.928439],[108.262347,21.939447],[108.243774,21.947785],[108.243393,21.962682],[108.23464,21.971074],[108.215687,21.972075],[108.205563,21.979577],[108.195744,21.994415],[108.205334,22.01653],[108.199397,22.028586],[108.220101,22.053362],[108.202899,22.060916],[108.196809,22.06908],[108.202214,22.080799],[108.199093,22.09496],[108.20777,22.09396],[108.216219,22.110562],[108.197494,22.115615],[108.196809,22.13166],[108.185011,22.141375],[108.193079,22.163522],[108.212337,22.170682],[108.210663,22.178618],[108.225734,22.182558],[108.238979,22.19521],[108.253669,22.19571],[108.256105,22.200482],[108.276581,22.210414],[108.279854,22.206974],[108.280691,22.223341],[108.267675,22.230664],[108.260672,22.229665],[108.246667,22.239207],[108.243926,22.257956],[108.23464,22.263003],[108.236238,22.282524],[108.218883,22.291952],[108.213175,22.285907],[108.206705,22.292173],[108.189197,22.273651],[108.173365,22.280972],[108.163698,22.2899],[108.15053,22.288791],[108.143831,22.303707],[108.136828,22.305093],[108.133175,22.328046],[108.13523,22.341461],[108.123888,22.34645],[108.11346,22.356205],[108.104935,22.35554],[108.095877,22.371668]]]]}},{"type":"Feature","properties":{"adcode":450700,"name":"钦州市","center":[108.624175,21.967127],"centroid":[109.020264,22.171739],"childrenNum":4,"level":"city","parent":{"adcode":450000},"subFeatureIndex":6,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.607655,21.908869],[109.607123,21.928439],[109.594792,21.918766],[109.595324,21.933943],[109.6005,21.940447],[109.597075,21.947896],[109.58756,21.950342],[109.576143,21.959569],[109.574316,21.970574],[109.593421,21.961904],[109.601947,21.968462],[109.594487,22.011363],[109.590529,22.023753],[109.579416,22.038641],[109.575914,22.048529],[109.579416,22.059083],[109.576219,22.06547],[109.555743,22.081076],[109.550263,22.098791],[109.550034,22.121278],[109.558559,22.16552],[109.569673,22.184112],[109.589083,22.203367],[109.586951,22.22151],[109.578198,22.231607],[109.578502,22.249247],[109.593269,22.2899],[109.608036,22.302764],[109.626533,22.308531],[109.641909,22.318178],[109.648226,22.317623],[109.674183,22.297164],[109.679815,22.300158],[109.662308,22.318178],[109.674411,22.339854],[109.683317,22.332093],[109.687579,22.346062],[109.696713,22.343679],[109.710034,22.358312],[109.728074,22.357203],[109.727161,22.374218],[109.733555,22.38048],[109.739872,22.369119],[109.748245,22.363466],[109.74246,22.356981],[109.747332,22.349388],[109.756771,22.347115],[109.76522,22.335807],[109.786989,22.329099],[109.805258,22.313243],[109.815077,22.309584],[109.8405,22.317291],[109.84522,22.324387],[109.844763,22.347559],[109.850472,22.363189],[109.858845,22.37117],[109.857398,22.384969],[109.846742,22.396661],[109.84187,22.410236],[109.828778,22.424474],[109.813707,22.432119],[109.810738,22.440816],[109.818883,22.453666],[109.838141,22.471112],[109.849025,22.490549],[109.857322,22.497692],[109.857551,22.506329],[109.868436,22.507215],[109.870947,22.515797],[109.863488,22.517236],[109.864097,22.528917],[109.855115,22.540874],[109.857627,22.556039],[109.844915,22.563345],[109.840044,22.571978],[109.82109,22.575686],[109.793459,22.584595],[109.777322,22.586975],[109.762784,22.584042],[109.762784,22.557146],[109.752812,22.564563],[109.742384,22.555652],[109.726323,22.561408],[109.717874,22.560744],[109.720691,22.578121],[109.707827,22.589354],[109.677303,22.603961],[109.662917,22.625316],[109.659796,22.660107],[109.662232,22.662374],[109.651576,22.668015],[109.646552,22.659443],[109.635058,22.658558],[109.625772,22.652751],[109.613973,22.662872],[109.611233,22.672439],[109.584135,22.681287],[109.569064,22.665637],[109.563507,22.656014],[109.556504,22.659664],[109.554601,22.65264],[109.534278,22.647718],[109.517608,22.635605],[109.491652,22.652143],[109.478559,22.643404],[109.472242,22.633115],[109.464173,22.629465],[109.45032,22.630681],[109.446133,22.625537],[109.448341,22.61486],[109.438902,22.613422],[109.440729,22.630737],[109.427865,22.634166],[109.417208,22.630073],[109.408607,22.633834],[109.401833,22.627639],[109.386913,22.639034],[109.374278,22.636379],[109.367047,22.626699],[109.351671,22.628082],[109.3315,22.609383],[109.324649,22.607834],[109.321528,22.596824],[109.306837,22.5862],[109.302879,22.575409],[109.294354,22.571148],[109.289787,22.559582],[109.292223,22.543254],[109.321376,22.522551],[109.317037,22.511146],[109.298464,22.509928],[109.265581,22.484569],[109.263602,22.494868],[109.250206,22.509928],[109.22874,22.50644],[109.229654,22.520392],[109.221129,22.513859],[109.216029,22.520281],[109.198217,22.516074],[109.182689,22.517458],[109.19738,22.53163],[109.197532,22.538327],[109.18581,22.546077],[109.167237,22.543475],[109.163736,22.553438],[109.153231,22.544693],[109.15384,22.536833],[109.163051,22.537774],[109.173403,22.52006],[109.152013,22.515852],[109.145087,22.511257],[109.134506,22.51635],[109.096295,22.510648],[109.079169,22.522274],[109.045829,22.518399],[109.041262,22.507271],[109.014621,22.510371],[109.008683,22.514247],[109.008683,22.528142],[109.001528,22.527921],[108.995591,22.538826],[108.977932,22.54259],[108.963013,22.518454],[108.945962,22.525429],[108.931424,22.524488],[108.91856,22.512253],[108.909273,22.515907],[108.896409,22.510869],[108.873117,22.512198],[108.872356,22.518509],[108.857818,22.524378],[108.842213,22.541593],[108.827218,22.530024],[108.820748,22.533844],[108.811538,22.524156],[108.782765,22.527146],[108.782689,22.52089],[108.767313,22.507049],[108.749121,22.504668],[108.733974,22.486396],[108.71365,22.488611],[108.710605,22.484569],[108.716162,22.460922],[108.720881,22.450897],[108.699873,22.450177],[108.698503,22.461309],[108.688836,22.462583],[108.682366,22.446355],[108.676276,22.442422],[108.673917,22.431011],[108.66189,22.429847],[108.653136,22.446632],[108.633574,22.460035],[108.628855,22.452281],[108.633193,22.445302],[108.617894,22.438378],[108.615306,22.428684],[108.60366,22.414003],[108.594221,22.415887],[108.583869,22.430734],[108.573289,22.42331],[108.558446,22.419876],[108.558674,22.408629],[108.547332,22.396217],[108.56385,22.385855],[108.568569,22.372112],[108.547789,22.359198],[108.54581,22.346284],[108.540558,22.346339],[108.541776,22.33043],[108.551519,22.326716],[108.543907,22.31474],[108.546343,22.30964],[108.538959,22.302043],[108.528151,22.274927],[108.521148,22.271932],[108.507066,22.275038],[108.505011,22.264223],[108.498236,22.259509],[108.501814,22.25019],[108.496181,22.238264],[108.468246,22.239207],[108.436048,22.249303],[108.423184,22.267218],[108.409863,22.265887],[108.406362,22.258566],[108.399435,22.261006],[108.382918,22.252631],[108.371804,22.242868],[108.354373,22.246363],[108.335648,22.24309],[108.321719,22.237432],[108.308703,22.224617],[108.3017,22.224506],[108.296904,22.212078],[108.279854,22.206974],[108.276581,22.210414],[108.256105,22.200482],[108.253669,22.19571],[108.238979,22.19521],[108.225734,22.182558],[108.210663,22.178618],[108.212337,22.170682],[108.193079,22.163522],[108.185011,22.141375],[108.196809,22.13166],[108.197494,22.115615],[108.216219,22.110562],[108.20777,22.09396],[108.199093,22.09496],[108.202214,22.080799],[108.196809,22.06908],[108.202899,22.060916],[108.220101,22.053362],[108.199397,22.028586],[108.205334,22.01653],[108.195744,21.994415],[108.205563,21.979577],[108.215687,21.972075],[108.23464,21.971074],[108.243393,21.962682],[108.243774,21.947785],[108.262347,21.939447],[108.258236,21.928439],[108.263032,21.922046],[108.290739,21.91037],[108.319359,21.916208],[108.337551,21.924381],[108.359549,21.91821],[108.390301,21.928106],[108.404764,21.916319],[108.415877,21.913873],[108.430111,21.917209],[108.457285,21.906811],[108.469159,21.887738],[108.462689,21.861154],[108.46718,21.851753],[108.513993,21.808137],[108.516961,21.779645],[108.528075,21.771965],[108.506838,21.759052],[108.50699,21.725708],[108.516733,21.716688],[108.527694,21.716076],[108.533251,21.72504],[108.544592,21.729271],[108.553346,21.722256],[108.585239,21.708002],[108.597037,21.691464],[108.591709,21.677208],[108.610434,21.681663],[108.626571,21.679992],[108.638065,21.671304],[108.659226,21.643956],[108.672927,21.638608],[108.678103,21.659162],[108.685867,21.660778],[108.693707,21.652088],[108.704059,21.626686],[108.703679,21.617549],[108.694392,21.607965],[108.674602,21.596375],[108.6762,21.588574],[108.694392,21.592642],[108.704897,21.601669],[108.711443,21.614484],[108.711671,21.623733],[108.705125,21.642451],[108.710073,21.646741],[108.726742,21.638886],[108.735877,21.629249],[108.734659,21.615599],[108.746,21.602449],[108.753764,21.601335],[108.756428,21.60908],[108.774316,21.610361],[108.780253,21.618942],[108.795781,21.62585],[108.816257,21.624847],[108.833308,21.610696],[108.868017,21.62078],[108.881414,21.627243],[108.85835,21.660555],[108.850282,21.686898],[108.850739,21.703715],[108.854697,21.724539],[108.859873,21.737287],[108.866799,21.742966],[108.879435,21.744357],[108.886895,21.740349],[108.898617,21.742687],[108.910111,21.75215],[108.91856,21.751427],[108.938655,21.763338],[108.944744,21.760444],[108.952584,21.787214],[108.968189,21.80708],[108.965448,21.812699],[108.956314,21.810696],[108.956162,21.82405],[108.975648,21.831505],[108.967732,21.821935],[108.972223,21.813924],[108.980215,21.831171],[108.998864,21.837958],[109.022156,21.836344],[109.035934,21.843187],[109.061205,21.837068],[109.084573,21.851865],[109.09462,21.871666],[109.104211,21.874447],[109.113878,21.871276],[109.133136,21.847693],[109.141509,21.844967],[109.154069,21.850697],[109.231557,21.852198],[109.254925,21.865826],[109.261319,21.87389],[109.259492,21.891297],[109.278445,21.890574],[109.267789,21.903086],[109.267256,21.910982],[109.281414,21.90809],[109.290548,21.914929],[109.299606,21.898693],[109.30326,21.905644],[109.312546,21.90114],[109.306761,21.889128],[109.310643,21.883845],[109.324268,21.888906],[109.32541,21.898971],[109.339949,21.908424],[109.360653,21.892632],[109.373669,21.898081],[109.389806,21.889907],[109.390872,21.907367],[109.398179,21.910036],[109.418502,21.906088],[109.426647,21.918321],[109.442403,21.914762],[109.444687,21.896024],[109.461509,21.885625],[109.468436,21.885847],[109.473307,21.900528],[109.483659,21.901306],[109.487846,21.885847],[109.493859,21.880842],[109.523697,21.873112],[109.540291,21.902085],[109.558864,21.893911],[109.576752,21.897358],[109.587256,21.910648],[109.594183,21.913372],[109.607655,21.908869]]],[[[108.842746,21.607185],[108.836276,21.604288],[108.841909,21.588685],[108.859416,21.581886],[108.865049,21.587905],[108.842746,21.607185]]]]}},{"type":"Feature","properties":{"adcode":450800,"name":"贵港市","center":[109.602146,23.0936],"centroid":[110.00316,23.307229],"childrenNum":5,"level":"city","parent":{"adcode":450000},"subFeatureIndex":7,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.662232,22.662374],[109.673193,22.676089],[109.691614,22.689138],[109.713688,22.69417],[109.720615,22.692843],[109.728455,22.70086],[109.720158,22.707494],[109.725943,22.725959],[109.731271,22.73226],[109.745353,22.737235],[109.754791,22.72922],[109.759359,22.733808],[109.78326,22.73928],[109.790567,22.755584],[109.781509,22.768295],[109.770548,22.769676],[109.762556,22.775976],[109.767123,22.790176],[109.762479,22.807193],[109.766133,22.810452],[109.755248,22.838127],[109.763545,22.846301],[109.766894,22.857567],[109.775572,22.852431],[109.78638,22.855579],[109.800386,22.844534],[109.806932,22.848179],[109.806247,22.85696],[109.815686,22.858506],[109.818502,22.885398],[109.841642,22.885784],[109.845524,22.877115],[109.865315,22.871759],[109.852603,22.88744],[109.84933,22.878054],[109.845448,22.887882],[109.832888,22.898979],[109.844535,22.905825],[109.854582,22.900636],[109.861509,22.904003],[109.842936,22.917473],[109.843621,22.932431],[109.83913,22.927795],[109.821471,22.958591],[109.806323,22.961736],[109.803811,22.976303],[109.819568,22.969406],[109.836466,22.9784],[109.851081,22.994455],[109.884268,23.012605],[109.887008,23.023526],[109.898502,23.026063],[109.916542,23.020106],[109.933364,23.024133],[109.952089,23.022699],[109.96579,23.010564],[109.979568,23.007475],[109.986723,22.998041],[110.008416,22.985131],[110.007655,22.979062],[110.016409,22.974814],[110.015191,22.96284],[110.025847,22.956052],[110.041908,22.955611],[110.055838,22.941428],[110.06208,22.942366],[110.073269,22.958425],[110.084458,22.959584],[110.099986,22.924428],[110.109425,22.913388],[110.120462,22.887164],[110.138121,22.900194],[110.164687,22.907426],[110.21051,22.905383],[110.231747,22.888324],[110.232203,22.868833],[110.243316,22.870324],[110.263716,22.867342],[110.269653,22.870986],[110.26501,22.88733],[110.263868,22.916203],[110.259453,22.926581],[110.260291,22.938944],[110.286171,22.959529],[110.300709,22.977407],[110.29972,22.99749],[110.287769,22.998979],[110.292413,23.01288],[110.307027,23.025126],[110.310605,23.011115],[110.324763,23.017459],[110.318521,23.023526],[110.328188,23.047848],[110.33717,23.05044],[110.340824,23.043933],[110.349349,23.048014],[110.363659,23.041947],[110.381471,23.047131],[110.396922,23.060973],[110.410852,23.062296],[110.420747,23.049392],[110.439092,23.05419],[110.466723,23.070732],[110.492527,23.065935],[110.498997,23.070677],[110.498083,23.084681],[110.501813,23.091352],[110.518711,23.099456],[110.521299,23.111583],[110.547408,23.1263],[110.548245,23.145092],[110.553878,23.162946],[110.54383,23.191264],[110.550148,23.208175],[110.572831,23.225029],[110.587217,23.217373],[110.602898,23.214289],[110.624135,23.225635],[110.631214,23.24144],[110.652222,23.256528],[110.659225,23.294129],[110.656561,23.30767],[110.650624,23.315045],[110.62893,23.319998],[110.615305,23.329024],[110.60305,23.323851],[110.59049,23.323135],[110.591708,23.333536],[110.58227,23.344652],[110.588892,23.353125],[110.581889,23.363139],[110.567731,23.359562],[110.564382,23.36754],[110.581965,23.374637],[110.573364,23.390479],[110.587522,23.427713],[110.584629,23.438985],[110.593916,23.452456],[110.606399,23.453776],[110.622156,23.460373],[110.63167,23.469059],[110.630757,23.483241],[110.619644,23.50028],[110.61972,23.515173],[110.614391,23.540889],[110.617893,23.551932],[110.61363,23.558195],[110.601832,23.561381],[110.605257,23.577092],[110.59521,23.589889],[110.579529,23.588846],[110.586761,23.599995],[110.588055,23.620642],[110.576637,23.629043],[110.576713,23.634314],[110.56423,23.641726],[110.548093,23.646173],[110.542232,23.657482],[110.544287,23.666868],[110.558901,23.667966],[110.571004,23.677791],[110.565676,23.681249],[110.57207,23.698207],[110.571537,23.706713],[110.551975,23.702816],[110.548245,23.717358],[110.5554,23.74841],[110.569101,23.759874],[110.582194,23.783403],[110.572527,23.795852],[110.569939,23.809834],[110.558064,23.826227],[110.550072,23.826063],[110.543754,23.813453],[110.533174,23.803254],[110.511023,23.799964],[110.499606,23.804844],[110.484991,23.828585],[110.493059,23.841358],[110.475705,23.853636],[110.45972,23.848264],[110.443811,23.864159],[110.43384,23.865804],[110.411613,23.863173],[110.398902,23.878573],[110.37325,23.877477],[110.374239,23.882464],[110.357189,23.891286],[110.352546,23.912874],[110.359396,23.931883],[110.380177,23.939826],[110.388245,23.946454],[110.396618,23.96502],[110.395933,23.978765],[110.389311,23.997436],[110.398217,24.0172],[110.397608,24.033019],[110.391899,24.04216],[110.376599,24.040299],[110.368683,24.033129],[110.343335,24.034771],[110.315552,24.023769],[110.309159,24.01616],[110.305353,23.975918],[110.295762,23.972139],[110.290433,23.95812],[110.295533,23.955162],[110.302917,23.933581],[110.297208,23.918681],[110.309311,23.919941],[110.314943,23.908819],[110.309539,23.893423],[110.295381,23.882025],[110.299492,23.865475],[110.286323,23.851937],[110.282669,23.864159],[110.27521,23.871503],[110.263031,23.89556],[110.241185,23.89156],[110.219263,23.9086],[110.210814,23.910244],[110.206247,23.902902],[110.203735,23.881368],[110.199701,23.869476],[110.190186,23.861035],[110.180443,23.860871],[110.157836,23.879285],[110.1503,23.880929],[110.132337,23.870024],[110.12031,23.856267],[110.089482,23.828859],[110.068397,23.801335],[110.041832,23.7862],[110.028055,23.780935],[109.997227,23.776767],[109.987408,23.768705],[109.979111,23.747148],[109.971804,23.736615],[109.955058,23.726027],[109.952013,23.699195],[109.947522,23.688164],[109.928493,23.684981],[109.922936,23.665002],[109.927655,23.635193],[109.917608,23.594613],[109.902156,23.577861],[109.893402,23.55402],[109.894087,23.536823],[109.898578,23.51891],[109.897284,23.503797],[109.891043,23.48599],[109.894011,23.475656],[109.868131,23.45526],[109.861966,23.43871],[109.85169,23.449542],[109.849634,23.465816],[109.837912,23.477909],[109.797265,23.485935],[109.785163,23.482527],[109.781813,23.46686],[109.769406,23.457349],[109.751823,23.454875],[109.740557,23.46752],[109.728911,23.447123],[109.724192,23.423754],[109.714601,23.41061],[109.699073,23.41105],[109.702879,23.402415],[109.689558,23.40335],[109.677456,23.421664],[109.661471,23.428978],[109.646476,23.420619],[109.635591,23.40533],[109.630034,23.392349],[109.611842,23.377497],[109.611309,23.368585],[109.596162,23.355656],[109.591442,23.363469],[109.575229,23.354886],[109.578426,23.351199],[109.566247,23.329079],[109.565334,23.317687],[109.556352,23.31499],[109.553916,23.308055],[109.541661,23.299634],[109.539682,23.306404],[109.513574,23.327648],[109.51403,23.332876],[109.501775,23.336508],[109.503222,23.346852],[109.483583,23.36809],[109.482974,23.383878],[109.448112,23.380633],[109.429311,23.359892],[109.423755,23.36798],[109.412032,23.36952],[109.401071,23.382778],[109.380443,23.377827],[109.37169,23.380853],[109.368112,23.390644],[109.373821,23.400985],[109.352736,23.416714],[109.343983,23.409015],[109.323355,23.416384],[109.3111,23.39642],[109.301585,23.39587],[109.296257,23.381788],[109.283545,23.381018],[109.276162,23.374362],[109.278445,23.360608],[109.271899,23.361378],[109.26581,23.346852],[109.250129,23.352245],[109.241909,23.344486],[109.232622,23.345312],[109.210853,23.33227],[109.220443,23.320273],[109.207047,23.309926],[109.220063,23.300735],[109.217018,23.296826],[109.220824,23.290331],[109.240158,23.285156],[109.226609,23.269907],[109.213288,23.272054],[109.232013,23.263135],[109.232546,23.254711],[109.242137,23.248984],[109.231861,23.236374],[109.253403,23.229215],[109.253935,23.213848],[109.260101,23.210764],[109.255382,23.193137],[109.248074,23.189446],[109.24815,23.178263],[109.243203,23.168566],[109.239321,23.144321],[109.245562,23.146139],[109.253098,23.125418],[109.247922,23.117646],[109.255991,23.109654],[109.250206,23.104086],[109.254164,23.095487],[109.27129,23.099787],[109.281033,23.09681],[109.287047,23.101661],[109.297855,23.099566],[109.308969,23.092014],[109.325715,23.095762],[109.338731,23.074537],[109.349463,23.064005],[109.33835,23.048731],[109.345277,23.041451],[109.331652,23.040238],[109.333402,23.035164],[109.311785,23.016907],[109.315515,23.006592],[109.331804,23.003503],[109.342993,22.993959],[109.347256,22.985131],[109.356542,22.979614],[109.355705,22.970124],[109.36149,22.960357],[109.377475,22.947885],[109.376257,22.937233],[109.384554,22.929451],[109.40952,22.926581],[109.409216,22.914326],[109.417437,22.909469],[109.429616,22.912946],[109.482137,22.891526],[109.485182,22.878661],[109.452755,22.866127],[109.459606,22.856905],[109.455267,22.849836],[109.471709,22.844257],[109.480995,22.823545],[109.504744,22.823047],[109.520729,22.828295],[109.535039,22.815203],[109.528797,22.809734],[109.518065,22.814596],[109.517151,22.805425],[109.507256,22.790011],[109.511442,22.782165],[109.50581,22.771887],[109.536257,22.774429],[109.559397,22.772826],[109.560158,22.765698],[109.576371,22.759619],[109.581166,22.748676],[109.578122,22.735134],[109.588398,22.724355],[109.581471,22.71728],[109.588017,22.709651],[109.595553,22.714516],[109.607579,22.703293],[109.618921,22.686871],[109.620139,22.676697],[109.611233,22.672439],[109.613973,22.662872],[109.625772,22.652751],[109.635058,22.658558],[109.646552,22.659443],[109.651576,22.668015],[109.662232,22.662374]]]]}},{"type":"Feature","properties":{"adcode":450900,"name":"玉林市","center":[110.154393,22.63136],"centroid":[110.187226,22.440758],"childrenNum":7,"level":"city","parent":{"adcode":450000},"subFeatureIndex":8,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.662232,22.662374],[109.659796,22.660107],[109.662917,22.625316],[109.677303,22.603961],[109.707827,22.589354],[109.720691,22.578121],[109.717874,22.560744],[109.726323,22.561408],[109.742384,22.555652],[109.752812,22.564563],[109.762784,22.557146],[109.762784,22.584042],[109.777322,22.586975],[109.793459,22.584595],[109.82109,22.575686],[109.840044,22.571978],[109.844915,22.563345],[109.857627,22.556039],[109.855115,22.540874],[109.864097,22.528917],[109.863488,22.517236],[109.870947,22.515797],[109.868436,22.507215],[109.857551,22.506329],[109.857322,22.497692],[109.849025,22.490549],[109.838141,22.471112],[109.818883,22.453666],[109.810738,22.440816],[109.813707,22.432119],[109.828778,22.424474],[109.84187,22.410236],[109.846742,22.396661],[109.857398,22.384969],[109.858845,22.37117],[109.850472,22.363189],[109.844763,22.347559],[109.84522,22.324387],[109.8405,22.317291],[109.815077,22.309584],[109.805258,22.313243],[109.786989,22.329099],[109.76522,22.335807],[109.756771,22.347115],[109.747332,22.349388],[109.74246,22.356981],[109.748245,22.363466],[109.739872,22.369119],[109.733555,22.38048],[109.727161,22.374218],[109.728074,22.357203],[109.710034,22.358312],[109.696713,22.343679],[109.687579,22.346062],[109.683317,22.332093],[109.674411,22.339854],[109.662308,22.318178],[109.679815,22.300158],[109.674183,22.297164],[109.648226,22.317623],[109.641909,22.318178],[109.626533,22.308531],[109.608036,22.302764],[109.593269,22.2899],[109.578502,22.249247],[109.578198,22.231607],[109.586951,22.22151],[109.589083,22.203367],[109.569673,22.184112],[109.558559,22.16552],[109.550034,22.121278],[109.550263,22.098791],[109.555743,22.081076],[109.576219,22.06547],[109.579416,22.059083],[109.575914,22.048529],[109.579416,22.038641],[109.590529,22.023753],[109.594487,22.011363],[109.601947,21.968462],[109.593421,21.961904],[109.574316,21.970574],[109.576143,21.959569],[109.58756,21.950342],[109.597075,21.947896],[109.6005,21.940447],[109.595324,21.933943],[109.594792,21.918766],[109.607123,21.928439],[109.607655,21.908869],[109.619758,21.895968],[109.641452,21.908201],[109.663754,21.895357],[109.681566,21.895801],[109.697018,21.902363],[109.70364,21.890519],[109.705163,21.872556],[109.695343,21.861154],[109.707598,21.845801],[109.707522,21.836178],[109.692375,21.823159],[109.694354,21.813311],[109.704934,21.809417],[109.708131,21.800291],[109.696333,21.76306],[109.69032,21.729382],[109.696257,21.728269],[109.696561,21.702267],[109.689026,21.686174],[109.696485,21.667684],[109.706761,21.659441],[109.715895,21.669912],[109.735229,21.660276],[109.744135,21.659664],[109.748626,21.652757],[109.758141,21.667127],[109.766209,21.666904],[109.777855,21.670525],[109.786076,21.646518],[109.784706,21.638162],[109.79521,21.630474],[109.807237,21.628914],[109.809977,21.644345],[109.820025,21.637828],[109.844611,21.638329],[109.853288,21.649972],[109.864097,21.646852],[109.874068,21.658104],[109.882898,21.648746],[109.89835,21.649637],[109.915781,21.668798],[109.909159,21.675815],[109.914182,21.683501],[109.905505,21.684893],[109.905505,21.693748],[109.9154,21.705608],[109.9256,21.70739],[109.922632,21.727489],[109.9409,21.739125],[109.933821,21.750035],[109.938464,21.765787],[109.93854,21.787158],[109.935572,21.798677],[109.940824,21.806802],[109.936257,21.812811],[109.946761,21.824328],[109.945391,21.830336],[109.953383,21.842241],[109.945467,21.844244],[109.981471,21.871332],[109.986266,21.879118],[110.004991,21.880175],[110.006514,21.875114],[110.021585,21.869552],[110.038102,21.869997],[110.054316,21.856815],[110.082023,21.864491],[110.09207,21.883734],[110.09717,21.886292],[110.101661,21.870164],[110.107979,21.870943],[110.107218,21.882566],[110.114449,21.88746],[110.119853,21.901696],[110.133478,21.899861],[110.139263,21.882288],[110.150833,21.89708],[110.161109,21.894244],[110.18227,21.899638],[110.186152,21.893688],[110.196656,21.89975],[110.212032,21.893077],[110.210129,21.887015],[110.232432,21.87884],[110.258159,21.880453],[110.27285,21.894912],[110.283735,21.892242],[110.290357,21.917987],[110.312051,21.906589],[110.323925,21.892799],[110.337322,21.887849],[110.348664,21.890908],[110.36815,21.889017],[110.39167,21.893688],[110.390224,21.904365],[110.397379,21.906422],[110.385505,21.92994],[110.373098,21.93461],[110.39129,21.95012],[110.376751,21.96774],[110.353002,21.97641],[110.359168,21.98808],[110.356352,22.007362],[110.36404,22.005862],[110.349882,22.031308],[110.353383,22.044196],[110.358102,22.085353],[110.350795,22.096959],[110.365714,22.098735],[110.364572,22.125275],[110.360919,22.132104],[110.350719,22.133214],[110.334354,22.148535],[110.32659,22.15231],[110.326057,22.16441],[110.33481,22.170349],[110.334734,22.180283],[110.342574,22.183834],[110.348511,22.195821],[110.358331,22.186276],[110.358559,22.17945],[110.38109,22.164188],[110.393497,22.17046],[110.391061,22.179284],[110.399282,22.187386],[110.410624,22.190216],[110.409863,22.202646],[110.418236,22.209082],[110.430795,22.206197],[110.453478,22.192158],[110.460253,22.178562],[110.490091,22.155141],[110.483469,22.150201],[110.489406,22.144594],[110.503868,22.142984],[110.523126,22.150756],[110.530433,22.156639],[110.529292,22.16441],[110.560348,22.196431],[110.585314,22.185111],[110.602441,22.183335],[110.598483,22.163411],[110.606019,22.155918],[110.620785,22.157861],[110.629082,22.14909],[110.653136,22.159359],[110.658159,22.167574],[110.665162,22.165076],[110.67049,22.172791],[110.678863,22.17268],[110.675286,22.188496],[110.664705,22.203367],[110.652831,22.207695],[110.646894,22.223008],[110.65481,22.239928],[110.664629,22.245364],[110.686018,22.248582],[110.694468,22.258233],[110.695457,22.27232],[110.710985,22.276258],[110.720957,22.294114],[110.725295,22.295611],[110.73892,22.281914],[110.758711,22.274705],[110.784515,22.280805],[110.789691,22.286684],[110.785581,22.294613],[110.772641,22.295556],[110.77325,22.307422],[110.760462,22.324775],[110.749425,22.329765],[110.75011,22.344787],[110.74128,22.362025],[110.729406,22.366348],[110.723773,22.359864],[110.711518,22.369618],[110.712355,22.395442],[110.706875,22.40536],[110.71403,22.417106],[110.713345,22.437492],[110.706723,22.44641],[110.693554,22.448293],[110.692641,22.457765],[110.683507,22.473383],[110.688302,22.477757],[110.69835,22.47449],[110.705124,22.46646],[110.725904,22.461198],[110.741356,22.4643],[110.74775,22.476096],[110.73991,22.488722],[110.740443,22.498855],[110.75049,22.51707],[110.760766,22.516793],[110.754372,22.536833],[110.756884,22.548401],[110.748055,22.554766],[110.761527,22.559582],[110.764496,22.565946],[110.760233,22.580777],[110.778654,22.58537],[110.793573,22.57137],[110.799206,22.55687],[110.805828,22.558917],[110.807579,22.570705],[110.815419,22.578066],[110.833231,22.584927],[110.853782,22.582271],[110.861242,22.587749],[110.877683,22.582658],[110.887274,22.583544],[110.897931,22.59201],[110.895876,22.613532],[110.883316,22.622163],[110.882327,22.630516],[110.888036,22.641689],[110.853935,22.703569],[110.843354,22.709651],[110.830719,22.706555],[110.816409,22.714903],[110.791442,22.721757],[110.786037,22.728446],[110.790376,22.741767],[110.771956,22.76509],[110.773021,22.772882],[110.795704,22.82592],[110.80187,22.846301],[110.799663,22.855745],[110.786799,22.860881],[110.768835,22.846301],[110.752241,22.852155],[110.728416,22.887164],[110.729939,22.900525],[110.7256,22.906046],[110.733288,22.911787],[110.726057,22.923269],[110.74539,22.951969],[110.765029,22.953183],[110.76678,22.963005],[110.754144,22.969903],[110.749958,22.989987],[110.756808,23.002455],[110.751099,23.009681],[110.758254,23.021044],[110.745314,23.03748],[110.750338,23.045642],[110.739986,23.057113],[110.724839,23.041175],[110.711442,23.042278],[110.710605,23.059318],[110.686932,23.063509],[110.678407,23.073985],[110.682213,23.088541],[110.667979,23.089147],[110.665086,23.101385],[110.66775,23.11004],[110.659758,23.116268],[110.624439,23.121945],[110.612032,23.12178],[110.602898,23.103645],[110.59148,23.098464],[110.578616,23.109323],[110.559206,23.108772],[110.547408,23.1263],[110.521299,23.111583],[110.518711,23.099456],[110.501813,23.091352],[110.498083,23.084681],[110.498997,23.070677],[110.492527,23.065935],[110.466723,23.070732],[110.439092,23.05419],[110.420747,23.049392],[110.410852,23.062296],[110.396922,23.060973],[110.381471,23.047131],[110.363659,23.041947],[110.349349,23.048014],[110.340824,23.043933],[110.33717,23.05044],[110.328188,23.047848],[110.318521,23.023526],[110.324763,23.017459],[110.310605,23.011115],[110.307027,23.025126],[110.292413,23.01288],[110.287769,22.998979],[110.29972,22.99749],[110.300709,22.977407],[110.286171,22.959529],[110.260291,22.938944],[110.259453,22.926581],[110.263868,22.916203],[110.26501,22.88733],[110.269653,22.870986],[110.263716,22.867342],[110.243316,22.870324],[110.232203,22.868833],[110.231747,22.888324],[110.21051,22.905383],[110.164687,22.907426],[110.138121,22.900194],[110.120462,22.887164],[110.109425,22.913388],[110.099986,22.924428],[110.084458,22.959584],[110.073269,22.958425],[110.06208,22.942366],[110.055838,22.941428],[110.041908,22.955611],[110.025847,22.956052],[110.015191,22.96284],[110.016409,22.974814],[110.007655,22.979062],[110.008416,22.985131],[109.986723,22.998041],[109.979568,23.007475],[109.96579,23.010564],[109.952089,23.022699],[109.933364,23.024133],[109.916542,23.020106],[109.898502,23.026063],[109.887008,23.023526],[109.884268,23.012605],[109.851081,22.994455],[109.836466,22.9784],[109.819568,22.969406],[109.803811,22.976303],[109.806323,22.961736],[109.821471,22.958591],[109.83913,22.927795],[109.843621,22.932431],[109.842936,22.917473],[109.861509,22.904003],[109.854582,22.900636],[109.844535,22.905825],[109.832888,22.898979],[109.845448,22.887882],[109.84933,22.878054],[109.852603,22.88744],[109.865315,22.871759],[109.845524,22.877115],[109.841642,22.885784],[109.818502,22.885398],[109.815686,22.858506],[109.806247,22.85696],[109.806932,22.848179],[109.800386,22.844534],[109.78638,22.855579],[109.775572,22.852431],[109.766894,22.857567],[109.763545,22.846301],[109.755248,22.838127],[109.766133,22.810452],[109.762479,22.807193],[109.767123,22.790176],[109.762556,22.775976],[109.770548,22.769676],[109.781509,22.768295],[109.790567,22.755584],[109.78326,22.73928],[109.759359,22.733808],[109.754791,22.72922],[109.745353,22.737235],[109.731271,22.73226],[109.725943,22.725959],[109.720158,22.707494],[109.728455,22.70086],[109.720615,22.692843],[109.713688,22.69417],[109.691614,22.689138],[109.673193,22.676089],[109.662232,22.662374]]]]}},{"type":"Feature","properties":{"adcode":451000,"name":"百色市","center":[106.616285,23.897742],"centroid":[106.289767,23.986179],"childrenNum":12,"level":"city","parent":{"adcode":450000},"subFeatureIndex":9,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.571158,25.083504],[106.551291,25.082799],[106.531881,25.073299],[106.515973,25.051856],[106.463527,25.040291],[106.449978,25.033232],[106.445259,25.022317],[106.435744,25.017755],[106.411615,25.012161],[106.406058,25.005589],[106.388703,25.005372],[106.369902,24.998854],[106.353689,24.990218],[106.332528,24.988479],[106.316391,24.983102],[106.304974,24.974029],[106.278561,24.979299],[106.261434,24.977343],[106.253746,24.971204],[106.242176,24.972073],[106.228171,24.980222],[106.215383,24.981852],[106.196886,24.963109],[106.191634,24.953383],[106.183261,24.951699],[106.175345,24.956752],[106.153042,24.96099],[106.145354,24.954035],[106.149921,24.944417],[106.164308,24.934418],[106.167657,24.92469],[106.182348,24.903764],[106.192167,24.896969],[106.197495,24.88577],[106.196506,24.872069],[106.204041,24.861412],[106.206097,24.85108],[106.201073,24.841835],[106.198485,24.817032],[106.192471,24.804466],[106.186154,24.802072],[106.187828,24.791627],[106.172833,24.760229],[106.164079,24.757563],[106.149921,24.762842],[106.143223,24.756692],[106.138884,24.737098],[106.133556,24.729804],[106.120159,24.726103],[106.113613,24.714072],[106.097248,24.705905],[106.084156,24.705197],[106.065811,24.697248],[106.047086,24.684071],[106.046173,24.673125],[106.039246,24.655588],[106.023185,24.632383],[106.014355,24.634235],[105.989084,24.650849],[105.988247,24.658638],[105.977743,24.668605],[105.961834,24.677591],[105.95308,24.6881],[105.946458,24.703945],[105.941967,24.724796],[105.904898,24.725232],[105.892262,24.722782],[105.882062,24.729804],[105.864099,24.729478],[105.856106,24.716903],[105.827562,24.702965],[105.805488,24.701549],[105.795212,24.704816],[105.766287,24.720332],[105.75898,24.734921],[105.737743,24.742432],[105.725107,24.75544],[105.705697,24.768501],[105.678295,24.775575],[105.650359,24.772202],[105.626078,24.777208],[105.614356,24.785587],[105.607657,24.803704],[105.590607,24.807567],[105.572871,24.797285],[105.544327,24.798536],[105.523395,24.801583],[105.497515,24.809308],[105.493252,24.816652],[105.492795,24.83335],[105.484498,24.846892],[105.470949,24.852657],[105.456639,24.877887],[105.447277,24.914907],[105.443166,24.921864],[105.428171,24.930723],[105.391863,24.941646],[105.365602,24.943494],[105.338961,24.933386],[105.334013,24.926375],[105.308818,24.923929],[105.280046,24.929419],[105.265507,24.930179],[105.257591,24.942081],[105.263985,24.956209],[105.251501,24.967455],[105.234831,24.965554],[105.232167,24.980711],[105.215269,24.981255],[105.212681,24.995378],[105.196011,24.994672],[105.178504,24.985437],[105.157267,24.958871],[105.145469,24.96463],[105.132529,24.96137],[105.125222,24.946211],[105.118067,24.944852],[105.095916,24.928658],[105.096221,24.928114],[105.100255,24.924908],[105.088304,24.914581],[105.081987,24.915614],[105.077952,24.918331],[105.070417,24.895012],[105.038828,24.872994],[105.036925,24.865653],[105.04172,24.854016],[105.037762,24.834057],[105.026801,24.815564],[105.034108,24.795435],[105.033347,24.787818],[105.017058,24.785261],[104.9825,24.77046],[104.89938,24.752937],[104.875707,24.739874],[104.866268,24.730621],[104.860483,24.701495],[104.841911,24.676175],[104.822957,24.670402],[104.81055,24.671709],[104.803167,24.665718],[104.76427,24.657058],[104.75133,24.647145],[104.743338,24.622249],[104.729484,24.618218],[104.708933,24.624156],[104.698961,24.632764],[104.703604,24.645838],[104.697972,24.649433],[104.666078,24.656895],[104.632967,24.659237],[104.62878,24.661198],[104.599779,24.695996],[104.593994,24.710261],[104.574356,24.714072],[104.558523,24.72779],[104.529446,24.731383],[104.520236,24.727137],[104.514223,24.704272],[104.504784,24.691422],[104.497781,24.665664],[104.489789,24.653409],[104.479132,24.652102],[104.465583,24.640391],[104.450893,24.643768],[104.450893,24.638266],[104.461854,24.632546],[104.471749,24.635052],[104.475327,24.64513],[104.486059,24.644966],[104.489104,24.63685],[104.505545,24.626662],[104.502729,24.590755],[104.508666,24.572825],[104.515517,24.564213],[104.520921,24.535103],[104.530131,24.530578],[104.534775,24.534994],[104.542615,24.522999],[104.549922,24.51891],[104.542539,24.508877],[104.547258,24.488917],[104.556468,24.476154],[104.566592,24.473154],[104.566516,24.463117],[104.573595,24.447296],[104.570246,24.443095],[104.576411,24.423561],[104.583642,24.418159],[104.59095,24.422415],[104.616297,24.421761],[104.623376,24.414339],[104.629846,24.397857],[104.620103,24.393109],[104.610969,24.377116],[104.641644,24.367835],[104.660826,24.355661],[104.683737,24.330653],[104.695155,24.322789],[104.709009,24.321314],[104.717229,24.32896],[104.721111,24.33999],[104.719208,24.357135],[104.704365,24.409482],[104.703757,24.421379],[104.717306,24.442768],[104.728647,24.445932],[104.744936,24.43693],[104.752853,24.435948],[104.754375,24.456952],[104.76526,24.459462],[104.784974,24.443804],[104.822881,24.443804],[104.836658,24.446641],[104.873652,24.434965],[104.888951,24.433219],[104.913918,24.42629],[104.929903,24.410846],[104.943528,24.408227],[104.979989,24.412866],[104.997572,24.423834],[105.003281,24.43191],[105.019418,24.438676],[105.042862,24.44184],[105.054584,24.43933],[105.059456,24.429345],[105.07506,24.427545],[105.085031,24.42056],[105.095612,24.41925],[105.109008,24.41232],[105.102919,24.382247],[105.116773,24.371602],[105.138542,24.376733],[105.144632,24.375587],[105.170055,24.356916],[105.187867,24.347089],[105.19624,24.337042],[105.196772,24.326994],[105.180559,24.313341],[105.171654,24.299577],[105.176373,24.287341],[105.166478,24.289035],[105.160236,24.278928],[105.16838,24.277672],[105.181625,24.261773],[105.178504,24.253468],[105.197153,24.252157],[105.204841,24.232594],[105.215269,24.21494],[105.231635,24.219532],[105.232548,24.211934],[105.243052,24.206741],[105.235212,24.178205],[105.229579,24.165739],[105.209332,24.157209],[105.208799,24.166614],[105.182843,24.167051],[105.178504,24.150319],[105.1833,24.149772],[105.181853,24.132873],[105.195022,24.12177],[105.200654,24.105359],[105.228057,24.0855],[105.234908,24.075049],[105.251882,24.069578],[105.260179,24.06126],[105.265431,24.064598],[105.28446,24.06509],[105.293062,24.079208],[105.273119,24.092831],[105.272967,24.101256],[105.283851,24.099013],[105.293518,24.113182],[105.306002,24.112307],[105.320236,24.116354],[105.328913,24.106235],[105.332795,24.094965],[105.339341,24.095731],[105.345964,24.086157],[105.359437,24.084077],[105.364536,24.077676],[105.376639,24.077019],[105.381587,24.068155],[105.396734,24.064598],[105.402976,24.049056],[105.413024,24.038985],[105.42779,24.034224],[105.460978,24.029626],[105.481834,24.019225],[105.493024,24.017255],[105.500103,24.024645],[105.509237,24.024864],[105.510226,24.034278],[105.504746,24.044404],[105.509237,24.061205],[105.518066,24.07587],[105.517762,24.096716],[105.531083,24.114057],[105.527581,24.123082],[105.533823,24.12981],[105.54623,24.123575],[105.568609,24.131451],[105.587638,24.129755],[105.594641,24.137522],[105.613062,24.134349],[105.628437,24.126583],[105.628209,24.103445],[105.634298,24.101639],[105.63818,24.076144],[105.643433,24.063722],[105.641606,24.044678],[105.649446,24.033074],[105.675326,24.03811],[105.690169,24.051136],[105.695193,24.061698],[105.704479,24.066513],[105.739341,24.059509],[105.765374,24.073736],[105.790416,24.069851],[105.804422,24.057265],[105.789427,24.039478],[105.787981,24.031979],[105.796506,24.023659],[105.825126,24.030939],[105.841492,24.03083],[105.850702,24.048071],[105.849864,24.056006],[105.859227,24.056718],[105.892262,24.040299],[105.901625,24.046921],[105.907866,24.069468],[105.904974,24.074393],[105.902158,24.099287],[105.91015,24.114878],[105.919436,24.122207],[105.93329,24.123793],[105.953842,24.112854],[105.963813,24.111048],[105.998294,24.124231],[105.99799,24.120676],[106.011843,24.099506],[106.024251,24.103335],[106.034983,24.095512],[106.049979,24.089822],[106.053784,24.076198],[106.053784,24.051136],[106.069617,24.037179],[106.075554,24.028422],[106.088647,24.030775],[106.096563,24.017912],[106.091843,23.999845],[106.081644,23.993221],[106.096258,23.989607],[106.119703,23.960967],[106.127771,23.95686],[106.136144,23.935553],[106.139113,23.921037],[106.154489,23.908546],[106.155478,23.893916],[106.169179,23.883395],[106.192471,23.878902],[106.197724,23.87112],[106.192015,23.862351],[106.172833,23.861638],[106.191482,23.835547],[106.192319,23.824747],[106.176639,23.816194],[106.155706,23.813837],[106.144517,23.806489],[106.136905,23.795413],[106.144974,23.744296],[106.157305,23.724161],[106.158142,23.709456],[106.152966,23.699798],[106.149541,23.665386],[106.137286,23.632063],[106.120768,23.605377],[106.124879,23.58588],[106.135383,23.579948],[106.141472,23.569676],[106.120616,23.559239],[106.107295,23.533692],[106.086211,23.524186],[106.072205,23.495608],[106.062995,23.488408],[106.036049,23.482692],[106.022348,23.472742],[106.010473,23.455865],[105.999817,23.447948],[105.991824,23.448333],[105.986953,23.457239],[105.997381,23.474116],[105.996772,23.480493],[105.986192,23.489617],[105.959931,23.494179],[105.935802,23.508909],[105.925602,23.508579],[105.912966,23.499291],[105.902158,23.505666],[105.892034,23.524845],[105.880768,23.529186],[105.852376,23.526933],[105.826116,23.515558],[105.813785,23.502149],[105.811577,23.473897],[105.806173,23.467465],[105.77877,23.465926],[105.758675,23.459548],[105.738047,23.430682],[105.715212,23.4149],[105.699836,23.401425],[105.690626,23.400875],[105.671901,23.40863],[105.665126,23.400655],[105.648456,23.404395],[105.630873,23.400545],[105.647467,23.39807],[105.668856,23.387949],[105.675022,23.374637],[105.688647,23.371446],[105.694279,23.363304],[105.682938,23.355491],[105.673119,23.357747],[105.674184,23.348393],[105.682405,23.348888],[105.697248,23.336122],[105.700597,23.328418],[105.685221,23.326822],[105.681035,23.321539],[105.671672,23.326437],[105.674869,23.337388],[105.667029,23.346797],[105.649294,23.345917],[105.648837,23.340029],[105.631787,23.332601],[105.623185,23.324236],[105.614127,23.322089],[105.615726,23.314274],[105.593271,23.312568],[105.569674,23.282404],[105.560312,23.257354],[105.531844,23.248158],[105.526439,23.234556],[105.532072,23.21875],[105.550036,23.197875],[105.542652,23.184213],[105.552852,23.183827],[105.562824,23.170605],[105.566782,23.139692],[105.563585,23.120237],[105.567924,23.109213],[105.559246,23.084957],[105.564803,23.072827],[105.575079,23.066211],[105.602862,23.072056],[105.625545,23.064336],[105.641834,23.078341],[105.649065,23.078562],[105.677229,23.065108],[105.690778,23.061028],[105.714451,23.058105],[105.724422,23.062186],[105.733556,23.051488],[105.736297,23.034612],[105.748171,23.030145],[105.7621,23.031634],[105.779912,23.022368],[105.805868,22.994731],[105.828019,22.991697],[105.839132,22.987614],[105.842633,22.970344],[105.856487,22.957046],[105.857629,22.94347],[105.867524,22.940103],[105.878942,22.916921],[105.896753,22.916479],[105.889674,22.925697],[105.894165,22.936516],[105.91289,22.93773],[105.925374,22.944187],[105.936563,22.935577],[105.958713,22.93911],[105.959322,22.948933],[105.981853,22.945291],[105.995326,22.937675],[106.012224,22.95241],[106.010854,22.969958],[106.004688,22.979007],[106.019912,22.990483],[106.056905,22.984745],[106.069617,22.987283],[106.085982,22.996441],[106.106534,22.980938],[106.116049,22.985297],[106.138275,22.988111],[106.158903,22.987669],[106.176334,22.980662],[106.206858,22.9784],[106.240197,22.942311],[106.270036,22.90726],[106.268437,22.898814],[106.258085,22.890035],[106.270645,22.874962],[106.287162,22.866955],[106.305583,22.866734],[106.319056,22.860439],[106.336563,22.865519],[106.353994,22.855524],[106.366325,22.858064],[106.371196,22.878275],[106.374393,22.880097],[106.41367,22.877336],[106.42288,22.888655],[106.446629,22.886281],[106.458199,22.900525],[106.468856,22.896771],[106.479588,22.902568],[106.489864,22.901353],[106.504555,22.910462],[106.50623,22.926967],[106.511253,22.938558],[106.526172,22.946615],[106.562329,22.923434],[106.575116,22.921944],[106.596962,22.929892],[106.605792,22.925587],[106.621624,22.895336],[106.633956,22.887993],[106.631139,22.880925],[106.656867,22.863255],[106.670188,22.875072],[106.67072,22.889097],[106.667295,22.907426],[106.681453,22.921502],[106.711976,22.941593],[106.727352,22.965764],[106.747904,22.974538],[106.765259,23.00422],[106.786115,23.014315],[106.797761,23.023747],[106.795935,23.048565],[106.80956,23.066211],[106.802785,23.081153],[106.79464,23.084847],[106.776296,23.07404],[106.768532,23.075639],[106.761834,23.087107],[106.771957,23.099952],[106.772414,23.108221],[106.765487,23.118583],[106.770663,23.131425],[106.783756,23.14658],[106.785506,23.153028],[106.776753,23.175067],[106.779493,23.180577],[106.805525,23.19187],[106.838561,23.19826],[106.857666,23.20834],[106.899683,23.223487],[106.91681,23.242817],[106.918561,23.259556],[106.923051,23.268971],[106.944669,23.291762],[106.962937,23.298918],[106.994298,23.299854],[107.005868,23.310202],[107.026039,23.303211],[107.042024,23.304973],[107.034336,23.291652],[107.044231,23.286092],[107.041187,23.273375],[107.057704,23.276954],[107.116391,23.283615],[107.148741,23.302386],[107.158941,23.311578],[107.18033,23.325061],[107.198751,23.333481],[107.210701,23.318292],[107.22288,23.315045],[107.247771,23.32308],[107.274412,23.343716],[107.303413,23.351474],[107.314374,23.34047],[107.343299,23.333371],[107.350758,23.320493],[107.35289,23.295175],[107.366667,23.281853],[107.367124,23.270347],[107.382728,23.268475],[107.378008,23.250581],[107.385696,23.244359],[107.398256,23.238466],[107.413556,23.25394],[107.42954,23.260217],[107.438979,23.25003],[107.462043,23.246561],[107.469883,23.250526],[107.477571,23.242872],[107.463261,23.228113],[107.471253,23.223322],[107.485106,23.230151],[107.490511,23.225855],[107.498503,23.230977],[107.499949,23.224038],[107.51974,23.219356],[107.53032,23.204099],[107.561681,23.204485],[107.569445,23.22178],[107.584821,23.230426],[107.585506,23.247442],[107.57622,23.258675],[107.581167,23.265062],[107.579188,23.276954],[107.584897,23.291047],[107.611919,23.292368],[107.649673,23.282074],[107.656067,23.274642],[107.671748,23.282239],[107.702423,23.280037],[107.716124,23.298092],[107.743679,23.30767],[107.750834,23.314054],[107.748018,23.333866],[107.764383,23.344872],[107.782347,23.349659],[107.800768,23.343496],[107.818503,23.34091],[107.81797,23.333371],[107.829236,23.333591],[107.836924,23.342065],[107.821396,23.343276],[107.832128,23.351584],[107.827333,23.367595],[107.832433,23.374912],[107.848113,23.379423],[107.85915,23.395485],[107.866914,23.401315],[107.864098,23.41468],[107.88366,23.438875],[107.87072,23.446133],[107.853365,23.433102],[107.843698,23.436181],[107.835325,23.427658],[107.827104,23.433542],[107.821015,23.430187],[107.805791,23.435136],[107.794298,23.430627],[107.775725,23.440195],[107.769026,23.449817],[107.749236,23.442669],[107.736828,23.450917],[107.741548,23.461363],[107.733099,23.478294],[107.735839,23.491101],[107.72975,23.496433],[107.738122,23.521053],[107.734849,23.533252],[107.7213,23.543087],[107.716277,23.554075],[107.706229,23.588791],[107.705316,23.601862],[107.710644,23.628],[107.731424,23.642385],[107.757609,23.656],[107.764231,23.667033],[107.780216,23.669283],[107.797114,23.66341],[107.808379,23.663136],[107.82307,23.670381],[107.83053,23.710499],[107.828551,23.723832],[107.815458,23.739962],[107.812033,23.754224],[107.803356,23.764098],[107.792623,23.768102],[107.779911,23.766785],[107.765677,23.759051],[107.753422,23.757296],[107.738046,23.778797],[107.738808,23.787352],[107.746343,23.797442],[107.724345,23.799142],[107.714374,23.795687],[107.680349,23.803145],[107.65523,23.785981],[107.636429,23.777974],[107.606438,23.7845],[107.582766,23.795577],[107.57013,23.80479],[107.567618,23.814001],[107.569673,23.833244],[107.558484,23.837904],[107.535573,23.841248],[107.529559,23.851334],[107.531386,23.862351],[107.544859,23.871449],[107.542652,23.883834],[107.518979,23.891779],[107.503755,23.885916],[107.495611,23.877203],[107.479321,23.871065],[107.466534,23.858843],[107.455344,23.841686],[107.440806,23.833683],[107.432128,23.835328],[107.421396,23.854403],[107.406172,23.874846],[107.39346,23.873038],[107.385849,23.879998],[107.388665,23.900985],[107.383261,23.903888],[107.37405,23.921091],[107.363318,23.920872],[107.359283,23.908491],[107.330891,23.913476],[107.325715,23.921365],[107.305316,23.923776],[107.294355,23.955436],[107.279816,23.977232],[107.277076,23.985938],[107.280882,23.998696],[107.275021,24.003842],[107.26817,24.000283],[107.250283,23.975151],[107.237266,23.966718],[107.200273,23.972961],[107.177818,23.982653],[107.149122,23.991249],[107.144935,24.006853],[107.135801,24.02136],[107.123622,24.050041],[107.111976,24.052723],[107.107029,24.048563],[107.078028,24.052285],[107.060444,24.06022],[107.039131,24.031815],[107.017666,24.024371],[107.00328,24.042653],[106.997343,24.043473],[106.987371,24.061096],[106.975877,24.062956],[106.965982,24.074831],[106.956543,24.073189],[106.953346,24.081342],[106.943908,24.085445],[106.94307,24.093269],[106.964384,24.101038],[106.958751,24.109407],[106.946876,24.112854],[106.942309,24.104101],[106.935002,24.104593],[106.91407,24.098083],[106.90425,24.109079],[106.890625,24.115425],[106.893974,24.122535],[106.866953,24.164153],[106.859797,24.181431],[106.86132,24.192146],[106.885069,24.206632],[106.902424,24.211989],[106.918865,24.227456],[106.924117,24.254889],[106.901206,24.276361],[106.897856,24.293132],[106.885221,24.316126],[106.890854,24.329342],[106.899988,24.340973],[106.883394,24.359865],[106.883394,24.364669],[106.90387,24.378753],[106.891919,24.397584],[106.885678,24.399713],[106.863299,24.395074],[106.851348,24.402496],[106.84701,24.421106],[106.835364,24.437475],[106.809103,24.453952],[106.808418,24.462189],[106.815345,24.475445],[106.811463,24.496334],[106.797761,24.514275],[106.782462,24.512366],[106.771957,24.523054],[106.767086,24.5411],[106.77523,24.555001],[106.77622,24.587322],[106.773632,24.602471],[106.755135,24.619743],[106.725297,24.617727],[106.729179,24.609609],[106.701624,24.600945],[106.68602,24.599638],[106.691501,24.619144],[106.700787,24.62067],[106.718751,24.646165],[106.728646,24.642842],[106.738922,24.648507],[106.767695,24.655207],[106.797685,24.658202],[106.81131,24.665664],[106.81466,24.675684],[106.784136,24.697248],[106.775687,24.713799],[106.764193,24.726048],[106.739836,24.73122],[106.686249,24.759195],[106.672471,24.771168],[106.662728,24.785587],[106.67034,24.801692],[106.683356,24.80958],[106.719208,24.81725],[106.730549,24.814258],[106.760159,24.794565],[106.782538,24.788253],[106.791444,24.796686],[106.790758,24.809525],[106.800806,24.823342],[106.793423,24.828999],[106.80583,24.836831],[106.811843,24.845043],[106.818694,24.842868],[106.824022,24.852874],[106.836962,24.859617],[106.839246,24.852548],[106.851196,24.849231],[106.850892,24.860379],[106.84366,24.86897],[106.840159,24.880823],[106.827676,24.897241],[106.809407,24.904253],[106.80309,24.909798],[106.802481,24.920125],[106.78033,24.930342],[106.770359,24.940505],[106.759855,24.956861],[106.733366,24.988642],[106.726363,25.006078],[106.726515,25.022588],[106.73367,25.029919],[106.748285,25.027096],[106.763813,25.031331],[106.759246,25.04648],[106.742728,25.062822],[106.739759,25.072919],[106.755516,25.084264],[106.743718,25.098267],[106.721187,25.099298],[106.701472,25.092188],[106.700787,25.082907],[106.684802,25.076068],[106.683737,25.070694],[106.6676,25.058262],[106.654888,25.064668],[106.640806,25.061194],[106.620939,25.063582],[106.620483,25.053159],[106.603584,25.048164],[106.578389,25.070639],[106.571158,25.083504]]],[[[105.096221,24.928114],[105.095916,24.928658],[105.077952,24.918331],[105.081987,24.915614],[105.096221,24.928114]]]]}},{"type":"Feature","properties":{"adcode":451100,"name":"贺州市","center":[111.552056,24.414141],"centroid":[111.366008,24.358064],"childrenNum":5,"level":"city","parent":{"adcode":450000},"subFeatureIndex":10,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.654848,23.833299],[111.664439,23.834889],[111.690547,23.816194],[111.696028,23.823541],[111.698387,23.837466],[111.7146,23.837246],[111.7197,23.825843],[111.737816,23.819265],[111.745961,23.820745],[111.752355,23.81274],[111.765828,23.814988],[111.774962,23.808189],[111.791632,23.809176],[111.796199,23.815701],[111.810585,23.806983],[111.815304,23.829078],[111.824743,23.832367],[111.8201,23.85539],[111.82383,23.871777],[111.816903,23.875066],[111.81264,23.887505],[111.822612,23.903615],[111.822916,23.91123],[111.838901,23.91134],[111.845904,23.904382],[111.857626,23.918298],[111.851308,23.934184],[111.854429,23.947439],[111.866075,23.946344],[111.878939,23.936211],[111.886703,23.944317],[111.897512,23.946618],[111.911974,23.943934],[111.910147,23.952204],[111.917607,23.952259],[111.940366,23.987745],[111.921489,24.011999],[111.921032,24.037398],[111.905809,24.046812],[111.896979,24.069578],[111.887921,24.079153],[111.888758,24.092065],[111.883506,24.095622],[111.878635,24.110064],[111.878787,24.126856],[111.887845,24.154748],[111.886779,24.16388],[111.871175,24.176565],[111.877873,24.228932],[111.893478,24.224177],[111.915932,24.222647],[111.920804,24.233523],[111.932526,24.235709],[111.939301,24.230517],[111.940747,24.245163],[111.952621,24.251556],[111.956046,24.260353],[111.968987,24.263686],[111.974086,24.256419],[111.986189,24.256965],[111.990452,24.265489],[111.990376,24.279803],[112.000804,24.280513],[112.015951,24.294006],[112.026151,24.295098],[112.03323,24.313395],[112.045181,24.320768],[112.050585,24.332564],[112.059643,24.341082],[112.06185,24.368163],[112.05774,24.38705],[112.043582,24.392727],[112.042136,24.410301],[112.023183,24.441513],[111.999738,24.45046],[111.996541,24.459298],[111.98657,24.464481],[111.987559,24.482263],[111.996389,24.494916],[112.00971,24.502878],[112.005219,24.512094],[112.00735,24.534558],[111.997835,24.551185],[111.989843,24.550749],[111.972031,24.574951],[111.972031,24.578602],[111.95422,24.586722],[111.952012,24.594897],[111.937169,24.595823],[111.938463,24.6095],[111.927426,24.629386],[111.934277,24.641916],[111.953535,24.6472],[111.94029,24.667189],[111.944096,24.674486],[111.939605,24.68663],[111.952773,24.696322],[111.961299,24.721203],[111.972716,24.727409],[111.981242,24.726756],[111.999129,24.733125],[112.00971,24.730185],[112.024096,24.740146],[111.997683,24.758923],[111.970128,24.763712],[111.963582,24.770079],[111.950947,24.76959],[111.938235,24.757019],[111.92461,24.757019],[111.903677,24.763495],[111.875209,24.756638],[111.869957,24.758488],[111.868739,24.771821],[111.856408,24.772038],[111.835247,24.776936],[111.814087,24.770351],[111.79422,24.774269],[111.783411,24.78575],[111.76187,24.782105],[111.733249,24.780255],[111.708435,24.788852],[111.70402,24.778187],[111.689558,24.778568],[111.666418,24.760828],[111.642364,24.730022],[111.637797,24.715542],[111.643354,24.701332],[111.641679,24.68467],[111.636656,24.681402],[111.619301,24.683744],[111.597683,24.693872],[111.589158,24.69066],[111.583145,24.681675],[111.570661,24.644694],[111.560081,24.63892],[111.549881,24.648561],[111.529862,24.636577],[111.521565,24.642188],[111.514334,24.655098],[111.504134,24.664901],[111.485333,24.672962],[111.471556,24.674704],[111.468054,24.666699],[111.451841,24.665773],[111.446741,24.682546],[111.435476,24.681021],[111.431137,24.685813],[111.437303,24.697411],[111.464172,24.733887],[111.46128,24.750107],[111.467217,24.758053],[111.470414,24.773453],[111.479472,24.797557],[111.471099,24.820622],[111.452983,24.844173],[111.449405,24.857062],[111.460443,24.872232],[111.459453,24.882345],[111.447122,24.893109],[111.453135,24.904579],[111.463944,24.908982],[111.470186,24.928929],[111.459681,24.931918],[111.440195,24.94458],[111.431365,24.95974],[111.431061,24.972562],[111.438368,24.984297],[111.460519,24.992771],[111.467369,25.002439],[111.468359,25.019438],[111.465314,25.023783],[111.439358,25.027476],[111.423449,25.035512],[111.416599,25.047675],[111.418806,25.065591],[111.435476,25.093383],[111.429082,25.103477],[111.412717,25.100709],[111.402821,25.107602],[111.399776,25.124586],[111.387065,25.130284],[111.375114,25.128493],[111.367883,25.10885],[111.354715,25.100981],[111.321756,25.104942],[111.310947,25.116176],[111.296713,25.122036],[111.289101,25.142491],[111.274791,25.151171],[111.263221,25.143847],[111.263754,25.133593],[111.24952,25.128656],[111.222041,25.106408],[111.219301,25.093545],[111.206665,25.08497],[111.200804,25.074656],[111.16716,25.060596],[111.139986,25.042408],[111.123012,25.042571],[111.101851,25.035187],[111.10794,25.009717],[111.102079,24.982287],[111.096979,24.974898],[111.100405,24.945722],[111.097436,24.940885],[111.09774,24.931973],[111.105961,24.908113],[111.117151,24.895501],[111.127503,24.890065],[111.138311,24.891479],[111.151936,24.900448],[111.164496,24.898437],[111.169139,24.883976],[111.169444,24.862608],[111.161527,24.83732],[111.16305,24.81502],[111.169215,24.801964],[111.170053,24.776718],[111.16579,24.771875],[111.147369,24.767903],[111.13245,24.735737],[111.118825,24.72877],[111.108016,24.732199],[111.100709,24.719516],[111.10657,24.707593],[111.090509,24.701332],[111.079396,24.703782],[111.072545,24.695941],[111.06912,24.682818],[111.058768,24.672907],[111.029691,24.675902],[111.020633,24.669639],[111.012641,24.649596],[111.009748,24.634616],[110.994829,24.631075],[110.989272,24.62116],[111.002517,24.606776],[111.001071,24.600346],[110.983411,24.58596],[110.982726,24.569664],[110.991175,24.556855],[111.011423,24.54279],[111.020176,24.519237],[111.044001,24.498952],[111.042022,24.489298],[111.025885,24.483244],[111.040652,24.46268],[111.026113,24.446696],[111.018882,24.419578],[110.995819,24.395074],[110.992469,24.37657],[110.981432,24.371002],[110.968264,24.376024],[110.962327,24.370674],[110.975038,24.36112],[110.992545,24.354896],[111.017817,24.353313],[111.024363,24.347853],[111.02619,24.332073],[111.014391,24.331963],[111.004115,24.310009],[110.993611,24.309081],[110.977322,24.294825],[110.960424,24.298048],[110.958445,24.31842],[110.950224,24.333547],[110.943221,24.336004],[110.934011,24.324373],[110.93226,24.309627],[110.918026,24.30919],[110.92343,24.299795],[110.911404,24.297611],[110.910034,24.287013],[110.888873,24.261828],[110.88324,24.259151],[110.879967,24.271007],[110.880043,24.289636],[110.875248,24.29701],[110.87677,24.310665],[110.855,24.32896],[110.856751,24.361885],[110.843735,24.386341],[110.832926,24.38836],[110.811156,24.38252],[110.796998,24.365215],[110.790833,24.346816],[110.797988,24.332619],[110.79129,24.31629],[110.771194,24.319403],[110.754068,24.329178],[110.727122,24.328032],[110.713193,24.337806],[110.682669,24.34627],[110.670262,24.355333],[110.656409,24.360684],[110.647731,24.368436],[110.640348,24.382793],[110.621547,24.394146],[110.598178,24.396438],[110.587902,24.390434],[110.581052,24.372476],[110.567503,24.362649],[110.576865,24.351511],[110.570776,24.333001],[110.573212,24.327158],[110.58638,24.32055],[110.601984,24.324536],[110.619263,24.319075],[110.610205,24.314542],[110.607236,24.306404],[110.613478,24.298539],[110.603735,24.27576],[110.605638,24.263467],[110.617436,24.254015],[110.626646,24.230845],[110.652603,24.217345],[110.673383,24.211934],[110.689368,24.187773],[110.712584,24.181157],[110.720119,24.167707],[110.709387,24.152123],[110.701318,24.147694],[110.686399,24.12084],[110.6899,24.099561],[110.684572,24.078223],[110.67696,24.059016],[110.690053,24.038657],[110.728949,24.028367],[110.74539,24.022017],[110.749577,24.011945],[110.741965,24.010959],[110.731385,24.002035],[110.732222,23.989552],[110.726818,23.971482],[110.71776,23.955545],[110.725752,23.945194],[110.734962,23.951164],[110.752393,23.947604],[110.779796,23.948699],[110.792888,23.941031],[110.818311,23.908272],[110.835971,23.899396],[110.856903,23.894409],[110.872736,23.873202],[110.866799,23.85402],[110.843963,23.842289],[110.840233,23.837027],[110.850357,23.824583],[110.858197,23.80797],[110.880728,23.820197],[110.889938,23.816688],[110.888797,23.802925],[110.895952,23.785926],[110.884077,23.770625],[110.884762,23.762836],[110.89717,23.752469],[110.89755,23.745118],[110.89207,23.703914],[110.900823,23.687176],[110.914068,23.684871],[110.922593,23.672522],[110.922821,23.663959],[110.930509,23.659952],[110.943297,23.669668],[110.952051,23.667582],[110.953801,23.651773],[110.968112,23.663026],[110.968416,23.671314],[110.957074,23.688274],[110.960348,23.698701],[110.955019,23.707645],[110.957379,23.721089],[110.965447,23.726301],[110.982346,23.721967],[110.976104,23.731787],[110.978996,23.740785],[110.979301,23.763001],[110.988968,23.76887],[111.005333,23.757241],[111.014315,23.759161],[111.025733,23.778084],[111.015761,23.79141],[111.01325,23.811314],[111.017817,23.814878],[111.037303,23.805448],[111.051232,23.813453],[111.059605,23.828639],[111.081299,23.828311],[111.092869,23.836863],[111.101546,23.854403],[111.105276,23.878025],[111.132907,23.888546],[111.139225,23.899231],[111.151404,23.937854],[111.161223,23.944153],[111.194867,23.939662],[111.207655,23.941633],[111.227598,23.919338],[111.232926,23.90219],[111.233535,23.888437],[111.24617,23.883012],[111.272279,23.886902],[111.28697,23.884053],[111.304096,23.869256],[111.323582,23.867009],[111.348777,23.872325],[111.358901,23.864707],[111.366437,23.86553],[111.365143,23.882518],[111.403202,23.923666],[111.412564,23.950397],[111.412869,23.973782],[111.40716,23.997436],[111.397569,24.005923],[111.390871,24.019171],[111.394905,24.031104],[111.403126,24.041722],[111.404267,24.05535],[111.39658,24.075378],[111.403735,24.081178],[111.424819,24.074885],[111.448111,24.090698],[111.46813,24.084296],[111.486399,24.096552],[111.480081,24.113565],[111.487845,24.132052],[111.501622,24.130412],[111.501698,24.13774],[111.490737,24.140365],[111.493021,24.151959],[111.500861,24.163114],[111.512736,24.167379],[111.525447,24.160162],[111.529634,24.150975],[111.540899,24.150155],[111.552545,24.140147],[111.575228,24.143373],[111.573097,24.123958],[111.578501,24.115917],[111.573325,24.107657],[111.585048,24.093926],[111.58421,24.088673],[111.539681,24.056991],[111.535343,24.043419],[111.538463,24.026725],[111.548511,24.006251],[111.54501,23.999188],[111.56107,23.99344],[111.564952,23.998805],[111.576979,24.000667],[111.591137,23.993549],[111.606132,23.973399],[111.623335,23.972084],[111.638254,23.961351],[111.649291,23.945194],[111.652031,23.929144],[111.6499,23.903012],[111.658197,23.885532],[111.659034,23.872654],[111.651422,23.860926],[111.654848,23.833299]]]]}},{"type":"Feature","properties":{"adcode":451200,"name":"河池市","center":[108.062105,24.695899],"centroid":[107.845852,24.642393],"childrenNum":11,"level":"city","parent":{"adcode":450000},"subFeatureIndex":11,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.571158,25.083504],[106.578389,25.070639],[106.603584,25.048164],[106.620483,25.053159],[106.620939,25.063582],[106.640806,25.061194],[106.654888,25.064668],[106.6676,25.058262],[106.683737,25.070694],[106.684802,25.076068],[106.700787,25.082907],[106.701472,25.092188],[106.721187,25.099298],[106.743718,25.098267],[106.755516,25.084264],[106.739759,25.072919],[106.742728,25.062822],[106.759246,25.04648],[106.763813,25.031331],[106.748285,25.027096],[106.73367,25.029919],[106.726515,25.022588],[106.726363,25.006078],[106.733366,24.988642],[106.759855,24.956861],[106.770359,24.940505],[106.78033,24.930342],[106.802481,24.920125],[106.80309,24.909798],[106.809407,24.904253],[106.827676,24.897241],[106.840159,24.880823],[106.84366,24.86897],[106.850892,24.860379],[106.851196,24.849231],[106.839246,24.852548],[106.836962,24.859617],[106.824022,24.852874],[106.818694,24.842868],[106.811843,24.845043],[106.80583,24.836831],[106.793423,24.828999],[106.800806,24.823342],[106.790758,24.809525],[106.791444,24.796686],[106.782538,24.788253],[106.760159,24.794565],[106.730549,24.814258],[106.719208,24.81725],[106.683356,24.80958],[106.67034,24.801692],[106.662728,24.785587],[106.672471,24.771168],[106.686249,24.759195],[106.739836,24.73122],[106.764193,24.726048],[106.775687,24.713799],[106.784136,24.697248],[106.81466,24.675684],[106.81131,24.665664],[106.797685,24.658202],[106.767695,24.655207],[106.738922,24.648507],[106.728646,24.642842],[106.718751,24.646165],[106.700787,24.62067],[106.691501,24.619144],[106.68602,24.599638],[106.701624,24.600945],[106.729179,24.609609],[106.725297,24.617727],[106.755135,24.619743],[106.773632,24.602471],[106.77622,24.587322],[106.77523,24.555001],[106.767086,24.5411],[106.771957,24.523054],[106.782462,24.512366],[106.797761,24.514275],[106.811463,24.496334],[106.815345,24.475445],[106.808418,24.462189],[106.809103,24.453952],[106.835364,24.437475],[106.84701,24.421106],[106.851348,24.402496],[106.863299,24.395074],[106.885678,24.399713],[106.891919,24.397584],[106.90387,24.378753],[106.883394,24.364669],[106.883394,24.359865],[106.899988,24.340973],[106.890854,24.329342],[106.885221,24.316126],[106.897856,24.293132],[106.901206,24.276361],[106.924117,24.254889],[106.918865,24.227456],[106.902424,24.211989],[106.885069,24.206632],[106.86132,24.192146],[106.859797,24.181431],[106.866953,24.164153],[106.893974,24.122535],[106.890625,24.115425],[106.90425,24.109079],[106.91407,24.098083],[106.935002,24.104593],[106.942309,24.104101],[106.946876,24.112854],[106.958751,24.109407],[106.964384,24.101038],[106.94307,24.093269],[106.943908,24.085445],[106.953346,24.081342],[106.956543,24.073189],[106.965982,24.074831],[106.975877,24.062956],[106.987371,24.061096],[106.997343,24.043473],[107.00328,24.042653],[107.017666,24.024371],[107.039131,24.031815],[107.060444,24.06022],[107.078028,24.052285],[107.107029,24.048563],[107.111976,24.052723],[107.123622,24.050041],[107.135801,24.02136],[107.144935,24.006853],[107.149122,23.991249],[107.177818,23.982653],[107.200273,23.972961],[107.237266,23.966718],[107.250283,23.975151],[107.26817,24.000283],[107.275021,24.003842],[107.280882,23.998696],[107.277076,23.985938],[107.279816,23.977232],[107.294355,23.955436],[107.305316,23.923776],[107.325715,23.921365],[107.330891,23.913476],[107.359283,23.908491],[107.363318,23.920872],[107.37405,23.921091],[107.383261,23.903888],[107.388665,23.900985],[107.385849,23.879998],[107.39346,23.873038],[107.406172,23.874846],[107.421396,23.854403],[107.432128,23.835328],[107.440806,23.833683],[107.455344,23.841686],[107.466534,23.858843],[107.479321,23.871065],[107.495611,23.877203],[107.503755,23.885916],[107.518979,23.891779],[107.542652,23.883834],[107.544859,23.871449],[107.531386,23.862351],[107.529559,23.851334],[107.535573,23.841248],[107.558484,23.837904],[107.569673,23.833244],[107.567618,23.814001],[107.57013,23.80479],[107.582766,23.795577],[107.606438,23.7845],[107.636429,23.777974],[107.65523,23.785981],[107.680349,23.803145],[107.714374,23.795687],[107.724345,23.799142],[107.746343,23.797442],[107.738808,23.787352],[107.738046,23.778797],[107.753422,23.757296],[107.765677,23.759051],[107.779911,23.766785],[107.792623,23.768102],[107.803356,23.764098],[107.812033,23.754224],[107.815458,23.739962],[107.828551,23.723832],[107.83053,23.710499],[107.82307,23.670381],[107.808379,23.663136],[107.797114,23.66341],[107.780216,23.669283],[107.764231,23.667033],[107.757609,23.656],[107.731424,23.642385],[107.710644,23.628],[107.705316,23.601862],[107.706229,23.588791],[107.716277,23.554075],[107.72229,23.553965],[107.737894,23.566655],[107.742918,23.563139],[107.754488,23.571983],[107.767808,23.572423],[107.778846,23.56704],[107.793993,23.56671],[107.793917,23.580772],[107.799093,23.589066],[107.810967,23.595601],[107.818046,23.606804],[107.824669,23.599995],[107.839968,23.610209],[107.84621,23.606695],[107.846591,23.597414],[107.860063,23.601752],[107.87445,23.601093],[107.891424,23.612955],[107.893251,23.620697],[107.906952,23.625584],[107.905506,23.63695],[107.924688,23.63942],[107.942195,23.657043],[107.95993,23.644032],[107.96602,23.62789],[107.98307,23.626792],[107.996543,23.637059],[107.993727,23.649247],[108.000729,23.67351],[108.01169,23.672741],[108.019911,23.677571],[108.020901,23.690414],[108.038712,23.707755],[108.042823,23.72065],[108.024174,23.734146],[108.021814,23.753127],[108.01679,23.760039],[108.02189,23.776219],[108.058351,23.800677],[108.069159,23.796071],[108.08895,23.793165],[108.096181,23.796784],[108.104174,23.809724],[108.112242,23.814166],[108.118256,23.834889],[108.129521,23.851279],[108.136219,23.853033],[108.154107,23.840864],[108.162785,23.825679],[108.180368,23.823267],[108.183413,23.831326],[108.176181,23.844427],[108.186914,23.860816],[108.203051,23.871613],[108.209064,23.854951],[108.221319,23.854842],[108.225049,23.841796],[108.22307,23.825624],[108.232737,23.822664],[108.232585,23.806873],[108.243698,23.805064],[108.252223,23.814166],[108.249635,23.80457],[108.264021,23.817675],[108.277114,23.798429],[108.282823,23.800403],[108.282899,23.814385],[108.2915,23.823541],[108.303451,23.829133],[108.309159,23.839494],[108.290663,23.847223],[108.292718,23.85676],[108.317532,23.881806],[108.313117,23.893368],[108.321719,23.903505],[108.330472,23.905806],[108.329407,23.911997],[108.348817,23.910847],[108.365943,23.916106],[108.365334,23.931774],[108.368379,23.954833],[108.362137,23.968525],[108.354602,23.965403],[108.357723,23.980791],[108.367922,23.981832],[108.372261,23.998696],[108.36404,24.002528],[108.377437,24.014408],[108.410092,24.030939],[108.432547,24.03291],[108.451728,24.023824],[108.458274,24.010193],[108.472585,24.018952],[108.479892,24.019061],[108.487808,24.028859],[108.501509,24.024809],[108.505544,24.01178],[108.537742,24.003678],[108.562099,24.008331],[108.564535,24.02032],[108.554411,24.034826],[108.555553,24.041722],[108.581662,24.035811],[108.597342,24.046867],[108.593308,24.068976],[108.588284,24.071547],[108.584859,24.095731],[108.58935,24.102624],[108.589045,24.122535],[108.59719,24.146655],[108.611576,24.133584],[108.642328,24.137248],[108.664097,24.143537],[108.677342,24.154365],[108.674449,24.171535],[108.682822,24.189139],[108.684421,24.20614],[108.701471,24.231501],[108.687466,24.235873],[108.683736,24.248878],[108.693783,24.25855],[108.689369,24.269095],[108.681681,24.270242],[108.670948,24.288106],[108.686552,24.295207],[108.6915,24.290728],[108.708474,24.291493],[108.729407,24.303018],[108.740139,24.311866],[108.740748,24.324482],[108.728189,24.332619],[108.727275,24.337915],[108.739226,24.350365],[108.738997,24.361284],[108.753917,24.37788],[108.760919,24.368163],[108.777133,24.362267],[108.801186,24.363686],[108.817856,24.361229],[108.835896,24.351238],[108.839854,24.341683],[108.857437,24.319294],[108.848303,24.303728],[108.862156,24.267237],[108.871823,24.271335],[108.89443,24.258878],[108.916885,24.254998],[108.916581,24.27057],[108.920386,24.288816],[108.920539,24.315416],[108.928531,24.340427],[108.920539,24.36183],[108.932565,24.37515],[108.953117,24.381646],[108.970548,24.378644],[108.977779,24.389015],[108.985391,24.387378],[108.990491,24.378589],[108.999245,24.374386],[109.00541,24.398567],[109.000843,24.420505],[109.009216,24.4294],[109.042404,24.437039],[109.046286,24.443532],[109.046666,24.460989],[109.032965,24.48439],[109.022765,24.481172],[108.983108,24.485699],[108.961033,24.474681],[108.937056,24.474899],[108.912546,24.498515],[108.892223,24.501351],[108.884078,24.528015],[108.875325,24.529433],[108.864211,24.521909],[108.862232,24.51373],[108.849521,24.53036],[108.838027,24.538211],[108.845563,24.549823],[108.846248,24.563396],[108.852109,24.571299],[108.87601,24.571517],[108.908817,24.586613],[108.912927,24.595442],[108.903945,24.601708],[108.899911,24.614023],[108.910263,24.625682],[108.927161,24.636632],[108.951519,24.640554],[108.970168,24.666208],[108.952813,24.683799],[108.950986,24.697085],[108.931652,24.715705],[108.935838,24.730294],[108.964687,24.731601],[108.956086,24.740364],[108.963013,24.747875],[108.980444,24.749617],[108.9911,24.759468],[108.99757,24.777534],[109.013783,24.786403],[109.015838,24.795435],[109.027256,24.813932],[109.038065,24.822309],[109.064097,24.823342],[109.07757,24.830467],[109.094164,24.824811],[109.097513,24.806751],[109.117836,24.801855],[109.131842,24.7913],[109.15011,24.807893],[109.158027,24.824648],[109.151176,24.836559],[109.137247,24.835798],[109.139073,24.85282],[109.146076,24.861684],[109.13816,24.867611],[109.136638,24.886966],[109.139378,24.893055],[109.152622,24.896262],[109.157875,24.909417],[109.139835,24.923766],[109.128721,24.940396],[109.118445,24.947569],[109.100329,24.944689],[109.100634,24.928169],[109.076657,24.917842],[109.032204,24.912787],[109.004497,24.916048],[108.994221,24.921103],[108.986457,24.941157],[108.990643,24.957567],[109.017132,24.976094],[109.033041,24.989729],[109.066761,25.010423],[109.074754,25.026933],[109.083203,25.034644],[109.083888,25.051693],[109.09835,25.072648],[109.105049,25.103748],[109.102385,25.12209],[109.093783,25.14401],[109.092261,25.158223],[109.076885,25.178401],[109.071709,25.181221],[109.061966,25.198955],[109.052223,25.202425],[109.03266,25.182035],[109.013403,25.168746],[108.99521,25.173194],[108.985924,25.170211],[108.979911,25.145475],[108.975724,25.138042],[108.960272,25.124858],[108.94817,25.121168],[108.930739,25.130663],[108.915363,25.128059],[108.902879,25.129849],[108.908132,25.144878],[108.899073,25.152744],[108.878902,25.142274],[108.862994,25.140809],[108.855686,25.150086],[108.845182,25.155402],[108.835287,25.139453],[108.823032,25.127462],[108.820824,25.114385],[108.802099,25.112811],[108.797837,25.12692],[108.781015,25.12616],[108.76229,25.121331],[108.753764,25.128276],[108.747142,25.124749],[108.748664,25.111509],[108.731157,25.096042],[108.725981,25.102934],[108.699873,25.10174],[108.69013,25.112051],[108.679016,25.106353],[108.674754,25.116501],[108.677418,25.128981],[108.686704,25.128385],[108.685258,25.140538],[108.694545,25.163648],[108.706876,25.162075],[108.713498,25.154914],[108.718141,25.17737],[108.702765,25.188217],[108.685791,25.194834],[108.683355,25.202751],[108.665696,25.203727],[108.655115,25.214951],[108.653441,25.233927],[108.656333,25.237667],[108.64796,25.251219],[108.651081,25.260325],[108.645144,25.293599],[108.631899,25.306278],[108.625201,25.30812],[108.61386,25.309854],[108.589045,25.335315],[108.594373,25.347556],[108.585848,25.365969],[108.56248,25.374092],[108.564078,25.384326],[108.543983,25.403654],[108.544364,25.407984],[108.524193,25.418324],[108.511253,25.414426],[108.513841,25.428716],[108.50737,25.432992],[108.500368,25.447821],[108.488341,25.456371],[108.471823,25.45886],[108.463298,25.454314],[108.438027,25.447333],[108.43346,25.436401],[108.421738,25.440406],[108.415039,25.461673],[108.400349,25.491376],[108.392509,25.498571],[108.381395,25.50068],[108.359549,25.5135],[108.351785,25.524695],[108.35247,25.533077],[108.344706,25.537349],[108.316695,25.531509],[108.317076,25.52264],[108.308246,25.525777],[108.299264,25.501113],[108.281072,25.480015],[108.260901,25.473739],[108.240729,25.46189],[108.236086,25.44939],[108.252375,25.438458],[108.252071,25.430502],[108.225886,25.426984],[108.226267,25.437213],[108.221395,25.450093],[108.203051,25.451663],[108.192623,25.459076],[108.16248,25.444736],[108.157609,25.438999],[108.165068,25.427363],[108.170625,25.431801],[108.179987,25.427904],[108.190339,25.417025],[108.186457,25.410204],[108.193308,25.405494],[108.181357,25.390823],[108.153803,25.394721],[108.142766,25.39066],[108.155249,25.377936],[108.152128,25.35373],[108.1366,25.343114],[108.137818,25.336506],[108.152128,25.324427],[108.149464,25.310341],[108.135915,25.29788],[108.137057,25.278101],[108.143298,25.269755],[108.134773,25.259675],[108.133784,25.234415],[108.121757,25.231053],[108.115896,25.210993],[108.098237,25.200799],[108.080653,25.193749],[108.053631,25.199606],[108.010777,25.195267],[108.001947,25.196569],[107.989083,25.186862],[107.96914,25.177913],[107.950492,25.17417],[107.928646,25.155782],[107.915401,25.156813],[107.898046,25.148893],[107.896828,25.144227],[107.872395,25.141569],[107.867904,25.129415],[107.839055,25.116121],[107.832509,25.123338],[107.819493,25.129198],[107.806857,25.124803],[107.79445,25.116121],[107.777171,25.124532],[107.769026,25.117532],[107.762861,25.123989],[107.768189,25.131097],[107.778769,25.134895],[107.789502,25.154751],[107.782651,25.170428],[107.759968,25.188651],[107.756391,25.199931],[107.762176,25.228939],[107.752965,25.240866],[107.742081,25.240215],[107.710416,25.203456],[107.700672,25.194129],[107.694583,25.19787],[107.696258,25.219885],[107.690549,25.22818],[107.669997,25.244443],[107.661852,25.25897],[107.658351,25.293383],[107.668931,25.30747],[107.659721,25.316301],[107.643432,25.314838],[107.631938,25.310179],[107.614355,25.276963],[107.61504,25.26813],[107.608494,25.265311],[107.606134,25.255338],[107.593727,25.262818],[107.599359,25.250948],[107.5919,25.248671],[107.583527,25.256043],[107.558941,25.246883],[107.554069,25.239565],[107.543337,25.234848],[107.54151,25.224602],[107.521491,25.221457],[107.517533,25.207197],[107.513118,25.216578],[107.50444,25.217608],[107.504593,25.210667],[107.479245,25.21121],[107.472242,25.213758],[107.474602,25.226011],[107.470035,25.232083],[107.490054,25.276692],[107.481529,25.30021],[107.470948,25.300806],[107.449103,25.28753],[107.432661,25.289102],[107.428703,25.313484],[107.409141,25.347122],[107.408532,25.360229],[107.413023,25.372738],[107.423831,25.383892],[107.420863,25.393097],[107.402442,25.393746],[107.386381,25.410637],[107.375801,25.412099],[107.367276,25.403924],[107.364688,25.394992],[107.354336,25.3951],[107.344364,25.403654],[107.314831,25.402625],[107.309046,25.409175],[107.308361,25.4331],[107.315135,25.42969],[107.325715,25.434724],[107.325335,25.442517],[107.332718,25.446738],[107.33013,25.473198],[107.321224,25.48456],[107.322214,25.493432],[107.328684,25.494568],[107.31346,25.504954],[107.307752,25.500248],[107.296106,25.520477],[107.291234,25.519503],[107.275782,25.535511],[107.263908,25.543135],[107.237647,25.551625],[107.230187,25.564763],[107.235972,25.585359],[107.228589,25.604871],[107.211158,25.609195],[107.19974,25.60379],[107.187333,25.590927],[107.185202,25.578332],[107.134507,25.566439],[107.113727,25.565303],[107.09348,25.569791],[107.064555,25.559518],[107.064098,25.542432],[107.074602,25.521288],[107.070111,25.511715],[107.055649,25.50398],[107.03974,25.503331],[107.013556,25.494081],[107.015002,25.488671],[107.007238,25.479096],[107.003889,25.462106],[106.996505,25.442734],[106.981206,25.448037],[106.963698,25.437322],[106.968874,25.425956],[106.967504,25.410366],[106.974127,25.40701],[106.979759,25.388116],[106.979531,25.374092],[106.986914,25.359741],[107.010968,25.354976],[107.014317,25.344794],[107.00739,25.308066],[107.013403,25.295496],[107.009902,25.290294],[107.013708,25.275337],[106.991329,25.263089],[106.988361,25.253929],[106.997799,25.244931],[106.97603,25.232951],[106.955325,25.246286],[106.933251,25.25046],[106.913004,25.243034],[106.904098,25.231541],[106.900216,25.212728],[106.900216,25.194508],[106.888342,25.182197],[106.852718,25.18697],[106.836353,25.179486],[106.798066,25.170482],[106.787562,25.170862],[106.76465,25.183119],[106.732148,25.162292],[106.722405,25.161858],[106.705506,25.176177],[106.69112,25.179214],[106.667524,25.170591],[106.644993,25.164841],[106.638446,25.154209],[106.639664,25.132779],[106.629312,25.121439],[106.614317,25.116338],[106.597114,25.104888],[106.594755,25.093925],[106.587676,25.085892],[106.571158,25.083504]]]]}},{"type":"Feature","properties":{"adcode":451300,"name":"来宾市","center":[109.229772,23.733766],"centroid":[109.416662,23.851919],"childrenNum":6,"level":"city","parent":{"adcode":450000},"subFeatureIndex":12,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.916885,24.254998],[108.89443,24.258878],[108.871823,24.271335],[108.862156,24.267237],[108.848303,24.303728],[108.857437,24.319294],[108.839854,24.341683],[108.835896,24.351238],[108.817856,24.361229],[108.801186,24.363686],[108.777133,24.362267],[108.760919,24.368163],[108.753917,24.37788],[108.738997,24.361284],[108.739226,24.350365],[108.727275,24.337915],[108.728189,24.332619],[108.740748,24.324482],[108.740139,24.311866],[108.729407,24.303018],[108.708474,24.291493],[108.6915,24.290728],[108.686552,24.295207],[108.670948,24.288106],[108.681681,24.270242],[108.689369,24.269095],[108.693783,24.25855],[108.683736,24.248878],[108.687466,24.235873],[108.701471,24.231501],[108.684421,24.20614],[108.682822,24.189139],[108.674449,24.171535],[108.677342,24.154365],[108.664097,24.143537],[108.642328,24.137248],[108.611576,24.133584],[108.59719,24.146655],[108.589045,24.122535],[108.58935,24.102624],[108.584859,24.095731],[108.588284,24.071547],[108.593308,24.068976],[108.597342,24.046867],[108.581662,24.035811],[108.555553,24.041722],[108.554411,24.034826],[108.564535,24.02032],[108.562099,24.008331],[108.537742,24.003678],[108.505544,24.01178],[108.501509,24.024809],[108.487808,24.028859],[108.479892,24.019061],[108.498769,23.990428],[108.487656,23.989771],[108.476543,23.977889],[108.461243,23.98676],[108.448531,23.977999],[108.433688,23.962829],[108.442061,23.954176],[108.437875,23.939442],[108.422803,23.924433],[108.424326,23.916983],[108.443736,23.919777],[108.455306,23.912545],[108.444954,23.898355],[108.465353,23.898355],[108.476162,23.89419],[108.473346,23.888711],[108.460862,23.887012],[108.462156,23.874189],[108.458198,23.864817],[108.446552,23.853965],[108.45698,23.842728],[108.451043,23.837904],[108.430263,23.832312],[108.418389,23.824473],[108.415953,23.8174],[108.425848,23.808847],[108.418617,23.800787],[108.431405,23.798484],[108.434373,23.807641],[108.443736,23.802487],[108.435667,23.787461],[108.446096,23.787516],[108.456676,23.780716],[108.459112,23.787187],[108.474411,23.776054],[108.469616,23.768102],[108.487123,23.760862],[108.485601,23.741169],[108.474564,23.740565],[108.477228,23.72449],[108.482099,23.725478],[108.489254,23.713297],[108.49816,23.713626],[108.503717,23.704188],[108.497399,23.690963],[108.496866,23.676144],[108.50425,23.673126],[108.501357,23.662751],[108.529064,23.671918],[108.52914,23.680151],[108.542156,23.687835],[108.548931,23.707261],[108.554031,23.703804],[108.566514,23.707975],[108.566819,23.723119],[108.581433,23.734311],[108.596048,23.736615],[108.592927,23.744076],[108.60914,23.74638],[108.61013,23.751098],[108.628017,23.75587],[108.62718,23.764701],[108.638293,23.769089],[108.653289,23.766182],[108.6711,23.772818],[108.673079,23.785048],[108.687846,23.788503],[108.689597,23.782745],[108.713422,23.783513],[108.728798,23.798539],[108.734811,23.793055],[108.743641,23.796126],[108.747675,23.780497],[108.761833,23.776109],[108.773022,23.778193],[108.783603,23.768102],[108.781623,23.746051],[108.788246,23.740455],[108.777513,23.732555],[108.777589,23.727289],[108.788474,23.726904],[108.804307,23.714724],[108.796619,23.706274],[108.790605,23.692335],[108.778883,23.691621],[108.777209,23.681029],[108.780406,23.645514],[108.797075,23.634204],[108.782765,23.615426],[108.803698,23.588846],[108.805448,23.570555],[108.810015,23.569347],[108.813745,23.546933],[108.811995,23.540834],[108.820824,23.523196],[108.826305,23.518855],[108.821357,23.503413],[108.822347,23.49396],[108.836809,23.485935],[108.834373,23.478294],[108.857209,23.466145],[108.863755,23.469884],[108.869464,23.457404],[108.869616,23.443879],[108.890015,23.441295],[108.892375,23.433267],[108.906609,23.431837],[108.919169,23.417979],[108.915667,23.412755],[108.920234,23.40302],[108.9111,23.394605],[108.920767,23.389709],[108.930662,23.367375],[108.939035,23.360058],[108.951671,23.357967],[108.956847,23.362973],[108.965144,23.35406],[108.968265,23.370346],[108.979758,23.36897],[108.987675,23.357197],[108.987675,23.349329],[109.01325,23.350759],[109.020253,23.360003],[109.033193,23.354611],[109.051994,23.355821],[109.050472,23.337498],[109.056562,23.32297],[109.063869,23.322585],[109.086171,23.334086],[109.082898,23.344376],[109.099188,23.343991],[109.093631,23.331005],[109.087161,23.326932],[109.086628,23.314384],[109.110377,23.290826],[109.124078,23.291102],[109.131994,23.286202],[109.13405,23.297652],[109.141433,23.299524],[109.148588,23.28912],[109.165258,23.28956],[109.170738,23.277559],[109.187484,23.27321],[109.197989,23.266548],[109.20758,23.273375],[109.192737,23.282074],[109.207808,23.299964],[109.217018,23.296826],[109.220063,23.300735],[109.207047,23.309926],[109.220443,23.320273],[109.210853,23.33227],[109.232622,23.345312],[109.241909,23.344486],[109.250129,23.352245],[109.26581,23.346852],[109.271899,23.361378],[109.278445,23.360608],[109.276162,23.374362],[109.283545,23.381018],[109.296257,23.381788],[109.301585,23.39587],[109.3111,23.39642],[109.323355,23.416384],[109.343983,23.409015],[109.352736,23.416714],[109.373821,23.400985],[109.368112,23.390644],[109.37169,23.380853],[109.380443,23.377827],[109.401071,23.382778],[109.412032,23.36952],[109.423755,23.36798],[109.429311,23.359892],[109.448112,23.380633],[109.482974,23.383878],[109.483583,23.36809],[109.503222,23.346852],[109.501775,23.336508],[109.51403,23.332876],[109.513574,23.327648],[109.539682,23.306404],[109.541661,23.299634],[109.553916,23.308055],[109.556352,23.31499],[109.565334,23.317687],[109.566247,23.329079],[109.578426,23.351199],[109.575229,23.354886],[109.591442,23.363469],[109.596162,23.355656],[109.611309,23.368585],[109.611842,23.377497],[109.630034,23.392349],[109.635591,23.40533],[109.646476,23.420619],[109.661471,23.428978],[109.677456,23.421664],[109.689558,23.40335],[109.702879,23.402415],[109.699073,23.41105],[109.714601,23.41061],[109.724192,23.423754],[109.728911,23.447123],[109.740557,23.46752],[109.751823,23.454875],[109.769406,23.457349],[109.781813,23.46686],[109.785163,23.482527],[109.797265,23.485935],[109.837912,23.477909],[109.849634,23.465816],[109.85169,23.449542],[109.861966,23.43871],[109.868131,23.45526],[109.894011,23.475656],[109.891043,23.48599],[109.897284,23.503797],[109.898578,23.51891],[109.894087,23.536823],[109.893402,23.55402],[109.902156,23.577861],[109.917608,23.594613],[109.927655,23.635193],[109.922936,23.665002],[109.928493,23.684981],[109.947522,23.688164],[109.952013,23.699195],[109.955058,23.726027],[109.971804,23.736615],[109.979111,23.747148],[109.987408,23.768705],[109.997227,23.776767],[110.028055,23.780935],[110.041832,23.7862],[110.068397,23.801335],[110.089482,23.828859],[110.12031,23.856267],[110.132337,23.870024],[110.1503,23.880929],[110.157836,23.879285],[110.180443,23.860871],[110.190186,23.861035],[110.199701,23.869476],[110.203735,23.881368],[110.206247,23.902902],[110.210814,23.910244],[110.219263,23.9086],[110.241185,23.89156],[110.263031,23.89556],[110.27521,23.871503],[110.282669,23.864159],[110.286323,23.851937],[110.299492,23.865475],[110.295381,23.882025],[110.309539,23.893423],[110.314943,23.908819],[110.309311,23.919941],[110.297208,23.918681],[110.302917,23.933581],[110.295533,23.955162],[110.290433,23.95812],[110.295762,23.972139],[110.305353,23.975918],[110.309159,24.01616],[110.315552,24.023769],[110.343335,24.034771],[110.368683,24.033129],[110.376599,24.040299],[110.391899,24.04216],[110.400043,24.048071],[110.397836,24.058031],[110.381242,24.054857],[110.379644,24.043692],[110.373783,24.042105],[110.360386,24.05234],[110.361908,24.061917],[110.343412,24.060384],[110.354905,24.077129],[110.374315,24.081725],[110.376066,24.086211],[110.362822,24.095403],[110.364725,24.104812],[110.386799,24.126309],[110.403925,24.108915],[110.401185,24.100873],[110.407883,24.099834],[110.412451,24.107493],[110.411918,24.118761],[110.447922,24.116354],[110.458426,24.124833],[110.45462,24.138451],[110.448378,24.142991],[110.437569,24.139381],[110.429805,24.146491],[110.423107,24.142225],[110.407731,24.143756],[110.420291,24.15699],[110.428968,24.156498],[110.432698,24.16727],[110.444344,24.164864],[110.443887,24.172246],[110.456218,24.184],[110.43795,24.196738],[110.419073,24.201111],[110.413364,24.214339],[110.405067,24.220078],[110.392888,24.220406],[110.383221,24.214011],[110.375914,24.224505],[110.365638,24.227292],[110.358331,24.218985],[110.365257,24.244124],[110.365562,24.26232],[110.374924,24.264341],[110.369901,24.271936],[110.351937,24.278601],[110.33717,24.275869],[110.326666,24.26609],[110.316923,24.296409],[110.288987,24.299905],[110.27757,24.307333],[110.268359,24.303728],[110.271023,24.319785],[110.260139,24.322297],[110.258007,24.340209],[110.264477,24.34141],[110.267065,24.356971],[110.260367,24.360247],[110.23129,24.351948],[110.229463,24.360629],[110.220557,24.34627],[110.209672,24.350856],[110.198711,24.347908],[110.196961,24.357244],[110.200614,24.370892],[110.190643,24.372476],[110.188816,24.382574],[110.197189,24.386341],[110.21188,24.399931],[110.205029,24.405553],[110.189958,24.405771],[110.202517,24.414448],[110.195362,24.430655],[110.204496,24.44315],[110.202669,24.449697],[110.187141,24.447623],[110.164154,24.437857],[110.156161,24.44435],[110.147408,24.436002],[110.135001,24.447242],[110.120234,24.449587],[110.116199,24.460826],[110.097398,24.462517],[110.09344,24.457607],[110.079054,24.467426],[110.06893,24.457334],[110.072127,24.439058],[110.055838,24.419414],[110.045638,24.390543],[110.048683,24.36658],[110.034449,24.344031],[110.01717,24.336496],[110.021204,24.326994],[110.030795,24.318475],[110.029349,24.307551],[110.0362,24.290236],[110.027598,24.281496],[110.033231,24.273028],[110.015648,24.26751],[109.998826,24.255053],[109.97599,24.2615],[109.963431,24.256965],[109.941433,24.23702],[109.931842,24.234889],[109.907712,24.245272],[109.905505,24.272263],[109.925143,24.269095],[109.932907,24.271826],[109.927046,24.293732],[109.913878,24.301653],[109.902689,24.300997],[109.887541,24.288925],[109.88442,24.274613],[109.880082,24.276306],[109.849634,24.274995],[109.851537,24.260407],[109.840196,24.256091],[109.830681,24.258386],[109.820253,24.252649],[109.809825,24.258823],[109.803126,24.256146],[109.793764,24.234288],[109.781357,24.227238],[109.770928,24.215542],[109.762023,24.211989],[109.74581,24.214284],[109.710262,24.176893],[109.705467,24.153326],[109.684154,24.155076],[109.670148,24.146928],[109.659035,24.145287],[109.643659,24.150264],[109.615267,24.140858],[109.609026,24.115589],[109.598141,24.083913],[109.581928,24.070836],[109.560538,24.06323],[109.549045,24.063941],[109.530015,24.053981],[109.510681,24.052777],[109.501166,24.047688],[109.492641,24.032527],[109.493859,24.021743],[109.487313,24.011178],[109.502993,23.990319],[109.495229,23.970551],[109.483735,23.960529],[109.470567,23.96732],[109.469958,23.951657],[109.451233,23.939826],[109.442556,23.920325],[109.42855,23.9086],[109.406323,23.908107],[109.384097,23.915175],[109.375724,23.908326],[109.363697,23.907121],[109.359283,23.912216],[109.366057,23.918133],[109.357912,23.92142],[109.353726,23.934787],[109.344516,23.937471],[109.348169,23.952971],[109.328835,23.960967],[109.324801,23.987745],[109.306685,23.993494],[109.291385,24.006853],[109.295039,24.027601],[109.289787,24.038493],[109.278598,24.04725],[109.232242,24.058633],[109.217855,24.051738],[109.221966,24.032034],[109.211462,24.019006],[109.183983,24.016488],[109.172261,24.028257],[109.16503,24.028805],[109.155286,24.021798],[109.146914,24.022838],[109.142727,24.031487],[109.142423,24.046812],[109.136409,24.057593],[109.125677,24.064543],[109.114716,24.057429],[109.089368,24.063066],[109.094544,24.073134],[109.105886,24.083913],[109.076733,24.09874],[109.061814,24.100272],[109.050929,24.105359],[109.036466,24.12177],[109.00404,24.131396],[108.978008,24.126255],[108.972147,24.129755],[108.958065,24.161857],[108.941928,24.174105],[108.935153,24.185203],[108.938122,24.199745],[108.930434,24.217017],[108.944744,24.228112],[108.940862,24.243414],[108.925791,24.256419],[108.916885,24.254998]]]]}},{"type":"Feature","properties":{"adcode":451400,"name":"崇左市","center":[107.353926,22.404108],"centroid":[107.277353,22.502179],"childrenNum":7,"level":"city","parent":{"adcode":450000},"subFeatureIndex":13,"acroutes":[100000,450000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.67072,22.889097],[106.685487,22.89114],[106.702538,22.887772],[106.716772,22.881422],[106.717076,22.872201],[106.709465,22.866292],[106.746458,22.84006],[106.756582,22.828903],[106.772338,22.823655],[106.768456,22.810342],[106.777971,22.814375],[106.798903,22.812441],[106.811995,22.818131],[106.822195,22.816584],[106.840996,22.799569],[106.8276,22.786419],[106.827447,22.776308],[106.821053,22.768737],[106.796467,22.766748],[106.788018,22.762382],[106.791444,22.751108],[106.768304,22.738617],[106.773251,22.735245],[106.764802,22.727562],[106.768532,22.715068],[106.782081,22.707494],[106.773936,22.704288],[106.756277,22.689691],[106.764041,22.68278],[106.758256,22.669674],[106.745773,22.667683],[106.736106,22.646722],[106.725602,22.634609],[106.731995,22.630571],[106.726896,22.616796],[106.71799,22.611209],[106.734355,22.598982],[106.726287,22.584097],[106.711976,22.575133],[106.696981,22.581662],[106.680844,22.57884],[106.66661,22.572642],[106.65131,22.574192],[106.635706,22.592895],[106.633423,22.602246],[106.614469,22.60208],[106.607923,22.584872],[106.612186,22.577235],[106.604878,22.573583],[106.60739,22.560522],[106.601758,22.547848],[106.595592,22.54746],[106.59034,22.522274],[106.58524,22.51635],[106.585392,22.479862],[106.587904,22.47305],[106.581358,22.466183],[106.570854,22.469838],[106.562252,22.462417],[106.562024,22.443973],[106.570778,22.437935],[106.571158,22.428019],[106.564003,22.419432],[106.57466,22.401537],[106.590112,22.391009],[106.588209,22.373719],[106.564917,22.361305],[106.562785,22.345452],[106.574355,22.338191],[106.581358,22.341738],[106.602899,22.334698],[106.61721,22.337359],[106.624441,22.330485],[106.63837,22.336195],[106.652528,22.336472],[106.663413,22.33104],[106.663261,22.31463],[106.669426,22.309917],[106.672091,22.28136],[106.682747,22.281415],[106.693784,22.275703],[106.688684,22.260341],[106.705506,22.216683],[106.697742,22.202313],[106.68229,22.202313],[106.683356,22.194045],[106.673385,22.182613],[106.681453,22.167796],[106.695459,22.159082],[106.706268,22.160802],[106.709312,22.152698],[106.700559,22.151311],[106.693708,22.132715],[106.702081,22.107953],[106.715554,22.089906],[106.717761,22.074412],[106.714184,22.062193],[106.707105,22.055417],[106.709769,22.036475],[106.706496,22.02153],[106.69112,22.008473],[106.681149,21.994915],[106.685944,21.977243],[106.691044,21.976132],[106.694622,21.961904],[106.699189,21.959791],[106.72621,21.979244],[106.731843,21.987413],[106.738694,22.008196],[106.751025,22.012863],[106.786039,22.007807],[106.802709,21.981578],[106.814203,21.975743],[106.828741,21.97552],[106.84366,21.982634],[106.859417,21.985746],[106.920387,21.970074],[106.92838,21.964238],[106.932871,21.938502],[106.939112,21.931441],[106.958751,21.922101],[106.968266,21.920989],[106.981282,21.92755],[106.999398,21.947618],[107.020711,21.944172],[107.050549,21.925604],[107.059912,21.915207],[107.061662,21.893522],[107.058922,21.886904],[107.01858,21.859318],[107.011957,21.850029],[107.009826,21.835844],[107.017818,21.81932],[107.038827,21.809973],[107.054203,21.807247],[107.088075,21.805132],[107.102081,21.79289],[107.116239,21.78688],[107.14897,21.758941],[107.159474,21.75293],[107.181015,21.747196],[107.19464,21.736731],[107.199436,21.718748],[107.216106,21.710397],[107.24739,21.702991],[107.25386,21.706276],[107.259112,21.717635],[107.271824,21.727044],[107.290777,21.730885],[107.302271,21.739236],[107.310872,21.733669],[107.345354,21.684448],[107.36347,21.655263],[107.365068,21.645515],[107.363394,21.602003],[107.364764,21.598549],[107.388437,21.594146],[107.400768,21.614094],[107.431139,21.641839],[107.447428,21.650974],[107.469502,21.659496],[107.481529,21.655542],[107.506115,21.664231],[107.498427,21.673978],[107.515249,21.685116],[107.519588,21.694137],[107.541129,21.713682],[107.541586,21.719138],[107.557266,21.724539],[107.552851,21.74163],[107.553232,21.759164],[107.560387,21.776306],[107.567542,21.784098],[107.558484,21.800458],[107.557799,21.815593],[107.571576,21.846413],[107.568379,21.862767],[107.55445,21.879841],[107.542956,21.888072],[107.550644,21.901974],[107.559626,21.91087],[107.554374,21.917542],[107.558408,21.931664],[107.56602,21.929551],[107.582614,21.93878],[107.572338,21.952121],[107.580178,21.959736],[107.575154,21.964961],[107.585278,21.969462],[107.579797,21.975298],[107.60248,21.990914],[107.60248,21.998638],[107.616105,22.004806],[107.625468,22.026586],[107.636657,22.028253],[107.632471,22.036864],[107.653479,22.041308],[107.646324,22.051473],[107.653099,22.053528],[107.657133,22.06447],[107.66779,22.065748],[107.678598,22.081909],[107.663222,22.087852],[107.66444,22.096126],[107.657666,22.098069],[107.660939,22.123999],[107.648379,22.132048],[107.642747,22.141208],[107.628284,22.18167],[107.632547,22.189439],[107.659721,22.180005],[107.675782,22.182724],[107.706001,22.191603],[107.727999,22.18672],[107.739416,22.19976],[107.776486,22.207418],[107.801148,22.209526],[107.821167,22.217238],[107.837837,22.212189],[107.859911,22.209637],[107.874145,22.211024],[107.883356,22.219235],[107.895991,22.215629],[107.898275,22.204421],[107.911595,22.210192],[107.910606,22.228223],[107.91837,22.233271],[107.921415,22.249136],[107.930929,22.254905],[107.94425,22.246918],[107.952014,22.249968],[107.946457,22.269936],[107.959245,22.279696],[107.961072,22.285963],[107.985506,22.296887],[107.979569,22.31036],[107.994259,22.327935],[108.006743,22.335419],[108.021586,22.330984],[108.030492,22.333146],[108.046629,22.354709],[108.066267,22.350829],[108.07464,22.355041],[108.083013,22.368787],[108.095877,22.371668],[108.115744,22.388571],[108.114145,22.398212],[108.100596,22.408241],[108.087123,22.406025],[108.082937,22.411177],[108.08484,22.444804],[108.087732,22.458374],[108.079283,22.461752],[108.068627,22.456712],[108.058731,22.461974],[108.058884,22.47017],[108.037038,22.475487],[108.042138,22.477536],[108.01405,22.479086],[108.010929,22.496972],[107.997685,22.491601],[107.986191,22.504558],[108.013441,22.53329],[108.018465,22.547793],[108.004307,22.560965],[107.995325,22.581607],[108.006134,22.607557],[108.014126,22.61143],[108.027218,22.610711],[108.058655,22.623435],[108.060254,22.618401],[108.073498,22.625703],[108.086058,22.621277],[108.103336,22.643182],[108.104554,22.652585],[108.099759,22.662706],[108.090396,22.669508],[108.094354,22.680734],[108.085829,22.701966],[108.075477,22.695829],[108.074716,22.675536],[108.068551,22.667351],[108.059569,22.665748],[108.048531,22.656401],[108.041453,22.655793],[108.026686,22.666798],[108.022575,22.677471],[108.006286,22.68195],[107.998674,22.694281],[108.002785,22.705062],[107.999664,22.716672],[108.01169,22.720265],[108.019302,22.741601],[108.027142,22.747128],[108.019302,22.757187],[108.019683,22.77045],[108.026153,22.76824],[108.033308,22.776529],[108.023793,22.781999],[107.999435,22.788519],[107.973327,22.79316],[107.9817,22.816695],[107.970815,22.834702],[107.955591,22.844037],[107.943793,22.846411],[107.914107,22.846135],[107.882899,22.849725],[107.879017,22.857236],[107.859835,22.873195],[107.832433,22.872864],[107.793536,22.881091],[107.776638,22.898372],[107.764307,22.91543],[107.752813,22.922386],[107.752585,22.931051],[107.743907,22.943966],[107.730967,22.939937],[107.712319,22.949154],[107.697704,22.938778],[107.680197,22.944573],[107.676086,22.941979],[107.637799,22.947664],[107.635668,22.935025],[107.647314,22.932376],[107.649521,22.924373],[107.667181,22.918577],[107.674945,22.902292],[107.692985,22.890753],[107.702119,22.876011],[107.693213,22.869385],[107.692376,22.861985],[107.673574,22.855137],[107.660634,22.8669],[107.658427,22.87833],[107.648379,22.887109],[107.650511,22.899642],[107.645944,22.902237],[107.613974,22.904169],[107.583299,22.889815],[107.570587,22.888048],[107.575382,22.876066],[107.574317,22.860439],[107.542804,22.858782],[107.517152,22.845528],[107.504212,22.845417],[107.496905,22.851658],[107.49797,22.859831],[107.488151,22.871925],[107.488836,22.895833],[107.478484,22.916369],[107.477571,22.92509],[107.484345,22.925532],[107.499569,22.935632],[107.492642,22.950258],[107.498351,22.963171],[107.499873,22.979945],[107.490359,22.986787],[107.483736,23.006978],[107.475744,23.012108],[107.481301,23.02121],[107.478256,23.031634],[107.468437,23.032516],[107.460901,23.04294],[107.447352,23.049999],[107.436848,23.049613],[107.432509,23.044043],[107.420863,23.045036],[107.413175,23.051102],[107.397723,23.042995],[107.39346,23.04851],[107.381358,23.04476],[107.367504,23.031524],[107.337666,23.047462],[107.339417,23.058767],[107.353346,23.06588],[107.353422,23.080822],[107.376943,23.083579],[107.387675,23.091518],[107.389046,23.098133],[107.363013,23.102102],[107.3621,23.110756],[107.351063,23.121064],[107.333175,23.12911],[107.330283,23.137432],[107.337742,23.148068],[107.356543,23.148123],[107.357152,23.155177],[107.3468,23.157711],[107.355021,23.164323],[107.346496,23.18862],[107.353575,23.197985],[107.369712,23.197985],[107.366591,23.211039],[107.374126,23.214785],[107.379226,23.238246],[107.385696,23.244359],[107.378008,23.250581],[107.382728,23.268475],[107.367124,23.270347],[107.366667,23.281853],[107.35289,23.295175],[107.350758,23.320493],[107.343299,23.333371],[107.314374,23.34047],[107.303413,23.351474],[107.274412,23.343716],[107.247771,23.32308],[107.22288,23.315045],[107.210701,23.318292],[107.198751,23.333481],[107.18033,23.325061],[107.158941,23.311578],[107.148741,23.302386],[107.116391,23.283615],[107.057704,23.276954],[107.041187,23.273375],[107.044231,23.286092],[107.034336,23.291652],[107.042024,23.304973],[107.026039,23.303211],[107.005868,23.310202],[106.994298,23.299854],[106.962937,23.298918],[106.944669,23.291762],[106.923051,23.268971],[106.918561,23.259556],[106.91681,23.242817],[106.899683,23.223487],[106.857666,23.20834],[106.838561,23.19826],[106.805525,23.19187],[106.779493,23.180577],[106.776753,23.175067],[106.785506,23.153028],[106.783756,23.14658],[106.770663,23.131425],[106.765487,23.118583],[106.772414,23.108221],[106.771957,23.099952],[106.761834,23.087107],[106.768532,23.075639],[106.776296,23.07404],[106.79464,23.084847],[106.802785,23.081153],[106.80956,23.066211],[106.795935,23.048565],[106.797761,23.023747],[106.786115,23.014315],[106.765259,23.00422],[106.747904,22.974538],[106.727352,22.965764],[106.711976,22.941593],[106.681453,22.921502],[106.667295,22.907426],[106.67072,22.889097]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/460000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/460000.json new file mode 100644 index 0000000..8d37a04 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/460000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":460100,"name":"海口市","center":[110.33119,20.031971],"centroid":[110.422966,19.852113],"childrenNum":4,"level":"city","parent":{"adcode":460000},"subFeatureIndex":0,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.106525,20.026851],[110.161895,19.977693],[110.143932,19.889106],[110.186246,19.864193],[110.228283,19.753767],[110.208468,19.716679],[110.222357,19.67974],[110.262449,19.687318],[110.314208,19.697421],[110.340041,19.720625],[110.393373,19.698053],[110.372633,19.654004],[110.401151,19.606626],[110.455687,19.574559],[110.486705,19.593357],[110.519297,19.563341],[110.540223,19.535532],[110.611518,19.526841],[110.641333,19.549122],[110.636148,19.593989],[110.672814,19.647214],[110.623463,19.664109],[110.623,19.735461],[110.670314,19.812776],[110.704665,19.805992],[110.699573,19.861512],[110.676147,19.860092],[110.675314,19.907868],[110.634666,19.965401],[110.598,19.98305],[110.526612,20.075206],[110.495039,20.077253],[110.387355,20.11347],[110.318467,20.109061],[110.293282,20.059614],[110.24319,20.077568],[110.144395,20.074418],[110.106525,20.026851]]]]}},{"type":"Feature","properties":{"adcode":460200,"name":"三亚市","center":[109.508268,18.247872],"centroid":[109.421656,18.362263],"childrenNum":4,"level":"city","parent":{"adcode":460000},"subFeatureIndex":1,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.932374,18.335288],[108.956448,18.307433],[109.006632,18.323032],[109.108298,18.323828],[109.138668,18.267791],[109.174686,18.260149],[109.28811,18.264925],[109.355887,18.214922],[109.441349,18.199153],[109.4632,18.177171],[109.527366,18.169046],[109.561718,18.143554],[109.63792,18.171595],[109.72616,18.177808],[109.749863,18.19326],[109.783381,18.337516],[109.805418,18.347543],[109.785048,18.426622],[109.809955,18.459388],[109.781159,18.51107],[109.725234,18.493102],[109.710882,18.426462],[109.665883,18.391462],[109.539866,18.396713],[109.515607,18.429008],[109.536996,18.490717],[109.535237,18.53142],[109.506163,18.551291],[109.423386,18.574657],[109.405146,18.623443],[109.332832,18.575451],[109.313295,18.517429],[109.246537,18.558921],[109.203574,18.553517],[109.185056,18.507095],[109.195148,18.469407],[109.072557,18.452231],[109.015243,18.422645],[108.932374,18.335288]]]]}},{"type":"Feature","properties":{"adcode":460300,"name":"三沙市","center":[112.34882,16.831039],"centroid":[113.343872,8.21455],"childrenNum":2,"level":"city","parent":{"adcode":460000},"subFeatureIndex":2,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.26602,8.126149],[113.342871,8.193701],[113.290001,8.121834],[113.349815,8.172457],[113.386296,8.238342],[113.386296,8.289282],[113.354074,8.304049],[113.349352,8.231206],[113.294168,8.176275],[113.26602,8.126149]]],[[[111.463081,17.077615],[111.523451,17.103899],[111.538265,17.094123],[111.493729,17.058701],[111.559098,17.087712],[111.541969,17.120084],[111.452063,17.093161],[111.463081,17.077615]]],[[[117.708276,15.182553],[117.726887,15.105513],[117.827533,15.111664],[117.72522,15.13125],[117.720775,15.195336],[117.748553,15.229799],[117.71522,15.22268],[117.708276,15.182553]]],[[[111.734466,16.197411],[111.800484,16.208038],[111.822058,16.238466],[111.782521,16.273718],[111.68493,16.256978],[111.784929,16.253115],[111.793725,16.225748],[111.734466,16.197411]]],[[[113.896938,7.607108],[113.919437,7.566886],[113.987214,7.536302],[114.058972,7.537798],[114.157582,7.561401],[114.290173,7.617246],[114.368413,7.638684],[114.403783,7.675907],[114.420079,7.765795],[114.464152,7.814968],[114.540448,7.861976],[114.555077,7.891208],[114.540725,7.945514],[114.472578,7.969094],[114.414616,7.95282],[114.268229,7.870779],[114.211748,7.78706],[114.095083,7.720937],[114.029065,7.669925],[113.921474,7.639016],[113.896938,7.607108]]],[[[111.649468,16.255691],[111.577802,16.20836],[111.568265,16.16279],[111.611042,16.156348],[111.690763,16.210936],[111.606598,16.177766],[111.59882,16.198377],[111.681134,16.262129],[111.649468,16.255691]]],[[[113.977029,8.872712],[114.01351,8.836926],[114.035269,8.783904],[114.060084,8.816381],[113.994899,8.876853],[113.977029,8.872712]]],[[[113.955826,8.840406],[113.975177,8.792852],[114.011843,8.798652],[113.977585,8.8414],[113.955826,8.840406]]],[[[111.974371,16.323768],[111.995667,16.307033],[112.056592,16.312987],[112.074925,16.349674],[112.002889,16.3508],[111.974371,16.323768]]],[[[111.739003,16.458888],[111.752059,16.455672],[111.786688,16.520144],[111.744466,16.551809],[111.765762,16.495387],[111.739003,16.458888]]],[[[114.194248,8.764516],[114.210267,8.712313],[114.24934,8.730543],[114.222026,8.784733],[114.194248,8.764516]]],[[[112.232701,16.996336],[112.222515,16.960575],[112.293255,16.967792],[112.232701,16.996336]]],[[[115.837467,9.709661],[115.861263,9.694291],[115.867282,9.650159],[115.900985,9.670986],[115.925614,9.781546],[115.8708,9.778737],[115.837467,9.709661]]],[[[114.617391,9.965401],[114.64202,9.917341],[114.672205,9.927746],[114.685816,9.979107],[114.617391,9.965401]]],[[[114.689705,10.345663],[114.725908,10.319106],[114.74526,10.374362],[114.703501,10.374033],[114.689705,10.345663]]],[[[109.464034,7.344605],[109.467367,7.309847],[109.513292,7.320325],[109.571532,7.373539],[109.654124,7.47945],[109.709401,7.510869],[109.7919,7.5245],[109.93912,7.504553],[109.94875,7.523004],[109.904769,7.551595],[109.816436,7.572704],[109.722364,7.575862],[109.653013,7.559573],[109.535885,7.448694],[109.464034,7.344605]]],[[[113.769439,7.636856],[113.773699,7.601789],[113.833975,7.616248],[113.831568,7.644666],[113.769439,7.636856]]],[[[116.27348,8.87967],[116.294128,8.858133],[116.33209,8.901039],[116.30598,8.917273],[116.27348,8.87967]]],[[[112.476586,16.001357],[112.569918,16.011189],[112.612233,16.039391],[112.588066,16.070812],[112.462235,16.044064],[112.448531,16.005226],[112.476586,16.001357]]],[[[112.537511,8.84637],[112.570752,8.815387],[112.639825,8.818535],[112.598251,8.858961],[112.537511,8.84637]]],[[[115.180069,8.376712],[115.194328,8.355313],[115.262753,8.343368],[115.267382,8.366759],[115.180069,8.376712]]],[[[114.469337,10.835987],[114.475171,10.814413],[114.513226,10.848668],[114.565169,10.836482],[114.59341,10.856572],[114.587299,10.909097],[114.554707,10.90103],[114.469337,10.835987]]],[[[112.409365,16.295285],[112.383532,16.265831],[112.475845,16.288847],[112.538808,16.289008],[112.529085,16.318297],[112.409365,16.295285]]],[[[112.348903,16.911813],[112.333995,16.962499],[112.303811,16.960254],[112.348903,16.911813]]],[[[111.499933,16.451974],[111.546043,16.434606],[111.550673,16.453421],[111.499933,16.451974]]],[[[115.500064,9.898181],[115.54849,9.868943],[115.581267,9.917176],[115.517842,9.933692],[115.500064,9.898181]]],[[[116.488662,10.395968],[116.461903,10.349127],[116.466996,10.308878],[116.566532,10.304424],[116.644771,10.334941],[116.63792,10.364961],[116.514958,10.349292],[116.542365,10.420045],[116.488662,10.395968]]],[[[113.894715,8.00496],[113.905086,7.963614],[113.97064,7.944683],[113.939993,8.018242],[113.894715,8.00496]]],[[[114.507855,8.120174],[114.520818,8.103242],[114.595725,8.120672],[114.62452,8.149387],[114.596002,8.158184],[114.507855,8.120174]]],[[[114.669983,8.210296],[114.691186,8.185071],[114.741556,8.189386],[114.726649,8.210628],[114.669983,8.210296]]],[[[115.43201,9.364898],[115.470065,9.359108],[115.456176,9.417007],[115.43201,9.364898]]],[[[113.638145,8.976735],[113.654533,8.961994],[113.730736,9.003895],[113.719255,9.019958],[113.638145,8.976735]]],[[[116.457274,9.174594],[116.481903,9.136852],[116.490514,9.183863],[116.457274,9.174594]]],[[[112.583622,4.97024],[112.603251,4.939838],[112.630843,4.947355],[112.641399,4.98661],[112.596585,4.990619],[112.583622,4.97024]]],[[[113.939252,8.875031],[113.91203,8.889112],[113.893604,8.862606],[113.932122,8.841565],[113.939252,8.875031]]],[[[112.010944,3.849849],[112.055295,3.840146],[112.036962,3.878957],[112.010944,3.849849]]],[[[109.936342,7.848356],[109.948009,7.815633],[109.988286,7.812643],[110.05023,7.846529],[110.082822,7.896689],[110.077914,7.949499],[110.033008,7.944517],[109.952824,7.88855],[109.936342,7.848356]]],[[[114.697205,11.00441],[114.71026,11.002105],[114.793315,11.076326],[114.799518,11.104956],[114.766556,11.110221],[114.710538,11.039794],[114.697205,11.00441]]],[[[114.910628,10.862994],[114.930905,10.841751],[114.960164,10.902018],[114.934053,10.902841],[114.910628,10.862994]]],[[[111.572987,16.469983],[111.61419,16.440395],[111.592431,16.490724],[111.572987,16.469983]]],[[[114.619798,11.432026],[114.652576,11.43712],[114.661835,11.522565],[114.619798,11.515829],[114.619798,11.432026]]],[[[112.507512,16.465963],[112.586677,16.525609],[112.575289,16.537183],[112.499641,16.493618],[112.507512,16.465963]]],[[[114.79174,8.161005],[114.777111,8.114032],[114.811925,8.11038],[114.79174,8.161005]]],[[[116.7269,11.5017],[116.765048,11.430218],[116.772177,11.445502],[116.738196,11.514844],[116.7269,11.5017]]],[[[111.690486,16.587647],[111.727707,16.559524],[111.716967,16.594236],[111.690486,16.587647]]],[[[113.846012,10.018737],[113.865364,10.003216],[113.872493,10.122908],[113.856568,10.122083],[113.846012,10.018737]]],[[[111.761688,16.061789],[111.776688,16.029722],[111.828447,16.049382],[111.829558,16.070973],[111.761688,16.061789]]],[[[112.613621,5.038222],[112.656862,4.997801],[112.662695,5.025361],[112.613621,5.038222]]],[[[115.97728,9.322213],[115.926355,9.311293],[115.942929,9.269759],[115.999317,9.293753],[115.97728,9.322213]]],[[[113.660274,9.231034],[113.677033,9.202732],[113.697218,9.225738],[113.660274,9.231034]]],[[[114.703223,16.170359],[114.816185,16.198538],[114.802944,16.2148],[114.704612,16.199343],[114.703223,16.170359]]],[[[115.28266,10.191731],[115.290808,10.171267],[115.3334,10.200312],[115.28266,10.191731]]],[[[114.665816,7.589989],[114.687946,7.564559],[114.724241,7.606942],[114.677946,7.610432],[114.665816,7.589989]]],[[[115.257845,8.509728],[115.268493,8.477888],[115.296086,8.511054],[115.257845,8.509728]]],[[[110.459761,8.116356],[110.471243,8.072199],[110.554297,8.093614],[110.599759,8.156856],[110.568186,8.172623],[110.461613,8.128307],[110.459761,8.116356]]],[[[113.222039,8.074026],[113.28352,8.110878],[113.26102,8.116522],[113.222039,8.074026]]],[[[114.242489,10.241895],[114.263044,10.23975],[114.326284,10.284627],[114.312488,10.300795],[114.264988,10.275388],[114.242489,10.241895]]],[[[114.493041,10.717228],[114.562762,10.778179],[114.539244,10.793497],[114.493041,10.717228]]],[[[114.688779,11.469165],[114.73063,11.428903],[114.720538,11.491841],[114.688779,11.469165]]],[[[116.63829,10.504136],[116.708474,10.49276],[116.699215,10.517489],[116.63829,10.504136]]],[[[117.770867,10.773566],[117.798737,10.753306],[117.835867,10.803708],[117.832811,10.836482],[117.801608,10.839446],[117.770867,10.773566]]],[[[112.46279,5.029871],[112.506493,5.005151],[112.499086,5.034381],[112.46279,5.029871]]],[[[112.22196,3.88063],[112.266589,3.872601],[112.243256,3.906727],[112.22196,3.88063]]],[[[112.248811,3.945201],[112.284922,3.94771],[112.259182,3.973637],[112.248811,3.945201]]],[[[115.509509,8.490657],[115.521916,8.460308],[115.554323,8.461138],[115.55886,8.522994],[115.514138,8.519345],[115.509509,8.490657]]],[[[110.460595,7.799852],[110.487724,7.783405],[110.511612,7.805832],[110.485039,7.827759],[110.460595,7.799852]]],[[[110.609018,8.010937],[110.642629,7.98902],[110.641796,8.031027],[110.609018,8.010937]]],[[[111.539099,7.544281],[111.583543,7.543284],[111.612338,7.592316],[111.56345,7.60262],[111.539099,7.544281]]],[[[111.925482,8.070871],[111.965204,8.047463],[112.018722,8.065559],[112.013166,8.093282],[111.954556,8.10623],[111.925482,8.070871]]],[[[112.346032,8.926052],[112.392698,8.919592],[112.385013,8.947088],[112.346032,8.926052]]],[[[117.257911,10.32059],[117.2993,10.313992],[117.27467,10.358199],[117.257911,10.32059]]],[[[114.213044,16.04068],[114.307765,16.034073],[114.306469,16.0576],[114.213044,16.04068]]],[[[114.066565,10.917823],[114.109898,10.918317],[114.101194,10.946798],[114.066565,10.917823]]],[[[111.658171,8.6727],[111.665764,8.622804],[111.717893,8.649825],[111.69743,8.678998],[111.658171,8.6727]]],[[[116.080797,10.804861],[116.11163,10.791026],[116.097464,10.829894],[116.080797,10.804861]]],[[[114.854147,7.244317],[114.819888,7.192917],[114.86961,7.198739],[114.854147,7.244317]]],[[[113.599719,6.962128],[113.576479,6.922682],[113.608145,6.920185],[113.599719,6.962128]]],[[[112.527511,5.794379],[112.562974,5.75918],[112.561863,5.820735],[112.527511,5.794379]]],[[[114.868314,7.983706],[114.883684,7.954813],[114.920072,7.972747],[114.914239,8.007616],[114.868314,7.983706]]],[[[111.670486,7.651314],[111.70743,7.648821],[111.749651,7.703989],[111.726504,7.730241],[111.691226,7.711798],[111.670486,7.651314]]],[[[114.59878,8.846039],[114.645539,8.844713],[114.682205,8.881161],[114.665353,8.89988],[114.617206,8.881161],[114.59878,8.846039]]],[[[116.04552,10.095506],[116.070242,10.063975],[116.096075,10.093526],[116.070427,10.129015],[116.04552,10.095506]]],[[[117.2668,10.691691],[117.404761,10.670766],[117.418557,10.702565],[117.369299,10.742433],[117.293003,10.73535],[117.2668,10.691691]]],[[[112.52316,5.656072],[112.545011,5.616359],[112.565844,5.630543],[112.561585,5.677096],[112.528623,5.687106],[112.52316,5.656072]]],[[[112.583159,5.561624],[112.614362,5.465492],[112.639362,5.480013],[112.616214,5.5688],[112.583159,5.561624]]],[[[112.651028,5.106866],[112.652973,5.060269],[112.682602,5.048745],[112.718898,5.075802],[112.678528,5.121228],[112.651028,5.106866]]],[[[111.63882,7.907152],[111.70743,7.886225],[111.713633,7.927413],[111.651782,7.932561],[111.63882,7.907152]]],[[[112.892044,7.844203],[112.929636,7.827759],[112.93195,7.867457],[112.892044,7.844203]]],[[[112.244274,8.874534],[112.281496,8.854819],[112.288441,8.885633],[112.244274,8.874534]]],[[[117.348188,10.090389],[117.385224,10.063645],[117.373836,10.106566],[117.348188,10.090389]]],[[[116.694863,16.34549],[116.713567,16.296733],[116.74764,16.321677],[116.747733,16.360453],[116.718104,16.373484],[116.694863,16.34549]]],[[[114.448412,16.034073],[114.521651,16.056472],[114.465449,16.067428],[114.448412,16.034073]]],[[[112.993153,19.472312],[113.038801,19.480532],[113.029079,19.528895],[112.993616,19.526051],[112.993153,19.472312]]],[[[113.832124,19.158377],[113.873975,19.151407],[113.914715,19.172155],[113.920363,19.22346],[113.875919,19.236917],[113.806754,19.223143],[113.799531,19.199077],[113.832124,19.158377]]],[[[112.557141,5.109538],[112.56927,5.071793],[112.610844,5.091668],[112.601677,5.119725],[112.557141,5.109538]]],[[[112.907229,4.99279],[112.94371,4.991621],[112.952598,5.048077],[112.911025,5.038222],[112.907229,4.99279]]],[[[115.361825,13.948906],[115.397658,13.924984],[115.438584,13.943536],[115.423399,13.977382],[115.361825,13.948906]]],[[[112.226497,16.759352],[112.262145,16.778135],[112.210849,16.795954],[112.226497,16.759352]]],[[[112.233626,15.696021],[112.251774,15.742989],[112.203627,15.71426],[112.233626,15.696021]]],[[[112.611862,5.367842],[112.640195,5.347976],[112.685102,5.371849],[112.691028,5.406737],[112.64538,5.409575],[112.611862,5.367842]]],[[[114.949146,7.509041],[114.981368,7.476458],[115.012108,7.48477],[115.013867,7.525996],[114.949146,7.509041]]],[[[111.553728,7.807825],[111.585209,7.771444],[111.619653,7.840549],[111.603913,7.861478],[111.553728,7.807825]]],[[[114.926183,16.036652],[114.895535,16.036168],[114.910998,16.002002],[114.926183,16.036652]]],[[[116.749492,9.056554],[116.699308,9.048937],[116.740603,9.028569],[116.749492,9.056554]]],[[[113.938604,15.835278],[113.973233,15.805595],[113.97064,15.839311],[113.938604,15.835278]]],[[[112.646306,16.38571],[112.681769,16.40083],[112.659917,16.426725],[112.646306,16.38571]]],[[[115.758209,10.461104],[115.776264,10.434721],[115.802005,10.463577],[115.758209,10.461104]]],[[[112.512049,9.544847],[112.508345,9.525666],[112.568715,9.516902],[112.567233,9.553941],[112.512049,9.544847]]],[[[114.610169,15.649365],[114.58128,15.625468],[114.611002,15.615295],[114.610169,15.649365]]],[[[117.299392,11.077642],[117.2643,11.062833],[117.304485,11.027287],[117.299392,11.077642]]],[[[117.690776,11.048845],[117.653369,11.046212],[117.690313,11.016589],[117.690776,11.048845]]],[[[114.166841,9.384585],[114.175267,9.342233],[114.194156,9.391533],[114.166841,9.384585]]]]}},{"type":"Feature","properties":{"adcode":460400,"name":"儋州市","center":[109.576782,19.517486],"centroid":[109.390059,19.579264],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":3,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.928671,19.524313],[108.939596,19.497287],[108.982744,19.477213],[108.997373,19.431522],[109.04478,19.430415],[109.051447,19.487803],[109.117557,19.46757],[109.13052,19.479584],[109.178389,19.399262],[109.26774,19.376803],[109.318943,19.398155],[109.384035,19.355448],[109.424405,19.354815],[109.457275,19.39942],[109.483848,19.406063],[109.506348,19.359561],[109.468386,19.301178],[109.541625,19.311939],[109.587365,19.243249],[109.611995,19.252589],[109.634031,19.20256],[109.673105,19.207627],[109.686994,19.178965],[109.706808,19.22156],[109.697271,19.271267],[109.713382,19.309881],[109.700234,19.349436],[109.647272,19.357505],[109.646439,19.402425],[109.737734,19.407486],[109.751993,19.416974],[109.728197,19.496023],[109.760048,19.528895],[109.7694,19.578508],[109.709308,19.57756],[109.659402,19.611048],[109.664216,19.629685],[109.582921,19.637581],[109.557366,19.697421],[109.599402,19.730726],[109.569218,19.797947],[109.564588,19.854888],[109.498663,19.873339],[109.410794,19.895256],[109.349591,19.898724],[109.30811,19.9178],[109.264592,19.90503],[109.255611,19.867189],[109.218574,19.855834],[109.15913,19.790689],[109.169501,19.736724],[109.147649,19.704998],[109.093668,19.689844],[109.048576,19.620051],[108.993392,19.586723],[108.928671,19.524313]]]]}},{"type":"Feature","properties":{"adcode":469001,"name":"五指山市","center":[109.516662,18.776921],"centroid":[109.511892,18.824035],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":4,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.715419,18.833686],[109.699123,18.889379],[109.730512,18.913649],[109.676531,18.925862],[109.601532,18.910318],[109.55357,18.946321],[109.524033,19.030986],[109.468386,19.032254],[109.456349,18.995635],[109.424775,18.990403],[109.367739,18.936171],[109.34848,18.946321],[109.32635,18.926338],[109.343109,18.877163],[109.374591,18.853998],[109.353387,18.812896],[109.356628,18.710653],[109.398109,18.671104],[109.408016,18.627733],[109.448293,18.655378],[109.48857,18.64664],[109.539866,18.659508],[109.533662,18.694295],[109.576717,18.714782],[109.619865,18.678252],[109.641809,18.72304],[109.703012,18.721769],[109.681531,18.786071],[109.689216,18.830036],[109.715419,18.833686]]]]}},{"type":"Feature","properties":{"adcode":469002,"name":"琼海市","center":[110.466785,19.246011],"centroid":[110.421962,19.210377],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":5,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.610593,19.084394],[110.619296,19.152041],[110.676703,19.286302],[110.706517,19.320167],[110.730035,19.378859],[110.633555,19.391354],[110.604574,19.350386],[110.584111,19.367787],[110.581426,19.419504],[110.546242,19.46836],[110.504853,19.46836],[110.484761,19.443223],[110.450317,19.447492],[110.423928,19.413495],[110.368744,19.391829],[110.327356,19.315261],[110.3593,19.298646],[110.344392,19.228368],[110.300226,19.21586],[110.224857,19.221718],[110.170598,19.191317],[110.150876,19.208419],[110.115229,19.133191],[110.124118,19.04747],[110.158562,18.99944],[110.229579,19.002452],[110.249949,18.976292],[110.465039,19.074411],[110.477539,19.096912],[110.521797,19.102932],[110.610593,19.084394]]]]}},{"type":"Feature","properties":{"adcode":469005,"name":"文昌市","center":[110.753975,19.612986],"centroid":[110.788535,19.747363],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":6,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.730035,19.378859],[110.781053,19.395783],[110.844015,19.450179],[110.920774,19.552598],[111.008921,19.60394],[111.071327,19.628895],[111.044013,19.763551],[111.013643,19.850472],[110.969569,20.010151],[110.940959,20.028583],[110.871515,20.011569],[110.808738,20.035672],[110.778368,20.068276],[110.744665,20.073946],[110.717258,20.148734],[110.687073,20.16353],[110.655685,20.134409],[110.56226,20.109691],[110.526612,20.075206],[110.598,19.98305],[110.634666,19.965401],[110.675314,19.907868],[110.676147,19.860092],[110.699573,19.861512],[110.704665,19.805992],[110.670314,19.812776],[110.623,19.735461],[110.623463,19.664109],[110.672814,19.647214],[110.636148,19.593989],[110.641333,19.549122],[110.611518,19.526841],[110.540223,19.535532],[110.519297,19.563341],[110.469854,19.531424],[110.485779,19.502345],[110.520594,19.509931],[110.546242,19.46836],[110.581426,19.419504],[110.584111,19.367787],[110.604574,19.350386],[110.633555,19.391354],[110.730035,19.378859]]]]}},{"type":"Feature","properties":{"adcode":469006,"name":"万宁市","center":[110.388793,18.796216],"centroid":[110.324496,18.830445],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":7,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.158562,18.99944],[110.108284,18.944577],[110.097729,18.911746],[110.045322,18.884778],[110.095785,18.811467],[110.057267,18.758448],[110.014952,18.732885],[110.020786,18.658873],[110.115877,18.592774],[110.137543,18.606123],[110.213931,18.578789],[110.246246,18.609619],[110.329393,18.642509],[110.36754,18.632182],[110.495316,18.649976],[110.500779,18.752732],[110.577908,18.784642],[110.590593,18.839082],[110.585871,18.897786],[110.610593,19.084394],[110.521797,19.102932],[110.477539,19.096912],[110.465039,19.074411],[110.249949,18.976292],[110.229579,19.002452],[110.158562,18.99944]]]]}},{"type":"Feature","properties":{"adcode":469007,"name":"东方市","center":[108.653789,19.10198],"centroid":[108.818801,18.996184],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":8,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.125242,18.878432],[109.089779,18.909842],[109.113668,18.969949],[109.098853,19.028291],[109.008762,19.050005],[109.022929,19.107052],[108.99191,19.13034],[108.954874,19.218869],[108.916171,19.218552],[108.833209,19.25987],[108.783765,19.244674],[108.704136,19.262719],[108.644785,19.349278],[108.605712,19.264619],[108.591082,19.141587],[108.598305,19.055869],[108.630434,19.003086],[108.637841,18.924593],[108.595619,18.872086],[108.593212,18.809404],[108.659785,18.716846],[108.761543,18.732091],[108.81145,18.720022],[108.844412,18.750827],[108.928578,18.790198],[108.987003,18.786547],[109.015151,18.808928],[109.071076,18.807499],[109.094965,18.857012],[109.125242,18.878432]]]]}},{"type":"Feature","properties":{"adcode":469021,"name":"定安县","center":[110.349235,19.684966],"centroid":[110.312936,19.483405],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":9,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.224857,19.221718],[110.300226,19.21586],[110.344392,19.228368],[110.3593,19.298646],[110.327356,19.315261],[110.368744,19.391829],[110.423928,19.413495],[110.450317,19.447492],[110.484761,19.443223],[110.504853,19.46836],[110.546242,19.46836],[110.520594,19.509931],[110.485779,19.502345],[110.469854,19.531424],[110.519297,19.563341],[110.486705,19.593357],[110.455687,19.574559],[110.401151,19.606626],[110.372633,19.654004],[110.393373,19.698053],[110.340041,19.720625],[110.314208,19.697421],[110.262449,19.687318],[110.221616,19.629843],[110.186524,19.636791],[110.160784,19.67153],[110.13134,19.648003],[110.137266,19.56034],[110.192172,19.58925],[110.196339,19.535374],[110.243005,19.517675],[110.227727,19.450654],[110.194024,19.455871],[110.164487,19.426146],[110.165691,19.361459],[110.188283,19.306242],[110.228098,19.301969],[110.224857,19.221718]]]]}},{"type":"Feature","properties":{"adcode":469022,"name":"屯昌县","center":[110.102773,19.362916],"centroid":[110.055723,19.342208],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":10,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.115229,19.133191],[110.150876,19.208419],[110.170598,19.191317],[110.224857,19.221718],[110.228098,19.301969],[110.188283,19.306242],[110.165691,19.361459],[110.164487,19.426146],[110.194024,19.455871],[110.227727,19.450654],[110.243005,19.517675],[110.196339,19.535374],[110.192172,19.58925],[110.137266,19.56034],[110.101803,19.54928],[110.119488,19.503293],[110.072081,19.492071],[110.045785,19.456029],[110.020508,19.485432],[109.938287,19.485749],[109.94699,19.468044],[109.914583,19.42409],[109.912917,19.391671],[109.876436,19.386926],[109.826436,19.343108],[109.822733,19.289626],[109.923565,19.239608],[109.957638,19.188625],[110.026526,19.17564],[110.057267,19.134617],[110.115229,19.133191]]]]}},{"type":"Feature","properties":{"adcode":469023,"name":"澄迈县","center":[110.007147,19.737095],"centroid":[109.990417,19.700201],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":11,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.137266,19.56034],[110.13134,19.648003],[110.160784,19.67153],[110.186524,19.636791],[110.221616,19.629843],[110.262449,19.687318],[110.222357,19.67974],[110.208468,19.716679],[110.228283,19.753767],[110.186246,19.864193],[110.143932,19.889106],[110.161895,19.977693],[110.106525,20.026851],[109.997638,19.979899],[109.965231,19.993608],[109.855047,19.984153],[109.879491,19.885322],[109.842269,19.871446],[109.884121,19.853311],[109.874306,19.799524],[109.897084,19.77933],[109.852732,19.652582],[109.786437,19.608047],[109.7694,19.578508],[109.760048,19.528895],[109.728197,19.496023],[109.751993,19.416974],[109.737734,19.407486],[109.793474,19.379966],[109.857269,19.412388],[109.876436,19.386926],[109.912917,19.391671],[109.914583,19.42409],[109.94699,19.468044],[109.938287,19.485749],[110.020508,19.485432],[110.045785,19.456029],[110.072081,19.492071],[110.119488,19.503293],[110.101803,19.54928],[110.137266,19.56034]]]]}},{"type":"Feature","properties":{"adcode":469024,"name":"临高县","center":[109.687697,19.908293],"centroid":[109.71548,19.809704],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":12,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.855047,19.984153],[109.814307,19.992977],[109.761715,19.981317],[109.712271,20.017398],[109.585328,19.98825],[109.526626,19.943494],[109.498663,19.873339],[109.564588,19.854888],[109.569218,19.797947],[109.599402,19.730726],[109.557366,19.697421],[109.582921,19.637581],[109.664216,19.629685],[109.659402,19.611048],[109.709308,19.57756],[109.7694,19.578508],[109.786437,19.608047],[109.852732,19.652582],[109.897084,19.77933],[109.874306,19.799524],[109.884121,19.853311],[109.842269,19.871446],[109.879491,19.885322],[109.855047,19.984153]]]]}},{"type":"Feature","properties":{"adcode":469025,"name":"白沙黎族自治县","center":[109.452606,19.224584],"centroid":[109.351743,19.20989],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":13,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.298203,18.960911],[109.34848,18.946321],[109.367739,18.936171],[109.424775,18.990403],[109.456349,18.995635],[109.468386,19.032254],[109.524033,19.030986],[109.561347,19.072668],[109.601439,19.053492],[109.613569,19.086454],[109.687734,19.118775],[109.686994,19.178965],[109.673105,19.207627],[109.634031,19.20256],[109.611995,19.252589],[109.587365,19.243249],[109.541625,19.311939],[109.468386,19.301178],[109.506348,19.359561],[109.483848,19.406063],[109.457275,19.39942],[109.424405,19.354815],[109.384035,19.355448],[109.318943,19.398155],[109.26774,19.376803],[109.178389,19.399262],[109.13052,19.479584],[109.117557,19.46757],[109.051447,19.487803],[109.04478,19.430415],[109.043669,19.342792],[109.08265,19.328869],[109.142834,19.265727],[109.120242,19.203985],[109.163667,19.14222],[109.177093,19.083443],[109.271166,19.067438],[109.298203,18.960911]]]]}},{"type":"Feature","properties":{"adcode":469026,"name":"昌江黎族自治县","center":[109.053351,19.260968],"centroid":[108.993675,19.226048],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":14,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.04478,19.430415],[108.997373,19.431522],[108.982744,19.477213],[108.939596,19.497287],[108.928671,19.524313],[108.887004,19.4897],[108.806357,19.450654],[108.747654,19.391671],[108.694137,19.387084],[108.644785,19.349278],[108.704136,19.262719],[108.783765,19.244674],[108.833209,19.25987],[108.916171,19.218552],[108.954874,19.218869],[108.99191,19.13034],[109.022929,19.107052],[109.008762,19.050005],[109.098853,19.028291],[109.113668,18.969949],[109.089779,18.909842],[109.125242,18.878432],[109.141816,18.904449],[109.206722,18.894772],[109.265518,18.905877],[109.298203,18.960911],[109.271166,19.067438],[109.177093,19.083443],[109.163667,19.14222],[109.120242,19.203985],[109.142834,19.265727],[109.08265,19.328869],[109.043669,19.342792],[109.04478,19.430415]]]]}},{"type":"Feature","properties":{"adcode":469027,"name":"乐东黎族自治县","center":[109.175444,18.74758],"centroid":[109.029671,18.639822],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":15,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.405146,18.623443],[109.408016,18.627733],[109.398109,18.671104],[109.356628,18.710653],[109.353387,18.812896],[109.374591,18.853998],[109.343109,18.877163],[109.32635,18.926338],[109.34848,18.946321],[109.298203,18.960911],[109.265518,18.905877],[109.206722,18.894772],[109.141816,18.904449],[109.125242,18.878432],[109.094965,18.857012],[109.071076,18.807499],[109.015151,18.808928],[108.987003,18.786547],[108.928578,18.790198],[108.844412,18.750827],[108.81145,18.720022],[108.761543,18.732091],[108.659785,18.716846],[108.664137,18.673328],[108.641082,18.565279],[108.644971,18.486741],[108.658304,18.462728],[108.70997,18.444119],[108.776728,18.442051],[108.881264,18.416599],[108.932374,18.335288],[109.015243,18.422645],[109.072557,18.452231],[109.195148,18.469407],[109.185056,18.507095],[109.203574,18.553517],[109.246537,18.558921],[109.313295,18.517429],[109.332832,18.575451],[109.405146,18.623443]]]]}},{"type":"Feature","properties":{"adcode":469028,"name":"陵水黎族自治县","center":[110.037218,18.505006],"centroid":[109.951436,18.549546],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":16,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.014952,18.732885],[109.980416,18.76718],[109.94412,18.771942],[109.902361,18.739395],[109.891065,18.754479],[109.830696,18.728597],[109.773474,18.809404],[109.756159,18.788928],[109.771993,18.723675],[109.802177,18.725263],[109.839677,18.67857],[109.804677,18.594364],[109.846621,18.57116],[109.828751,18.511229],[109.781159,18.51107],[109.809955,18.459388],[109.785048,18.426622],[109.805418,18.347543],[109.919676,18.375551],[109.999767,18.359797],[110.070785,18.376187],[110.090507,18.399258],[110.116618,18.506618],[110.213931,18.578789],[110.137543,18.606123],[110.115877,18.592774],[110.020786,18.658873],[110.014952,18.732885]]]]}},{"type":"Feature","properties":{"adcode":469029,"name":"保亭黎族苗族自治县","center":[109.70245,18.636371],"centroid":[109.650759,18.589686],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":17,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.715419,18.833686],[109.689216,18.830036],[109.681531,18.786071],[109.703012,18.721769],[109.641809,18.72304],[109.619865,18.678252],[109.576717,18.714782],[109.533662,18.694295],[109.539866,18.659508],[109.48857,18.64664],[109.448293,18.655378],[109.408016,18.627733],[109.405146,18.623443],[109.423386,18.574657],[109.506163,18.551291],[109.535237,18.53142],[109.536996,18.490717],[109.515607,18.429008],[109.539866,18.396713],[109.665883,18.391462],[109.710882,18.426462],[109.725234,18.493102],[109.781159,18.51107],[109.828751,18.511229],[109.846621,18.57116],[109.804677,18.594364],[109.839677,18.67857],[109.802177,18.725263],[109.771993,18.723675],[109.756159,18.788928],[109.773474,18.809404],[109.715419,18.833686]]]]}},{"type":"Feature","properties":{"adcode":469030,"name":"琼中黎族苗族自治县","center":[109.839996,19.03557],"centroid":[109.854584,19.033919],"childrenNum":0,"level":"city","parent":{"adcode":460000},"subFeatureIndex":18,"acroutes":[100000,460000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.876436,19.386926],[109.857269,19.412388],[109.793474,19.379966],[109.737734,19.407486],[109.646439,19.402425],[109.647272,19.357505],[109.700234,19.349436],[109.713382,19.309881],[109.697271,19.271267],[109.706808,19.22156],[109.686994,19.178965],[109.687734,19.118775],[109.613569,19.086454],[109.601439,19.053492],[109.561347,19.072668],[109.524033,19.030986],[109.55357,18.946321],[109.601532,18.910318],[109.676531,18.925862],[109.730512,18.913649],[109.699123,18.889379],[109.715419,18.833686],[109.773474,18.809404],[109.830696,18.728597],[109.891065,18.754479],[109.902361,18.739395],[109.94412,18.771942],[109.980416,18.76718],[110.014952,18.732885],[110.057267,18.758448],[110.095785,18.811467],[110.045322,18.884778],[110.097729,18.911746],[110.108284,18.944577],[110.158562,18.99944],[110.124118,19.04747],[110.115229,19.133191],[110.057267,19.134617],[110.026526,19.17564],[109.957638,19.188625],[109.923565,19.239608],[109.822733,19.289626],[109.826436,19.343108],[109.876436,19.386926]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/500000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/500000.json new file mode 100644 index 0000000..6fc4758 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/500000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":500101,"name":"万州区","center":[108.380246,30.807807],"centroid":[108.406819,30.704054],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":0,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.034778,30.574187],[108.052847,30.572094],[108.062667,30.574429],[108.072537,30.582159],[108.083339,30.579582],[108.088593,30.572617],[108.103863,30.573382],[108.105631,30.591458],[108.111621,30.59343],[108.127187,30.586104],[108.126647,30.577972],[108.120067,30.576965],[108.12645,30.564],[108.143587,30.566215],[108.153063,30.545879],[108.152523,30.535931],[108.163374,30.540805],[108.171378,30.539314],[108.165633,30.524411],[108.175552,30.510633],[108.184537,30.518167],[108.195045,30.514501],[108.207811,30.49766],[108.230496,30.476705],[108.232755,30.45502],[108.241937,30.443773],[108.223622,30.421274],[108.236732,30.409216],[108.254261,30.403529],[108.261479,30.388605],[108.275031,30.405546],[108.296538,30.401109],[108.298944,30.407562],[108.315835,30.425387],[108.317062,30.433129],[108.33248,30.449336],[108.338814,30.470337],[108.344657,30.476987],[108.378734,30.534884],[108.394593,30.536737],[108.404315,30.548295],[108.410404,30.543261],[108.409717,30.532749],[108.402253,30.529688],[108.399553,30.520504],[108.409962,30.517563],[108.412368,30.503059],[108.427786,30.512567],[108.42101,30.497176],[108.424054,30.488956],[108.440994,30.491011],[108.45268,30.495968],[108.455086,30.489319],[108.479146,30.488956],[108.491765,30.501488],[108.513124,30.501407],[108.528297,30.487505],[108.542929,30.491978],[108.55707,30.486014],[108.564926,30.468564],[108.569935,30.470418],[108.581719,30.485893],[108.591245,30.487787],[108.590606,30.494718],[108.598561,30.493872],[108.611376,30.502173],[108.604551,30.510795],[108.621737,30.515468],[108.620116,30.52288],[108.628611,30.525176],[108.649332,30.537824],[108.649725,30.554215],[108.64344,30.562027],[108.639904,30.574751],[108.654487,30.585017],[108.666223,30.5886],[108.690479,30.586708],[108.700004,30.561786],[108.699415,30.544389],[108.711592,30.537864],[108.715815,30.530373],[108.711887,30.523203],[108.726176,30.515548],[108.723966,30.507572],[108.744196,30.494799],[108.761529,30.505315],[108.77292,30.503502],[108.788534,30.51293],[108.799239,30.50592],[108.806948,30.491414],[108.839011,30.50318],[108.853005,30.514984],[108.854429,30.521913],[108.871663,30.532749],[108.893121,30.557799],[108.894643,30.56702],[108.90952,30.581273],[108.869896,30.610979],[108.871565,30.618103],[108.901713,30.646792],[108.899946,30.676438],[108.896312,30.684039],[108.884331,30.687337],[108.883546,30.695661],[108.872007,30.690112],[108.836016,30.678449],[108.828699,30.679414],[108.823347,30.69168],[108.818094,30.693771],[108.785883,30.683516],[108.779254,30.685125],[108.781022,30.697028],[108.79261,30.706558],[108.789762,30.714277],[108.763444,30.713031],[108.766586,30.720548],[108.762609,30.728106],[108.76639,30.74141],[108.754998,30.740044],[108.749842,30.74555],[108.740169,30.775527],[108.74724,30.782116],[108.740808,30.787259],[108.738549,30.808026],[108.733393,30.81405],[108.715177,30.815094],[108.699955,30.811841],[108.698482,30.822885],[108.685127,30.835976],[108.685078,30.845773],[108.671968,30.852116],[108.665977,30.867972],[108.653014,30.89105],[108.634798,30.885271],[108.625419,30.875358],[108.621589,30.888561],[108.623013,30.912837],[108.628169,30.918253],[108.619233,30.926999],[108.61884,30.934741],[108.608578,30.93807],[108.593307,30.920259],[108.566448,30.912396],[108.552602,30.915405],[108.537577,30.958123],[108.523632,30.973159],[108.531243,30.978051],[108.533894,30.996251],[108.51666,30.990559],[108.506643,30.992604],[108.501094,30.98651],[108.50409,30.977289],[108.496626,30.972839],[108.486413,30.977008],[108.460537,30.967426],[108.454743,30.970232],[108.45327,30.988755],[108.455626,30.994728],[108.440356,31.002545],[108.426509,30.998216],[108.41497,30.998897],[108.395674,30.991641],[108.372792,30.969791],[108.355214,30.960408],[108.339649,30.963135],[108.349027,30.939153],[108.360861,30.932976],[108.346277,30.921222],[108.300269,30.901041],[108.29202,30.892976],[108.268402,30.881659],[108.260055,30.872789],[108.243803,30.882261],[108.244294,30.89113],[108.228237,30.881298],[108.231184,30.87612],[108.225488,30.860908],[108.229956,30.856171],[108.218417,30.852839],[108.200102,30.839188],[108.197254,30.833647],[108.18218,30.824211],[108.167106,30.827182],[108.157482,30.834771],[108.152179,30.831278],[108.131704,30.832001],[108.126057,30.840875],[108.122866,30.833487],[108.109608,30.82931],[108.105287,30.841356],[108.096646,30.84782],[108.090115,30.871545],[108.101654,30.878007],[108.081817,30.885712],[108.071751,30.892695],[108.069149,30.888281],[108.041112,30.876522],[108.0363,30.8701],[108.029426,30.884508],[108.009392,30.907662],[108.000849,30.911915],[107.994711,30.908665],[107.986953,30.901924],[107.95597,30.882983],[107.954202,30.872428],[107.929504,30.859342],[107.896508,30.834932],[107.876131,30.813287],[107.88492,30.806138],[107.905592,30.77601],[107.908243,30.762911],[107.918653,30.75829],[107.959112,30.719262],[108.011405,30.709814],[108.03517,30.715362],[108.047544,30.723684],[108.074894,30.723121],[108.086678,30.713714],[108.074844,30.696304],[108.082259,30.677926],[108.079558,30.664532],[108.0554,30.660027],[108.042585,30.662481],[108.025645,30.648844],[108.023091,30.63617],[108.016954,30.629571],[108.025252,30.60289],[108.033697,30.592424],[108.028051,30.587432],[108.034778,30.574187]]]]}},{"type":"Feature","properties":{"adcode":500102,"name":"涪陵区","center":[107.394905,29.703652],"centroid":[107.334026,29.658582],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":1,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.698482,29.618614],[107.713752,29.642555],[107.718073,29.65682],[107.696616,29.660315],[107.684733,29.666532],[107.674176,29.663362],[107.670101,29.675064],[107.6565,29.686156],[107.64447,29.687821],[107.630427,29.701714],[107.632784,29.719016],[107.640345,29.740701],[107.625075,29.753896],[107.64226,29.76303],[107.638529,29.772976],[107.638627,29.813274],[107.622669,29.802562],[107.605336,29.808161],[107.605238,29.832423],[107.595369,29.835222],[107.604256,29.852014],[107.613585,29.856111],[107.616973,29.865884],[107.626892,29.874522],[107.613094,29.876955],[107.598707,29.888632],[107.602979,29.897389],[107.59473,29.917657],[107.579361,29.923939],[107.573126,29.933827],[107.57946,29.943877],[107.571898,29.951049],[107.56193,29.946146],[107.546807,29.958585],[107.546905,29.965675],[107.53355,29.968551],[107.523779,29.978678],[107.515186,29.959436],[107.500554,29.960611],[107.498197,29.972481],[107.487443,29.972076],[107.471338,29.989453],[107.466968,29.998606],[107.453171,30.001441],[107.448064,29.999092],[107.421156,29.967944],[107.415755,29.970577],[107.383545,29.926614],[107.387129,29.921993],[107.377505,29.910523],[107.379666,29.899132],[107.369354,29.906794],[107.360762,29.897227],[107.342005,29.892929],[107.335818,29.884415],[107.337193,29.873062],[107.323445,29.852947],[107.313084,29.845809],[107.299827,29.847472],[107.29801,29.839603],[107.272379,29.837291],[107.270857,29.851447],[107.265161,29.847472],[107.240512,29.841347],[107.229317,29.84374],[107.210806,29.840292],[107.206583,29.824958],[107.212279,29.816276],[107.198039,29.809622],[107.186992,29.79473],[107.153111,29.784827],[107.111572,29.76299],[107.102635,29.754546],[107.086726,29.761813],[107.070277,29.758524],[107.070032,29.751217],[107.041406,29.734407],[107.027166,29.717189],[107.009195,29.712762],[107.002223,29.714468],[106.993581,29.679331],[106.975315,29.634142],[106.966624,29.599546],[106.958768,29.582508],[106.953268,29.551311],[106.953612,29.535811],[106.947278,29.510826],[106.945952,29.497029],[106.964415,29.488685],[106.98052,29.488767],[106.993925,29.482579],[107.00453,29.471058],[107.012927,29.487708],[107.019997,29.487057],[107.015873,29.473338],[107.034581,29.467435],[107.034482,29.453103],[107.025055,29.441782],[107.029228,29.410827],[107.034581,29.406713],[107.026381,29.402802],[107.035121,29.391231],[107.051619,29.394205],[107.052552,29.388705],[107.043321,29.378437],[107.07229,29.362829],[107.083387,29.359813],[107.10018,29.361606],[107.114812,29.366741],[107.109166,29.383856],[107.110442,29.391598],[107.125124,29.387564],[107.134158,29.394613],[107.146827,29.396365],[107.142947,29.408179],[107.134846,29.411438],[107.148741,29.419259],[107.155272,29.417304],[107.16082,29.424432],[107.167056,29.420603],[107.173096,29.408342],[107.185911,29.412945],[107.203244,29.411316],[107.199561,29.399135],[107.214439,29.39775],[107.207221,29.385934],[107.20732,29.366293],[107.225487,29.367801],[107.239285,29.364744],[107.241691,29.379415],[107.237713,29.394817],[107.226666,29.406835],[107.227598,29.418159],[107.240512,29.426795],[107.245422,29.424391],[107.260938,29.429035],[107.262264,29.436162],[107.277338,29.440357],[107.30567,29.465318],[107.313526,29.487912],[107.323248,29.497558],[107.328993,29.509321],[107.348683,29.515547],[107.358601,29.51575],[107.365868,29.522383],[107.380599,29.523197],[107.391548,29.530969],[107.427491,29.505658],[107.431762,29.483475],[107.441386,29.491575],[107.450519,29.490028],[107.463826,29.498617],[107.4625,29.502117],[107.475905,29.50635],[107.478507,29.497151],[107.513664,29.461165],[107.532666,29.423047],[107.546562,29.431845],[107.552798,29.447809],[107.56139,29.453062],[107.574206,29.452533],[107.577446,29.462427],[107.595958,29.480951],[107.613143,29.479526],[107.620558,29.483638],[107.615009,29.512373],[107.607546,29.514652],[107.608135,29.532474],[107.629003,29.539147],[107.651197,29.553304],[107.654634,29.562457],[107.666958,29.573804],[107.687532,29.600481],[107.69804,29.605889],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500103,"name":"渝中区","center":[106.56288,29.556742],"centroid":[106.540387,29.549305],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":2,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.588199,29.571242],[106.572487,29.562619],[106.560849,29.567175],[106.545382,29.566483],[106.530407,29.552369],[106.502321,29.557494],[106.494022,29.554809],[106.482778,29.548097],[106.495594,29.546958],[106.500995,29.529789],[106.532272,29.52869],[106.539441,29.540489],[106.556185,29.5411],[106.583731,29.547812],[106.589623,29.556518],[106.588199,29.571242]]]]}},{"type":"Feature","properties":{"adcode":500104,"name":"大渡口区","center":[106.48613,29.481002],"centroid":[106.458637,29.417574],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":3,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.424298,29.426306],[106.423071,29.426591],[106.417522,29.420563],[106.416786,29.430175],[106.410108,29.439176],[106.406965,29.439054],[106.398422,29.440438],[106.393708,29.429361],[106.398471,29.413638],[106.392726,29.408831],[106.398225,29.386016],[106.405738,29.380963],[106.409568,29.368086],[106.39631,29.357286],[106.400877,29.340777],[106.411876,29.342245],[106.435542,29.352965],[106.441926,29.358916],[106.455036,29.380596],[106.469619,29.389153],[106.49196,29.39775],[106.509735,29.397506],[106.528197,29.388338],[106.534924,29.392005],[106.526528,29.411275],[106.498343,29.446913],[106.502075,29.47745],[106.509538,29.481765],[106.521765,29.479974],[106.523729,29.485673],[106.50291,29.494994],[106.480569,29.490273],[106.468097,29.498128],[106.454888,29.483556],[106.462696,29.485266],[106.47065,29.475048],[106.458915,29.472443],[106.451942,29.456401],[106.458767,29.448379],[106.454545,29.430623],[106.457884,29.41983],[106.451402,29.414127],[106.439372,29.417834],[106.430436,29.415512],[106.424298,29.426306]]]]}},{"type":"Feature","properties":{"adcode":500105,"name":"江北区","center":[106.532844,29.575352],"centroid":[106.707043,29.613282],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":4,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.46191,29.608247],[106.451942,29.586452],[106.463432,29.581165],[106.487688,29.555135],[106.494022,29.554809],[106.502321,29.557494],[106.530407,29.552369],[106.545382,29.566483],[106.560849,29.567175],[106.572487,29.562619],[106.588199,29.571242],[106.581177,29.578766],[106.580392,29.590275],[106.589672,29.609344],[106.602242,29.615565],[106.623307,29.614995],[106.633274,29.592023],[106.641916,29.586818],[106.65645,29.591861],[106.672654,29.566321],[106.683652,29.562131],[106.692343,29.564287],[106.709627,29.577627],[106.730937,29.583402],[106.740512,29.589665],[106.748614,29.607718],[106.766977,29.610401],[106.792461,29.604059],[106.801152,29.589055],[106.821087,29.591576],[106.843527,29.57657],[106.85045,29.575431],[106.861547,29.602067],[106.873086,29.615809],[106.893659,29.657064],[106.87775,29.659339],[106.866359,29.646985],[106.850548,29.659908],[106.833706,29.6632],[106.825703,29.659502],[106.819811,29.663647],[106.822118,29.67153],[106.809401,29.674699],[106.806701,29.671123],[106.793001,29.678599],[106.78323,29.669986],[106.782543,29.662428],[106.754162,29.651578],[106.747926,29.655154],[106.749988,29.663606],[106.744735,29.670433],[106.741297,29.662184],[106.73462,29.667263],[106.729906,29.646294],[106.723915,29.640604],[106.712671,29.646945],[106.70948,29.631337],[106.687237,29.623654],[106.648054,29.63719],[106.621834,29.635199],[106.61162,29.639873],[106.602929,29.634386],[106.595613,29.638572],[106.582798,29.633695],[106.579213,29.619061],[106.57337,29.620362],[106.562617,29.603734],[106.562175,29.589543],[106.549851,29.581531],[106.530308,29.587469],[106.506543,29.573032],[106.497754,29.573113],[106.486363,29.585639],[106.485724,29.596984],[106.492009,29.599424],[106.482434,29.613329],[106.478506,29.609751],[106.46191,29.608247]]]]}},{"type":"Feature","properties":{"adcode":500106,"name":"沙坪坝区","center":[106.4542,29.541224],"centroid":[106.368248,29.624462],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":5,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.482778,29.548097],[106.494022,29.554809],[106.487688,29.555135],[106.463432,29.581165],[106.451942,29.586452],[106.46191,29.608247],[106.462843,29.616296],[106.453121,29.620321],[106.45209,29.632109],[106.468293,29.645969],[106.469766,29.657714],[106.457589,29.668889],[106.448603,29.661453],[106.448702,29.652187],[106.424396,29.65747],[106.429061,29.662956],[106.426508,29.680021],[106.433431,29.711706],[106.442073,29.730387],[106.442908,29.743624],[106.431418,29.749146],[106.417768,29.750202],[106.40947,29.738833],[106.39361,29.740457],[106.382758,29.747847],[106.380647,29.744233],[106.366604,29.746994],[106.365327,29.735504],[106.32968,29.732702],[106.327126,29.728519],[106.317797,29.738752],[106.305669,29.736641],[106.297076,29.706467],[106.285636,29.697896],[106.280431,29.703298],[106.278712,29.67669],[106.284506,29.675268],[106.287698,29.663484],[106.2794,29.652553],[106.287649,29.635849],[106.279105,29.637841],[106.273017,29.631215],[106.282493,29.626744],[106.274882,29.612231],[106.265602,29.605889],[106.260005,29.592633],[106.251707,29.559406],[106.253425,29.532841],[106.264031,29.525354],[106.285488,29.532881],[106.293639,29.531254],[106.297322,29.542442],[106.305718,29.538415],[106.312789,29.544883],[106.33405,29.544029],[106.343526,29.554891],[106.356145,29.559772],[106.37392,29.546633],[106.379763,29.546958],[106.379272,29.536584],[106.390762,29.54053],[106.395083,29.547934],[106.403528,29.538903],[106.41384,29.540815],[106.411237,29.505536],[106.407506,29.492918],[106.424544,29.493325],[106.426999,29.498006],[106.44281,29.494139],[106.448063,29.509524],[106.461615,29.52808],[106.460093,29.532108],[106.483466,29.539025],[106.482778,29.548097]]]]}},{"type":"Feature","properties":{"adcode":500107,"name":"九龙坡区","center":[106.480989,29.523492],"centroid":[106.364401,29.428501],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":6,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.253278,29.519698],[106.261969,29.516524],[106.260594,29.494262],[106.267026,29.494994],[106.26025,29.466051],[106.262705,29.451596],[106.278565,29.449031],[106.285636,29.441986],[106.298549,29.440764],[106.30724,29.434248],[106.307339,29.426835],[106.320596,29.427976],[106.323002,29.420481],[106.317257,29.415227],[106.329041,29.413679],[106.331005,29.39555],[106.322314,29.38732],[106.314409,29.388827],[106.30891,29.379985],[106.295554,29.378763],[106.294425,29.384549],[106.284359,29.38516],[106.282248,29.368167],[106.275668,29.363236],[106.277829,29.352924],[106.267468,29.350234],[106.261232,29.335519],[106.274539,29.32871],[106.276945,29.322269],[106.289171,29.320679],[106.27994,29.286913],[106.298697,29.256483],[106.311905,29.254769],[106.339844,29.26456],[106.3559,29.27688],[106.384035,29.283039],[106.393217,29.294948],[106.385999,29.312401],[106.395525,29.339351],[106.400877,29.340777],[106.39631,29.357286],[106.409568,29.368086],[106.405738,29.380963],[106.398225,29.386016],[106.392726,29.408831],[106.398471,29.413638],[106.393708,29.429361],[106.398422,29.440438],[106.406965,29.439054],[106.408537,29.441375],[106.410599,29.440397],[106.410108,29.439176],[106.416786,29.430175],[106.417522,29.420563],[106.423071,29.426591],[106.423316,29.427202],[106.423709,29.427691],[106.423955,29.427731],[106.424249,29.426795],[106.424298,29.426306],[106.430436,29.415512],[106.439372,29.417834],[106.451402,29.414127],[106.457884,29.41983],[106.454545,29.430623],[106.458767,29.448379],[106.451942,29.456401],[106.458915,29.472443],[106.47065,29.475048],[106.462696,29.485266],[106.454888,29.483556],[106.468097,29.498128],[106.480569,29.490273],[106.50291,29.494994],[106.523729,29.485673],[106.521765,29.479974],[106.542044,29.472972],[106.552011,29.48726],[106.549851,29.495523],[106.534187,29.505454],[106.532272,29.52869],[106.500995,29.529789],[106.495594,29.546958],[106.482778,29.548097],[106.483466,29.539025],[106.460093,29.532108],[106.461615,29.52808],[106.448063,29.509524],[106.44281,29.494139],[106.426999,29.498006],[106.424544,29.493325],[106.407506,29.492918],[106.411237,29.505536],[106.41384,29.540815],[106.403528,29.538903],[106.395083,29.547934],[106.390762,29.54053],[106.379272,29.536584],[106.379763,29.546958],[106.37392,29.546633],[106.356145,29.559772],[106.343526,29.554891],[106.33405,29.544029],[106.312789,29.544883],[106.305718,29.538415],[106.297322,29.542442],[106.293639,29.531254],[106.285488,29.532881],[106.264031,29.525354],[106.253425,29.532841]]],[[[106.423955,29.427731],[106.423709,29.427691],[106.423316,29.427202],[106.423071,29.426591],[106.424298,29.426306],[106.424249,29.426795],[106.423955,29.427731]]],[[[106.410599,29.440397],[106.408537,29.441375],[106.406965,29.439054],[106.410108,29.439176],[106.410599,29.440397]]]]}},{"type":"Feature","properties":{"adcode":500108,"name":"南岸区","center":[106.560813,29.523992],"centroid":[106.660614,29.535521],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":7,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.801152,29.589055],[106.792461,29.604059],[106.766977,29.610401],[106.748614,29.607718],[106.740512,29.589665],[106.730937,29.583402],[106.709627,29.577627],[106.692343,29.564287],[106.683652,29.562131],[106.672654,29.566321],[106.65645,29.591861],[106.641916,29.586818],[106.633274,29.592023],[106.623307,29.614995],[106.602242,29.615565],[106.589672,29.609344],[106.580392,29.590275],[106.581177,29.578766],[106.588199,29.571242],[106.589623,29.556518],[106.583731,29.547812],[106.556185,29.5411],[106.539441,29.540489],[106.532272,29.52869],[106.534187,29.505454],[106.549851,29.495523],[106.552011,29.48726],[106.56954,29.485144],[106.578772,29.469878],[106.586677,29.473094],[106.59581,29.463974],[106.606808,29.474315],[106.627971,29.465847],[106.642849,29.469959],[106.655321,29.462346],[106.65866,29.46772],[106.673341,29.458437],[106.688808,29.468453],[106.683358,29.476473],[106.69308,29.483353],[106.693276,29.48897],[106.703686,29.487993],[106.705257,29.482254],[106.732115,29.483923],[106.738548,29.486731],[106.764179,29.530928],[106.7712,29.549155],[106.787993,29.576326],[106.801152,29.589055]]]]}},{"type":"Feature","properties":{"adcode":500109,"name":"北碚区","center":[106.437868,29.82543],"centroid":[106.513996,29.861006],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":8,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.629101,30.079448],[106.591587,30.047071],[106.598265,30.039582],[106.596546,30.030432],[106.582209,30.022214],[106.572192,30.012698],[106.568706,29.991154],[106.55697,29.961259],[106.544941,29.935246],[106.526773,29.945822],[106.519506,29.927546],[106.505659,29.931234],[106.501338,29.922115],[106.488916,29.908415],[106.479046,29.908172],[106.477131,29.891875],[106.466967,29.882996],[106.465347,29.870832],[106.452581,29.869128],[106.462892,29.88478],[106.458522,29.887456],[106.452777,29.878212],[106.44281,29.883564],[106.46191,29.92402],[106.455281,29.926776],[106.443841,29.906834],[106.433235,29.901889],[106.423414,29.904564],[106.429601,29.892362],[106.423611,29.884334],[106.409077,29.889443],[106.396507,29.898118],[106.390958,29.906672],[106.390909,29.921304],[106.383053,29.92787],[106.339598,29.901767],[106.314409,29.884861],[106.325653,29.872737],[106.329385,29.859639],[106.336407,29.860247],[106.330956,29.848323],[106.342446,29.842523],[106.337585,29.834532],[106.345883,29.836114],[106.34225,29.816804],[106.351284,29.812422],[106.372889,29.814207],[106.344214,29.779307],[106.334197,29.771311],[106.324279,29.774843],[106.31598,29.764898],[106.305669,29.736641],[106.317797,29.738752],[106.327126,29.728519],[106.32968,29.732702],[106.365327,29.735504],[106.366604,29.746994],[106.380647,29.744233],[106.382758,29.747847],[106.39361,29.740457],[106.40947,29.738833],[106.417768,29.750202],[106.431418,29.749146],[106.442908,29.743624],[106.442073,29.730387],[106.433431,29.711706],[106.426508,29.680021],[106.429061,29.662956],[106.424396,29.65747],[106.448702,29.652187],[106.448603,29.661453],[106.457589,29.668889],[106.457147,29.687415],[106.469373,29.697165],[106.487197,29.699399],[106.496134,29.68969],[106.506887,29.685425],[106.514743,29.694281],[106.512337,29.703461],[106.518377,29.71199],[106.536741,29.723321],[106.536741,29.730306],[106.524956,29.742609],[106.520144,29.764614],[106.515676,29.769688],[106.530996,29.775979],[106.532469,29.767333],[106.54116,29.763112],[106.530799,29.758687],[106.532076,29.749471],[106.5417,29.754871],[106.556529,29.754789],[106.57175,29.763355],[106.589181,29.754992],[106.588543,29.76161],[106.604746,29.769322],[106.592864,29.784705],[106.609018,29.799437],[106.601653,29.799843],[106.593011,29.808932],[106.5936,29.79964],[106.584909,29.799599],[106.587217,29.812665],[106.598805,29.816763],[106.598461,29.825607],[106.612848,29.832626],[106.622865,29.831327],[106.620262,29.840252],[106.634109,29.839481],[106.646581,29.849378],[106.64987,29.863857],[106.658512,29.869534],[106.668775,29.900348],[106.67506,29.897713],[106.678889,29.908212],[106.669118,29.912712],[106.679822,29.923615],[106.678497,29.92864],[106.687384,29.935489],[106.674274,29.932206],[106.674225,29.961948],[106.679724,29.97961],[106.677465,29.98601],[106.676385,30.015087],[106.678889,30.026141],[106.670739,30.034805],[106.678153,30.058121],[106.677024,30.063989],[106.648447,30.085559]]]]}},{"type":"Feature","properties":{"adcode":500110,"name":"綦江区","center":[106.651417,29.028091],"centroid":[106.722706,28.87864],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":9,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.04337,28.919879],[107.053288,28.919183],[107.057315,28.932771],[107.051275,28.942143],[107.043124,28.945785],[107.02913,28.941284],[107.015971,28.952087],[107.013614,28.969599],[107.022256,28.974058],[107.02967,28.985717],[107.024564,28.995983],[107.01715,28.998724],[107.003892,29.016023],[106.990045,29.021094],[106.979832,29.031766],[106.981158,29.039861],[106.988671,29.043459],[106.977034,29.056009],[106.975266,29.050532],[106.96358,29.058217],[106.954545,29.059239],[106.950421,29.071787],[106.938685,29.041906],[106.926361,29.047793],[106.920567,29.045749],[106.915362,29.054538],[106.906131,29.051758],[106.910256,29.068844],[106.921844,29.100475],[106.911483,29.114775],[106.905542,29.11596],[106.891695,29.131769],[106.885263,29.141817],[106.868028,29.151456],[106.858012,29.149046],[106.849468,29.1575],[106.821235,29.149577],[106.812936,29.165014],[106.809941,29.178161],[106.800121,29.179958],[106.793689,29.169709],[106.788386,29.177181],[106.776405,29.163666],[106.768843,29.161298],[106.767665,29.169587],[106.757894,29.170159],[106.748908,29.176691],[106.729464,29.162604],[106.712377,29.179182],[106.699561,29.177181],[106.686746,29.188042],[106.680313,29.173548],[106.676631,29.176855],[106.668234,29.168158],[106.665092,29.158439],[106.65316,29.16142],[106.656205,29.175385],[106.642603,29.173874],[106.623896,29.160154],[106.604599,29.126908],[106.588395,29.12654],[106.585007,29.131442],[106.574451,29.128215],[106.574205,29.116777],[106.581177,29.110076],[106.578084,29.09312],[106.584418,29.079634],[106.583436,29.071256],[106.589672,29.056663],[106.585695,29.053148],[106.589525,29.030008],[106.59414,29.019131],[106.608773,29.014756],[106.592471,29.005963],[106.585204,29.008294],[106.57833,29.022443],[106.562666,29.016555],[106.557118,29.006004],[106.549703,29.00535],[106.551815,29.024692],[106.544646,29.036386],[106.526331,29.036141],[106.524956,29.044195],[106.514547,29.059852],[106.504825,29.063285],[106.498,29.071624],[106.501044,29.0771],[106.49034,29.083476],[106.484497,29.065738],[106.489849,29.042969],[106.478113,29.024774],[106.475413,29.012179],[106.454447,29.0177],[106.444135,29.038103],[106.463874,29.042069],[106.44281,29.050573],[106.442515,29.039739],[106.427834,29.047588],[106.419732,29.047834],[106.404314,29.035364],[106.398765,29.027023],[106.385803,29.029476],[106.391842,29.022443],[106.397587,28.993693],[106.405738,28.979622],[106.399846,28.962521],[106.408733,28.95401],[106.402792,28.940956],[106.410992,28.922294],[106.411826,28.891182],[106.415264,28.876236],[106.43623,28.870217],[106.446443,28.863337],[106.455723,28.836427],[106.461861,28.831019],[106.47448,28.833027],[106.476199,28.826759],[106.490585,28.806518],[106.508753,28.795864],[106.521126,28.794266],[106.523041,28.78111],[106.533795,28.778733],[106.53404,28.770904],[106.547985,28.769838],[106.561831,28.756064],[106.563894,28.746184],[106.559229,28.731546],[106.56026,28.72072],[106.576857,28.702387],[106.582356,28.702223],[106.587315,28.691517],[106.598068,28.691886],[106.606072,28.685035],[106.619182,28.689178],[106.614272,28.680276],[106.61766,28.667311],[106.626891,28.659269],[106.635238,28.658448],[106.643684,28.664316],[106.651393,28.64942],[106.641179,28.644167],[106.620213,28.645727],[106.618887,28.637272],[106.62861,28.63444],[106.636809,28.623235],[106.636466,28.613219],[106.629641,28.604762],[106.614665,28.609442],[106.607054,28.594292],[106.616825,28.562795],[106.615254,28.549651],[106.600622,28.541353],[106.584615,28.523276],[106.568657,28.523646],[106.560309,28.513374],[106.56792,28.505278],[106.562814,28.497388],[106.568018,28.484031],[106.589181,28.488387],[106.591489,28.499073],[106.584958,28.50684],[106.593404,28.510169],[106.610147,28.497922],[106.632734,28.503553],[106.631114,28.490237],[106.649772,28.47955],[106.661066,28.491881],[106.678349,28.481359],[106.688268,28.484647],[106.696713,28.4784],[106.693276,28.45653],[106.708547,28.450486],[106.716207,28.456365],[106.725241,28.454433],[106.732901,28.46356],[106.746649,28.466643],[106.744833,28.489867],[106.726027,28.518551],[106.723965,28.529891],[106.728187,28.54201],[106.73732,28.553307],[106.754358,28.558318],[106.765161,28.558153],[106.779891,28.56378],[106.780922,28.574869],[106.766634,28.580166],[106.758581,28.588133],[106.759023,28.611084],[106.773901,28.611946],[106.780333,28.625],[106.792559,28.616256],[106.793443,28.606486],[106.800514,28.602134],[106.807732,28.589447],[106.827078,28.598562],[106.833264,28.613219],[106.829287,28.622742],[106.856146,28.622496],[106.866359,28.624507],[106.871515,28.658817],[106.883201,28.69246],[106.862136,28.690983],[106.854722,28.697095],[106.853936,28.706324],[106.862529,28.707555],[106.852905,28.724452],[106.828354,28.737696],[106.824033,28.756146],[106.833363,28.768772],[106.838469,28.765985],[106.845393,28.781028],[106.862333,28.780577],[106.864591,28.77447],[106.874215,28.779716],[106.886392,28.794716],[106.897882,28.80115],[106.905345,28.79611],[106.923071,28.810042],[106.938391,28.792381],[106.94227,28.782135],[106.950224,28.777626],[106.951746,28.766969],[106.967803,28.774101],[106.987885,28.774675],[106.988671,28.790331],[106.981355,28.804347],[106.980814,28.812951],[106.98926,28.829585],[106.983368,28.851173],[106.997853,28.853507],[107.005169,28.859159],[107.019114,28.860675],[107.016118,28.882501],[107.036594,28.88115],[107.04062,28.863869],[107.058689,28.868947],[107.045579,28.874926],[107.052552,28.8911],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500111,"name":"大足区","center":[105.715319,29.700498],"centroid":[105.742721,29.65],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":10,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.482777,29.679127],[105.490683,29.675186],[105.487688,29.663159],[105.496673,29.648652],[105.509243,29.637962],[105.50561,29.609344],[105.517738,29.586493],[105.536642,29.59121],[105.542681,29.586412],[105.542534,29.57413],[105.549703,29.572096],[105.561045,29.588892],[105.580047,29.591617],[105.590899,29.590397],[105.594483,29.575553],[105.602241,29.569941],[105.599983,29.553019],[105.592175,29.549928],[105.59522,29.539432],[105.590015,29.524011],[105.583239,29.515588],[105.593059,29.517744],[105.595711,29.504152],[105.607642,29.508262],[105.619967,29.504803],[105.620556,29.494017],[105.631506,29.485917],[105.629738,29.478386],[105.637152,29.473623],[105.646236,29.486121],[105.639509,29.489052],[105.641179,29.505861],[105.648397,29.494139],[105.662636,29.499431],[105.65311,29.485022],[105.658119,29.481317],[105.657431,29.468168],[105.662194,29.460025],[105.687236,29.446506],[105.714929,29.464259],[105.725486,29.454121],[105.724013,29.449967],[105.735061,29.445162],[105.737663,29.435592],[105.727646,29.422844],[105.73403,29.417386],[105.722835,29.397872],[105.741002,29.397628],[105.728678,29.384875],[105.735159,29.38459],[105.747582,29.372487],[105.767762,29.379578],[105.773507,29.394857],[105.770561,29.408302],[105.802674,29.437139],[105.817895,29.490395],[105.825899,29.51396],[105.834933,29.527917],[105.855016,29.540042],[105.868617,29.537316],[105.876817,29.541791],[105.873969,29.552572],[105.890467,29.570429],[105.924347,29.595805],[105.938243,29.613166],[105.946099,29.626988],[105.953513,29.630199],[105.969815,29.646294],[105.982532,29.671936],[105.997361,29.6645],[106.005659,29.682581],[106.031732,29.722184],[106.036838,29.726692],[106.025987,29.734854],[106.028344,29.749552],[106.014448,29.752841],[106.010913,29.747279],[106.001289,29.748375],[105.997508,29.756819],[105.998588,29.768916],[105.991223,29.781174],[105.976542,29.784746],[105.970601,29.779876],[105.957638,29.781662],[105.944233,29.775979],[105.922334,29.788236],[105.904706,29.785598],[105.906523,29.795582],[105.893806,29.802967],[105.888208,29.790347],[105.893904,29.785882],[105.888012,29.77468],[105.878584,29.769525],[105.868911,29.756982],[105.83076,29.757997],[105.822461,29.762827],[105.820939,29.773381],[105.806945,29.771636],[105.808418,29.783569],[105.789269,29.794121],[105.778368,29.811367],[105.77719,29.801831],[105.763883,29.793512],[105.746354,29.801466],[105.721411,29.78779],[105.713898,29.789129],[105.714684,29.79684],[105.72308,29.809825],[105.735846,29.819319],[105.725339,29.832747],[105.738252,29.845646],[105.738105,29.856516],[105.733146,29.860693],[105.719397,29.856557],[105.720625,29.849662],[105.708939,29.840576],[105.695436,29.843497],[105.690428,29.852298],[105.677759,29.854286],[105.661801,29.84082],[105.656204,29.844389],[105.641473,29.836844],[105.617659,29.845728],[105.605875,29.827879],[105.604107,29.816844],[105.588444,29.823133],[105.580293,29.790753],[105.587511,29.784868],[105.572289,29.768713],[105.576218,29.757388],[105.574941,29.744477],[105.564335,29.737818],[105.56571,29.724012],[105.557952,29.726651],[105.549212,29.737615],[105.542829,29.726529],[105.550341,29.722022],[105.52962,29.707604],[105.538851,29.69489],[105.527951,29.692412],[105.520095,29.703583],[105.49903,29.709553],[105.49029,29.720275],[105.482188,29.718082],[105.473448,29.707523],[105.474234,29.697124],[105.481353,29.692737],[105.482777,29.679127]]]]}},{"type":"Feature","properties":{"adcode":500112,"name":"渝北区","center":[106.512851,29.601451],"centroid":[106.746928,29.810209],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":11,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.893659,29.657064],[106.906082,29.678152],[106.913742,29.684043],[106.930534,29.689],[106.942564,29.705857],[106.945609,29.724743],[106.972222,29.763924],[106.96466,29.774518],[106.958522,29.769485],[106.952532,29.784259],[106.945167,29.784178],[106.952237,29.792214],[106.939913,29.804347],[106.944234,29.812949],[106.942859,29.839765],[106.936574,29.842483],[106.937114,29.851893],[106.944528,29.855908],[106.945461,29.875454],[106.953416,29.88109],[106.962058,29.901929],[106.974529,29.916603],[106.98489,29.934314],[106.970012,29.938326],[106.965691,29.951981],[106.946934,29.953683],[106.942515,29.964824],[106.935248,29.964054],[106.931467,29.975397],[106.909077,29.971873],[106.896654,29.978597],[106.889928,29.987954],[106.88708,29.981392],[106.877947,29.98601],[106.868323,29.978962],[106.864444,29.984916],[106.866506,30.012293],[106.856195,30.013872],[106.861449,30.028165],[106.842054,30.049135],[106.836996,30.049742],[106.830171,30.033955],[106.812495,30.028975],[106.799974,30.030554],[106.797764,30.023145],[106.785587,30.017233],[106.768598,30.017274],[106.764228,30.024602],[106.759416,30.018893],[106.742132,30.025938],[106.73241,30.026829],[106.726076,30.034319],[106.72583,30.057068],[106.698825,30.076535],[106.698726,30.098708],[106.703195,30.118126],[106.689643,30.117802],[106.688857,30.124031],[106.673881,30.12213],[106.668382,30.101742],[106.656352,30.086165],[106.648447,30.085559],[106.677024,30.063989],[106.678153,30.058121],[106.670739,30.034805],[106.678889,30.026141],[106.676385,30.015087],[106.677465,29.98601],[106.679724,29.97961],[106.674225,29.961948],[106.674274,29.932206],[106.687384,29.935489],[106.678497,29.92864],[106.679822,29.923615],[106.669118,29.912712],[106.678889,29.908212],[106.67506,29.897713],[106.668775,29.900348],[106.658512,29.869534],[106.64987,29.863857],[106.646581,29.849378],[106.634109,29.839481],[106.620262,29.840252],[106.622865,29.831327],[106.612848,29.832626],[106.598461,29.825607],[106.598805,29.816763],[106.587217,29.812665],[106.584909,29.799599],[106.5936,29.79964],[106.593011,29.808932],[106.601653,29.799843],[106.609018,29.799437],[106.592864,29.784705],[106.604746,29.769322],[106.588543,29.76161],[106.589181,29.754992],[106.57175,29.763355],[106.556529,29.754789],[106.5417,29.754871],[106.532076,29.749471],[106.530799,29.758687],[106.54116,29.763112],[106.532469,29.767333],[106.530996,29.775979],[106.515676,29.769688],[106.520144,29.764614],[106.524956,29.742609],[106.536741,29.730306],[106.536741,29.723321],[106.518377,29.71199],[106.512337,29.703461],[106.514743,29.694281],[106.506887,29.685425],[106.496134,29.68969],[106.487197,29.699399],[106.469373,29.697165],[106.457147,29.687415],[106.457589,29.668889],[106.469766,29.657714],[106.468293,29.645969],[106.45209,29.632109],[106.453121,29.620321],[106.462843,29.616296],[106.46191,29.608247],[106.478506,29.609751],[106.482434,29.613329],[106.492009,29.599424],[106.485724,29.596984],[106.486363,29.585639],[106.497754,29.573113],[106.506543,29.573032],[106.530308,29.587469],[106.549851,29.581531],[106.562175,29.589543],[106.562617,29.603734],[106.57337,29.620362],[106.579213,29.619061],[106.582798,29.633695],[106.595613,29.638572],[106.602929,29.634386],[106.61162,29.639873],[106.621834,29.635199],[106.648054,29.63719],[106.687237,29.623654],[106.70948,29.631337],[106.712671,29.646945],[106.723915,29.640604],[106.729906,29.646294],[106.73462,29.667263],[106.741297,29.662184],[106.744735,29.670433],[106.749988,29.663606],[106.747926,29.655154],[106.754162,29.651578],[106.782543,29.662428],[106.78323,29.669986],[106.793001,29.678599],[106.806701,29.671123],[106.809401,29.674699],[106.822118,29.67153],[106.819811,29.663647],[106.825703,29.659502],[106.833706,29.6632],[106.850548,29.659908],[106.866359,29.646985],[106.87775,29.659339],[106.893659,29.657064]]]]}},{"type":"Feature","properties":{"adcode":500113,"name":"巴南区","center":[106.519423,29.381919],"centroid":[106.751731,29.371851],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":12,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.552011,29.48726],[106.542044,29.472972],[106.521765,29.479974],[106.509538,29.481765],[106.502075,29.47745],[106.498343,29.446913],[106.526528,29.411275],[106.534924,29.392005],[106.528197,29.388338],[106.509735,29.397506],[106.49196,29.39775],[106.469619,29.389153],[106.455036,29.380596],[106.441926,29.358916],[106.435542,29.352965],[106.440404,29.350153],[106.454496,29.35427],[106.460241,29.360872],[106.478163,29.36022],[106.474431,29.35696],[106.473645,29.335722],[106.486363,29.294336],[106.508655,29.278674],[106.505021,29.268966],[106.511208,29.268069],[106.514056,29.254688],[106.519653,29.251791],[106.515774,29.232042],[106.521225,29.224614],[106.535906,29.221962],[106.539343,29.213717],[106.547788,29.212534],[106.541896,29.192369],[106.545972,29.183265],[106.562372,29.161379],[106.549998,29.153498],[106.550047,29.145493],[106.560997,29.133239],[106.574451,29.128215],[106.585007,29.131442],[106.588395,29.12654],[106.604599,29.126908],[106.623896,29.160154],[106.642603,29.173874],[106.656205,29.175385],[106.65316,29.16142],[106.665092,29.158439],[106.668234,29.168158],[106.676631,29.176855],[106.680313,29.173548],[106.686746,29.188042],[106.699561,29.177181],[106.712377,29.179182],[106.729464,29.162604],[106.748908,29.176691],[106.757894,29.170159],[106.767665,29.169587],[106.768843,29.161298],[106.776405,29.163666],[106.788386,29.177181],[106.793689,29.169709],[106.800121,29.179958],[106.809941,29.178161],[106.812936,29.165014],[106.821235,29.149577],[106.849468,29.1575],[106.858012,29.149046],[106.868028,29.151456],[106.885263,29.141817],[106.891695,29.131769],[106.891744,29.14149],[106.899355,29.155621],[106.909175,29.160562],[106.907751,29.179672],[106.896409,29.180039],[106.895574,29.190491],[106.911385,29.197472],[106.919045,29.180366],[106.945069,29.183142],[106.955527,29.190695],[106.95263,29.197104],[106.961812,29.202738],[106.968392,29.215228],[106.95754,29.228981],[106.954692,29.252199],[106.936132,29.256931],[106.933039,29.279653],[106.92312,29.280673],[106.920616,29.302411],[106.922433,29.310322],[106.919978,29.329893],[106.922531,29.403046],[106.932253,29.399746],[106.936574,29.439339],[106.933039,29.448542],[106.935297,29.464463],[106.945952,29.497029],[106.947278,29.510826],[106.953612,29.535811],[106.953268,29.551311],[106.958768,29.582508],[106.966624,29.599546],[106.975315,29.634142],[106.993581,29.679331],[107.002223,29.714468],[106.998638,29.732539],[106.990144,29.738062],[106.988818,29.748781],[106.993483,29.75824],[106.988131,29.769322],[106.972222,29.763924],[106.945609,29.724743],[106.942564,29.705857],[106.930534,29.689],[106.913742,29.684043],[106.906082,29.678152],[106.893659,29.657064],[106.873086,29.615809],[106.861547,29.602067],[106.85045,29.575431],[106.843527,29.57657],[106.821087,29.591576],[106.801152,29.589055],[106.787993,29.576326],[106.7712,29.549155],[106.764179,29.530928],[106.738548,29.486731],[106.732115,29.483923],[106.705257,29.482254],[106.703686,29.487993],[106.693276,29.48897],[106.69308,29.483353],[106.683358,29.476473],[106.688808,29.468453],[106.673341,29.458437],[106.65866,29.46772],[106.655321,29.462346],[106.642849,29.469959],[106.627971,29.465847],[106.606808,29.474315],[106.59581,29.463974],[106.586677,29.473094],[106.578772,29.469878],[106.56954,29.485144],[106.552011,29.48726]]]]}},{"type":"Feature","properties":{"adcode":500114,"name":"黔江区","center":[108.782577,29.527548],"centroid":[108.708597,29.435532],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":13,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.55869,29.13953],[108.570769,29.124416],[108.598266,29.105705],[108.587169,29.095081],[108.599396,29.086908],[108.60789,29.109014],[108.615206,29.109709],[108.614568,29.095408],[108.625665,29.08699],[108.622179,29.073422],[108.628906,29.072891],[108.646533,29.081841],[108.661313,29.071624],[108.667205,29.078776],[108.662835,29.090382],[108.669856,29.095939],[108.66416,29.103744],[108.668678,29.108156],[108.681984,29.105623],[108.686698,29.109341],[108.698777,29.101619],[108.700397,29.094427],[108.726912,29.080492],[108.747584,29.092384],[108.749008,29.10881],[108.774295,29.110485],[108.775768,29.124008],[108.784852,29.123272],[108.803756,29.129195],[108.812054,29.122047],[108.832087,29.117267],[108.833266,29.109995],[108.847702,29.105214],[108.855656,29.122659],[108.854625,29.133484],[108.882416,29.1791],[108.896607,29.209024],[108.915265,29.215513],[108.925135,29.222615],[108.925871,29.23347],[108.937607,29.244283],[108.954252,29.272066],[108.93903,29.274065],[108.919783,29.283732],[108.915462,29.293561],[108.903432,29.296416],[108.908784,29.312972],[108.919734,29.326305],[108.916591,29.334622],[108.931027,29.369634],[108.93412,29.399461],[108.943646,29.410746],[108.932009,29.431682],[108.921256,29.436895],[108.90957,29.436814],[108.89808,29.441945],[108.886541,29.440601],[108.873971,29.449397],[108.873726,29.462753],[108.866557,29.471058],[108.869846,29.485917],[108.885952,29.498047],[108.888652,29.507041],[108.886983,29.530562],[108.878439,29.53935],[108.886934,29.553101],[108.902106,29.563026],[108.913056,29.574455],[108.899995,29.584866],[108.909177,29.593284],[108.901271,29.604791],[108.897589,29.596496],[108.885903,29.588445],[108.868324,29.598001],[108.885854,29.621134],[108.887916,29.628573],[108.879618,29.639222],[108.869699,29.643002],[108.855754,29.636377],[108.84451,29.658364],[108.83302,29.651293],[108.827325,29.654382],[108.835377,29.668442],[108.828061,29.671286],[108.816473,29.644018],[108.819812,29.632435],[108.813625,29.63154],[108.804394,29.640564],[108.785637,29.633857],[108.780089,29.645522],[108.792266,29.647351],[108.79752,29.660071],[108.794132,29.671205],[108.784655,29.677177],[108.786276,29.691518],[108.760645,29.693549],[108.752592,29.689365],[108.758141,29.678721],[108.765113,29.682256],[108.775964,29.67539],[108.773018,29.661534],[108.783281,29.653772],[108.774541,29.65174],[108.765899,29.661046],[108.763002,29.653366],[108.752641,29.649017],[108.743017,29.655926],[108.740611,29.665719],[108.73359,29.671489],[108.710905,29.679168],[108.718221,29.691924],[108.710365,29.699196],[108.691166,29.68969],[108.684783,29.693509],[108.69313,29.704476],[108.681051,29.721413],[108.686649,29.740051],[108.677565,29.748537],[108.67732,29.761447],[108.681788,29.770459],[108.678449,29.777887],[108.680658,29.800167],[108.670986,29.811813],[108.656942,29.816682],[108.670347,29.819076],[108.666124,29.842726],[108.657728,29.84808],[108.662491,29.852582],[108.633226,29.855908],[108.632686,29.86487],[108.622915,29.867304],[108.60843,29.862964],[108.601409,29.8656],[108.587955,29.85388],[108.588151,29.84808],[108.577349,29.844673],[108.579902,29.831206],[108.56581,29.820861],[108.557463,29.819035],[108.534434,29.787506],[108.522503,29.763761],[108.540081,29.756779],[108.548526,29.749512],[108.547004,29.742569],[108.520244,29.730347],[108.51666,29.735666],[108.504188,29.729413],[108.515285,29.71861],[108.506446,29.708172],[108.526676,29.696759],[108.52373,29.683109],[108.503549,29.67669],[108.504139,29.666288],[108.489997,29.642515],[108.487199,29.624102],[108.499965,29.622069],[108.507036,29.611093],[108.512633,29.614467],[108.516709,29.602148],[108.534974,29.588851],[108.534532,29.572177],[108.548379,29.557575],[108.547643,29.547406],[108.536251,29.540001],[108.515334,29.543948],[108.506054,29.536868],[108.494711,29.515099],[108.501242,29.49996],[108.50954,29.50285],[108.539688,29.491697],[108.561686,29.491657],[108.585549,29.477328],[108.581228,29.464911],[108.59257,29.442963],[108.576367,29.41706],[108.555843,29.412701],[108.552995,29.390539],[108.547201,29.381697],[108.550196,29.371754],[108.561538,29.352598],[108.549705,29.328303],[108.549459,29.315378],[108.560409,29.306081],[108.573568,29.302411],[108.584272,29.285812],[108.583192,29.278063],[108.571948,29.265703],[108.575778,29.252362],[108.568314,29.236245],[108.569247,29.224941],[108.555597,29.218738],[108.548919,29.205064],[108.556775,29.184857],[108.574403,29.164115],[108.570671,29.152313],[108.55869,29.13953]]]]}},{"type":"Feature","properties":{"adcode":500115,"name":"长寿区","center":[107.074854,29.833671],"centroid":[107.140018,29.954649],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":14,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.972222,29.763924],[106.988131,29.769322],[106.993483,29.75824],[106.988818,29.748781],[106.990144,29.738062],[106.998638,29.732539],[107.002223,29.714468],[107.009195,29.712762],[107.027166,29.717189],[107.041406,29.734407],[107.070032,29.751217],[107.070277,29.758524],[107.086726,29.761813],[107.102635,29.754546],[107.111572,29.76299],[107.153111,29.784827],[107.186992,29.79473],[107.198039,29.809622],[107.212279,29.816276],[107.206583,29.824958],[107.210806,29.840292],[107.229317,29.84374],[107.240512,29.841347],[107.265161,29.847472],[107.270857,29.851447],[107.272379,29.837291],[107.29801,29.839603],[107.299827,29.847472],[107.313084,29.845809],[107.323445,29.852947],[107.337193,29.873062],[107.335818,29.884415],[107.342005,29.892929],[107.360762,29.897227],[107.369354,29.906794],[107.379666,29.899132],[107.377505,29.910523],[107.387129,29.921993],[107.383545,29.926614],[107.415755,29.970577],[107.421156,29.967944],[107.448064,29.999092],[107.453171,30.001441],[107.451501,30.008203],[107.46029,30.01533],[107.436329,30.033833],[107.374068,29.973372],[107.362824,29.979853],[107.347995,29.980501],[107.335573,29.97398],[107.325556,29.973007],[107.307094,29.992328],[107.29418,29.997917],[107.294818,30.002696],[107.31112,30.008203],[107.304688,30.0161],[107.31166,30.02023],[107.307879,30.035493],[107.294867,30.044359],[107.27724,30.043144],[107.279204,30.04873],[107.266045,30.055045],[107.26521,30.062006],[107.247534,30.07528],[107.259072,30.075887],[107.269089,30.081148],[107.271741,30.09446],[107.28328,30.091021],[107.29089,30.097939],[107.286766,30.107892],[107.295555,30.122454],[107.291381,30.136327],[107.274098,30.135841],[107.269482,30.145992],[107.288484,30.171303],[107.277044,30.181086],[107.256568,30.205903],[107.228335,30.223805],[107.221068,30.213743],[107.187335,30.181248],[107.16848,30.160306],[107.136466,30.134426],[107.13131,30.121524],[107.106563,30.113838],[107.111032,30.104251],[107.103077,30.090131],[107.093797,30.095391],[107.080147,30.094177],[107.073911,30.080986],[107.084517,30.063868],[107.075286,30.051118],[107.058395,30.043063],[107.0554,30.040553],[107.054221,30.040837],[107.053779,30.043751],[107.050588,30.053426],[107.042486,30.055085],[107.037821,30.047273],[107.042682,30.035007],[107.020636,30.036829],[107.014351,30.051604],[107.005316,30.052495],[106.998295,30.059456],[106.985332,30.084061],[106.966477,30.079894],[106.954889,30.066094],[106.956755,30.06059],[106.948604,30.040149],[106.941877,30.042739],[106.914871,30.033955],[106.913594,30.025574],[106.88433,30.0344],[106.861449,30.028165],[106.856195,30.013872],[106.866506,30.012293],[106.864444,29.984916],[106.868323,29.978962],[106.877947,29.98601],[106.88708,29.981392],[106.889928,29.987954],[106.896654,29.978597],[106.909077,29.971873],[106.931467,29.975397],[106.935248,29.964054],[106.942515,29.964824],[106.946934,29.953683],[106.965691,29.951981],[106.970012,29.938326],[106.98489,29.934314],[106.974529,29.916603],[106.962058,29.901929],[106.953416,29.88109],[106.945461,29.875454],[106.944528,29.855908],[106.937114,29.851893],[106.936574,29.842483],[106.942859,29.839765],[106.944234,29.812949],[106.939913,29.804347],[106.952237,29.792214],[106.945167,29.784178],[106.952532,29.784259],[106.958522,29.769485],[106.96466,29.774518],[106.972222,29.763924]]],[[[107.058395,30.043063],[107.053779,30.043751],[107.054221,30.040837],[107.0554,30.040553],[107.058395,30.043063]]]]}},{"type":"Feature","properties":{"adcode":500116,"name":"江津区","center":[106.253156,29.283387],"centroid":[106.263211,29.029608],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":15,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.830514,28.944271],[105.844262,28.93093],[105.852708,28.927369],[105.875049,28.933958],[105.888061,28.926837],[105.889338,28.909523],[105.909567,28.900189],[105.915607,28.907476],[105.909764,28.920452],[105.920321,28.930643],[105.934511,28.933876],[105.95808,28.952496],[105.961566,28.960107],[105.971877,28.965957],[105.9761,28.959166],[105.988424,28.964198],[105.985969,28.970131],[105.974627,28.973567],[105.984103,28.979008],[106.001535,28.973608],[106.017443,28.952905],[106.02417,28.949714],[106.036102,28.955729],[106.043811,28.954133],[106.047346,28.943575],[106.04003,28.940465],[106.042338,28.929538],[106.03949,28.918651],[106.042534,28.910587],[106.051913,28.906862],[106.062813,28.918201],[106.070522,28.919797],[106.085645,28.9103],[106.087708,28.904201],[106.10126,28.898961],[106.134354,28.90506],[106.149183,28.901949],[106.162538,28.908908],[106.173684,28.92082],[106.191606,28.908663],[106.206926,28.904528],[106.215371,28.891714],[106.225585,28.890568],[106.228089,28.881764],[106.242181,28.86821],[106.253229,28.865753],[106.255586,28.857398],[106.265062,28.846708],[106.260201,28.833641],[106.246698,28.826472],[106.254358,28.819179],[106.24439,28.814631],[106.252394,28.785823],[106.267665,28.779348],[106.273213,28.739788],[106.287698,28.732366],[106.303509,28.709113],[106.307191,28.687907],[106.30616,28.675763],[106.321087,28.665465],[106.311168,28.660048],[106.304049,28.649872],[106.310776,28.639981],[106.329778,28.63403],[106.324524,28.616749],[106.332184,28.603366],[106.340187,28.59889],[106.34662,28.58378],[106.345196,28.573021],[106.339304,28.566368],[106.344803,28.562014],[106.332037,28.553224],[106.338371,28.546858],[106.34225,28.532603],[106.349811,28.540121],[106.363903,28.526892],[106.374313,28.525618],[106.378487,28.533835],[106.373576,28.537656],[106.389829,28.553266],[106.385704,28.560823],[106.399109,28.571173],[106.412956,28.563123],[106.423218,28.562671],[106.43402,28.556675],[106.439471,28.559427],[106.454054,28.549774],[106.453072,28.544721],[106.466918,28.541846],[106.471632,28.532603],[106.483858,28.530589],[106.493384,28.538313],[106.501191,28.534533],[106.504726,28.54468],[106.488867,28.557496],[106.478899,28.574992],[106.466967,28.586408],[106.473842,28.598973],[106.498785,28.585874],[106.508802,28.564889],[106.524711,28.577826],[106.513319,28.577046],[106.494464,28.599999],[106.494955,28.615148],[106.501093,28.617898],[106.501338,28.628735],[106.506641,28.635343],[106.502762,28.661321],[106.520144,28.6621],[106.529719,28.673137],[106.515774,28.688194],[106.510324,28.715183],[106.499325,28.717398],[106.493826,28.73946],[106.462057,28.76123],[106.454201,28.776068],[106.451648,28.79279],[106.462794,28.797216],[106.46029,28.804961],[106.451402,28.808116],[106.453514,28.816967],[106.46844,28.826472],[106.461861,28.831019],[106.455723,28.836427],[106.446443,28.863337],[106.43623,28.870217],[106.415264,28.876236],[106.411826,28.891182],[106.410992,28.922294],[106.402792,28.940956],[106.408733,28.95401],[106.399846,28.962521],[106.405738,28.979622],[106.397587,28.993693],[106.391842,29.022443],[106.385803,29.029476],[106.398765,29.027023],[106.404314,29.035364],[106.419732,29.047834],[106.427834,29.047588],[106.442515,29.039739],[106.44281,29.050573],[106.463874,29.042069],[106.444135,29.038103],[106.454447,29.0177],[106.475413,29.012179],[106.478113,29.024774],[106.489849,29.042969],[106.484497,29.065738],[106.49034,29.083476],[106.501044,29.0771],[106.498,29.071624],[106.504825,29.063285],[106.514547,29.059852],[106.524956,29.044195],[106.526331,29.036141],[106.544646,29.036386],[106.551815,29.024692],[106.549703,29.00535],[106.557118,29.006004],[106.562666,29.016555],[106.57833,29.022443],[106.585204,29.008294],[106.592471,29.005963],[106.608773,29.014756],[106.59414,29.019131],[106.589525,29.030008],[106.585695,29.053148],[106.589672,29.056663],[106.583436,29.071256],[106.584418,29.079634],[106.578084,29.09312],[106.581177,29.110076],[106.574205,29.116777],[106.574451,29.128215],[106.560997,29.133239],[106.550047,29.145493],[106.549998,29.153498],[106.562372,29.161379],[106.545972,29.183265],[106.541896,29.192369],[106.547788,29.212534],[106.539343,29.213717],[106.535906,29.221962],[106.521225,29.224614],[106.515774,29.232042],[106.519653,29.251791],[106.514056,29.254688],[106.511208,29.268069],[106.505021,29.268966],[106.508655,29.278674],[106.486363,29.294336],[106.473645,29.335722],[106.474431,29.35696],[106.478163,29.36022],[106.460241,29.360872],[106.454496,29.35427],[106.440404,29.350153],[106.435542,29.352965],[106.411876,29.342245],[106.400877,29.340777],[106.395525,29.339351],[106.385999,29.312401],[106.393217,29.294948],[106.384035,29.283039],[106.3559,29.27688],[106.339844,29.26456],[106.311905,29.254769],[106.298697,29.256483],[106.27994,29.286913],[106.289171,29.320679],[106.276945,29.322269],[106.274539,29.32871],[106.261232,29.335519],[106.267468,29.350234],[106.277829,29.352924],[106.275668,29.363236],[106.282248,29.368167],[106.284359,29.38516],[106.294425,29.384549],[106.295554,29.378763],[106.30891,29.379985],[106.314409,29.388827],[106.322314,29.38732],[106.331005,29.39555],[106.329041,29.413679],[106.317257,29.415227],[106.323002,29.420481],[106.320596,29.427976],[106.307339,29.426835],[106.30724,29.434248],[106.298549,29.440764],[106.285636,29.441986],[106.278565,29.449031],[106.262705,29.451596],[106.248613,29.429238],[106.245569,29.40989],[106.223621,29.353984],[106.206042,29.334826],[106.195731,29.327447],[106.17663,29.308446],[106.156106,29.301962],[106.152276,29.293684],[106.136416,29.294826],[106.120065,29.278878],[106.113289,29.284018],[106.110442,29.294907],[106.096104,29.291359],[106.084663,29.300331],[106.086382,29.30706],[106.072928,29.321005],[106.043418,29.32549],[106.038164,29.313339],[106.036789,29.284915],[106.031486,29.261868],[106.033156,29.253953],[106.016363,29.242529],[106.004677,29.215513],[105.996673,29.213595],[105.982287,29.193512],[105.96736,29.177671],[105.965347,29.15603],[105.954299,29.151251],[105.958276,29.147943],[105.942858,29.128338],[105.937899,29.127561],[105.93186,29.115102],[105.918848,29.109464],[105.917473,29.098881],[105.909518,29.093855],[105.913888,29.08086],[105.922285,29.078858],[105.919928,29.056132],[105.897145,29.049632],[105.885459,29.037204],[105.882905,29.029722],[105.864492,29.026001],[105.857323,29.012997],[105.858011,28.98678],[105.851677,28.976185],[105.826782,28.964403],[105.824769,28.953396],[105.830514,28.944271]]]]}},{"type":"Feature","properties":{"adcode":500117,"name":"合川区","center":[106.265554,29.990993],"centroid":[106.311538,30.112474],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":16,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.648447,30.085559],[106.656352,30.086165],[106.668382,30.101742],[106.673881,30.12213],[106.67501,30.147165],[106.677613,30.157395],[106.665779,30.158972],[106.662195,30.170171],[106.653995,30.169726],[106.649527,30.176922],[106.639265,30.180156],[106.646973,30.189494],[106.63185,30.186543],[106.633618,30.199679],[106.626989,30.19778],[106.624436,30.211318],[106.632734,30.216208],[106.619133,30.229664],[106.611473,30.228047],[106.609804,30.23532],[106.621686,30.236492],[106.633029,30.24643],[106.642653,30.249863],[106.634845,30.265697],[106.627578,30.265899],[106.623061,30.281609],[106.611669,30.292431],[106.590507,30.294248],[106.586382,30.302969],[106.571603,30.30624],[106.56026,30.315162],[106.547052,30.310358],[106.544842,30.296752],[106.521372,30.300305],[106.509391,30.289363],[106.499865,30.288918],[106.498,30.296025],[106.481845,30.298407],[106.476149,30.306966],[106.472123,30.300022],[106.458964,30.302283],[106.44826,30.299618],[106.4515,30.308137],[106.441042,30.308945],[106.436475,30.303575],[106.444774,30.295702],[106.441877,30.289484],[106.43569,30.295177],[106.428619,30.291543],[106.434708,30.277046],[106.41821,30.278783],[106.407997,30.276117],[106.422138,30.262466],[106.429405,30.261174],[106.427834,30.253782],[106.416786,30.253418],[106.410795,30.24336],[106.401319,30.242673],[106.397391,30.249662],[106.383102,30.254711],[106.390222,30.243683],[106.372545,30.248167],[106.359632,30.241218],[106.34932,30.245258],[106.343968,30.237219],[106.336799,30.237906],[106.335032,30.226391],[106.318681,30.229138],[106.309794,30.2373],[106.300563,30.238552],[106.305816,30.225704],[106.292706,30.220209],[106.296684,30.205135],[106.28431,30.201983],[106.278467,30.195718],[106.279793,30.207924],[106.26192,30.213784],[106.27174,30.204004],[106.264424,30.193536],[106.254358,30.198426],[106.245913,30.196527],[106.249742,30.189736],[106.241788,30.177731],[106.240315,30.18533],[106.232704,30.186139],[106.240315,30.200164],[106.232213,30.212531],[106.212524,30.203115],[106.204471,30.205701],[106.201819,30.213137],[106.192539,30.2154],[106.201083,30.228411],[106.180362,30.232855],[106.178251,30.248611],[106.170542,30.250591],[106.178447,30.256892],[106.179822,30.278661],[106.169069,30.3041],[106.156499,30.313668],[106.149428,30.309469],[106.137153,30.315686],[106.132685,30.323679],[106.124092,30.324769],[106.124828,30.317907],[106.134403,30.308622],[106.131801,30.301799],[106.122324,30.306805],[106.122864,30.313708],[106.114812,30.317341],[106.106072,30.310761],[106.098019,30.323558],[106.088346,30.323154],[106.091047,30.336837],[106.088591,30.345958],[106.079311,30.344344],[106.073517,30.334133],[106.070768,30.341196],[106.061046,30.342003],[106.033745,30.361817],[106.030897,30.374244],[106.01381,30.372347],[106.002222,30.376906],[105.992009,30.36916],[105.97826,30.373477],[105.989063,30.352697],[105.980372,30.342084],[105.981305,30.325051],[105.988277,30.320006],[105.975216,30.30632],[105.967507,30.308379],[105.974872,30.289322],[105.983367,30.289766],[105.98101,30.280156],[105.992107,30.277369],[105.998588,30.280681],[106.009489,30.275754],[106.013466,30.268282],[106.006248,30.260002],[105.995397,30.256892],[105.985724,30.248692],[105.981059,30.233583],[105.995102,30.231845],[106.004039,30.224775],[106.006052,30.213622],[106.019948,30.201417],[106.00669,30.187958],[105.991174,30.177246],[105.973743,30.188079],[105.974381,30.175224],[105.987639,30.164026],[105.976247,30.153109],[105.978801,30.143606],[105.998343,30.129289],[105.994513,30.120108],[105.999472,30.113757],[105.985184,30.101742],[105.989357,30.093125],[105.980814,30.083131],[105.98592,30.070262],[105.981207,30.061359],[105.981501,30.052414],[105.991076,30.033671],[105.998785,30.026627],[106.020439,30.028084],[106.047788,30.01363],[106.046511,30.007474],[106.027362,30.001522],[106.028,29.991883],[106.036495,29.997674],[106.049163,29.997026],[106.075727,30.001643],[106.098215,30.002331],[106.123061,29.998687],[106.118052,29.986982],[106.123306,29.980056],[106.119378,29.966607],[106.112946,29.960813],[106.1127,29.9519],[106.124141,29.936461],[106.134845,29.938771],[106.129198,29.929491],[106.130426,29.921993],[106.146924,29.92787],[106.160574,29.919359],[106.164944,29.921507],[106.165877,29.922399],[106.197744,29.931153],[106.200346,29.936826],[106.208645,29.929126],[106.219005,29.929451],[106.221018,29.920413],[106.239873,29.919116],[106.2384,29.912549],[106.242377,29.910239],[106.244341,29.908253],[106.244783,29.908374],[106.245127,29.908253],[106.245078,29.907685],[106.258139,29.89747],[106.266977,29.895686],[106.27012,29.887334],[106.281658,29.894673],[106.276699,29.873021],[106.265995,29.873913],[106.271593,29.86779],[106.263393,29.852258],[106.26791,29.84443],[106.314409,29.884861],[106.339598,29.901767],[106.383053,29.92787],[106.390909,29.921304],[106.390958,29.906672],[106.396507,29.898118],[106.409077,29.889443],[106.423611,29.884334],[106.429601,29.892362],[106.423414,29.904564],[106.433235,29.901889],[106.443841,29.906834],[106.455281,29.926776],[106.46191,29.92402],[106.44281,29.883564],[106.452777,29.878212],[106.458522,29.887456],[106.462892,29.88478],[106.452581,29.869128],[106.465347,29.870832],[106.466967,29.882996],[106.477131,29.891875],[106.479046,29.908172],[106.488916,29.908415],[106.501338,29.922115],[106.505659,29.931234],[106.519506,29.927546],[106.526773,29.945822],[106.544941,29.935246],[106.55697,29.961259],[106.568706,29.991154],[106.572192,30.012698],[106.582209,30.022214],[106.596546,30.030432],[106.598265,30.039582],[106.591587,30.047071],[106.629101,30.079448],[106.648447,30.085559]]],[[[106.244783,29.908374],[106.244341,29.908253],[106.245078,29.907685],[106.245127,29.908253],[106.244783,29.908374]]]]}},{"type":"Feature","properties":{"adcode":500118,"name":"永川区","center":[105.894714,29.348748],"centroid":[105.872859,29.290183],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":17,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.678054,29.273494],[105.689838,29.29193],[105.70506,29.29923],[105.715911,29.29087],[105.69519,29.287362],[105.693963,29.267579],[105.70889,29.238],[105.705845,29.223757],[105.711983,29.218901],[105.70452,29.202411],[105.705796,29.174732],[105.719594,29.172159],[105.729463,29.152558],[105.728825,29.134424],[105.733195,29.130993],[105.742868,29.137569],[105.752099,29.129767],[105.735208,29.122414],[105.729267,29.107748],[105.729905,29.098759],[105.740855,29.088625],[105.745028,29.075465],[105.757795,29.069008],[105.741788,29.039494],[105.747631,29.037899],[105.754063,29.02412],[105.76624,29.013365],[105.76187,28.992998],[105.779105,28.979949],[105.788778,28.977617],[105.801348,28.958184],[105.80886,28.956547],[105.803852,28.947586],[105.796339,28.949632],[105.792706,28.943453],[105.797567,28.935923],[105.810579,28.940874],[105.830514,28.944271],[105.824769,28.953396],[105.826782,28.964403],[105.851677,28.976185],[105.858011,28.98678],[105.857323,29.012997],[105.864492,29.026001],[105.882905,29.029722],[105.885459,29.037204],[105.897145,29.049632],[105.919928,29.056132],[105.922285,29.078858],[105.913888,29.08086],[105.909518,29.093855],[105.917473,29.098881],[105.918848,29.109464],[105.93186,29.115102],[105.937899,29.127561],[105.942858,29.128338],[105.958276,29.147943],[105.954299,29.151251],[105.965347,29.15603],[105.96736,29.177671],[105.982287,29.193512],[105.996673,29.213595],[106.004677,29.215513],[106.016363,29.242529],[106.033156,29.253953],[106.031486,29.261868],[106.036789,29.284915],[106.038164,29.313339],[106.043418,29.32549],[106.049998,29.341878],[106.048377,29.353251],[106.065612,29.375788],[106.067822,29.390946],[106.062666,29.396161],[106.063648,29.418974],[106.073272,29.448868],[106.071799,29.461491],[106.076218,29.470366],[106.078035,29.491168],[106.076709,29.505536],[106.085989,29.530562],[106.089132,29.546388],[106.078526,29.545209],[106.071553,29.536014],[106.038803,29.529179],[106.018769,29.527388],[106.010127,29.520512],[105.995446,29.525801],[105.995446,29.541303],[105.988523,29.542483],[105.981992,29.533369],[105.975363,29.54228],[105.967802,29.53695],[105.956116,29.540734],[105.951156,29.548463],[105.935984,29.549968],[105.938341,29.543744],[105.921303,29.537438],[105.910746,29.539065],[105.903626,29.552531],[105.906572,29.562741],[105.890467,29.570429],[105.873969,29.552572],[105.876817,29.541791],[105.868617,29.537316],[105.855016,29.540042],[105.834933,29.527917],[105.825899,29.51396],[105.817895,29.490395],[105.802674,29.437139],[105.770561,29.408302],[105.773507,29.394857],[105.767762,29.379578],[105.747582,29.372487],[105.735159,29.38459],[105.728678,29.384875],[105.716893,29.372813],[105.709086,29.375625],[105.709283,29.368616],[105.696172,29.364622],[105.691655,29.357652],[105.675501,29.355574],[105.663078,29.346647],[105.653209,29.349052],[105.649575,29.340247],[105.653405,29.33397],[105.645352,29.319252],[105.635974,29.320638],[105.637251,29.298251],[105.645794,29.286506],[105.655664,29.284426],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500119,"name":"南川区","center":[107.098153,29.156646],"centroid":[107.171436,29.13547],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":18,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.057462,28.894785],[107.066546,28.895358],[107.07234,28.879308],[107.063354,28.877055],[107.059819,28.868456],[107.072683,28.866613],[107.08707,28.872264],[107.096694,28.890076],[107.141965,28.887742],[107.146827,28.876236],[107.155861,28.882993],[107.166565,28.880659],[107.178644,28.883361],[107.184095,28.879922],[107.193571,28.888766],[107.198432,28.878407],[107.194013,28.876605],[107.206534,28.868005],[107.19691,28.847405],[107.195142,28.838065],[107.226371,28.836795],[107.216354,28.828151],[107.210609,28.814795],[107.213408,28.795003],[107.21876,28.788733],[107.219202,28.772707],[107.24665,28.761845],[107.253573,28.766805],[107.252395,28.780577],[107.261429,28.792708],[107.277142,28.799183],[107.304639,28.806764],[107.325409,28.809591],[107.345147,28.829585],[107.331988,28.841178],[107.359878,28.849985],[107.367243,28.844988],[107.383447,28.848551],[107.395378,28.86088],[107.391941,28.868497],[107.406131,28.89155],[107.415657,28.88979],[107.41443,28.913248],[107.422875,28.928269],[107.433579,28.933754],[107.441043,28.94378],[107.438784,28.955278],[107.421549,28.954542],[107.412957,28.960148],[107.405542,28.972258],[107.404413,28.981872],[107.396949,28.993325],[107.370435,28.993897],[107.364542,29.010543],[107.378536,29.021912],[107.381041,29.029926],[107.395182,29.039657],[107.390714,29.059075],[107.379862,29.05744],[107.369747,29.091608],[107.374412,29.097574],[107.392285,29.091281],[107.412957,29.095735],[107.427589,29.127357],[107.4215,29.135813],[107.408439,29.138345],[107.408095,29.150271],[107.412318,29.161379],[107.401516,29.175957],[107.401565,29.184694],[107.395378,29.205881],[107.401909,29.218248],[107.399355,29.235714],[107.401025,29.248853],[107.416541,29.264234],[107.421942,29.274636],[107.404069,29.28259],[107.388553,29.281081],[107.391597,29.289279],[107.379764,29.299516],[107.373332,29.298578],[107.38271,29.308609],[107.392039,29.326754],[107.367047,29.341756],[107.350156,29.346892],[107.347308,29.342571],[107.323395,29.339147],[107.318387,29.347789],[107.309893,29.345098],[107.298599,29.352069],[107.293444,29.349704],[107.272428,29.358386],[107.272428,29.37371],[107.263393,29.383571],[107.256176,29.38463],[107.241691,29.379415],[107.239285,29.364744],[107.225487,29.367801],[107.20732,29.366293],[107.207221,29.385934],[107.214439,29.39775],[107.199561,29.399135],[107.203244,29.411316],[107.185911,29.412945],[107.173096,29.408342],[107.167056,29.420603],[107.16082,29.424432],[107.155272,29.417304],[107.148741,29.419259],[107.134846,29.411438],[107.142947,29.408179],[107.146827,29.396365],[107.134158,29.394613],[107.125124,29.387564],[107.110442,29.391598],[107.109166,29.383856],[107.114812,29.366741],[107.10018,29.361606],[107.083387,29.359813],[107.07229,29.362829],[107.043321,29.378437],[107.052552,29.388705],[107.051619,29.394205],[107.035121,29.391231],[107.026381,29.402802],[107.034581,29.406713],[107.029228,29.410827],[107.025055,29.441782],[107.034482,29.453103],[107.034581,29.467435],[107.015873,29.473338],[107.019997,29.487057],[107.012927,29.487708],[107.00453,29.471058],[106.993925,29.482579],[106.98052,29.488767],[106.964415,29.488685],[106.945952,29.497029],[106.935297,29.464463],[106.933039,29.448542],[106.936574,29.439339],[106.932253,29.399746],[106.922531,29.403046],[106.919978,29.329893],[106.922433,29.310322],[106.920616,29.302411],[106.92312,29.280673],[106.933039,29.279653],[106.936132,29.256931],[106.954692,29.252199],[106.95754,29.228981],[106.968392,29.215228],[106.961812,29.202738],[106.95263,29.197104],[106.955527,29.190695],[106.945069,29.183142],[106.919045,29.180366],[106.911385,29.197472],[106.895574,29.190491],[106.896409,29.180039],[106.907751,29.179672],[106.909175,29.160562],[106.899355,29.155621],[106.891744,29.14149],[106.891695,29.131769],[106.905542,29.11596],[106.911483,29.114775],[106.921844,29.100475],[106.910256,29.068844],[106.906131,29.051758],[106.915362,29.054538],[106.920567,29.045749],[106.926361,29.047793],[106.938685,29.041906],[106.950421,29.071787],[106.954545,29.059239],[106.96358,29.058217],[106.975266,29.050532],[106.977034,29.056009],[106.988671,29.043459],[106.981158,29.039861],[106.979832,29.031766],[106.990045,29.021094],[107.003892,29.016023],[107.01715,28.998724],[107.024564,28.995983],[107.02967,28.985717],[107.022256,28.974058],[107.013614,28.969599],[107.015971,28.952087],[107.02913,28.941284],[107.043124,28.945785],[107.051275,28.942143],[107.057315,28.932771],[107.053288,28.919183],[107.04337,28.919879],[107.057462,28.894785]]]]}},{"type":"Feature","properties":{"adcode":500120,"name":"璧山区","center":[106.231126,29.593581],"centroid":[106.191948,29.561371],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":19,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.253425,29.532841],[106.251707,29.559406],[106.260005,29.592633],[106.265602,29.605889],[106.274882,29.612231],[106.282493,29.626744],[106.273017,29.631215],[106.279105,29.637841],[106.287649,29.635849],[106.2794,29.652553],[106.287698,29.663484],[106.284506,29.675268],[106.278712,29.67669],[106.280431,29.703298],[106.285636,29.697896],[106.297076,29.706467],[106.305669,29.736641],[106.31598,29.764898],[106.324279,29.774843],[106.334197,29.771311],[106.344214,29.779307],[106.372889,29.814207],[106.351284,29.812422],[106.34225,29.816804],[106.345883,29.836114],[106.337585,29.834532],[106.342446,29.842523],[106.330956,29.848323],[106.336407,29.860247],[106.329385,29.859639],[106.325653,29.872737],[106.314409,29.884861],[106.26791,29.84443],[106.233048,29.805686],[106.211689,29.791564],[106.194552,29.785395],[106.180559,29.771555],[106.160771,29.759702],[106.169069,29.752557],[106.163422,29.721088],[106.156155,29.70935],[106.169314,29.689893],[106.163226,29.681321],[106.165828,29.675755],[106.156695,29.667304],[106.144813,29.662956],[106.122717,29.638816],[106.113928,29.615687],[106.117561,29.610076],[106.112307,29.601457],[106.104844,29.576041],[106.096251,29.559691],[106.087217,29.552287],[106.089132,29.546388],[106.085989,29.530562],[106.076709,29.505536],[106.078035,29.491168],[106.076218,29.470366],[106.071799,29.461491],[106.073272,29.448868],[106.063648,29.418974],[106.062666,29.396161],[106.067822,29.390946],[106.065612,29.375788],[106.048377,29.353251],[106.049998,29.341878],[106.043418,29.32549],[106.072928,29.321005],[106.086382,29.30706],[106.084663,29.300331],[106.096104,29.291359],[106.110442,29.294907],[106.113289,29.284018],[106.120065,29.278878],[106.136416,29.294826],[106.152276,29.293684],[106.156106,29.301962],[106.17663,29.308446],[106.195731,29.327447],[106.206042,29.334826],[106.223621,29.353984],[106.245569,29.40989],[106.248613,29.429238],[106.262705,29.451596],[106.26025,29.466051],[106.267026,29.494994],[106.260594,29.494262],[106.261969,29.516524],[106.253278,29.519698],[106.253425,29.532841]]]]}},{"type":"Feature","properties":{"adcode":500151,"name":"铜梁区","center":[106.054948,29.839944],"centroid":[106.0332,29.81109],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":20,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.981207,30.061359],[105.973105,30.072771],[105.95862,30.076778],[105.959209,30.071234],[105.949438,30.060832],[105.939274,30.063342],[105.943006,30.074511],[105.934511,30.080703],[105.933333,30.088027],[105.917571,30.093934],[105.907554,30.091951],[105.897783,30.079003],[105.904608,30.073662],[105.895475,30.065123],[105.901711,30.057392],[105.900336,30.045775],[105.891498,30.044156],[105.883691,30.049256],[105.872103,30.045411],[105.869648,30.032983],[105.875491,30.027356],[105.866702,30.009864],[105.870335,30.00549],[105.886784,30.006462],[105.904019,29.995649],[105.915656,29.993179],[105.907849,29.98038],[105.91104,29.961624],[105.924347,29.963123],[105.925034,29.956478],[105.934953,29.954493],[105.941385,29.935691],[105.931712,29.927546],[105.95042,29.908172],[105.945657,29.893051],[105.933185,29.88778],[105.926606,29.877928],[105.930681,29.872373],[105.923169,29.865763],[105.910058,29.868561],[105.90888,29.879955],[105.88266,29.890659],[105.875638,29.897551],[105.870434,29.89078],[105.860319,29.896902],[105.846177,29.895402],[105.837241,29.878293],[105.824769,29.881861],[105.818926,29.855583],[105.809253,29.844714],[105.807387,29.833031],[105.790987,29.827879],[105.778368,29.811367],[105.789269,29.794121],[105.808418,29.783569],[105.806945,29.771636],[105.820939,29.773381],[105.822461,29.762827],[105.83076,29.757997],[105.868911,29.756982],[105.878584,29.769525],[105.888012,29.77468],[105.893904,29.785882],[105.888208,29.790347],[105.893806,29.802967],[105.906523,29.795582],[105.904706,29.785598],[105.922334,29.788236],[105.944233,29.775979],[105.957638,29.781662],[105.970601,29.779876],[105.976542,29.784746],[105.991223,29.781174],[105.998588,29.768916],[105.997508,29.756819],[106.001289,29.748375],[106.010913,29.747279],[106.014448,29.752841],[106.028344,29.749552],[106.025987,29.734854],[106.036838,29.726692],[106.031732,29.722184],[106.005659,29.682581],[105.997361,29.6645],[105.982532,29.671936],[105.969815,29.646294],[105.953513,29.630199],[105.946099,29.626988],[105.938243,29.613166],[105.924347,29.595805],[105.890467,29.570429],[105.906572,29.562741],[105.903626,29.552531],[105.910746,29.539065],[105.921303,29.537438],[105.938341,29.543744],[105.935984,29.549968],[105.951156,29.548463],[105.956116,29.540734],[105.967802,29.53695],[105.975363,29.54228],[105.981992,29.533369],[105.988523,29.542483],[105.995446,29.541303],[105.995446,29.525801],[106.010127,29.520512],[106.018769,29.527388],[106.038803,29.529179],[106.071553,29.536014],[106.078526,29.545209],[106.089132,29.546388],[106.087217,29.552287],[106.096251,29.559691],[106.104844,29.576041],[106.112307,29.601457],[106.117561,29.610076],[106.113928,29.615687],[106.122717,29.638816],[106.144813,29.662956],[106.156695,29.667304],[106.165828,29.675755],[106.163226,29.681321],[106.169314,29.689893],[106.156155,29.70935],[106.163422,29.721088],[106.169069,29.752557],[106.160771,29.759702],[106.180559,29.771555],[106.194552,29.785395],[106.211689,29.791564],[106.233048,29.805686],[106.26791,29.84443],[106.263393,29.852258],[106.271593,29.86779],[106.265995,29.873913],[106.276699,29.873021],[106.281658,29.894673],[106.27012,29.887334],[106.266977,29.895686],[106.258139,29.89747],[106.245078,29.907685],[106.244341,29.908253],[106.242377,29.910239],[106.24115,29.90955],[106.240757,29.909428],[106.240119,29.909347],[106.239971,29.909631],[106.240119,29.910928],[106.239873,29.91109],[106.239529,29.911131],[106.23894,29.911212],[106.2384,29.91182],[106.238302,29.912144],[106.2384,29.912549],[106.239873,29.919116],[106.221018,29.920413],[106.219005,29.929451],[106.208645,29.929126],[106.200346,29.936826],[106.197744,29.931153],[106.165877,29.922399],[106.166123,29.921142],[106.166074,29.920777],[106.165926,29.920696],[106.165533,29.92094],[106.165435,29.921102],[106.165141,29.921426],[106.164944,29.921507],[106.160574,29.919359],[106.146924,29.92787],[106.130426,29.921993],[106.129198,29.929491],[106.134845,29.938771],[106.124141,29.936461],[106.1127,29.9519],[106.112946,29.960813],[106.119378,29.966607],[106.123306,29.980056],[106.118052,29.986982],[106.123061,29.998687],[106.098215,30.002331],[106.075727,30.001643],[106.049163,29.997026],[106.036495,29.997674],[106.028,29.991883],[106.027362,30.001522],[106.046511,30.007474],[106.047788,30.01363],[106.020439,30.028084],[105.998785,30.026627],[105.991076,30.033671],[105.981501,30.052414],[105.981207,30.061359]]],[[[106.2384,29.912549],[106.238302,29.912144],[106.2384,29.91182],[106.23894,29.911212],[106.239529,29.911131],[106.239873,29.91109],[106.240119,29.910928],[106.239971,29.909631],[106.240119,29.909347],[106.240757,29.909428],[106.24115,29.90955],[106.242377,29.910239],[106.2384,29.912549]]],[[[106.165877,29.922399],[106.164944,29.921507],[106.165141,29.921426],[106.165435,29.921102],[106.165533,29.92094],[106.165926,29.920696],[106.166074,29.920777],[106.166123,29.921142],[106.165877,29.922399]]]]}},{"type":"Feature","properties":{"adcode":500152,"name":"潼南区","center":[105.841818,30.189554],"centroid":[105.814632,30.143351],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":21,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.733146,29.860693],[105.738105,29.856516],[105.738252,29.845646],[105.725339,29.832747],[105.735846,29.819319],[105.72308,29.809825],[105.714684,29.79684],[105.713898,29.789129],[105.721411,29.78779],[105.746354,29.801466],[105.763883,29.793512],[105.77719,29.801831],[105.778368,29.811367],[105.790987,29.827879],[105.807387,29.833031],[105.809253,29.844714],[105.818926,29.855583],[105.824769,29.881861],[105.837241,29.878293],[105.846177,29.895402],[105.860319,29.896902],[105.870434,29.89078],[105.875638,29.897551],[105.88266,29.890659],[105.90888,29.879955],[105.910058,29.868561],[105.923169,29.865763],[105.930681,29.872373],[105.926606,29.877928],[105.933185,29.88778],[105.945657,29.893051],[105.95042,29.908172],[105.931712,29.927546],[105.941385,29.935691],[105.934953,29.954493],[105.925034,29.956478],[105.924347,29.963123],[105.91104,29.961624],[105.907849,29.98038],[105.915656,29.993179],[105.904019,29.995649],[105.886784,30.006462],[105.870335,30.00549],[105.866702,30.009864],[105.875491,30.027356],[105.869648,30.032983],[105.872103,30.045411],[105.883691,30.049256],[105.891498,30.044156],[105.900336,30.045775],[105.901711,30.057392],[105.895475,30.065123],[105.904608,30.073662],[105.897783,30.079003],[105.907554,30.091951],[105.917571,30.093934],[105.933333,30.088027],[105.934511,30.080703],[105.943006,30.074511],[105.939274,30.063342],[105.949438,30.060832],[105.959209,30.071234],[105.95862,30.076778],[105.973105,30.072771],[105.981207,30.061359],[105.98592,30.070262],[105.980814,30.083131],[105.989357,30.093125],[105.985184,30.101742],[105.999472,30.113757],[105.994513,30.120108],[105.998343,30.129289],[105.978801,30.143606],[105.976247,30.153109],[105.987639,30.164026],[105.974381,30.175224],[105.973743,30.188079],[105.991174,30.177246],[106.00669,30.187958],[106.019948,30.201417],[106.006052,30.213622],[106.004039,30.224775],[105.995102,30.231845],[105.981059,30.233583],[105.985724,30.248692],[105.995397,30.256892],[106.006248,30.260002],[106.013466,30.268282],[106.009489,30.275754],[105.998588,30.280681],[105.992107,30.277369],[105.98101,30.280156],[105.983367,30.289766],[105.974872,30.289322],[105.967507,30.308379],[105.975216,30.30632],[105.988277,30.320006],[105.981305,30.325051],[105.980372,30.342084],[105.989063,30.352697],[105.97826,30.373477],[105.970257,30.378883],[105.940894,30.372267],[105.939568,30.380537],[105.925575,30.385338],[105.917031,30.395987],[105.901515,30.386346],[105.899011,30.396027],[105.905983,30.397036],[105.905296,30.406433],[105.876522,30.399536],[105.886784,30.392639],[105.877602,30.386669],[105.869108,30.401513],[105.873772,30.408692],[105.862332,30.406353],[105.846227,30.392437],[105.839107,30.399698],[105.846128,30.411152],[105.836946,30.41583],[105.831103,30.429016],[105.820154,30.437524],[105.802183,30.427927],[105.792313,30.427282],[105.795456,30.418491],[105.782787,30.403086],[105.770708,30.404054],[105.760299,30.384571],[105.770021,30.37618],[105.751854,30.357136],[105.756224,30.347088],[105.74984,30.339703],[105.735012,30.336676],[105.741493,30.319158],[105.729905,30.316897],[105.714831,30.322791],[105.711738,30.315848],[105.718612,30.307733],[105.711001,30.294208],[105.711787,30.282255],[105.722982,30.275552],[105.734963,30.277046],[105.730102,30.265818],[105.735159,30.261537],[105.720969,30.263193],[105.723866,30.254751],[105.701475,30.257862],[105.67334,30.252772],[105.667203,30.265697],[105.660672,30.264324],[105.645745,30.273371],[105.622668,30.273856],[105.620163,30.261779],[105.610589,30.255882],[105.62036,30.248934],[105.618739,30.23536],[105.636269,30.219724],[105.655418,30.220815],[105.662342,30.210066],[105.645549,30.206873],[105.642406,30.186422],[105.632832,30.183754],[105.618052,30.185694],[105.607888,30.178297],[105.595122,30.183673],[105.5799,30.173446],[105.567036,30.183188],[105.546904,30.180722],[105.536445,30.164834],[105.536151,30.152907],[105.549605,30.151734],[105.556086,30.144779],[105.558197,30.151977],[105.571406,30.161559],[105.582159,30.162974],[105.59684,30.157112],[105.593207,30.144738],[105.569982,30.134304],[105.574155,30.130422],[105.580244,30.129694],[105.582699,30.12755],[105.583141,30.12395],[105.598068,30.109227],[105.606759,30.109712],[105.619721,30.104129],[105.640835,30.101338],[105.637496,30.093691],[105.639264,30.076413],[105.649231,30.074592],[105.660476,30.066296],[105.674617,30.071274],[105.676728,30.056057],[105.683455,30.052859],[105.68699,30.038975],[105.699413,30.043144],[105.705354,30.035776],[105.721312,30.042051],[105.728039,30.027194],[105.742033,30.03359],[105.743359,30.027113],[105.75367,30.01861],[105.74876,30.005895],[105.732508,29.998768],[105.723326,29.976005],[105.731034,29.95664],[105.721116,29.950563],[105.714978,29.930747],[105.702507,29.923939],[105.715027,29.911171],[105.711639,29.899497],[105.717433,29.893578],[105.73403,29.893578],[105.735257,29.871967],[105.733146,29.860693]]],[[[105.583141,30.12395],[105.582699,30.12755],[105.580244,30.129694],[105.574155,30.130422],[105.583141,30.12395]]]]}},{"type":"Feature","properties":{"adcode":500153,"name":"荣昌区","center":[105.594061,29.403627],"centroid":[105.506727,29.464817],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":22,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.66514,29.276594],[105.655664,29.284426],[105.645794,29.286506],[105.637251,29.298251],[105.635974,29.320638],[105.645352,29.319252],[105.653405,29.33397],[105.649575,29.340247],[105.653209,29.349052],[105.663078,29.346647],[105.675501,29.355574],[105.691655,29.357652],[105.696172,29.364622],[105.709283,29.368616],[105.709086,29.375625],[105.716893,29.372813],[105.728678,29.384875],[105.741002,29.397628],[105.722835,29.397872],[105.73403,29.417386],[105.727646,29.422844],[105.737663,29.435592],[105.735061,29.445162],[105.724013,29.449967],[105.725486,29.454121],[105.714929,29.464259],[105.687236,29.446506],[105.662194,29.460025],[105.657431,29.468168],[105.658119,29.481317],[105.65311,29.485022],[105.662636,29.499431],[105.648397,29.494139],[105.641179,29.505861],[105.639509,29.489052],[105.646236,29.486121],[105.637152,29.473623],[105.629738,29.478386],[105.631506,29.485917],[105.620556,29.494017],[105.619967,29.504803],[105.607642,29.508262],[105.595711,29.504152],[105.593059,29.517744],[105.583239,29.515588],[105.590015,29.524011],[105.59522,29.539432],[105.592175,29.549928],[105.599983,29.553019],[105.602241,29.569941],[105.594483,29.575553],[105.590899,29.590397],[105.580047,29.591617],[105.561045,29.588892],[105.549703,29.572096],[105.542534,29.57413],[105.542681,29.586412],[105.536642,29.59121],[105.517738,29.586493],[105.50561,29.609344],[105.509243,29.637962],[105.496673,29.648652],[105.487688,29.663159],[105.490683,29.675186],[105.482777,29.679127],[105.475658,29.674699],[105.436377,29.676974],[105.420615,29.688309],[105.400532,29.67157],[105.389681,29.676487],[105.383887,29.669823],[105.393167,29.650724],[105.377553,29.643287],[105.380794,29.628248],[105.369648,29.621053],[105.365965,29.627516],[105.354377,29.626703],[105.346766,29.620199],[105.341611,29.60292],[105.335522,29.595195],[105.325653,29.595927],[105.329826,29.604384],[105.320988,29.60971],[105.320644,29.601782],[105.311315,29.593365],[105.317649,29.578156],[105.298647,29.572503],[105.289759,29.552613],[105.294326,29.53398],[105.304686,29.531254],[105.318877,29.512413],[105.323247,29.495157],[105.321234,29.475984],[105.331299,29.47175],[105.338026,29.461857],[105.336111,29.455546],[105.324622,29.450008],[105.334147,29.441416],[105.345588,29.448501],[105.360417,29.444225],[105.362037,29.454691],[105.373821,29.458274],[105.389534,29.452818],[105.399207,29.438972],[105.387471,29.438361],[105.388797,29.431886],[105.371759,29.423862],[105.373281,29.420766],[105.39631,29.422884],[105.413544,29.418567],[105.417031,29.423373],[105.427293,29.418852],[105.431466,29.408179],[105.443103,29.399094],[105.443693,29.386382],[105.432203,29.379659],[105.438586,29.370816],[105.434805,29.363114],[105.418602,29.352313],[105.422972,29.326509],[105.420075,29.316968],[105.436573,29.319496],[105.44929,29.317498],[105.454691,29.329077],[105.466476,29.321576],[105.466083,29.313421],[105.474283,29.309996],[105.466427,29.305592],[105.465395,29.292379],[105.459307,29.290136],[105.488866,29.278185],[105.509145,29.285404],[105.50939,29.274677],[105.518425,29.264438],[105.537869,29.272882],[105.55584,29.273576],[105.558295,29.27847],[105.583288,29.270353],[105.596005,29.274473],[105.609508,29.27276],[105.607986,29.255748],[105.614173,29.258359],[105.619771,29.27174],[105.6318,29.280388],[105.644076,29.270965],[105.63946,29.261582],[105.647611,29.25326],[105.666515,29.252933],[105.671622,29.260889],[105.664698,29.269048],[105.66514,29.276594]]]]}},{"type":"Feature","properties":{"adcode":500154,"name":"开州区","center":[108.413317,31.167735],"centroid":[108.382659,31.271013],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":23,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.542831,31.673626],[108.546464,31.666701],[108.532814,31.669129],[108.519066,31.665706],[108.513272,31.656193],[108.506692,31.657307],[108.494564,31.649545],[108.486168,31.639871],[108.468786,31.636169],[108.46525,31.61837],[108.456461,31.628882],[108.442664,31.6337],[108.423072,31.621277],[108.417916,31.610087],[108.402646,31.603874],[108.388357,31.586906],[108.393611,31.576349],[108.377948,31.570413],[108.391795,31.560452],[108.388652,31.546385],[108.381139,31.542599],[108.347603,31.545189],[108.33906,31.537896],[108.346572,31.525141],[108.345345,31.514936],[108.323298,31.502378],[108.311415,31.506684],[108.295998,31.503494],[108.281709,31.507282],[108.276995,31.501181],[108.259564,31.502497],[108.254801,31.498829],[108.236683,31.506365],[108.226764,31.505846],[108.218417,31.496197],[108.190478,31.491492],[108.193326,31.468202],[108.206829,31.464293],[108.210806,31.467883],[108.223131,31.46517],[108.225586,31.453004],[108.210561,31.435769],[108.216551,31.427031],[108.216306,31.411188],[108.203392,31.395382],[108.182868,31.393027],[108.175257,31.382608],[108.157826,31.376659],[108.154143,31.37075],[108.158906,31.360289],[108.171182,31.356975],[108.180609,31.349227],[108.185519,31.338005],[108.180462,31.325782],[108.162834,31.31971],[108.16141,31.313757],[108.146533,31.30277],[108.111916,31.286586],[108.094485,31.275036],[108.092374,31.265764],[108.080589,31.261446],[108.066399,31.261766],[108.059967,31.254971],[108.040866,31.253611],[108.021422,31.245736],[108.031635,31.23682],[108.027903,31.221984],[108.040081,31.218625],[108.076268,31.231822],[108.071113,31.218345],[108.080737,31.218945],[108.089919,31.201867],[108.085696,31.188107],[108.070278,31.177785],[108.069443,31.169383],[108.055253,31.156658],[108.056628,31.145652],[108.045629,31.145893],[108.0363,31.139929],[108.035318,31.128962],[108.025743,31.116351],[108.014744,31.115271],[108.009294,31.108785],[108.01386,31.098735],[108.024712,31.089244],[108.028984,31.061728],[108.050245,31.059966],[108.059869,31.053196],[108.053289,31.040736],[108.043321,31.035407],[108.033599,31.036128],[108.011062,31.023666],[108.003795,31.025389],[107.995889,31.004308],[107.983123,30.984225],[107.971535,30.982421],[107.943547,30.989437],[107.937409,30.968669],[107.936329,30.952749],[107.938735,30.940035],[107.948261,30.919056],[107.957345,30.919858],[107.971535,30.911794],[107.982435,30.913239],[107.994711,30.908665],[108.000849,30.911915],[108.009392,30.907662],[108.029426,30.884508],[108.0363,30.8701],[108.041112,30.876522],[108.069149,30.888281],[108.071751,30.892695],[108.081817,30.885712],[108.101654,30.878007],[108.090115,30.871545],[108.096646,30.84782],[108.105287,30.841356],[108.109608,30.82931],[108.122866,30.833487],[108.126057,30.840875],[108.131704,30.832001],[108.152179,30.831278],[108.157482,30.834771],[108.167106,30.827182],[108.18218,30.824211],[108.197254,30.833647],[108.200102,30.839188],[108.218417,30.852839],[108.229956,30.856171],[108.225488,30.860908],[108.231184,30.87612],[108.228237,30.881298],[108.244294,30.89113],[108.243803,30.882261],[108.260055,30.872789],[108.268402,30.881659],[108.29202,30.892976],[108.300269,30.901041],[108.346277,30.921222],[108.360861,30.932976],[108.349027,30.939153],[108.339649,30.963135],[108.355214,30.960408],[108.372792,30.969791],[108.395674,30.991641],[108.41497,30.998897],[108.418015,31.006072],[108.432156,31.012725],[108.451256,31.013527],[108.474334,31.022544],[108.48003,31.037811],[108.476691,31.052795],[108.486217,31.057322],[108.488181,31.064733],[108.511995,31.074145],[108.510964,31.07791],[108.53031,31.083838],[108.539934,31.082957],[108.537921,31.095491],[108.558887,31.089404],[108.547544,31.105261],[108.562619,31.115791],[108.562717,31.130443],[108.567823,31.140529],[108.576956,31.142851],[108.601851,31.160099],[108.598414,31.170943],[108.583585,31.174864],[108.578036,31.180065],[108.587759,31.185066],[108.588741,31.201587],[108.596646,31.230622],[108.618643,31.252212],[108.622768,31.259488],[108.631262,31.257249],[108.643489,31.268721],[108.63632,31.283509],[108.654586,31.289184],[108.659054,31.298535],[108.639806,31.31955],[108.63578,31.329896],[108.644176,31.339482],[108.683261,31.34084],[108.698237,31.343956],[108.701527,31.348988],[108.696567,31.359011],[108.709186,31.374983],[108.693474,31.377418],[108.694554,31.387199],[108.712525,31.394584],[108.729956,31.390752],[108.736389,31.395742],[108.731528,31.403285],[108.740022,31.407676],[108.742084,31.420087],[108.757797,31.430941],[108.759908,31.438602],[108.752298,31.443749],[108.740071,31.441834],[108.726617,31.455118],[108.703098,31.463814],[108.697255,31.476737],[108.69971,31.491652],[108.694554,31.499347],[108.703982,31.503972],[108.721707,31.503255],[108.730055,31.499746],[108.748026,31.505208],[108.761087,31.503893],[108.766881,31.513621],[108.769483,31.529845],[108.777094,31.543635],[108.794034,31.551366],[108.801399,31.574078],[108.820303,31.574596],[108.824133,31.578899],[108.837096,31.574237],[108.853398,31.578939],[108.865133,31.592801],[108.877997,31.602799],[108.894888,31.606025],[108.895821,31.614587],[108.887719,31.625657],[108.893268,31.632187],[108.892728,31.642578],[108.898227,31.65484],[108.888407,31.654999],[108.879421,31.663835],[108.865378,31.671079],[108.860517,31.681068],[108.840533,31.684371],[108.809894,31.685764],[108.794525,31.684251],[108.782888,31.688828],[108.770612,31.682142],[108.758141,31.664313],[108.755342,31.647077],[108.742281,31.640906],[108.736192,31.633302],[108.728974,31.634457],[108.714686,31.627648],[108.701183,31.634098],[108.69151,31.625259],[108.683899,31.627449],[108.67673,31.62275],[108.65542,31.626095],[108.649381,31.621715],[108.64123,31.625179],[108.640101,31.637005],[108.624388,31.651655],[108.608725,31.650421],[108.576809,31.664114],[108.574501,31.67088],[108.561833,31.669726],[108.542831,31.673626]]]]}},{"type":"Feature","properties":{"adcode":500155,"name":"梁平区","center":[107.800034,30.672168],"centroid":[107.719234,30.658344],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":24,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.876131,30.813287],[107.849861,30.792601],[107.831399,30.798426],[107.817749,30.798024],[107.799189,30.814934],[107.783722,30.819311],[107.775375,30.814853],[107.763836,30.817102],[107.755341,30.829551],[107.757452,30.840232],[107.752788,30.850751],[107.760349,30.862272],[107.750038,30.864801],[107.749547,30.873471],[107.737714,30.88499],[107.715864,30.887839],[107.704128,30.872227],[107.691951,30.874756],[107.670445,30.851996],[107.647465,30.823247],[107.633766,30.817785],[107.616138,30.828588],[107.614665,30.839148],[107.598266,30.844729],[107.584075,30.840473],[107.577594,30.848141],[107.560654,30.849868],[107.556529,30.846295],[107.535465,30.84766],[107.526626,30.839429],[107.523288,30.848222],[107.514793,30.854926],[107.482926,30.838305],[107.492108,30.833165],[107.489997,30.821118],[107.498982,30.810757],[107.490193,30.810757],[107.493778,30.803688],[107.47777,30.799792],[107.47345,30.785772],[107.460339,30.784165],[107.466379,30.774041],[107.453809,30.77167],[107.44556,30.778179],[107.446837,30.770103],[107.43957,30.759776],[107.44502,30.752503],[107.439029,30.747077],[107.425674,30.746756],[107.437065,30.721031],[107.458621,30.704788],[107.460929,30.687498],[107.456559,30.682712],[107.469718,30.677604],[107.477427,30.664774],[107.499179,30.660148],[107.516806,30.647838],[107.515431,30.642045],[107.493728,30.618988],[107.485332,30.598341],[107.46741,30.586305],[107.460241,30.571329],[107.42754,30.547611],[107.442859,30.535287],[107.433825,30.523565],[107.419929,30.516475],[107.408734,30.521551],[107.404855,30.516112],[107.425527,30.510835],[107.446837,30.49766],[107.463629,30.481984],[107.480029,30.478599],[107.496036,30.494638],[107.509097,30.495363],[107.516266,30.489198],[107.527559,30.490487],[107.533452,30.500843],[107.544352,30.498869],[107.55157,30.50322],[107.553436,30.491092],[107.562225,30.487949],[107.570523,30.47731],[107.593994,30.475174],[107.610197,30.48009],[107.611719,30.47211],[107.629298,30.485611],[107.637743,30.483032],[107.636957,30.470498],[107.660772,30.470136],[107.670346,30.464493],[107.673538,30.453851],[107.656205,30.431193],[107.661803,30.420387],[107.679479,30.438612],[107.695241,30.460986],[107.715716,30.482589],[107.741347,30.517885],[107.748123,30.521269],[107.757894,30.514058],[107.767911,30.513736],[107.777535,30.506121],[107.77783,30.497821],[107.796488,30.484805],[107.796488,30.479204],[107.80621,30.470861],[107.817455,30.471466],[107.810629,30.482428],[107.818142,30.497539],[107.819173,30.50882],[107.814017,30.521631],[107.829239,30.544671],[107.826145,30.554417],[107.860713,30.559088],[107.870386,30.547248],[107.885411,30.549544],[107.891352,30.54608],[107.886884,30.539556],[107.88546,30.512124],[107.897883,30.502938],[107.909422,30.502938],[107.916001,30.495323],[107.924839,30.494074],[107.939864,30.485893],[107.942025,30.498828],[107.953711,30.51434],[107.958621,30.531017],[107.972615,30.521913],[107.985676,30.531017],[107.990243,30.538871],[108.003795,30.542174],[108.029622,30.561544],[108.034778,30.574187],[108.028051,30.587432],[108.033697,30.592424],[108.025252,30.60289],[108.016954,30.629571],[108.023091,30.63617],[108.025645,30.648844],[108.042585,30.662481],[108.0554,30.660027],[108.079558,30.664532],[108.082259,30.677926],[108.074844,30.696304],[108.086678,30.713714],[108.074894,30.723121],[108.047544,30.723684],[108.03517,30.715362],[108.011405,30.709814],[107.959112,30.719262],[107.918653,30.75829],[107.908243,30.762911],[107.905592,30.77601],[107.88492,30.806138],[107.876131,30.813287]]]]}},{"type":"Feature","properties":{"adcode":500156,"name":"武隆区","center":[107.75655,29.32376],"centroid":[107.709628,29.373158],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":25,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.401565,29.184694],[107.405444,29.188613],[107.428473,29.191144],[107.441435,29.203962],[107.463973,29.195431],[107.462353,29.176855],[107.473106,29.170975],[107.486707,29.174242],[107.514891,29.194206],[107.532224,29.195471],[107.549557,29.210085],[107.553387,29.218697],[107.565711,29.220982],[107.575139,29.20784],[107.575237,29.189062],[107.580147,29.183591],[107.583437,29.16828],[107.590164,29.165299],[107.585057,29.158357],[107.589231,29.150026],[107.601015,29.147821],[107.600622,29.15897],[107.606711,29.165463],[107.616924,29.163013],[107.629936,29.165585],[107.641573,29.16093],[107.659446,29.16289],[107.66362,29.147535],[107.698629,29.141245],[107.707565,29.154151],[107.718515,29.156152],[107.727206,29.175712],[107.724751,29.182203],[107.739383,29.189021],[107.751609,29.199635],[107.76089,29.189021],[107.760251,29.177712],[107.767911,29.17514],[107.775227,29.162808],[107.781905,29.161992],[107.795162,29.146473],[107.808567,29.142838],[107.810629,29.138345],[107.799974,29.106195],[107.78981,29.082372],[107.785244,29.04722],[107.823543,29.034219],[107.838421,29.040597],[107.849567,29.039289],[107.874707,29.057031],[107.873086,29.074852],[107.883938,29.078163],[107.889486,29.085151],[107.883889,29.106195],[107.895133,29.117185],[107.892727,29.134138],[107.899896,29.166361],[107.903775,29.172282],[107.898865,29.184245],[107.911975,29.190328],[107.934905,29.185102],[107.94286,29.178243],[107.960143,29.188695],[107.970111,29.198492],[107.973057,29.210166],[107.986756,29.217799],[107.997804,29.236857],[108.006446,29.229267],[108.010325,29.247792],[107.99697,29.26248],[107.998983,29.273943],[107.996282,29.288545],[108.003304,29.315174],[107.992059,29.325408],[107.984301,29.339188],[107.983319,29.350397],[107.976641,29.36344],[107.988426,29.38027],[107.992796,29.397383],[107.989653,29.416856],[108.004286,29.428424],[108.002763,29.442108],[108.013075,29.448786],[108.013959,29.469674],[108.017347,29.483719],[108.015432,29.504559],[108.055793,29.531783],[108.074059,29.549073],[108.075826,29.557982],[108.066988,29.566687],[108.066153,29.575472],[108.075876,29.577627],[108.084026,29.588892],[108.076563,29.605726],[108.067872,29.614223],[108.056039,29.621581],[108.046513,29.622679],[108.024368,29.619467],[108.000259,29.626256],[107.979784,29.627435],[107.969129,29.620321],[107.961715,29.608978],[107.949881,29.601701],[107.948703,29.623126],[107.934218,29.655723],[107.922974,29.655235],[107.905543,29.662428],[107.897146,29.661493],[107.87073,29.667995],[107.857472,29.667629],[107.845786,29.660233],[107.842938,29.653569],[107.845246,29.628695],[107.839943,29.607393],[107.831743,29.59243],[107.832283,29.581247],[107.838863,29.570185],[107.835671,29.558877],[107.828551,29.556192],[107.825851,29.545005],[107.818928,29.554647],[107.80729,29.554606],[107.80351,29.563433],[107.791774,29.560952],[107.795801,29.567744],[107.7685,29.579254],[107.781267,29.582142],[107.772576,29.585883],[107.767862,29.597635],[107.757403,29.602636],[107.732263,29.585598],[107.716404,29.596659],[107.709431,29.60906],[107.701575,29.615443],[107.69804,29.605889],[107.687532,29.600481],[107.666958,29.573804],[107.654634,29.562457],[107.651197,29.553304],[107.629003,29.539147],[107.608135,29.532474],[107.607546,29.514652],[107.615009,29.512373],[107.620558,29.483638],[107.613143,29.479526],[107.595958,29.480951],[107.577446,29.462427],[107.574206,29.452533],[107.56139,29.453062],[107.552798,29.447809],[107.546562,29.431845],[107.532666,29.423047],[107.513664,29.461165],[107.478507,29.497151],[107.475905,29.50635],[107.4625,29.502117],[107.463826,29.498617],[107.450519,29.490028],[107.441386,29.491575],[107.431762,29.483475],[107.427491,29.505658],[107.391548,29.530969],[107.380599,29.523197],[107.365868,29.522383],[107.358601,29.51575],[107.348683,29.515547],[107.328993,29.509321],[107.323248,29.497558],[107.313526,29.487912],[107.30567,29.465318],[107.277338,29.440357],[107.262264,29.436162],[107.260938,29.429035],[107.245422,29.424391],[107.240512,29.426795],[107.227598,29.418159],[107.226666,29.406835],[107.237713,29.394817],[107.241691,29.379415],[107.256176,29.38463],[107.263393,29.383571],[107.272428,29.37371],[107.272428,29.358386],[107.293444,29.349704],[107.298599,29.352069],[107.309893,29.345098],[107.318387,29.347789],[107.323395,29.339147],[107.347308,29.342571],[107.350156,29.346892],[107.367047,29.341756],[107.392039,29.326754],[107.38271,29.308609],[107.373332,29.298578],[107.379764,29.299516],[107.391597,29.289279],[107.388553,29.281081],[107.404069,29.28259],[107.421942,29.274636],[107.416541,29.264234],[107.401025,29.248853],[107.399355,29.235714],[107.401909,29.218248],[107.395378,29.205881],[107.401565,29.184694]]]]}},{"type":"Feature","properties":{"adcode":500229,"name":"城口县","center":[108.6649,31.946293],"centroid":[108.735105,31.881846],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":26,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.281611,31.716876],[109.2795,31.723479],[109.283085,31.739627],[109.27076,31.749291],[109.2713,31.756607],[109.256177,31.758635],[109.254655,31.766905],[109.263689,31.773544],[109.281268,31.777917],[109.274786,31.791075],[109.274835,31.800455],[109.255293,31.803038],[109.239875,31.811304],[109.232363,31.809436],[109.213606,31.817503],[109.196224,31.817543],[109.191854,31.827953],[109.199563,31.842494],[109.190921,31.855681],[109.167009,31.87534],[109.131901,31.891343],[109.124585,31.892137],[109.114225,31.905556],[109.069935,31.938936],[109.05982,31.941356],[109.039345,31.96072],[109.035122,31.958061],[109.020883,31.963219],[108.988427,31.979404],[108.978213,31.978135],[108.968295,31.982538],[108.95273,31.979682],[108.937116,31.988924],[108.91831,31.988249],[108.902401,31.984918],[108.873529,32.000227],[108.837881,32.038805],[108.810581,32.047169],[108.788682,32.048318],[108.776259,32.055096],[108.767961,32.065519],[108.751708,32.074158],[108.752543,32.08759],[108.747731,32.099831],[108.726421,32.106803],[108.714833,32.103713],[108.674717,32.103396],[108.66691,32.111913],[108.654045,32.117418],[108.646975,32.128666],[108.606024,32.155155],[108.592178,32.160223],[108.583978,32.172217],[108.551031,32.176096],[108.509736,32.201187],[108.492944,32.194935],[108.479342,32.182073],[108.457296,32.181479],[108.434022,32.192085],[108.425282,32.187416],[108.406378,32.196201],[108.39916,32.194064],[108.379175,32.177521],[108.369404,32.173325],[108.38821,32.157531],[108.390862,32.151315],[108.406623,32.141337],[108.414872,32.126369],[108.423465,32.117339],[108.431616,32.101693],[108.439276,32.094721],[108.452091,32.091036],[108.44944,32.072969],[108.429995,32.061358],[108.412712,32.070116],[108.395183,32.066311],[108.373774,32.077169],[108.362825,32.070037],[108.344608,32.068253],[108.344804,32.060526],[108.35978,32.053748],[108.364298,32.047248],[108.362874,32.036783],[108.340091,32.023106],[108.32919,32.01926],[108.33847,32.009506],[108.361401,31.998085],[108.369502,31.989876],[108.367146,31.984521],[108.3505,31.971947],[108.337488,31.981705],[108.3259,31.984957],[108.307094,31.997252],[108.297176,31.988527],[108.283919,31.986068],[108.282151,31.979206],[108.265849,31.983728],[108.267175,31.973097],[108.259368,31.966869],[108.275817,31.957625],[108.28603,31.938856],[108.282691,31.917742],[108.289516,31.910955],[108.299484,31.911272],[108.30842,31.905953],[108.326244,31.881615],[108.33523,31.876452],[108.340974,31.863546],[108.353741,31.856396],[108.370779,31.852742],[108.386197,31.853894],[108.384135,31.848611],[108.394741,31.826523],[108.441436,31.807608],[108.455135,31.813927],[108.462501,31.812814],[108.464072,31.803674],[108.454399,31.791075],[108.456314,31.783999],[108.478213,31.777917],[108.488574,31.780302],[108.489261,31.774737],[108.515727,31.7611],[108.535269,31.757681],[108.506103,31.734815],[108.518673,31.726184],[108.524761,31.69973],[108.514794,31.69412],[108.532225,31.677168],[108.542831,31.673626],[108.561833,31.669726],[108.574501,31.67088],[108.576809,31.664114],[108.608725,31.650421],[108.624388,31.651655],[108.640101,31.637005],[108.64123,31.625179],[108.649381,31.621715],[108.65542,31.626095],[108.67673,31.62275],[108.683899,31.627449],[108.69151,31.625259],[108.701183,31.634098],[108.714686,31.627648],[108.728974,31.634457],[108.736192,31.633302],[108.742281,31.640906],[108.755342,31.647077],[108.758141,31.664313],[108.770612,31.682142],[108.782888,31.688828],[108.794525,31.684251],[108.809894,31.685764],[108.840533,31.684371],[108.860517,31.681068],[108.865378,31.671079],[108.879421,31.663835],[108.888407,31.654999],[108.898227,31.65484],[108.906182,31.661248],[108.91448,31.660731],[108.918113,31.652929],[108.937607,31.652969],[108.954792,31.66288],[108.955529,31.654601],[108.992649,31.652969],[109.000407,31.657029],[109.00134,31.671039],[109.007331,31.673188],[109.0008,31.686758],[109.007036,31.691135],[109.038117,31.690777],[109.052013,31.696507],[109.06149,31.704743],[109.092473,31.699531],[109.122965,31.700167],[109.133325,31.705936],[109.148154,31.703669],[109.158514,31.69396],[109.16696,31.700207],[109.178253,31.69587],[109.209187,31.69412],[109.224261,31.688629],[109.228533,31.690817],[109.222542,31.701242],[109.227403,31.717035],[109.225145,31.724951],[109.266734,31.714927],[109.281611,31.716876]]]]}},{"type":"Feature","properties":{"adcode":500230,"name":"丰都县","center":[107.73248,29.866424],"centroid":[107.830885,29.884753],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":27,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.701575,29.615443],[107.709431,29.60906],[107.716404,29.596659],[107.732263,29.585598],[107.757403,29.602636],[107.767862,29.597635],[107.772576,29.585883],[107.781267,29.582142],[107.7685,29.579254],[107.795801,29.567744],[107.791774,29.560952],[107.80351,29.563433],[107.80729,29.554606],[107.818928,29.554647],[107.825851,29.545005],[107.828551,29.556192],[107.835671,29.558877],[107.838863,29.570185],[107.832283,29.581247],[107.831743,29.59243],[107.839943,29.607393],[107.845246,29.628695],[107.842938,29.653569],[107.845786,29.660233],[107.857472,29.667629],[107.87073,29.667995],[107.897146,29.661493],[107.905543,29.662428],[107.922974,29.655235],[107.934218,29.655723],[107.948703,29.623126],[107.949881,29.601701],[107.961715,29.608978],[107.969129,29.620321],[107.979784,29.627435],[108.000259,29.626256],[108.024368,29.619467],[108.046513,29.622679],[108.056039,29.621581],[108.067872,29.614223],[108.078773,29.618817],[108.082161,29.611377],[108.098757,29.600684],[108.114175,29.599302],[108.117366,29.603449],[108.132391,29.603815],[108.153652,29.599749],[108.163374,29.603612],[108.167499,29.617679],[108.178547,29.619183],[108.182033,29.625972],[108.17894,29.647839],[108.168186,29.648083],[108.156107,29.644872],[108.149921,29.647636],[108.143587,29.659218],[108.156304,29.669579],[108.156157,29.676121],[108.174962,29.686075],[108.179529,29.699602],[108.169168,29.7087],[108.181051,29.734286],[108.17457,29.735463],[108.172213,29.745533],[108.178252,29.749877],[108.187925,29.743909],[108.204129,29.765182],[108.208204,29.764938],[108.217484,29.777887],[108.194112,29.790712],[108.18547,29.801628],[108.194014,29.812665],[108.190626,29.819441],[108.177859,29.822443],[108.172998,29.837656],[108.167008,29.838305],[108.14997,29.83011],[108.145992,29.846377],[108.122915,29.851771],[108.108823,29.848851],[108.099199,29.840657],[108.084125,29.838873],[108.058936,29.857246],[108.072488,29.870953],[108.071456,29.877157],[108.059869,29.889726],[108.042536,29.893456],[108.035907,29.90197],[108.049999,29.906226],[108.046316,29.912387],[108.036005,29.912225],[108.024908,29.934962],[108.014695,29.9472],[107.993336,29.96689],[108.002027,29.977544],[108.009687,29.978476],[108.018034,29.971589],[108.03247,29.990222],[108.024859,30.010957],[108.018476,30.014804],[108.02702,30.029056],[108.01661,30.042132],[108.007575,30.043508],[107.998492,30.053871],[107.987297,30.047921],[107.967558,30.055611],[107.948457,30.066458],[107.936378,30.069008],[107.908243,30.105748],[107.906525,30.112544],[107.895919,30.120067],[107.88109,30.103199],[107.87451,30.09976],[107.862186,30.113879],[107.84446,30.119865],[107.831939,30.108782],[107.81878,30.112058],[107.812937,30.118935],[107.819026,30.13394],[107.842103,30.155009],[107.845688,30.162974],[107.838617,30.168675],[107.811759,30.178337],[107.808567,30.184239],[107.794377,30.185816],[107.788436,30.190747],[107.765898,30.198224],[107.757502,30.21047],[107.758336,30.217016],[107.769139,30.224573],[107.769924,30.236572],[107.762019,30.240936],[107.745128,30.236774],[107.742084,30.225502],[107.734129,30.221098],[107.728728,30.23132],[107.721314,30.230189],[107.721216,30.21835],[107.704963,30.216491],[107.705356,30.224209],[107.714685,30.221421],[107.705945,30.230876],[107.709284,30.237946],[107.691264,30.234916],[107.675502,30.22336],[107.668088,30.22631],[107.666762,30.234754],[107.673145,30.238754],[107.675944,30.252812],[107.662588,30.261052],[107.656402,30.259598],[107.651884,30.241622],[107.642801,30.239562],[107.632882,30.213097],[107.626548,30.20655],[107.61005,30.209136],[107.605729,30.198628],[107.595909,30.198063],[107.604501,30.187392],[107.597922,30.179631],[107.581227,30.174941],[107.569983,30.166937],[107.572978,30.144374],[107.568706,30.139077],[107.582897,30.131595],[107.579361,30.119582],[107.570425,30.122252],[107.55815,30.114566],[107.55756,30.098344],[107.535268,30.088512],[107.528296,30.082888],[107.53954,30.072407],[107.539295,30.064192],[107.5308,30.059699],[107.491372,30.013306],[107.491322,30.004964],[107.483908,29.992693],[107.471338,29.989453],[107.487443,29.972076],[107.498197,29.972481],[107.500554,29.960611],[107.515186,29.959436],[107.523779,29.978678],[107.53355,29.968551],[107.546905,29.965675],[107.546807,29.958585],[107.56193,29.946146],[107.571898,29.951049],[107.57946,29.943877],[107.573126,29.933827],[107.579361,29.923939],[107.59473,29.917657],[107.602979,29.897389],[107.598707,29.888632],[107.613094,29.876955],[107.626892,29.874522],[107.616973,29.865884],[107.613585,29.856111],[107.604256,29.852014],[107.595369,29.835222],[107.605238,29.832423],[107.605336,29.808161],[107.622669,29.802562],[107.638627,29.813274],[107.638529,29.772976],[107.64226,29.76303],[107.625075,29.753896],[107.640345,29.740701],[107.632784,29.719016],[107.630427,29.701714],[107.64447,29.687821],[107.6565,29.686156],[107.670101,29.675064],[107.674176,29.663362],[107.684733,29.666532],[107.696616,29.660315],[107.718073,29.65682],[107.713752,29.642555],[107.698482,29.618614],[107.701575,29.615443]]]]}},{"type":"Feature","properties":{"adcode":500231,"name":"垫江县","center":[107.348692,30.330012],"centroid":[107.437814,30.253308],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":28,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.453171,30.001441],[107.466968,29.998606],[107.471338,29.989453],[107.483908,29.992693],[107.491322,30.004964],[107.491372,30.013306],[107.5308,30.059699],[107.539295,30.064192],[107.53954,30.072407],[107.528296,30.082888],[107.535268,30.088512],[107.55756,30.098344],[107.55815,30.114566],[107.570425,30.122252],[107.579361,30.119582],[107.582897,30.131595],[107.568706,30.139077],[107.572978,30.144374],[107.569983,30.166937],[107.581227,30.174941],[107.597922,30.179631],[107.604501,30.187392],[107.595909,30.198063],[107.584861,30.202185],[107.577299,30.221461],[107.56851,30.219198],[107.571505,30.208166],[107.563649,30.19875],[107.550097,30.19681],[107.54828,30.208651],[107.553583,30.213177],[107.544794,30.221057],[107.545825,30.227643],[107.554271,30.229583],[107.558395,30.244046],[107.573862,30.244693],[107.57342,30.256367],[107.567282,30.268201],[107.573322,30.274784],[107.587119,30.275188],[107.581767,30.287586],[107.597824,30.29445],[107.597283,30.313224],[107.572242,30.321257],[107.569836,30.326868],[107.583093,30.341801],[107.595025,30.351083],[107.602488,30.367869],[107.622767,30.384652],[107.631262,30.398568],[107.650362,30.406917],[107.661803,30.420387],[107.656205,30.431193],[107.673538,30.453851],[107.670346,30.464493],[107.660772,30.470136],[107.636957,30.470498],[107.637743,30.483032],[107.629298,30.485611],[107.611719,30.47211],[107.610197,30.48009],[107.593994,30.475174],[107.570523,30.47731],[107.562225,30.487949],[107.553436,30.491092],[107.55157,30.50322],[107.544352,30.498869],[107.533452,30.500843],[107.527559,30.490487],[107.516266,30.489198],[107.509097,30.495363],[107.496036,30.494638],[107.480029,30.478599],[107.463629,30.481984],[107.446837,30.49766],[107.425527,30.510835],[107.404855,30.516112],[107.388848,30.49089],[107.381237,30.485329],[107.360025,30.45627],[107.34554,30.425508],[107.341367,30.41212],[107.34284,30.401674],[107.33901,30.387072],[107.31878,30.364278],[107.304197,30.354594],[107.288779,30.337564],[107.277535,30.311246],[107.264866,30.289766],[107.255979,30.263799],[107.239432,30.237582],[107.228335,30.223805],[107.256568,30.205903],[107.277044,30.181086],[107.288484,30.171303],[107.269482,30.145992],[107.274098,30.135841],[107.291381,30.136327],[107.295555,30.122454],[107.286766,30.107892],[107.29089,30.097939],[107.28328,30.091021],[107.271741,30.09446],[107.269089,30.081148],[107.259072,30.075887],[107.247534,30.07528],[107.26521,30.062006],[107.266045,30.055045],[107.279204,30.04873],[107.27724,30.043144],[107.294867,30.044359],[107.307879,30.035493],[107.31166,30.02023],[107.304688,30.0161],[107.31112,30.008203],[107.294818,30.002696],[107.29418,29.997917],[107.307094,29.992328],[107.325556,29.973007],[107.335573,29.97398],[107.347995,29.980501],[107.362824,29.979853],[107.374068,29.973372],[107.436329,30.033833],[107.46029,30.01533],[107.451501,30.008203],[107.453171,30.001441]]]]}},{"type":"Feature","properties":{"adcode":500233,"name":"忠县","center":[108.037518,30.291537],"centroid":[107.914786,30.335722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":29,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.223622,30.421274],[108.241937,30.443773],[108.232755,30.45502],[108.230496,30.476705],[108.207811,30.49766],[108.195045,30.514501],[108.184537,30.518167],[108.175552,30.510633],[108.165633,30.524411],[108.171378,30.539314],[108.163374,30.540805],[108.152523,30.535931],[108.153063,30.545879],[108.143587,30.566215],[108.12645,30.564],[108.120067,30.576965],[108.126647,30.577972],[108.127187,30.586104],[108.111621,30.59343],[108.105631,30.591458],[108.103863,30.573382],[108.088593,30.572617],[108.083339,30.579582],[108.072537,30.582159],[108.062667,30.574429],[108.052847,30.572094],[108.034778,30.574187],[108.029622,30.561544],[108.003795,30.542174],[107.990243,30.538871],[107.985676,30.531017],[107.972615,30.521913],[107.958621,30.531017],[107.953711,30.51434],[107.942025,30.498828],[107.939864,30.485893],[107.924839,30.494074],[107.916001,30.495323],[107.909422,30.502938],[107.897883,30.502938],[107.88546,30.512124],[107.886884,30.539556],[107.891352,30.54608],[107.885411,30.549544],[107.870386,30.547248],[107.860713,30.559088],[107.826145,30.554417],[107.829239,30.544671],[107.814017,30.521631],[107.819173,30.50882],[107.818142,30.497539],[107.810629,30.482428],[107.817455,30.471466],[107.80621,30.470861],[107.796488,30.479204],[107.796488,30.484805],[107.77783,30.497821],[107.777535,30.506121],[107.767911,30.513736],[107.757894,30.514058],[107.748123,30.521269],[107.741347,30.517885],[107.715716,30.482589],[107.695241,30.460986],[107.679479,30.438612],[107.661803,30.420387],[107.650362,30.406917],[107.631262,30.398568],[107.622767,30.384652],[107.602488,30.367869],[107.595025,30.351083],[107.583093,30.341801],[107.569836,30.326868],[107.572242,30.321257],[107.597283,30.313224],[107.597824,30.29445],[107.581767,30.287586],[107.587119,30.275188],[107.573322,30.274784],[107.567282,30.268201],[107.57342,30.256367],[107.573862,30.244693],[107.558395,30.244046],[107.554271,30.229583],[107.545825,30.227643],[107.544794,30.221057],[107.553583,30.213177],[107.54828,30.208651],[107.550097,30.19681],[107.563649,30.19875],[107.571505,30.208166],[107.56851,30.219198],[107.577299,30.221461],[107.584861,30.202185],[107.595909,30.198063],[107.605729,30.198628],[107.61005,30.209136],[107.626548,30.20655],[107.632882,30.213097],[107.642801,30.239562],[107.651884,30.241622],[107.656402,30.259598],[107.662588,30.261052],[107.675944,30.252812],[107.673145,30.238754],[107.666762,30.234754],[107.668088,30.22631],[107.675502,30.22336],[107.691264,30.234916],[107.709284,30.237946],[107.705945,30.230876],[107.714685,30.221421],[107.705356,30.224209],[107.704963,30.216491],[107.721216,30.21835],[107.721314,30.230189],[107.728728,30.23132],[107.734129,30.221098],[107.742084,30.225502],[107.745128,30.236774],[107.762019,30.240936],[107.769924,30.236572],[107.769139,30.224573],[107.758336,30.217016],[107.757502,30.21047],[107.765898,30.198224],[107.788436,30.190747],[107.794377,30.185816],[107.808567,30.184239],[107.811759,30.178337],[107.838617,30.168675],[107.845688,30.162974],[107.842103,30.155009],[107.819026,30.13394],[107.812937,30.118935],[107.81878,30.112058],[107.831939,30.108782],[107.84446,30.119865],[107.862186,30.113879],[107.87451,30.09976],[107.88109,30.103199],[107.895919,30.120067],[107.906525,30.112544],[107.908243,30.105748],[107.936378,30.069008],[107.948457,30.066458],[107.967558,30.055611],[107.987297,30.047921],[107.998492,30.053871],[108.00733,30.057028],[108.010571,30.071355],[108.021569,30.078032],[108.029622,30.089119],[108.034974,30.084183],[108.031144,30.072326],[108.037233,30.067591],[108.0554,30.072043],[108.083928,30.111209],[108.092374,30.129532],[108.075777,30.153917],[108.061587,30.157071],[108.070965,30.163702],[108.072438,30.175144],[108.085549,30.17862],[108.107595,30.207439],[108.120705,30.200568],[108.129887,30.210268],[108.119379,30.211803],[108.127383,30.223684],[108.124879,30.227199],[108.10843,30.219198],[108.101948,30.223482],[108.105533,30.232653],[108.097038,30.237259],[108.093994,30.253459],[108.103716,30.246995],[108.114273,30.251399],[108.121933,30.245824],[108.125861,30.235845],[108.129494,30.244531],[108.126303,30.255357],[108.141475,30.265495],[108.142212,30.273654],[108.129003,30.281125],[108.131606,30.288918],[108.127334,30.299982],[108.147318,30.297115],[108.147466,30.302606],[108.163473,30.321055],[108.163031,30.325294],[108.145894,30.334254],[108.127874,30.333487],[108.117072,30.329169],[108.094731,30.344667],[108.084419,30.343093],[108.084665,30.350115],[108.096449,30.358831],[108.12262,30.359799],[108.133128,30.362624],[108.152965,30.395019],[108.174619,30.410144],[108.186403,30.413854],[108.208351,30.408611],[108.223622,30.421274]]]]}},{"type":"Feature","properties":{"adcode":500235,"name":"云阳县","center":[108.697698,30.930529],"centroid":[108.856912,31.036349],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":30,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.90952,30.581273],[108.919488,30.589365],[108.943842,30.601843],[108.967509,30.624823],[108.978017,30.629813],[108.987494,30.623294],[108.999229,30.632066],[109.009737,30.627238],[109.021766,30.642366],[109.01558,30.648884],[109.022945,30.663567],[109.017544,30.675232],[109.024565,30.683154],[109.018919,30.696706],[109.030801,30.706598],[109.019655,30.711784],[109.018575,30.718297],[109.047348,30.730277],[109.047839,30.745309],[109.056579,30.754834],[109.059575,30.764598],[109.048821,30.777215],[109.044059,30.809873],[109.050785,30.814171],[109.05054,30.824773],[109.043224,30.831278],[109.051767,30.843524],[109.054615,30.860908],[109.0773,30.869096],[109.086531,30.858178],[109.108283,30.860145],[109.135485,30.866688],[109.130477,30.879732],[109.150118,30.878247],[109.144029,30.902165],[109.15547,30.907622],[109.162197,30.905776],[109.160969,30.916809],[109.151934,30.924151],[109.150609,30.936265],[109.157581,30.940637],[109.186306,30.936907],[109.200545,30.932936],[109.201822,30.927962],[109.215472,30.920781],[109.218762,30.926317],[109.220333,30.945369],[109.218221,30.963857],[109.211642,30.96935],[109.217583,30.982421],[109.238009,31.006432],[109.251021,31.029276],[109.244884,31.032201],[109.239875,31.04314],[109.228778,31.046866],[109.225243,31.053837],[109.214637,31.047907],[109.197648,31.053276],[109.190774,31.066335],[109.165045,31.068057],[109.145748,31.056921],[109.131557,31.054077],[109.119528,31.058123],[109.095271,31.061007],[109.096646,31.078391],[109.093946,31.09437],[109.100034,31.102579],[109.100231,31.121636],[109.080246,31.128641],[109.056187,31.132604],[109.055008,31.155537],[109.048576,31.164341],[109.048969,31.186787],[109.067431,31.179465],[109.074305,31.189467],[109.092816,31.192387],[109.092571,31.211986],[109.087464,31.225703],[109.072685,31.247015],[109.068069,31.27008],[109.062717,31.276355],[109.042978,31.283349],[109.033305,31.290862],[109.055057,31.326301],[109.050294,31.340721],[109.055352,31.357054],[109.05162,31.367117],[109.029181,31.370032],[109.020146,31.375781],[108.992207,31.380812],[108.983418,31.385762],[108.971487,31.380812],[108.962452,31.385722],[108.948409,31.382728],[108.936035,31.390991],[108.927197,31.386001],[108.916837,31.387399],[108.908146,31.383566],[108.900142,31.387558],[108.88988,31.383566],[108.886394,31.372148],[108.892826,31.364641],[108.89042,31.354738],[108.893268,31.342358],[108.887572,31.336007],[108.869896,31.339562],[108.865035,31.343716],[108.837096,31.346432],[108.834739,31.35382],[108.823053,31.356815],[108.822071,31.370271],[108.83248,31.375302],[108.816866,31.390233],[108.798748,31.396859],[108.795752,31.403086],[108.809894,31.417414],[108.800221,31.425155],[108.779205,31.435251],[108.759908,31.438602],[108.757797,31.430941],[108.742084,31.420087],[108.740022,31.407676],[108.731528,31.403285],[108.736389,31.395742],[108.729956,31.390752],[108.712525,31.394584],[108.694554,31.387199],[108.693474,31.377418],[108.709186,31.374983],[108.696567,31.359011],[108.701527,31.348988],[108.698237,31.343956],[108.683261,31.34084],[108.644176,31.339482],[108.63578,31.329896],[108.639806,31.31955],[108.659054,31.298535],[108.654586,31.289184],[108.63632,31.283509],[108.643489,31.268721],[108.631262,31.257249],[108.622768,31.259488],[108.618643,31.252212],[108.596646,31.230622],[108.588741,31.201587],[108.587759,31.185066],[108.578036,31.180065],[108.583585,31.174864],[108.598414,31.170943],[108.601851,31.160099],[108.576956,31.142851],[108.567823,31.140529],[108.562717,31.130443],[108.562619,31.115791],[108.547544,31.105261],[108.558887,31.089404],[108.537921,31.095491],[108.539934,31.082957],[108.53031,31.083838],[108.510964,31.07791],[108.511995,31.074145],[108.488181,31.064733],[108.486217,31.057322],[108.476691,31.052795],[108.48003,31.037811],[108.474334,31.022544],[108.451256,31.013527],[108.432156,31.012725],[108.418015,31.006072],[108.41497,30.998897],[108.426509,30.998216],[108.440356,31.002545],[108.455626,30.994728],[108.45327,30.988755],[108.454743,30.970232],[108.460537,30.967426],[108.486413,30.977008],[108.496626,30.972839],[108.50409,30.977289],[108.501094,30.98651],[108.506643,30.992604],[108.51666,30.990559],[108.533894,30.996251],[108.531243,30.978051],[108.523632,30.973159],[108.537577,30.958123],[108.552602,30.915405],[108.566448,30.912396],[108.593307,30.920259],[108.608578,30.93807],[108.61884,30.934741],[108.619233,30.926999],[108.628169,30.918253],[108.623013,30.912837],[108.621589,30.888561],[108.625419,30.875358],[108.634798,30.885271],[108.653014,30.89105],[108.665977,30.867972],[108.671968,30.852116],[108.685078,30.845773],[108.685127,30.835976],[108.698482,30.822885],[108.699955,30.811841],[108.715177,30.815094],[108.733393,30.81405],[108.738549,30.808026],[108.740808,30.787259],[108.74724,30.782116],[108.740169,30.775527],[108.749842,30.74555],[108.754998,30.740044],[108.76639,30.74141],[108.762609,30.728106],[108.766586,30.720548],[108.763444,30.713031],[108.789762,30.714277],[108.79261,30.706558],[108.781022,30.697028],[108.779254,30.685125],[108.785883,30.683516],[108.818094,30.693771],[108.823347,30.69168],[108.828699,30.679414],[108.836016,30.678449],[108.872007,30.690112],[108.883546,30.695661],[108.884331,30.687337],[108.896312,30.684039],[108.899946,30.676438],[108.901713,30.646792],[108.871565,30.618103],[108.869896,30.610979],[108.90952,30.581273]]]]}},{"type":"Feature","properties":{"adcode":500236,"name":"奉节县","center":[109.465774,31.019967],"centroid":[109.349632,30.952293],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":31,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.103668,30.565812],[109.113488,30.548658],[109.12483,30.538912],[109.124389,30.531702],[109.139463,30.534562],[109.141181,30.525096],[109.150609,30.527392],[109.164799,30.538187],[109.17133,30.547007],[109.192787,30.546282],[109.222788,30.569597],[109.247731,30.583205],[109.227845,30.58087],[109.227551,30.585661],[109.251169,30.592907],[109.278813,30.610174],[109.299534,30.630577],[109.313577,30.610174],[109.32816,30.616091],[109.323299,30.604137],[109.314509,30.59979],[109.344265,30.577126],[109.361156,30.554739],[109.361058,30.550994],[109.342252,30.529567],[109.337145,30.520826],[109.341564,30.512728],[109.342841,30.494718],[109.352072,30.487183],[109.368668,30.500279],[109.380846,30.518288],[109.393808,30.531138],[109.418114,30.560014],[109.428032,30.57616],[109.437852,30.598059],[109.449342,30.603735],[109.456511,30.613797],[109.465889,30.619511],[109.48278,30.623173],[109.493337,30.637176],[109.514696,30.655401],[109.528739,30.663929],[109.537921,30.663969],[109.541407,30.65166],[109.533698,30.641562],[109.538756,30.638424],[109.562865,30.646752],[109.574109,30.646872],[109.577104,30.655321],[109.588005,30.664693],[109.581622,30.670847],[109.590656,30.693409],[109.602244,30.698838],[109.62542,30.702657],[109.649038,30.71894],[109.660773,30.73727],[109.656698,30.76046],[109.659153,30.761987],[109.649725,30.778782],[109.644226,30.794128],[109.646435,30.803929],[109.636517,30.821922],[109.628661,30.820998],[109.607203,30.838225],[109.608087,30.846214],[109.615256,30.848222],[109.61506,30.861951],[109.588839,30.865885],[109.585648,30.871384],[109.569543,30.873712],[109.561392,30.893698],[109.574207,30.900961],[109.594584,30.902044],[109.594879,30.905415],[109.612752,30.90389],[109.609904,30.91693],[109.603079,30.922345],[109.59812,30.936465],[109.601557,30.941639],[109.596941,30.95327],[109.601999,30.962814],[109.60082,30.977129],[109.61177,30.986911],[109.612555,30.995971],[109.598611,31.010841],[109.605829,31.017655],[109.662737,31.042338],[109.685127,31.053516],[109.72107,31.074346],[109.724507,31.090125],[109.744442,31.100616],[109.753428,31.113389],[109.764819,31.11495],[109.758289,31.129242],[109.769533,31.143771],[109.770564,31.16166],[109.760646,31.175144],[109.742773,31.178185],[109.727944,31.171743],[109.703688,31.169903],[109.692493,31.172584],[109.668629,31.185466],[109.64511,31.177905],[109.63033,31.189147],[109.624389,31.190027],[109.622523,31.204747],[109.631951,31.217505],[109.629545,31.225703],[109.61668,31.229662],[109.588201,31.223384],[109.581572,31.225743],[109.569346,31.244456],[109.561883,31.243976],[109.55712,31.251053],[109.530409,31.253891],[109.518526,31.250333],[109.512487,31.243217],[109.497069,31.244816],[109.493533,31.249454],[109.479638,31.251772],[109.462698,31.250693],[109.450766,31.246535],[109.45003,31.238979],[109.435741,31.231981],[109.431617,31.240058],[109.415511,31.245496],[109.393857,31.242897],[109.387867,31.248654],[109.39042,31.262326],[109.376623,31.276236],[109.374757,31.286427],[109.354134,31.286826],[109.355853,31.295578],[109.334396,31.306925],[109.326392,31.324064],[109.322415,31.34779],[109.272577,31.355657],[109.266292,31.35985],[109.242085,31.362126],[109.235014,31.356975],[109.224114,31.362206],[109.213606,31.358332],[109.197206,31.362126],[109.176534,31.361527],[109.138137,31.366279],[109.123357,31.37083],[109.102735,31.364162],[109.079117,31.370112],[109.065712,31.364681],[109.05162,31.367117],[109.055352,31.357054],[109.050294,31.340721],[109.055057,31.326301],[109.033305,31.290862],[109.042978,31.283349],[109.062717,31.276355],[109.068069,31.27008],[109.072685,31.247015],[109.087464,31.225703],[109.092571,31.211986],[109.092816,31.192387],[109.074305,31.189467],[109.067431,31.179465],[109.048969,31.186787],[109.048576,31.164341],[109.055008,31.155537],[109.056187,31.132604],[109.080246,31.128641],[109.100231,31.121636],[109.100034,31.102579],[109.093946,31.09437],[109.096646,31.078391],[109.095271,31.061007],[109.119528,31.058123],[109.131557,31.054077],[109.145748,31.056921],[109.165045,31.068057],[109.190774,31.066335],[109.197648,31.053276],[109.214637,31.047907],[109.225243,31.053837],[109.228778,31.046866],[109.239875,31.04314],[109.244884,31.032201],[109.251021,31.029276],[109.238009,31.006432],[109.217583,30.982421],[109.211642,30.96935],[109.218221,30.963857],[109.220333,30.945369],[109.218762,30.926317],[109.215472,30.920781],[109.201822,30.927962],[109.200545,30.932936],[109.186306,30.936907],[109.157581,30.940637],[109.150609,30.936265],[109.151934,30.924151],[109.160969,30.916809],[109.162197,30.905776],[109.15547,30.907622],[109.144029,30.902165],[109.150118,30.878247],[109.130477,30.879732],[109.135485,30.866688],[109.108283,30.860145],[109.086531,30.858178],[109.0773,30.869096],[109.054615,30.860908],[109.051767,30.843524],[109.043224,30.831278],[109.05054,30.824773],[109.050785,30.814171],[109.044059,30.809873],[109.048821,30.777215],[109.059575,30.764598],[109.056579,30.754834],[109.047839,30.745309],[109.047348,30.730277],[109.018575,30.718297],[109.019655,30.711784],[109.030801,30.706598],[109.018919,30.696706],[109.024565,30.683154],[109.017544,30.675232],[109.022945,30.663567],[109.01558,30.648884],[109.021766,30.642366],[109.045728,30.653189],[109.049165,30.645545],[109.070181,30.640274],[109.088053,30.646631],[109.096646,30.638745],[109.111917,30.646108],[109.120951,30.635768],[109.121737,30.628726],[109.112506,30.61271],[109.105926,30.610738],[109.105534,30.585661],[109.102686,30.580146],[109.101114,30.579542],[109.106123,30.570765],[109.103668,30.565812]]],[[[109.101114,30.579542],[109.102686,30.580146],[109.105534,30.585661],[109.105926,30.610738],[109.09316,30.609007],[109.083585,30.598261],[109.092865,30.578737],[109.098659,30.579099],[109.101114,30.579542]]],[[[109.098659,30.579099],[109.092865,30.578737],[109.103668,30.565812],[109.106123,30.570765],[109.098659,30.579099]]]]}},{"type":"Feature","properties":{"adcode":500237,"name":"巫山县","center":[109.878928,31.074843],"centroid":[109.901246,31.115189],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":32,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.659153,30.761987],[109.685373,30.768657],[109.692149,30.778902],[109.702117,30.783643],[109.702657,30.770264],[109.718124,30.778661],[109.716601,30.80168],[109.729613,30.815376],[109.759074,30.832804],[109.780777,30.848583],[109.797619,30.855609],[109.81942,30.860225],[109.856099,30.880254],[109.878244,30.889163],[109.894545,30.899797],[109.905642,30.899797],[109.932304,30.887679],[109.940897,30.889685],[109.943696,30.87897],[109.958377,30.877445],[109.975956,30.888682],[109.995056,30.887839],[110.008215,30.883585],[110.005024,30.870381],[110.017937,30.855328],[110.019607,30.829592],[110.03198,30.820476],[110.039198,30.820516],[110.042488,30.80666],[110.052996,30.799591],[110.082309,30.799591],[110.089527,30.816058],[110.095861,30.82156],[110.095812,30.829873],[110.115306,30.845492],[110.124095,30.868133],[110.144324,30.897229],[110.151837,30.912316],[110.145601,30.922145],[110.153899,30.953832],[110.163769,30.961371],[110.161657,30.968308],[110.173245,30.979895],[110.172165,30.98659],[110.163572,30.991641],[110.136075,30.986751],[110.140986,31.00503],[110.140151,31.030638],[110.120854,31.032001],[110.126648,31.054678],[110.13308,31.059806],[110.122131,31.072904],[110.120117,31.088844],[110.12871,31.095131],[110.135437,31.106262],[110.145847,31.108144],[110.146927,31.116912],[110.161264,31.116111],[110.180218,31.121676],[110.1894,31.129482],[110.186895,31.145332],[110.198876,31.156538],[110.196912,31.163581],[110.186404,31.169583],[110.180218,31.179585],[110.176535,31.198067],[110.178008,31.204867],[110.169612,31.227943],[110.174866,31.243497],[110.171428,31.250573],[110.162443,31.251932],[110.156158,31.277315],[110.163965,31.30321],[110.159644,31.315355],[110.151739,31.317872],[110.157975,31.333491],[110.14732,31.34783],[110.14948,31.354299],[110.140053,31.368315],[110.145307,31.381331],[110.140004,31.390472],[110.127384,31.393386],[110.11889,31.400651],[110.115158,31.412265],[110.108824,31.408314],[110.100084,31.411268],[110.089773,31.408674],[110.053978,31.410909],[110.049411,31.41877],[110.034484,31.430822],[110.033502,31.439679],[110.020687,31.442073],[110.003649,31.453642],[109.996382,31.469359],[109.987789,31.474663],[109.967903,31.474304],[109.954744,31.468401],[109.94291,31.475341],[109.938049,31.458748],[109.94183,31.448456],[109.937804,31.440836],[109.940553,31.427869],[109.935005,31.414381],[109.922828,31.394664],[109.911878,31.392149],[109.890126,31.392069],[109.853496,31.382209],[109.830468,31.388317],[109.821384,31.387638],[109.803315,31.378336],[109.789223,31.377857],[109.785638,31.361088],[109.775425,31.361527],[109.775032,31.354179],[109.761431,31.346951],[109.749892,31.35362],[109.730006,31.356176],[109.720972,31.349746],[109.71503,31.338644],[109.716945,31.332013],[109.711446,31.31959],[109.713803,31.299094],[109.698679,31.302171],[109.690676,31.296577],[109.662443,31.294499],[109.644373,31.310641],[109.626893,31.295937],[109.61285,31.295018],[109.597776,31.268442],[109.602833,31.262686],[109.587366,31.260967],[109.569346,31.244456],[109.581572,31.225743],[109.588201,31.223384],[109.61668,31.229662],[109.629545,31.225703],[109.631951,31.217505],[109.622523,31.204747],[109.624389,31.190027],[109.63033,31.189147],[109.64511,31.177905],[109.668629,31.185466],[109.692493,31.172584],[109.703688,31.169903],[109.727944,31.171743],[109.742773,31.178185],[109.760646,31.175144],[109.770564,31.16166],[109.769533,31.143771],[109.758289,31.129242],[109.764819,31.11495],[109.753428,31.113389],[109.744442,31.100616],[109.724507,31.090125],[109.72107,31.074346],[109.685127,31.053516],[109.662737,31.042338],[109.605829,31.017655],[109.598611,31.010841],[109.612555,30.995971],[109.61177,30.986911],[109.60082,30.977129],[109.601999,30.962814],[109.596941,30.95327],[109.601557,30.941639],[109.59812,30.936465],[109.603079,30.922345],[109.609904,30.91693],[109.612752,30.90389],[109.594879,30.905415],[109.594584,30.902044],[109.574207,30.900961],[109.561392,30.893698],[109.569543,30.873712],[109.585648,30.871384],[109.588839,30.865885],[109.61506,30.861951],[109.615256,30.848222],[109.608087,30.846214],[109.607203,30.838225],[109.628661,30.820998],[109.636517,30.821922],[109.646435,30.803929],[109.644226,30.794128],[109.649725,30.778782],[109.659153,30.761987]]]]}},{"type":"Feature","properties":{"adcode":500238,"name":"巫溪县","center":[109.628912,31.3966],"centroid":[109.35337,31.503107],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":33,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.94291,31.475341],[109.942174,31.483238],[109.957248,31.490774],[109.961323,31.499268],[109.98229,31.512504],[109.965595,31.50788],[109.945267,31.506684],[109.934907,31.517727],[109.923859,31.521474],[109.894594,31.519162],[109.878194,31.528848],[109.869209,31.530124],[109.860174,31.543555],[109.83798,31.555272],[109.822071,31.553757],[109.801007,31.541443],[109.788584,31.55045],[109.765457,31.549653],[109.760204,31.547182],[109.735309,31.546106],[109.718909,31.556985],[109.727502,31.570731],[109.746406,31.577982],[109.745326,31.596426],[109.76423,31.602998],[109.737421,31.628683],[109.740416,31.635173],[109.740612,31.663636],[109.731872,31.673148],[109.728091,31.688828],[109.731086,31.700446],[109.709531,31.701122],[109.696028,31.70709],[109.693376,31.716558],[109.683016,31.71978],[109.659005,31.716956],[109.644913,31.720854],[109.617024,31.711585],[109.606172,31.714688],[109.580394,31.72869],[109.572096,31.726343],[109.549755,31.730002],[109.501095,31.717155],[109.491029,31.720973],[109.477134,31.720218],[109.472714,31.714649],[109.459703,31.715205],[109.45656,31.722008],[109.4462,31.722883],[109.425872,31.718786],[109.420274,31.720655],[109.411632,31.708244],[109.389487,31.705101],[109.361254,31.708642],[109.3232,31.70888],[109.302038,31.71067],[109.281611,31.716876],[109.266734,31.714927],[109.225145,31.724951],[109.227403,31.717035],[109.222542,31.701242],[109.228533,31.690817],[109.224261,31.688629],[109.209187,31.69412],[109.178253,31.69587],[109.16696,31.700207],[109.158514,31.69396],[109.148154,31.703669],[109.133325,31.705936],[109.122965,31.700167],[109.092473,31.699531],[109.06149,31.704743],[109.052013,31.696507],[109.038117,31.690777],[109.007036,31.691135],[109.0008,31.686758],[109.007331,31.673188],[109.00134,31.671039],[109.000407,31.657029],[108.992649,31.652969],[108.955529,31.654601],[108.954792,31.66288],[108.937607,31.652969],[108.918113,31.652929],[108.91448,31.660731],[108.906182,31.661248],[108.898227,31.65484],[108.892728,31.642578],[108.893268,31.632187],[108.887719,31.625657],[108.895821,31.614587],[108.894888,31.606025],[108.877997,31.602799],[108.865133,31.592801],[108.853398,31.578939],[108.837096,31.574237],[108.824133,31.578899],[108.820303,31.574596],[108.801399,31.574078],[108.794034,31.551366],[108.777094,31.543635],[108.769483,31.529845],[108.766881,31.513621],[108.761087,31.503893],[108.748026,31.505208],[108.730055,31.499746],[108.721707,31.503255],[108.703982,31.503972],[108.694554,31.499347],[108.69971,31.491652],[108.697255,31.476737],[108.703098,31.463814],[108.726617,31.455118],[108.740071,31.441834],[108.752298,31.443749],[108.759908,31.438602],[108.779205,31.435251],[108.800221,31.425155],[108.809894,31.417414],[108.795752,31.403086],[108.798748,31.396859],[108.816866,31.390233],[108.83248,31.375302],[108.822071,31.370271],[108.823053,31.356815],[108.834739,31.35382],[108.837096,31.346432],[108.865035,31.343716],[108.869896,31.339562],[108.887572,31.336007],[108.893268,31.342358],[108.89042,31.354738],[108.892826,31.364641],[108.886394,31.372148],[108.88988,31.383566],[108.900142,31.387558],[108.908146,31.383566],[108.916837,31.387399],[108.927197,31.386001],[108.936035,31.390991],[108.948409,31.382728],[108.962452,31.385722],[108.971487,31.380812],[108.983418,31.385762],[108.992207,31.380812],[109.020146,31.375781],[109.029181,31.370032],[109.05162,31.367117],[109.065712,31.364681],[109.079117,31.370112],[109.102735,31.364162],[109.123357,31.37083],[109.138137,31.366279],[109.176534,31.361527],[109.197206,31.362126],[109.213606,31.358332],[109.224114,31.362206],[109.235014,31.356975],[109.242085,31.362126],[109.266292,31.35985],[109.272577,31.355657],[109.322415,31.34779],[109.326392,31.324064],[109.334396,31.306925],[109.355853,31.295578],[109.354134,31.286826],[109.374757,31.286427],[109.376623,31.276236],[109.39042,31.262326],[109.387867,31.248654],[109.393857,31.242897],[109.415511,31.245496],[109.431617,31.240058],[109.435741,31.231981],[109.45003,31.238979],[109.450766,31.246535],[109.462698,31.250693],[109.479638,31.251772],[109.493533,31.249454],[109.497069,31.244816],[109.512487,31.243217],[109.518526,31.250333],[109.530409,31.253891],[109.55712,31.251053],[109.561883,31.243976],[109.569346,31.244456],[109.587366,31.260967],[109.602833,31.262686],[109.597776,31.268442],[109.61285,31.295018],[109.626893,31.295937],[109.644373,31.310641],[109.662443,31.294499],[109.690676,31.296577],[109.698679,31.302171],[109.713803,31.299094],[109.711446,31.31959],[109.716945,31.332013],[109.71503,31.338644],[109.720972,31.349746],[109.730006,31.356176],[109.749892,31.35362],[109.761431,31.346951],[109.775032,31.354179],[109.775425,31.361527],[109.785638,31.361088],[109.789223,31.377857],[109.803315,31.378336],[109.821384,31.387638],[109.830468,31.388317],[109.853496,31.382209],[109.890126,31.392069],[109.911878,31.392149],[109.922828,31.394664],[109.935005,31.414381],[109.940553,31.427869],[109.937804,31.440836],[109.94183,31.448456],[109.938049,31.458748],[109.94291,31.475341]]]]}},{"type":"Feature","properties":{"adcode":500240,"name":"石柱土家族自治县","center":[108.112448,29.99853],"centroid":[108.298494,30.093676],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":34,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.424054,30.488956],[108.42101,30.497176],[108.427786,30.512567],[108.412368,30.503059],[108.409962,30.517563],[108.399553,30.520504],[108.402253,30.529688],[108.409717,30.532749],[108.410404,30.543261],[108.404315,30.548295],[108.394593,30.536737],[108.378734,30.534884],[108.344657,30.476987],[108.338814,30.470337],[108.33248,30.449336],[108.317062,30.433129],[108.315835,30.425387],[108.298944,30.407562],[108.296538,30.401109],[108.275031,30.405546],[108.261479,30.388605],[108.254261,30.403529],[108.236732,30.409216],[108.223622,30.421274],[108.208351,30.408611],[108.186403,30.413854],[108.174619,30.410144],[108.152965,30.395019],[108.133128,30.362624],[108.12262,30.359799],[108.096449,30.358831],[108.084665,30.350115],[108.084419,30.343093],[108.094731,30.344667],[108.117072,30.329169],[108.127874,30.333487],[108.145894,30.334254],[108.163031,30.325294],[108.163473,30.321055],[108.147466,30.302606],[108.147318,30.297115],[108.127334,30.299982],[108.131606,30.288918],[108.129003,30.281125],[108.142212,30.273654],[108.141475,30.265495],[108.126303,30.255357],[108.129494,30.244531],[108.125861,30.235845],[108.121933,30.245824],[108.114273,30.251399],[108.103716,30.246995],[108.093994,30.253459],[108.097038,30.237259],[108.105533,30.232653],[108.101948,30.223482],[108.10843,30.219198],[108.124879,30.227199],[108.127383,30.223684],[108.119379,30.211803],[108.129887,30.210268],[108.120705,30.200568],[108.107595,30.207439],[108.085549,30.17862],[108.072438,30.175144],[108.070965,30.163702],[108.061587,30.157071],[108.075777,30.153917],[108.092374,30.129532],[108.083928,30.111209],[108.0554,30.072043],[108.037233,30.067591],[108.031144,30.072326],[108.034974,30.084183],[108.029622,30.089119],[108.021569,30.078032],[108.010571,30.071355],[108.00733,30.057028],[107.998492,30.053871],[108.007575,30.043508],[108.01661,30.042132],[108.02702,30.029056],[108.018476,30.014804],[108.024859,30.010957],[108.03247,29.990222],[108.018034,29.971589],[108.009687,29.978476],[108.002027,29.977544],[107.993336,29.96689],[108.014695,29.9472],[108.024908,29.934962],[108.036005,29.912225],[108.046316,29.912387],[108.049999,29.906226],[108.035907,29.90197],[108.042536,29.893456],[108.059869,29.889726],[108.071456,29.877157],[108.072488,29.870953],[108.058936,29.857246],[108.084125,29.838873],[108.099199,29.840657],[108.108823,29.848851],[108.122915,29.851771],[108.145992,29.846377],[108.14997,29.83011],[108.167008,29.838305],[108.172998,29.837656],[108.177859,29.822443],[108.190626,29.819441],[108.194014,29.812665],[108.18547,29.801628],[108.194112,29.790712],[108.217484,29.777887],[108.208204,29.764938],[108.204129,29.765182],[108.187925,29.743909],[108.178252,29.749877],[108.172213,29.745533],[108.17457,29.735463],[108.181051,29.734286],[108.169168,29.7087],[108.179529,29.699602],[108.174962,29.686075],[108.156157,29.676121],[108.156304,29.669579],[108.143587,29.659218],[108.149921,29.647636],[108.156107,29.644872],[108.168186,29.648083],[108.169267,29.658445],[108.195143,29.666979],[108.208891,29.685343],[108.205847,29.69948],[108.22156,29.712153],[108.217975,29.716336],[108.225193,29.725514],[108.22097,29.732499],[108.227992,29.747076],[108.239384,29.745289],[108.245669,29.750892],[108.27071,29.733149],[108.295752,29.729007],[108.298895,29.734773],[108.30513,29.72588],[108.315785,29.722793],[108.326391,29.711747],[108.350156,29.721047],[108.358013,29.720763],[108.373922,29.712803],[108.368078,29.726042],[108.365918,29.748537],[108.36091,29.756819],[108.383987,29.795501],[108.3942,29.816479],[108.368177,29.818913],[108.372841,29.834127],[108.371466,29.84159],[108.391598,29.853231],[108.386933,29.860004],[108.392777,29.863492],[108.402793,29.855908],[108.433776,29.880077],[108.453122,29.871683],[108.457394,29.865438],[108.468049,29.864181],[108.489163,29.867466],[108.495693,29.876914],[108.509049,29.878617],[108.517052,29.865479],[108.516169,29.885631],[108.524221,29.896821],[108.524074,29.911658],[108.515874,29.930383],[108.519458,29.943512],[108.534238,29.971833],[108.542634,29.99735],[108.528886,30.00545],[108.530703,30.043104],[108.526185,30.04954],[108.531783,30.055085],[108.524221,30.058647],[108.516414,30.05298],[108.516267,30.064232],[108.525252,30.073824],[108.532323,30.073702],[108.533207,30.084183],[108.546071,30.104372],[108.561489,30.144132],[108.56748,30.155697],[108.552258,30.163338],[108.553829,30.174537],[108.568904,30.225623],[108.56743,30.23435],[108.573519,30.237178],[108.58167,30.255882],[108.567332,30.254872],[108.562029,30.26287],[108.545237,30.269978],[108.54617,30.276279],[108.537921,30.278581],[108.533305,30.292108],[108.52486,30.294733],[108.526382,30.305271],[108.51499,30.315162],[108.498394,30.316332],[108.48273,30.33603],[108.46908,30.343819],[108.459898,30.359799],[108.451011,30.355603],[108.432696,30.35411],[108.421943,30.366457],[108.403284,30.374728],[108.399454,30.389412],[108.420912,30.394131],[108.425331,30.399052],[108.421697,30.410547],[108.430486,30.415628],[108.421206,30.4295],[108.411779,30.436919],[108.421796,30.448852],[108.421206,30.464372],[108.414332,30.475818],[108.424054,30.488956]]]]}},{"type":"Feature","properties":{"adcode":500241,"name":"秀山土家族苗族自治县","center":[108.996043,28.444772],"centroid":[109.018121,28.491722],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":35,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.723377,28.491963],[108.729416,28.470918],[108.749106,28.461052],[108.746749,28.450239],[108.773509,28.438315],[108.779303,28.427418],[108.763296,28.398585],[108.762805,28.385791],[108.783084,28.380402],[108.777732,28.367441],[108.777929,28.347236],[108.76143,28.324557],[108.770072,28.314965],[108.763738,28.305619],[108.741053,28.294914],[108.725783,28.280296],[108.7276,28.259827],[108.737567,28.251424],[108.739678,28.226252],[108.749548,28.22757],[108.758681,28.220236],[108.758533,28.196046],[108.765309,28.192131],[108.773313,28.213478],[108.796636,28.22378],[108.807389,28.242855],[108.821776,28.245121],[108.826539,28.22551],[108.836212,28.20738],[108.855116,28.199879],[108.864445,28.206143],[108.897245,28.219536],[108.91227,28.21558],[108.919488,28.217764],[108.933187,28.207874],[108.927884,28.20025],[108.929407,28.190565],[108.956609,28.182321],[108.979539,28.171274],[108.985775,28.161339],[109.001537,28.16138],[109.009786,28.167893],[109.014647,28.17923],[109.013812,28.199591],[109.026186,28.220154],[109.038215,28.217434],[109.041603,28.20536],[109.06144,28.200126],[109.070033,28.191471],[109.086384,28.184712],[109.089477,28.196252],[109.101409,28.201404],[109.096106,28.22106],[109.085353,28.232803],[109.081523,28.24854],[109.088004,28.261392],[109.095959,28.261804],[109.117563,28.278607],[109.11614,28.288614],[109.126844,28.296932],[109.14123,28.320564],[109.137744,28.33423],[109.150805,28.344684],[109.151689,28.350528],[109.138579,28.358635],[109.144766,28.36382],[109.153113,28.38106],[109.153653,28.39731],[109.157139,28.403398],[109.154291,28.417588],[109.164946,28.414997],[109.168383,28.432064],[109.176731,28.43153],[109.180708,28.439466],[109.176583,28.446169],[109.192394,28.464423],[109.191756,28.470877],[109.215521,28.48214],[109.229613,28.474906],[109.274344,28.494676],[109.271988,28.51399],[109.280384,28.5204],[109.274688,28.524837],[109.27459,28.539217],[109.288928,28.546324],[109.29482,28.566286],[109.304738,28.579017],[109.3205,28.579797],[109.309354,28.598808],[109.306604,28.62069],[109.300172,28.626436],[109.287013,28.626806],[109.278469,28.612439],[109.258878,28.605583],[109.249401,28.608662],[109.236144,28.619417],[109.201478,28.598439],[109.186355,28.610632],[109.181395,28.621716],[109.193131,28.636205],[109.202902,28.63797],[109.221069,28.649133],[109.251758,28.660828],[109.270907,28.671783],[109.266194,28.680194],[109.252936,28.691558],[109.265015,28.699474],[109.271497,28.698941],[109.28495,28.713871],[109.294672,28.71912],[109.28824,28.727322],[109.300663,28.739665],[109.297668,28.748152],[109.278469,28.751514],[109.273019,28.760902],[109.256177,28.765616],[109.261333,28.774962],[109.241299,28.776519],[109.241888,28.794266],[109.246406,28.801683],[109.245817,28.812992],[109.239679,28.827168],[109.242674,28.85105],[109.234032,28.863828],[109.235505,28.880372],[109.211004,28.882788],[109.197943,28.875131],[109.197599,28.870217],[109.175896,28.8515],[109.166223,28.852402],[109.157188,28.844824],[109.147908,28.84552],[109.130919,28.832453],[109.117465,28.83106],[109.111622,28.824669],[109.104502,28.826595],[109.093455,28.819261],[109.092718,28.809305],[109.106712,28.816311],[109.105681,28.805699],[109.094338,28.79234],[109.05982,28.768198],[109.062128,28.759385],[109.05653,28.741879],[109.044991,28.719325],[109.01941,28.690696],[108.999622,28.699228],[108.990636,28.67884],[108.982633,28.682327],[108.961126,28.630213],[108.954252,28.610016],[108.936723,28.616913],[108.915314,28.621962],[108.895379,28.614737],[108.881484,28.621716],[108.854821,28.613136],[108.839256,28.604146],[108.819174,28.60082],[108.815295,28.593471],[108.799877,28.583657],[108.785981,28.562096],[108.785294,28.54924],[108.775964,28.544968],[108.763984,28.545707],[108.753329,28.532972],[108.730889,28.517853],[108.723377,28.491963]]]]}},{"type":"Feature","properties":{"adcode":500242,"name":"酉阳土家族苗族自治县","center":[108.767201,28.839828],"centroid":[108.800321,28.89987],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":36,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.235505,28.880372],[109.239924,28.892042],[109.256864,28.907721],[109.25544,28.926141],[109.261038,28.950532],[109.272331,28.970949],[109.284165,28.972299],[109.292463,28.987639],[109.292365,29.004695],[109.295458,29.016391],[109.304836,29.020808],[109.319616,29.04256],[109.312251,29.066351],[109.301154,29.070643],[109.287847,29.07101],[109.266194,29.079552],[109.257748,29.086745],[109.237273,29.086704],[109.22593,29.113508],[109.232559,29.120086],[109.228533,29.129972],[109.215521,29.145289],[109.203098,29.151823],[109.18007,29.171955],[109.16254,29.180693],[109.154488,29.172363],[109.138824,29.169505],[109.123014,29.191267],[109.122965,29.199268],[109.110395,29.215105],[109.118545,29.232409],[109.141967,29.270475],[109.129986,29.282468],[109.106467,29.288545],[109.10465,29.293154],[109.113881,29.314196],[109.108725,29.319333],[109.114568,29.332787],[109.110002,29.342693],[109.112506,29.360995],[109.101704,29.373506],[109.090361,29.378681],[109.080786,29.390661],[109.06419,29.401743],[109.053191,29.40272],[109.039934,29.389805],[109.033453,29.378233],[109.034729,29.360261],[109.009786,29.36022],[108.999425,29.363929],[108.994761,29.355085],[108.985088,29.350479],[108.986168,29.336742],[108.97237,29.32924],[108.956069,29.330953],[108.919734,29.326305],[108.908784,29.312972],[108.903432,29.296416],[108.915462,29.293561],[108.919783,29.283732],[108.93903,29.274065],[108.954252,29.272066],[108.937607,29.244283],[108.925871,29.23347],[108.925135,29.222615],[108.915265,29.215513],[108.896607,29.209024],[108.882416,29.1791],[108.854625,29.133484],[108.855656,29.122659],[108.847702,29.105214],[108.833266,29.109995],[108.832087,29.117267],[108.812054,29.122047],[108.803756,29.129195],[108.784852,29.123272],[108.775768,29.124008],[108.774295,29.110485],[108.749008,29.10881],[108.747584,29.092384],[108.726912,29.080492],[108.700397,29.094427],[108.698777,29.101619],[108.686698,29.109341],[108.681984,29.105623],[108.668678,29.108156],[108.66416,29.103744],[108.669856,29.095939],[108.662835,29.090382],[108.667205,29.078776],[108.661313,29.071624],[108.646533,29.081841],[108.628906,29.072891],[108.622179,29.073422],[108.625665,29.08699],[108.614568,29.095408],[108.615206,29.109709],[108.60789,29.109014],[108.599396,29.086908],[108.587169,29.095081],[108.598266,29.105705],[108.570769,29.124416],[108.55869,29.13953],[108.534631,29.133975],[108.528198,29.128338],[108.527167,29.117798],[108.518329,29.100148],[108.505464,29.095326],[108.492109,29.095245],[108.473008,29.08462],[108.464858,29.087521],[108.456314,29.071951],[108.447279,29.066187],[108.434906,29.070643],[108.424987,29.057277],[108.415756,29.051268],[108.394446,29.053107],[108.373627,29.044849],[108.348143,29.027228],[108.331989,29.010911],[108.326686,29.000932],[108.312103,28.997497],[108.322954,28.953969],[108.339943,28.947872],[108.346916,28.941488],[108.350549,28.930316],[108.350353,28.907107],[108.357423,28.893393],[108.355312,28.870831],[108.346425,28.856333],[108.355165,28.831634],[108.354232,28.814263],[108.382416,28.805781],[108.386492,28.801642],[108.388996,28.785823],[108.385264,28.772216],[108.375051,28.767092],[108.372498,28.760164],[108.347259,28.736302],[108.347898,28.710262],[108.340238,28.689671],[108.332529,28.679579],[108.344019,28.673425],[108.35217,28.676091],[108.39096,28.651759],[108.421697,28.643346],[108.43903,28.633989],[108.461371,28.634153],[108.471142,28.627791],[108.491274,28.630582],[108.500996,28.626642],[108.502715,28.637601],[108.517985,28.639981],[108.524614,28.647122],[108.53851,28.652703],[108.548723,28.64782],[108.561146,28.649174],[108.564828,28.661156],[108.574796,28.660336],[108.586482,28.64704],[108.585303,28.639653],[108.596155,28.64035],[108.609019,28.633619],[108.623259,28.641418],[108.632343,28.638914],[108.636025,28.621757],[108.618889,28.606527],[108.604453,28.589529],[108.610934,28.539381],[108.58933,28.538601],[108.576858,28.533794],[108.573224,28.528124],[108.578036,28.509018],[108.574943,28.497676],[108.589182,28.473837],[108.586776,28.463066],[108.597235,28.456817],[108.602833,28.438849],[108.609952,28.435683],[108.608823,28.407306],[108.587415,28.404961],[108.577545,28.390193],[108.576367,28.364314],[108.580099,28.343285],[108.598021,28.34205],[108.606466,28.336576],[108.611573,28.324557],[108.630771,28.328014],[108.639855,28.333201],[108.647466,28.331101],[108.667352,28.334436],[108.677418,28.345795],[108.670102,28.354396],[108.659103,28.350322],[108.657041,28.362215],[108.664701,28.38287],[108.693523,28.395171],[108.696813,28.404591],[108.690921,28.410555],[108.688318,28.422318],[108.669856,28.431489],[108.663915,28.444318],[108.641476,28.455707],[108.645256,28.468616],[108.658661,28.47803],[108.671133,28.475276],[108.688613,28.482469],[108.701428,28.482469],[108.709727,28.501087],[108.723377,28.491963],[108.730889,28.517853],[108.753329,28.532972],[108.763984,28.545707],[108.775964,28.544968],[108.785294,28.54924],[108.785981,28.562096],[108.799877,28.583657],[108.815295,28.593471],[108.819174,28.60082],[108.839256,28.604146],[108.854821,28.613136],[108.881484,28.621716],[108.895379,28.614737],[108.915314,28.621962],[108.936723,28.616913],[108.954252,28.610016],[108.961126,28.630213],[108.982633,28.682327],[108.990636,28.67884],[108.999622,28.699228],[109.01941,28.690696],[109.044991,28.719325],[109.05653,28.741879],[109.062128,28.759385],[109.05982,28.768198],[109.094338,28.79234],[109.105681,28.805699],[109.106712,28.816311],[109.092718,28.809305],[109.093455,28.819261],[109.104502,28.826595],[109.111622,28.824669],[109.117465,28.83106],[109.130919,28.832453],[109.147908,28.84552],[109.157188,28.844824],[109.166223,28.852402],[109.175896,28.8515],[109.197599,28.870217],[109.197943,28.875131],[109.211004,28.882788],[109.235505,28.880372]]]]}},{"type":"Feature","properties":{"adcode":500243,"name":"彭水苗族土家族自治县","center":[108.166551,29.293856],"centroid":[108.266309,29.353956],"childrenNum":0,"level":"district","parent":{"adcode":500000},"subFeatureIndex":37,"acroutes":[100000,500000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.312103,28.997497],[108.326686,29.000932],[108.331989,29.010911],[108.348143,29.027228],[108.373627,29.044849],[108.394446,29.053107],[108.415756,29.051268],[108.424987,29.057277],[108.434906,29.070643],[108.447279,29.066187],[108.456314,29.071951],[108.464858,29.087521],[108.473008,29.08462],[108.492109,29.095245],[108.505464,29.095326],[108.518329,29.100148],[108.527167,29.117798],[108.528198,29.128338],[108.534631,29.133975],[108.55869,29.13953],[108.570671,29.152313],[108.574403,29.164115],[108.556775,29.184857],[108.548919,29.205064],[108.555597,29.218738],[108.569247,29.224941],[108.568314,29.236245],[108.575778,29.252362],[108.571948,29.265703],[108.583192,29.278063],[108.584272,29.285812],[108.573568,29.302411],[108.560409,29.306081],[108.549459,29.315378],[108.549705,29.328303],[108.561538,29.352598],[108.550196,29.371754],[108.547201,29.381697],[108.552995,29.390539],[108.555843,29.412701],[108.576367,29.41706],[108.59257,29.442963],[108.581228,29.464911],[108.585549,29.477328],[108.561686,29.491657],[108.539688,29.491697],[108.50954,29.50285],[108.501242,29.49996],[108.494711,29.515099],[108.506054,29.536868],[108.515334,29.543948],[108.536251,29.540001],[108.547643,29.547406],[108.548379,29.557575],[108.534532,29.572177],[108.534974,29.588851],[108.516709,29.602148],[108.512633,29.614467],[108.507036,29.611093],[108.499965,29.622069],[108.487199,29.624102],[108.489997,29.642515],[108.504139,29.666288],[108.503549,29.67669],[108.52373,29.683109],[108.526676,29.696759],[108.506446,29.708172],[108.489506,29.723199],[108.467656,29.729697],[108.460487,29.740904],[108.437115,29.740782],[108.438588,29.75617],[108.445462,29.76437],[108.444235,29.776913],[108.421304,29.774153],[108.416984,29.787344],[108.425478,29.804185],[108.424496,29.815302],[108.408882,29.820658],[108.404561,29.834451],[108.393169,29.83583],[108.3942,29.816479],[108.383987,29.795501],[108.36091,29.756819],[108.365918,29.748537],[108.368078,29.726042],[108.373922,29.712803],[108.358013,29.720763],[108.350156,29.721047],[108.326391,29.711747],[108.315785,29.722793],[108.30513,29.72588],[108.298895,29.734773],[108.295752,29.729007],[108.27071,29.733149],[108.245669,29.750892],[108.239384,29.745289],[108.227992,29.747076],[108.22097,29.732499],[108.225193,29.725514],[108.217975,29.716336],[108.22156,29.712153],[108.205847,29.69948],[108.208891,29.685343],[108.195143,29.666979],[108.169267,29.658445],[108.168186,29.648083],[108.17894,29.647839],[108.182033,29.625972],[108.178547,29.619183],[108.167499,29.617679],[108.163374,29.603612],[108.153652,29.599749],[108.132391,29.603815],[108.117366,29.603449],[108.114175,29.599302],[108.098757,29.600684],[108.082161,29.611377],[108.078773,29.618817],[108.067872,29.614223],[108.076563,29.605726],[108.084026,29.588892],[108.075876,29.577627],[108.066153,29.575472],[108.066988,29.566687],[108.075826,29.557982],[108.074059,29.549073],[108.055793,29.531783],[108.015432,29.504559],[108.017347,29.483719],[108.013959,29.469674],[108.013075,29.448786],[108.002763,29.442108],[108.004286,29.428424],[107.989653,29.416856],[107.992796,29.397383],[107.988426,29.38027],[107.976641,29.36344],[107.983319,29.350397],[107.984301,29.339188],[107.992059,29.325408],[108.003304,29.315174],[107.996282,29.288545],[107.998983,29.273943],[107.99697,29.26248],[108.010325,29.247792],[108.006446,29.229267],[107.997804,29.236857],[107.986756,29.217799],[107.973057,29.210166],[107.970111,29.198492],[107.960143,29.188695],[107.94286,29.178243],[107.934905,29.185102],[107.911975,29.190328],[107.898865,29.184245],[107.903775,29.172282],[107.899896,29.166361],[107.892727,29.134138],[107.895133,29.117185],[107.883889,29.106195],[107.889486,29.085151],[107.883938,29.078163],[107.873086,29.074852],[107.874707,29.057031],[107.849567,29.039289],[107.838421,29.040597],[107.823543,29.034219],[107.821186,29.005758],[107.810433,28.984285],[107.82811,28.976144],[107.842005,28.964648],[107.867538,28.960475],[107.872006,28.983058],[107.883054,28.986535],[107.887571,29.000114],[107.885215,29.008417],[107.908783,29.007353],[107.931124,29.035241],[107.949292,29.033729],[107.993925,29.033851],[108.02427,29.038676],[108.034532,29.046771],[108.035956,29.054047],[108.070474,29.086418],[108.109854,29.076078],[108.130624,29.063326],[108.132686,29.054088],[108.150068,29.053311],[108.171427,29.06537],[108.197745,29.070643],[108.204718,29.056786],[108.215029,29.056132],[108.230398,29.046975],[108.224653,29.031562],[108.24228,29.028372],[108.256962,29.041987],[108.260203,29.063735],[108.268648,29.077795],[108.270612,29.090913],[108.28657,29.089197],[108.301939,29.083067],[108.307193,29.077509],[108.297863,29.047179],[108.309795,29.018436],[108.308715,29.003386],[108.312103,28.997497]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/510000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/510000.json new file mode 100644 index 0000000..d378850 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/510000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":510100,"name":"成都市","center":[104.065735,30.659462],"centroid":[103.931804,30.652329],"childrenNum":20,"level":"city","parent":{"adcode":510000},"subFeatureIndex":0,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.959259,30.320742],[103.965866,30.316774],[103.974713,30.290727],[103.998343,30.264508],[104.030035,30.266245],[104.030035,30.266245],[104.047393,30.270381],[104.091628,30.24879],[104.116601,30.227194],[104.150533,30.245646],[104.152213,30.265335],[104.174051,30.298666],[104.17853,30.318262],[104.192977,30.329836],[104.2016,30.316526],[104.232284,30.313798],[104.2315,30.282209],[104.232732,30.281878],[104.23318,30.281051],[104.231836,30.280472],[104.243371,30.267403],[104.23094,30.256153],[104.243259,30.244239],[104.264537,30.241592],[104.2726,30.217842],[104.282231,30.220904],[104.315379,30.200792],[104.327138,30.204269],[104.364541,30.185974],[104.358158,30.173638],[104.386379,30.161798],[104.39881,30.124776],[104.41012,30.125521],[104.428374,30.089729],[104.450212,30.101081],[104.437109,30.107544],[104.457715,30.120634],[104.449428,30.132894],[104.464994,30.151529],[104.468354,30.157077],[104.485264,30.156001],[104.484368,30.181504],[104.533754,30.193673],[104.541594,30.184236],[104.569254,30.196985],[104.600163,30.220408],[104.599603,30.244488],[104.653133,30.240185],[104.638239,30.268148],[104.643614,30.283036],[104.691993,30.275427],[104.703975,30.301643],[104.723797,30.308341],[104.738579,30.290314],[104.774863,30.30156],[104.795133,30.279397],[104.807228,30.296847],[104.823354,30.293787],[104.848775,30.306852],[104.850455,30.338929],[104.837016,30.361988],[104.855494,30.347194],[104.860982,30.364384],[104.881027,30.360831],[104.895922,30.382315],[104.881699,30.393551],[104.875092,30.437078],[104.8761,30.5131],[104.892786,30.541645],[104.879124,30.550635],[104.858854,30.582385],[104.819098,30.580076],[104.819994,30.598296],[104.847319,30.631101],[104.842728,30.649395],[104.821226,30.643874],[104.818315,30.664307],[104.800956,30.690995],[104.78875,30.694043],[104.788526,30.721299],[104.768032,30.71817],[104.750786,30.726898],[104.732084,30.778257],[104.718086,30.771756],[104.698376,30.825559],[104.640366,30.837895],[104.629952,30.852449],[104.613937,30.847763],[104.596355,30.864535],[104.585269,30.862891],[104.520764,30.882456],[104.533083,30.917875],[104.511917,30.935868],[104.495791,30.935457],[104.465218,30.9509],[104.44506,30.940468],[104.39601,30.942358],[104.389739,30.925681],[104.367117,30.93365],[104.351887,30.902345],[104.322322,30.891743],[104.288726,30.90292],[104.244491,30.896921],[104.21571,30.8984],[104.202384,30.91311],[104.168787,30.918533],[104.149974,30.91311],[104.142582,30.925845],[104.166324,30.951311],[104.166884,30.993438],[104.143478,31.01158],[104.117385,31.017572],[104.10697,31.032263],[104.107194,31.032017],[104.106522,31.031607],[104.10641,31.031771],[104.094876,31.032756],[104.060608,31.0641],[104.057584,31.07821],[104.019844,31.103963],[104.022868,31.142661],[104.009429,31.153235],[104.014693,31.167577],[103.983,31.200925],[103.949404,31.215997],[103.929134,31.234425],[103.928014,31.272497],[103.914128,31.278964],[103.891618,31.308017],[103.894418,31.326018],[103.92835,31.355139],[103.894754,31.408858],[103.897554,31.416377],[103.868437,31.420954],[103.828682,31.412454],[103.816027,31.431906],[103.802588,31.430108],[103.787246,31.434439],[103.75029,31.419156],[103.739876,31.398885],[103.700792,31.391118],[103.669323,31.354812],[103.627104,31.344097],[103.60717,31.351295],[103.569543,31.338453],[103.569991,31.314563],[103.579733,31.291241],[103.569095,31.262019],[103.581413,31.246626],[103.57671,31.215834],[103.583205,31.191422],[103.564839,31.175034],[103.557224,31.149055],[103.525644,31.101092],[103.521164,31.067792],[103.504814,31.041044],[103.517132,31.030129],[103.52094,31.005095],[103.516461,30.971761],[103.465058,30.941536],[103.454644,30.924695],[103.451396,30.892565],[103.409401,30.864946],[103.383084,30.862891],[103.354527,30.850887],[103.337617,30.824655],[103.305252,30.810507],[103.284647,30.829589],[103.25833,30.842418],[103.228653,30.836579],[103.199088,30.845707],[103.165716,30.842171],[103.123945,30.79282],[103.083629,30.812728],[103.037938,30.802364],[102.992919,30.778339],[103.005126,30.74649],[103.033907,30.719076],[103.031331,30.703678],[103.068735,30.716194],[103.103115,30.672957],[103.119017,30.670898],[103.13156,30.65475],[103.135591,30.624096],[103.126856,30.593927],[103.147798,30.585847],[103.166276,30.555749],[103.157765,30.530013],[103.180834,30.525228],[103.185874,30.511945],[103.162244,30.472579],[103.141751,30.470845],[103.12596,30.451115],[103.115993,30.413954],[103.116329,30.380002],[103.127976,30.367111],[103.091132,30.326529],[103.079038,30.324545],[103.062128,30.302553],[103.068623,30.294283],[103.061456,30.270464],[103.071534,30.260951],[103.076798,30.220242],[103.147238,30.207],[103.183634,30.248128],[103.211631,30.232407],[103.215998,30.209235],[103.233356,30.213456],[103.242651,30.243081],[103.282295,30.263598],[103.313875,30.260372],[103.320259,30.23489],[103.350047,30.236048],[103.370317,30.22827],[103.36091,30.168008],[103.372109,30.148382],[103.360574,30.136787],[103.395178,30.094866],[103.439637,30.119474],[103.439637,30.119557],[103.443893,30.120054],[103.443893,30.117486],[103.4505,30.096524],[103.462483,30.096027],[103.468082,30.114255],[103.450948,30.132231],[103.474577,30.131237],[103.486224,30.104147],[103.504142,30.128503],[103.533819,30.146643],[103.544233,30.161218],[103.533819,30.178109],[103.597204,30.203524],[103.617473,30.195412],[103.628,30.214863],[103.649502,30.199799],[103.648046,30.229263],[103.693065,30.245894],[103.681754,30.269885],[103.705271,30.268975],[103.718374,30.283201],[103.736516,30.285848],[103.727893,30.30462],[103.75141,30.307927],[103.769776,30.332068],[103.794749,30.345872],[103.845368,30.34331],[103.87426,30.348104],[103.887699,30.328761],[103.910432,30.330663],[103.913904,30.353972],[103.942237,30.357773],[103.93563,30.346203],[103.959259,30.320742]]],[[[104.107194,31.032017],[104.10697,31.032263],[104.10641,31.031771],[104.106522,31.031607],[104.107194,31.032017]]],[[[103.443893,30.120054],[103.439637,30.119557],[103.439637,30.119474],[103.443893,30.117486],[103.443893,30.120054]]],[[[104.232732,30.281878],[104.2315,30.282209],[104.231836,30.280472],[104.23318,30.281051],[104.232732,30.281878]]]]}},{"type":"Feature","properties":{"adcode":510300,"name":"自贡市","center":[104.773447,29.352765],"centroid":[104.685446,29.28421],"childrenNum":6,"level":"city","parent":{"adcode":510000},"subFeatureIndex":1,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.17685,29.195745],[104.195888,29.220657],[104.191409,29.235869],[104.23262,29.205861],[104.256026,29.212298],[104.265433,29.231857],[104.249082,29.261356],[104.284582,29.259601],[104.298805,29.245647],[104.323218,29.2408],[104.368685,29.247652],[104.380332,29.238376],[104.411688,29.245479],[104.417735,29.236454],[104.442597,29.238543],[104.434646,29.220908],[104.460963,29.221827],[104.46589,29.207366],[104.509453,29.155522],[104.540922,29.143394],[104.580117,29.164639],[104.596355,29.190394],[104.62424,29.207282],[104.649325,29.198588],[104.691993,29.19934],[104.692329,29.177099],[104.680346,29.15569],[104.697816,29.118212],[104.714614,29.122396],[104.73018,29.106498],[104.737236,29.078796],[104.713718,29.06105],[104.705207,29.045477],[104.720214,28.996651],[104.744067,28.990369],[104.76512,28.998746],[104.796701,29.000086],[104.811931,28.990704],[104.819546,29.001761],[104.85751,29.003436],[104.861542,29.019685],[104.879684,29.024291],[104.881475,29.050836],[104.902529,29.047738],[104.941837,29.058873],[104.944636,29.021277],[104.969722,29.015749],[104.986296,28.991541],[105.00511,28.989866],[105.017316,28.972104],[105.073758,28.936404],[105.111162,28.933722],[105.126952,28.945288],[105.145094,28.942271],[105.162116,28.947467],[105.167715,28.92995],[105.201871,28.929279],[105.205007,28.951825],[105.217214,28.95568],[105.225837,28.934644],[105.244763,28.937745],[105.254282,28.9271],[105.267608,28.939086],[105.239723,28.956937],[105.267384,28.979561],[105.269288,29.009719],[105.234348,29.026636],[105.214974,29.016168],[105.187873,29.027306],[105.188769,29.056613],[105.207359,29.070258],[105.250138,29.119969],[105.244987,29.135196],[105.271752,29.160123],[105.256521,29.17526],[105.266936,29.188638],[105.23558,29.215475],[105.217998,29.20561],[105.195488,29.222078],[105.203999,29.23963],[105.160548,29.262776],[105.134903,29.257429],[105.113961,29.284999],[105.120121,29.302205],[105.108922,29.315568],[105.072526,29.336359],[105.063679,29.364659],[105.035346,29.382937],[105.046881,29.408721],[105.079469,29.406886],[105.084285,29.42232],[105.063119,29.442923],[105.067823,29.454349],[105.044305,29.480865],[105.030643,29.472527],[105.04061,29.461938],[105.020564,29.454432],[105.026947,29.439587],[104.993127,29.438669],[104.961882,29.416647],[104.937133,29.445425],[104.917647,29.434332],[104.871957,29.459019],[104.873972,29.47086],[104.848775,29.467858],[104.833657,29.430495],[104.808796,29.457018],[104.786398,29.457518],[104.777327,29.448177],[104.750786,29.453598],[104.741155,29.432414],[104.751458,29.402631],[104.766128,29.406469],[104.759969,29.374759],[104.738132,29.381936],[104.745411,29.36324],[104.710919,29.361404],[104.704423,29.372255],[104.674299,29.38227],[104.673403,29.398709],[104.652461,29.411141],[104.619761,29.444758],[104.587956,29.422987],[104.569814,29.441172],[104.558728,29.431913],[104.543945,29.441005],[104.535658,29.418566],[104.510013,29.456767],[104.53465,29.456601],[104.529611,29.518876],[104.501726,29.549958],[104.482912,29.562872],[104.493551,29.582613],[104.488847,29.601435],[104.474065,29.609262],[104.442933,29.600102],[104.421767,29.616423],[104.39489,29.621002],[104.381787,29.607264],[104.383579,29.584196],[104.340688,29.565704],[104.334193,29.583113],[104.309332,29.607347],[104.280551,29.613925],[104.269576,29.632491],[104.249754,29.636154],[104.251098,29.623084],[104.212239,29.61251],[104.182226,29.633407],[104.16722,29.597854],[104.139895,29.589693],[104.166884,29.55729],[104.160948,29.541876],[104.135079,29.52096],[104.151093,29.52221],[104.165988,29.496538],[104.16666,29.496455],[104.16666,29.496371],[104.166324,29.495955],[104.150309,29.472027],[104.149526,29.47061],[104.14919,29.470776],[104.14919,29.472277],[104.128472,29.498289],[104.08838,29.461687],[104.064191,29.472361],[104.052656,29.456684],[104.058256,29.425907],[104.098347,29.437168],[104.105962,29.414895],[104.0923,29.416397],[104.090172,29.391616],[104.100811,29.382186],[104.131272,29.400378],[104.134967,29.399043],[104.141126,29.374508],[104.160836,29.379933],[104.163412,29.364158],[104.142022,29.355644],[104.135415,29.338781],[104.105626,29.338864],[104.083229,29.348298],[104.07651,29.323584],[104.09174,29.315317],[104.139447,29.307467],[104.14639,29.283829],[104.116377,29.263946],[104.109658,29.241886],[104.118393,29.236454],[104.14359,29.256844],[104.150981,29.22726],[104.150645,29.194157],[104.17685,29.195745]]],[[[104.150309,29.472027],[104.14919,29.472277],[104.14919,29.470776],[104.149526,29.47061],[104.150309,29.472027]]],[[[104.16666,29.496455],[104.165988,29.496538],[104.166324,29.495955],[104.16666,29.496371],[104.16666,29.496455]]]]}},{"type":"Feature","properties":{"adcode":510400,"name":"攀枝花市","center":[101.716007,26.580446],"centroid":[101.625394,26.755869],"childrenNum":5,"level":"city","parent":{"adcode":510000},"subFeatureIndex":2,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.839897,26.082429],[101.832282,26.117176],[101.844712,26.141683],[101.840681,26.16008],[101.872261,26.181483],[101.906753,26.191367],[101.90205,26.243521],[101.921759,26.27032],[101.926015,26.306213],[101.935198,26.322954],[101.927583,26.362263],[101.939118,26.410824],[101.929039,26.419487],[101.942701,26.448989],[101.982121,26.454906],[101.994999,26.431409],[102.020196,26.422832],[102.029491,26.434068],[102.033411,26.470768],[102.050769,26.49417],[102.034083,26.541133],[102.038562,26.571717],[102.030611,26.596898],[102.011125,26.598525],[102.001383,26.633632],[101.984024,26.638854],[101.995559,26.653577],[101.997463,26.698849],[101.977081,26.711084],[101.981897,26.735892],[101.971706,26.735464],[101.960171,26.710143],[101.946509,26.707662],[101.938782,26.639367],[101.920528,26.635515],[101.913024,26.680537],[101.91672,26.703127],[101.912688,26.723318],[101.861398,26.724173],[101.838889,26.744958],[101.834297,26.763516],[101.819963,26.765227],[101.81358,26.793272],[101.772704,26.82413],[101.731157,26.835924],[101.707528,26.873691],[101.70148,26.902051],[101.704952,26.933477],[101.698904,26.944406],[101.744931,26.970614],[101.773488,26.99289],[101.77248,27.006544],[101.805852,27.056366],[101.809212,27.088858],[101.817387,27.101732],[101.803725,27.114691],[101.761729,27.133444],[101.744483,27.124835],[101.708759,27.129012],[101.681994,27.150404],[101.65075,27.208169],[101.643135,27.24513],[101.664748,27.288888],[101.659261,27.313569],[101.633728,27.327949],[101.635408,27.33952],[101.598452,27.340456],[101.584229,27.334671],[101.55836,27.295357],[101.530475,27.277823],[101.514685,27.229802],[101.495759,27.228014],[101.470674,27.238829],[101.419048,27.215835],[101.426999,27.190792],[101.41412,27.162164],[101.394299,27.145206],[101.355215,27.184658],[101.334721,27.179546],[101.315571,27.197522],[101.293174,27.189599],[101.283095,27.197607],[101.246027,27.179205],[101.197425,27.18321],[101.168084,27.165232],[101.145351,27.103779],[101.157221,27.094826],[101.137399,27.022329],[101.227213,26.984441],[101.227101,26.958919],[101.264505,26.955504],[101.255546,26.923913],[101.267753,26.90299],[101.293958,26.896157],[101.31154,26.902905],[101.323299,26.888299],[101.365406,26.883686],[101.374701,26.865318],[101.399674,26.840453],[101.372013,26.800367],[101.379852,26.786432],[101.357791,26.770614],[101.390267,26.750004],[101.389707,26.723146],[101.421624,26.726312],[101.43607,26.740596],[101.457124,26.729733],[101.459139,26.747353],[101.445925,26.774205],[101.465747,26.786688],[101.513341,26.768562],[101.510654,26.754452],[101.492176,26.746412],[101.498895,26.732214],[101.472802,26.721436],[101.454548,26.703641],[101.4541,26.691148],[101.481201,26.673177],[101.461043,26.640737],[101.461939,26.606746],[101.452084,26.601009],[101.400234,26.605119],[101.39609,26.592017],[101.406617,26.556383],[101.422967,26.531708],[101.438422,26.538477],[101.439766,26.512684],[101.458691,26.495456],[101.506958,26.499656],[101.530027,26.467252],[101.565639,26.454563],[101.588149,26.425834],[101.635632,26.396069],[101.631488,26.359517],[101.660605,26.346816],[101.640335,26.318833],[101.660381,26.310849],[101.646942,26.305183],[101.621073,26.312824],[101.597444,26.303466],[101.585797,26.283888],[101.59442,26.261559],[101.616706,26.249792],[101.630368,26.224879],[101.649966,26.234244],[101.67158,26.231838],[101.690057,26.241717],[101.705064,26.224449],[101.735748,26.219982],[101.773152,26.168247],[101.807644,26.156298],[101.797229,26.142198],[101.796558,26.114769],[101.819515,26.087074],[101.839897,26.082429]]],[[[102.18213,26.812591],[102.156261,26.847717],[102.159845,26.855151],[102.204976,26.85216],[102.214159,26.889153],[102.205312,26.91042],[102.225917,26.923999],[102.229165,26.945174],[102.214495,26.957297],[102.230173,27.000485],[102.217518,27.04596],[102.238684,27.064298],[102.2407,27.106592],[102.210351,27.11776],[102.203296,27.131398],[102.176419,27.137535],[102.161077,27.182187],[102.122665,27.171878],[102.114826,27.159437],[102.086269,27.146484],[102.081566,27.129268],[102.049761,27.082718],[102.034083,27.076152],[102.025908,27.093462],[102.000263,27.096873],[101.993879,27.115202],[101.97305,27.122619],[101.938782,27.104034],[101.927247,27.137109],[101.941021,27.143842],[101.922095,27.180654],[101.908433,27.192666],[101.914368,27.213195],[101.903618,27.218561],[101.912241,27.243683],[101.896786,27.267096],[101.886259,27.255603],[101.878084,27.222734],[101.878196,27.189855],[101.862966,27.182784],[101.879204,27.168129],[101.870357,27.129694],[101.833065,27.122619],[101.817387,27.101732],[101.809212,27.088858],[101.805852,27.056366],[101.77248,27.006544],[101.773488,26.99289],[101.744931,26.970614],[101.698904,26.944406],[101.704952,26.933477],[101.70148,26.902051],[101.707528,26.873691],[101.731157,26.835924],[101.772704,26.82413],[101.81358,26.793272],[101.819963,26.765227],[101.834297,26.763516],[101.838889,26.744958],[101.861398,26.724173],[101.912688,26.723318],[101.91672,26.703127],[101.946509,26.707662],[101.960171,26.710143],[101.971706,26.735464],[101.981897,26.735892],[101.977081,26.711084],[101.997463,26.698849],[102.006534,26.716388],[102.033187,26.712367],[102.04573,26.737517],[102.063088,26.718613],[102.054801,26.692688],[102.073502,26.670867],[102.068351,26.656659],[102.084477,26.654519],[102.114714,26.63406],[102.132296,26.637741],[102.135543,26.674718],[102.157045,26.680708],[102.157605,26.692346],[102.178883,26.708346],[102.175859,26.726568],[102.195681,26.744616],[102.192993,26.763602],[102.175075,26.774975],[102.189857,26.791904],[102.174179,26.802419],[102.18213,26.812591]]],[[[102.204976,26.85216],[102.159845,26.855151],[102.156261,26.847717],[102.18213,26.812591],[102.192657,26.820455],[102.215615,26.813617],[102.202288,26.840795],[102.204976,26.85216]]]]}},{"type":"Feature","properties":{"adcode":510500,"name":"泸州市","center":[105.443348,28.889138],"childrenNum":7,"level":"city","parent":{"adcode":510000},"subFeatureIndex":3,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.420135,29.314399],[105.395274,29.308553],[105.389002,29.286502],[105.386203,29.284832],[105.384747,29.283579],[105.384747,29.283328],[105.383403,29.281991],[105.368621,29.285918],[105.366493,29.287839],[105.365149,29.292684],[105.364141,29.291932],[105.339392,29.281741],[105.318226,29.263612],[105.287542,29.218233],[105.281495,29.188471],[105.266936,29.188638],[105.256521,29.17526],[105.271752,29.160123],[105.244987,29.135196],[105.250138,29.119969],[105.207359,29.070258],[105.188769,29.056613],[105.187873,29.027306],[105.214974,29.016168],[105.234348,29.026636],[105.269288,29.009719],[105.267384,28.979561],[105.239723,28.956937],[105.267608,28.939086],[105.254282,28.9271],[105.244763,28.937745],[105.225837,28.934644],[105.217214,28.95568],[105.205007,28.951825],[105.201871,28.929279],[105.167715,28.92995],[105.162116,28.947467],[105.145094,28.942271],[105.166483,28.9271],[105.177682,28.907148],[105.203999,28.896751],[105.202879,28.869748],[105.21531,28.818405],[105.225725,28.807748],[105.2311,28.777448],[105.240507,28.774846],[105.204111,28.746635],[105.216878,28.739078],[105.219342,28.715813],[105.203887,28.709514],[105.21139,28.696325],[105.201312,28.673555],[105.167939,28.65036],[105.172083,28.607908],[105.207807,28.569055],[105.203439,28.548192],[105.226285,28.540536],[105.237483,28.523455],[105.234012,28.49341],[105.206687,28.457041],[105.191121,28.445757],[105.228748,28.449631],[105.229532,28.451483],[105.230652,28.450978],[105.2311,28.449378],[105.295269,28.449041],[105.293813,28.435651],[105.32013,28.427987],[105.32293,28.386371],[105.3077,28.371541],[105.287654,28.369181],[105.306692,28.359321],[105.310611,28.339597],[105.336928,28.313378],[105.331553,28.292634],[105.339168,28.280236],[105.333121,28.256533],[105.348463,28.205314],[105.344767,28.185646],[105.358094,28.153478],[105.350255,28.140811],[105.275335,28.134392],[105.224493,28.099843],[105.225613,28.098999],[105.225725,28.09883],[105.226957,28.094859],[105.226061,28.094183],[105.220237,28.091901],[105.204111,28.073396],[105.17701,28.066889],[105.18373,28.040349],[105.167603,28.023611],[105.184401,27.996468],[105.215534,27.990548],[105.246219,28.009237],[105.270856,27.995792],[105.269848,27.978961],[105.283398,27.959929],[105.280935,27.929132],[105.264137,27.91153],[105.248906,27.912969],[105.234908,27.898919],[105.250138,27.844818],[105.244763,27.822544],[105.27052,27.818139],[105.314195,27.81941],[105.313187,27.81077],[105.287766,27.807042],[105.273879,27.795266],[105.292917,27.771287],[105.287878,27.742386],[105.290566,27.712459],[105.309603,27.705676],[105.327073,27.727042],[105.339952,27.729077],[105.353838,27.748828],[105.368957,27.749421],[105.440181,27.77527],[105.458211,27.767897],[105.477137,27.774846],[105.517788,27.764931],[105.537498,27.753744],[105.550488,27.72611],[105.60413,27.71619],[105.604018,27.700758],[105.619025,27.687614],[105.623392,27.667088],[105.643102,27.659963],[105.66438,27.683882],[105.702007,27.676927],[105.721045,27.684815],[105.722837,27.705846],[105.784206,27.719158],[105.842888,27.705337],[105.868309,27.732552],[105.921279,27.747048],[105.929902,27.728144],[105.985448,27.74976],[106.023075,27.746963],[106.062383,27.763321],[106.063727,27.777134],[106.12756,27.778659],[106.19352,27.754422],[106.224653,27.760948],[106.268552,27.782133],[106.295989,27.803145],[106.341792,27.820172],[106.317154,27.838721],[106.34,27.86531],[106.325889,27.879364],[106.325777,27.897988],[106.304836,27.899342],[106.308083,27.936748],[106.328353,27.957983],[106.294309,28.003656],[106.268888,28.003318],[106.246266,28.012027],[106.244139,28.030543],[106.265528,28.049816],[106.266648,28.066551],[106.25153,28.090296],[106.231484,28.097985],[106.226221,28.115894],[106.207071,28.134223],[106.145254,28.162851],[106.122072,28.167073],[106.093515,28.162682],[106.060927,28.143007],[106.027219,28.131267],[106.036514,28.110741],[106.01322,28.119949],[105.976153,28.108038],[105.970777,28.131267],[105.945244,28.143513],[105.936957,28.132281],[105.903697,28.129156],[105.895186,28.11978],[105.876036,28.128227],[105.8785,28.139037],[105.860918,28.159558],[105.870996,28.201937],[105.889026,28.238479],[105.874244,28.254593],[105.862709,28.248941],[105.845687,28.259908],[105.823402,28.306885],[105.797645,28.312366],[105.785662,28.336478],[105.771328,28.319449],[105.78667,28.308825],[105.740643,28.304862],[105.738627,28.277284],[105.730004,28.272139],[105.688569,28.284369],[105.670091,28.310427],[105.639518,28.32417],[105.654861,28.362355],[105.643326,28.431524],[105.612529,28.438936],[105.619361,28.463608],[105.609842,28.473964],[105.627984,28.507802],[105.684649,28.534563],[105.683417,28.557867],[105.69316,28.588567],[105.720709,28.590585],[105.747474,28.615895],[105.757665,28.590333],[105.78499,28.611103],[105.798429,28.603199],[105.884995,28.595463],[105.905937,28.611019],[105.890258,28.62136],[105.895634,28.64372],[105.889474,28.67053],[105.904817,28.669606],[105.935613,28.681874],[105.934269,28.703633],[105.955883,28.713881],[105.967754,28.761665],[105.979288,28.746551],[106.008965,28.738238],[106.030802,28.695064],[106.080413,28.686327],[106.10337,28.636071],[106.144582,28.644729],[106.165747,28.636239],[106.192064,28.577802],[106.236187,28.560138],[106.254889,28.539443],[106.292629,28.537339],[106.305396,28.50452],[106.330705,28.48213],[106.378859,28.479689],[106.373036,28.526906],[106.350191,28.5402],[106.34224,28.532627],[106.332049,28.55324],[106.346607,28.583773],[106.324546,28.616736],[106.329809,28.634054],[106.304052,28.649856],[106.321522,28.664648],[106.308531,28.672547],[106.305172,28.704221],[106.287702,28.732359],[106.273143,28.739833],[106.267656,28.779295],[106.252426,28.785842],[106.244363,28.814629],[106.264856,28.846093],[106.206959,28.904548],[106.173474,28.920813],[106.149173,28.901949],[106.101243,28.898931],[106.070558,28.919807],[106.04928,28.906393],[106.039426,28.917711],[106.043793,28.954172],[106.017476,28.952915],[106.000902,28.974031],[105.970217,28.966071],[105.944012,28.939589],[105.909744,28.920477],[105.90952,28.900188],[105.889362,28.909495],[105.888019,28.926848],[105.875028,28.933973],[105.852742,28.927351],[105.830457,28.944283],[105.797533,28.935901],[105.803804,28.947635],[105.788238,28.978221],[105.761921,28.993049],[105.765952,29.013906],[105.744563,29.046649],[105.757777,29.06624],[105.729892,29.098799],[105.735156,29.122396],[105.752066,29.129758],[105.728884,29.134443],[105.721381,29.169573],[105.704471,29.175678],[105.711974,29.218902],[105.693944,29.267539],[105.695176,29.287338],[105.715894,29.290846],[105.705031,29.299199],[105.678042,29.27347],[105.665164,29.276561],[105.666507,29.252917],[105.647581,29.253251],[105.631791,29.280404],[105.607938,29.255758],[105.609506,29.272719],[105.583301,29.270379],[105.558328,29.278483],[105.51846,29.264447],[105.509165,29.285416],[105.476241,29.279235],[105.465378,29.29235],[105.466498,29.32158],[105.420135,29.314399]]],[[[105.225613,28.098999],[105.224493,28.099843],[105.220237,28.091901],[105.226061,28.094183],[105.226957,28.094859],[105.225725,28.09883],[105.225613,28.098999]]],[[[105.384747,29.283579],[105.384747,29.283328],[105.383403,29.281991],[105.386203,29.284832],[105.384747,29.283579]]],[[[105.230652,28.450978],[105.229532,28.451483],[105.228748,28.449631],[105.2311,28.449378],[105.230652,28.450978]]]]}},{"type":"Feature","properties":{"adcode":510600,"name":"德阳市","center":[104.398651,31.127991],"centroid":[104.436756,31.128701],"childrenNum":6,"level":"city","parent":{"adcode":510000},"subFeatureIndex":4,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.168723,30.706395],[105.157972,30.706313],[105.156517,30.732496],[105.118329,30.750276],[105.115865,30.759247],[105.081149,30.755873],[105.07051,30.771756],[105.025267,30.781878],[104.998502,30.805901],[104.987192,30.843076],[104.992007,30.870125],[104.960427,30.865029],[104.967482,30.894949],[104.945308,30.897496],[104.947436,30.912124],[104.931646,30.945808],[104.904769,30.943425],[104.906785,30.940879],[104.906449,30.939975],[104.906113,30.939647],[104.906001,30.939647],[104.903649,30.943015],[104.894578,30.936936],[104.893682,30.936361],[104.893682,30.936197],[104.89357,30.934964],[104.893458,30.934964],[104.891554,30.936607],[104.876772,30.937347],[104.87666,30.936607],[104.87666,30.936279],[104.875652,30.934554],[104.875316,30.934718],[104.875204,30.935786],[104.875204,30.936114],[104.875652,30.937757],[104.870165,30.946465],[104.841496,30.946465],[104.85471,30.959442],[104.846311,30.981368],[104.82593,30.997625],[104.83836,31.013878],[104.82593,31.023564],[104.819882,31.064182],[104.80678,31.067135],[104.774751,31.099616],[104.791885,31.118394],[104.788974,31.130283],[104.762321,31.132004],[104.757393,31.144219],[104.756385,31.144383],[104.75605,31.14512],[104.756721,31.146104],[104.743507,31.167168],[104.719654,31.16266],[104.713942,31.216079],[104.741939,31.232623],[104.74877,31.275117],[104.731524,31.281174],[104.724917,31.271351],[104.697256,31.274298],[104.677434,31.266849],[104.670827,31.299998],[104.658172,31.311127],[104.656829,31.33109],[104.586165,31.357674],[104.590532,31.375665],[104.585045,31.402482],[104.523676,31.44261],[104.496911,31.407795],[104.477313,31.405588],[104.478545,31.385068],[104.418295,31.374847],[104.387051,31.382861],[104.37574,31.373784],[104.358158,31.386376],[104.347407,31.381798],[104.326914,31.399294],[104.311011,31.427738],[104.285702,31.436318],[104.27092,31.45936],[104.236428,31.463608],[104.202944,31.51457],[104.185586,31.520286],[104.170579,31.512366],[104.155685,31.519061],[104.152325,31.541755],[104.16106,31.55612],[104.146054,31.564934],[104.132727,31.605319],[104.102715,31.630602],[104.098459,31.648622],[104.116937,31.677724],[104.09398,31.693535],[104.085917,31.688075],[104.040786,31.697691],[104.016037,31.678539],[103.989384,31.68237],[103.962842,31.656612],[103.928238,31.639572],[103.917376,31.612089],[103.923311,31.60328],[103.907409,31.564444],[103.915136,31.538409],[103.898226,31.512856],[103.857798,31.53849],[103.84212,31.510896],[103.795757,31.471777],[103.802588,31.430108],[103.816027,31.431906],[103.828682,31.412454],[103.868437,31.420954],[103.897554,31.416377],[103.894754,31.408858],[103.92835,31.355139],[103.894418,31.326018],[103.891618,31.308017],[103.914128,31.278964],[103.928014,31.272497],[103.929134,31.234425],[103.949404,31.215997],[103.983,31.200925],[104.014693,31.167577],[104.009429,31.153235],[104.022868,31.142661],[104.019844,31.103963],[104.057584,31.07821],[104.060608,31.0641],[104.094876,31.032756],[104.10641,31.031771],[104.10697,31.032263],[104.117385,31.017572],[104.143478,31.01158],[104.166884,30.993438],[104.166324,30.951311],[104.142582,30.925845],[104.149974,30.91311],[104.168787,30.918533],[104.202384,30.91311],[104.21571,30.8984],[104.244491,30.896921],[104.288726,30.90292],[104.322322,30.891743],[104.351887,30.902345],[104.367117,30.93365],[104.389739,30.925681],[104.39601,30.942358],[104.44506,30.940468],[104.465218,30.9509],[104.495791,30.935457],[104.511917,30.935868],[104.533083,30.917875],[104.520764,30.882456],[104.585269,30.862891],[104.596355,30.864535],[104.613937,30.847763],[104.629952,30.852449],[104.640366,30.837895],[104.698376,30.825559],[104.718086,30.771756],[104.732084,30.778257],[104.750786,30.726898],[104.768032,30.71817],[104.788526,30.721299],[104.78875,30.694043],[104.800956,30.690995],[104.818315,30.664307],[104.821226,30.643874],[104.842728,30.649395],[104.847319,30.631101],[104.819994,30.598296],[104.819098,30.580076],[104.858854,30.582385],[104.859078,30.611321],[104.878788,30.617997],[104.886403,30.609343],[104.910928,30.625662],[104.932206,30.617091],[104.93019,30.601429],[104.953371,30.612475],[104.970393,30.586425],[104.963226,30.56746],[104.983944,30.529271],[105.025043,30.530178],[105.022916,30.546099],[105.048449,30.545192],[105.066927,30.53587],[105.079021,30.543129],[105.094812,30.584198],[105.117657,30.602913],[105.130088,30.624756],[105.153829,30.640249],[105.142742,30.653185],[105.146998,30.669168],[105.161108,30.672545],[105.174547,30.697666],[105.168723,30.706395]]],[[[104.876772,30.937347],[104.875652,30.937757],[104.875204,30.936114],[104.875204,30.935786],[104.875316,30.934718],[104.875652,30.934554],[104.87666,30.936279],[104.87666,30.936607],[104.876772,30.937347]]],[[[104.894578,30.936936],[104.891554,30.936607],[104.893458,30.934964],[104.89357,30.934964],[104.893682,30.936197],[104.893682,30.936361],[104.894578,30.936936]]],[[[104.904769,30.943425],[104.903649,30.943015],[104.906001,30.939647],[104.906113,30.939647],[104.906449,30.939975],[104.906785,30.940879],[104.904769,30.943425]]],[[[104.756721,31.146104],[104.75605,31.14512],[104.756385,31.144383],[104.757393,31.144219],[104.756721,31.146104]]]]}},{"type":"Feature","properties":{"adcode":510700,"name":"绵阳市","center":[104.741722,31.46402],"centroid":[104.704392,31.850919],"childrenNum":9,"level":"city","parent":{"adcode":510000},"subFeatureIndex":5,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.459219,31.52698],[105.416215,31.558487],[105.395834,31.561588],[105.393258,31.618369],[105.366269,31.615596],[105.333009,31.630276],[105.345103,31.677235],[105.317555,31.702988],[105.315315,31.71855],[105.284518,31.700951],[105.25361,31.707306],[105.284406,31.72914],[105.283062,31.740218],[105.311395,31.744128],[105.3077,31.771327],[105.288774,31.793716],[105.264137,31.790541],[105.262233,31.77841],[105.243755,31.795181],[105.251482,31.816587],[105.243195,31.830014],[105.205231,31.837094],[105.223261,31.882078],[105.203327,31.90509],[105.18317,31.91135],[105.205343,31.945652],[105.185185,31.965399],[105.187761,31.983029],[105.174211,31.999518],[105.194144,31.996025],[105.208591,32.0117],[105.215198,32.004229],[105.235692,32.016492],[105.25193,31.982866],[105.26436,32.031514],[105.250026,32.033138],[105.252602,32.082651],[105.286198,32.108777],[105.262569,32.126623],[105.28575,32.139762],[105.275111,32.15598],[105.251706,32.16725],[105.273096,32.193189],[105.240395,32.204292],[105.262233,32.225198],[105.252826,32.236297],[105.27052,32.263027],[105.268504,32.27809],[105.254394,32.271611],[105.238043,32.287401],[105.254954,32.300679],[105.247562,32.32051],[105.218894,32.316059],[105.208815,32.306831],[105.176674,32.302621],[105.112729,32.310797],[105.08742,32.30335],[105.082605,32.283596],[105.044865,32.287563],[105.032994,32.265133],[104.995255,32.247557],[105.00007,32.266429],[104.976553,32.293069],[104.964458,32.297359],[104.974649,32.334592],[104.940381,32.333621],[104.911712,32.326175],[104.884611,32.355144],[104.856278,32.357329],[104.840712,32.35118],[104.822458,32.370434],[104.804316,32.374155],[104.773856,32.400116],[104.775423,32.414913],[104.755938,32.436336],[104.761649,32.445955],[104.749218,32.464623],[104.759745,32.493871],[104.750002,32.505341],[104.754818,32.52642],[104.745971,32.536351],[104.709687,32.553952],[104.655933,32.56049],[104.651117,32.579619],[104.634207,32.597211],[104.618977,32.600842],[104.617745,32.627464],[104.635775,32.668511],[104.596355,32.693259],[104.582805,32.72219],[104.555144,32.733792],[104.526699,32.728394],[104.510237,32.754495],[104.458947,32.748534],[104.447524,32.761743],[104.422103,32.768831],[104.421655,32.780588],[104.371709,32.805949],[104.365325,32.821564],[104.330161,32.824622],[104.294325,32.835728],[104.28895,32.870325],[104.277079,32.891317],[104.247851,32.877564],[104.220302,32.896143],[104.217278,32.908767],[104.195664,32.916888],[104.158821,32.956998],[104.113466,32.99982],[104.069231,33.003114],[104.013461,33.041258],[103.986472,33.034674],[103.973705,33.005122],[103.978521,32.985602],[103.959371,32.939879],[103.965082,32.922114],[103.952988,32.917451],[103.958027,32.888422],[103.993975,32.879334],[103.994535,32.861154],[103.971466,32.839671],[104.004614,32.814159],[104.032387,32.820357],[104.035522,32.833073],[104.068895,32.845224],[104.079309,32.856971],[104.101035,32.848201],[104.108314,32.800635],[104.121305,32.799911],[104.146502,32.756589],[104.130152,32.730327],[104.155909,32.711473],[104.182786,32.663431],[104.177634,32.607054],[104.168451,32.579377],[104.174835,32.531345],[104.162292,32.521332],[104.144486,32.473754],[104.0951,32.467694],[104.132279,32.492094],[104.129368,32.530457],[104.084237,32.569127],[104.068335,32.608426],[104.065871,32.631013],[104.035634,32.651578],[104.007973,32.641578],[103.993303,32.647788],[103.922415,32.635771],[103.890387,32.638997],[103.877508,32.621333],[103.853095,32.61367],[103.84492,32.584058],[103.906961,32.51051],[103.902817,32.496617],[103.914576,32.432699],[103.889155,32.364852],[103.904497,32.347053],[103.898002,32.341227],[103.921295,32.315411],[103.960155,32.304564],[103.981768,32.305617],[104.022756,32.265214],[104.033507,32.248691],[104.066655,32.249258],[104.075838,32.237513],[104.131048,32.223011],[104.135751,32.234677],[104.162292,32.250473],[104.159828,32.25995],[104.182114,32.308936],[104.211455,32.298412],[104.209439,32.285053],[104.247515,32.24942],[104.257481,32.214746],[104.221757,32.215394],[104.18189,32.196593],[104.158821,32.176491],[104.156581,32.158899],[104.142134,32.149655],[104.152885,32.125893],[104.129032,32.140248],[104.100587,32.125001],[104.048961,32.131408],[103.994983,32.118917],[103.974713,32.140897],[103.938877,32.146817],[103.922527,32.143087],[103.897442,32.155736],[103.850743,32.161331],[103.855111,32.126704],[103.826778,32.130354],[103.82689,32.114375],[103.811995,32.097987],[103.824874,32.07056],[103.817147,32.054732],[103.795869,32.045965],[103.758241,31.997894],[103.754882,31.964342],[103.763617,31.946384],[103.817931,31.939801],[103.845704,31.921187],[103.876836,31.917854],[103.886131,31.929234],[103.920623,31.942239],[103.957691,31.903545],[103.975497,31.85605],[104.01738,31.862232],[104.030707,31.846938],[104.046497,31.849297],[104.061055,31.829038],[104.080093,31.838639],[104.127576,31.828712],[104.132951,31.815936],[104.152213,31.815855],[104.169795,31.779876],[104.171027,31.732317],[104.147734,31.727104],[104.142694,31.715454],[104.103163,31.710321],[104.09398,31.693535],[104.116937,31.677724],[104.098459,31.648622],[104.102715,31.630602],[104.132727,31.605319],[104.146054,31.564934],[104.16106,31.55612],[104.152325,31.541755],[104.155685,31.519061],[104.170579,31.512366],[104.185586,31.520286],[104.202944,31.51457],[104.236428,31.463608],[104.27092,31.45936],[104.285702,31.436318],[104.311011,31.427738],[104.326914,31.399294],[104.347407,31.381798],[104.358158,31.386376],[104.37574,31.373784],[104.387051,31.382861],[104.418295,31.374847],[104.478545,31.385068],[104.477313,31.405588],[104.496911,31.407795],[104.523676,31.44261],[104.585045,31.402482],[104.590532,31.375665],[104.586165,31.357674],[104.656829,31.33109],[104.658172,31.311127],[104.670827,31.299998],[104.677434,31.266849],[104.697256,31.274298],[104.724917,31.271351],[104.731524,31.281174],[104.74877,31.275117],[104.741939,31.232623],[104.713942,31.216079],[104.719654,31.16266],[104.743507,31.167168],[104.756721,31.146104],[104.757393,31.144219],[104.762321,31.132004],[104.788974,31.130283],[104.791885,31.118394],[104.774751,31.099616],[104.80678,31.067135],[104.819882,31.064182],[104.82593,31.023564],[104.83836,31.013878],[104.82593,30.997625],[104.846311,30.981368],[104.85471,30.959442],[104.841496,30.946465],[104.870165,30.946465],[104.875652,30.937757],[104.876772,30.937347],[104.891554,30.936607],[104.894578,30.936936],[104.903649,30.943015],[104.904769,30.943425],[104.931646,30.945808],[104.947436,30.912124],[104.945308,30.897496],[104.967482,30.894949],[104.960427,30.865029],[104.992007,30.870125],[104.987192,30.843076],[104.998502,30.805901],[105.025267,30.781878],[105.07051,30.771756],[105.081149,30.755873],[105.115865,30.759247],[105.118329,30.750276],[105.156517,30.732496],[105.157972,30.706313],[105.168723,30.706395],[105.215198,30.734718],[105.243979,30.726074],[105.248682,30.739164],[105.271976,30.751428],[105.260441,30.822845],[105.232332,30.846283],[105.228636,30.877359],[105.200192,30.886154],[105.194256,30.897003],[105.208815,30.906207],[105.177346,30.960181],[105.193808,30.964698],[105.194704,30.992042],[105.174771,31.045967],[105.189889,31.054993],[105.199968,31.075995],[105.193248,31.08592],[105.223933,31.107653],[105.241179,31.101831],[105.296837,31.106341],[105.344431,31.125938],[105.35395,31.160611],[105.381275,31.152907],[105.389338,31.112081],[105.410728,31.07255],[105.42831,31.075749],[105.453955,31.060162],[105.474225,31.06369],[105.489903,31.035874],[105.504462,31.026518],[105.534362,31.027011],[105.546009,31.013632],[105.565831,31.011252],[105.573334,30.98884],[105.595843,30.972582],[105.618689,30.977591],[105.613873,30.991303],[105.633807,31.003289],[105.65822,30.999923],[105.663372,31.01749],[105.686665,31.016341],[105.714102,31.039321],[105.708727,31.071237],[105.721717,31.084197],[105.712198,31.09691],[105.726197,31.110769],[105.716678,31.130365],[105.721381,31.150366],[105.707047,31.169216],[105.674346,31.171757],[105.674682,31.249492],[105.647805,31.257598],[105.637615,31.283548],[105.616673,31.295579],[105.599091,31.288704],[105.594163,31.299834],[105.609058,31.325527],[105.606482,31.339598],[105.629775,31.345896],[105.64243,31.371168],[105.641646,31.394797],[105.620928,31.406651],[105.612193,31.39635],[105.591252,31.39725],[105.57255,31.382043],[105.56863,31.403136],[105.551048,31.392753],[105.533018,31.401582],[105.524059,31.391364],[105.49875,31.402482],[105.481168,31.424224],[105.486992,31.443918],[105.501662,31.454866],[105.471313,31.485826],[105.458211,31.474717],[105.441973,31.480517],[105.462802,31.498974],[105.459219,31.52698]]]]}},{"type":"Feature","properties":{"adcode":510800,"name":"广元市","center":[105.829757,32.433668],"centroid":[105.78583,32.26157],"childrenNum":7,"level":"city","parent":{"adcode":510000},"subFeatureIndex":6,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.459219,31.52698],[105.494719,31.550326],[105.493711,31.551468],[105.498414,31.574155],[105.529771,31.574644],[105.53537,31.564771],[105.579493,31.565668],[105.599203,31.581009],[105.60805,31.551631],[105.618353,31.55359],[105.622496,31.58419],[105.639518,31.587617],[105.633247,31.60067],[105.653517,31.61372],[105.657884,31.601975],[105.684649,31.608908],[105.69932,31.649845],[105.723845,31.663623],[105.726085,31.726615],[105.749378,31.718794],[105.76864,31.735412],[105.780735,31.712684],[105.816011,31.677643],[105.817914,31.66778],[105.847143,31.667047],[105.838072,31.65115],[105.845799,31.632559],[105.865285,31.614781],[105.885779,31.630521],[105.881635,31.648052],[105.910528,31.625791],[105.929902,31.649193],[105.925086,31.664764],[105.958235,31.672426],[105.977496,31.662482],[106.007173,31.684734],[106.032482,31.687586],[106.048385,31.698098],[106.078061,31.697202],[106.068318,31.708447],[106.10225,31.73248],[106.111993,31.758543],[106.128568,31.767174],[106.12364,31.792006],[106.110538,31.790785],[106.130359,31.829282],[106.138646,31.811297],[106.153765,31.806576],[106.188481,31.821796],[106.199232,31.818622],[106.194528,31.785901],[106.211326,31.770757],[106.24817,31.7824],[106.262057,31.773851],[106.275271,31.79689],[106.270456,31.810972],[106.292293,31.80739],[106.310435,31.825539],[106.327345,31.829689],[106.33552,31.848484],[106.361277,31.846287],[106.384235,31.801693],[106.39577,31.805681],[106.406296,31.808286],[106.416039,31.83156],[106.406408,31.874189],[106.424662,31.889803],[106.408984,31.902081],[106.427462,31.915009],[106.419847,31.917529],[106.426678,31.923219],[106.428694,31.922813],[106.446052,31.943295],[106.463522,31.94167],[106.464754,31.954591],[106.445492,31.977179],[106.482112,31.977098],[106.493087,32.006016],[106.508765,32.024775],[106.501038,32.048969],[106.519628,32.050186],[106.517836,32.068531],[106.533514,32.08184],[106.559159,32.082733],[106.535194,32.098474],[106.567558,32.128407],[106.556919,32.1756],[106.564647,32.227548],[106.594547,32.23727],[106.666219,32.249663],[106.674842,32.272664],[106.688393,32.266267],[106.718405,32.269263],[106.71695,32.294607],[106.755361,32.285296],[106.776191,32.296874],[106.745058,32.322938],[106.737779,32.31533],[106.725909,32.336939],[106.688953,32.348024],[106.691528,32.404159],[106.684697,32.418066],[106.689849,32.453633],[106.674842,32.486196],[106.649421,32.50421],[106.65838,32.566221],[106.652109,32.590756],[106.658044,32.622463],[106.645278,32.63682],[106.64035,32.687294],[106.629375,32.681248],[106.588612,32.688584],[106.566774,32.675847],[106.517276,32.668027],[106.498126,32.64932],[106.472929,32.650368],[106.451651,32.660125],[106.450979,32.640207],[106.420519,32.616655],[106.38905,32.626738],[106.383227,32.646578],[106.351199,32.671897],[106.305508,32.679636],[106.278855,32.670687],[106.256457,32.693259],[106.17437,32.697611],[106.171795,32.709136],[106.153653,32.705751],[106.145366,32.720417],[106.119944,32.719611],[106.062047,32.7673],[106.065519,32.783486],[106.094747,32.795966],[106.093627,32.823737],[106.069998,32.824059],[106.046705,32.852224],[106.021732,32.857534],[106.011541,32.829693],[105.99519,32.828003],[105.969321,32.849005],[105.927214,32.825991],[105.89317,32.838464],[105.857782,32.827439],[105.850727,32.818103],[105.831129,32.826071],[105.816906,32.790411],[105.82273,32.771649],[105.779615,32.750225],[105.768752,32.767542],[105.750722,32.767945],[105.73594,32.75385],[105.719253,32.75973],[105.678042,32.726541],[105.649261,32.718725],[105.625408,32.702044],[105.596403,32.699303],[105.585204,32.729119],[105.556312,32.732019],[105.55788,32.752964],[105.56807,32.758763],[105.554744,32.773985],[105.556312,32.792021],[105.535818,32.789847],[105.524507,32.847718],[105.495503,32.873221],[105.486768,32.92139],[105.456307,32.932645],[105.42551,32.931117],[105.41308,32.918898],[105.407816,32.885768],[105.380827,32.878771],[105.399753,32.829049],[105.427526,32.784292],[105.425174,32.774951],[105.453283,32.767623],[105.459443,32.7524],[105.448916,32.732744],[105.425398,32.733953],[105.394266,32.714293],[105.365597,32.710425],[105.346895,32.682699],[105.308708,32.67109],[105.297733,32.657061],[105.261785,32.653191],[105.241179,32.668914],[105.219677,32.666334],[105.215086,32.63682],[105.186865,32.62585],[105.184737,32.617381],[105.143862,32.601245],[105.110826,32.594145],[105.095931,32.6077],[105.079357,32.637223],[105.030195,32.650449],[105.014852,32.640127],[104.971961,32.632948],[104.927726,32.60891],[104.881811,32.601164],[104.873636,32.623027],[104.845751,32.653916],[104.820666,32.662947],[104.795917,32.643514],[104.766016,32.645449],[104.739587,32.635449],[104.696808,32.673509],[104.668027,32.662544],[104.635775,32.668511],[104.617745,32.627464],[104.618977,32.600842],[104.634207,32.597211],[104.651117,32.579619],[104.655933,32.56049],[104.709687,32.553952],[104.745971,32.536351],[104.754818,32.52642],[104.750002,32.505341],[104.759745,32.493871],[104.749218,32.464623],[104.761649,32.445955],[104.755938,32.436336],[104.775423,32.414913],[104.773856,32.400116],[104.804316,32.374155],[104.822458,32.370434],[104.840712,32.35118],[104.856278,32.357329],[104.884611,32.355144],[104.911712,32.326175],[104.940381,32.333621],[104.974649,32.334592],[104.964458,32.297359],[104.976553,32.293069],[105.00007,32.266429],[104.995255,32.247557],[105.032994,32.265133],[105.044865,32.287563],[105.082605,32.283596],[105.08742,32.30335],[105.112729,32.310797],[105.176674,32.302621],[105.208815,32.306831],[105.218894,32.316059],[105.247562,32.32051],[105.254954,32.300679],[105.238043,32.287401],[105.254394,32.271611],[105.268504,32.27809],[105.27052,32.263027],[105.252826,32.236297],[105.262233,32.225198],[105.240395,32.204292],[105.273096,32.193189],[105.251706,32.16725],[105.275111,32.15598],[105.28575,32.139762],[105.262569,32.126623],[105.286198,32.108777],[105.252602,32.082651],[105.250026,32.033138],[105.26436,32.031514],[105.25193,31.982866],[105.235692,32.016492],[105.215198,32.004229],[105.208591,32.0117],[105.194144,31.996025],[105.174211,31.999518],[105.187761,31.983029],[105.185185,31.965399],[105.205343,31.945652],[105.18317,31.91135],[105.203327,31.90509],[105.223261,31.882078],[105.205231,31.837094],[105.243195,31.830014],[105.251482,31.816587],[105.243755,31.795181],[105.262233,31.77841],[105.264137,31.790541],[105.288774,31.793716],[105.3077,31.771327],[105.311395,31.744128],[105.283062,31.740218],[105.284406,31.72914],[105.25361,31.707306],[105.284518,31.700951],[105.315315,31.71855],[105.317555,31.702988],[105.345103,31.677235],[105.333009,31.630276],[105.366269,31.615596],[105.393258,31.618369],[105.395834,31.561588],[105.416215,31.558487],[105.459219,31.52698]]],[[[106.419847,31.917529],[106.427462,31.915009],[106.428694,31.922813],[106.426678,31.923219],[106.419847,31.917529]]]]}},{"type":"Feature","properties":{"adcode":510900,"name":"遂宁市","center":[105.571331,30.513311],"centroid":[105.475016,30.630107],"childrenNum":5,"level":"city","parent":{"adcode":510000},"subFeatureIndex":7,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.066927,30.53587],[105.059983,30.522753],[105.084173,30.494616],[105.076558,30.481741],[105.090444,30.459536],[105.090108,30.442363],[105.075214,30.44228],[105.075102,30.442115],[105.074766,30.44195],[105.074206,30.441785],[105.073758,30.44195],[105.073646,30.442115],[105.068942,30.432949],[105.090444,30.425682],[105.080141,30.412385],[105.079917,30.411724],[105.07387,30.403133],[105.093692,30.395947],[105.097275,30.396194],[105.100635,30.38562],[105.101419,30.385455],[105.126056,30.341491],[105.151365,30.341987],[105.157412,30.323388],[105.197056,30.310738],[105.198064,30.311813],[105.198176,30.311813],[105.19784,30.309994],[105.218894,30.30586],[105.221805,30.287171],[105.258313,30.280307],[105.263913,30.287915],[105.328305,30.303297],[105.343088,30.298087],[105.35843,30.308093],[105.368845,30.278404],[105.380379,30.276916],[105.411064,30.295606],[105.425958,30.259876],[105.444996,30.265997],[105.480944,30.238696],[105.4824,30.223222],[105.521036,30.202613],[105.529323,30.21958],[105.547129,30.212711],[105.557544,30.195826],[105.558887,30.185561],[105.561463,30.183656],[105.579941,30.173473],[105.595171,30.183656],[105.64243,30.186388],[105.655421,30.220822],[105.636271,30.219746],[105.619473,30.234641],[105.625072,30.27584],[105.667179,30.265666],[105.670651,30.254085],[105.723845,30.254747],[105.734932,30.276998],[105.71175,30.282209],[105.714774,30.322809],[105.741875,30.319833],[105.735044,30.336697],[105.756209,30.347112],[105.751842,30.357112],[105.769536,30.375292],[105.760241,30.384546],[105.77032,30.403959],[105.78275,30.403133],[105.791709,30.425434],[105.818026,30.437243],[105.846695,30.410733],[105.846247,30.392394],[105.873796,30.408668],[105.899441,30.405612],[105.901569,30.386363],[105.917023,30.395947],[105.940877,30.372317],[105.967978,30.379258],[105.992055,30.369177],[106.00079,30.376283],[105.987239,30.394047],[105.989815,30.41255],[105.9794,30.427581],[105.963834,30.424691],[105.948268,30.441619],[105.950172,30.452931],[105.971225,30.456151],[105.970665,30.477119],[105.954203,30.514255],[105.945692,30.501383],[105.934045,30.516731],[105.915791,30.508974],[105.927102,30.494038],[105.948828,30.494368],[105.917807,30.466966],[105.885331,30.458875],[105.884099,30.496266],[105.867413,30.497092],[105.860246,30.48496],[105.846807,30.491645],[105.862821,30.51244],[105.877492,30.547419],[105.871332,30.562182],[105.85431,30.565728],[105.82385,30.602995],[105.82329,30.621953],[105.809067,30.625333],[105.813771,30.651372],[105.792717,30.711418],[105.792941,30.759906],[105.782302,30.785086],[105.796749,30.800883],[105.784318,30.823832],[105.755761,30.841267],[105.730564,30.876784],[105.744899,30.879086],[105.73202,30.905714],[105.705927,30.910152],[105.691705,30.933896],[105.65934,30.918697],[105.6599,30.942275],[105.643438,30.948025],[105.618689,30.977591],[105.595843,30.972582],[105.573334,30.98884],[105.565831,31.011252],[105.546009,31.013632],[105.534362,31.027011],[105.504462,31.026518],[105.489903,31.035874],[105.474225,31.06369],[105.453955,31.060162],[105.42831,31.075749],[105.410728,31.07255],[105.389338,31.112081],[105.381275,31.152907],[105.35395,31.160611],[105.344431,31.125938],[105.296837,31.106341],[105.241179,31.101831],[105.223933,31.107653],[105.193248,31.08592],[105.199968,31.075995],[105.189889,31.054993],[105.174771,31.045967],[105.194704,30.992042],[105.193808,30.964698],[105.177346,30.960181],[105.208815,30.906207],[105.194256,30.897003],[105.200192,30.886154],[105.228636,30.877359],[105.232332,30.846283],[105.260441,30.822845],[105.271976,30.751428],[105.248682,30.739164],[105.243979,30.726074],[105.215198,30.734718],[105.168723,30.706395],[105.174547,30.697666],[105.161108,30.672545],[105.146998,30.669168],[105.142742,30.653185],[105.153829,30.640249],[105.130088,30.624756],[105.117657,30.602913],[105.094812,30.584198],[105.079021,30.543129],[105.066927,30.53587]]],[[[105.093916,30.395616],[105.094364,30.396277],[105.094364,30.396277],[105.093804,30.395864],[105.093916,30.395616]]],[[[105.075102,30.442115],[105.075214,30.44228],[105.073646,30.442115],[105.073758,30.44195],[105.074206,30.441785],[105.074766,30.44195],[105.075102,30.442115]]],[[[105.198176,30.311813],[105.198064,30.311813],[105.197056,30.310738],[105.19784,30.309994],[105.198176,30.311813]]]]}},{"type":"Feature","properties":{"adcode":511000,"name":"内江市","center":[105.066138,29.58708],"centroid":[104.913978,29.638381],"childrenNum":5,"level":"city","parent":{"adcode":510000},"subFeatureIndex":8,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.467234,30.034689],[104.455363,30.000606],[104.479217,29.98891],[104.461859,29.950579],[104.481792,29.942363],[104.473281,29.93481],[104.488512,29.92153],[104.490079,29.904761],[104.503294,29.897454],[104.483584,29.854104],[104.483248,29.852194],[104.477425,29.811317],[104.50307,29.807411],[104.486608,29.786965],[104.470146,29.785386],[104.457155,29.748223],[104.442373,29.733837],[104.41572,29.732257],[104.39769,29.74839],[104.372157,29.734586],[104.360286,29.737746],[104.336769,29.722276],[104.350319,29.70173],[104.321314,29.709966],[104.3081,29.695075],[104.269576,29.632491],[104.280551,29.613925],[104.309332,29.607347],[104.334193,29.583113],[104.340688,29.565704],[104.383579,29.584196],[104.381787,29.607264],[104.39489,29.621002],[104.421767,29.616423],[104.442933,29.600102],[104.474065,29.609262],[104.488847,29.601435],[104.493551,29.582613],[104.482912,29.562872],[104.501726,29.549958],[104.529611,29.518876],[104.53465,29.456601],[104.510013,29.456767],[104.535658,29.418566],[104.543945,29.441005],[104.558728,29.431913],[104.569814,29.441172],[104.587956,29.422987],[104.619761,29.444758],[104.652461,29.411141],[104.673403,29.398709],[104.674299,29.38227],[104.704423,29.372255],[104.710919,29.361404],[104.745411,29.36324],[104.738132,29.381936],[104.759969,29.374759],[104.766128,29.406469],[104.751458,29.402631],[104.741155,29.432414],[104.750786,29.453598],[104.777327,29.448177],[104.786398,29.457518],[104.808796,29.457018],[104.833657,29.430495],[104.848775,29.467858],[104.873972,29.47086],[104.871957,29.459019],[104.917647,29.434332],[104.937133,29.445425],[104.961882,29.416647],[104.993127,29.438669],[105.026947,29.439587],[105.020564,29.454432],[105.04061,29.461938],[105.030643,29.472527],[105.044305,29.480865],[105.067823,29.454349],[105.063119,29.442923],[105.084285,29.42232],[105.079469,29.406886],[105.046881,29.408721],[105.035346,29.382937],[105.063679,29.364659],[105.072526,29.336359],[105.108922,29.315568],[105.120121,29.302205],[105.113961,29.284999],[105.134903,29.257429],[105.160548,29.262776],[105.203999,29.23963],[105.195488,29.222078],[105.217998,29.20561],[105.23558,29.215475],[105.266936,29.188638],[105.281495,29.188471],[105.287542,29.218233],[105.318226,29.263612],[105.339392,29.281741],[105.364141,29.291932],[105.364141,29.292934],[105.364813,29.293519],[105.365149,29.292684],[105.366493,29.287839],[105.368957,29.287839],[105.368845,29.286586],[105.368621,29.285918],[105.383403,29.281991],[105.386203,29.284832],[105.387771,29.287254],[105.387659,29.287588],[105.387883,29.287588],[105.389002,29.286502],[105.395274,29.308553],[105.420135,29.314399],[105.418567,29.352305],[105.437045,29.364743],[105.432006,29.378848],[105.443092,29.399126],[105.427302,29.4189],[105.372988,29.420902],[105.399193,29.439003],[105.387995,29.455099],[105.362014,29.454683],[105.360446,29.444258],[105.324498,29.448594],[105.337824,29.458852],[105.32125,29.476029],[105.318898,29.512375],[105.294373,29.53396],[105.289782,29.552624],[105.296725,29.571202],[105.317667,29.578115],[105.311283,29.593357],[105.322258,29.610095],[105.335473,29.595189],[105.346783,29.620253],[105.380827,29.628246],[105.37758,29.643313],[105.393146,29.650721],[105.389674,29.67652],[105.400537,29.671611],[105.423943,29.687587],[105.416775,29.721112],[105.393482,29.747226],[105.405017,29.78896],[105.383179,29.796856],[105.373548,29.824612],[105.360446,29.83425],[105.35395,29.811566],[105.332225,29.81115],[105.319122,29.821953],[105.297733,29.82054],[105.288662,29.798269],[105.252714,29.796025],[105.233564,29.804087],[105.238491,29.817549],[105.217326,29.8448],[105.175554,29.846711],[105.125608,29.830677],[105.0947,29.848954],[105.080589,29.88284],[105.100747,29.885498],[105.097051,29.904927],[105.064015,29.922526],[105.074654,29.944023],[105.049345,29.947508],[105.0209,29.976798],[104.993687,29.977047],[104.976441,29.993223],[104.95158,29.99256],[104.932766,29.977296],[104.924367,29.946844],[104.903649,29.941367],[104.927166,29.936221],[104.902417,29.907168],[104.905441,29.904678],[104.905217,29.900692],[104.899505,29.902353],[104.8789,29.912897],[104.863333,29.890895],[104.828057,29.885498],[104.839144,29.866812],[104.805436,29.8752],[104.793341,29.866895],[104.809132,29.853024],[104.791997,29.849037],[104.780575,29.861413],[104.798493,29.880183],[104.748322,29.909244],[104.743619,29.933233],[104.730628,29.948504],[104.691769,29.954645],[104.685049,29.964436],[104.672955,29.944189],[104.709127,29.933233],[104.689865,29.920036],[104.687289,29.90227],[104.673739,29.905674],[104.64395,29.957383],[104.631184,29.940952],[104.60677,29.932901],[104.592548,29.950164],[104.577989,29.951076],[104.568471,29.995546],[104.546297,30.008485],[104.533195,29.999278],[104.5239,30.027227],[104.498142,30.035933],[104.499486,30.022666],[104.468578,30.026563],[104.467234,30.034689]]],[[[105.387883,29.287588],[105.387659,29.287588],[105.387771,29.287254],[105.386203,29.284832],[105.389002,29.286502],[105.387883,29.287588]]],[[[105.364813,29.293519],[105.364141,29.292934],[105.364141,29.291932],[105.365149,29.292684],[105.364813,29.293519]]],[[[105.368957,29.287839],[105.366493,29.287839],[105.368621,29.285918],[105.368845,29.286586],[105.368957,29.287839]]],[[[104.905441,29.904678],[104.902417,29.907168],[104.899505,29.902353],[104.905217,29.900692],[104.905441,29.904678]]]]}},{"type":"Feature","properties":{"adcode":511100,"name":"乐山市","center":[103.761263,29.582024],"centroid":[103.571823,29.214311],"childrenNum":11,"level":"city","parent":{"adcode":510000},"subFeatureIndex":9,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.17685,29.195745],[104.150645,29.194157],[104.150981,29.22726],[104.14359,29.256844],[104.118393,29.236454],[104.109658,29.241886],[104.116377,29.263946],[104.14639,29.283829],[104.139447,29.307467],[104.09174,29.315317],[104.07651,29.323584],[104.083229,29.348298],[104.105626,29.338864],[104.135415,29.338781],[104.142022,29.355644],[104.163412,29.364158],[104.160836,29.379933],[104.141126,29.374508],[104.134967,29.399043],[104.133175,29.39946],[104.132503,29.399627],[104.131272,29.400378],[104.100811,29.382186],[104.090172,29.391616],[104.0923,29.416397],[104.105962,29.414895],[104.098347,29.437168],[104.058256,29.425907],[104.052656,29.456684],[104.064191,29.472361],[104.08838,29.461687],[104.128472,29.498289],[104.14919,29.472277],[104.150309,29.472027],[104.166324,29.495955],[104.165988,29.496538],[104.151093,29.52221],[104.135079,29.52096],[104.160948,29.541876],[104.166884,29.55729],[104.139895,29.589693],[104.16722,29.597854],[104.182226,29.633407],[104.212239,29.61251],[104.251098,29.623084],[104.249754,29.636154],[104.240347,29.64323],[104.228477,29.676187],[104.203727,29.665702],[104.187489,29.686339],[104.191297,29.705058],[104.157477,29.716371],[104.152885,29.707304],[104.12612,29.717452],[104.116937,29.733421],[104.089388,29.743733],[104.062623,29.777821],[104.088716,29.813643],[104.069231,29.828517],[104.043809,29.830677],[104.05624,29.84696],[104.050081,29.868473],[104.003606,29.869968],[103.982888,29.8502],[103.967658,29.85643],[103.951084,29.841727],[103.962395,29.827603],[103.927678,29.825526],[103.934622,29.804668],[103.903265,29.783391],[103.912784,29.775826],[103.893522,29.742486],[103.85623,29.746976],[103.842344,29.731093],[103.822522,29.73076],[103.799229,29.714042],[103.765073,29.706555],[103.755442,29.720197],[103.7317,29.721944],[103.704711,29.714375],[103.705607,29.737247],[103.688025,29.759365],[103.703368,29.771587],[103.747267,29.789957],[103.741107,29.811067],[103.728789,29.816053],[103.729125,29.849286],[103.692729,29.898866],[103.676715,29.90393],[103.677834,29.919621],[103.648158,29.92817],[103.64211,29.91796],[103.607954,29.909244],[103.590484,29.91904],[103.590484,29.902021],[103.571782,29.895462],[103.584661,29.880847],[103.558008,29.868058],[103.513885,29.87902],[103.533595,29.860666],[103.533371,29.84156],[103.518028,29.843388],[103.485776,29.814807],[103.464386,29.82162],[103.432918,29.820623],[103.430566,29.787879],[103.439413,29.770922],[103.416904,29.774829],[103.394058,29.805416],[103.38062,29.792617],[103.359118,29.799516],[103.333473,29.794196],[103.315667,29.771753],[103.315779,29.741488],[103.299429,29.727516],[103.304356,29.706389],[103.295957,29.694409],[103.303684,29.677935],[103.321826,29.683094],[103.337057,29.672776],[103.352959,29.698735],[103.361694,29.661791],[103.337281,29.651803],[103.338737,29.63424],[103.298869,29.599853],[103.267848,29.596105],[103.2702,29.573701],[103.256426,29.55679],[103.27132,29.53221],[103.259673,29.511375],[103.294166,29.506874],[103.277703,29.485617],[103.258889,29.478447],[103.204464,29.483867],[103.186434,29.474278],[103.18005,29.430161],[103.157541,29.425573],[103.126968,29.440421],[103.090012,29.425573],[103.054736,29.446009],[103.014869,29.448011],[102.983512,29.418483],[102.975449,29.397791],[102.998519,29.368332],[102.980377,29.340367],[102.979817,29.320578],[103.003894,29.287171],[103.031779,29.27982],[103.02002,29.250744],[102.962795,29.250828],[102.974553,29.222162],[102.944877,29.19006],[102.928639,29.127332],[102.931326,29.112941],[102.970074,29.065068],[102.957755,29.052008],[102.922143,29.037941],[102.909041,29.021612],[102.913632,28.999918],[102.942413,28.944115],[102.946221,28.920058],[102.928079,28.896415],[102.941741,28.860521],[102.926287,28.820168],[102.925279,28.801873],[102.944205,28.76645],[102.938157,28.740001],[102.962571,28.681118],[102.990904,28.672379],[102.996503,28.679941],[103.032451,28.665824],[103.051265,28.66969],[103.066047,28.688511],[103.070527,28.73681],[103.107482,28.771907],[103.112522,28.812364],[103.153957,28.82923],[103.189905,28.827887],[103.225069,28.803971],[103.23862,28.813538],[103.270984,28.805986],[103.3085,28.761749],[103.334817,28.743108],[103.333585,28.721861],[103.31074,28.702037],[103.30626,28.681958],[103.287334,28.655319],[103.272776,28.613121],[103.242875,28.59336],[103.246571,28.549791],[103.253962,28.541209],[103.287782,28.533048],[103.299541,28.521604],[103.313875,28.485581],[103.339968,28.443483],[103.35699,28.440872],[103.370205,28.423354],[103.388347,28.420659],[103.43303,28.452915],[103.441541,28.477331],[103.438629,28.500059],[103.421831,28.511506],[103.42967,28.531786],[103.479057,28.547099],[103.504142,28.560306],[103.531803,28.597649],[103.530571,28.612196],[103.560696,28.606899],[103.585893,28.614886],[103.61389,28.597313],[103.614562,28.613373],[103.636623,28.624134],[103.685674,28.63481],[103.722853,28.687923],[103.724869,28.717577],[103.71591,28.73849],[103.7018,28.746719],[103.712775,28.757299],[103.746483,28.764016],[103.76944,28.799355],[103.761041,28.815888],[103.788478,28.822433],[103.803708,28.83611],[103.830473,28.845338],[103.851079,28.832166],[103.914912,28.776273],[103.938317,28.764268],[103.956459,28.787521],[103.979977,28.792137],[104.003494,28.853475],[104.024996,28.84408],[104.034402,28.855908],[104.030483,28.884843],[104.084685,28.914441],[104.076174,28.920897],[104.061839,28.965401],[104.072478,28.967496],[104.107082,28.95082],[104.122985,28.963976],[104.121641,28.998243],[104.139671,29.024543],[104.142358,29.070593],[104.161732,29.117041],[104.175395,29.129591],[104.167891,29.15042],[104.194097,29.163719],[104.174835,29.183789],[104.17685,29.195745]]],[[[104.131272,29.400378],[104.132503,29.399627],[104.133175,29.39946],[104.134967,29.399043],[104.131272,29.400378]]]]}},{"type":"Feature","properties":{"adcode":511300,"name":"南充市","center":[106.082974,30.795281],"centroid":[106.207711,31.195136],"childrenNum":9,"level":"city","parent":{"adcode":510000},"subFeatureIndex":10,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.964778,31.250802],[106.947532,31.263656],[106.94574,31.264802],[106.964442,31.291077],[106.944172,31.288949],[106.934317,31.309081],[106.946748,31.328963],[106.917855,31.377464],[106.864549,31.400683],[106.883251,31.420873],[106.871268,31.426512],[106.846071,31.456909],[106.842151,31.503139],[106.815498,31.515142],[106.821098,31.547877],[106.787166,31.531307],[106.766224,31.537592],[106.7688,31.5673],[106.722101,31.563383],[106.718965,31.571952],[106.693656,31.56118],[106.673386,31.569177],[106.647517,31.591125],[106.632175,31.567056],[106.644942,31.544694],[106.626464,31.510814],[106.607874,31.50665],[106.566886,31.518244],[106.566438,31.545755],[106.536986,31.572033],[106.516604,31.575052],[106.492079,31.567382],[106.484016,31.584517],[106.460722,31.586312],[106.456803,31.633049],[106.438661,31.655715],[106.412568,31.65702],[106.400025,31.681229],[106.366429,31.696632],[106.382667,31.720423],[106.378747,31.732969],[106.405288,31.725637],[106.40764,31.755204],[106.42455,31.755448],[106.406632,31.777026],[106.39577,31.805681],[106.384235,31.801693],[106.361277,31.846287],[106.33552,31.848484],[106.327345,31.829689],[106.310435,31.825539],[106.292293,31.80739],[106.270456,31.810972],[106.275271,31.79689],[106.262057,31.773851],[106.24817,31.7824],[106.211326,31.770757],[106.194528,31.785901],[106.199232,31.818622],[106.188481,31.821796],[106.153765,31.806576],[106.138646,31.811297],[106.130359,31.829282],[106.110538,31.790785],[106.12364,31.792006],[106.128568,31.767174],[106.111993,31.758543],[106.10225,31.73248],[106.068318,31.708447],[106.078061,31.697202],[106.048385,31.698098],[106.032482,31.687586],[106.007173,31.684734],[105.977496,31.662482],[105.958235,31.672426],[105.925086,31.664764],[105.929902,31.649193],[105.910528,31.625791],[105.881635,31.648052],[105.885779,31.630521],[105.865285,31.614781],[105.845799,31.632559],[105.838072,31.65115],[105.847143,31.667047],[105.817914,31.66778],[105.816011,31.677643],[105.780735,31.712684],[105.76864,31.735412],[105.749378,31.718794],[105.726085,31.726615],[105.723845,31.663623],[105.69932,31.649845],[105.684649,31.608908],[105.657884,31.601975],[105.653517,31.61372],[105.633247,31.60067],[105.639518,31.587617],[105.622496,31.58419],[105.618353,31.55359],[105.60805,31.551631],[105.599203,31.581009],[105.579493,31.565668],[105.53537,31.564771],[105.529771,31.574644],[105.498414,31.574155],[105.493711,31.551468],[105.494047,31.551631],[105.495055,31.550652],[105.494719,31.550326],[105.459219,31.52698],[105.462802,31.498974],[105.441973,31.480517],[105.458211,31.474717],[105.471313,31.485826],[105.501662,31.454866],[105.486992,31.443918],[105.481168,31.424224],[105.49875,31.402482],[105.524059,31.391364],[105.533018,31.401582],[105.551048,31.392753],[105.56863,31.403136],[105.57255,31.382043],[105.591252,31.39725],[105.612193,31.39635],[105.620928,31.406651],[105.641646,31.394797],[105.64243,31.371168],[105.629775,31.345896],[105.606482,31.339598],[105.609058,31.325527],[105.594163,31.299834],[105.599091,31.288704],[105.616673,31.295579],[105.637615,31.283548],[105.647805,31.257598],[105.674682,31.249492],[105.674346,31.171757],[105.707047,31.169216],[105.721381,31.150366],[105.716678,31.130365],[105.726197,31.110769],[105.712198,31.09691],[105.721717,31.084197],[105.708727,31.071237],[105.714102,31.039321],[105.686665,31.016341],[105.663372,31.01749],[105.65822,30.999923],[105.633807,31.003289],[105.613873,30.991303],[105.618689,30.977591],[105.643438,30.948025],[105.6599,30.942275],[105.65934,30.918697],[105.691705,30.933896],[105.705927,30.910152],[105.73202,30.905714],[105.744899,30.879086],[105.730564,30.876784],[105.755761,30.841267],[105.784318,30.823832],[105.796749,30.800883],[105.782302,30.785086],[105.792941,30.759906],[105.792717,30.711418],[105.813771,30.651372],[105.809067,30.625333],[105.82329,30.621953],[105.82385,30.602995],[105.85431,30.565728],[105.871332,30.562182],[105.877492,30.547419],[105.862821,30.51244],[105.846807,30.491645],[105.860246,30.48496],[105.867413,30.497092],[105.884099,30.496266],[105.885331,30.458875],[105.917807,30.466966],[105.916351,30.469442],[105.910528,30.480668],[105.917023,30.490407],[105.923966,30.49313],[105.927102,30.494038],[105.915791,30.508974],[105.934045,30.516731],[105.945692,30.501383],[105.954203,30.514255],[105.970665,30.477119],[105.980856,30.488344],[106.024755,30.482071],[106.028003,30.505261],[106.039426,30.518216],[106.066638,30.491727],[106.093851,30.504189],[106.112777,30.503198],[106.123192,30.544449],[106.157796,30.598049],[106.180194,30.595658],[106.192176,30.612969],[106.178962,30.620058],[106.166643,30.648324],[106.217822,30.677652],[106.225773,30.695196],[106.237531,30.687454],[106.238091,30.706807],[106.217486,30.704666],[106.207631,30.722863],[106.250746,30.719323],[106.286806,30.70516],[106.300468,30.686218],[106.354558,30.722122],[106.366877,30.712736],[106.364301,30.697337],[106.38905,30.679876],[106.403609,30.695525],[106.423094,30.693219],[106.420855,30.708207],[106.441124,30.727144],[106.448068,30.753321],[106.466546,30.760893],[106.487599,30.787966],[106.507757,30.784511],[106.506301,30.762869],[106.528923,30.732496],[106.542809,30.743033],[106.587604,30.73974],[106.584244,30.756861],[106.618401,30.766572],[106.626464,30.789365],[106.616497,30.801705],[106.617281,30.82778],[106.629599,30.821036],[106.675178,30.838882],[106.675514,30.867084],[106.689177,30.883606],[106.666443,30.909987],[106.678986,30.922887],[106.707207,30.915903],[106.723221,30.946629],[106.740467,30.951147],[106.73162,30.973649],[106.771487,30.96864],[106.784814,30.972336],[106.78739,30.995901],[106.803292,30.993684],[106.819754,31.011662],[106.830505,31.05286],[106.86914,31.081163],[106.894786,31.08756],[106.909008,31.107653],[106.935325,31.116591],[106.931965,31.133726],[106.951003,31.161267],[106.938349,31.1761],[106.939917,31.207151],[106.958282,31.228283],[106.964778,31.250802]]],[[[105.927102,30.494038],[105.923966,30.49313],[105.917023,30.490407],[105.910528,30.480668],[105.916351,30.469442],[105.917807,30.466966],[105.948828,30.494368],[105.927102,30.494038]]],[[[105.494047,31.551631],[105.493711,31.551468],[105.494719,31.550326],[105.495055,31.550652],[105.494047,31.551631]]]]}},{"type":"Feature","properties":{"adcode":511400,"name":"眉山市","center":[103.831788,30.048318],"centroid":[103.754827,29.924767],"childrenNum":6,"level":"city","parent":{"adcode":510000},"subFeatureIndex":11,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.975449,29.397791],[102.983512,29.418483],[103.014869,29.448011],[103.054736,29.446009],[103.090012,29.425573],[103.126968,29.440421],[103.157541,29.425573],[103.18005,29.430161],[103.186434,29.474278],[103.204464,29.483867],[103.258889,29.478447],[103.277703,29.485617],[103.294166,29.506874],[103.259673,29.511375],[103.27132,29.53221],[103.256426,29.55679],[103.2702,29.573701],[103.267848,29.596105],[103.298869,29.599853],[103.338737,29.63424],[103.337281,29.651803],[103.361694,29.661791],[103.352959,29.698735],[103.337057,29.672776],[103.321826,29.683094],[103.303684,29.677935],[103.295957,29.694409],[103.304356,29.706389],[103.299429,29.727516],[103.315779,29.741488],[103.315667,29.771753],[103.333473,29.794196],[103.359118,29.799516],[103.38062,29.792617],[103.394058,29.805416],[103.416904,29.774829],[103.439413,29.770922],[103.430566,29.787879],[103.432918,29.820623],[103.464386,29.82162],[103.485776,29.814807],[103.518028,29.843388],[103.517916,29.8502],[103.517021,29.85834],[103.533595,29.860666],[103.513885,29.87902],[103.558008,29.868058],[103.584661,29.880847],[103.571782,29.895462],[103.590484,29.902021],[103.590484,29.91904],[103.607954,29.909244],[103.64211,29.91796],[103.648158,29.92817],[103.677834,29.919621],[103.676715,29.90393],[103.692729,29.898866],[103.729125,29.849286],[103.728789,29.816053],[103.741107,29.811067],[103.747267,29.789957],[103.703368,29.771587],[103.688025,29.759365],[103.705607,29.737247],[103.704711,29.714375],[103.7317,29.721944],[103.755442,29.720197],[103.765073,29.706555],[103.799229,29.714042],[103.822522,29.73076],[103.842344,29.731093],[103.85623,29.746976],[103.893522,29.742486],[103.912784,29.775826],[103.903265,29.783391],[103.934622,29.804668],[103.927678,29.825526],[103.962395,29.827603],[103.951084,29.841727],[103.967658,29.85643],[103.982888,29.8502],[104.003606,29.869968],[104.050081,29.868473],[104.05624,29.84696],[104.043809,29.830677],[104.069231,29.828517],[104.088716,29.813643],[104.062623,29.777821],[104.089388,29.743733],[104.116937,29.733421],[104.12612,29.717452],[104.152885,29.707304],[104.157477,29.716371],[104.191297,29.705058],[104.187489,29.686339],[104.203727,29.665702],[104.228477,29.676187],[104.240347,29.64323],[104.249754,29.636154],[104.269576,29.632491],[104.3081,29.695075],[104.321314,29.709966],[104.350319,29.70173],[104.336769,29.722276],[104.360286,29.737746],[104.372157,29.734586],[104.39769,29.74839],[104.41572,29.732257],[104.442373,29.733837],[104.457155,29.748223],[104.470146,29.785386],[104.486608,29.786965],[104.50307,29.807411],[104.477425,29.811317],[104.483248,29.852194],[104.482688,29.852609],[104.483136,29.854104],[104.483584,29.854104],[104.503294,29.897454],[104.490079,29.904761],[104.488512,29.92153],[104.473281,29.93481],[104.481792,29.942363],[104.461859,29.950579],[104.479217,29.98891],[104.455363,30.000606],[104.467234,30.034689],[104.464322,30.049944],[104.479888,30.047374],[104.467234,30.066937],[104.481904,30.086663],[104.461411,30.086663],[104.450212,30.101081],[104.428374,30.089729],[104.41012,30.125521],[104.39881,30.124776],[104.386379,30.161798],[104.358158,30.173638],[104.364541,30.185974],[104.327138,30.204269],[104.315379,30.200792],[104.282231,30.220904],[104.2726,30.217842],[104.264537,30.241592],[104.243259,30.244239],[104.23094,30.256153],[104.243371,30.267403],[104.231836,30.280472],[104.2315,30.282209],[104.232284,30.313798],[104.2016,30.316526],[104.192977,30.329836],[104.17853,30.318262],[104.174051,30.298666],[104.152213,30.265335],[104.150533,30.245646],[104.116601,30.227194],[104.091628,30.24879],[104.047393,30.270381],[104.030035,30.266245],[104.030035,30.266245],[103.998343,30.264508],[103.974713,30.290727],[103.965866,30.316774],[103.959819,30.311565],[103.954331,30.313302],[103.959259,30.320742],[103.93563,30.346203],[103.942237,30.357773],[103.913904,30.353972],[103.910432,30.330663],[103.887699,30.328761],[103.87426,30.348104],[103.845368,30.34331],[103.794749,30.345872],[103.769776,30.332068],[103.75141,30.307927],[103.727893,30.30462],[103.736516,30.285848],[103.718374,30.283201],[103.705271,30.268975],[103.681754,30.269885],[103.693065,30.245894],[103.648046,30.229263],[103.649502,30.199799],[103.628,30.214863],[103.617473,30.195412],[103.597204,30.203524],[103.533819,30.178109],[103.544233,30.161218],[103.533819,30.146643],[103.504142,30.128503],[103.486224,30.104147],[103.474577,30.131237],[103.450948,30.132231],[103.468082,30.114255],[103.462483,30.096027],[103.4505,30.096524],[103.443893,30.117486],[103.439637,30.119474],[103.395178,30.094866],[103.37838,30.095944],[103.372221,30.082105],[103.349599,30.097684],[103.339856,30.074729],[103.312531,30.071745],[103.302341,30.087574],[103.252506,30.040078],[103.225965,29.970659],[103.191249,29.966344],[103.1964,29.944355],[103.176915,29.945931],[103.159781,29.930162],[103.109946,29.915636],[103.093708,29.886992],[103.125064,29.864154],[103.165156,29.77034],[103.143206,29.760862],[103.162916,29.737829],[103.143654,29.730926],[103.153845,29.713293],[103.141303,29.703145],[103.150038,29.672443],[103.1282,29.671527],[103.099083,29.693827],[103.092028,29.683177],[103.052497,29.675522],[103.044546,29.700066],[103.007702,29.72552],[102.996055,29.708302],[102.962011,29.721944],[102.928751,29.711047],[102.938493,29.67677],[102.929646,29.668115],[102.931998,29.61634],[102.914416,29.553208],[102.869957,29.530044],[102.823146,29.46569],[102.879364,29.415896],[102.93211,29.400545],[102.975449,29.397791]]],[[[103.533595,29.860666],[103.517021,29.85834],[103.517916,29.8502],[103.518028,29.843388],[103.533371,29.84156],[103.533595,29.860666]]],[[[103.959259,30.320742],[103.954331,30.313302],[103.959819,30.311565],[103.965866,30.316774],[103.959259,30.320742]]],[[[104.483584,29.854104],[104.483136,29.854104],[104.482688,29.852609],[104.483248,29.852194],[104.483584,29.854104]]]]}},{"type":"Feature","properties":{"adcode":511500,"name":"宜宾市","center":[104.630825,28.760189],"centroid":[104.637629,28.572053],"childrenNum":10,"level":"city","parent":{"adcode":510000},"subFeatureIndex":12,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.781983,28.524549],[103.800685,28.533805],[103.801357,28.561821],[103.837305,28.58453],[103.834841,28.622285],[103.851079,28.667085],[103.8737,28.652798],[103.874708,28.626488],[103.896322,28.619678],[103.909984,28.631196],[103.936749,28.622621],[103.942461,28.603031],[104.0596,28.627665],[104.096108,28.603451],[104.125224,28.637248],[104.170355,28.643048],[104.192529,28.633634],[104.231052,28.635819],[104.241467,28.660782],[104.252666,28.660698],[104.269688,28.635147],[104.296341,28.63439],[104.314819,28.615643],[104.343936,28.640947],[104.37406,28.649352],[104.404857,28.64061],[104.425239,28.62674],[104.417288,28.59807],[104.387723,28.59891],[104.368461,28.58596],[104.356814,28.55568],[104.329601,28.558624],[104.319299,28.538685],[104.287046,28.532543],[104.261961,28.536918],[104.248298,28.528336],[104.248634,28.509654],[104.265433,28.502753],[104.261401,28.482046],[104.27036,28.465881],[104.258377,28.453251],[104.267672,28.42049],[104.254346,28.40895],[104.278423,28.346594],[104.301828,28.32847],[104.29007,28.314727],[104.313923,28.306632],[104.33856,28.33083],[104.35827,28.338923],[104.384811,28.330156],[104.392874,28.291538],[104.408217,28.269862],[104.449316,28.269946],[104.444053,28.259233],[104.462306,28.2416],[104.445956,28.21426],[104.402281,28.202866],[104.404409,28.17712],[104.434982,28.168255],[104.451668,28.17408],[104.444836,28.138193],[104.450996,28.116317],[104.399034,28.087761],[104.395338,28.063847],[104.376524,28.052268],[104.341472,28.057846],[104.304068,28.050746],[104.298805,28.0439],[104.326578,28.025471],[104.356142,28.018453],[104.378764,27.993677],[104.383467,27.968727],[104.401161,27.952315],[104.449652,27.927609],[104.47037,27.905098],[104.497694,27.895787],[104.503294,27.881989],[104.53745,27.886983],[104.558392,27.86658],[104.558952,27.852186],[104.580901,27.842024],[104.608002,27.858198],[104.633647,27.850916],[104.679114,27.882243],[104.743731,27.902051],[104.759633,27.884867],[104.795245,27.900527],[104.829513,27.89985],[104.872964,27.905944],[104.887971,27.914492],[104.891442,27.933025],[104.921119,27.94174],[104.903089,27.960437],[104.929182,27.985051],[104.9471,27.980568],[104.946876,27.994861],[104.974985,28.019891],[104.980808,28.062832],[105.011045,28.06672],[105.059199,28.098154],[105.076782,28.084212],[105.108138,28.081086],[105.144198,28.066636],[105.17701,28.066889],[105.204111,28.073396],[105.220237,28.091901],[105.224493,28.099843],[105.275335,28.134392],[105.350255,28.140811],[105.358094,28.153478],[105.344767,28.185646],[105.348463,28.205314],[105.333121,28.256533],[105.339168,28.280236],[105.331553,28.292634],[105.336928,28.313378],[105.310611,28.339597],[105.306692,28.359321],[105.287654,28.369181],[105.3077,28.371541],[105.32293,28.386371],[105.32013,28.427987],[105.293813,28.435651],[105.295269,28.449041],[105.2311,28.449378],[105.228748,28.449631],[105.191121,28.445757],[105.206687,28.457041],[105.234012,28.49341],[105.237483,28.523455],[105.226285,28.540536],[105.203439,28.548192],[105.207807,28.569055],[105.172083,28.607908],[105.167939,28.65036],[105.201312,28.673555],[105.21139,28.696325],[105.203887,28.709514],[105.219342,28.715813],[105.216878,28.739078],[105.204111,28.746635],[105.240507,28.774846],[105.2311,28.777448],[105.225725,28.807748],[105.21531,28.818405],[105.202879,28.869748],[105.203999,28.896751],[105.177682,28.907148],[105.166483,28.9271],[105.145094,28.942271],[105.126952,28.945288],[105.111162,28.933722],[105.073758,28.936404],[105.017316,28.972104],[105.00511,28.989866],[104.986296,28.991541],[104.969722,29.015749],[104.944636,29.021277],[104.941837,29.058873],[104.902529,29.047738],[104.881475,29.050836],[104.879684,29.024291],[104.861542,29.019685],[104.85751,29.003436],[104.819546,29.001761],[104.811931,28.990704],[104.796701,29.000086],[104.76512,28.998746],[104.744067,28.990369],[104.720214,28.996651],[104.705207,29.045477],[104.713718,29.06105],[104.737236,29.078796],[104.73018,29.106498],[104.714614,29.122396],[104.697816,29.118212],[104.680346,29.15569],[104.692329,29.177099],[104.691993,29.19934],[104.649325,29.198588],[104.62424,29.207282],[104.596355,29.190394],[104.580117,29.164639],[104.540922,29.143394],[104.509453,29.155522],[104.46589,29.207366],[104.460963,29.221827],[104.434646,29.220908],[104.442597,29.238543],[104.417735,29.236454],[104.411688,29.245479],[104.380332,29.238376],[104.368685,29.247652],[104.323218,29.2408],[104.298805,29.245647],[104.284582,29.259601],[104.249082,29.261356],[104.265433,29.231857],[104.256026,29.212298],[104.23262,29.205861],[104.191409,29.235869],[104.195888,29.220657],[104.17685,29.195745],[104.174835,29.183789],[104.194097,29.163719],[104.167891,29.15042],[104.175395,29.129591],[104.161732,29.117041],[104.142358,29.070593],[104.139671,29.024543],[104.121641,28.998243],[104.122985,28.963976],[104.107082,28.95082],[104.072478,28.967496],[104.061839,28.965401],[104.076174,28.920897],[104.084685,28.914441],[104.030483,28.884843],[104.034402,28.855908],[104.024996,28.84408],[104.003494,28.853475],[103.979977,28.792137],[103.956459,28.787521],[103.938317,28.764268],[103.914912,28.776273],[103.851079,28.832166],[103.830473,28.845338],[103.803708,28.83611],[103.788478,28.822433],[103.761041,28.815888],[103.76944,28.799355],[103.746483,28.764016],[103.712775,28.757299],[103.7018,28.746719],[103.71591,28.73849],[103.724869,28.717577],[103.722853,28.687923],[103.685674,28.63481],[103.636623,28.624134],[103.614562,28.613373],[103.61389,28.597313],[103.639983,28.604881],[103.665404,28.594874],[103.689257,28.562578],[103.712551,28.552904],[103.712999,28.541294],[103.689929,28.519332],[103.685002,28.497955],[103.724533,28.471522],[103.739987,28.51201],[103.75701,28.522782],[103.781983,28.524549]]]]}},{"type":"Feature","properties":{"adcode":511600,"name":"广安市","center":[106.633369,30.456398],"centroid":[106.666151,30.42449],"childrenNum":6,"level":"city","parent":{"adcode":510000},"subFeatureIndex":13,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.976088,30.083596],[106.975864,30.087906],[106.976648,30.088071],[106.97732,30.087491],[106.978552,30.087408],[106.979784,30.088071],[106.980456,30.087657],[106.981912,30.085171],[107.020659,30.036845],[107.042721,30.035021],[107.042497,30.055084],[107.059295,30.043146],[107.084492,30.063871],[107.073853,30.080944],[107.080125,30.094204],[107.103082,30.090143],[107.106554,30.11384],[107.131303,30.121545],[107.136454,30.134385],[107.173298,30.164861],[107.220221,30.212794],[107.256057,30.263764],[107.272743,30.305447],[107.255385,30.322809],[107.252809,30.324876],[107.253257,30.325951],[107.253593,30.327356],[107.260425,30.328927],[107.251802,30.344302],[107.242843,30.338598],[107.241611,30.338516],[107.240939,30.339425],[107.240267,30.339921],[107.239931,30.340499],[107.238587,30.341739],[107.237691,30.342235],[107.235563,30.343723],[107.234779,30.34455],[107.221341,30.34612],[107.22918,30.369838],[107.226828,30.372069],[107.223021,30.377771],[107.225932,30.380084],[107.208798,30.391155],[107.217533,30.406438],[107.206895,30.410072],[107.225372,30.424113],[107.219661,30.436995],[107.191776,30.432123],[107.186177,30.450454],[107.164115,30.458793],[107.195696,30.492058],[107.21395,30.501218],[107.204207,30.524321],[107.184945,30.535705],[107.189201,30.516483],[107.174418,30.502868],[107.140822,30.520938],[107.111593,30.525971],[107.095355,30.506251],[107.131303,30.486363],[107.142614,30.47002],[107.122792,30.471671],[107.118201,30.48562],[107.082365,30.486198],[107.076429,30.51409],[107.039361,30.51541],[107.038689,30.514998],[107.036898,30.51574],[107.03757,30.517143],[107.010917,30.520691],[107.00207,30.505921],[106.98348,30.499485],[106.974633,30.533726],[106.984599,30.546511],[107.017748,30.548656],[107.032082,30.613217],[107.043281,30.642803],[107.026819,30.645193],[106.998038,30.635634],[106.968585,30.645522],[106.949323,30.635716],[106.904305,30.664225],[106.890306,30.697666],[106.904528,30.70236],[106.924126,30.684818],[106.949547,30.707137],[106.883587,30.715618],[106.880451,30.733978],[106.840472,30.738341],[106.831177,30.757107],[106.809899,30.763198],[106.739123,30.807875],[106.730164,30.832632],[106.685257,30.829342],[106.675178,30.838882],[106.629599,30.821036],[106.617281,30.82778],[106.616497,30.801705],[106.626464,30.789365],[106.618401,30.766572],[106.584244,30.756861],[106.587604,30.73974],[106.542809,30.743033],[106.528923,30.732496],[106.506301,30.762869],[106.507757,30.784511],[106.487599,30.787966],[106.466546,30.760893],[106.448068,30.753321],[106.441124,30.727144],[106.420855,30.708207],[106.423094,30.693219],[106.403609,30.695525],[106.38905,30.679876],[106.364301,30.697337],[106.366877,30.712736],[106.354558,30.722122],[106.300468,30.686218],[106.286806,30.70516],[106.250746,30.719323],[106.207631,30.722863],[106.217486,30.704666],[106.238091,30.706807],[106.237531,30.687454],[106.225773,30.695196],[106.217822,30.677652],[106.166643,30.648324],[106.178962,30.620058],[106.192176,30.612969],[106.180194,30.595658],[106.157796,30.598049],[106.123192,30.544449],[106.112777,30.503198],[106.093851,30.504189],[106.066638,30.491727],[106.039426,30.518216],[106.028003,30.505261],[106.024755,30.482071],[105.980856,30.488344],[105.970665,30.477119],[105.971225,30.456151],[105.950172,30.452931],[105.948268,30.441619],[105.963834,30.424691],[105.9794,30.427581],[105.989815,30.41255],[105.987239,30.394047],[106.00079,30.376283],[106.032146,30.371821],[106.033714,30.361823],[106.07347,30.334135],[106.08926,30.345541],[106.088364,30.32314],[106.114793,30.317353],[106.131815,30.301808],[106.131815,30.324132],[106.149733,30.30925],[106.171235,30.305033],[106.180418,30.277825],[106.180418,30.232821],[106.201023,30.228021],[106.192288,30.21627],[106.212558,30.20311],[106.232268,30.212546],[106.24593,30.196488],[106.260601,30.196985],[106.260377,30.20402],[106.260265,30.207911],[106.264296,30.209732],[106.278407,30.195743],[106.296437,30.205841],[106.30058,30.23853],[106.335072,30.226366],[106.349295,30.245232],[106.372588,30.248211],[106.402713,30.242088],[106.427798,30.253754],[106.407976,30.276171],[106.434741,30.276998],[106.428582,30.291554],[106.449747,30.297839],[106.544825,30.296764],[106.560279,30.31512],[106.611009,30.292712],[106.634863,30.265666],[106.642142,30.246556],[106.611457,30.228021],[106.624448,30.227111],[106.631839,30.186554],[106.677642,30.157409],[106.673274,30.122042],[106.703175,30.118148],[106.700263,30.073651],[106.725797,30.057073],[106.732404,30.026812],[106.785486,30.017276],[106.800044,30.030543],[106.830169,30.033943],[106.842039,30.049115],[106.861413,30.028139],[106.884259,30.034357],[106.913599,30.025568],[106.914831,30.033943],[106.94854,30.040161],[106.956715,30.067518],[106.976088,30.083596]]],[[[107.225932,30.380084],[107.223021,30.377771],[107.226828,30.372069],[107.22918,30.369838],[107.225932,30.380084]]],[[[107.255385,30.322809],[107.272743,30.305447],[107.286742,30.334796],[107.304772,30.354881],[107.287749,30.363062],[107.276327,30.357195],[107.276663,30.352401],[107.27879,30.346203],[107.272295,30.322148],[107.261432,30.326281],[107.254153,30.325951],[107.253257,30.325951],[107.252809,30.324876],[107.255385,30.322809]]],[[[107.241611,30.347856],[107.238811,30.346616],[107.234779,30.34455],[107.235563,30.343723],[107.237691,30.342235],[107.238587,30.341739],[107.239931,30.340499],[107.240267,30.339921],[107.240939,30.339425],[107.241611,30.338516],[107.242843,30.338598],[107.251802,30.344302],[107.241611,30.347856]]],[[[106.264296,30.209732],[106.260265,30.207911],[106.260377,30.20402],[106.260601,30.196985],[106.264296,30.209732]]],[[[106.976648,30.088071],[106.975864,30.087906],[106.976088,30.083596],[106.981912,30.085171],[106.980456,30.087657],[106.979784,30.088071],[106.978552,30.087408],[106.97732,30.087491],[106.976648,30.088071]]],[[[107.260425,30.328927],[107.253593,30.327356],[107.254153,30.325951],[107.261432,30.326281],[107.260425,30.328927]]],[[[107.03757,30.517143],[107.036898,30.51574],[107.038689,30.514998],[107.039361,30.51541],[107.03757,30.517143]]]]}},{"type":"Feature","properties":{"adcode":511700,"name":"达州市","center":[107.502262,31.209484],"centroid":[107.650611,31.367469],"childrenNum":7,"level":"city","parent":{"adcode":510000},"subFeatureIndex":14,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.304772,30.354881],[107.33904,30.387107],[107.345535,30.425517],[107.359981,30.456233],[107.408696,30.521598],[107.419895,30.516483],[107.442852,30.535293],[107.42751,30.547666],[107.46021,30.571335],[107.485295,30.598296],[107.493694,30.618986],[107.51542,30.642061],[107.499182,30.660188],[107.478576,30.664472],[107.456627,30.682347],[107.458642,30.704831],[107.436133,30.721958],[107.424374,30.740645],[107.439045,30.747066],[107.447892,30.778751],[107.466369,30.77406],[107.477792,30.799813],[107.497726,30.809273],[107.492127,30.833125],[107.481152,30.836826],[107.513852,30.855081],[107.527515,30.839046],[107.535466,30.847681],[107.577573,30.848092],[107.616209,30.837731],[107.631103,30.817828],[107.643646,30.820624],[107.691912,30.874811],[107.704119,30.872263],[107.717333,30.888291],[107.737715,30.885004],[107.760336,30.862233],[107.752273,30.846036],[107.763808,30.817088],[107.787885,30.819473],[107.818906,30.797428],[107.852278,30.793479],[107.891586,30.830247],[107.929437,30.859356],[107.955307,30.873249],[107.955979,30.882949],[107.992262,30.902591],[107.945004,30.92338],[107.936269,30.952789],[107.943548,30.989415],[107.981176,30.983339],[108.003797,31.025369],[108.053296,31.040716],[108.058895,31.053926],[108.028994,31.061721],[108.024739,31.089283],[108.009397,31.108309],[108.025747,31.116345],[108.036274,31.139956],[108.08566,31.188063],[108.089356,31.205922],[108.076141,31.231804],[108.040081,31.218618],[108.019475,31.244988],[108.066398,31.261773],[108.092379,31.265784],[108.095291,31.275526],[108.144341,31.301225],[108.185553,31.338044],[108.176034,31.35473],[108.154084,31.370759],[108.182865,31.392999],[108.206494,31.397413],[108.216349,31.411146],[108.210526,31.435746],[108.223852,31.449229],[108.223181,31.46516],[108.19328,31.468183],[108.19048,31.491461],[108.212206,31.493748],[108.226764,31.505834],[108.254761,31.498811],[108.28175,31.507303],[108.323297,31.502404],[108.344015,31.512447],[108.339535,31.53898],[108.350286,31.546],[108.381195,31.542572],[108.39161,31.561425],[108.377947,31.570401],[108.402584,31.603851],[108.442676,31.633701],[108.468321,31.622284],[108.472017,31.639001],[108.490159,31.641284],[108.504493,31.656286],[108.532826,31.669084],[108.546488,31.66672],[108.514796,31.694106],[108.525435,31.702499],[108.518603,31.726207],[108.505501,31.732643],[108.53529,31.757728],[108.515692,31.761067],[108.488591,31.780283],[108.462498,31.780527],[108.454435,31.791111],[108.465185,31.808367],[108.441444,31.807635],[108.391946,31.828712],[108.385898,31.854097],[108.340991,31.863533],[108.308403,31.905984],[108.282646,31.917773],[108.280182,31.953047],[108.259352,31.966861],[108.269879,31.985141],[108.282198,31.97921],[108.307059,31.997244],[108.35051,31.97198],[108.369436,31.986847],[108.329233,32.019253],[108.362493,32.036304],[108.364061,32.048319],[108.343567,32.063904],[108.373804,32.077133],[108.394521,32.066177],[108.412887,32.070073],[108.430021,32.061388],[108.450403,32.074374],[108.452531,32.090279],[108.431589,32.101719],[108.406616,32.141303],[108.369436,32.17333],[108.406392,32.196188],[108.45925,32.181436],[108.479296,32.182085],[108.509756,32.201213],[108.51446,32.21823],[108.507069,32.245694],[108.484447,32.250716],[108.471793,32.27064],[108.450739,32.259302],[108.421846,32.260679],[108.415015,32.252498],[108.390602,32.263594],[108.370668,32.253632],[108.347935,32.253956],[108.331808,32.233381],[108.312099,32.232166],[108.264504,32.257439],[108.248602,32.274446],[108.212206,32.256953],[108.213326,32.248205],[108.179729,32.221714],[108.15666,32.238971],[108.141654,32.218878],[108.123064,32.218392],[108.089915,32.233705],[108.066062,32.229654],[108.043329,32.215232],[108.018579,32.211829],[108.023171,32.175924],[107.995734,32.147141],[107.979384,32.146006],[107.954299,32.163926],[107.924734,32.196998],[107.890466,32.214422],[107.867508,32.202428],[107.835816,32.223011],[107.788669,32.279871],[107.754625,32.338233],[107.716773,32.328846],[107.703559,32.318001],[107.705239,32.281814],[107.679034,32.251445],[107.690456,32.218797],[107.630991,32.199673],[107.627855,32.151763],[107.641294,32.138707],[107.680601,32.141059],[107.708262,32.115024],[107.715765,32.118998],[107.74253,32.102368],[107.76392,32.069667],[107.7329,32.039552],[107.702439,32.029809],[107.67601,32.006097],[107.622368,32.01438],[107.584964,32.000168],[107.569174,31.981241],[107.58418,31.962961],[107.569622,31.948659],[107.541177,31.943864],[107.53233,31.929803],[107.515084,31.926471],[107.550696,31.897122],[107.533338,31.877035],[107.496046,31.866462],[107.57175,31.834246],[107.554504,31.768721],[107.533562,31.760578],[107.539049,31.738426],[107.492351,31.729384],[107.501645,31.69818],[107.516988,31.683511],[107.53289,31.684571],[107.518108,31.637452],[107.499966,31.626525],[107.489887,31.596999],[107.471633,31.596265],[107.454051,31.583048],[107.445428,31.591615],[107.429862,31.572768],[107.388986,31.563955],[107.361437,31.541266],[107.354494,31.549101],[107.331201,31.53147],[107.322914,31.492931],[107.285846,31.491298],[107.273191,31.453723],[107.258633,31.445225],[107.237691,31.466304],[107.225037,31.434602],[107.21003,31.42643],[107.17397,31.427901],[107.145413,31.379672],[107.149893,31.356529],[107.120328,31.334035],[107.101962,31.335426],[107.074861,31.373376],[107.046081,31.34696],[107.054592,31.326836],[107.035778,31.321682],[107.038689,31.294678],[107.019092,31.304499],[107.003525,31.269223],[106.983256,31.248755],[106.964778,31.250802],[106.958282,31.228283],[106.939917,31.207151],[106.938349,31.1761],[106.951003,31.161267],[106.931965,31.133726],[106.935325,31.116591],[106.909008,31.107653],[106.894786,31.08756],[106.86914,31.081163],[106.830505,31.05286],[106.819754,31.011662],[106.803292,30.993684],[106.78739,30.995901],[106.784814,30.972336],[106.771487,30.96864],[106.73162,30.973649],[106.740467,30.951147],[106.723221,30.946629],[106.707207,30.915903],[106.678986,30.922887],[106.666443,30.909987],[106.689177,30.883606],[106.675514,30.867084],[106.675178,30.838882],[106.685257,30.829342],[106.730164,30.832632],[106.739123,30.807875],[106.809899,30.763198],[106.831177,30.757107],[106.840472,30.738341],[106.880451,30.733978],[106.883587,30.715618],[106.949547,30.707137],[106.924126,30.684818],[106.904528,30.70236],[106.890306,30.697666],[106.904305,30.664225],[106.949323,30.635716],[106.968585,30.645522],[106.998038,30.635634],[107.026819,30.645193],[107.043281,30.642803],[107.032082,30.613217],[107.017748,30.548656],[106.984599,30.546511],[106.974633,30.533726],[106.98348,30.499485],[107.00207,30.505921],[107.010917,30.520691],[107.03757,30.517143],[107.039361,30.51541],[107.076429,30.51409],[107.082365,30.486198],[107.118201,30.48562],[107.122792,30.471671],[107.142614,30.47002],[107.131303,30.486363],[107.095355,30.506251],[107.111593,30.525971],[107.140822,30.520938],[107.174418,30.502868],[107.189201,30.516483],[107.184945,30.535705],[107.204207,30.524321],[107.21395,30.501218],[107.195696,30.492058],[107.164115,30.458793],[107.186177,30.450454],[107.191776,30.432123],[107.219661,30.436995],[107.225372,30.424113],[107.227388,30.420561],[107.227724,30.414202],[107.217533,30.406438],[107.208798,30.391155],[107.225932,30.380084],[107.22918,30.369838],[107.221341,30.34612],[107.234779,30.34455],[107.238811,30.346616],[107.238587,30.349426],[107.240379,30.3505],[107.241611,30.347856],[107.251802,30.344302],[107.260425,30.328927],[107.261432,30.326281],[107.272295,30.322148],[107.27879,30.346203],[107.271399,30.345046],[107.265576,30.349343],[107.276663,30.352401],[107.276327,30.357195],[107.274311,30.37083],[107.277447,30.371574],[107.287749,30.363062],[107.304772,30.354881]]],[[[107.227388,30.420561],[107.225372,30.424113],[107.206895,30.410072],[107.217533,30.406438],[107.227724,30.414202],[107.227388,30.420561]]],[[[107.254153,30.325951],[107.253593,30.327356],[107.253257,30.325951],[107.254153,30.325951]]],[[[107.277447,30.371574],[107.274311,30.37083],[107.276327,30.357195],[107.287749,30.363062],[107.277447,30.371574]]],[[[107.276663,30.352401],[107.265576,30.349343],[107.271399,30.345046],[107.27879,30.346203],[107.276663,30.352401]]],[[[107.240379,30.3505],[107.238587,30.349426],[107.238811,30.346616],[107.241611,30.347856],[107.240379,30.3505]]]]}},{"type":"Feature","properties":{"adcode":511800,"name":"雅安市","center":[103.001033,29.987722],"centroid":[102.665156,29.914326],"childrenNum":8,"level":"city","parent":{"adcode":510000},"subFeatureIndex":15,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.395178,30.094866],[103.360574,30.136787],[103.372109,30.148382],[103.36091,30.168008],[103.370317,30.22827],[103.350047,30.236048],[103.320259,30.23489],[103.313875,30.260372],[103.282295,30.263598],[103.242651,30.243081],[103.233356,30.213456],[103.215998,30.209235],[103.211631,30.232407],[103.183634,30.248128],[103.147238,30.207],[103.076798,30.220242],[103.071534,30.260951],[103.061456,30.270464],[103.068623,30.294283],[103.062128,30.302553],[103.079038,30.324545],[103.091132,30.326529],[103.127976,30.367111],[103.116329,30.380002],[103.115993,30.413954],[103.12596,30.451115],[103.141751,30.470845],[103.162244,30.472579],[103.185874,30.511945],[103.180834,30.525228],[103.157765,30.530013],[103.166276,30.555749],[103.147798,30.585847],[103.126856,30.593927],[103.135591,30.624096],[103.13156,30.65475],[103.119017,30.670898],[103.103115,30.672957],[103.068735,30.716194],[103.031331,30.703678],[103.033907,30.719076],[103.005126,30.74649],[102.992919,30.778339],[102.962683,30.769699],[102.897954,30.765255],[102.863574,30.798332],[102.889443,30.865851],[102.889555,30.900784],[102.875221,30.923298],[102.852375,30.936772],[102.828298,30.928721],[102.801869,30.93595],[102.75405,30.916396],[102.708247,30.915493],[102.686634,30.888045],[102.679802,30.857629],[102.667148,30.850723],[102.590996,30.847845],[102.56132,30.821036],[102.532091,30.811659],[102.52134,30.794548],[102.493791,30.790352],[102.469042,30.768712],[102.4864,30.744761],[102.494463,30.713642],[102.486512,30.685807],[102.473298,30.670898],[102.47173,30.640001],[102.443397,30.618245],[102.43119,30.596895],[102.417976,30.524156],[102.419656,30.452766],[102.434438,30.421387],[102.425255,30.384546],[102.432758,30.355129],[102.414168,30.303958],[102.402298,30.234228],[102.341824,30.200296],[102.328946,30.187961],[102.29367,30.128835],[102.295126,30.101164],[102.268137,30.077381],[102.276872,30.039995],[102.274968,30.017193],[102.292214,29.993721],[102.303189,29.954562],[102.299381,29.934063],[102.284487,29.917877],[102.282583,29.896956],[102.270824,29.881595],[102.291094,29.854519],[102.291094,29.838237],[102.323346,29.824778],[102.326258,29.799599],[102.344064,29.789209],[102.353247,29.76319],[102.32861,29.736748],[102.336001,29.720114],[102.305764,29.699567],[102.296133,29.683593],[102.277208,29.603767],[102.284375,29.590192],[102.31002,29.575283],[102.318755,29.551958],[102.314051,29.53346],[102.203296,29.456851],[102.175859,29.466524],[102.178547,29.512709],[102.16578,29.532877],[102.145174,29.53221],[102.145622,29.504207],[102.13308,29.510458],[102.090637,29.496121],[102.033747,29.500039],[102.012021,29.49112],[101.97417,29.489702],[101.94942,29.503874],[101.935982,29.50104],[101.950764,29.462688],[101.95222,29.437585],[101.984136,29.422403],[101.972154,29.38277],[101.9567,29.367414],[101.949532,29.344124],[101.960171,29.314816],[101.983801,29.299032],[102.046066,29.297779],[102.096348,29.2718],[102.123337,29.238627],[102.119529,29.221911],[102.093996,29.208453],[102.056032,29.177852],[102.088509,29.173336],[102.109562,29.185043],[102.129608,29.176096],[102.131736,29.159872],[102.160741,29.130344],[102.15167,29.102648],[102.168468,29.07302],[102.156485,29.045393],[102.16522,29.036518],[102.188961,29.024626],[102.180898,29.013404],[102.22155,28.962217],[102.253802,28.898763],[102.29087,28.899685],[102.319763,28.883082],[102.352351,28.854566],[102.381804,28.855572],[102.429846,28.845422],[102.454148,28.873606],[102.481473,28.920142],[102.482929,28.932716],[102.46613,28.969339],[102.471506,28.983834],[102.497823,29.003269],[102.507006,29.025883],[102.525484,29.036267],[102.517757,29.058454],[102.524476,29.077457],[102.514845,29.09361],[102.522236,29.111602],[102.547657,29.116957],[102.559864,29.133606],[102.552697,29.150671],[102.563,29.159955],[102.594692,29.160039],[102.600515,29.169991],[102.590884,29.191983],[102.618993,29.209707],[102.635791,29.210793],[102.653373,29.188053],[102.649006,29.177601],[102.673419,29.161544],[102.69828,29.167064],[102.740388,29.153348],[102.772192,29.159621],[102.778575,29.173336],[102.766817,29.18705],[102.781487,29.236705],[102.804556,29.249908],[102.833113,29.241886],[102.836585,29.208035],[102.879812,29.206112],[102.905457,29.222245],[102.9124,29.264531],[102.940397,29.302874],[102.962347,29.301871],[103.003894,29.287171],[102.979817,29.320578],[102.980377,29.340367],[102.998519,29.368332],[102.975449,29.397791],[102.93211,29.400545],[102.879364,29.415896],[102.823146,29.46569],[102.869957,29.530044],[102.914416,29.553208],[102.931998,29.61634],[102.929646,29.668115],[102.938493,29.67677],[102.928751,29.711047],[102.962011,29.721944],[102.996055,29.708302],[103.007702,29.72552],[103.044546,29.700066],[103.052497,29.675522],[103.092028,29.683177],[103.099083,29.693827],[103.1282,29.671527],[103.150038,29.672443],[103.141303,29.703145],[103.153845,29.713293],[103.143654,29.730926],[103.162916,29.737829],[103.143206,29.760862],[103.165156,29.77034],[103.125064,29.864154],[103.093708,29.886992],[103.109946,29.915636],[103.159781,29.930162],[103.176915,29.945931],[103.1964,29.944355],[103.191249,29.966344],[103.225965,29.970659],[103.252506,30.040078],[103.302341,30.087574],[103.312531,30.071745],[103.339856,30.074729],[103.349599,30.097684],[103.372221,30.082105],[103.37838,30.095944],[103.395178,30.094866]]]]}},{"type":"Feature","properties":{"adcode":511900,"name":"巴中市","center":[106.753669,31.858809],"centroid":[107.041958,32.016794],"childrenNum":5,"level":"city","parent":{"adcode":510000},"subFeatureIndex":16,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.964778,31.250802],[106.983256,31.248755],[107.003525,31.269223],[107.019092,31.304499],[107.038689,31.294678],[107.035778,31.321682],[107.054592,31.326836],[107.046081,31.34696],[107.074861,31.373376],[107.101962,31.335426],[107.120328,31.334035],[107.149893,31.356529],[107.145413,31.379672],[107.17397,31.427901],[107.21003,31.42643],[107.225037,31.434602],[107.237691,31.466304],[107.258633,31.445225],[107.273191,31.453723],[107.285846,31.491298],[107.322914,31.492931],[107.331201,31.53147],[107.354494,31.549101],[107.361437,31.541266],[107.388986,31.563955],[107.429862,31.572768],[107.445428,31.591615],[107.454051,31.583048],[107.471633,31.596265],[107.489887,31.596999],[107.499966,31.626525],[107.518108,31.637452],[107.53289,31.684571],[107.516988,31.683511],[107.501645,31.69818],[107.492351,31.729384],[107.539049,31.738426],[107.533562,31.760578],[107.554504,31.768721],[107.57175,31.834246],[107.496046,31.866462],[107.533338,31.877035],[107.550696,31.897122],[107.515084,31.926471],[107.53233,31.929803],[107.541177,31.943864],[107.569622,31.948659],[107.58418,31.962961],[107.569174,31.981241],[107.584964,32.000168],[107.622368,32.01438],[107.67601,32.006097],[107.702439,32.029809],[107.7329,32.039552],[107.76392,32.069667],[107.74253,32.102368],[107.715765,32.118998],[107.708262,32.115024],[107.680601,32.141059],[107.641294,32.138707],[107.627855,32.151763],[107.630991,32.199673],[107.690456,32.218797],[107.679034,32.251445],[107.705239,32.281814],[107.703559,32.318001],[107.716773,32.328846],[107.707926,32.332083],[107.693592,32.362911],[107.695272,32.374721],[107.680377,32.397609],[107.648013,32.413701],[107.636366,32.406019],[107.602882,32.411275],[107.573317,32.403513],[107.566262,32.394294],[107.533114,32.383618],[107.512396,32.386368],[107.489775,32.425262],[107.456963,32.417743],[107.450691,32.432214],[107.462002,32.441348],[107.458194,32.458401],[107.438709,32.465835],[107.429302,32.501141],[107.436357,32.52973],[107.40612,32.539177],[107.377899,32.538935],[107.356846,32.506391],[107.313955,32.490236],[107.28607,32.454522],[107.283718,32.434154],[107.263896,32.40327],[107.230636,32.416126],[107.21003,32.431971],[107.189648,32.468017],[107.127048,32.48248],[107.10465,32.516648],[107.080125,32.542407],[107.091995,32.552579],[107.107786,32.600761],[107.097595,32.62706],[107.099051,32.649481],[107.08774,32.667946],[107.068366,32.669962],[107.059743,32.686165],[107.066798,32.708894],[107.03029,32.712359],[107.012596,32.721545],[106.988407,32.711795],[106.949099,32.716549],[106.91304,32.704381],[106.903409,32.721303],[106.872612,32.725654],[106.845959,32.721062],[106.821098,32.706073],[106.793213,32.712601],[106.78179,32.700915],[106.779439,32.737498],[106.7333,32.739351],[106.684473,32.709297],[106.66342,32.69076],[106.64035,32.687294],[106.645278,32.63682],[106.658044,32.622463],[106.652109,32.590756],[106.65838,32.566221],[106.649421,32.50421],[106.674842,32.486196],[106.689849,32.453633],[106.684697,32.418066],[106.691528,32.404159],[106.688953,32.348024],[106.725909,32.336939],[106.737779,32.31533],[106.745058,32.322938],[106.776191,32.296874],[106.755361,32.285296],[106.71695,32.294607],[106.718405,32.269263],[106.688393,32.266267],[106.674842,32.272664],[106.666219,32.249663],[106.594547,32.23727],[106.564647,32.227548],[106.556919,32.1756],[106.567558,32.128407],[106.535194,32.098474],[106.559159,32.082733],[106.533514,32.08184],[106.517836,32.068531],[106.519628,32.050186],[106.501038,32.048969],[106.508765,32.024775],[106.493087,32.006016],[106.482112,31.977098],[106.445492,31.977179],[106.464754,31.954591],[106.463522,31.94167],[106.446052,31.943295],[106.428694,31.922813],[106.427462,31.915009],[106.408984,31.902081],[106.424662,31.889803],[106.406408,31.874189],[106.416039,31.83156],[106.406296,31.808286],[106.39577,31.805681],[106.406632,31.777026],[106.42455,31.755448],[106.40764,31.755204],[106.405288,31.725637],[106.378747,31.732969],[106.382667,31.720423],[106.366429,31.696632],[106.400025,31.681229],[106.412568,31.65702],[106.438661,31.655715],[106.456803,31.633049],[106.460722,31.586312],[106.484016,31.584517],[106.492079,31.567382],[106.516604,31.575052],[106.536986,31.572033],[106.566438,31.545755],[106.566886,31.518244],[106.607874,31.50665],[106.626464,31.510814],[106.644942,31.544694],[106.632175,31.567056],[106.647517,31.591125],[106.673386,31.569177],[106.693656,31.56118],[106.718965,31.571952],[106.722101,31.563383],[106.7688,31.5673],[106.766224,31.537592],[106.787166,31.531307],[106.821098,31.547877],[106.815498,31.515142],[106.842151,31.503139],[106.846071,31.456909],[106.871268,31.426512],[106.883251,31.420873],[106.864549,31.400683],[106.917855,31.377464],[106.946748,31.328963],[106.934317,31.309081],[106.944172,31.288949],[106.964442,31.291077],[106.94574,31.264802],[106.946748,31.265539],[106.948092,31.264638],[106.947532,31.263656],[106.964778,31.250802]]],[[[106.946748,31.265539],[106.94574,31.264802],[106.947532,31.263656],[106.948092,31.264638],[106.946748,31.265539]]]]}},{"type":"Feature","properties":{"adcode":512000,"name":"资阳市","center":[104.641917,30.122211],"centroid":[105.118328,30.098408],"childrenNum":3,"level":"city","parent":{"adcode":510000},"subFeatureIndex":17,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.899505,29.902353],[104.902417,29.907168],[104.927166,29.936221],[104.903649,29.941367],[104.924367,29.946844],[104.932766,29.977296],[104.95158,29.99256],[104.976441,29.993223],[104.993687,29.977047],[105.0209,29.976798],[105.049345,29.947508],[105.074654,29.944023],[105.064015,29.922526],[105.097051,29.904927],[105.100747,29.885498],[105.080589,29.88284],[105.0947,29.848954],[105.125608,29.830677],[105.175554,29.846711],[105.217326,29.8448],[105.238491,29.817549],[105.233564,29.804087],[105.252714,29.796025],[105.288662,29.798269],[105.297733,29.82054],[105.319122,29.821953],[105.332225,29.81115],[105.35395,29.811566],[105.360446,29.83425],[105.373548,29.824612],[105.383179,29.796856],[105.405017,29.78896],[105.393482,29.747226],[105.416775,29.721112],[105.423943,29.687587],[105.436373,29.676936],[105.475681,29.67469],[105.479712,29.716288],[105.538842,29.694908],[105.529659,29.707637],[105.550488,29.722443],[105.549145,29.737663],[105.567398,29.728015],[105.575014,29.744482],[105.572326,29.768677],[105.583301,29.819294],[105.604914,29.817216],[105.610626,29.836908],[105.661804,29.840813],[105.677818,29.85427],[105.708951,29.840564],[105.719365,29.856513],[105.735716,29.860915],[105.738963,29.891227],[105.717462,29.893552],[105.702679,29.924767],[105.714998,29.930743],[105.731012,29.956636],[105.723397,29.975969],[105.73258,29.998781],[105.753634,30.018602],[105.746242,30.034275],[105.727988,30.027227],[105.722389,30.041073],[105.687001,30.039001],[105.674682,30.071247],[105.66046,30.066274],[105.639294,30.076386],[105.642206,30.100915],[105.598083,30.109201],[105.569974,30.134302],[105.593156,30.144738],[105.596851,30.15716],[105.570758,30.161466],[105.558216,30.151943],[105.536826,30.15244],[105.551048,30.179186],[105.556536,30.187465],[105.557544,30.195826],[105.547129,30.212711],[105.529323,30.21958],[105.521036,30.202613],[105.4824,30.223222],[105.480944,30.238696],[105.444996,30.265997],[105.425958,30.259876],[105.411064,30.295606],[105.380379,30.276916],[105.368845,30.278404],[105.35843,30.308093],[105.343088,30.298087],[105.328305,30.303297],[105.263913,30.287915],[105.258313,30.280307],[105.221805,30.287171],[105.218894,30.30586],[105.19784,30.309994],[105.197056,30.310738],[105.157412,30.323388],[105.151365,30.341987],[105.126056,30.341491],[105.101419,30.385455],[105.101083,30.385372],[105.100971,30.385372],[105.100859,30.385372],[105.100635,30.385455],[105.100635,30.38562],[105.097275,30.396194],[105.095259,30.394873],[105.094923,30.395121],[105.093916,30.395616],[105.093804,30.395864],[105.093692,30.395947],[105.07387,30.403133],[105.079917,30.411724],[105.079469,30.411807],[105.079693,30.412467],[105.080141,30.412385],[105.090444,30.425682],[105.068942,30.432949],[105.073646,30.442115],[105.075214,30.44228],[105.090108,30.442363],[105.090444,30.459536],[105.076558,30.481741],[105.084173,30.494616],[105.059983,30.522753],[105.066927,30.53587],[105.048449,30.545192],[105.022916,30.546099],[105.025043,30.530178],[104.983944,30.529271],[104.963226,30.56746],[104.970393,30.586425],[104.953371,30.612475],[104.93019,30.601429],[104.932206,30.617091],[104.910928,30.625662],[104.886403,30.609343],[104.878788,30.617997],[104.859078,30.611321],[104.858854,30.582385],[104.879124,30.550635],[104.892786,30.541645],[104.8761,30.5131],[104.875092,30.437078],[104.881699,30.393551],[104.895922,30.382315],[104.881027,30.360831],[104.860982,30.364384],[104.855494,30.347194],[104.837016,30.361988],[104.850455,30.338929],[104.848775,30.306852],[104.823354,30.293787],[104.807228,30.296847],[104.795133,30.279397],[104.774863,30.30156],[104.738579,30.290314],[104.723797,30.308341],[104.703975,30.301643],[104.691993,30.275427],[104.643614,30.283036],[104.638239,30.268148],[104.653133,30.240185],[104.599603,30.244488],[104.600163,30.220408],[104.569254,30.196985],[104.541594,30.184236],[104.533754,30.193673],[104.484368,30.181504],[104.485264,30.156001],[104.468354,30.157077],[104.471937,30.150287],[104.471601,30.149873],[104.471041,30.149873],[104.469474,30.150452],[104.464994,30.151529],[104.449428,30.132894],[104.457715,30.120634],[104.437109,30.107544],[104.450212,30.101081],[104.461411,30.086663],[104.481904,30.086663],[104.467234,30.066937],[104.479888,30.047374],[104.464322,30.049944],[104.467234,30.034689],[104.468578,30.026563],[104.499486,30.022666],[104.498142,30.035933],[104.5239,30.027227],[104.533195,29.999278],[104.546297,30.008485],[104.568471,29.995546],[104.577989,29.951076],[104.592548,29.950164],[104.60677,29.932901],[104.631184,29.940952],[104.64395,29.957383],[104.673739,29.905674],[104.687289,29.90227],[104.689865,29.920036],[104.709127,29.933233],[104.672955,29.944189],[104.685049,29.964436],[104.691769,29.954645],[104.730628,29.948504],[104.743619,29.933233],[104.748322,29.909244],[104.798493,29.880183],[104.780575,29.861413],[104.791997,29.849037],[104.809132,29.853024],[104.793341,29.866895],[104.805436,29.8752],[104.839144,29.866812],[104.828057,29.885498],[104.863333,29.890895],[104.8789,29.912897],[104.899505,29.902353]]],[[[105.097275,30.396194],[105.093692,30.395947],[105.093804,30.395864],[105.094364,30.396277],[105.094364,30.396277],[105.093916,30.395616],[105.094923,30.395121],[105.095259,30.394873],[105.097275,30.396194]]],[[[104.471937,30.150287],[104.468354,30.157077],[104.464994,30.151529],[104.469474,30.150452],[104.471041,30.149873],[104.471601,30.149873],[104.471937,30.150287]]],[[[105.100635,30.38562],[105.100635,30.385455],[105.100859,30.385372],[105.100971,30.385372],[105.101083,30.385372],[105.101419,30.385455],[105.100635,30.38562]]],[[[105.561463,30.183656],[105.558887,30.185561],[105.556536,30.187465],[105.551048,30.179186],[105.561463,30.183656]]],[[[105.080141,30.412385],[105.079693,30.412467],[105.079469,30.411807],[105.079917,30.411724],[105.080141,30.412385]]]]}},{"type":"Feature","properties":{"adcode":513200,"name":"阿坝藏族羌族自治州","center":[102.221374,31.899792],"centroid":[102.612554,32.409135],"childrenNum":13,"level":"city","parent":{"adcode":510000},"subFeatureIndex":18,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.667948,32.523674],[100.659885,32.514871],[100.622481,32.503645],[100.634128,32.479329],[100.612962,32.443207],[100.594596,32.427768],[100.562344,32.419441],[100.537147,32.39397],[100.530428,32.378199],[100.537707,32.364529],[100.52718,32.34592],[100.531659,32.327066],[100.553833,32.303998],[100.552377,32.282219],[100.573543,32.280438],[100.588773,32.269101],[100.58015,32.26076],[100.599076,32.231518],[100.629536,32.226819],[100.638719,32.233057],[100.666492,32.218554],[100.682283,32.187516],[100.72047,32.18322],[100.726966,32.162547],[100.692473,32.15598],[100.698633,32.133436],[100.717335,32.120377],[100.730549,32.099772],[100.762913,32.086628],[100.766385,32.069017],[100.785423,32.049131],[100.799757,32.050105],[100.785199,32.009751],[100.803789,31.991883],[100.828986,31.989608],[100.834809,31.976529],[100.869302,31.958167],[100.880164,31.967024],[100.950044,31.987496],[100.962027,31.979698],[100.990472,31.978885],[101.01175,31.948984],[100.991816,31.930616],[100.98756,31.911269],[100.998759,31.900374],[100.992712,31.864835],[100.952844,31.860524],[100.938958,31.825295],[100.916896,31.804949],[100.862022,31.785819],[100.852839,31.758705],[100.869078,31.73753],[100.898306,31.738182],[100.933246,31.751132],[100.952956,31.721808],[100.964379,31.718224],[100.968858,31.682044],[101.016341,31.653351],[101.024516,31.640877],[101.063488,31.628319],[101.050497,31.60638],[101.053969,31.593246],[101.074798,31.575705],[101.061136,31.567545],[101.05968,31.548693],[101.07883,31.493503],[101.0991,31.487132],[101.107499,31.468999],[101.144231,31.494973],[101.185778,31.509508],[101.202576,31.506405],[101.221614,31.535143],[101.241548,31.518244],[101.264169,31.46418],[101.263385,31.443509],[101.245243,31.398967],[101.257114,31.378609],[101.285223,31.375665],[101.301013,31.358655],[101.32845,31.384823],[101.336737,31.368878],[101.354991,31.371004],[101.390155,31.398803],[101.405721,31.397495],[101.415688,31.43689],[101.449844,31.435011],[101.464403,31.410492],[101.456452,31.389728],[101.429799,31.372149],[101.426999,31.345651],[101.43831,31.307035],[101.452756,31.294351],[101.46933,31.330681],[101.447381,31.347778],[101.475602,31.354239],[101.481985,31.368469],[101.54593,31.378691],[101.563512,31.366997],[101.573031,31.341397],[101.610098,31.382206],[101.628016,31.385313],[101.685466,31.353012],[101.691849,31.326918],[101.708983,31.315709],[101.715479,31.289195],[101.765089,31.309572],[101.763745,31.28232],[101.78995,31.276999],[101.814811,31.284939],[101.836761,31.281747],[101.858263,31.26603],[101.863526,31.201171],[101.87898,31.190193],[101.884692,31.160939],[101.910673,31.146104],[101.929935,31.168888],[101.97417,31.177083],[101.985256,31.156349],[102.013701,31.144628],[102.02602,31.089037],[102.034307,31.073288],[102.078318,31.084033],[102.1314,31.130693],[102.154469,31.140612],[102.172835,31.107161],[102.163092,31.090103],[102.168356,31.03292],[102.163876,30.995983],[102.178211,30.986952],[102.194225,30.950161],[102.188626,30.933732],[102.200944,30.909905],[102.170596,30.89577],[102.163428,30.902016],[102.112586,30.8984],[102.087277,30.89051],[102.065439,30.87103],[102.069135,30.827533],[102.066111,30.792491],[102.03957,30.76328],[102.070367,30.740728],[102.057152,30.736118],[102.039458,30.706642],[102.054577,30.698984],[102.047969,30.661671],[102.066111,30.668591],[102.104747,30.658128],[102.114714,30.638106],[102.148086,30.610579],[102.177315,30.594504],[102.184818,30.627887],[102.227933,30.63687],[102.246859,30.621459],[102.2734,30.635634],[102.273736,30.654091],[102.296469,30.676087],[102.316739,30.677899],[102.348096,30.705901],[102.391771,30.711995],[102.447317,30.681853],[102.477329,30.692972],[102.475985,30.738999],[102.469042,30.768712],[102.493791,30.790352],[102.52134,30.794548],[102.532091,30.811659],[102.56132,30.821036],[102.590996,30.847845],[102.667148,30.850723],[102.679802,30.857629],[102.686634,30.888045],[102.708247,30.915493],[102.75405,30.916396],[102.801869,30.93595],[102.828298,30.928721],[102.852375,30.936772],[102.875221,30.923298],[102.889555,30.900784],[102.889443,30.865851],[102.863574,30.798332],[102.897954,30.765255],[102.962683,30.769699],[102.992919,30.778339],[103.037938,30.802364],[103.083629,30.812728],[103.123945,30.79282],[103.165716,30.842171],[103.199088,30.845707],[103.228653,30.836579],[103.25833,30.842418],[103.284647,30.829589],[103.305252,30.810507],[103.337617,30.824655],[103.354527,30.850887],[103.383084,30.862891],[103.409401,30.864946],[103.451396,30.892565],[103.454644,30.924695],[103.465058,30.941536],[103.516461,30.971761],[103.52094,31.005095],[103.517132,31.030129],[103.504814,31.041044],[103.521164,31.067792],[103.525644,31.101092],[103.557224,31.149055],[103.564839,31.175034],[103.583205,31.191422],[103.57671,31.215834],[103.581413,31.246626],[103.569095,31.262019],[103.579733,31.291241],[103.569991,31.314563],[103.569543,31.338453],[103.60717,31.351295],[103.627104,31.344097],[103.669323,31.354812],[103.700792,31.391118],[103.739876,31.398885],[103.75029,31.419156],[103.787246,31.434439],[103.802588,31.430108],[103.795757,31.471777],[103.84212,31.510896],[103.857798,31.53849],[103.898226,31.512856],[103.915136,31.538409],[103.907409,31.564444],[103.923311,31.60328],[103.917376,31.612089],[103.928238,31.639572],[103.962842,31.656612],[103.989384,31.68237],[104.016037,31.678539],[104.040786,31.697691],[104.085917,31.688075],[104.09398,31.693535],[104.103163,31.710321],[104.142694,31.715454],[104.147734,31.727104],[104.171027,31.732317],[104.169795,31.779876],[104.152213,31.815855],[104.132951,31.815936],[104.127576,31.828712],[104.080093,31.838639],[104.061055,31.829038],[104.046497,31.849297],[104.030707,31.846938],[104.01738,31.862232],[103.975497,31.85605],[103.957691,31.903545],[103.920623,31.942239],[103.886131,31.929234],[103.876836,31.917854],[103.845704,31.921187],[103.817931,31.939801],[103.763617,31.946384],[103.754882,31.964342],[103.758241,31.997894],[103.795869,32.045965],[103.817147,32.054732],[103.824874,32.07056],[103.811995,32.097987],[103.82689,32.114375],[103.826778,32.130354],[103.855111,32.126704],[103.850743,32.161331],[103.897442,32.155736],[103.922527,32.143087],[103.938877,32.146817],[103.974713,32.140897],[103.994983,32.118917],[104.048961,32.131408],[104.100587,32.125001],[104.129032,32.140248],[104.152885,32.125893],[104.142134,32.149655],[104.156581,32.158899],[104.158821,32.176491],[104.18189,32.196593],[104.221757,32.215394],[104.257481,32.214746],[104.247515,32.24942],[104.209439,32.285053],[104.211455,32.298412],[104.182114,32.308936],[104.159828,32.25995],[104.162292,32.250473],[104.135751,32.234677],[104.131048,32.223011],[104.075838,32.237513],[104.066655,32.249258],[104.033507,32.248691],[104.022756,32.265214],[103.981768,32.305617],[103.960155,32.304564],[103.921295,32.315411],[103.898002,32.341227],[103.904497,32.347053],[103.889155,32.364852],[103.914576,32.432699],[103.902817,32.496617],[103.906961,32.51051],[103.84492,32.584058],[103.853095,32.61367],[103.877508,32.621333],[103.890387,32.638997],[103.922415,32.635771],[103.993303,32.647788],[104.007973,32.641578],[104.035634,32.651578],[104.065871,32.631013],[104.068335,32.608426],[104.084237,32.569127],[104.129368,32.530457],[104.132279,32.492094],[104.0951,32.467694],[104.144486,32.473754],[104.162292,32.521332],[104.174835,32.531345],[104.168451,32.579377],[104.177634,32.607054],[104.182786,32.663431],[104.155909,32.711473],[104.130152,32.730327],[104.146502,32.756589],[104.121305,32.799911],[104.108314,32.800635],[104.101035,32.848201],[104.079309,32.856971],[104.068895,32.845224],[104.035522,32.833073],[104.032387,32.820357],[104.004614,32.814159],[103.971466,32.839671],[103.994535,32.861154],[103.993975,32.879334],[103.958027,32.888422],[103.952988,32.917451],[103.965082,32.922114],[103.959371,32.939879],[103.978521,32.985602],[103.973705,33.005122],[103.986472,33.034674],[104.013461,33.041258],[104.069231,33.003114],[104.113466,32.99982],[104.158821,32.956998],[104.195664,32.916888],[104.217278,32.908767],[104.220302,32.896143],[104.247851,32.877564],[104.277079,32.891317],[104.28615,32.939075],[104.305972,32.951533],[104.345392,32.940361],[104.378428,32.953221],[104.383579,32.994278],[104.426135,33.010744],[104.421095,33.024235],[104.391418,33.035477],[104.360174,33.028411],[104.337664,33.038287],[104.367229,33.086768],[104.360846,33.099285],[104.377196,33.107067],[104.374956,33.11918],[104.350879,33.159038],[104.328257,33.224118],[104.329041,33.252956],[104.303844,33.30452],[104.336321,33.314205],[104.349199,33.300678],[104.39825,33.297316],[104.393546,33.310924],[104.420087,33.32709],[104.367677,33.345014],[104.328034,33.333092],[104.295669,33.332852],[104.270584,33.393325],[104.242923,33.406998],[104.22075,33.404599],[104.221981,33.428741],[104.213134,33.446884],[104.18077,33.473092],[104.156133,33.547118],[104.168115,33.570981],[104.17965,33.575689],[104.168563,33.611749],[104.103499,33.663499],[104.05232,33.685258],[104.013237,33.683265],[103.966538,33.670434],[103.926783,33.679679],[103.861606,33.68215],[103.800461,33.670194],[103.778287,33.658875],[103.689257,33.693386],[103.667756,33.685816],[103.667308,33.698566],[103.64995,33.700159],[103.669099,33.712429],[103.651629,33.721351],[103.644238,33.708525],[103.633375,33.721829],[103.598883,33.717846],[103.563943,33.699601],[103.552073,33.67147],[103.520492,33.678563],[103.545577,33.720396],[103.549497,33.740308],[103.531355,33.749069],[103.54009,33.766746],[103.518364,33.807102],[103.506494,33.810126],[103.464498,33.802407],[103.431686,33.750741],[103.349599,33.743494],[103.320147,33.752095],[103.279607,33.773593],[103.284647,33.802009],[103.24993,33.814026],[103.228093,33.794846],[103.203008,33.795403],[103.161348,33.807182],[103.153397,33.819118],[103.18117,33.900717],[103.171203,33.924403],[103.134359,33.930363],[103.123049,33.941567],[103.123833,33.96818],[103.139511,33.976123],[103.157205,33.998756],[103.147238,34.036543],[103.119241,34.039558],[103.130888,34.066934],[103.170195,34.065744],[103.178371,34.080341],[103.149814,34.102867],[103.135479,34.10025],[103.121817,34.1127],[103.13268,34.129033],[103.124057,34.161849],[103.100315,34.181896],[103.071534,34.184907],[103.050481,34.194731],[103.03973,34.185779],[103.005574,34.184907],[102.973433,34.205424],[102.980153,34.241298],[102.956523,34.2694],[102.939949,34.299946],[102.913184,34.312446],[102.879252,34.312129],[102.86111,34.302398],[102.856743,34.270667],[102.806572,34.274703],[102.783839,34.258081],[102.777903,34.235676],[102.731877,34.237498],[102.701304,34.197662],[102.6639,34.192513],[102.647438,34.178331],[102.650462,34.165573],[102.625377,34.167475],[102.598388,34.147741],[102.641167,34.127051],[102.655725,34.113493],[102.660317,34.085101],[102.649454,34.080024],[102.61597,34.099695],[102.585285,34.101043],[102.5574,34.091526],[102.516749,34.087401],[102.46725,34.073916],[102.438805,34.087401],[102.417752,34.042177],[102.39961,34.017731],[102.391435,33.970802],[102.350559,33.977394],[102.345856,33.96969],[102.32525,33.982159],[102.310132,33.971675],[102.316179,33.994071],[102.287286,33.977553],[102.277768,33.990021],[102.25817,33.975647],[102.241484,33.981524],[102.238012,33.963653],[102.202624,33.967068],[102.198592,33.978347],[102.1669,33.982874],[102.136327,33.965242],[102.205424,33.90493],[102.233868,33.870187],[102.253354,33.861518],[102.261977,33.824847],[102.237004,33.798746],[102.238572,33.788877],[102.300277,33.782349],[102.324354,33.754563],[102.322898,33.746043],[102.295238,33.739034],[102.284375,33.723423],[102.301285,33.70988],[102.325474,33.735291],[102.3416,33.720873],[102.328386,33.706294],[102.313939,33.668839],[102.333649,33.642053],[102.344512,33.606883],[102.386619,33.598747],[102.410137,33.579439],[102.440261,33.574811],[102.454596,33.555179],[102.477889,33.543446],[102.474529,33.529635],[102.445973,33.531152],[102.461987,33.504323],[102.4537,33.483636],[102.462435,33.449681],[102.442277,33.453117],[102.434214,33.439451],[102.403641,33.424585],[102.396138,33.405319],[102.367134,33.408996],[102.370157,33.394125],[102.347424,33.409716],[102.31058,33.397963],[102.300949,33.410915],[102.277096,33.407637],[102.263433,33.417151],[102.261081,33.396363],[102.238124,33.388607],[102.219758,33.351494],[102.186946,33.332772],[102.205536,33.320128],[102.202288,33.300998],[102.217518,33.248151],[102.203408,33.223317],[102.174963,33.233652],[102.15279,33.253117],[102.144167,33.274418],[102.111466,33.285628],[102.108667,33.257762],[102.089517,33.227563],[102.089517,33.204968],[102.055025,33.189981],[102.010566,33.191745],[101.993767,33.199999],[101.957371,33.186695],[101.935646,33.186855],[101.923215,33.155831],[101.884132,33.132495],[101.86599,33.103056],[101.825562,33.119501],[101.840681,33.160401],[101.841352,33.1891],[101.82825,33.214984],[101.797565,33.233011],[101.788382,33.229006],[101.767553,33.263368],[101.8091,33.28835],[101.823882,33.271215],[101.832282,33.291712],[101.858039,33.312044],[101.876069,33.314125],[101.875509,33.349334],[101.886371,33.382369],[101.914144,33.405878],[101.915936,33.425784],[101.946285,33.442808],[101.924447,33.45],[101.927359,33.472932],[101.907425,33.480201],[101.897906,33.519096],[101.907201,33.542009],[101.885252,33.56324],[101.882004,33.57928],[101.844376,33.602416],[101.830826,33.578801],[101.830266,33.554541],[101.805964,33.548155],[101.782335,33.556297],[101.770016,33.545042],[101.777856,33.533946],[101.77584,33.492023],[101.768785,33.465102],[101.775952,33.453516],[101.75949,33.444726],[101.734516,33.445126],[101.695769,33.433937],[101.692969,33.422427],[101.662733,33.38165],[101.649294,33.324609],[101.678187,33.297476],[101.706744,33.298517],[101.730933,33.283866],[101.740452,33.269133],[101.727573,33.2564],[101.727461,33.240461],[101.711111,33.213462],[101.680651,33.202003],[101.686698,33.185413],[101.65411,33.162726],[101.661165,33.136505],[101.634176,33.102414],[101.567095,33.154628],[101.557576,33.167136],[101.515469,33.193027],[101.486464,33.227163],[101.475937,33.223237],[101.428231,33.230287],[101.40337,33.22524],[101.386795,33.207372],[101.396202,33.187176],[101.393851,33.157835],[101.381196,33.154388],[101.374477,33.171385],[101.328898,33.223477],[101.328674,33.237337],[101.310532,33.244466],[101.296982,33.262247],[101.246251,33.262327],[101.222734,33.270335],[101.206944,33.255279],[101.203248,33.269614],[101.183538,33.270094],[101.156997,33.237017],[101.127881,33.223798],[101.120377,33.186615],[101.13348,33.1891],[101.130568,33.168899],[101.158677,33.144204],[101.151174,33.132415],[101.169652,33.101692],[101.143223,33.08412],[101.146582,33.056832],[101.162149,33.056591],[101.184434,33.041258],[101.171332,33.013555],[101.184098,32.984236],[101.129112,32.989539],[101.133704,32.947997],[101.123961,32.910054],[101.176259,32.894132],[101.223854,32.855522],[101.222622,32.838303],[101.23774,32.827681],[101.224414,32.771569],[101.22307,32.725816],[101.190146,32.686568],[101.157445,32.661577],[101.130232,32.660609],[101.111866,32.637223],[101.112874,32.671897],[101.083981,32.671897],[101.076702,32.683022],[101.030563,32.660528],[100.997191,32.627867],[100.956876,32.62093],[100.932126,32.60068],[100.914768,32.616574],[100.89797,32.615686],[100.887555,32.632545],[100.860679,32.635529],[100.834026,32.648917],[100.807037,32.646901],[100.799645,32.654884],[100.773552,32.640933],[100.765825,32.663673],[100.752051,32.65053],[100.692025,32.677701],[100.684746,32.67109],[100.709271,32.649804],[100.717559,32.617058],[100.70412,32.611249],[100.676347,32.627867],[100.666156,32.624318],[100.658653,32.599712],[100.658093,32.546686],[100.667948,32.523674]]]]}},{"type":"Feature","properties":{"adcode":513300,"name":"甘孜藏族自治州","center":[101.963815,30.050663],"centroid":[99.98712,30.97906],"childrenNum":18,"level":"city","parent":{"adcode":510000},"subFeatureIndex":19,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.061536,28.082776],[100.072063,28.08548],[100.100284,28.047957],[100.201744,27.984205],[100.225822,27.987165],[100.234445,27.971011],[100.25617,27.961283],[100.270505,27.966358],[100.302981,28.009829],[100.337025,28.010167],[100.349008,28.017354],[100.380812,28.015494],[100.396715,28.005516],[100.418104,28.005601],[100.426839,28.019468],[100.404666,28.073143],[100.401754,28.096464],[100.38742,28.133463],[100.380252,28.187925],[100.367822,28.206242],[100.372861,28.250459],[100.413849,28.290779],[100.416424,28.306464],[100.390331,28.324929],[100.398618,28.359405],[100.420792,28.38654],[100.423928,28.420153],[100.4162,28.433209],[100.439606,28.448199],[100.449909,28.474722],[100.49112,28.500312],[100.506014,28.524213],[100.514973,28.559633],[100.530428,28.574101],[100.520125,28.616568],[100.526284,28.643048],[100.523708,28.671118],[100.49112,28.694812],[100.472418,28.696493],[100.472082,28.70859],[100.508814,28.708674],[100.539946,28.736726],[100.562792,28.749574],[100.594708,28.743948],[100.579926,28.797929],[100.586533,28.821426],[100.5638,28.833425],[100.558536,28.86136],[100.541738,28.889791],[100.543082,28.91704],[100.530316,28.924417],[100.521357,28.949646],[100.544762,28.955261],[100.577014,28.945456],[100.609155,28.954591],[100.63424,28.990117],[100.658093,29.005447],[100.65003,29.01935],[100.680155,29.014158],[100.704792,28.997322],[100.714199,29.005195],[100.779264,29.010389],[100.797518,28.989279],[100.820475,28.993049],[100.845784,29.02069],[100.832458,29.055357],[100.786431,29.057868],[100.77288,29.063812],[100.772432,29.087668],[100.802557,29.107837],[100.837497,29.112941],[100.883412,29.146405],[100.916336,29.139881],[100.924735,29.119802],[100.922384,29.099468],[100.936382,29.087919],[100.929103,29.061217],[100.959563,29.074109],[101.010182,29.12683],[101.050273,29.145652],[101.056881,29.166395],[101.09742,29.146573],[101.118362,29.111937],[101.116346,29.070593],[101.138855,29.053515],[101.142327,29.031326],[101.155877,29.017759],[101.145351,28.999751],[101.160357,28.946965],[101.183986,28.941265],[101.180851,28.905471],[101.192609,28.891133],[101.171668,28.836445],[101.173123,28.788696],[101.189922,28.762085],[101.20504,28.754948],[101.200224,28.717409],[101.209183,28.700609],[101.202576,28.652714],[101.229677,28.66658],[101.277048,28.66574],[101.297542,28.673135],[101.356223,28.66616],[101.369213,28.647755],[101.367646,28.629262],[101.427223,28.646326],[101.445813,28.625479],[101.472914,28.631532],[101.489824,28.626824],[101.516925,28.58924],[101.550745,28.599415],[101.575382,28.58226],[101.591844,28.555427],[101.620177,28.537676],[101.617714,28.509402],[101.62992,28.491558],[101.594532,28.475227],[101.569895,28.474216],[101.515357,28.494083],[101.473698,28.499049],[101.469218,28.50553],[101.427559,28.505025],[101.413001,28.521099],[101.383996,28.482888],[101.36787,28.472449],[101.373021,28.461756],[101.425543,28.489538],[101.439654,28.471691],[101.454436,28.411056],[101.46821,28.404317],[101.482097,28.318521],[101.509758,28.314727],[101.56228,28.333106],[101.591621,28.358056],[101.620177,28.374911],[101.631712,28.354854],[101.667548,28.351819],[101.715479,28.380894],[101.730709,28.410635],[101.731829,28.434556],[101.745827,28.453672],[101.757138,28.49341],[101.753554,28.533889],[101.832393,28.594033],[101.874165,28.613121],[101.904289,28.606562],[101.918736,28.612616],[101.928031,28.640947],[101.946621,28.67137],[101.985032,28.702877],[102.018069,28.713965],[102.022772,28.723373],[101.997799,28.750162],[101.989288,28.80372],[101.962747,28.824027],[101.98548,28.857585],[101.988392,28.88803],[102.00631,28.907567],[102.050993,28.920477],[102.058384,28.954088],[102.099708,28.98065],[102.14999,29.031158],[102.16522,29.036518],[102.156485,29.045393],[102.168468,29.07302],[102.15167,29.102648],[102.160741,29.130344],[102.131736,29.159872],[102.129608,29.176096],[102.109562,29.185043],[102.088509,29.173336],[102.056032,29.177852],[102.093996,29.208453],[102.119529,29.221911],[102.123337,29.238627],[102.096348,29.2718],[102.046066,29.297779],[101.983801,29.299032],[101.960171,29.314816],[101.949532,29.344124],[101.9567,29.367414],[101.972154,29.38277],[101.984136,29.422403],[101.95222,29.437585],[101.950764,29.462688],[101.935982,29.50104],[101.94942,29.503874],[101.97417,29.489702],[102.012021,29.49112],[102.033747,29.500039],[102.090637,29.496121],[102.13308,29.510458],[102.145622,29.504207],[102.145174,29.53221],[102.16578,29.532877],[102.178547,29.512709],[102.175859,29.466524],[102.203296,29.456851],[102.314051,29.53346],[102.318755,29.551958],[102.31002,29.575283],[102.284375,29.590192],[102.277208,29.603767],[102.296133,29.683593],[102.305764,29.699567],[102.336001,29.720114],[102.32861,29.736748],[102.353247,29.76319],[102.344064,29.789209],[102.326258,29.799599],[102.323346,29.824778],[102.291094,29.838237],[102.291094,29.854519],[102.270824,29.881595],[102.282583,29.896956],[102.284487,29.917877],[102.299381,29.934063],[102.303189,29.954562],[102.292214,29.993721],[102.274968,30.017193],[102.276872,30.039995],[102.268137,30.077381],[102.295126,30.101164],[102.29367,30.128835],[102.328946,30.187961],[102.341824,30.200296],[102.402298,30.234228],[102.414168,30.303958],[102.432758,30.355129],[102.425255,30.384546],[102.434438,30.421387],[102.419656,30.452766],[102.417976,30.524156],[102.43119,30.596895],[102.443397,30.618245],[102.47173,30.640001],[102.473298,30.670898],[102.486512,30.685807],[102.494463,30.713642],[102.4864,30.744761],[102.469042,30.768712],[102.475985,30.738999],[102.477329,30.692972],[102.447317,30.681853],[102.391771,30.711995],[102.348096,30.705901],[102.316739,30.677899],[102.296469,30.676087],[102.273736,30.654091],[102.2734,30.635634],[102.246859,30.621459],[102.227933,30.63687],[102.184818,30.627887],[102.177315,30.594504],[102.148086,30.610579],[102.114714,30.638106],[102.104747,30.658128],[102.066111,30.668591],[102.047969,30.661671],[102.054577,30.698984],[102.039458,30.706642],[102.057152,30.736118],[102.070367,30.740728],[102.03957,30.76328],[102.066111,30.792491],[102.069135,30.827533],[102.065439,30.87103],[102.087277,30.89051],[102.112586,30.8984],[102.163428,30.902016],[102.170596,30.89577],[102.200944,30.909905],[102.188626,30.933732],[102.194225,30.950161],[102.178211,30.986952],[102.163876,30.995983],[102.168356,31.03292],[102.163092,31.090103],[102.172835,31.107161],[102.154469,31.140612],[102.1314,31.130693],[102.078318,31.084033],[102.034307,31.073288],[102.02602,31.089037],[102.013701,31.144628],[101.985256,31.156349],[101.97417,31.177083],[101.929935,31.168888],[101.910673,31.146104],[101.884692,31.160939],[101.87898,31.190193],[101.863526,31.201171],[101.858263,31.26603],[101.836761,31.281747],[101.814811,31.284939],[101.78995,31.276999],[101.763745,31.28232],[101.765089,31.309572],[101.715479,31.289195],[101.708983,31.315709],[101.691849,31.326918],[101.685466,31.353012],[101.628016,31.385313],[101.610098,31.382206],[101.573031,31.341397],[101.563512,31.366997],[101.54593,31.378691],[101.481985,31.368469],[101.475602,31.354239],[101.447381,31.347778],[101.46933,31.330681],[101.452756,31.294351],[101.43831,31.307035],[101.426999,31.345651],[101.429799,31.372149],[101.456452,31.389728],[101.464403,31.410492],[101.449844,31.435011],[101.415688,31.43689],[101.405721,31.397495],[101.390155,31.398803],[101.354991,31.371004],[101.336737,31.368878],[101.32845,31.384823],[101.301013,31.358655],[101.285223,31.375665],[101.257114,31.378609],[101.245243,31.398967],[101.263385,31.443509],[101.264169,31.46418],[101.241548,31.518244],[101.221614,31.535143],[101.202576,31.506405],[101.185778,31.509508],[101.144231,31.494973],[101.107499,31.468999],[101.0991,31.487132],[101.07883,31.493503],[101.05968,31.548693],[101.061136,31.567545],[101.074798,31.575705],[101.053969,31.593246],[101.050497,31.60638],[101.063488,31.628319],[101.024516,31.640877],[101.016341,31.653351],[100.968858,31.682044],[100.964379,31.718224],[100.952956,31.721808],[100.933246,31.751132],[100.898306,31.738182],[100.869078,31.73753],[100.852839,31.758705],[100.862022,31.785819],[100.916896,31.804949],[100.938958,31.825295],[100.952844,31.860524],[100.992712,31.864835],[100.998759,31.900374],[100.98756,31.911269],[100.991816,31.930616],[101.01175,31.948984],[100.990472,31.978885],[100.962027,31.979698],[100.950044,31.987496],[100.880164,31.967024],[100.869302,31.958167],[100.834809,31.976529],[100.828986,31.989608],[100.803789,31.991883],[100.785199,32.009751],[100.799757,32.050105],[100.785423,32.049131],[100.766385,32.069017],[100.762913,32.086628],[100.730549,32.099772],[100.717335,32.120377],[100.698633,32.133436],[100.692473,32.15598],[100.726966,32.162547],[100.72047,32.18322],[100.682283,32.187516],[100.666492,32.218554],[100.638719,32.233057],[100.629536,32.226819],[100.599076,32.231518],[100.58015,32.26076],[100.588773,32.269101],[100.573543,32.280438],[100.552377,32.282219],[100.553833,32.303998],[100.531659,32.327066],[100.52718,32.34592],[100.537707,32.364529],[100.530428,32.378199],[100.537147,32.39397],[100.562344,32.419441],[100.594596,32.427768],[100.612962,32.443207],[100.634128,32.479329],[100.622481,32.503645],[100.659885,32.514871],[100.667948,32.523674],[100.645439,32.52642],[100.602883,32.553629],[100.572311,32.556777],[100.56492,32.569611],[100.544762,32.570096],[100.54465,32.581475],[100.52438,32.594952],[100.525052,32.611249],[100.508702,32.61012],[100.516541,32.630045],[100.48888,32.667221],[100.476338,32.672461],[100.470178,32.694548],[100.449909,32.694065],[100.434902,32.720095],[100.420344,32.731778],[100.390107,32.695596],[100.378685,32.698417],[100.398842,32.739109],[100.400634,32.756186],[100.33445,32.718241],[100.264345,32.742734],[100.262106,32.729119],[100.240268,32.722673],[100.230861,32.696241],[100.229741,32.65053],[100.20992,32.605844],[100.188082,32.630771],[100.131864,32.632465],[100.110139,32.639239],[100.105435,32.656739],[100.087853,32.669075],[100.125257,32.714857],[100.138696,32.720981],[100.136344,32.740881],[100.121785,32.7764],[100.117082,32.802487],[100.123129,32.837257],[100.109691,32.846591],[100.109243,32.86228],[100.088637,32.864211],[100.082366,32.885125],[100.066016,32.895982],[100.02962,32.895821],[100.038355,32.929108],[100.002519,32.941647],[99.970826,32.939075],[99.956604,32.948077],[99.947421,32.986887],[99.908897,33.020622],[99.903074,33.047038],[99.877317,33.045513],[99.882692,33.025199],[99.877765,32.993716],[99.863654,32.980219],[99.850888,32.941888],[99.828714,32.95097],[99.802845,32.941969],[99.788287,32.956596],[99.775296,32.952337],[99.763986,32.924445],[99.7744,32.922516],[99.791982,32.883114],[99.786495,32.861798],[99.766897,32.826232],[99.769809,32.802326],[99.76029,32.769877],[99.737109,32.745312],[99.73946,32.732503],[99.717735,32.732181],[99.7062,32.764079],[99.651326,32.772132],[99.640127,32.790733],[99.607427,32.780829],[99.586485,32.792665],[99.581782,32.813515],[99.557145,32.840074],[99.532396,32.84804],[99.490176,32.850936],[99.452772,32.862441],[99.435302,32.877242],[99.376173,32.899842],[99.354112,32.885446],[99.343473,32.895258],[99.327235,32.881505],[99.282888,32.885044],[99.269113,32.878529],[99.259482,32.907963],[99.245596,32.928384],[99.248955,32.951533],[99.233277,32.954426],[99.234733,32.983353],[99.215135,32.990181],[99.20864,33.018694],[99.179411,33.04487],[99.147607,33.05041],[99.124649,33.045994],[99.092733,33.078101],[99.075039,33.075934],[99.025764,33.095033],[99.014566,33.081311],[98.969883,33.099526],[98.957004,33.118298],[98.935502,33.115651],[98.902802,33.125838],[98.895635,33.135061],[98.860695,33.150058],[98.829674,33.181325],[98.830906,33.196874],[98.804701,33.219311],[98.813548,33.248311],[98.807501,33.26529],[98.785663,33.276821],[98.758786,33.278102],[98.774017,33.301799],[98.764274,33.321088],[98.783424,33.344054],[98.779168,33.371652],[98.762818,33.37901],[98.74658,33.405159],[98.734037,33.410275],[98.744228,33.454315],[98.742212,33.477725],[98.722838,33.486113],[98.72463,33.505601],[98.680059,33.521571],[98.668748,33.544324],[98.648031,33.548794],[98.657774,33.576806],[98.65251,33.594997],[98.622722,33.610233],[98.61757,33.637269],[98.656654,33.647315],[98.594501,33.70239],[98.596181,33.717129],[98.581734,33.732185],[98.538059,33.747556],[98.516893,33.77415],[98.497968,33.768497],[98.486769,33.782111],[98.492928,33.793254],[98.463475,33.848395],[98.435143,33.843145],[98.406922,33.867244],[98.42708,33.908189],[98.411849,33.924721],[98.415433,33.95698],[98.431111,33.961826],[98.44063,33.981365],[98.428199,34.029002],[98.391915,34.058842],[98.401882,34.087718],[98.338721,34.094777],[98.308821,34.087718],[98.209936,34.078517],[98.157302,34.107387],[98.14196,34.104374],[98.098172,34.122928],[98.050354,34.114682],[98.027844,34.123325],[98.012614,34.14576],[97.995592,34.153765],[97.944526,34.198612],[97.88898,34.204474],[97.810701,34.207484],[97.796478,34.199167],[97.790879,34.178093],[97.773409,34.162007],[97.667021,34.127685],[97.662989,34.117458],[97.683371,34.080738],[97.703193,34.058127],[97.702297,34.036781],[97.687403,34.016619],[97.65851,34.012174],[97.652798,33.998359],[97.659854,33.956345],[97.644399,33.943315],[97.633985,33.919078],[97.601844,33.930045],[97.546746,33.914151],[97.522109,33.903261],[97.503631,33.912005],[97.482801,33.896981],[97.468467,33.902069],[97.460628,33.887361],[97.395339,33.88927],[97.389628,33.879967],[97.398027,33.848315],[97.371822,33.841952],[97.368798,33.824131],[97.406426,33.795165],[97.409898,33.767621],[97.423224,33.754961],[97.417849,33.728521],[97.435319,33.682468],[97.40553,33.626663],[97.415721,33.605527],[97.437111,33.600183],[97.448645,33.583668],[97.472835,33.587418],[97.525245,33.575769],[97.51203,33.519415],[97.542155,33.492662],[97.55257,33.465662],[97.582358,33.468777],[97.604644,33.451838],[97.625585,33.461507],[97.645183,33.449041],[97.665005,33.447683],[97.67486,33.433058],[97.703641,33.428981],[97.741268,33.411635],[97.750003,33.397403],[97.719991,33.386288],[97.702297,33.359734],[97.676316,33.357574],[97.676092,33.341013],[97.636784,33.344614],[97.622002,33.335972],[97.615395,33.301799],[97.606548,33.287469],[97.60666,33.262567],[97.577655,33.234453],[97.575191,33.220834],[97.546746,33.203686],[97.532972,33.20625],[97.518078,33.182607],[97.487953,33.168178],[97.486273,33.145246],[97.498032,33.137949],[97.487729,33.106746],[97.516958,33.09752],[97.537339,33.058196],[97.542379,33.036199],[97.517966,33.022148],[97.497696,33.021826],[97.523789,32.988575],[97.464995,32.972024],[97.447413,32.976283],[97.410122,32.9619],[97.375741,32.956676],[97.361967,32.941969],[97.369582,32.926535],[97.361743,32.906998],[97.350096,32.903943],[97.355472,32.886894],[97.379101,32.88239],[97.3931,32.828727],[97.380221,32.826313],[97.38582,32.780266],[97.424792,32.727749],[97.423784,32.704945],[97.480786,32.664076],[97.484705,32.652788],[97.513262,32.648836],[97.543723,32.621737],[97.606324,32.615283],[97.610579,32.596],[97.629729,32.575907],[97.662989,32.560006],[97.698601,32.536836],[97.736229,32.52642],[97.757507,32.530942],[97.768817,32.518344],[97.797262,32.520202],[97.804541,32.501706],[97.836906,32.504129],[97.862775,32.499364],[97.880245,32.486358],[97.90645,32.489347],[97.940158,32.482399],[97.947101,32.470765],[97.970283,32.470765],[98.008582,32.451128],[98.023589,32.452502],[98.036803,32.42898],[98.051362,32.428576],[98.086526,32.398499],[98.112171,32.391787],[98.124154,32.400682],[98.139384,32.379089],[98.163125,32.375611],[98.197505,32.36016],[98.218895,32.34236],[98.208928,32.319458],[98.230542,32.262865],[98.219791,32.25671],[98.219119,32.234191],[98.258202,32.210613],[98.295494,32.149898],[98.301654,32.12419],[98.328867,32.108291],[98.345665,32.087277],[98.362687,32.078918],[98.405578,32.04353],[98.402666,32.026642],[98.434807,32.007802],[98.427863,31.996432],[98.434023,31.959873],[98.421592,31.94232],[98.432567,31.922569],[98.40345,31.910456],[98.399307,31.895902],[98.426296,31.856782],[98.415657,31.830259],[98.44119,31.829445],[98.445221,31.807472],[98.461124,31.800228],[98.460116,31.78183],[98.476802,31.782318],[98.493488,31.768233],[98.520477,31.730118],[98.518573,31.716268],[98.548138,31.713498],[98.556985,31.690031],[98.553961,31.656612],[98.587893,31.631989],[98.62093,31.590309],[98.650942,31.578806],[98.696633,31.538572],[98.695849,31.530899],[98.74042,31.493176],[98.771217,31.476024],[98.787231,31.474227],[98.79507,31.458951],[98.837625,31.436564],[98.843225,31.41695],[98.887012,31.374602],[98.810636,31.30679],[98.805933,31.279291],[98.780064,31.251129],[98.747812,31.262837],[98.733813,31.289277],[98.714439,31.304253],[98.692714,31.332644],[98.646127,31.339025],[98.632912,31.332235],[98.616114,31.303762],[98.60346,31.256615],[98.607715,31.228037],[98.623282,31.221321],[98.621042,31.203547],[98.604804,31.18413],[98.638736,31.179213],[98.643663,31.169544],[98.67502,31.154055],[98.709848,31.11864],[98.712424,31.083213],[98.734261,31.066807],[98.736949,31.04925],[98.774801,31.031114],[98.806045,30.995654],[98.796862,30.948354],[98.774465,30.908426],[98.782192,30.891497],[98.848712,30.850312],[98.856999,30.829918],[98.878725,30.822352],[98.883204,30.799731],[98.901794,30.785086],[98.952301,30.769699],[98.963947,30.732166],[98.936958,30.716277],[98.930799,30.703266],[98.907506,30.698325],[98.905938,30.683006],[98.923632,30.639589],[98.922064,30.609095],[98.942558,30.590629],[98.926767,30.569439],[98.937966,30.549563],[98.931583,30.527703],[98.945917,30.499155],[98.944349,30.482731],[98.965403,30.450041],[98.962715,30.426838],[98.974026,30.397929],[98.967307,30.375375],[98.973242,30.353558],[98.967419,30.334961],[98.981529,30.321321],[98.985001,30.274848],[98.970331,30.260041],[98.974362,30.231331],[98.991832,30.216435],[98.981529,30.182911],[98.989144,30.15186],[99.014678,30.135461],[99.009862,30.121296],[99.044802,30.080033],[99.034387,30.022832],[99.043234,30.015037],[99.054993,29.958379],[99.051297,29.942529],[99.06832,29.931407],[99.058017,29.921364],[99.052977,29.892888],[99.041667,29.881927],[99.034051,29.855433],[99.01367,29.817881],[99.018933,29.791952],[99.000679,29.737164],[98.997768,29.68767],[98.992056,29.663205],[99.011318,29.628495],[99.014678,29.607347],[99.052081,29.563955],[99.044802,29.51996],[99.049394,29.49112],[99.061376,29.478948],[99.056897,29.456851],[99.066864,29.420818],[99.058689,29.417398],[99.069775,29.327091],[99.068544,29.297445],[99.084782,29.291264],[99.094189,29.267539],[99.115242,29.242053],[99.111211,29.216645],[99.119162,29.198922],[99.104939,29.162632],[99.11793,29.102397],[99.113786,29.074527],[99.118602,29.033754],[99.127561,29.016586],[99.122969,28.998411],[99.131816,28.949479],[99.123529,28.890126],[99.104044,28.841982],[99.104268,28.81421],[99.11737,28.780554],[99.114346,28.765863],[99.133832,28.734795],[99.126889,28.699517],[99.140887,28.68221],[99.147383,28.641031],[99.162277,28.635735],[99.159253,28.621108],[99.172804,28.613793],[99.167093,28.59521],[99.183779,28.588903],[99.170116,28.565185],[99.172132,28.545164],[99.191618,28.493073],[99.183443,28.472701],[99.18725,28.439862],[99.165525,28.424449],[99.175828,28.400863],[99.201137,28.377439],[99.200913,28.364377],[99.230365,28.349965],[99.238429,28.317004],[99.280648,28.298031],[99.289495,28.286056],[99.281544,28.259908],[99.299574,28.259064],[99.306741,28.227593],[99.3456,28.20447],[99.361055,28.181087],[99.375949,28.180834],[99.402378,28.150691],[99.389164,28.181425],[99.386924,28.210293],[99.405962,28.262523],[99.417608,28.266741],[99.413801,28.292803],[99.393083,28.317762],[99.408985,28.331673],[99.40697,28.357804],[99.420856,28.36876],[99.437318,28.398504],[99.430935,28.416195],[99.417832,28.4167],[99.404506,28.444241],[99.426455,28.452578],[99.414025,28.476826],[99.395659,28.493157],[99.402826,28.514199],[99.394539,28.524213],[99.402938,28.545753],[99.426791,28.555259],[99.463411,28.549202],[99.466099,28.579736],[99.497007,28.602863],[99.496672,28.616231],[99.518173,28.613793],[99.540795,28.623546],[99.542586,28.670614],[99.531724,28.680025],[99.553785,28.710438],[99.601044,28.726396],[99.615826,28.742185],[99.605859,28.771572],[99.622545,28.795243],[99.625569,28.814713],[99.678427,28.810266],[99.700601,28.835019],[99.719527,28.844751],[99.72367,28.810769],[99.722774,28.755956],[99.736437,28.734711],[99.733189,28.719509],[99.756482,28.700357],[99.794446,28.699097],[99.841705,28.653218],[99.834538,28.628085],[99.873285,28.631784],[99.875973,28.611439],[99.91864,28.599079],[99.961531,28.561568],[99.964443,28.539611],[99.987065,28.524465],[99.990312,28.476658],[100.000839,28.464955],[100.045186,28.446178],[100.060864,28.447694],[100.074639,28.424365],[100.060976,28.405833],[100.054257,28.376597],[100.099948,28.359405],[100.134552,28.351651],[100.172628,28.321135],[100.168708,28.296345],[100.147543,28.288755],[100.188418,28.252737],[100.163445,28.2335],[100.168148,28.220758],[100.153366,28.208268],[100.10286,28.201769],[100.091997,28.182354],[100.061984,28.193834],[100.050337,28.181763],[100.033315,28.184633],[100.021109,28.147398],[100.039699,28.130592],[100.061536,28.082776]]]]}},{"type":"Feature","properties":{"adcode":513400,"name":"凉山彝族自治州","center":[102.258746,27.886762],"centroid":[102.08054,27.889541],"childrenNum":17,"level":"city","parent":{"adcode":510000},"subFeatureIndex":20,"acroutes":[100000,510000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.61389,28.597313],[103.585893,28.614886],[103.560696,28.606899],[103.530571,28.612196],[103.531803,28.597649],[103.504142,28.560306],[103.479057,28.547099],[103.42967,28.531786],[103.421831,28.511506],[103.438629,28.500059],[103.441541,28.477331],[103.43303,28.452915],[103.388347,28.420659],[103.370205,28.423354],[103.35699,28.440872],[103.339968,28.443483],[103.313875,28.485581],[103.299541,28.521604],[103.287782,28.533048],[103.253962,28.541209],[103.246571,28.549791],[103.242875,28.59336],[103.272776,28.613121],[103.287334,28.655319],[103.30626,28.681958],[103.31074,28.702037],[103.333585,28.721861],[103.334817,28.743108],[103.3085,28.761749],[103.270984,28.805986],[103.23862,28.813538],[103.225069,28.803971],[103.189905,28.827887],[103.153957,28.82923],[103.112522,28.812364],[103.107482,28.771907],[103.070527,28.73681],[103.066047,28.688511],[103.051265,28.66969],[103.032451,28.665824],[102.996503,28.679941],[102.990904,28.672379],[102.962571,28.681118],[102.938157,28.740001],[102.944205,28.76645],[102.925279,28.801873],[102.926287,28.820168],[102.941741,28.860521],[102.928079,28.896415],[102.946221,28.920058],[102.942413,28.944115],[102.913632,28.999918],[102.909041,29.021612],[102.922143,29.037941],[102.957755,29.052008],[102.970074,29.065068],[102.931326,29.112941],[102.928639,29.127332],[102.944877,29.19006],[102.974553,29.222162],[102.962795,29.250828],[103.02002,29.250744],[103.031779,29.27982],[103.003894,29.287171],[102.962347,29.301871],[102.940397,29.302874],[102.9124,29.264531],[102.905457,29.222245],[102.879812,29.206112],[102.836585,29.208035],[102.833113,29.241886],[102.804556,29.249908],[102.781487,29.236705],[102.766817,29.18705],[102.778575,29.173336],[102.772192,29.159621],[102.740388,29.153348],[102.69828,29.167064],[102.673419,29.161544],[102.649006,29.177601],[102.653373,29.188053],[102.635791,29.210793],[102.618993,29.209707],[102.590884,29.191983],[102.600515,29.169991],[102.594692,29.160039],[102.563,29.159955],[102.552697,29.150671],[102.559864,29.133606],[102.547657,29.116957],[102.522236,29.111602],[102.514845,29.09361],[102.524476,29.077457],[102.517757,29.058454],[102.525484,29.036267],[102.507006,29.025883],[102.497823,29.003269],[102.471506,28.983834],[102.46613,28.969339],[102.482929,28.932716],[102.481473,28.920142],[102.454148,28.873606],[102.429846,28.845422],[102.381804,28.855572],[102.352351,28.854566],[102.319763,28.883082],[102.29087,28.899685],[102.253802,28.898763],[102.22155,28.962217],[102.180898,29.013404],[102.188961,29.024626],[102.16522,29.036518],[102.14999,29.031158],[102.099708,28.98065],[102.058384,28.954088],[102.050993,28.920477],[102.00631,28.907567],[101.988392,28.88803],[101.98548,28.857585],[101.962747,28.824027],[101.989288,28.80372],[101.997799,28.750162],[102.022772,28.723373],[102.018069,28.713965],[101.985032,28.702877],[101.946621,28.67137],[101.928031,28.640947],[101.918736,28.612616],[101.904289,28.606562],[101.874165,28.613121],[101.832393,28.594033],[101.753554,28.533889],[101.757138,28.49341],[101.745827,28.453672],[101.731829,28.434556],[101.730709,28.410635],[101.715479,28.380894],[101.667548,28.351819],[101.631712,28.354854],[101.620177,28.374911],[101.591621,28.358056],[101.56228,28.333106],[101.509758,28.314727],[101.482097,28.318521],[101.46821,28.404317],[101.454436,28.411056],[101.439654,28.471691],[101.425543,28.489538],[101.373021,28.461756],[101.36787,28.472449],[101.383996,28.482888],[101.413001,28.521099],[101.427559,28.505025],[101.469218,28.50553],[101.473698,28.499049],[101.515357,28.494083],[101.569895,28.474216],[101.594532,28.475227],[101.62992,28.491558],[101.617714,28.509402],[101.620177,28.537676],[101.591844,28.555427],[101.575382,28.58226],[101.550745,28.599415],[101.516925,28.58924],[101.489824,28.626824],[101.472914,28.631532],[101.445813,28.625479],[101.427223,28.646326],[101.367646,28.629262],[101.369213,28.647755],[101.356223,28.66616],[101.297542,28.673135],[101.277048,28.66574],[101.229677,28.66658],[101.202576,28.652714],[101.209183,28.700609],[101.200224,28.717409],[101.20504,28.754948],[101.189922,28.762085],[101.173123,28.788696],[101.171668,28.836445],[101.192609,28.891133],[101.180851,28.905471],[101.183986,28.941265],[101.160357,28.946965],[101.145351,28.999751],[101.155877,29.017759],[101.142327,29.031326],[101.138855,29.053515],[101.116346,29.070593],[101.118362,29.111937],[101.09742,29.146573],[101.056881,29.166395],[101.050273,29.145652],[101.010182,29.12683],[100.959563,29.074109],[100.929103,29.061217],[100.936382,29.087919],[100.922384,29.099468],[100.924735,29.119802],[100.916336,29.139881],[100.883412,29.146405],[100.837497,29.112941],[100.802557,29.107837],[100.772432,29.087668],[100.77288,29.063812],[100.786431,29.057868],[100.832458,29.055357],[100.845784,29.02069],[100.820475,28.993049],[100.797518,28.989279],[100.779264,29.010389],[100.714199,29.005195],[100.704792,28.997322],[100.680155,29.014158],[100.65003,29.01935],[100.658093,29.005447],[100.63424,28.990117],[100.609155,28.954591],[100.577014,28.945456],[100.544762,28.955261],[100.521357,28.949646],[100.530316,28.924417],[100.543082,28.91704],[100.541738,28.889791],[100.558536,28.86136],[100.5638,28.833425],[100.586533,28.821426],[100.579926,28.797929],[100.594708,28.743948],[100.562792,28.749574],[100.539946,28.736726],[100.508814,28.708674],[100.472082,28.70859],[100.472418,28.696493],[100.49112,28.694812],[100.523708,28.671118],[100.526284,28.643048],[100.520125,28.616568],[100.530428,28.574101],[100.514973,28.559633],[100.506014,28.524213],[100.49112,28.500312],[100.449909,28.474722],[100.439606,28.448199],[100.4162,28.433209],[100.423928,28.420153],[100.420792,28.38654],[100.398618,28.359405],[100.390331,28.324929],[100.416424,28.306464],[100.413849,28.290779],[100.372861,28.250459],[100.367822,28.206242],[100.380252,28.187925],[100.38742,28.133463],[100.401754,28.096464],[100.404666,28.073143],[100.426839,28.019468],[100.418104,28.005601],[100.396715,28.005516],[100.380812,28.015494],[100.349008,28.017354],[100.337025,28.010167],[100.302981,28.009829],[100.270505,27.966358],[100.25617,27.961283],[100.234445,27.971011],[100.225822,27.987165],[100.201744,27.984205],[100.100284,28.047957],[100.072063,28.08548],[100.061536,28.082776],[100.086733,28.030374],[100.12089,28.018707],[100.142615,27.991817],[100.196145,27.93734],[100.16994,27.907637],[100.210479,27.877248],[100.25785,27.864972],[100.294918,27.869544],[100.30914,27.859129],[100.30858,27.830421],[100.286071,27.805856],[100.302869,27.792386],[100.307125,27.748658],[100.299509,27.736113],[100.32773,27.720429],[100.344416,27.734333],[100.3508,27.755947],[100.374765,27.754591],[100.377005,27.775608],[100.392795,27.787556],[100.411609,27.815683],[100.415192,27.840923],[100.443189,27.866242],[100.478017,27.857859],[100.495599,27.844649],[100.504334,27.852016],[100.511166,27.827626],[100.536587,27.824661],[100.546442,27.808567],[100.55988,27.824153],[100.607027,27.855996],[100.609043,27.876232],[100.634688,27.915338],[100.654958,27.910853],[100.679819,27.924224],[100.704456,27.886814],[100.699865,27.86912],[100.719462,27.858283],[100.708152,27.842278],[100.707032,27.801366],[100.73962,27.774507],[100.749923,27.772897],[100.775456,27.743064],[100.781503,27.693635],[100.789007,27.684391],[100.836489,27.681677],[100.848472,27.670905],[100.832346,27.650207],[100.850488,27.640705],[100.828202,27.615758],[100.855303,27.62365],[100.854071,27.596662],[100.86807,27.591824],[100.912081,27.521689],[100.901554,27.486265],[100.90133,27.453379],[100.921264,27.47131],[100.93683,27.469101],[100.957212,27.43825],[100.951836,27.427199],[101.001783,27.349303],[101.020261,27.344454],[101.010182,27.312292],[101.030004,27.294591],[101.0281,27.266586],[101.042546,27.247003],[101.038963,27.233464],[101.059568,27.198629],[101.082526,27.195051],[101.118698,27.20868],[101.170436,27.195648],[101.168084,27.165232],[101.197425,27.18321],[101.246027,27.179205],[101.283095,27.197607],[101.293174,27.189599],[101.315571,27.197522],[101.334721,27.179546],[101.355215,27.184658],[101.394299,27.145206],[101.41412,27.162164],[101.426999,27.190792],[101.419048,27.215835],[101.470674,27.238829],[101.495759,27.228014],[101.514685,27.229802],[101.530475,27.277823],[101.55836,27.295357],[101.584229,27.334671],[101.598452,27.340456],[101.635408,27.33952],[101.633728,27.327949],[101.659261,27.313569],[101.664748,27.288888],[101.643135,27.24513],[101.65075,27.208169],[101.681994,27.150404],[101.708759,27.129012],[101.744483,27.124835],[101.761729,27.133444],[101.803725,27.114691],[101.817387,27.101732],[101.833065,27.122619],[101.870357,27.129694],[101.879204,27.168129],[101.862966,27.182784],[101.878196,27.189855],[101.878084,27.222734],[101.886259,27.255603],[101.896786,27.267096],[101.912241,27.243683],[101.903618,27.218561],[101.914368,27.213195],[101.908433,27.192666],[101.922095,27.180654],[101.941021,27.143842],[101.927247,27.137109],[101.938782,27.104034],[101.97305,27.122619],[101.993879,27.115202],[102.000263,27.096873],[102.025908,27.093462],[102.034083,27.076152],[102.049761,27.082718],[102.081566,27.129268],[102.086269,27.146484],[102.114826,27.159437],[102.122665,27.171878],[102.161077,27.182187],[102.176419,27.137535],[102.203296,27.131398],[102.210351,27.11776],[102.2407,27.106592],[102.238684,27.064298],[102.217518,27.04596],[102.230173,27.000485],[102.214495,26.957297],[102.229165,26.945174],[102.225917,26.923999],[102.205312,26.91042],[102.214159,26.889153],[102.204976,26.85216],[102.202288,26.840795],[102.215615,26.813617],[102.192657,26.820455],[102.18213,26.812591],[102.174179,26.802419],[102.189857,26.791904],[102.175075,26.774975],[102.192993,26.763602],[102.195681,26.744616],[102.175859,26.726568],[102.178883,26.708346],[102.157605,26.692346],[102.157045,26.680708],[102.135543,26.674718],[102.132296,26.637741],[102.114714,26.63406],[102.084477,26.654519],[102.068351,26.656659],[102.073502,26.670867],[102.054801,26.692688],[102.063088,26.718613],[102.04573,26.737517],[102.033187,26.712367],[102.006534,26.716388],[101.997463,26.698849],[101.995559,26.653577],[101.984024,26.638854],[102.001383,26.633632],[102.011125,26.598525],[102.030611,26.596898],[102.038562,26.571717],[102.034083,26.541133],[102.050769,26.49417],[102.033411,26.470768],[102.029491,26.434068],[102.020196,26.422832],[101.994999,26.431409],[101.982121,26.454906],[101.942701,26.448989],[101.929039,26.419487],[101.939118,26.410824],[101.927583,26.362263],[101.935198,26.322954],[101.926015,26.306213],[101.921759,26.27032],[101.90205,26.243521],[101.906753,26.191367],[101.872261,26.181483],[101.840681,26.16008],[101.844712,26.141683],[101.832282,26.117176],[101.839897,26.082429],[101.835417,26.045865],[101.858039,26.049392],[101.881668,26.072364],[101.899698,26.099202],[101.922879,26.107975],[101.954684,26.084494],[102.020756,26.096278],[102.052561,26.075547],[102.084253,26.065138],[102.107771,26.068235],[102.117066,26.086128],[102.130056,26.086386],[102.136999,26.108319],[102.152342,26.109609],[102.175075,26.147013],[102.1996,26.158447],[102.241708,26.188617],[102.244955,26.210874],[102.257386,26.220068],[102.282807,26.220154],[102.351007,26.245927],[102.396138,26.297627],[102.440149,26.300632],[102.542954,26.340121],[102.551577,26.362178],[102.571063,26.362607],[102.629408,26.33686],[102.638591,26.307673],[102.611266,26.282343],[102.601299,26.249019],[102.620113,26.245755],[102.659197,26.221442],[102.674539,26.205374],[102.719782,26.218177],[102.721686,26.239999],[102.73994,26.268602],[102.761889,26.275301],[102.785183,26.298915],[102.833449,26.306642],[102.867493,26.339005],[102.88026,26.366125],[102.89325,26.338834],[102.926847,26.334628],[102.975561,26.340894],[102.998183,26.371874],[102.988328,26.409023],[102.997735,26.459622],[102.990344,26.483027],[103.031891,26.486884],[103.057088,26.528109],[103.053505,26.554242],[103.036706,26.555355],[103.019348,26.590047],[103.029651,26.601694],[103.024164,26.639795],[103.028195,26.659569],[103.00591,26.677456],[103.009605,26.70732],[102.996727,26.724943],[102.98396,26.764799],[102.991799,26.774633],[102.964474,26.839428],[102.947452,26.844299],[102.896498,26.912556],[102.888883,26.954565],[102.895266,26.999802],[102.871301,27.02796],[102.898962,27.076323],[102.913744,27.134637],[102.902209,27.195903],[102.90165,27.235763],[102.883284,27.258242],[102.882164,27.293314],[102.900082,27.317653],[102.911392,27.349133],[102.941405,27.40552],[102.955292,27.411386],[102.97097,27.377628],[102.985304,27.367337],[103.033347,27.388003],[103.055632,27.409516],[103.079598,27.397272],[103.111514,27.401013],[103.14455,27.425584],[103.14455,27.450574],[103.190353,27.523472],[103.204464,27.529163],[103.218126,27.562111],[103.236156,27.570431],[103.278711,27.561856],[103.293606,27.564743],[103.299205,27.597171],[103.280391,27.617964],[103.314547,27.655297],[103.349711,27.678454],[103.370093,27.708644],[103.39305,27.709407],[103.420935,27.742979],[103.448148,27.7551],[103.464722,27.782472],[103.489584,27.797384],[103.509181,27.84033],[103.499998,27.877502],[103.502574,27.91043],[103.526315,27.940555],[103.563943,27.964159],[103.563271,27.977693],[103.54065,27.965766],[103.516685,27.965259],[103.498879,27.984121],[103.496527,28.016593],[103.48824,28.032403],[103.459459,28.021412],[103.43247,28.041279],[103.432918,28.072213],[103.453636,28.087677],[103.454979,28.12375],[103.47021,28.122145],[103.533147,28.168508],[103.552633,28.191302],[103.573238,28.230884],[103.608178,28.239069],[103.632368,28.259992],[103.649502,28.25704],[103.694745,28.227256],[103.702024,28.198983],[103.721286,28.202022],[103.739987,28.236032],[103.770336,28.2335],[103.78579,28.254087],[103.813003,28.265138],[103.828906,28.28496],[103.870229,28.301067],[103.875604,28.322147],[103.853431,28.356708],[103.859814,28.383506],[103.851303,28.40676],[103.829801,28.436325],[103.830249,28.458388],[103.810428,28.49543],[103.781983,28.524549],[103.75701,28.522782],[103.739987,28.51201],[103.724533,28.471522],[103.685002,28.497955],[103.689929,28.519332],[103.712999,28.541294],[103.712551,28.552904],[103.689257,28.562578],[103.665404,28.594874],[103.639983,28.604881],[103.61389,28.597313]]],[[[101.91672,26.703127],[101.913024,26.680537],[101.920528,26.635515],[101.938782,26.639367],[101.946509,26.707662],[101.91672,26.703127]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/520000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/520000.json new file mode 100644 index 0000000..942b253 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/520000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":520100,"name":"贵阳市","center":[106.713478,26.578343],"centroid":[106.711127,26.84011],"childrenNum":10,"level":"city","parent":{"adcode":520000},"subFeatureIndex":0,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.200763,27.355803],[107.170482,27.356629],[107.150034,27.348876],[107.098585,27.321533],[107.087672,27.322542],[107.065305,27.338142],[107.0412,27.350711],[107.018474,27.356491],[107.005761,27.355207],[106.993709,27.349427],[106.957131,27.312539],[106.934105,27.306252],[106.926909,27.291336],[106.913057,27.278852],[106.905982,27.267697],[106.894049,27.263427],[106.880857,27.272058],[106.866106,27.288215],[106.857411,27.308042],[106.840981,27.321257],[106.820533,27.32424],[106.795289,27.312631],[106.79319,27.304416],[106.798766,27.2895],[106.79259,27.276602],[106.772922,27.25273],[106.76051,27.247909],[106.760629,27.230827],[106.745159,27.21806],[106.737244,27.222377],[106.74276,27.238955],[106.754153,27.245062],[106.735325,27.255898],[106.735745,27.276097],[106.72663,27.297027],[106.714877,27.309235],[106.703184,27.308546],[106.688073,27.313365],[106.664388,27.301846],[106.632907,27.302397],[106.619475,27.274766],[106.586855,27.251353],[106.553814,27.243777],[106.531568,27.22697],[106.505664,27.213927],[106.477001,27.195094],[106.451696,27.190363],[106.446539,27.186687],[106.440063,27.161969],[106.413679,27.148964],[106.401207,27.122077],[106.399648,27.091964],[106.41158,27.063086],[106.413559,27.041192],[106.427411,27.022054],[106.441502,27.015014],[106.441922,27.007468],[106.420815,26.992835],[106.394551,26.984275],[106.383397,26.976957],[106.372064,26.959097],[106.364689,26.932072],[106.357673,26.920883],[106.357973,26.899053],[106.354435,26.892329],[106.339084,26.882794],[106.331529,26.882932],[106.308203,26.895369],[106.301487,26.895507],[106.27972,26.863491],[106.26275,26.857778],[106.244581,26.870908],[106.234148,26.891454],[106.223234,26.890901],[106.211302,26.88284],[106.19757,26.868789],[106.169986,26.859759],[106.168787,26.855843],[106.149479,26.85317],[106.140065,26.846581],[106.13137,26.832434],[106.125733,26.803903],[106.149659,26.785371],[106.165369,26.777533],[106.172685,26.767573],[106.171546,26.754015],[106.16429,26.728556],[106.16393,26.709734],[106.173344,26.682419],[106.16471,26.669774],[106.133588,26.665113],[106.125074,26.657728],[106.126573,26.64942],[106.143123,26.640049],[106.150438,26.624444],[106.16393,26.613271],[106.171126,26.597894],[106.187496,26.587087],[106.188755,26.574247],[106.18126,26.571014],[106.187676,26.562514],[106.184078,26.554661],[106.201407,26.542371],[106.2134,26.538259],[106.232529,26.538721],[106.243742,26.544682],[106.276962,26.555539],[106.294951,26.542279],[106.315698,26.536365],[106.325712,26.520331],[106.320076,26.494865],[106.323674,26.488995],[106.34586,26.487146],[106.352756,26.47374],[106.344001,26.471613],[106.343522,26.463338],[106.326552,26.456495],[106.327391,26.451732],[106.356174,26.449004],[106.367027,26.444056],[106.398209,26.439709],[106.409482,26.44179],[106.434247,26.457928],[106.443901,26.457604],[106.450257,26.446969],[106.44588,26.443501],[106.450977,26.422968],[106.46117,26.425419],[106.476761,26.405576],[106.477241,26.395214],[106.492472,26.386748],[106.497568,26.379946],[106.515438,26.382399],[106.539243,26.377494],[106.549857,26.380085],[106.562689,26.375782],[106.562989,26.362363],[106.556573,26.345842],[106.562089,26.338437],[106.547218,26.317977],[106.536185,26.311959],[106.522393,26.31557],[106.524372,26.306033],[106.515738,26.295291],[106.503385,26.289225],[106.497628,26.277047],[106.487075,26.273851],[106.485995,26.262134],[106.501286,26.25741],[106.500627,26.244904],[106.513219,26.24898],[106.515738,26.239021],[106.500747,26.224335],[106.513219,26.220165],[106.526891,26.230728],[106.533127,26.226235],[106.567486,26.233276],[106.568805,26.225169],[106.575282,26.22679],[106.591472,26.219887],[106.595489,26.22869],[106.606703,26.23323],[106.614678,26.230543],[106.629489,26.235037],[106.634826,26.243653],[106.629429,26.270193],[106.637524,26.273759],[106.649157,26.268201],[106.680698,26.289225],[106.688133,26.291726],[106.704204,26.287512],[106.722792,26.276908],[106.742041,26.288299],[106.751215,26.28089],[106.753134,26.265098],[106.771063,26.261115],[106.780717,26.267785],[106.794989,26.269267],[106.788992,26.2588],[106.796008,26.254585],[106.797927,26.223316],[106.817655,26.20506],[106.82665,26.189211],[106.835764,26.183418],[106.858191,26.186894],[106.866406,26.195746],[106.871622,26.208767],[106.886194,26.213679],[106.887333,26.224196],[106.882476,26.228829],[106.859869,26.235871],[106.858191,26.243931],[106.871323,26.266488],[106.886074,26.272138],[106.882956,26.28478],[106.873002,26.287929],[106.868384,26.29793],[106.87582,26.30219],[106.874381,26.314042],[106.851175,26.31469],[106.840981,26.304227],[106.829888,26.307375],[106.785095,26.313023],[106.782936,26.321171],[106.817715,26.340427],[106.82617,26.348156],[106.824311,26.36787],[106.834805,26.379252],[106.833605,26.386609],[106.813997,26.387673],[106.791211,26.374348],[106.778679,26.374163],[106.757032,26.391883],[106.784735,26.426806],[106.789592,26.43046],[106.813338,26.430044],[106.819214,26.434345],[106.812678,26.44794],[106.829048,26.453073],[106.829888,26.459685],[106.80956,26.472908],[106.805302,26.48072],[106.808421,26.490335],[106.822812,26.500828],[106.837683,26.506836],[106.843379,26.517465],[106.838822,26.528094],[106.851475,26.540292],[106.840081,26.542787],[106.833605,26.556093],[106.840981,26.567272],[106.852734,26.5736],[106.880377,26.576141],[106.893509,26.584963],[106.907061,26.588565],[106.916115,26.596739],[106.911618,26.61304],[106.897107,26.617703],[106.883435,26.616549],[106.872942,26.623152],[106.882956,26.632385],[106.893869,26.632201],[106.896687,26.63871],[106.913177,26.642818],[106.917435,26.636725],[106.939381,26.647111],[106.962048,26.647342],[106.95761,26.660128],[106.948736,26.656159],[106.951494,26.684495],[106.972601,26.690356],[106.973081,26.708488],[106.969004,26.706828],[106.965646,26.722144],[106.982136,26.726388],[106.966365,26.731139],[106.968344,26.739903],[106.982076,26.752678],[106.995268,26.750188],[107.006181,26.757705],[107.015895,26.755122],[107.027888,26.768126],[107.042459,26.769325],[107.064046,26.787953],[107.0746,26.802797],[107.088871,26.803212],[107.110218,26.813998],[107.130546,26.820266],[107.143918,26.818423],[107.172461,26.81916],[107.197226,26.806438],[107.216654,26.811924],[107.244477,26.802244],[107.255271,26.792286],[107.266064,26.803258],[107.270022,26.841282],[107.277277,26.844692],[107.279196,26.86409],[107.271761,26.895277],[107.267083,26.90283],[107.250533,26.963194],[107.243877,26.969178],[107.236082,26.996563],[107.198365,27.008435],[107.192249,27.026655],[107.167004,27.025826],[107.166644,27.040916],[107.174319,27.070858],[107.174259,27.092976],[107.190869,27.115043],[107.191769,27.123272],[107.180496,27.145655],[107.188531,27.157006],[107.215574,27.166104],[107.242618,27.170194],[107.258688,27.180623],[107.262406,27.216269],[107.234823,27.232802],[107.236742,27.241068],[107.192189,27.242996],[107.155791,27.23418],[107.138401,27.245154],[107.142958,27.255623],[107.162567,27.263381],[107.169942,27.284268],[107.19069,27.302581],[107.202982,27.318045],[107.205321,27.339839],[107.200763,27.355803]]]]}},{"type":"Feature","properties":{"adcode":520200,"name":"六盘水市","center":[104.846743,26.584643],"centroid":[104.89694,26.128029],"childrenNum":4,"level":"city","parent":{"adcode":520000},"subFeatureIndex":1,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.756941,26.765959],[104.763177,26.733953],[104.761918,26.717715],[104.75742,26.708719],[104.764016,26.698569],[104.762097,26.691048],[104.747706,26.685603],[104.744288,26.66779],[104.745008,26.646742],[104.737452,26.635201],[104.694638,26.609577],[104.688282,26.60048],[104.69182,26.580482],[104.692839,26.558033],[104.688402,26.543527],[104.670473,26.536273],[104.676829,26.520747],[104.655542,26.518667],[104.581427,26.543111],[104.572132,26.540616],[104.570633,26.524628],[104.59234,26.522918],[104.615126,26.508962],[104.620883,26.497222],[104.638572,26.478132],[104.631856,26.461627],[104.632216,26.451825],[104.64211,26.439108],[104.664836,26.434946],[104.664836,26.419453],[104.668794,26.409878],[104.665376,26.396232],[104.680966,26.378743],[104.684025,26.369628],[104.679527,26.363474],[104.670533,26.364816],[104.65908,26.355792],[104.659499,26.335567],[104.645888,26.330244],[104.621962,26.328994],[104.613807,26.322699],[104.5918,26.317097],[104.581547,26.295013],[104.568534,26.281678],[104.555342,26.273527],[104.54203,26.253102],[104.549886,26.216134],[104.538673,26.207145],[104.539452,26.197043],[104.528659,26.175215],[104.519484,26.168077],[104.518884,26.132843],[104.5265,26.121715],[104.52668,26.100336],[104.516366,26.085215],[104.508451,26.082896],[104.499276,26.07051],[104.479368,26.077469],[104.466836,26.08721],[104.45994,26.085865],[104.455503,26.076958],[104.472772,26.053298],[104.468815,26.033623],[104.462399,26.029632],[104.470494,26.00949],[104.462159,25.996864],[104.462459,25.985955],[104.44399,25.959861],[104.441531,25.948902],[104.446568,25.942865],[104.438353,25.927724],[104.420244,25.918573],[104.414548,25.909886],[104.418445,25.892743],[104.430918,25.896739],[104.435715,25.89265],[104.437514,25.875737],[104.441891,25.869138],[104.429658,25.858031],[104.423602,25.842182],[104.430918,25.825773],[104.428099,25.818428],[104.416167,25.81164],[104.411489,25.796994],[104.402675,25.79811],[104.403814,25.786578],[104.397938,25.761556],[104.391102,25.760905],[104.385525,25.746066],[104.373113,25.731598],[104.365497,25.730388],[104.351945,25.73974],[104.353145,25.745508],[104.328859,25.760486],[104.324602,25.748951],[104.3276,25.737088],[104.322263,25.732668],[104.323463,25.703401],[104.316267,25.683901],[104.314948,25.666306],[104.308532,25.660534],[104.31171,25.647126],[104.324722,25.640701],[104.314468,25.631016],[104.331018,25.615602],[104.329759,25.603586],[104.335455,25.59809],[104.36046,25.599627],[104.369515,25.593619],[104.368495,25.577548],[104.381807,25.58598],[104.389123,25.595482],[104.412809,25.585374],[104.421743,25.584675],[104.428399,25.576057],[104.423182,25.563805],[104.434216,25.555465],[104.436134,25.520422],[104.431637,25.504248],[104.418685,25.499353],[104.430318,25.48672],[104.434695,25.47222],[104.446448,25.476463],[104.449686,25.495065],[104.483566,25.494785],[104.499396,25.507231],[104.507791,25.509655],[104.515646,25.521587],[104.524521,25.526807],[104.547787,25.516646],[104.54359,25.524896],[104.549406,25.529836],[104.557021,25.524103],[104.553304,25.515388],[104.556002,25.503828],[104.551145,25.485415],[104.551205,25.473852],[104.543649,25.464014],[104.545688,25.444941],[104.544249,25.419522],[104.538852,25.410145],[104.54329,25.400815],[104.560859,25.394797],[104.567755,25.402914],[104.593599,25.387845],[104.591261,25.384812],[104.616026,25.364606],[104.636114,25.365166],[104.645828,25.356813],[104.654822,25.360033],[104.659499,25.374313],[104.664536,25.377766],[104.683965,25.362646],[104.690501,25.347805],[104.687802,25.333102],[104.69242,25.328574],[104.710409,25.334969],[104.754962,25.340384],[104.783864,25.337163],[104.822241,25.341971],[104.834054,25.348925],[104.849824,25.36778],[104.870752,25.351306],[104.886882,25.362226],[104.888801,25.368246],[104.880946,25.374546],[104.869073,25.375853],[104.855761,25.383692],[104.850484,25.402728],[104.850604,25.414437],[104.860018,25.442982],[104.872671,25.460936],[104.892818,25.480286],[104.913146,25.517019],[104.911767,25.541113],[104.914345,25.550153],[104.902832,25.557049],[104.888261,25.55677],[104.880046,25.564783],[104.881845,25.589101],[104.876688,25.600512],[104.863136,25.614391],[104.861577,25.621516],[104.870812,25.633018],[104.896056,25.650338],[104.901333,25.65909],[104.909189,25.688927],[104.904691,25.709962],[104.877887,25.744392],[104.870092,25.774905],[104.872851,25.780299],[104.87315,25.805875],[104.884963,25.822333],[104.888501,25.837348],[104.901093,25.84855],[104.911047,25.846923],[104.932994,25.864817],[104.947445,25.86886],[104.948405,25.897807],[104.944327,25.906867],[104.951163,25.920152],[104.936532,25.928699],[104.930056,25.940589],[104.94061,25.964087],[104.94007,25.974673],[104.949604,26.000206],[104.955541,26.009211],[104.959978,26.044806],[104.970891,26.055478],[104.976828,26.066288],[104.988341,26.068422],[105.011966,26.091523],[104.999974,26.120741],[105.004531,26.133029],[105.019162,26.148839],[105.032714,26.156256],[105.052142,26.172665],[105.063355,26.168772],[105.065874,26.162514],[105.090819,26.158528],[105.104371,26.164646],[105.124698,26.163997],[105.13861,26.1506],[105.158518,26.174566],[105.18772,26.173824],[105.18802,26.163627],[105.177526,26.158713],[105.180764,26.149534],[105.175248,26.119396],[105.18886,26.10349],[105.193956,26.084241],[105.18874,26.066891],[105.209187,26.04527],[105.220161,26.022903],[105.227776,25.996725],[105.236291,25.985722],[105.249843,25.979687],[105.25422,25.98549],[105.248583,25.991479],[105.261176,26.008561],[105.277486,26.012321],[105.299673,26.008097],[105.359097,26.018076],[105.383862,26.012692],[105.408567,26.016916],[105.428175,26.016498],[105.45282,26.019283],[105.498992,26.030328],[105.509366,26.039006],[105.527055,26.060535],[105.547083,26.074963],[105.567171,26.077747],[105.582462,26.066056],[105.592296,26.062438],[105.598712,26.074314],[105.605008,26.113507],[105.613403,26.135069],[105.607227,26.154309],[105.611724,26.160335],[105.620838,26.157554],[105.630912,26.141931],[105.646323,26.1436],[105.669469,26.135301],[105.668749,26.14768],[105.680322,26.156349],[105.679363,26.162746],[105.690157,26.169189],[105.701789,26.170209],[105.709345,26.164693],[105.722837,26.170162],[105.715761,26.188887],[105.704308,26.18175],[105.680442,26.200658],[105.661674,26.208535],[105.633611,26.207053],[105.604588,26.209091],[105.591576,26.222945],[105.591756,26.232072],[105.56861,26.22452],[105.558656,26.231284],[105.542586,26.222157],[105.531193,26.221879],[105.533351,26.233091],[105.524776,26.236658],[105.512064,26.223733],[105.50265,26.22957],[105.492216,26.24583],[105.473328,26.259819],[105.471469,26.283298],[105.48574,26.296865],[105.487779,26.315153],[105.493955,26.333114],[105.500011,26.34089],[105.51854,26.354404],[105.537909,26.359679],[105.527115,26.381658],[105.514283,26.414642],[105.513443,26.430738],[105.501511,26.439385],[105.454979,26.438969],[105.442326,26.442345],[105.428535,26.458806],[105.399872,26.459407],[105.378165,26.464817],[105.368031,26.479657],[105.358857,26.471058],[105.341107,26.493016],[105.350462,26.499441],[105.35388,26.509424],[105.331333,26.511689],[105.31994,26.526338],[105.295295,26.532391],[105.281504,26.518667],[105.2544,26.520007],[105.248344,26.524074],[105.218362,26.533916],[105.208468,26.544451],[105.212965,26.56621],[105.211406,26.575263],[105.194736,26.581545],[105.183643,26.590689],[105.169012,26.590366],[105.147485,26.576695],[105.140589,26.581221],[105.134412,26.602188],[105.123559,26.61244],[105.126797,26.625552],[105.114085,26.620982],[105.109108,26.624029],[105.100113,26.642218],[105.086921,26.649558],[105.094057,26.656389],[105.095196,26.673143],[105.080925,26.698477],[105.079725,26.721175],[105.094477,26.741425],[105.094656,26.750141],[105.084583,26.762916],[105.05628,26.770017],[105.052382,26.779146],[105.065934,26.786846],[105.066174,26.792102],[105.047285,26.809389],[105.011487,26.816164],[104.997215,26.830221],[104.999134,26.845844],[105.020901,26.864366],[105.025158,26.879753],[105.018682,26.917752],[104.998355,26.914574],[104.969092,26.903521],[104.947625,26.883208],[104.936712,26.865702],[104.925858,26.843355],[104.916444,26.832295],[104.900794,26.831051],[104.872731,26.850359],[104.866734,26.857179],[104.863016,26.87183],[104.854502,26.881872],[104.845207,26.886387],[104.829916,26.880583],[104.820862,26.86174],[104.800714,26.844507],[104.796097,26.828839],[104.783924,26.815657],[104.771692,26.80736],[104.756701,26.789336],[104.756941,26.765959]]],[[[104.705312,26.802336],[104.700515,26.842941],[104.696557,26.852064],[104.684205,26.852387],[104.667355,26.839392],[104.651464,26.836719],[104.647687,26.855013],[104.639112,26.863399],[104.629937,26.824414],[104.626819,26.819621],[104.603373,26.801598],[104.597137,26.788321],[104.604213,26.772276],[104.602834,26.761486],[104.59174,26.747328],[104.598336,26.73815],[104.628019,26.731554],[104.650925,26.733076],[104.655182,26.743362],[104.662198,26.745022],[104.680667,26.767342],[104.682526,26.776057],[104.705312,26.802336]]]]}},{"type":"Feature","properties":{"adcode":520300,"name":"遵义市","center":[106.937265,27.706626],"centroid":[107.089441,28.168743],"childrenNum":14,"level":"city","parent":{"adcode":520000},"subFeatureIndex":2,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.069398,29.086552],[108.035999,29.054051],[108.0345,29.046737],[108.024246,29.0387],[107.993904,29.033823],[107.949291,29.033733],[107.931122,29.035223],[107.908815,29.007359],[107.887648,29.008533],[107.883031,28.986534],[107.871998,28.983056],[107.86756,28.960464],[107.842016,28.964622],[107.828104,28.976143],[107.810415,28.984321],[107.821208,29.005733],[107.823547,29.03423],[107.815092,29.034772],[107.803459,29.042899],[107.78523,29.047234],[107.789847,29.082355],[107.799981,29.106183],[107.810655,29.139389],[107.795184,29.146471],[107.782352,29.161671],[107.775216,29.162843],[107.767901,29.17511],[107.760285,29.17768],[107.759386,29.192289],[107.751591,29.199638],[107.739418,29.189043],[107.724727,29.182189],[107.727245,29.175696],[107.718491,29.156123],[107.707577,29.154184],[107.698643,29.141239],[107.662604,29.147914],[107.659486,29.162888],[107.645874,29.160859],[107.628785,29.16582],[107.616912,29.162979],[107.606718,29.165459],[107.600602,29.159596],[107.601022,29.147824],[107.589269,29.150034],[107.585071,29.158333],[107.590168,29.165279],[107.581174,29.172539],[107.576256,29.18512],[107.575477,29.207302],[107.569301,29.219427],[107.55437,29.219472],[107.549573,29.210052],[107.532243,29.19549],[107.515333,29.194498],[107.48829,29.174704],[107.473059,29.171006],[107.462325,29.176868],[107.464004,29.195445],[107.441458,29.203966],[107.427067,29.190305],[107.4044,29.18787],[107.403261,29.172494],[107.412316,29.1614],[107.408238,29.150891],[107.408418,29.138352],[107.42149,29.13578],[107.427606,29.128291],[107.412675,29.095398],[107.392288,29.091246],[107.382034,29.097519],[107.369741,29.091607],[107.376097,29.074772],[107.377896,29.057979],[107.390729,29.059063],[107.395166,29.039648],[107.377297,29.026779],[107.364165,29.009617],[107.370461,28.993898],[107.396965,28.993356],[107.40446,28.981881],[107.40554,28.972258],[107.412975,28.960148],[107.42155,28.954545],[107.43876,28.955268],[107.441038,28.943789],[107.433603,28.933755],[107.42089,28.925212],[107.413815,28.911424],[107.415614,28.889811],[107.406139,28.89153],[107.391928,28.868466],[107.395406,28.860867],[107.383473,28.848564],[107.367283,28.84499],[107.359907,28.849966],[107.331964,28.84119],[107.345156,28.829608],[107.325368,28.809562],[107.304621,28.806757],[107.277157,28.799154],[107.261447,28.792727],[107.252392,28.780551],[107.253532,28.766789],[107.246636,28.761854],[107.219232,28.772719],[107.218753,28.788698],[107.213416,28.795035],[107.210598,28.814812],[107.216354,28.82816],[107.226368,28.836802],[107.195127,28.838068],[107.196866,28.847388],[107.20652,28.868014],[107.194048,28.876607],[107.198425,28.878416],[107.193568,28.888771],[107.184094,28.879953],[107.182654,28.887144],[107.167124,28.880586],[107.155851,28.882983],[107.145777,28.876878],[107.141939,28.887731],[107.096666,28.890083],[107.09025,28.875114],[107.072681,28.866612],[107.059789,28.868466],[107.063386,28.877059],[107.072321,28.87932],[107.066565,28.895373],[107.052533,28.891123],[107.045577,28.874933],[107.058709,28.868964],[107.038981,28.863717],[107.038861,28.877963],[107.032385,28.882305],[107.016075,28.882486],[107.019133,28.860687],[107.005162,28.859194],[107.002643,28.85449],[106.983395,28.851187],[106.989271,28.829563],[106.980816,28.813183],[106.981356,28.804268],[106.988672,28.790328],[106.987892,28.774666],[106.967804,28.774123],[106.951734,28.76697],[106.950235,28.777608],[106.94226,28.782135],[106.938422,28.792365],[106.923071,28.810015],[106.905382,28.796121],[106.897887,28.801145],[106.886373,28.794718],[106.874261,28.779736],[106.864607,28.774485],[106.862328,28.780596],[106.845358,28.781003],[106.838462,28.765974],[106.833366,28.768781],[106.824071,28.756149],[106.828329,28.737675],[106.852914,28.724451],[106.862568,28.707556],[106.853933,28.706333],[106.854713,28.697092],[106.862148,28.690976],[106.883195,28.692426],[106.880617,28.68051],[106.866945,28.649921],[106.869764,28.64906],[106.866346,28.624492],[106.829288,28.622724],[106.833246,28.613203],[106.827069,28.598558],[106.807701,28.589443],[106.800505,28.60214],[106.79343,28.606493],[106.79259,28.616241],[106.780358,28.624991],[106.775021,28.611979],[106.75907,28.611118],[106.758591,28.588128],[106.766626,28.580146],[106.780957,28.574885],[106.779878,28.563773],[106.765127,28.558193],[106.754333,28.558329],[106.737364,28.553294],[106.728189,28.541998],[106.723992,28.529883],[106.72603,28.518584],[106.744859,28.489855],[106.746658,28.466658],[106.732866,28.46357],[106.725251,28.454444],[106.716196,28.456396],[106.708521,28.450493],[106.69329,28.456532],[106.697668,28.476645],[106.688253,28.484681],[106.678359,28.481367],[106.66109,28.491898],[106.649756,28.479551],[106.631108,28.490264],[106.632727,28.503517],[106.61018,28.497935],[106.593391,28.510189],[106.584936,28.506876],[106.591532,28.499069],[106.591832,28.490355],[106.568026,28.484045],[106.562809,28.49739],[106.567906,28.505287],[106.560291,28.513366],[106.568685,28.523667],[106.584636,28.523258],[106.588893,28.531426],[106.615277,28.549665],[106.616836,28.56282],[106.607062,28.594296],[106.613059,28.608851],[106.626011,28.604317],[106.633566,28.607627],[106.636804,28.623223],[106.628589,28.634465],[106.618875,28.637276],[106.617676,28.644256],[106.641182,28.644165],[106.651376,28.649423],[106.6437,28.664333],[106.635245,28.658487],[106.62685,28.659257],[106.617676,28.667279],[106.614258,28.680283],[106.619175,28.689164],[106.606103,28.685041],[106.598068,28.691882],[106.587274,28.691519],[106.582357,28.702211],[106.576841,28.702392],[106.560291,28.720737],[106.559751,28.733871],[106.563888,28.746188],[106.56185,28.756059],[106.547998,28.769867],[106.534026,28.770909],[106.533787,28.77874],[106.523053,28.781139],[106.521134,28.794266],[106.508782,28.79585],[106.490613,28.80653],[106.476221,28.826757],[106.474482,28.833046],[106.46183,28.83101],[106.468426,28.826441],[106.453495,28.816939],[106.451396,28.808114],[106.459611,28.805716],[106.46279,28.797207],[106.451696,28.792817],[106.454515,28.7753],[106.46207,28.76122],[106.493851,28.739486],[106.498108,28.717476],[106.510341,28.715166],[106.515857,28.688122],[106.52827,28.677655],[106.520175,28.662112],[106.502785,28.661297],[106.506683,28.635598],[106.501046,28.628119],[106.501526,28.618553],[106.49499,28.615153],[106.49433,28.60019],[106.513339,28.577017],[106.524072,28.577833],[106.508782,28.564861],[106.498828,28.585861],[106.473823,28.598966],[106.467347,28.588536],[106.47892,28.575021],[106.487255,28.558828],[106.504704,28.544674],[106.501166,28.534511],[106.493371,28.538323],[106.483837,28.530609],[106.471604,28.532606],[106.467287,28.541589],[106.453075,28.54472],[106.454035,28.549755],[106.441622,28.559418],[106.434067,28.556696],[106.423213,28.562684],[106.41296,28.563138],[106.399108,28.571166],[106.385676,28.560824],[106.389814,28.553249],[106.373563,28.537642],[106.3786,28.532606],[106.373743,28.524983],[106.374523,28.510915],[106.380579,28.507375],[106.376142,28.493305],[106.3789,28.479732],[106.352876,28.480277],[106.349098,28.473785],[106.341363,28.480686],[106.330689,28.482138],[106.323674,28.494939],[106.306824,28.503245],[106.293992,28.526934],[106.292612,28.537324],[106.278041,28.538867],[106.277262,28.532878],[106.254835,28.539412],[106.236186,28.560144],[106.214779,28.573207],[106.205605,28.567991],[106.192593,28.577244],[106.184798,28.589443],[106.184857,28.600599],[106.173344,28.612523],[106.171246,28.628663],[106.165729,28.636233],[106.152057,28.636505],[106.144622,28.644754],[106.129331,28.640041],[106.115659,28.642533],[106.120756,28.632743],[106.103427,28.636097],[106.09821,28.654907],[106.083039,28.661387],[106.090295,28.669454],[106.080461,28.686309],[106.066429,28.692516],[106.066969,28.686173],[106.043163,28.693558],[106.030811,28.695053],[106.036087,28.706242],[106.022955,28.708145],[106.028892,28.719695],[106.017918,28.722639],[106.008924,28.738218],[105.99951,28.742928],[105.979242,28.74655],[105.967789,28.761628],[105.96563,28.736045],[105.954597,28.724632],[105.955916,28.713852],[105.942304,28.71041],[105.93337,28.702301],[105.935588,28.681914],[105.921916,28.679015],[105.903568,28.669227],[105.889476,28.670496],[105.891935,28.651326],[105.901049,28.648562],[105.895652,28.643712],[105.893733,28.623903],[105.890256,28.621409],[105.905906,28.611027],[105.893434,28.605722],[105.885039,28.595475],[105.876164,28.602911],[105.859494,28.597923],[105.8505,28.606312],[105.835988,28.59942],[105.798391,28.603183],[105.784959,28.611118],[105.778483,28.59883],[105.757676,28.59035],[105.757256,28.602231],[105.748801,28.615153],[105.737708,28.614201],[105.720678,28.590622],[105.713003,28.586586],[105.699931,28.5923],[105.693155,28.588582],[105.691835,28.56468],[105.683381,28.557876],[105.68464,28.534557],[105.671208,28.536281],[105.664492,28.523803],[105.650101,28.522986],[105.642245,28.517586],[105.623897,28.518131],[105.627974,28.507829],[105.619399,28.484],[105.614662,28.484227],[105.609325,28.472196],[105.619279,28.464024],[105.611964,28.45517],[105.612563,28.438913],[105.631872,28.432147],[105.643265,28.431511],[105.648302,28.407846],[105.642725,28.397715],[105.650281,28.389537],[105.652739,28.372407],[105.660175,28.365272],[105.654898,28.362364],[105.65178,28.34282],[105.639487,28.324227],[105.639967,28.311042],[105.649921,28.31909],[105.658196,28.310633],[105.670548,28.30986],[105.683021,28.295582],[105.688597,28.284349],[105.705087,28.279846],[105.711264,28.281711],[105.730032,28.272159],[105.738547,28.277299],[105.735249,28.291671],[105.740706,28.304858],[105.761333,28.30936],[105.786638,28.308814],[105.771287,28.319453],[105.771347,28.328819],[105.785679,28.336501],[105.792814,28.329455],[105.797672,28.312361],[105.808405,28.307223],[105.823396,28.306904],[105.83395,28.283348],[105.85002,28.254237],[105.863212,28.249187],[105.874185,28.254601],[105.875804,28.244865],[105.890555,28.236266],[105.881021,28.211829],[105.871007,28.201953],[105.860274,28.170042],[105.860993,28.158158],[105.868609,28.146729],[105.878563,28.139033],[105.876044,28.128239],[105.895173,28.119767],[105.903687,28.129195],[105.927193,28.135435],[105.936967,28.132247],[105.945242,28.143541],[105.963291,28.137894],[105.970787,28.131245],[105.976124,28.10806],[105.985358,28.108379],[105.986198,28.116032],[106.013241,28.119949],[106.020617,28.109153],[106.033869,28.106966],[106.036567,28.110702],[106.027213,28.131245],[106.037646,28.138349],[106.060912,28.142949],[106.071826,28.151237],[106.093593,28.162666],[106.112841,28.163577],[106.125074,28.167083],[106.145221,28.162848],[106.177302,28.148596],[106.191633,28.136755],[106.207104,28.134251],[106.211541,28.119083],[106.226232,28.115895],[106.231449,28.097992],[106.249918,28.09257],[106.254655,28.079493],[106.266708,28.066551],[106.265509,28.04987],[106.256754,28.048503],[106.243202,28.029084],[106.24626,28.011987],[106.268927,28.003323],[106.283018,28.007199],[106.294351,28.003643],[106.301847,27.989916],[106.315818,27.979518],[106.317377,27.967659],[106.325173,27.962595],[106.328111,27.952879],[106.314019,27.938507],[106.308023,27.936728],[106.309222,27.913592],[106.300348,27.908709],[106.304905,27.899352],[106.325772,27.897937],[106.333328,27.887987],[106.325892,27.879313],[106.338185,27.875341],[106.339984,27.865343],[106.334287,27.855115],[106.317078,27.838767],[106.319416,27.832007],[106.32997,27.82575],[106.344241,27.826846],[106.341843,27.820178],[106.321515,27.809398],[106.306944,27.808667],[106.268507,27.782168],[106.242423,27.767317],[106.23115,27.767317],[106.224673,27.760965],[106.206564,27.76293],[106.193492,27.754384],[106.179341,27.761925],[106.165249,27.763158],[106.143602,27.77376],[106.127532,27.77865],[106.105825,27.779929],[106.079321,27.77568],[106.063731,27.777142],[106.059054,27.770607],[106.062412,27.763341],[106.023015,27.746979],[106.004067,27.746842],[106.001788,27.72362],[106.005446,27.715162],[106.009344,27.684022],[106.005386,27.663897],[106.013961,27.66097],[106.035967,27.667877],[106.059593,27.670621],[106.063971,27.663211],[106.086397,27.661427],[106.086877,27.656212],[106.109183,27.64871],[106.106185,27.630912],[106.115419,27.612013],[106.127832,27.613615],[106.134488,27.594988],[106.153496,27.574801],[106.162731,27.560563],[106.172505,27.558685],[106.210882,27.567705],[106.233488,27.552504],[106.245901,27.559601],[106.238465,27.574938],[106.243382,27.58272],[106.261971,27.595949],[106.277861,27.603226],[106.275463,27.61064],[106.282898,27.616223],[106.292492,27.602448],[106.310961,27.597505],[106.317018,27.585604],[106.334047,27.578692],[106.338305,27.563218],[106.336146,27.543666],[106.318996,27.534187],[106.310182,27.517745],[106.310841,27.510966],[106.323494,27.486686],[106.333328,27.474636],[106.354075,27.477843],[106.364929,27.47239],[106.374103,27.486136],[106.404685,27.498323],[106.415658,27.505744],[106.433467,27.510966],[106.454395,27.50524],[106.462849,27.491588],[106.475982,27.493466],[106.485036,27.485724],[106.512619,27.476056],[106.522393,27.476377],[106.52875,27.483204],[106.524192,27.502904],[106.536185,27.509408],[106.54536,27.506156],[106.548178,27.517424],[106.563349,27.517836],[106.583916,27.529424],[106.59471,27.532447],[106.61006,27.528874],[106.621633,27.518844],[106.640882,27.509408],[106.651256,27.486594],[106.670984,27.464371],[106.696408,27.464646],[106.705403,27.453143],[106.703964,27.431326],[106.718775,27.416702],[106.720993,27.405378],[106.712658,27.377681],[106.696049,27.356904],[106.695749,27.347867],[106.714877,27.309235],[106.72663,27.297027],[106.735745,27.276097],[106.735325,27.255898],[106.754153,27.245062],[106.74276,27.238955],[106.737244,27.222377],[106.745159,27.21806],[106.760629,27.230827],[106.76051,27.247909],[106.772922,27.25273],[106.79259,27.276602],[106.798766,27.2895],[106.79319,27.304416],[106.795289,27.312631],[106.820533,27.32424],[106.840981,27.321257],[106.857411,27.308042],[106.866106,27.288215],[106.880857,27.272058],[106.894049,27.263427],[106.905982,27.267697],[106.913057,27.278852],[106.926909,27.291336],[106.934105,27.306252],[106.957131,27.312539],[106.993709,27.349427],[107.005761,27.355207],[107.018474,27.356491],[107.0412,27.350711],[107.065305,27.338142],[107.087672,27.322542],[107.098585,27.321533],[107.150034,27.348876],[107.170482,27.356629],[107.200763,27.355803],[107.209638,27.371398],[107.238361,27.400013],[107.248615,27.403544],[107.244777,27.415694],[107.260367,27.428071],[107.266604,27.438477],[107.268882,27.455756],[107.266963,27.476148],[107.275538,27.478943],[107.28867,27.46735],[107.308998,27.462446],[107.33892,27.459926],[107.352112,27.466846],[107.359368,27.465654],[107.35541,27.444527],[107.376217,27.442877],[107.37238,27.435772],[107.384972,27.430455],[107.399124,27.417803],[107.400503,27.405699],[107.376217,27.388],[107.375978,27.36649],[107.386711,27.361904],[107.401762,27.363463],[107.408778,27.353326],[107.408838,27.343188],[107.419511,27.342546],[107.434802,27.372682],[107.451772,27.36594],[107.458608,27.368279],[107.491768,27.37149],[107.498304,27.364059],[107.501722,27.349106],[107.50418,27.315476],[107.477256,27.297395],[107.475158,27.280504],[107.464724,27.277107],[107.458488,27.268064],[107.463585,27.251169],[107.461066,27.240057],[107.476777,27.24093],[107.492007,27.230276],[107.489789,27.223204],[107.500402,27.216085],[107.511496,27.203454],[107.524628,27.207864],[107.525767,27.218382],[107.514014,27.237348],[107.519711,27.244144],[107.531224,27.224536],[107.542917,27.215856],[107.55347,27.216637],[107.566662,27.225408],[107.562225,27.236246],[107.550112,27.252914],[107.556588,27.257872],[107.592986,27.267008],[107.602221,27.267605],[107.618531,27.25801],[107.642636,27.267146],[107.656308,27.267008],[107.65247,27.253786],[107.646474,27.247863],[107.650432,27.238909],[107.666382,27.234593],[107.684431,27.235328],[107.709016,27.22821],[107.729584,27.226143],[107.747453,27.217693],[107.772938,27.21806],[107.780973,27.209242],[107.762384,27.203546],[107.760405,27.191649],[107.793745,27.188203],[107.823607,27.186733],[107.832901,27.192705],[107.83506,27.185263],[107.846093,27.183196],[107.825646,27.171067],[107.819469,27.159028],[107.85119,27.16445],[107.85161,27.150756],[107.862703,27.141565],[107.881952,27.142208],[107.886389,27.146253],[107.88483,27.15889],[107.882971,27.175294],[107.886689,27.17805],[107.905098,27.175937],[107.921408,27.189536],[107.922967,27.196013],[107.95169,27.192338],[107.971298,27.199183],[107.964102,27.209977],[107.965901,27.214937],[107.977834,27.21558],[108.004698,27.226786],[108.020708,27.229771],[108.03336,27.238634],[108.039716,27.258102],[108.032641,27.269625],[108.011833,27.274583],[108.003558,27.286196],[107.9999,27.302764],[107.989347,27.305839],[107.975915,27.317908],[107.956547,27.312952],[107.952049,27.328323],[107.959365,27.339197],[107.958106,27.350757],[107.948452,27.354198],[107.931362,27.346445],[107.919369,27.332544],[107.931422,27.321257],[107.930822,27.31364],[107.915352,27.314237],[107.906117,27.325983],[107.908276,27.33204],[107.894364,27.345574],[107.870619,27.341812],[107.856707,27.330159],[107.819829,27.324377],[107.805318,27.331948],[107.806817,27.347408],[107.779953,27.351491],[107.774557,27.359702],[107.780913,27.373691],[107.762264,27.385156],[107.765802,27.391164],[107.801001,27.394098],[107.798302,27.404003],[107.798062,27.43811],[107.791766,27.443931],[107.774257,27.443748],[107.757407,27.453327],[107.755188,27.459559],[107.762924,27.475964],[107.780793,27.486319],[107.789128,27.485266],[107.808016,27.491267],[107.829124,27.542064],[107.844774,27.555114],[107.865702,27.551451],[107.88513,27.551588],[107.893705,27.556625],[107.902639,27.568392],[107.906837,27.591646],[107.902579,27.612105],[107.903119,27.627892],[107.922187,27.666093],[107.937118,27.680546],[107.940776,27.691522],[107.927944,27.7265],[107.927764,27.745288],[107.931722,27.753241],[107.946233,27.767728],[107.943954,27.779061],[107.932501,27.778696],[107.931842,27.793545],[107.912833,27.80958],[107.903599,27.826664],[107.888368,27.844018],[107.888608,27.878035],[107.898802,27.897709],[107.906177,27.904282],[107.923686,27.90807],[107.911634,27.929062],[107.909595,27.937458],[107.911394,27.962322],[107.915172,27.973041],[107.933341,28.001408],[107.928004,28.009251],[107.914692,28.018644],[107.889267,28.051466],[107.88441,28.063042],[107.878114,28.05534],[107.870918,28.058667],[107.862164,28.037381],[107.855328,28.038292],[107.8359,28.031044],[107.832122,28.049095],[107.813293,28.047363],[107.813233,28.06728],[107.807057,28.069923],[107.791886,28.066004],[107.786549,28.07448],[107.778874,28.072977],[107.78595,28.083412],[107.78487,28.093937],[107.799022,28.125551],[107.803219,28.147503],[107.805618,28.174276],[107.803399,28.183563],[107.816052,28.17546],[107.824027,28.183336],[107.836439,28.184292],[107.85167,28.202636],[107.859225,28.200269],[107.862224,28.211966],[107.864982,28.247185],[107.861204,28.261288],[107.866001,28.288897],[107.862583,28.30886],[107.861564,28.339502],[107.866481,28.358501],[107.874456,28.370407],[107.921108,28.370135],[107.913792,28.382903],[107.936039,28.384721],[107.955647,28.380132],[107.972497,28.383812],[107.990246,28.368999],[107.996662,28.369635],[108.00098,28.384585],[107.983051,28.397079],[107.972557,28.398169],[107.960744,28.411071],[107.968839,28.423335],[107.969199,28.439731],[107.977294,28.447814],[107.991146,28.441774],[108.010754,28.446452],[108.007876,28.434054],[107.982571,28.431238],[107.98323,28.422881],[107.995643,28.427923],[108.006197,28.424244],[108.007636,28.415886],[108.019509,28.403121],[108.025745,28.401213],[108.012313,28.39617],[108.005897,28.389764],[108.016151,28.384039],[108.026165,28.368272],[108.037138,28.365454],[108.051709,28.388538],[108.068259,28.422018],[108.063942,28.433645],[108.048711,28.444045],[108.056146,28.454444],[108.060104,28.472378],[108.048171,28.489901],[108.04991,28.500476],[108.070058,28.516542],[108.069938,28.526843],[108.058245,28.541408],[108.043554,28.548122],[108.038517,28.5547],[108.04991,28.566766],[108.038457,28.58382],[108.037558,28.592754],[108.061543,28.613022],[108.08283,28.620548],[108.084269,28.627212],[108.093024,28.621727],[108.114491,28.628799],[108.128882,28.644165],[108.122586,28.652369],[108.145013,28.669997],[108.163242,28.677066],[108.174575,28.690206],[108.18189,28.712358],[108.18219,28.741569],[108.184649,28.74895],[108.195322,28.750671],[108.201379,28.763122],[108.213671,28.776341],[108.207495,28.817572],[108.195082,28.802548],[108.189446,28.800692],[108.180751,28.81083],[108.158744,28.845804],[108.158085,28.856344],[108.141295,28.855982],[108.128643,28.869778],[108.134819,28.902653],[108.138417,28.932082],[108.13224,28.943969],[108.117309,28.950703],[108.106996,28.961865],[108.107895,28.975872],[108.088347,28.999454],[108.078993,29.007178],[108.078873,29.023166],[108.073536,29.05816],[108.078573,29.07107],[108.069398,29.086552]]],[[[107.939217,27.15071],[107.940956,27.146253],[107.956067,27.14878],[107.955947,27.154387],[107.945154,27.160269],[107.938977,27.166839],[107.929383,27.162658],[107.931662,27.154019],[107.939217,27.15071]]]]}},{"type":"Feature","properties":{"adcode":520400,"name":"安顺市","center":[105.932188,26.245544],"centroid":[105.952866,25.993386],"childrenNum":6,"level":"city","parent":{"adcode":520000},"subFeatureIndex":3,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.25422,25.98549],[105.260276,25.987904],[105.263095,25.975137],[105.255239,25.951874],[105.266692,25.937431],[105.285821,25.931207],[105.301411,25.911466],[105.315383,25.898504],[105.33613,25.888515],[105.348663,25.888376],[105.367072,25.892697],[105.376966,25.8828],[105.373068,25.846691],[105.378585,25.825541],[105.391717,25.810292],[105.41966,25.788856],[105.429614,25.787973],[105.441127,25.778021],[105.454979,25.760486],[105.48544,25.747183],[105.495154,25.732715],[105.515602,25.715034],[105.531852,25.69521],[105.548462,25.694931],[105.567051,25.712708],[105.577844,25.712521],[105.622997,25.678734],[105.638708,25.673242],[105.665332,25.669145],[105.680982,25.661418],[105.689197,25.653038],[105.706766,25.612854],[105.719899,25.602142],[105.732671,25.572564],[105.74994,25.563292],[105.756237,25.543583],[105.78358,25.498235],[105.786638,25.468397],[105.815181,25.46089],[105.834429,25.451283],[105.877124,25.432862],[105.893853,25.42232],[105.908245,25.429503],[105.909264,25.436266],[105.927433,25.432209],[105.939186,25.438039],[105.926893,25.448765],[105.931271,25.459258],[105.91658,25.470775],[105.912862,25.491289],[105.91664,25.499074],[105.935468,25.512172],[105.98146,25.538597],[105.993033,25.552343],[105.981221,25.565109],[105.969288,25.561103],[105.962092,25.567299],[105.963411,25.575592],[105.971446,25.582346],[105.979542,25.597299],[105.98218,25.612295],[105.990755,25.59674],[105.987037,25.58407],[105.992134,25.569256],[106.022835,25.570188],[106.036747,25.561336],[106.04916,25.558587],[106.056535,25.572843],[106.054676,25.581834],[106.06445,25.583557],[106.076203,25.598556],[106.083699,25.596879],[106.080101,25.587377],[106.096771,25.577781],[106.103607,25.565109],[106.093713,25.546938],[106.100488,25.54102],[106.091434,25.534077],[106.084358,25.537106],[106.068888,25.533191],[106.069187,25.525455],[106.091794,25.508536],[106.111342,25.511939],[106.135567,25.484995],[106.123095,25.478048],[106.127832,25.454781],[106.140964,25.454688],[106.155595,25.466112],[106.159313,25.481545],[106.165309,25.477955],[106.16339,25.465413],[106.178921,25.462335],[106.191993,25.470402],[106.199369,25.455294],[106.208423,25.444475],[106.219217,25.418122],[106.226472,25.394003],[106.252557,25.401748],[106.26425,25.401935],[106.29591,25.390411],[106.304965,25.381919],[106.323913,25.357653],[106.332009,25.354199],[106.34598,25.356019],[106.382018,25.367873],[106.399108,25.36694],[106.418836,25.36204],[106.431009,25.369506],[106.424353,25.389944],[106.401507,25.40506],[106.391493,25.400675],[106.39527,25.418309],[106.408882,25.417936],[106.419556,25.430949],[106.419196,25.439438],[106.410861,25.452776],[106.39611,25.45534],[106.403665,25.465413],[106.39575,25.466625],[106.397729,25.486953],[106.405224,25.498001],[106.417217,25.496883],[106.435206,25.528997],[106.436765,25.540647],[106.433047,25.560404],[106.437125,25.567672],[106.470705,25.601863],[106.486595,25.634508],[106.488934,25.646846],[106.47898,25.649779],[106.460331,25.666027],[106.436525,25.67785],[106.427291,25.675011],[106.41272,25.654994],[106.401806,25.650711],[106.389334,25.650943],[106.364509,25.658159],[106.344781,25.668308],[106.326552,25.672404],[106.306164,25.683342],[106.301787,25.697211],[106.304005,25.711544],[106.311981,25.724619],[106.308923,25.728295],[106.285117,25.724154],[106.270366,25.715779],[106.24692,25.698189],[106.232709,25.702144],[106.231989,25.714522],[106.255375,25.728202],[106.259273,25.744438],[106.256574,25.772393],[106.249498,25.794576],[106.244162,25.79718],[106.24686,25.814988],[106.243202,25.831538],[106.261131,25.84274],[106.273364,25.858961],[106.275043,25.881453],[106.282898,25.883497],[106.285417,25.897296],[106.297949,25.912999],[106.29633,25.918573],[106.277382,25.923404],[106.276362,25.937802],[106.289434,25.938545],[106.285057,25.950992],[106.287096,25.963204],[106.293572,25.967662],[106.307124,25.967801],[106.31246,25.978898],[106.31258,25.990458],[106.300707,25.992036],[106.303226,26.002759],[106.290514,26.003084],[106.276602,26.020072],[106.26419,26.022717],[106.259572,26.016173],[106.249978,26.025177],[106.254056,26.032185],[106.235047,26.02216],[106.234807,26.027312],[106.224374,26.023924],[106.211901,26.021464],[106.215199,26.032741],[106.223294,26.028147],[106.226832,26.03237],[106.239125,26.051395],[106.245601,26.093054],[106.256634,26.102191],[106.262451,26.092312],[106.269586,26.089807],[106.286676,26.102145],[106.287515,26.114527],[106.276302,26.128624],[106.256814,26.129829],[106.258133,26.136413],[106.275463,26.143878],[106.283978,26.171924],[106.284517,26.191853],[106.291413,26.199036],[106.299448,26.199499],[106.273604,26.223084],[106.251117,26.222204],[106.243262,26.22452],[106.257414,26.242449],[106.277142,26.240735],[106.2805,26.246525],[106.297829,26.253195],[106.305924,26.236797],[106.319056,26.222343],[106.337405,26.222343],[106.349458,26.231006],[106.360791,26.254122],[106.36199,26.281863],[106.381359,26.284086],[106.397429,26.277186],[106.424473,26.270888],[106.485995,26.262134],[106.487075,26.273851],[106.497628,26.277047],[106.503385,26.289225],[106.515738,26.295291],[106.524372,26.306033],[106.522393,26.31557],[106.536185,26.311959],[106.547218,26.317977],[106.562089,26.338437],[106.556573,26.345842],[106.562989,26.362363],[106.562689,26.375782],[106.549857,26.380085],[106.539243,26.377494],[106.515438,26.382399],[106.497568,26.379946],[106.492472,26.386748],[106.477241,26.395214],[106.476761,26.405576],[106.46117,26.425419],[106.450977,26.422968],[106.44588,26.443501],[106.450257,26.446969],[106.443901,26.457604],[106.434247,26.457928],[106.409482,26.44179],[106.398209,26.439709],[106.367027,26.444056],[106.356174,26.449004],[106.327391,26.451732],[106.326552,26.456495],[106.343522,26.463338],[106.344001,26.471613],[106.352756,26.47374],[106.34586,26.487146],[106.323674,26.488995],[106.320076,26.494865],[106.325712,26.520331],[106.315698,26.536365],[106.294951,26.542279],[106.276962,26.555539],[106.243742,26.544682],[106.232529,26.538721],[106.2134,26.538259],[106.201407,26.542371],[106.184078,26.554661],[106.187676,26.562514],[106.18126,26.571014],[106.188755,26.574247],[106.187496,26.587087],[106.171126,26.597894],[106.16393,26.613271],[106.150438,26.624444],[106.157994,26.594569],[106.142643,26.57979],[106.139105,26.572307],[106.138446,26.539923],[106.132209,26.524259],[106.130111,26.503185],[106.124834,26.491214],[106.116319,26.484603],[106.063071,26.462135],[106.040465,26.464771],[106.018938,26.452333],[105.993453,26.443362],[105.972826,26.439709],[105.959814,26.45409],[105.973905,26.461396],[105.976004,26.47901],[105.96593,26.496206],[105.971027,26.508916],[105.969528,26.521902],[105.962452,26.524952],[105.933489,26.512474],[105.916999,26.521116],[105.910104,26.519499],[105.891695,26.504849],[105.873586,26.498008],[105.848821,26.477161],[105.83353,26.472399],[105.792754,26.474942],[105.778963,26.471521],[105.769788,26.455477],[105.75012,26.447663],[105.732971,26.460702],[105.701909,26.451223],[105.690636,26.431755],[105.676964,26.442484],[105.66827,26.43601],[105.645244,26.430183],[105.607407,26.415429],[105.594394,26.406224],[105.582462,26.38374],[105.556197,26.367916],[105.537909,26.359679],[105.51854,26.354404],[105.500011,26.34089],[105.493955,26.333114],[105.487779,26.315153],[105.48574,26.296865],[105.471469,26.283298],[105.473328,26.259819],[105.492216,26.24583],[105.50265,26.22957],[105.512064,26.223733],[105.524776,26.236658],[105.533351,26.233091],[105.531193,26.221879],[105.542586,26.222157],[105.558656,26.231284],[105.56861,26.22452],[105.591756,26.232072],[105.591576,26.222945],[105.604588,26.209091],[105.633611,26.207053],[105.661674,26.208535],[105.680442,26.200658],[105.704308,26.18175],[105.715761,26.188887],[105.722837,26.170162],[105.709345,26.164693],[105.701789,26.170209],[105.690157,26.169189],[105.679363,26.162746],[105.680322,26.156349],[105.668749,26.14768],[105.669469,26.135301],[105.646323,26.1436],[105.630912,26.141931],[105.620838,26.157554],[105.611724,26.160335],[105.607227,26.154309],[105.613403,26.135069],[105.605008,26.113507],[105.598712,26.074314],[105.592296,26.062438],[105.582462,26.066056],[105.567171,26.077747],[105.547083,26.074963],[105.527055,26.060535],[105.509366,26.039006],[105.498992,26.030328],[105.45282,26.019283],[105.428175,26.016498],[105.408567,26.016916],[105.383862,26.012692],[105.359097,26.018076],[105.299673,26.008097],[105.277486,26.012321],[105.261176,26.008561],[105.248583,25.991479],[105.25422,25.98549]]],[[[106.226832,26.03237],[106.223294,26.028147],[106.224374,26.023924],[106.234807,26.027312],[106.226832,26.03237]]]]}},{"type":"Feature","properties":{"adcode":520500,"name":"毕节市","center":[105.28501,27.301693],"centroid":[105.550244,27.113787],"childrenNum":8,"level":"city","parent":{"adcode":520000},"subFeatureIndex":4,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.537909,26.359679],[105.556197,26.367916],[105.582462,26.38374],[105.594394,26.406224],[105.607407,26.415429],[105.645244,26.430183],[105.66827,26.43601],[105.676964,26.442484],[105.690636,26.431755],[105.701909,26.451223],[105.732971,26.460702],[105.75012,26.447663],[105.769788,26.455477],[105.778963,26.471521],[105.792754,26.474942],[105.83353,26.472399],[105.848821,26.477161],[105.873586,26.498008],[105.891695,26.504849],[105.910104,26.519499],[105.916999,26.521116],[105.933489,26.512474],[105.962452,26.524952],[105.969528,26.521902],[105.971027,26.508916],[105.96593,26.496206],[105.976004,26.47901],[105.973905,26.461396],[105.959814,26.45409],[105.972826,26.439709],[105.993453,26.443362],[106.018938,26.452333],[106.040465,26.464771],[106.063071,26.462135],[106.116319,26.484603],[106.124834,26.491214],[106.130111,26.503185],[106.132209,26.524259],[106.138446,26.539923],[106.139105,26.572307],[106.142643,26.57979],[106.157994,26.594569],[106.150438,26.624444],[106.143123,26.640049],[106.126573,26.64942],[106.125074,26.657728],[106.133588,26.665113],[106.16471,26.669774],[106.173344,26.682419],[106.16393,26.709734],[106.16429,26.728556],[106.171546,26.754015],[106.172685,26.767573],[106.165369,26.777533],[106.149659,26.785371],[106.125733,26.803903],[106.13137,26.832434],[106.140065,26.846581],[106.149479,26.85317],[106.168787,26.855843],[106.169986,26.859759],[106.19757,26.868789],[106.211302,26.88284],[106.223234,26.890901],[106.234148,26.891454],[106.244581,26.870908],[106.26275,26.857778],[106.27972,26.863491],[106.301487,26.895507],[106.308203,26.895369],[106.331529,26.882932],[106.339084,26.882794],[106.354435,26.892329],[106.357973,26.899053],[106.357673,26.920883],[106.364689,26.932072],[106.372064,26.959097],[106.383397,26.976957],[106.394551,26.984275],[106.420815,26.992835],[106.441922,27.007468],[106.441502,27.015014],[106.427411,27.022054],[106.413559,27.041192],[106.41158,27.063086],[106.399648,27.091964],[106.401207,27.122077],[106.413679,27.148964],[106.440063,27.161969],[106.446539,27.186687],[106.451696,27.190363],[106.477001,27.195094],[106.505664,27.213927],[106.531568,27.22697],[106.553814,27.243777],[106.586855,27.251353],[106.619475,27.274766],[106.632907,27.302397],[106.664388,27.301846],[106.688073,27.313365],[106.703184,27.308546],[106.714877,27.309235],[106.695749,27.347867],[106.696049,27.356904],[106.712658,27.377681],[106.720993,27.405378],[106.718775,27.416702],[106.703964,27.431326],[106.705403,27.453143],[106.696408,27.464646],[106.670984,27.464371],[106.651256,27.486594],[106.640882,27.509408],[106.621633,27.518844],[106.61006,27.528874],[106.59471,27.532447],[106.583916,27.529424],[106.563349,27.517836],[106.548178,27.517424],[106.54536,27.506156],[106.536185,27.509408],[106.524192,27.502904],[106.52875,27.483204],[106.522393,27.476377],[106.512619,27.476056],[106.485036,27.485724],[106.475982,27.493466],[106.462849,27.491588],[106.454395,27.50524],[106.433467,27.510966],[106.415658,27.505744],[106.404685,27.498323],[106.374103,27.486136],[106.364929,27.47239],[106.354075,27.477843],[106.333328,27.474636],[106.323494,27.486686],[106.310841,27.510966],[106.310182,27.517745],[106.318996,27.534187],[106.336146,27.543666],[106.338305,27.563218],[106.334047,27.578692],[106.317018,27.585604],[106.310961,27.597505],[106.292492,27.602448],[106.282898,27.616223],[106.275463,27.61064],[106.277861,27.603226],[106.261971,27.595949],[106.243382,27.58272],[106.238465,27.574938],[106.245901,27.559601],[106.233488,27.552504],[106.210882,27.567705],[106.172505,27.558685],[106.162731,27.560563],[106.153496,27.574801],[106.134488,27.594988],[106.127832,27.613615],[106.115419,27.612013],[106.106185,27.630912],[106.109183,27.64871],[106.086877,27.656212],[106.086397,27.661427],[106.063971,27.663211],[106.059593,27.670621],[106.035967,27.667877],[106.013961,27.66097],[106.005386,27.663897],[106.009344,27.684022],[106.005446,27.715162],[106.001788,27.72362],[106.004067,27.746842],[105.985418,27.749767],[105.968568,27.740763],[105.929952,27.728192],[105.921317,27.747025],[105.905187,27.745151],[105.891275,27.736283],[105.881921,27.73866],[105.868249,27.732535],[105.860454,27.716305],[105.842884,27.705332],[105.831191,27.70995],[105.813802,27.71123],[105.78418,27.719094],[105.76763,27.717951],[105.722837,27.705881],[105.719119,27.692162],[105.721038,27.684845],[105.702029,27.676887],[105.685479,27.678488],[105.677864,27.68329],[105.664372,27.683931],[105.655018,27.677162],[105.643085,27.659963],[105.628993,27.66097],[105.623837,27.666139],[105.622637,27.680821],[105.609985,27.691979],[105.602849,27.704692],[105.605308,27.715437],[105.580783,27.721472],[105.559975,27.719963],[105.549302,27.727186],[105.537489,27.753744],[105.522738,27.758131],[105.517761,27.764895],[105.492876,27.772755],[105.477105,27.774857],[105.458217,27.767866],[105.448623,27.775314],[105.440168,27.775223],[105.430573,27.76261],[105.421459,27.768368],[105.394415,27.761193],[105.393096,27.750499],[105.384761,27.757491],[105.373608,27.754978],[105.367791,27.748808],[105.35382,27.748853],[105.339968,27.729106],[105.327016,27.727049],[105.318681,27.714248],[105.301352,27.696049],[105.301352,27.682787],[105.308967,27.67085],[105.309866,27.654977],[105.30387,27.639788],[105.294995,27.6332],[105.30327,27.626336],[105.305129,27.613615],[105.290618,27.604325],[105.274967,27.589816],[105.257038,27.582904],[105.251761,27.573473],[105.244026,27.572603],[105.250502,27.565416],[105.240488,27.558731],[105.242767,27.551359],[105.232333,27.546322],[105.234732,27.540186],[105.246784,27.545223],[105.256978,27.540873],[105.253141,27.536202],[105.259917,27.514768],[105.249783,27.505011],[105.248463,27.495482],[105.235871,27.490534],[105.233652,27.475873],[105.238989,27.46987],[105.234132,27.453098],[105.226157,27.441135],[105.232813,27.436322],[105.225857,27.419407],[105.211886,27.399509],[105.194376,27.382818],[105.191078,27.371765],[105.184002,27.367499],[105.184722,27.392448],[105.17231,27.397308],[105.167273,27.408817],[105.157079,27.404828],[105.134892,27.416152],[105.12146,27.418536],[105.099334,27.411384],[105.089859,27.41794],[105.067133,27.41794],[105.057659,27.409367],[105.046925,27.407441],[105.045426,27.396162],[105.032294,27.400564],[105.012086,27.380249],[104.999854,27.372224],[104.970651,27.357638],[104.963995,27.357913],[104.943788,27.346675],[104.937072,27.33704],[104.913146,27.326809],[104.904991,27.307445],[104.894078,27.305518],[104.891919,27.299781],[104.878967,27.297303],[104.871231,27.290877],[104.850544,27.304324],[104.848865,27.32034],[104.85654,27.33259],[104.843888,27.343234],[104.835913,27.343509],[104.826079,27.352317],[104.808629,27.354565],[104.79022,27.330434],[104.789141,27.321074],[104.771032,27.317403],[104.767614,27.33025],[104.754362,27.34539],[104.735653,27.334655],[104.721382,27.342454],[104.694159,27.333508],[104.686183,27.334838],[104.680667,27.323964],[104.664357,27.316715],[104.656381,27.3219],[104.630777,27.317862],[104.612488,27.307216],[104.594799,27.3113],[104.588382,27.323001],[104.570213,27.331718],[104.545388,27.330067],[104.522302,27.354335],[104.522782,27.365069],[104.507671,27.387495],[104.517265,27.400334],[104.504433,27.397171],[104.490881,27.401893],[104.497058,27.414502],[104.467196,27.414273],[104.461319,27.420645],[104.447528,27.426375],[104.435955,27.425963],[104.428999,27.434351],[104.416586,27.435543],[104.409451,27.445306],[104.41017,27.45791],[104.402435,27.455114],[104.362259,27.467854],[104.345349,27.462813],[104.34427,27.452914],[104.332757,27.444023],[104.342651,27.436322],[104.342051,27.427246],[104.335156,27.427705],[104.322383,27.407854],[104.308831,27.407258],[104.295819,27.374654],[104.284066,27.367362],[104.27825,27.372315],[104.279389,27.361766],[104.270455,27.36094],[104.247848,27.336444],[104.249587,27.319743],[104.259901,27.308317],[104.251086,27.30024],[104.230459,27.291245],[104.223383,27.299093],[104.210851,27.297211],[104.219126,27.286792],[104.219186,27.279861],[104.208872,27.278117],[104.190463,27.28771],[104.189923,27.277934],[104.174153,27.263014],[104.180689,27.256724],[104.198258,27.248736],[104.237894,27.257551],[104.270754,27.258882],[104.288264,27.226419],[104.307572,27.213559],[104.299057,27.193257],[104.304754,27.168356],[104.321604,27.161509],[104.314768,27.142714],[104.318066,27.131408],[104.32814,27.124559],[104.318725,27.110308],[104.324602,27.0967],[104.337194,27.089113],[104.331138,27.074813],[104.346309,27.07026],[104.352125,27.060418],[104.346968,27.04386],[104.337734,27.037006],[104.335755,27.015153],[104.338513,27.00144],[104.356383,26.990672],[104.366876,26.995136],[104.369035,27.007975],[104.376111,27.018373],[104.384566,27.019385],[104.405553,27.006088],[104.433256,27.006364],[104.452924,26.989107],[104.47655,26.98584],[104.485725,26.965542],[104.49328,26.958039],[104.517625,26.954264],[104.550365,26.954034],[104.580527,26.960248],[104.589822,26.956427],[104.602834,26.939808],[104.600915,26.92535],[104.60979,26.916048],[104.629937,26.928619],[104.64229,26.924152],[104.653863,26.905271],[104.656022,26.892881],[104.639112,26.863399],[104.647687,26.855013],[104.651464,26.836719],[104.667355,26.839392],[104.684205,26.852387],[104.696557,26.852064],[104.700515,26.842941],[104.705312,26.802336],[104.705072,26.796712],[104.723181,26.78265],[104.756941,26.765959],[104.756701,26.789336],[104.771692,26.80736],[104.783924,26.815657],[104.796097,26.828839],[104.800714,26.844507],[104.820862,26.86174],[104.829916,26.880583],[104.845207,26.886387],[104.854502,26.881872],[104.863016,26.87183],[104.866734,26.857179],[104.872731,26.850359],[104.900794,26.831051],[104.916444,26.832295],[104.925858,26.843355],[104.936712,26.865702],[104.947625,26.883208],[104.969092,26.903521],[104.998355,26.914574],[105.018682,26.917752],[105.025158,26.879753],[105.020901,26.864366],[104.999134,26.845844],[104.997215,26.830221],[105.011487,26.816164],[105.047285,26.809389],[105.066174,26.792102],[105.065934,26.786846],[105.052382,26.779146],[105.05628,26.770017],[105.084583,26.762916],[105.094656,26.750141],[105.094477,26.741425],[105.079725,26.721175],[105.080925,26.698477],[105.095196,26.673143],[105.094057,26.656389],[105.086921,26.649558],[105.100113,26.642218],[105.109108,26.624029],[105.114085,26.620982],[105.126797,26.625552],[105.123559,26.61244],[105.134412,26.602188],[105.140589,26.581221],[105.147485,26.576695],[105.169012,26.590366],[105.183643,26.590689],[105.194736,26.581545],[105.211406,26.575263],[105.212965,26.56621],[105.208468,26.544451],[105.218362,26.533916],[105.248344,26.524074],[105.2544,26.520007],[105.281504,26.518667],[105.295295,26.532391],[105.31994,26.526338],[105.331333,26.511689],[105.35388,26.509424],[105.350462,26.499441],[105.341107,26.493016],[105.358857,26.471058],[105.368031,26.479657],[105.378165,26.464817],[105.399872,26.459407],[105.428535,26.458806],[105.442326,26.442345],[105.454979,26.438969],[105.501511,26.439385],[105.513443,26.430738],[105.514283,26.414642],[105.527115,26.381658],[105.537909,26.359679]]],[[[104.639112,26.863399],[104.656022,26.892881],[104.653863,26.905271],[104.64229,26.924152],[104.629937,26.928619],[104.60979,26.916048],[104.600915,26.92535],[104.602834,26.939808],[104.589822,26.956427],[104.580527,26.960248],[104.550365,26.954034],[104.517625,26.954264],[104.49328,26.958039],[104.485725,26.965542],[104.47655,26.98584],[104.452924,26.989107],[104.433256,27.006364],[104.405553,27.006088],[104.384566,27.019385],[104.376111,27.018373],[104.369035,27.007975],[104.366876,26.995136],[104.356383,26.990672],[104.338513,27.00144],[104.335755,27.015153],[104.337734,27.037006],[104.346968,27.04386],[104.352125,27.060418],[104.346309,27.07026],[104.331138,27.074813],[104.337194,27.089113],[104.324602,27.0967],[104.318725,27.110308],[104.32814,27.124559],[104.318066,27.131408],[104.314768,27.142714],[104.321604,27.161509],[104.304754,27.168356],[104.299057,27.193257],[104.307572,27.213559],[104.288264,27.226419],[104.270754,27.258882],[104.237894,27.257551],[104.198258,27.248736],[104.180689,27.256724],[104.174153,27.263014],[104.149268,27.283901],[104.142432,27.296477],[104.131519,27.306619],[104.134217,27.322313],[104.118866,27.330113],[104.113829,27.338004],[104.083488,27.331535],[104.08037,27.338784],[104.0625,27.347684],[104.057823,27.35562],[104.039534,27.362638],[104.019926,27.377177],[104.019806,27.410972],[104.016448,27.412347],[104.015249,27.429263],[104.006134,27.430134],[103.992643,27.419728],[103.97981,27.417207],[103.975493,27.422845],[103.956484,27.425367],[103.956005,27.433114],[103.943952,27.434306],[103.932439,27.443931],[103.925363,27.413218],[103.91451,27.396666],[103.91331,27.388458],[103.904856,27.38456],[103.903297,27.347959],[103.885727,27.330709],[103.874034,27.330388],[103.872475,27.305105],[103.865579,27.303131],[103.865459,27.281743],[103.845491,27.287527],[103.841414,27.272746],[103.824924,27.264162],[103.802318,27.267284],[103.801358,27.25071],[103.789186,27.253051],[103.791284,27.244052],[103.78157,27.229955],[103.7646,27.212044],[103.749609,27.211309],[103.745832,27.198631],[103.737437,27.185631],[103.728202,27.179153],[103.719508,27.161234],[103.706615,27.157282],[103.711592,27.14253],[103.696182,27.126673],[103.674715,27.131086],[103.661463,27.122996],[103.65019,27.12557],[103.63352,27.120376],[103.624525,27.112193],[103.620448,27.096746],[103.641195,27.089987],[103.653308,27.092562],[103.659844,27.065799],[103.647791,27.065569],[103.628363,27.072651],[103.617929,27.079825],[103.608635,27.065661],[103.601439,27.062166],[103.607136,27.047309],[103.618229,27.034981],[103.623686,27.035349],[103.628123,27.016119],[103.613732,27.009355],[103.622486,27.006824],[103.638617,27.013266],[103.653907,27.022882],[103.655646,27.032037],[103.675614,27.051679],[103.705116,27.049103],[103.71477,27.035533],[103.730661,27.021088],[103.734499,27.004385],[103.744812,26.992651],[103.753447,26.973045],[103.754167,26.963148],[103.775094,26.950949],[103.777193,26.934973],[103.7652,26.916877],[103.763581,26.905547],[103.767659,26.891361],[103.779471,26.875746],[103.774015,26.866946],[103.761962,26.866071],[103.752308,26.860174],[103.730901,26.85575],[103.722206,26.851419],[103.724125,26.84165],[103.71531,26.830682],[103.707335,26.828977],[103.703078,26.815335],[103.705656,26.79473],[103.720407,26.771723],[103.718908,26.761624],[103.724724,26.754061],[103.725444,26.742808],[103.737197,26.728648],[103.749969,26.725926],[103.763761,26.737919],[103.769158,26.73386],[103.773355,26.716885],[103.767778,26.707889],[103.767778,26.697831],[103.759384,26.689433],[103.758484,26.665436],[103.761003,26.649004],[103.74847,26.625599],[103.769697,26.602789],[103.767898,26.581637],[103.79872,26.567318],[103.810952,26.55406],[103.81545,26.532807],[103.820786,26.528648],[103.843813,26.53082],[103.865639,26.512243],[103.887346,26.517604],[103.89742,26.514184],[103.917748,26.513445],[103.925483,26.516726],[103.955165,26.521578],[103.972435,26.516449],[104.000918,26.519684],[104.008713,26.511735],[104.042592,26.514323],[104.052546,26.507206],[104.072035,26.519129],[104.071015,26.541078],[104.064479,26.560389],[104.068557,26.573369],[104.07977,26.580344],[104.093861,26.59637],[104.097879,26.605052],[104.11323,26.623937],[104.121025,26.637787],[104.1296,26.643926],[104.140813,26.641849],[104.160601,26.646788],[104.174333,26.635248],[104.191602,26.63437],[104.205574,26.62583],[104.229859,26.619874],[104.238374,26.627076],[104.248928,26.626845],[104.256783,26.619227],[104.272793,26.621074],[104.274952,26.633724],[104.300616,26.630215],[104.312669,26.612763],[104.328859,26.619458],[104.353205,26.620751],[104.362979,26.631601],[104.365017,26.642726],[104.379888,26.648819],[104.381687,26.663451],[104.398177,26.68588],[104.398837,26.707704],[104.421263,26.712041],[104.423602,26.704936],[104.434156,26.697738],[104.441771,26.686987],[104.44273,26.672589],[104.457901,26.663636],[104.467855,26.644526],[104.459101,26.622044],[104.45952,26.603435],[104.463958,26.595123],[104.487523,26.579559],[104.501615,26.58935],[104.54299,26.584778],[104.556542,26.590412],[104.571413,26.578265],[104.572192,26.569305],[104.579688,26.568057],[104.581667,26.556693],[104.572132,26.540616],[104.581427,26.543111],[104.655542,26.518667],[104.676829,26.520747],[104.670473,26.536273],[104.688402,26.543527],[104.692839,26.558033],[104.69182,26.580482],[104.688282,26.60048],[104.694638,26.609577],[104.737452,26.635201],[104.745008,26.646742],[104.744288,26.66779],[104.747706,26.685603],[104.762097,26.691048],[104.764016,26.698569],[104.75742,26.708719],[104.761918,26.717715],[104.763177,26.733953],[104.756941,26.765959],[104.723181,26.78265],[104.705072,26.796712],[104.705312,26.802336],[104.682526,26.776057],[104.680667,26.767342],[104.662198,26.745022],[104.655182,26.743362],[104.650925,26.733076],[104.628019,26.731554],[104.598336,26.73815],[104.59174,26.747328],[104.602834,26.761486],[104.604213,26.772276],[104.597137,26.788321],[104.603373,26.801598],[104.626819,26.819621],[104.629937,26.824414],[104.639112,26.863399]]]]}},{"type":"Feature","properties":{"adcode":520600,"name":"铜仁市","center":[109.191555,27.718346],"centroid":[108.546322,27.969966],"childrenNum":10,"level":"city","parent":{"adcode":520000},"subFeatureIndex":5,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.887124,27.121203],[108.904933,27.134947],[108.913688,27.157695],[108.92676,27.160912],[108.926041,27.175202],[108.929758,27.180072],[108.919145,27.193486],[108.925741,27.199596],[108.908651,27.204327],[108.914228,27.214662],[108.947088,27.228393],[108.951465,27.236062],[108.963458,27.235511],[108.968555,27.245521],[108.984625,27.256219],[108.987503,27.270635],[108.999556,27.267559],[109.01059,27.270497],[109.023901,27.282248],[109.040811,27.276235],[109.045608,27.288215],[109.053943,27.29487],[109.054123,27.306068],[109.044409,27.331076],[109.052084,27.336673],[109.05952,27.326855],[109.069234,27.322817],[109.080387,27.334884],[109.086384,27.33103],[109.103773,27.337086],[109.101075,27.34984],[109.106412,27.35562],[109.114387,27.35273],[109.118464,27.362225],[109.113847,27.367178],[109.124761,27.387908],[109.115886,27.400105],[109.127699,27.405057],[109.14197,27.417711],[109.138672,27.430318],[109.129258,27.42555],[109.125,27.415556],[109.115766,27.412576],[109.10917,27.41872],[109.112948,27.424633],[109.123321,27.418399],[109.123321,27.428622],[109.144009,27.448835],[109.154083,27.448789],[109.15942,27.442327],[109.156241,27.416519],[109.166975,27.417849],[109.189521,27.436552],[109.202114,27.450073],[109.213687,27.450485],[109.221902,27.438889],[109.243249,27.42963],[109.245528,27.418169],[109.286423,27.424633],[109.299915,27.423946],[109.30693,27.434397],[109.302973,27.475644],[109.312387,27.486182],[109.325879,27.494199],[109.379127,27.53579],[109.404971,27.550489],[109.433634,27.548383],[109.445986,27.562394],[109.459118,27.56015],[109.461937,27.565599],[109.451263,27.585925],[109.469132,27.620937],[109.470032,27.628762],[109.464455,27.651409],[109.45612,27.669432],[109.458219,27.674783],[109.470452,27.680272],[109.45684,27.69358],[109.429976,27.703549],[109.418223,27.714248],[109.414146,27.725037],[109.395317,27.7217],[109.392379,27.726363],[109.365935,27.722203],[109.377987,27.73802],[109.362997,27.745014],[109.364316,27.759777],[109.349864,27.771064],[109.338112,27.775908],[109.333015,27.782808],[109.34105,27.79021],[109.331216,27.791626],[109.342669,27.800764],[109.34021,27.821411],[109.345547,27.84073],[109.326838,27.858585],[109.337512,27.869543],[109.321861,27.867991],[109.317784,27.885521],[109.320602,27.895609],[109.311907,27.907796],[109.314846,27.91811],[109.313826,27.933306],[109.301774,27.958353],[109.30711,27.968024],[109.320182,27.970989],[109.321622,27.991786],[109.342249,28.00533],[109.365095,28.009114],[109.379187,28.033096],[109.370552,28.046087],[109.346986,28.060399],[109.334574,28.062222],[109.325219,28.04276],[109.311548,28.037973],[109.305911,28.029996],[109.298715,28.032503],[109.304952,28.076394],[109.312087,28.083503],[109.314366,28.103914],[109.325399,28.115212],[109.328098,28.126872],[109.338172,28.141765],[109.335833,28.158204],[109.341829,28.162165],[109.343208,28.173593],[109.34045,28.190391],[109.345787,28.206686],[109.359579,28.22043],[109.35676,28.23349],[109.367314,28.239041],[109.37349,28.25683],[109.388001,28.268111],[109.399694,28.269294],[109.376908,28.276935],[109.365875,28.274206],[109.359519,28.265882],[109.352203,28.268521],[109.363116,28.282984],[109.34099,28.293717],[109.314966,28.27639],[109.306391,28.274206],[109.294938,28.278527],[109.297576,28.292808],[109.285523,28.304131],[109.273051,28.309405],[109.27527,28.314043],[109.268554,28.338092],[109.285283,28.359046],[109.288342,28.374315],[109.277368,28.376542],[109.264656,28.39249],[109.264356,28.404393],[109.256861,28.436734],[109.261778,28.454398],[109.260818,28.464705],[109.266335,28.481775],[109.275929,28.484],[109.27437,28.494667],[109.236413,28.478416],[109.233595,28.474966],[109.215486,28.482138],[109.19174,28.47088],[109.185504,28.453127],[109.176569,28.446179],[109.180707,28.439458],[109.176749,28.431511],[109.165656,28.430375],[109.164936,28.414978],[109.154263,28.417612],[109.157141,28.403394],[109.153603,28.397306],[109.153123,28.381041],[109.144788,28.363818],[109.138612,28.358637],[109.151684,28.350547],[109.150785,28.344683],[109.137713,28.334229],[109.141251,28.320545],[109.126799,28.296946],[109.116246,28.28826],[109.119064,28.282257],[109.100415,28.263835],[109.087583,28.26097],[109.081527,28.24855],[109.085364,28.232808],[109.099816,28.214742],[109.101435,28.201407],[109.089982,28.196627],[109.082066,28.184337],[109.061439,28.200132],[109.041591,28.205366],[109.038233,28.217427],[109.02678,28.220066],[109.013828,28.199586],[109.014247,28.177873],[109.00981,28.167902],[109.001535,28.161391],[108.985765,28.161346],[108.979948,28.170771],[108.956622,28.182334],[108.929399,28.190574],[108.9273,28.196491],[108.933176,28.20787],[108.919505,28.217791],[108.912249,28.215561],[108.897258,28.21952],[108.864458,28.20614],[108.855163,28.199859],[108.836215,28.207369],[108.833277,28.217882],[108.824342,28.231033],[108.821764,28.245138],[108.805573,28.24209],[108.799757,28.226619],[108.773313,28.213468],[108.765338,28.192121],[108.758202,28.198357],[108.758682,28.220203],[108.749507,28.227575],[108.738834,28.227347],[108.737575,28.251416],[108.727621,28.259832],[108.725762,28.280301],[108.741052,28.2949],[108.763779,28.305631],[108.770075,28.314952],[108.76144,28.324591],[108.77793,28.347229],[108.77739,28.36659],[108.783087,28.380404],[108.762819,28.385811],[108.76174,28.395262],[108.779309,28.427423],[108.773913,28.437869],[108.746749,28.450221],[108.749088,28.461073],[108.743691,28.467656],[108.733917,28.468882],[108.725642,28.475828],[108.723363,28.491943],[108.709691,28.501066],[108.701416,28.482502],[108.688644,28.482502],[108.671135,28.475284],[108.658662,28.478053],[108.64523,28.46861],[108.641453,28.455715],[108.666817,28.44182],[108.669875,28.431465],[108.688344,28.422291],[108.696799,28.404575],[108.691702,28.394035],[108.674193,28.389355],[108.664719,28.382858],[108.656444,28.356365],[108.659082,28.35032],[108.673953,28.354547],[108.675752,28.343047],[108.667357,28.33441],[108.610811,28.325091],[108.602416,28.34082],[108.58011,28.343274],[108.576332,28.364318],[108.577531,28.390173],[108.587425,28.404939],[108.608832,28.407301],[108.609912,28.435689],[108.602836,28.438868],[108.597259,28.456805],[108.586766,28.463071],[108.587605,28.479324],[108.574953,28.497662],[108.581069,28.506967],[108.573214,28.528114],[108.576872,28.533831],[108.589344,28.538595],[108.610931,28.539412],[108.604635,28.59026],[108.618906,28.606538],[108.636056,28.621772],[108.632338,28.638953],[108.623284,28.641446],[108.609012,28.633604],[108.59618,28.640358],[108.585327,28.639633],[108.586106,28.648788],[108.575912,28.659711],[108.566498,28.662566],[108.561161,28.649151],[108.547789,28.647882],[108.538495,28.652731],[108.524643,28.647111],[108.517987,28.639995],[108.502756,28.637638],[108.501018,28.626668],[108.491303,28.630567],[108.471096,28.627801],[108.461381,28.634148],[108.439015,28.634012],[108.421685,28.643349],[108.390924,28.65178],[108.352128,28.676115],[108.343972,28.673396],[108.332519,28.679604],[108.343673,28.696458],[108.34763,28.709232],[108.34727,28.736271],[108.372515,28.760134],[108.375333,28.767513],[108.385287,28.772221],[108.389005,28.785847],[108.386487,28.801643],[108.382409,28.805806],[108.354226,28.814269],[108.355186,28.831644],[108.346431,28.856299],[108.355306,28.870818],[108.357464,28.893384],[108.350329,28.907084],[108.350568,28.93032],[108.346911,28.941484],[108.339895,28.947856],[108.322925,28.953957],[108.312551,28.99706],[108.308714,29.003384],[108.309793,29.018424],[108.29786,29.047144],[108.307155,29.077525],[108.301938,29.083077],[108.286587,29.089215],[108.270637,29.090885],[108.268658,29.077796],[108.260203,29.063758],[108.256965,29.041996],[108.242274,29.028359],[108.224645,29.031566],[108.230401,29.046963],[108.21505,29.056128],[108.204737,29.05676],[108.197721,29.070664],[108.171397,29.065383],[108.152448,29.053735],[108.13272,29.054096],[108.128763,29.065699],[108.109814,29.076081],[108.069398,29.086552],[108.078573,29.07107],[108.073536,29.05816],[108.078873,29.023166],[108.078993,29.007178],[108.088347,28.999454],[108.107895,28.975872],[108.106996,28.961865],[108.117309,28.950703],[108.13224,28.943969],[108.138417,28.932082],[108.134819,28.902653],[108.128643,28.869778],[108.141295,28.855982],[108.158085,28.856344],[108.158744,28.845804],[108.180751,28.81083],[108.189446,28.800692],[108.195082,28.802548],[108.207495,28.817572],[108.213671,28.776341],[108.201379,28.763122],[108.195322,28.750671],[108.184649,28.74895],[108.18219,28.741569],[108.18189,28.712358],[108.174575,28.690206],[108.163242,28.677066],[108.145013,28.669997],[108.122586,28.652369],[108.128882,28.644165],[108.114491,28.628799],[108.093024,28.621727],[108.084269,28.627212],[108.08283,28.620548],[108.061543,28.613022],[108.037558,28.592754],[108.038457,28.58382],[108.04991,28.566766],[108.038517,28.5547],[108.043554,28.548122],[108.058245,28.541408],[108.069938,28.526843],[108.070058,28.516542],[108.04991,28.500476],[108.048171,28.489901],[108.060104,28.472378],[108.056146,28.454444],[108.048711,28.444045],[108.063942,28.433645],[108.068259,28.422018],[108.051709,28.388538],[108.037138,28.365454],[108.026165,28.368272],[108.016151,28.384039],[108.005897,28.389764],[108.012313,28.39617],[108.025745,28.401213],[108.019509,28.403121],[108.007636,28.415886],[108.006197,28.424244],[107.995643,28.427923],[107.98323,28.422881],[107.982571,28.431238],[108.007876,28.434054],[108.010754,28.446452],[107.991146,28.441774],[107.977294,28.447814],[107.969199,28.439731],[107.968839,28.423335],[107.960744,28.411071],[107.972557,28.398169],[107.983051,28.397079],[108.00098,28.384585],[107.996662,28.369635],[107.990246,28.368999],[107.972497,28.383812],[107.955647,28.380132],[107.936039,28.384721],[107.913792,28.382903],[107.921108,28.370135],[107.874456,28.370407],[107.866481,28.358501],[107.861564,28.339502],[107.862583,28.30886],[107.866001,28.288897],[107.861204,28.261288],[107.864982,28.247185],[107.862224,28.211966],[107.859225,28.200269],[107.85167,28.202636],[107.836439,28.184292],[107.824027,28.183336],[107.816052,28.17546],[107.803399,28.183563],[107.805618,28.174276],[107.803219,28.147503],[107.799022,28.125551],[107.78487,28.093937],[107.78595,28.083412],[107.778874,28.072977],[107.786549,28.07448],[107.791886,28.066004],[107.807057,28.069923],[107.813233,28.06728],[107.813293,28.047363],[107.832122,28.049095],[107.8359,28.031044],[107.855328,28.038292],[107.862164,28.037381],[107.870918,28.058667],[107.878114,28.05534],[107.88441,28.063042],[107.889267,28.051466],[107.914692,28.018644],[107.928004,28.009251],[107.933341,28.001408],[107.915172,27.973041],[107.911394,27.962322],[107.909595,27.937458],[107.911634,27.929062],[107.923686,27.90807],[107.906177,27.904282],[107.898802,27.897709],[107.888608,27.878035],[107.888368,27.844018],[107.903599,27.826664],[107.912833,27.80958],[107.931842,27.793545],[107.932501,27.778696],[107.943954,27.779061],[107.946233,27.767728],[107.931722,27.753241],[107.927764,27.745288],[107.927944,27.7265],[107.940776,27.691522],[107.937118,27.680546],[107.922187,27.666093],[107.903119,27.627892],[107.902579,27.612105],[107.906837,27.591646],[107.902639,27.568392],[107.893705,27.556625],[107.88513,27.551588],[107.865702,27.551451],[107.844774,27.555114],[107.829124,27.542064],[107.808016,27.491267],[107.789128,27.485266],[107.780793,27.486319],[107.762924,27.475964],[107.755188,27.459559],[107.757407,27.453327],[107.774257,27.443748],[107.791766,27.443931],[107.798062,27.43811],[107.798302,27.404003],[107.801001,27.394098],[107.765802,27.391164],[107.762264,27.385156],[107.780913,27.373691],[107.774557,27.359702],[107.779953,27.351491],[107.806817,27.347408],[107.805318,27.331948],[107.819829,27.324377],[107.856707,27.330159],[107.870619,27.341812],[107.894364,27.345574],[107.908276,27.33204],[107.911874,27.332911],[107.916311,27.332774],[107.919369,27.332544],[107.931362,27.346445],[107.948452,27.354198],[107.958106,27.350757],[107.959365,27.339197],[107.952049,27.328323],[107.956547,27.312952],[107.975915,27.317908],[107.989347,27.305839],[107.9999,27.302764],[108.004398,27.316852],[108.043974,27.322313],[108.064841,27.32268],[108.082411,27.33048],[108.112512,27.323184],[108.130741,27.325249],[108.141295,27.314925],[108.14951,27.300194],[108.16654,27.28771],[108.179252,27.292576],[108.187287,27.308179],[108.192264,27.330113],[108.206416,27.357042],[108.218288,27.364426],[108.23262,27.367087],[108.266139,27.349014],[108.28221,27.345757],[108.305536,27.352317],[108.321306,27.349473],[108.336837,27.358831],[108.355426,27.377681],[108.388406,27.397308],[108.409033,27.407441],[108.424264,27.424083],[108.437096,27.425504],[108.445491,27.420599],[108.461262,27.418628],[108.478291,27.40657],[108.485667,27.409504],[108.490944,27.422891],[108.511091,27.418261],[108.517807,27.437881],[108.531659,27.466617],[108.543472,27.479493],[108.559662,27.479997],[108.575552,27.471611],[108.586226,27.478026],[108.59684,27.506477],[108.605354,27.516096],[108.617347,27.521638],[108.626702,27.519531],[108.648468,27.507622],[108.669516,27.504873],[108.6953,27.518111],[108.710111,27.515684],[108.737095,27.489618],[108.746329,27.483754],[108.746809,27.471107],[108.7618,27.469595],[108.759521,27.48719],[108.77775,27.488885],[108.792801,27.485815],[108.800716,27.489022],[108.819725,27.485311],[108.829319,27.478851],[108.833996,27.482654],[108.820564,27.501667],[108.830338,27.507576],[108.841072,27.507622],[108.838554,27.496719],[108.858342,27.49704],[108.879809,27.493283],[108.891561,27.487969],[108.903674,27.487969],[108.923822,27.511057],[108.934136,27.511561],[108.946608,27.498277],[108.968675,27.493925],[108.971433,27.487785],[108.952185,27.470145],[108.950566,27.460018],[108.959321,27.452593],[108.985884,27.455481],[108.990322,27.443152],[109.005792,27.444206],[109.020244,27.436918],[109.033256,27.421149],[109.034995,27.412668],[109.022103,27.388275],[109.018565,27.372361],[109.006752,27.369609],[108.962079,27.375067],[108.945169,27.369426],[108.937074,27.362362],[108.917106,27.366766],[108.90991,27.364105],[108.900016,27.346032],[108.883047,27.344977],[108.881667,27.359656],[108.875071,27.366903],[108.866017,27.368096],[108.856962,27.363188],[108.864398,27.353555],[108.846589,27.352684],[108.843111,27.343555],[108.846709,27.335114],[108.86122,27.321624],[108.866197,27.306803],[108.857622,27.276786],[108.843471,27.267559],[108.838853,27.237394],[108.82824,27.236522],[108.821584,27.225546],[108.825541,27.21953],[108.807252,27.214524],[108.801256,27.203179],[108.804554,27.196794],[108.840472,27.187468],[108.846289,27.174329],[108.857622,27.165553],[108.857982,27.152503],[108.868296,27.140784],[108.885085,27.132189],[108.887124,27.121203]]],[[[107.919369,27.332544],[107.916311,27.332774],[107.911874,27.332911],[107.908276,27.33204],[107.906117,27.325983],[107.915352,27.314237],[107.930822,27.31364],[107.931422,27.321257],[107.919369,27.332544]]]]}},{"type":"Feature","properties":{"adcode":522300,"name":"黔西南布依族苗族自治州","center":[104.897971,25.08812],"centroid":[105.466954,25.263792],"childrenNum":8,"level":"city","parent":{"adcode":520000},"subFeatureIndex":6,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.522573,25.05986],[106.518916,25.062854],[106.52869,25.077496],[106.531088,25.090125],[106.525931,25.099199],[106.517416,25.103455],[106.513579,25.115801],[106.497988,25.135674],[106.479519,25.152317],[106.47838,25.158815],[106.463269,25.167416],[106.459731,25.159984],[106.452176,25.164986],[106.446299,25.176204],[106.457513,25.177185],[106.467107,25.18714],[106.496729,25.202282],[106.506383,25.21873],[106.497329,25.228868],[106.495889,25.24606],[106.488934,25.264464],[106.483297,25.29085],[106.464768,25.318023],[106.456733,25.323766],[106.443301,25.322925],[106.423633,25.32624],[106.419616,25.337583],[106.422194,25.349672],[106.418836,25.36204],[106.399108,25.36694],[106.382018,25.367873],[106.34598,25.356019],[106.332009,25.354199],[106.323913,25.357653],[106.304965,25.381919],[106.29591,25.390411],[106.26425,25.401935],[106.252557,25.401748],[106.226472,25.394003],[106.219217,25.418122],[106.208423,25.444475],[106.199369,25.455294],[106.191993,25.470402],[106.178921,25.462335],[106.16339,25.465413],[106.165309,25.477955],[106.159313,25.481545],[106.155595,25.466112],[106.140964,25.454688],[106.127832,25.454781],[106.123095,25.478048],[106.135567,25.484995],[106.111342,25.511939],[106.091794,25.508536],[106.069187,25.525455],[106.068888,25.533191],[106.084358,25.537106],[106.091434,25.534077],[106.100488,25.54102],[106.093713,25.546938],[106.103607,25.565109],[106.096771,25.577781],[106.080101,25.587377],[106.083699,25.596879],[106.076203,25.598556],[106.06445,25.583557],[106.054676,25.581834],[106.056535,25.572843],[106.04916,25.558587],[106.036747,25.561336],[106.022835,25.570188],[105.992134,25.569256],[105.987037,25.58407],[105.990755,25.59674],[105.98218,25.612295],[105.979542,25.597299],[105.971446,25.582346],[105.963411,25.575592],[105.962092,25.567299],[105.969288,25.561103],[105.981221,25.565109],[105.993033,25.552343],[105.98146,25.538597],[105.935468,25.512172],[105.91664,25.499074],[105.912862,25.491289],[105.91658,25.470775],[105.931271,25.459258],[105.926893,25.448765],[105.939186,25.438039],[105.927433,25.432209],[105.909264,25.436266],[105.908245,25.429503],[105.893853,25.42232],[105.877124,25.432862],[105.834429,25.451283],[105.815181,25.46089],[105.786638,25.468397],[105.78358,25.498235],[105.756237,25.543583],[105.74994,25.563292],[105.732671,25.572564],[105.719899,25.602142],[105.706766,25.612854],[105.689197,25.653038],[105.680982,25.661418],[105.665332,25.669145],[105.638708,25.673242],[105.622997,25.678734],[105.577844,25.712521],[105.567051,25.712708],[105.548462,25.694931],[105.531852,25.69521],[105.515602,25.715034],[105.495154,25.732715],[105.48544,25.747183],[105.454979,25.760486],[105.441127,25.778021],[105.429614,25.787973],[105.41966,25.788856],[105.391717,25.810292],[105.378585,25.825541],[105.373068,25.846691],[105.376966,25.8828],[105.367072,25.892697],[105.348663,25.888376],[105.33613,25.888515],[105.315383,25.898504],[105.301411,25.911466],[105.285821,25.931207],[105.266692,25.937431],[105.255239,25.951874],[105.263095,25.975137],[105.260276,25.987904],[105.25422,25.98549],[105.249843,25.979687],[105.236291,25.985722],[105.227776,25.996725],[105.220161,26.022903],[105.209187,26.04527],[105.18874,26.066891],[105.193956,26.084241],[105.18886,26.10349],[105.175248,26.119396],[105.180764,26.149534],[105.177526,26.158713],[105.18802,26.163627],[105.18772,26.173824],[105.158518,26.174566],[105.13861,26.1506],[105.124698,26.163997],[105.104371,26.164646],[105.090819,26.158528],[105.065874,26.162514],[105.063355,26.168772],[105.052142,26.172665],[105.032714,26.156256],[105.019162,26.148839],[105.004531,26.133029],[104.999974,26.120741],[105.011966,26.091523],[104.988341,26.068422],[104.976828,26.066288],[104.970891,26.055478],[104.959978,26.044806],[104.955541,26.009211],[104.949604,26.000206],[104.94007,25.974673],[104.94061,25.964087],[104.930056,25.940589],[104.936532,25.928699],[104.951163,25.920152],[104.944327,25.906867],[104.948405,25.897807],[104.947445,25.86886],[104.932994,25.864817],[104.911047,25.846923],[104.901093,25.84855],[104.888501,25.837348],[104.884963,25.822333],[104.87315,25.805875],[104.872851,25.780299],[104.870092,25.774905],[104.877887,25.744392],[104.904691,25.709962],[104.909189,25.688927],[104.901333,25.65909],[104.896056,25.650338],[104.870812,25.633018],[104.861577,25.621516],[104.863136,25.614391],[104.876688,25.600512],[104.881845,25.589101],[104.880046,25.564783],[104.888261,25.55677],[104.902832,25.557049],[104.914345,25.550153],[104.911767,25.541113],[104.913146,25.517019],[104.892818,25.480286],[104.872671,25.460936],[104.860018,25.442982],[104.850604,25.414437],[104.850484,25.402728],[104.855761,25.383692],[104.869073,25.375853],[104.880946,25.374546],[104.888801,25.368246],[104.886882,25.362226],[104.870752,25.351306],[104.849824,25.36778],[104.834054,25.348925],[104.822241,25.341971],[104.783864,25.337163],[104.754962,25.340384],[104.710409,25.334969],[104.69242,25.328574],[104.687802,25.333102],[104.690501,25.347805],[104.683965,25.362646],[104.664536,25.377766],[104.659499,25.374313],[104.654822,25.360033],[104.645828,25.356813],[104.647327,25.343791],[104.645768,25.316389],[104.652843,25.304998],[104.640071,25.298928],[104.641031,25.294819],[104.662018,25.284826],[104.671192,25.293464],[104.70789,25.296219],[104.709569,25.28179],[104.729777,25.273664],[104.735893,25.267873],[104.75718,25.266378],[104.754182,25.275906],[104.766475,25.276513],[104.779967,25.270021],[104.788482,25.256757],[104.796637,25.253534],[104.805991,25.262829],[104.817384,25.261054],[104.827998,25.237091],[104.810128,25.231718],[104.80821,25.215786],[104.815825,25.198357],[104.808629,25.190318],[104.823021,25.171296],[104.818643,25.160171],[104.804732,25.161667],[104.787582,25.179242],[104.777328,25.186393],[104.767194,25.204431],[104.750644,25.215039],[104.74081,25.206581],[104.731936,25.204945],[104.72456,25.195693],[104.734634,25.182233],[104.732355,25.16779],[104.718864,25.152691],[104.718264,25.14091],[104.696377,25.123376],[104.693139,25.102894],[104.686303,25.095691],[104.686483,25.076233],[104.671013,25.066783],[104.647267,25.061684],[104.619564,25.060655],[104.635934,25.054713],[104.652064,25.058924],[104.673711,25.05855],[104.683785,25.054854],[104.700575,25.036325],[104.706871,25.010118],[104.712987,24.996216],[104.700695,24.994765],[104.685224,24.985497],[104.687023,24.974963],[104.663457,24.963118],[104.663937,24.951084],[104.651284,24.940314],[104.651404,24.934601],[104.638692,24.918255],[104.635394,24.903922],[104.618724,24.893944],[104.60829,24.892351],[104.596298,24.88448],[104.587003,24.872907],[104.570993,24.844088],[104.562358,24.839026],[104.539812,24.813855],[104.541431,24.804901],[104.537113,24.793274],[104.544969,24.777754],[104.540471,24.764905],[104.54239,24.755807],[104.528659,24.736811],[104.529438,24.731416],[104.55858,24.727804],[104.574351,24.714059],[104.594019,24.710306],[104.599776,24.696042],[104.628798,24.661174],[104.632995,24.659203],[104.666095,24.656903],[104.697936,24.649392],[104.703633,24.645825],[104.698956,24.632728],[104.70897,24.624183],[104.729477,24.61822],[104.743389,24.622258],[104.751304,24.647139],[104.764256,24.657043],[104.803173,24.665726],[104.810608,24.671687],[104.822961,24.670373],[104.841909,24.676192],[104.860438,24.701532],[104.866255,24.730666],[104.875729,24.73986],[104.899354,24.752946],[104.982524,24.770439],[105.017063,24.785303],[105.033373,24.787788],[105.034153,24.795431],[105.026777,24.81559],[105.037751,24.834058],[105.041708,24.853976],[105.036911,24.865644],[105.03883,24.873001],[105.070431,24.894974],[105.075168,24.916709],[105.100293,24.931182],[105.108988,24.939424],[105.125238,24.946214],[105.132494,24.961386],[105.145506,24.964663],[105.157259,24.958857],[105.178486,24.985403],[105.195995,24.994672],[105.212665,24.995374],[105.215244,24.981283],[105.231134,24.980909],[105.234792,24.9656],[105.251522,24.967426],[105.263994,24.956235],[105.257638,24.942094],[105.265493,24.930198],[105.280064,24.929449],[105.308847,24.923969],[105.333972,24.926358],[105.339009,24.933383],[105.365633,24.943498],[105.391837,24.941625],[105.428175,24.930713],[105.443166,24.921862],[105.448503,24.910714],[105.456598,24.877874],[105.470989,24.852664],[105.484481,24.8469],[105.492816,24.833355],[105.493236,24.816668],[105.497493,24.809355],[105.523337,24.801573],[105.544325,24.798525],[105.572867,24.797306],[105.590557,24.807573],[105.607646,24.803729],[105.614362,24.785585],[105.626115,24.777191],[105.650401,24.772174],[105.678284,24.775597],[105.705687,24.768469],[105.725055,24.755432],[105.737768,24.74244],[105.758935,24.734935],[105.766251,24.720345],[105.795213,24.704816],[105.805467,24.701532],[105.827593,24.702939],[105.856076,24.716874],[105.864111,24.729493],[105.880841,24.730431],[105.892294,24.722785],[105.904947,24.725224],[105.942004,24.724802],[105.946502,24.703972],[105.953038,24.688112],[105.961852,24.677553],[105.985838,24.661409],[105.990095,24.649252],[106.014321,24.63423],[106.023195,24.632352],[106.039265,24.655588],[106.046221,24.673142],[106.047061,24.684076],[106.065829,24.697262],[106.084118,24.705192],[106.09725,24.705942],[106.113561,24.714059],[106.119017,24.725131],[106.133588,24.729822],[106.138865,24.737092],[106.143243,24.756698],[106.149899,24.762842],[106.170226,24.758339],[106.188036,24.790789],[106.185217,24.801151],[106.19733,24.813433],[106.200328,24.839776],[106.206085,24.851071],[106.204046,24.861427],[106.19649,24.872064],[106.19751,24.885792],[106.192113,24.896989],[106.182339,24.903734],[106.167648,24.924719],[106.16429,24.93446],[106.149899,24.944435],[106.145341,24.954034],[106.153017,24.960964],[106.175383,24.95675],[106.183238,24.951693],[106.191633,24.953426],[106.19691,24.963118],[106.215379,24.981845],[106.228211,24.980207],[106.242183,24.972107],[106.253756,24.971218],[106.261491,24.977351],[106.278581,24.97927],[106.304965,24.974074],[106.316358,24.983109],[106.332488,24.988493],[106.353655,24.990225],[106.369906,24.998838],[106.388674,25.00539],[106.406064,25.005624],[106.41164,25.012177],[106.435746,25.017746],[106.44528,25.022333],[106.449957,25.033236],[106.463569,25.040302],[106.512499,25.051111],[106.522573,25.05986]]],[[[105.081944,24.915632],[105.08926,24.915211],[105.100173,24.924765],[105.098734,24.929121],[105.081944,24.915632]]]]}},{"type":"Feature","properties":{"adcode":522600,"name":"黔东南苗族侗族自治州","center":[107.977488,26.583352],"centroid":[108.560041,26.50434],"childrenNum":16,"level":"city","parent":{"adcode":520000},"subFeatureIndex":7,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.9999,27.302764],[108.003558,27.286196],[108.011833,27.274583],[108.032641,27.269625],[108.039716,27.258102],[108.03336,27.238634],[108.020708,27.229771],[108.004698,27.226786],[107.977834,27.21558],[107.965901,27.214937],[107.964102,27.209977],[107.971298,27.199183],[107.95169,27.192338],[107.945154,27.160269],[107.955947,27.154387],[107.956067,27.14878],[107.940956,27.146253],[107.939217,27.15071],[107.908935,27.147356],[107.903539,27.155857],[107.88483,27.15889],[107.886389,27.146253],[107.881952,27.142208],[107.862703,27.141565],[107.85161,27.150756],[107.85119,27.16445],[107.819469,27.159028],[107.825646,27.171067],[107.846093,27.183196],[107.83506,27.185263],[107.832901,27.192705],[107.823607,27.186733],[107.793745,27.188203],[107.760405,27.191649],[107.762384,27.203546],[107.780973,27.209242],[107.772938,27.21806],[107.747453,27.217693],[107.729584,27.226143],[107.709016,27.22821],[107.684431,27.235328],[107.666382,27.234593],[107.662424,27.21705],[107.651751,27.207405],[107.663264,27.202857],[107.671659,27.209242],[107.687429,27.191833],[107.678795,27.187422],[107.684431,27.17024],[107.699062,27.152686],[107.704219,27.135452],[107.682752,27.101206],[107.673758,27.092562],[107.676996,27.072927],[107.658827,27.07771],[107.647314,27.066581],[107.638559,27.049241],[107.640598,27.028633],[107.666382,26.984137],[107.662844,26.971986],[107.63724,26.956335],[107.630404,26.956704],[107.615593,26.928757],[107.600002,26.909738],[107.609716,26.895138],[107.621829,26.888644],[107.624947,26.880813],[107.635681,26.879846],[107.645155,26.865472],[107.642397,26.852295],[107.634062,26.844784],[107.648393,26.835844],[107.66908,26.843401],[107.681013,26.842203],[107.683592,26.849668],[107.691807,26.84589],[107.688089,26.860312],[107.690787,26.866486],[107.722508,26.854875],[107.740018,26.842019],[107.741217,26.83612],[107.730603,26.836627],[107.733062,26.827318],[107.750451,26.82188],[107.763763,26.824414],[107.76832,26.803212],[107.761844,26.792793],[107.746793,26.78763],[107.749012,26.783711],[107.733242,26.768495],[107.724907,26.768449],[107.718191,26.751294],[107.709076,26.752632],[107.695404,26.735429],[107.698762,26.723666],[107.687669,26.712548],[107.693366,26.700922],[107.695464,26.673282],[107.699782,26.652835],[107.713753,26.644434],[107.720769,26.634278],[107.725566,26.615672],[107.739598,26.599094],[107.745114,26.587318],[107.73564,26.573831],[107.713573,26.569489],[107.668781,26.572954],[107.658407,26.579697],[107.647194,26.601126],[107.640118,26.607176],[107.622549,26.611932],[107.610556,26.609254],[107.611035,26.597801],[107.60312,26.584039],[107.588009,26.591244],[107.588069,26.612163],[107.577876,26.605144],[107.566183,26.604728],[107.556408,26.590181],[107.548493,26.588842],[107.53776,26.573046],[107.522469,26.573554],[107.513534,26.569027],[107.513355,26.557294],[107.503281,26.55212],[107.491828,26.557571],[107.489369,26.56487],[107.482053,26.563577],[107.479055,26.54713],[107.462505,26.547361],[107.460886,26.563577],[107.466883,26.577434],[107.449073,26.579143],[107.443677,26.572584],[107.432104,26.572353],[107.433363,26.564316],[107.425687,26.565794],[107.426827,26.551334],[107.417353,26.557617],[107.398044,26.553413],[107.402541,26.539692],[107.382753,26.537797],[107.379096,26.543018],[107.361826,26.549948],[107.354271,26.543758],[107.33832,26.551889],[107.331664,26.544127],[107.334603,26.53715],[107.319851,26.530451],[107.318472,26.516449],[107.325488,26.503092],[107.344676,26.501567],[107.356609,26.493941],[107.35577,26.487285],[107.332924,26.464123],[107.312176,26.453952],[107.314575,26.445767],[107.301922,26.441975],[107.306779,26.428934],[107.316194,26.430414],[107.33964,26.406085],[107.369202,26.396463],[107.38767,26.382769],[107.413695,26.378142],[107.430784,26.382537],[107.447934,26.405252],[107.466103,26.408444],[107.506219,26.41936],[107.518331,26.411867],[107.524508,26.382213],[107.524268,26.363659],[107.533742,26.349544],[107.544116,26.360882],[107.559946,26.367546],[107.587949,26.3619],[107.590588,26.353385],[107.616192,26.341214],[107.624048,26.334456],[107.635021,26.316264],[107.641137,26.29969],[107.642936,26.284549],[107.647493,26.279918],[107.663384,26.284132],[107.682812,26.299736],[107.706918,26.305292],[107.722088,26.317329],[107.732282,26.319505],[107.761964,26.318255],[107.779714,26.310061],[107.779594,26.30131],[107.772038,26.274639],[107.760465,26.25301],[107.745714,26.216459],[107.741157,26.213679],[107.737979,26.167798],[107.745714,26.170116],[107.746074,26.179062],[107.755008,26.176373],[107.756328,26.16715],[107.763044,26.170904],[107.761245,26.160011],[107.7685,26.152362],[107.787689,26.142719],[107.792246,26.124775],[107.799921,26.11346],[107.815752,26.10015],[107.830383,26.095373],[107.840637,26.098852],[107.845134,26.111188],[107.848612,26.137202],[107.860365,26.140262],[107.878354,26.1219],[107.886929,26.116707],[107.906417,26.124033],[107.914452,26.116799],[107.915052,26.106782],[107.923926,26.100289],[107.929863,26.089714],[107.945034,26.084148],[107.940416,26.078211],[107.953249,26.078675],[107.953548,26.063134],[107.957386,26.060072],[107.963442,26.075381],[107.972977,26.071577],[107.975075,26.079649],[107.989287,26.082571],[108.002299,26.079556],[108.014292,26.090271],[108.029822,26.087349],[108.043554,26.078953],[108.064182,26.075381],[108.076594,26.078767],[108.112992,26.073386],[108.123486,26.086885],[108.130861,26.08118],[108.138357,26.084102],[108.137038,26.094074],[108.151849,26.096208],[108.158385,26.084612],[108.170257,26.079556],[108.171757,26.072412],[108.162222,26.069629],[108.16654,26.039841],[108.175774,26.035015],[108.187707,26.03715],[108.208274,26.055757],[108.21517,26.069304],[108.228722,26.070139],[108.230941,26.062066],[108.223385,26.051488],[108.226324,26.041558],[108.238436,26.044621],[108.240715,26.032138],[108.230581,26.02694],[108.218228,26.011161],[108.225424,26.008561],[108.218768,26.00262],[108.218708,25.980801],[108.223325,25.973187],[108.212892,25.970308],[108.209893,25.962833],[108.19862,25.954382],[108.190585,25.957771],[108.18219,25.953592],[108.167739,25.954939],[108.167739,25.937059],[108.152808,25.920478],[108.137877,25.915136],[108.141655,25.899898],[108.146812,25.898086],[108.151609,25.885542],[108.138836,25.87741],[108.134759,25.868163],[108.110114,25.845761],[108.108435,25.839486],[108.124025,25.831026],[108.093084,25.811408],[108.08259,25.782904],[108.087208,25.770626],[108.104537,25.764347],[108.107895,25.752811],[108.097282,25.740949],[108.103398,25.715918],[108.09944,25.717268],[108.098001,25.703308],[108.102378,25.696886],[108.09932,25.679246],[108.110653,25.680131],[108.115451,25.687205],[108.130681,25.690882],[108.136078,25.696839],[108.14987,25.696513],[108.158505,25.702656],[108.169058,25.675616],[108.1657,25.65653],[108.181471,25.648709],[108.186208,25.642796],[108.181711,25.616487],[108.197061,25.610945],[108.217149,25.611271],[108.225604,25.621283],[108.237297,25.628501],[108.246951,25.620678],[108.242634,25.602795],[108.246831,25.585887],[108.260623,25.588449],[108.271296,25.582672],[108.286707,25.567905],[108.28143,25.557841],[108.283109,25.546239],[108.291444,25.524616],[108.303257,25.520748],[108.316689,25.531514],[108.344692,25.537339],[108.352487,25.533098],[108.351828,25.524709],[108.359563,25.513477],[108.38139,25.500659],[108.392543,25.498561],[108.400338,25.491382],[108.415089,25.461682],[108.418987,25.443355],[108.433438,25.436406],[108.443153,25.449978],[108.4633,25.454315],[108.471815,25.458884],[108.488365,25.456366],[108.500358,25.447832],[108.507374,25.432955],[108.51385,25.42871],[108.511271,25.41439],[108.524224,25.418355],[108.544371,25.407999],[108.543952,25.403661],[108.564039,25.384345],[108.56248,25.37408],[108.585866,25.366007],[108.594381,25.347525],[108.589044,25.335342],[108.613869,25.309853],[108.625202,25.308126],[108.624903,25.324326],[108.63006,25.335903],[108.615368,25.365773],[108.623883,25.377299],[108.622264,25.389758],[108.613869,25.407253],[108.59588,25.407533],[108.587665,25.421387],[108.600318,25.432488],[108.598878,25.454828],[108.611531,25.479633],[108.621365,25.468024],[108.633178,25.464433],[108.628261,25.477955],[108.620405,25.476696],[108.618127,25.484342],[108.607453,25.492081],[108.621185,25.49278],[108.622204,25.502896],[108.631319,25.508396],[108.632878,25.518884],[108.654585,25.530069],[108.66304,25.526014],[108.667717,25.532213],[108.682468,25.521027],[108.690443,25.51893],[108.687325,25.535242],[108.658183,25.551831],[108.665918,25.562361],[108.659921,25.573449],[108.660941,25.584815],[108.672814,25.590172],[108.683787,25.586119],[108.690443,25.596274],[108.689723,25.604285],[108.682408,25.605868],[108.689004,25.623193],[108.703695,25.625521],[108.714489,25.623472],[108.723363,25.634508],[108.76198,25.637767],[108.765518,25.632087],[108.784046,25.628268],[108.786565,25.620818],[108.780269,25.601816],[108.79484,25.593992],[108.799157,25.576011],[108.786925,25.572144],[108.781288,25.554347],[108.789143,25.554673],[108.798078,25.546705],[108.800117,25.538038],[108.812709,25.52634],[108.826501,25.55006],[108.830338,25.546798],[108.855943,25.548383],[108.851566,25.554626],[108.867336,25.55854],[108.876211,25.553368],[108.890422,25.556257],[108.888923,25.544841],[108.897498,25.54088],[108.913088,25.543769],[108.931737,25.556397],[108.937913,25.553601],[108.952425,25.55635],[108.972453,25.542511],[108.972872,25.531793],[108.989662,25.533704],[109.011069,25.519256],[109.025101,25.512498],[109.044169,25.527972],[109.055502,25.525548],[109.066836,25.538737],[109.077329,25.53622],[109.088542,25.549501],[109.07559,25.553089],[109.067795,25.561848],[109.052204,25.566833],[109.046328,25.5748],[109.04243,25.608896],[109.046628,25.618862],[109.031217,25.629526],[109.041891,25.638978],[109.04297,25.656949],[109.049506,25.66058],[109.057481,25.679805],[109.07523,25.693861],[109.071932,25.708194],[109.079128,25.720711],[109.054303,25.732203],[109.055862,25.738111],[109.04285,25.737693],[109.036914,25.724526],[109.030557,25.722712],[109.003214,25.736344],[109.001355,25.724526],[108.983906,25.720571],[108.974551,25.700422],[108.958181,25.691347],[108.948407,25.676686],[108.929399,25.68418],[108.919565,25.677757],[108.900316,25.682365],[108.895099,25.703401],[108.896239,25.71415],[108.912129,25.718338],[108.911409,25.724759],[108.929758,25.732575],[108.940252,25.740112],[108.953864,25.730761],[108.963578,25.732529],[108.95956,25.740112],[108.964238,25.745089],[108.979588,25.745322],[108.989722,25.762998],[109.000036,25.760579],[108.989602,25.778951],[108.997697,25.784392],[109.011789,25.779509],[109.016766,25.790902],[109.031337,25.793925],[109.048187,25.790577],[109.077869,25.776765],[109.080567,25.78867],[109.087643,25.795831],[109.098257,25.795134],[109.094779,25.802295],[109.117985,25.809408],[109.135134,25.805456],[109.143589,25.795273],[109.143829,25.77723],[109.132316,25.762952],[109.148266,25.741833],[109.155342,25.744717],[109.15924,25.759044],[109.182805,25.763277],[109.19108,25.774533],[109.177948,25.782067],[109.182266,25.788903],[109.166136,25.796296],[109.17543,25.804898],[109.193059,25.800109],[109.206671,25.788112],[109.204992,25.773928],[109.209429,25.747508],[109.206971,25.740251],[109.217285,25.736762],[109.234194,25.736344],[109.247686,25.728248],[109.254762,25.728574],[109.256381,25.71978],[109.280486,25.713964],[109.296677,25.714197],[109.313886,25.72206],[109.314906,25.73318],[109.34009,25.731738],[109.34147,25.746904],[109.338411,25.755277],[109.327858,25.761417],[109.334154,25.772021],[109.329117,25.784206],[109.336313,25.7896],[109.339731,25.802527],[109.337092,25.811175],[109.339311,25.833769],[109.349025,25.838836],[109.358979,25.836047],[109.369053,25.842647],[109.37373,25.853291],[109.388661,25.870765],[109.391359,25.891256],[109.396756,25.900316],[109.413246,25.905612],[109.425719,25.91639],[109.434353,25.932322],[109.432015,25.947787],[109.426018,25.955171],[109.40683,25.961068],[109.408509,25.96729],[109.454381,25.991386],[109.468413,26.000531],[109.482624,26.029632],[109.479146,26.047776],[109.466254,26.048658],[109.453842,26.05404],[109.447545,26.071763],[109.450963,26.075984],[109.449704,26.10182],[109.459838,26.093471],[109.474409,26.099037],[109.504091,26.096857],[109.512726,26.115501],[109.514105,26.128253],[109.504991,26.134142],[109.495217,26.15264],[109.494437,26.144991],[109.480106,26.145593],[109.467513,26.162329],[109.471771,26.169931],[109.459298,26.194077],[109.470452,26.196348],[109.468293,26.203207],[109.452402,26.209647],[109.43963,26.238835],[109.453422,26.264543],[109.458339,26.283437],[109.476868,26.299227],[109.466134,26.314135],[109.460138,26.31381],[109.443528,26.302005],[109.442628,26.289874],[109.429796,26.286679],[109.421041,26.288716],[109.401493,26.283715],[109.391179,26.277093],[109.37325,26.278205],[109.354362,26.265284],[109.339791,26.26408],[109.334754,26.276676],[109.32336,26.282465],[109.32492,26.290337],[109.306451,26.290707],[109.297636,26.297236],[109.285883,26.295847],[109.27449,26.315431],[109.271432,26.327744],[109.277308,26.34001],[109.292599,26.345333],[109.299015,26.368194],[109.313586,26.397388],[109.319583,26.41862],[109.326838,26.427963],[109.361018,26.44831],[109.37355,26.449466],[109.380986,26.461766],[109.362457,26.46625],[109.364076,26.475913],[109.385483,26.493525],[109.381705,26.518482],[109.404312,26.529665],[109.408749,26.537058],[109.403952,26.560204],[109.395197,26.566441],[109.399035,26.570967],[109.385483,26.571014],[109.39022,26.582238],[109.387162,26.588057],[109.391299,26.600526],[109.384703,26.604728],[109.378707,26.622459],[109.364376,26.633447],[109.355141,26.65902],[109.334094,26.646234],[109.304232,26.663128],[109.287022,26.689664],[109.283724,26.698569],[109.292959,26.701291],[109.298416,26.696539],[109.319103,26.701752],[109.335593,26.699999],[109.355021,26.693217],[109.364975,26.69617],[109.37301,26.705028],[109.385963,26.712133],[109.381285,26.727449],[109.40707,26.719837],[109.413966,26.722236],[109.417743,26.739764],[109.437711,26.755214],[109.453962,26.761209],[109.486702,26.760149],[109.476568,26.829899],[109.466914,26.831927],[109.452642,26.861832],[109.436452,26.861141],[109.444847,26.871738],[109.438551,26.877404],[109.436452,26.892605],[109.446586,26.899652],[109.458219,26.901863],[109.471771,26.911166],[109.484243,26.913561],[109.493238,26.921113],[109.514105,26.930783],[109.526698,26.925902],[109.533653,26.938611],[109.555,26.946898],[109.546725,26.984597],[109.536831,26.974656],[109.527597,26.977187],[109.529276,26.991823],[109.540609,26.994124],[109.541329,27.012898],[109.525798,27.026563],[109.525019,27.037282],[109.517943,27.043216],[109.518842,27.060004],[109.510447,27.067914],[109.518483,27.072559],[109.505051,27.072743],[109.498455,27.079365],[109.48982,27.078629],[109.486762,27.067409],[109.496176,27.062488],[109.487062,27.053933],[109.468293,27.064787],[109.454561,27.069478],[109.481425,27.071272],[109.482444,27.081113],[109.466014,27.080515],[109.459598,27.084101],[109.467393,27.094861],[109.457919,27.096516],[109.459598,27.108286],[109.469372,27.115457],[109.47267,27.134901],[109.457559,27.133338],[109.448325,27.12056],[109.440889,27.118169],[109.427937,27.12603],[109.415285,27.153881],[109.400234,27.152411],[109.400834,27.159579],[109.392799,27.156087],[109.393158,27.143863],[109.384583,27.143909],[109.378167,27.155444],[109.37397,27.147815],[109.358739,27.15287],[109.333674,27.148734],[109.335053,27.139083],[109.298955,27.135268],[109.280546,27.127133],[109.264236,27.131867],[109.2574,27.150618],[109.248106,27.153422],[109.238932,27.149148],[109.223041,27.12249],[109.195937,27.091275],[109.185504,27.082308],[109.17525,27.087228],[109.163557,27.065799],[109.154263,27.071961],[109.141071,27.073571],[109.130517,27.065063],[109.101135,27.068926],[109.10917,27.092516],[109.118944,27.105205],[109.131057,27.110125],[109.133995,27.117756],[109.122962,27.123364],[109.111389,27.12318],[109.097237,27.116101],[109.080387,27.116514],[109.066955,27.104516],[109.061978,27.1104],[109.053703,27.098309],[109.035834,27.098079],[109.032536,27.10378],[109.018805,27.095826],[109.016106,27.086768],[109.007531,27.080239],[108.989602,27.074077],[108.964238,27.054485],[108.940432,27.044734],[108.94313,27.037374],[108.950986,27.036913],[108.951945,27.018741],[108.936774,27.011794],[108.921363,27.009769],[108.921004,27.029783],[108.914947,27.025965],[108.918485,27.019063],[108.900616,27.016947],[108.885025,27.002913],[108.872853,26.999876],[108.878429,27.006364],[108.87735,27.016257],[108.868535,27.031025],[108.854744,27.031991],[108.84395,27.047953],[108.845629,27.058026],[108.840952,27.06304],[108.831178,27.057888],[108.803834,27.078859],[108.792261,27.083274],[108.807492,27.098585],[108.82728,27.089343],[108.845869,27.098493],[108.854324,27.09601],[108.859961,27.11486],[108.873512,27.11394],[108.878789,27.106309],[108.887484,27.112515],[108.887124,27.121203],[108.885085,27.132189],[108.868296,27.140784],[108.857982,27.152503],[108.857622,27.165553],[108.846289,27.174329],[108.840472,27.187468],[108.804554,27.196794],[108.801256,27.203179],[108.807252,27.214524],[108.825541,27.21953],[108.821584,27.225546],[108.82824,27.236522],[108.838853,27.237394],[108.843471,27.267559],[108.857622,27.276786],[108.866197,27.306803],[108.86122,27.321624],[108.846709,27.335114],[108.843111,27.343555],[108.846589,27.352684],[108.864398,27.353555],[108.856962,27.363188],[108.866017,27.368096],[108.875071,27.366903],[108.881667,27.359656],[108.883047,27.344977],[108.900016,27.346032],[108.90991,27.364105],[108.917106,27.366766],[108.937074,27.362362],[108.945169,27.369426],[108.962079,27.375067],[109.006752,27.369609],[109.018565,27.372361],[109.022103,27.388275],[109.034995,27.412668],[109.033256,27.421149],[109.020244,27.436918],[109.005792,27.444206],[108.990322,27.443152],[108.985884,27.455481],[108.959321,27.452593],[108.950566,27.460018],[108.952185,27.470145],[108.971433,27.487785],[108.968675,27.493925],[108.946608,27.498277],[108.934136,27.511561],[108.923822,27.511057],[108.903674,27.487969],[108.891561,27.487969],[108.879809,27.493283],[108.858342,27.49704],[108.838554,27.496719],[108.841072,27.507622],[108.830338,27.507576],[108.820564,27.501667],[108.833996,27.482654],[108.829319,27.478851],[108.819725,27.485311],[108.800716,27.489022],[108.792801,27.485815],[108.77775,27.488885],[108.759521,27.48719],[108.7618,27.469595],[108.746809,27.471107],[108.746329,27.483754],[108.737095,27.489618],[108.710111,27.515684],[108.6953,27.518111],[108.669516,27.504873],[108.648468,27.507622],[108.626702,27.519531],[108.617347,27.521638],[108.605354,27.516096],[108.59684,27.506477],[108.586226,27.478026],[108.575552,27.471611],[108.559662,27.479997],[108.543472,27.479493],[108.531659,27.466617],[108.517807,27.437881],[108.511091,27.418261],[108.490944,27.422891],[108.485667,27.409504],[108.478291,27.40657],[108.461262,27.418628],[108.445491,27.420599],[108.437096,27.425504],[108.424264,27.424083],[108.409033,27.407441],[108.388406,27.397308],[108.355426,27.377681],[108.336837,27.358831],[108.321306,27.349473],[108.305536,27.352317],[108.28221,27.345757],[108.266139,27.349014],[108.23262,27.367087],[108.218288,27.364426],[108.206416,27.357042],[108.192264,27.330113],[108.187287,27.308179],[108.179252,27.292576],[108.16654,27.28771],[108.14951,27.300194],[108.141295,27.314925],[108.130741,27.325249],[108.112512,27.323184],[108.082411,27.33048],[108.064841,27.32268],[108.043974,27.322313],[108.004398,27.316852],[107.9999,27.302764]]],[[[109.452642,26.861832],[109.466914,26.831927],[109.482085,26.837042],[109.476568,26.829899],[109.486702,26.760149],[109.502352,26.757705],[109.504631,26.744607],[109.52214,26.749219],[109.516923,26.757705],[109.517523,26.77993],[109.507689,26.801183],[109.497495,26.815289],[109.497315,26.823078],[109.513146,26.840268],[109.510387,26.865518],[109.513805,26.874271],[109.490839,26.883623],[109.486822,26.895323],[109.474169,26.894309],[109.47291,26.884774],[109.45672,26.873212],[109.452642,26.861832]]],[[[109.577367,26.751617],[109.570411,26.747928],[109.558059,26.754661],[109.561537,26.742209],[109.553921,26.73529],[109.534193,26.744561],[109.528437,26.741471],[109.546306,26.731047],[109.547265,26.7179],[109.553381,26.722974],[109.568252,26.726203],[109.578146,26.733307],[109.579046,26.740825],[109.596435,26.760702],[109.577127,26.77057],[109.580365,26.755676],[109.577367,26.751617]]],[[[107.88483,27.15889],[107.903539,27.155857],[107.908935,27.147356],[107.939217,27.15071],[107.931662,27.154019],[107.929383,27.162658],[107.938977,27.166839],[107.945154,27.160269],[107.95169,27.192338],[107.922967,27.196013],[107.921408,27.189536],[107.905098,27.175937],[107.886689,27.17805],[107.882971,27.175294],[107.88483,27.15889]]]]}},{"type":"Feature","properties":{"adcode":522700,"name":"黔南布依族苗族自治州","center":[107.517156,26.258219],"centroid":[107.254401,26.014436],"childrenNum":12,"level":"city","parent":{"adcode":520000},"subFeatureIndex":8,"acroutes":[100000,520000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.485995,26.262134],[106.424473,26.270888],[106.397429,26.277186],[106.381359,26.284086],[106.36199,26.281863],[106.360791,26.254122],[106.349458,26.231006],[106.337405,26.222343],[106.319056,26.222343],[106.305924,26.236797],[106.297829,26.253195],[106.2805,26.246525],[106.277142,26.240735],[106.257414,26.242449],[106.243262,26.22452],[106.251117,26.222204],[106.273604,26.223084],[106.299448,26.199499],[106.291413,26.199036],[106.284517,26.191853],[106.283978,26.171924],[106.275463,26.143878],[106.258133,26.136413],[106.256814,26.129829],[106.276302,26.128624],[106.287515,26.114527],[106.286676,26.102145],[106.269586,26.089807],[106.262451,26.092312],[106.256634,26.102191],[106.245601,26.093054],[106.239125,26.051395],[106.226832,26.03237],[106.234807,26.027312],[106.235047,26.02216],[106.254056,26.032185],[106.249978,26.025177],[106.259572,26.016173],[106.26419,26.022717],[106.276602,26.020072],[106.290514,26.003084],[106.303226,26.002759],[106.300707,25.992036],[106.31258,25.990458],[106.31246,25.978898],[106.307124,25.967801],[106.293572,25.967662],[106.287096,25.963204],[106.285057,25.950992],[106.289434,25.938545],[106.276362,25.937802],[106.277382,25.923404],[106.29633,25.918573],[106.297949,25.912999],[106.285417,25.897296],[106.282898,25.883497],[106.275043,25.881453],[106.273364,25.858961],[106.261131,25.84274],[106.243202,25.831538],[106.24686,25.814988],[106.244162,25.79718],[106.249498,25.794576],[106.256574,25.772393],[106.259273,25.744438],[106.255375,25.728202],[106.231989,25.714522],[106.232709,25.702144],[106.24692,25.698189],[106.270366,25.715779],[106.285117,25.724154],[106.308923,25.728295],[106.311981,25.724619],[106.304005,25.711544],[106.301787,25.697211],[106.306164,25.683342],[106.326552,25.672404],[106.344781,25.668308],[106.364509,25.658159],[106.389334,25.650943],[106.401806,25.650711],[106.41272,25.654994],[106.427291,25.675011],[106.436525,25.67785],[106.460331,25.666027],[106.47898,25.649779],[106.488934,25.646846],[106.486595,25.634508],[106.470705,25.601863],[106.437125,25.567672],[106.433047,25.560404],[106.436765,25.540647],[106.435206,25.528997],[106.417217,25.496883],[106.405224,25.498001],[106.397729,25.486953],[106.39575,25.466625],[106.403665,25.465413],[106.39611,25.45534],[106.410861,25.452776],[106.419196,25.439438],[106.419556,25.430949],[106.408882,25.417936],[106.39527,25.418309],[106.391493,25.400675],[106.401507,25.40506],[106.424353,25.389944],[106.431009,25.369506],[106.418836,25.36204],[106.422194,25.349672],[106.419616,25.337583],[106.423633,25.32624],[106.443301,25.322925],[106.456733,25.323766],[106.464768,25.318023],[106.483297,25.29085],[106.488934,25.264464],[106.495889,25.24606],[106.497329,25.228868],[106.506383,25.21873],[106.496729,25.202282],[106.467107,25.18714],[106.457513,25.177185],[106.446299,25.176204],[106.452176,25.164986],[106.459731,25.159984],[106.463269,25.167416],[106.47838,25.158815],[106.479519,25.152317],[106.497988,25.135674],[106.513579,25.115801],[106.517416,25.103455],[106.525931,25.099199],[106.531088,25.090125],[106.52869,25.077496],[106.518916,25.062854],[106.522573,25.05986],[106.530968,25.072537],[106.551296,25.082829],[106.578939,25.083671],[106.590632,25.087787],[106.597108,25.104905],[106.614318,25.116362],[106.629309,25.121412],[106.640522,25.135066],[106.639023,25.157273],[106.645019,25.164846],[106.667506,25.170595],[106.691131,25.179242],[106.705523,25.176157],[106.722433,25.161854],[106.732147,25.162321],[106.764647,25.183121],[106.772382,25.181392],[106.787553,25.170875],[106.798107,25.170455],[106.836364,25.179476],[106.852734,25.186954],[106.888292,25.182186],[106.900225,25.194478],[106.900225,25.212702],[106.904123,25.231531],[106.912997,25.243024],[106.933265,25.250451],[106.955272,25.246247],[106.976079,25.232933],[106.995867,25.239613],[106.998326,25.244145],[106.987472,25.255776],[106.99137,25.263109],[107.013736,25.275346],[107.009959,25.290289],[107.013377,25.295519],[107.00744,25.308079],[107.014276,25.344818],[107.010918,25.354946],[106.986933,25.359753],[106.979497,25.37408],[106.979797,25.388125],[106.97416,25.40702],[106.967804,25.409492],[106.968884,25.425959],[106.963727,25.437339],[106.981896,25.448159],[106.996467,25.442702],[107.003842,25.462102],[107.0075,25.479447],[107.019073,25.497395],[107.039761,25.503316],[107.055651,25.503968],[107.070102,25.511752],[107.0746,25.52126],[107.064166,25.543303],[107.064526,25.559518],[107.093428,25.569815],[107.122331,25.564737],[107.160708,25.570281],[107.165984,25.574334],[107.185233,25.57834],[107.187272,25.590917],[107.199744,25.603819],[107.211197,25.609175],[107.228647,25.60489],[107.236022,25.585328],[107.230206,25.564783],[107.237641,25.551644],[107.263905,25.543164],[107.296106,25.520468],[107.307739,25.500239],[107.313495,25.504947],[107.328666,25.494552],[107.32219,25.493433],[107.321231,25.484575],[107.330165,25.473199],[107.332744,25.446713],[107.325308,25.442516],[107.325728,25.434727],[107.315114,25.42969],[107.308398,25.433141],[107.308998,25.409166],[107.314874,25.402634],[107.344377,25.403661],[107.353911,25.395496],[107.364644,25.394983],[107.367223,25.403894],[107.375798,25.412058],[107.386411,25.410612],[107.402422,25.393723],[107.42089,25.39307],[107.423829,25.383879],[107.413035,25.372773],[107.408538,25.36022],[107.409138,25.347152],[107.428686,25.313448],[107.432703,25.289122],[107.449073,25.287534],[107.47096,25.300795],[107.481574,25.300188],[107.490089,25.2767],[107.470001,25.232092],[107.474618,25.225972],[107.472279,25.21373],[107.479235,25.211207],[107.5046,25.210693],[107.50448,25.217608],[107.513115,25.21658],[107.518331,25.207609],[107.52151,25.221486],[107.541478,25.22457],[107.543336,25.234848],[107.55407,25.239567],[107.558927,25.246901],[107.583572,25.256056],[107.590828,25.24905],[107.599402,25.250965],[107.593766,25.262829],[107.605639,25.255215],[107.608937,25.266051],[107.614993,25.268107],[107.614393,25.27698],[107.631963,25.310133],[107.643416,25.314849],[107.659666,25.316296],[107.6689,25.307472],[107.658347,25.293371],[107.661885,25.258952],[107.66998,25.244425],[107.690547,25.228168],[107.696244,25.219851],[107.694625,25.197889],[107.700621,25.194151],[107.710395,25.20345],[107.742116,25.240221],[107.75297,25.240875],[107.762144,25.228962],[107.756388,25.199899],[107.759985,25.188636],[107.782712,25.170455],[107.789488,25.154748],[107.778814,25.134926],[107.762684,25.124499],[107.76898,25.117531],[107.778634,25.124779],[107.794465,25.116128],[107.806817,25.124826],[107.819529,25.129174],[107.841896,25.115941],[107.86786,25.129408],[107.872417,25.141611],[107.897662,25.144837],[107.898082,25.148905],[107.915411,25.156805],[107.928604,25.155824],[107.95049,25.174194],[107.969139,25.177886],[107.989107,25.18686],[108.001939,25.196534],[108.010754,25.195272],[108.053628,25.199572],[108.080612,25.193777],[108.114911,25.210226],[108.121747,25.231017],[108.13374,25.234381],[108.134759,25.259699],[108.143334,25.269788],[108.137038,25.278148],[108.135958,25.297854],[108.14951,25.310367],[108.152088,25.324419],[108.137817,25.336509],[108.136618,25.343138],[108.152148,25.353732],[108.155267,25.377953],[108.142794,25.390644],[108.153827,25.39475],[108.165101,25.391577],[108.18255,25.391577],[108.193284,25.405527],[108.185728,25.413364],[108.190585,25.418915],[108.170617,25.431835],[108.165041,25.427404],[108.157605,25.439018],[108.162462,25.444754],[108.192624,25.459071],[108.202998,25.451703],[108.221407,25.450071],[108.226264,25.437246],[108.225844,25.426985],[108.252048,25.430483],[108.252408,25.438458],[108.236098,25.449371],[108.240715,25.461915],[108.260923,25.473759],[108.28107,25.480006],[108.299239,25.501125],[108.305416,25.516227],[108.303257,25.520748],[108.291444,25.524616],[108.283109,25.546239],[108.28143,25.557841],[108.286707,25.567905],[108.271296,25.582672],[108.260623,25.588449],[108.246831,25.585887],[108.242634,25.602795],[108.246951,25.620678],[108.237297,25.628501],[108.225604,25.621283],[108.217149,25.611271],[108.197061,25.610945],[108.181711,25.616487],[108.186208,25.642796],[108.181471,25.648709],[108.1657,25.65653],[108.169058,25.675616],[108.158505,25.702656],[108.14987,25.696513],[108.136078,25.696839],[108.130681,25.690882],[108.115451,25.687205],[108.110653,25.680131],[108.09932,25.679246],[108.102378,25.696886],[108.098001,25.703308],[108.09944,25.717268],[108.103398,25.715918],[108.097282,25.740949],[108.107895,25.752811],[108.104537,25.764347],[108.087208,25.770626],[108.08259,25.782904],[108.093084,25.811408],[108.124025,25.831026],[108.108435,25.839486],[108.110114,25.845761],[108.134759,25.868163],[108.138836,25.87741],[108.151609,25.885542],[108.146812,25.898086],[108.141655,25.899898],[108.137877,25.915136],[108.152808,25.920478],[108.167739,25.937059],[108.167739,25.954939],[108.18219,25.953592],[108.190585,25.957771],[108.19862,25.954382],[108.209893,25.962833],[108.212892,25.970308],[108.223325,25.973187],[108.218708,25.980801],[108.218768,26.00262],[108.225424,26.008561],[108.218228,26.011161],[108.230581,26.02694],[108.240715,26.032138],[108.238436,26.044621],[108.226324,26.041558],[108.223385,26.051488],[108.230941,26.062066],[108.228722,26.070139],[108.21517,26.069304],[108.208274,26.055757],[108.187707,26.03715],[108.175774,26.035015],[108.16654,26.039841],[108.162222,26.069629],[108.171757,26.072412],[108.170257,26.079556],[108.158385,26.084612],[108.151849,26.096208],[108.137038,26.094074],[108.138357,26.084102],[108.130861,26.08118],[108.123486,26.086885],[108.112992,26.073386],[108.076594,26.078767],[108.064182,26.075381],[108.043554,26.078953],[108.029822,26.087349],[108.014292,26.090271],[108.002299,26.079556],[107.989287,26.082571],[107.975075,26.079649],[107.972977,26.071577],[107.963442,26.075381],[107.957386,26.060072],[107.953548,26.063134],[107.953249,26.078675],[107.940416,26.078211],[107.945034,26.084148],[107.929863,26.089714],[107.923926,26.100289],[107.915052,26.106782],[107.914452,26.116799],[107.906417,26.124033],[107.886929,26.116707],[107.878354,26.1219],[107.860365,26.140262],[107.848612,26.137202],[107.845134,26.111188],[107.840637,26.098852],[107.830383,26.095373],[107.815752,26.10015],[107.799921,26.11346],[107.792246,26.124775],[107.787689,26.142719],[107.7685,26.152362],[107.761245,26.160011],[107.763044,26.170904],[107.756328,26.16715],[107.755008,26.176373],[107.746074,26.179062],[107.745714,26.170116],[107.737979,26.167798],[107.741157,26.213679],[107.745714,26.216459],[107.760465,26.25301],[107.772038,26.274639],[107.779594,26.30131],[107.779714,26.310061],[107.761964,26.318255],[107.732282,26.319505],[107.722088,26.317329],[107.706918,26.305292],[107.682812,26.299736],[107.663384,26.284132],[107.647493,26.279918],[107.642936,26.284549],[107.641137,26.29969],[107.635021,26.316264],[107.624048,26.334456],[107.616192,26.341214],[107.590588,26.353385],[107.587949,26.3619],[107.559946,26.367546],[107.544116,26.360882],[107.533742,26.349544],[107.524268,26.363659],[107.524508,26.382213],[107.518331,26.411867],[107.506219,26.41936],[107.466103,26.408444],[107.447934,26.405252],[107.430784,26.382537],[107.413695,26.378142],[107.38767,26.382769],[107.369202,26.396463],[107.33964,26.406085],[107.316194,26.430414],[107.306779,26.428934],[107.301922,26.441975],[107.314575,26.445767],[107.312176,26.453952],[107.332924,26.464123],[107.35577,26.487285],[107.356609,26.493941],[107.344676,26.501567],[107.325488,26.503092],[107.318472,26.516449],[107.319851,26.530451],[107.334603,26.53715],[107.331664,26.544127],[107.33832,26.551889],[107.354271,26.543758],[107.361826,26.549948],[107.379096,26.543018],[107.382753,26.537797],[107.402541,26.539692],[107.398044,26.553413],[107.417353,26.557617],[107.426827,26.551334],[107.425687,26.565794],[107.433363,26.564316],[107.432104,26.572353],[107.443677,26.572584],[107.449073,26.579143],[107.466883,26.577434],[107.460886,26.563577],[107.462505,26.547361],[107.479055,26.54713],[107.482053,26.563577],[107.489369,26.56487],[107.491828,26.557571],[107.503281,26.55212],[107.513355,26.557294],[107.513534,26.569027],[107.522469,26.573554],[107.53776,26.573046],[107.548493,26.588842],[107.556408,26.590181],[107.566183,26.604728],[107.577876,26.605144],[107.588069,26.612163],[107.588009,26.591244],[107.60312,26.584039],[107.611035,26.597801],[107.610556,26.609254],[107.622549,26.611932],[107.640118,26.607176],[107.647194,26.601126],[107.658407,26.579697],[107.668781,26.572954],[107.713573,26.569489],[107.73564,26.573831],[107.745114,26.587318],[107.739598,26.599094],[107.725566,26.615672],[107.720769,26.634278],[107.713753,26.644434],[107.699782,26.652835],[107.695464,26.673282],[107.693366,26.700922],[107.687669,26.712548],[107.698762,26.723666],[107.695404,26.735429],[107.709076,26.752632],[107.718191,26.751294],[107.724907,26.768449],[107.733242,26.768495],[107.749012,26.783711],[107.746793,26.78763],[107.761844,26.792793],[107.76832,26.803212],[107.763763,26.824414],[107.750451,26.82188],[107.733062,26.827318],[107.730603,26.836627],[107.741217,26.83612],[107.740018,26.842019],[107.722508,26.854875],[107.690787,26.866486],[107.688089,26.860312],[107.691807,26.84589],[107.683592,26.849668],[107.681013,26.842203],[107.66908,26.843401],[107.648393,26.835844],[107.634062,26.844784],[107.642397,26.852295],[107.645155,26.865472],[107.635681,26.879846],[107.624947,26.880813],[107.621829,26.888644],[107.609716,26.895138],[107.600002,26.909738],[107.615593,26.928757],[107.630404,26.956704],[107.63724,26.956335],[107.662844,26.971986],[107.666382,26.984137],[107.640598,27.028633],[107.638559,27.049241],[107.647314,27.066581],[107.658827,27.07771],[107.676996,27.072927],[107.673758,27.092562],[107.682752,27.101206],[107.704219,27.135452],[107.699062,27.152686],[107.684431,27.17024],[107.678795,27.187422],[107.687429,27.191833],[107.671659,27.209242],[107.663264,27.202857],[107.651751,27.207405],[107.662424,27.21705],[107.666382,27.234593],[107.650432,27.238909],[107.646474,27.247863],[107.65247,27.253786],[107.656308,27.267008],[107.642636,27.267146],[107.618531,27.25801],[107.602221,27.267605],[107.592986,27.267008],[107.556588,27.257872],[107.550112,27.252914],[107.562225,27.236246],[107.566662,27.225408],[107.55347,27.216637],[107.542917,27.215856],[107.531224,27.224536],[107.519711,27.244144],[107.514014,27.237348],[107.525767,27.218382],[107.524628,27.207864],[107.511496,27.203454],[107.500402,27.216085],[107.489789,27.223204],[107.492007,27.230276],[107.476777,27.24093],[107.461066,27.240057],[107.463585,27.251169],[107.458488,27.268064],[107.464724,27.277107],[107.475158,27.280504],[107.477256,27.297395],[107.50418,27.315476],[107.501722,27.349106],[107.498304,27.364059],[107.491768,27.37149],[107.458608,27.368279],[107.451772,27.36594],[107.434802,27.372682],[107.419511,27.342546],[107.408838,27.343188],[107.408778,27.353326],[107.401762,27.363463],[107.386711,27.361904],[107.375978,27.36649],[107.376217,27.388],[107.400503,27.405699],[107.399124,27.417803],[107.384972,27.430455],[107.37238,27.435772],[107.376217,27.442877],[107.35541,27.444527],[107.359368,27.465654],[107.352112,27.466846],[107.33892,27.459926],[107.308998,27.462446],[107.28867,27.46735],[107.275538,27.478943],[107.266963,27.476148],[107.268882,27.455756],[107.266604,27.438477],[107.260367,27.428071],[107.244777,27.415694],[107.248615,27.403544],[107.238361,27.400013],[107.209638,27.371398],[107.200763,27.355803],[107.205321,27.339839],[107.202982,27.318045],[107.19069,27.302581],[107.169942,27.284268],[107.162567,27.263381],[107.142958,27.255623],[107.138401,27.245154],[107.155791,27.23418],[107.192189,27.242996],[107.236742,27.241068],[107.234823,27.232802],[107.262406,27.216269],[107.258688,27.180623],[107.242618,27.170194],[107.215574,27.166104],[107.188531,27.157006],[107.180496,27.145655],[107.191769,27.123272],[107.190869,27.115043],[107.174259,27.092976],[107.174319,27.070858],[107.166644,27.040916],[107.167004,27.025826],[107.192249,27.026655],[107.198365,27.008435],[107.236082,26.996563],[107.243877,26.969178],[107.250533,26.963194],[107.267083,26.90283],[107.271761,26.895277],[107.279196,26.86409],[107.277277,26.844692],[107.270022,26.841282],[107.266064,26.803258],[107.255271,26.792286],[107.244477,26.802244],[107.216654,26.811924],[107.197226,26.806438],[107.172461,26.81916],[107.143918,26.818423],[107.130546,26.820266],[107.110218,26.813998],[107.088871,26.803212],[107.0746,26.802797],[107.064046,26.787953],[107.042459,26.769325],[107.027888,26.768126],[107.015895,26.755122],[107.006181,26.757705],[106.995268,26.750188],[106.982076,26.752678],[106.968344,26.739903],[106.966365,26.731139],[106.982136,26.726388],[106.965646,26.722144],[106.969004,26.706828],[106.973081,26.708488],[106.972601,26.690356],[106.951494,26.684495],[106.948736,26.656159],[106.95761,26.660128],[106.962048,26.647342],[106.939381,26.647111],[106.917435,26.636725],[106.913177,26.642818],[106.896687,26.63871],[106.893869,26.632201],[106.882956,26.632385],[106.872942,26.623152],[106.883435,26.616549],[106.897107,26.617703],[106.911618,26.61304],[106.916115,26.596739],[106.907061,26.588565],[106.893509,26.584963],[106.880377,26.576141],[106.852734,26.5736],[106.840981,26.567272],[106.833605,26.556093],[106.840081,26.542787],[106.851475,26.540292],[106.838822,26.528094],[106.843379,26.517465],[106.837683,26.506836],[106.822812,26.500828],[106.808421,26.490335],[106.805302,26.48072],[106.80956,26.472908],[106.829888,26.459685],[106.829048,26.453073],[106.812678,26.44794],[106.819214,26.434345],[106.813338,26.430044],[106.789592,26.43046],[106.784735,26.426806],[106.757032,26.391883],[106.778679,26.374163],[106.791211,26.374348],[106.813997,26.387673],[106.833605,26.386609],[106.834805,26.379252],[106.824311,26.36787],[106.82617,26.348156],[106.817715,26.340427],[106.782936,26.321171],[106.785095,26.313023],[106.829888,26.307375],[106.840981,26.304227],[106.851175,26.31469],[106.874381,26.314042],[106.87582,26.30219],[106.868384,26.29793],[106.873002,26.287929],[106.882956,26.28478],[106.886074,26.272138],[106.871323,26.266488],[106.858191,26.243931],[106.859869,26.235871],[106.882476,26.228829],[106.887333,26.224196],[106.886194,26.213679],[106.871622,26.208767],[106.866406,26.195746],[106.858191,26.186894],[106.835764,26.183418],[106.82665,26.189211],[106.817655,26.20506],[106.797927,26.223316],[106.796008,26.254585],[106.788992,26.2588],[106.794989,26.269267],[106.780717,26.267785],[106.771063,26.261115],[106.753134,26.265098],[106.751215,26.28089],[106.742041,26.288299],[106.722792,26.276908],[106.704204,26.287512],[106.688133,26.291726],[106.680698,26.289225],[106.649157,26.268201],[106.637524,26.273759],[106.629429,26.270193],[106.634826,26.243653],[106.629489,26.235037],[106.614678,26.230543],[106.606703,26.23323],[106.595489,26.22869],[106.591472,26.219887],[106.575282,26.22679],[106.568805,26.225169],[106.567486,26.233276],[106.533127,26.226235],[106.526891,26.230728],[106.513219,26.220165],[106.500747,26.224335],[106.515738,26.239021],[106.513219,26.24898],[106.500627,26.244904],[106.501286,26.25741],[106.485995,26.262134]]],[[[106.223294,26.028147],[106.215199,26.032741],[106.211901,26.021464],[106.224374,26.023924],[106.223294,26.028147]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/530000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/530000.json new file mode 100644 index 0000000..0804ffb --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/530000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":530100,"name":"昆明市","center":[102.712251,25.040609],"centroid":[102.87442,25.387092],"childrenNum":14,"level":"city","parent":{"adcode":530000},"subFeatureIndex":0,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.109095,24.506989],[103.139179,24.526106],[103.152704,24.527327],[103.167876,24.510813],[103.176286,24.523991],[103.237408,24.507559],[103.247379,24.514148],[103.237755,24.532126],[103.263071,24.552703],[103.25102,24.584172],[103.260123,24.607342],[103.278677,24.603766],[103.284225,24.622949],[103.269573,24.633353],[103.288734,24.656839],[103.305727,24.640992],[103.323933,24.639367],[103.385922,24.60466],[103.419648,24.577099],[103.448952,24.571081],[103.460656,24.558233],[103.491348,24.555875],[103.472621,24.541805],[103.483805,24.530987],[103.4532,24.511301],[103.474962,24.499097],[103.535304,24.527408],[103.543367,24.554899],[103.562787,24.555631],[103.617754,24.596286],[103.631625,24.616609],[103.619748,24.624981],[103.640295,24.65757],[103.633013,24.663502],[103.666565,24.724184],[103.658589,24.734579],[103.670033,24.760239],[103.654774,24.782158],[103.664137,24.792873],[103.652346,24.823633],[103.657722,24.868987],[103.648445,24.88083],[103.611772,24.877586],[103.586109,24.889671],[103.575445,24.849111],[103.547095,24.865661],[103.522819,24.831423],[103.497243,24.832965],[103.447392,24.892105],[103.444184,24.923488],[103.467245,24.939542],[103.469413,24.975047],[103.461437,24.999927],[103.438202,25.019293],[103.44219,25.026908],[103.409591,25.045622],[103.408637,25.061983],[103.422422,25.071702],[103.454327,25.073727],[103.494122,25.107655],[103.469673,25.122875],[103.480164,25.142302],[103.463431,25.154685],[103.465338,25.182037],[103.417654,25.190209],[103.40699,25.181471],[103.404649,25.151367],[103.377599,25.164154],[103.328528,25.162859],[103.32558,25.139226],[103.311102,25.146673],[103.311362,25.174998],[103.289947,25.184546],[103.298964,25.205985],[103.258303,25.216906],[103.273822,25.25783],[103.295149,25.261388],[103.291508,25.284026],[103.303386,25.288311],[103.304946,25.311268],[103.318731,25.325736],[103.294716,25.325251],[103.272088,25.340767],[103.304513,25.405154],[103.342227,25.424293],[103.370403,25.453118],[103.358092,25.472008],[103.36867,25.489039],[103.394679,25.481694],[103.42563,25.486779],[103.43274,25.514137],[103.419128,25.532775],[103.432393,25.553104],[103.417827,25.57214],[103.434213,25.577786],[103.447305,25.562219],[103.484672,25.554556],[103.514669,25.573753],[103.533223,25.571495],[103.545014,25.583834],[103.523773,25.609557],[103.503659,25.605848],[103.491174,25.62286],[103.492475,25.651637],[103.51675,25.679602],[103.510248,25.696603],[103.531142,25.720127],[103.514669,25.736961],[103.51727,25.75339],[103.556718,25.779801],[103.540419,25.80194],[103.5438,25.817314],[103.514236,25.806287],[103.502272,25.829547],[103.476349,25.816268],[103.465512,25.82335],[103.471667,25.856585],[103.460396,25.865113],[103.440629,25.854895],[103.418088,25.829628],[103.385402,25.839446],[103.390517,25.855619],[103.36182,25.845239],[103.348295,25.856585],[103.328181,25.857389],[103.318124,25.839607],[103.300611,25.856907],[103.289947,25.889247],[103.306333,25.914904],[103.30486,25.943209],[103.290728,25.948193],[103.291768,25.973275],[103.282318,26.001726],[103.305813,26.048406],[103.298877,26.064311],[103.26862,26.092017],[103.253101,26.122687],[103.255875,26.145163],[103.237582,26.155356],[103.254921,26.17261],[103.244257,26.188256],[103.211919,26.21465],[103.189551,26.217056],[103.189464,26.201815],[103.170824,26.204622],[103.16779,26.221708],[103.15149,26.222912],[103.149236,26.247774],[103.131896,26.243924],[103.107621,26.260524],[103.114904,26.295077],[103.097737,26.325454],[103.100858,26.362071],[103.083866,26.413492],[103.081438,26.44704],[103.05959,26.513305],[103.062278,26.534665],[103.054562,26.541864],[103.052481,26.514585],[103.031847,26.4869],[102.989885,26.482658],[102.998121,26.450322],[102.988324,26.409088],[102.998208,26.371925],[102.985116,26.345727],[102.971591,26.340278],[102.89469,26.338515],[102.879518,26.365516],[102.867467,26.338996],[102.833394,26.30662],[102.78519,26.298925],[102.764816,26.277681],[102.739933,26.268622],[102.723547,26.245689],[102.719733,26.218179],[102.674563,26.205425],[102.659131,26.221388],[102.620116,26.245769],[102.601303,26.249057],[102.611273,26.282331],[102.638583,26.307662],[102.629393,26.336833],[102.571132,26.362632],[102.551625,26.362151],[102.541914,26.338515],[102.43805,26.300047],[102.396088,26.297642],[102.349011,26.244726],[102.282773,26.220184],[102.257457,26.220104],[102.244886,26.21088],[102.236476,26.185127],[102.248527,26.157362],[102.263439,26.142835],[102.259885,26.127424],[102.294304,26.110565],[102.314678,26.088484],[102.347884,26.075795],[102.353519,26.060937],[102.343635,26.023823],[102.332451,26.004378],[102.335919,25.989832],[102.321614,25.964111],[102.322394,25.945058],[102.340428,25.927771],[102.328463,25.922222],[102.330544,25.898256],[102.322308,25.888041],[102.328983,25.852964],[102.352305,25.84709],[102.377534,25.828179],[102.371726,25.801457],[102.379008,25.787611],[102.362449,25.782619],[102.357074,25.71779],[102.38421,25.693299],[102.380222,25.661309],[102.36583,25.638015],[102.379095,25.628906],[102.382043,25.60996],[102.421577,25.588834],[102.43016,25.573027],[102.451401,25.581818],[102.448107,25.534389],[102.463713,25.526321],[102.460245,25.501952],[102.477411,25.491137],[102.479058,25.453038],[102.457557,25.428735],[102.457297,25.417752],[102.430767,25.398531],[102.435275,25.381487],[102.393747,25.368885],[102.377795,25.389646],[102.358374,25.370824],[102.349011,25.349494],[102.368604,25.336403],[102.362449,25.310703],[102.373806,25.29979],[102.378315,25.269878],[102.406318,25.277559],[102.413428,25.250794],[102.407532,25.208493],[102.390626,25.211244],[102.373373,25.190776],[102.359328,25.153229],[102.36661,25.114699],[102.351438,25.089842],[102.342508,25.059149],[102.300113,25.066762],[102.281299,25.048781],[102.235089,25.03266],[102.233962,25.051211],[102.200583,25.065628],[102.20093,25.085874],[102.187665,25.083688],[102.171106,25.053074],[102.182377,25.04068],[102.179082,25.018482],[102.203791,24.991499],[102.228153,25.000332],[102.247574,24.98145],[102.246013,24.964429],[102.229714,24.940028],[102.226853,24.910676],[102.263093,24.91992],[102.263006,24.889428],[102.29205,24.878884],[102.296471,24.849598],[102.287975,24.823714],[102.295518,24.802857],[102.285287,24.801315],[102.297165,24.755205],[102.29153,24.696893],[102.282947,24.686657],[102.292223,24.660496],[102.271242,24.65432],[102.287542,24.624331],[102.296038,24.591652],[102.283987,24.559534],[102.267341,24.559697],[102.250435,24.532776],[102.230234,24.526594],[102.210293,24.507396],[102.197809,24.509348],[102.207692,24.48079],[102.215842,24.482824],[102.244019,24.458085],[102.249741,24.439038],[102.261532,24.440829],[102.306442,24.416977],[102.292657,24.406881],[102.311557,24.386117],[102.335833,24.39996],[102.360021,24.398576],[102.373373,24.436271],[102.3569,24.444004],[102.373893,24.45198],[102.380309,24.481929],[102.404671,24.497063],[102.420537,24.477535],[102.453222,24.513904],[102.489462,24.50048],[102.507929,24.524235],[102.540094,24.513497],[102.565323,24.538226],[102.599395,24.53481],[102.609712,24.513823],[102.587691,24.503572],[102.612834,24.491368],[102.669968,24.503409],[102.686614,24.490635],[102.683319,24.472327],[102.69537,24.462479],[102.742794,24.485591],[102.763949,24.47786],[102.775393,24.497307],[102.815708,24.51187],[102.798021,24.5209],[102.789091,24.553516],[102.801489,24.581896],[102.797935,24.593522],[102.815101,24.611001],[102.805651,24.628476],[102.82221,24.640586],[102.827585,24.669108],[102.856716,24.706884],[102.840243,24.748465],[102.870935,24.746029],[102.914977,24.768439],[102.90362,24.803344],[102.911163,24.854791],[102.925554,24.846434],[102.938472,24.859739],[102.95928,24.862173],[102.965089,24.883345],[102.982602,24.882453],[103.000202,24.89689],[103.000635,24.919515],[103.017801,24.897133],[103.030719,24.863958],[103.02387,24.800747],[103.016501,24.796364],[103.015547,24.762268],[103.026818,24.754799],[103.042077,24.772011],[103.07693,24.754311],[103.05985,24.712083],[103.046932,24.699574],[103.0328,24.641236],[103.044071,24.602384],[103.04199,24.568235],[103.052741,24.555631],[103.08612,24.553272],[103.111002,24.565877],[103.109095,24.506989]]]]}},{"type":"Feature","properties":{"adcode":530300,"name":"曲靖市","center":[103.797851,25.501557],"centroid":[103.939179,25.705863],"childrenNum":9,"level":"city","parent":{"adcode":530000},"subFeatureIndex":1,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.384795,26.734393],[103.390431,26.73591],[103.394072,26.733195],[103.394332,26.731439],[103.401181,26.707799],[103.372658,26.715466],[103.365115,26.735112],[103.338759,26.713949],[103.328008,26.714109],[103.301305,26.735272],[103.293415,26.724651],[103.26862,26.728165],[103.236801,26.720738],[103.239836,26.694619],[103.217381,26.668975],[103.225184,26.654672],[103.210272,26.640847],[103.210445,26.626061],[103.173858,26.610713],[103.119672,26.63709],[103.107968,26.621025],[103.072595,26.610713],[103.062278,26.534665],[103.05959,26.513305],[103.081438,26.44704],[103.083866,26.413492],[103.100858,26.362071],[103.097737,26.325454],[103.114904,26.295077],[103.107621,26.260524],[103.131896,26.243924],[103.149236,26.247774],[103.15149,26.222912],[103.16779,26.221708],[103.170824,26.204622],[103.189464,26.201815],[103.189551,26.217056],[103.211919,26.21465],[103.244257,26.188256],[103.254921,26.17261],[103.237582,26.155356],[103.255875,26.145163],[103.253101,26.122687],[103.26862,26.092017],[103.298877,26.064311],[103.305813,26.048406],[103.282318,26.001726],[103.291768,25.973275],[103.290728,25.948193],[103.30486,25.943209],[103.306333,25.914904],[103.289947,25.889247],[103.300611,25.856907],[103.318124,25.839607],[103.328181,25.857389],[103.348295,25.856585],[103.36182,25.845239],[103.390517,25.855619],[103.385402,25.839446],[103.418088,25.829628],[103.440629,25.854895],[103.460396,25.865113],[103.471667,25.856585],[103.465512,25.82335],[103.476349,25.816268],[103.502272,25.829547],[103.514236,25.806287],[103.5438,25.817314],[103.540419,25.80194],[103.556718,25.779801],[103.51727,25.75339],[103.514669,25.736961],[103.531142,25.720127],[103.510248,25.696603],[103.51675,25.679602],[103.492475,25.651637],[103.491174,25.62286],[103.503659,25.605848],[103.523773,25.609557],[103.545014,25.583834],[103.533223,25.571495],[103.514669,25.573753],[103.484672,25.554556],[103.447305,25.562219],[103.434213,25.577786],[103.417827,25.57214],[103.432393,25.553104],[103.419128,25.532775],[103.43274,25.514137],[103.42563,25.486779],[103.394679,25.481694],[103.36867,25.489039],[103.358092,25.472008],[103.370403,25.453118],[103.342227,25.424293],[103.304513,25.405154],[103.272088,25.340767],[103.294716,25.325251],[103.318731,25.325736],[103.304946,25.311268],[103.303386,25.288311],[103.291508,25.284026],[103.295149,25.261388],[103.273822,25.25783],[103.258303,25.216906],[103.298964,25.205985],[103.289947,25.184546],[103.311362,25.174998],[103.311102,25.146673],[103.32558,25.139226],[103.328528,25.162859],[103.377599,25.164154],[103.404649,25.151367],[103.40699,25.181471],[103.417654,25.190209],[103.465338,25.182037],[103.463431,25.154685],[103.480164,25.142302],[103.469673,25.122875],[103.494122,25.107655],[103.454327,25.073727],[103.422422,25.071702],[103.408637,25.061983],[103.409591,25.045622],[103.44219,25.026908],[103.438202,25.019293],[103.461437,24.999927],[103.469413,24.975047],[103.467245,24.939542],[103.444184,24.923488],[103.447392,24.892105],[103.497243,24.832965],[103.522819,24.831423],[103.547095,24.865661],[103.575445,24.849111],[103.586109,24.889671],[103.611772,24.877586],[103.648445,24.88083],[103.657722,24.868987],[103.652346,24.823633],[103.664137,24.792873],[103.654774,24.782158],[103.670033,24.760239],[103.658589,24.734579],[103.666565,24.724184],[103.675582,24.738234],[103.693095,24.736528],[103.708007,24.753987],[103.733236,24.75147],[103.753263,24.761456],[103.740692,24.730113],[103.730982,24.736528],[103.719538,24.714601],[103.760372,24.692019],[103.789243,24.732712],[103.794965,24.722479],[103.813085,24.728732],[103.838661,24.695512],[103.869439,24.685033],[103.892501,24.667971],[103.929521,24.667077],[103.92822,24.648225],[103.954317,24.638554],[103.969229,24.658952],[103.994545,24.620999],[103.97183,24.590677],[103.986655,24.581489],[104.000353,24.554573],[104.013358,24.552866],[104.027923,24.525944],[104.038674,24.5257],[104.03772,24.493565],[104.009023,24.482824],[104.020728,24.453934],[104.010324,24.44905],[104.056967,24.421211],[104.134996,24.455562],[104.143492,24.44669],[104.176784,24.455155],[104.196812,24.437736],[104.22785,24.39369],[104.20921,24.375775],[104.215972,24.358345],[104.246317,24.354843],[104.270245,24.366734],[104.288365,24.35191],[104.347754,24.365594],[104.356857,24.379277],[104.415985,24.383756],[104.419106,24.422269],[104.467831,24.440097],[104.505544,24.441887],[104.527826,24.43505],[104.524965,24.454259],[104.553142,24.453771],[104.567014,24.472652],[104.547246,24.488927],[104.549934,24.518216],[104.534762,24.535054],[104.52089,24.535054],[104.515515,24.564251],[104.50277,24.590758],[104.505544,24.626688],[104.475287,24.645137],[104.499476,24.668865],[104.520283,24.727189],[104.542391,24.755773],[104.53979,24.813895],[104.596318,24.88448],[104.635419,24.903945],[104.638713,24.918299],[104.663942,24.951054],[104.663422,24.963132],[104.687004,24.974966],[104.687698,24.988095],[104.713014,24.996199],[104.700529,25.036306],[104.683796,25.054856],[104.619553,25.060688],[104.670965,25.066843],[104.686484,25.076237],[104.695674,25.121823],[104.718302,25.140926],[104.734948,25.174188],[104.724544,25.195711],[104.745959,25.213266],[104.7672,25.204448],[104.777344,25.186406],[104.80474,25.161645],[104.823034,25.171275],[104.808642,25.19029],[104.815838,25.198381],[104.807168,25.224024],[104.827975,25.237127],[104.817398,25.261064],[104.796677,25.253544],[104.779945,25.270039],[104.754195,25.275942],[104.735902,25.267856],[104.709546,25.281763],[104.707205,25.29688],[104.671225,25.293485],[104.662035,25.284835],[104.640967,25.294859],[104.645822,25.356766],[104.615998,25.364603],[104.567794,25.402892],[104.559991,25.394169],[104.540571,25.402731],[104.556957,25.524142],[104.547767,25.516638],[104.524531,25.526805],[104.481789,25.494446],[104.449711,25.495011],[104.434712,25.47225],[104.418673,25.499369],[104.436186,25.52043],[104.434192,25.555444],[104.423181,25.563752],[104.421707,25.58464],[104.389109,25.595446],[104.368995,25.58335],[104.357637,25.600284],[104.334835,25.598107],[104.331021,25.615604],[104.312988,25.632937],[104.311687,25.647123],[104.323478,25.703451],[104.322264,25.732692],[104.328853,25.760477],[104.373069,25.731564],[104.397952,25.761523],[104.40324,25.798478],[104.430897,25.82166],[104.423615,25.842182],[104.441908,25.869136],[104.434278,25.895199],[104.418413,25.892786],[104.414598,25.909918],[104.438353,25.92769],[104.443989,25.95985],[104.462455,25.985974],[104.470518,26.009521],[104.462369,26.029608],[104.472773,26.053306],[104.456733,26.072101],[104.459941,26.085834],[104.50355,26.072583],[104.526699,26.100368],[104.518896,26.132802],[104.519503,26.168116],[104.528693,26.175177],[104.549847,26.216174],[104.542044,26.253146],[104.555309,26.273512],[104.580365,26.292993],[104.591809,26.317119],[104.62198,26.32898],[104.659521,26.335551],[104.658394,26.3543],[104.680502,26.364154],[104.680935,26.378733],[104.665416,26.396274],[104.664896,26.434951],[104.642094,26.439114],[104.632211,26.451843],[104.638626,26.478096],[104.615131,26.508985],[104.59311,26.522746],[104.570655,26.524586],[104.579672,26.568097],[104.556523,26.590407],[104.542305,26.58481],[104.500689,26.589287],[104.487511,26.579533],[104.463496,26.595764],[104.458294,26.610553],[104.467831,26.644922],[104.442688,26.67257],[104.441735,26.68703],[104.421274,26.712032],[104.398819,26.707719],[104.398212,26.685912],[104.379919,26.648838],[104.365007,26.642765],[104.348794,26.619506],[104.312641,26.612792],[104.289666,26.633654],[104.271459,26.619426],[104.248917,26.62686],[104.229844,26.619906],[104.203574,26.62654],[104.190916,26.638609],[104.174357,26.635252],[104.160572,26.64684],[104.121037,26.63781],[104.093901,26.596403],[104.068498,26.573375],[104.064423,26.56042],[104.071966,26.519146],[104.052546,26.507144],[104.042575,26.514345],[104.008676,26.511785],[104.00096,26.519706],[103.955184,26.521546],[103.91669,26.513225],[103.887646,26.517546],[103.865624,26.512265],[103.840829,26.531865],[103.819327,26.530266],[103.814906,26.553622],[103.764101,26.586009],[103.77069,26.597523],[103.748408,26.624222],[103.760979,26.648998],[103.759419,26.689427],[103.773377,26.716904],[103.767395,26.73607],[103.749969,26.725928],[103.725433,26.742778],[103.720491,26.770721],[103.705666,26.794746],[103.70792,26.829858],[103.722225,26.851478],[103.774071,26.866952],[103.765228,26.916871],[103.777192,26.934967],[103.775111,26.950908],[103.754217,26.963102],[103.730635,27.021102],[103.705146,27.049136],[103.675582,27.051684],[103.653907,27.022855],[103.614373,27.00541],[103.613332,26.992106],[103.596166,26.987644],[103.555071,27.004852],[103.517877,26.992584],[103.483718,27.006525],[103.457275,26.986688],[103.425284,27.004454],[103.418174,26.996727],[103.441669,26.976091],[103.439415,26.949314],[103.41514,26.899091],[103.397453,26.90236],[103.409851,26.875805],[103.38861,26.845814],[103.386269,26.815415],[103.36867,26.774712],[103.389477,26.757788],[103.384795,26.734393]]],[[[103.390431,26.73591],[103.384795,26.734393],[103.394332,26.731439],[103.394072,26.733195],[103.390431,26.73591]]]]}},{"type":"Feature","properties":{"adcode":530400,"name":"玉溪市","center":[102.543907,24.350461],"centroid":[102.204123,24.138434],"childrenNum":9,"level":"city","parent":{"adcode":530000},"subFeatureIndex":2,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.226853,24.910676],[102.221304,24.903702],[102.1744,24.912866],[102.161135,24.932894],[102.124635,24.952351],[102.122295,24.925921],[102.11085,24.908406],[102.085101,24.896079],[102.077645,24.866959],[102.051289,24.86193],[102.005078,24.872394],[101.996582,24.860875],[102.009847,24.837428],[101.996755,24.808376],[101.986265,24.811297],[101.983144,24.790925],[101.943956,24.766247],[101.933032,24.712002],[101.939101,24.679346],[101.953146,24.680646],[101.926356,24.651232],[101.903468,24.636685],[101.922455,24.62173],[101.936327,24.632378],[101.948291,24.587994],[101.920374,24.578562],[101.904075,24.583115],[101.891764,24.568479],[101.913525,24.545627],[101.905029,24.530906],[101.920374,24.514962],[101.923842,24.491693],[101.941875,24.493971],[101.947251,24.462724],[101.972653,24.457759],[102.012448,24.471594],[102.001957,24.455155],[102.016956,24.430654],[102.001871,24.408184],[102.028747,24.390026],[102.031868,24.36592],[102.006552,24.350118],[102.010367,24.33407],[102.000483,24.294634],[101.970833,24.271813],[101.953926,24.275318],[101.932425,24.254125],[101.905896,24.261625],[101.904942,24.25119],[101.860206,24.2485],[101.841912,24.240837],[101.832115,24.250457],[101.815989,24.242712],[101.810094,24.283143],[101.827174,24.305309],[101.799517,24.310442],[101.791454,24.284039],[101.772814,24.285506],[101.773074,24.299523],[101.749145,24.320057],[101.692965,24.343846],[101.668082,24.376019],[101.650742,24.366572],[101.629588,24.322827],[101.598897,24.286484],[101.577656,24.243609],[101.546444,24.237494],[101.514366,24.220453],[101.48983,24.225998],[101.47908,24.245402],[101.483155,24.269531],[101.468503,24.286321],[101.470497,24.302212],[101.453157,24.336759],[101.445267,24.377485],[101.449082,24.385873],[101.413276,24.401996],[101.39611,24.421862],[101.37799,24.39939],[101.385879,24.380091],[101.381804,24.361033],[101.36091,24.342461],[101.302649,24.322664],[101.278373,24.309302],[101.277073,24.292678],[101.307677,24.249886],[101.316607,24.228199],[101.34357,24.199088],[101.347472,24.161812],[101.357095,24.140355],[101.383625,24.128034],[101.384232,24.09841],[101.411975,24.068371],[101.409634,24.040203],[101.443447,24.025504],[101.454978,23.995693],[101.481421,23.973963],[101.491998,23.948553],[101.512805,23.942261],[101.533006,23.917988],[101.502402,23.897226],[101.497113,23.880794],[101.462781,23.839501],[101.445528,23.851277],[101.400878,23.826496],[101.422726,23.808665],[101.424286,23.778558],[101.4066,23.765712],[101.412582,23.746726],[101.42602,23.74157],[101.430355,23.718569],[101.459573,23.727083],[101.468156,23.755892],[101.482634,23.757283],[101.497373,23.777494],[101.520262,23.772912],[101.531186,23.781995],[101.548525,23.771112],[101.568813,23.739278],[101.564911,23.721353],[101.540549,23.717996],[101.535087,23.687787],[101.560663,23.670428],[101.574014,23.689261],[101.594128,23.661993],[101.614069,23.649954],[101.619011,23.632508],[101.64294,23.651674],[101.687676,23.670346],[101.709784,23.654868],[101.690364,23.636603],[101.685335,23.620138],[101.667649,23.625053],[101.667389,23.606375],[101.688283,23.607849],[101.689497,23.590807],[101.705796,23.568518],[101.728598,23.56524],[101.713252,23.531716],[101.731719,23.511221],[101.745677,23.516468],[101.764404,23.499496],[101.782437,23.46735],[101.788333,23.440692],[101.768132,23.416818],[101.745417,23.419608],[101.747238,23.394828],[101.761716,23.380548],[101.787206,23.387442],[101.824746,23.370864],[101.821105,23.350508],[101.84538,23.349933],[101.873904,23.326946],[101.874858,23.338112],[101.906502,23.360522],[101.968665,23.353299],[101.987999,23.336141],[102.013835,23.345993],[102.027533,23.330723],[102.055624,23.320788],[102.068715,23.329902],[102.095505,23.31463],[102.130011,23.32358],[102.151685,23.345418],[102.157754,23.382928],[102.187578,23.428304],[102.216622,23.41009],[102.223125,23.424038],[102.275144,23.4233],[102.289276,23.415177],[102.319273,23.413782],[102.334966,23.460132],[102.360715,23.481292],[102.355513,23.520485],[102.317973,23.551143],[102.321181,23.57532],[102.296992,23.597608],[102.292397,23.6262],[102.249048,23.662812],[102.225379,23.691963],[102.202404,23.700068],[102.159922,23.696875],[102.148044,23.721353],[102.159488,23.747217],[102.186018,23.763748],[102.136253,23.830668],[102.160008,23.872618],[102.201017,23.887498],[102.223385,23.904338],[102.251042,23.908589],[102.264306,23.900006],[102.283207,23.925916],[102.265173,23.927551],[102.264133,23.963015],[102.252342,23.969225],[102.224945,24.008027],[102.230841,24.023381],[102.271069,24.032527],[102.311644,24.034814],[102.331671,24.044776],[102.32777,24.060452],[102.304881,24.058492],[102.295865,24.081024],[102.318753,24.096125],[102.377014,24.087065],[102.418543,24.067146],[102.411087,24.058574],[102.428947,24.049185],[102.469435,24.054084],[102.491456,24.064942],[102.516252,24.029016],[102.54859,24.041101],[102.565583,24.028852],[102.59324,24.034242],[102.612487,24.046817],[102.625925,24.038733],[102.6111,24.025912],[102.635635,24.022972],[102.646559,24.006638],[102.634682,23.993487],[102.650201,23.976087],[102.636502,23.951658],[102.643005,23.926733],[102.658437,23.91006],[102.674129,23.9242],[102.689302,23.922402],[102.689908,23.94602],[102.711063,23.967754],[102.732217,23.972166],[102.747129,24.018154],[102.784323,24.017827],[102.829493,24.046735],[102.841457,24.043143],[102.834868,24.024361],[102.84822,24.014316],[102.856889,23.987524],[102.884806,23.993814],[102.87761,24.010395],[102.899458,24.013009],[102.915151,24.039876],[102.9396,24.057268],[102.96691,24.067636],[103.015894,24.033262],[103.03254,24.032364],[103.037829,24.04053],[103.033407,24.050165],[103.052307,24.080698],[103.081611,24.093839],[103.100772,24.145577],[103.137012,24.170949],[103.134671,24.201127],[103.151143,24.215316],[103.149236,24.235048],[103.125741,24.249641],[103.138572,24.301397],[103.121753,24.306287],[103.112389,24.324864],[103.098864,24.322583],[103.089761,24.340343],[103.099038,24.404113],[103.067566,24.411685],[103.062104,24.432445],[103.088634,24.441236],[103.107274,24.473222],[103.109095,24.506989],[103.111002,24.565877],[103.08612,24.553272],[103.052741,24.555631],[103.04199,24.568235],[103.044071,24.602384],[103.0328,24.641236],[103.046932,24.699574],[103.05985,24.712083],[103.07693,24.754311],[103.042077,24.772011],[103.026818,24.754799],[103.015547,24.762268],[103.016501,24.796364],[103.02387,24.800747],[103.030719,24.863958],[103.017801,24.897133],[103.000635,24.919515],[103.000202,24.89689],[102.982602,24.882453],[102.965089,24.883345],[102.95928,24.862173],[102.938472,24.859739],[102.925554,24.846434],[102.911163,24.854791],[102.90362,24.803344],[102.914977,24.768439],[102.870935,24.746029],[102.840243,24.748465],[102.856716,24.706884],[102.827585,24.669108],[102.82221,24.640586],[102.805651,24.628476],[102.815101,24.611001],[102.797935,24.593522],[102.801489,24.581896],[102.789091,24.553516],[102.798021,24.5209],[102.815708,24.51187],[102.775393,24.497307],[102.763949,24.47786],[102.742794,24.485591],[102.69537,24.462479],[102.683319,24.472327],[102.686614,24.490635],[102.669968,24.503409],[102.612834,24.491368],[102.587691,24.503572],[102.609712,24.513823],[102.599395,24.53481],[102.565323,24.538226],[102.540094,24.513497],[102.507929,24.524235],[102.489462,24.50048],[102.453222,24.513904],[102.420537,24.477535],[102.404671,24.497063],[102.380309,24.481929],[102.373893,24.45198],[102.3569,24.444004],[102.373373,24.436271],[102.360021,24.398576],[102.335833,24.39996],[102.311557,24.386117],[102.292657,24.406881],[102.306442,24.416977],[102.261532,24.440829],[102.249741,24.439038],[102.244019,24.458085],[102.215842,24.482824],[102.207692,24.48079],[102.197809,24.509348],[102.210293,24.507396],[102.230234,24.526594],[102.250435,24.532776],[102.267341,24.559697],[102.283987,24.559534],[102.296038,24.591652],[102.287542,24.624331],[102.271242,24.65432],[102.292223,24.660496],[102.282947,24.686657],[102.29153,24.696893],[102.297165,24.755205],[102.285287,24.801315],[102.295518,24.802857],[102.287975,24.823714],[102.296471,24.849598],[102.29205,24.878884],[102.263006,24.889428],[102.263093,24.91992],[102.226853,24.910676]]]]}},{"type":"Feature","properties":{"adcode":530500,"name":"保山市","center":[99.167133,25.111802],"centroid":[98.971932,24.97507],"childrenNum":5,"level":"city","parent":{"adcode":530000},"subFeatureIndex":3,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.888014,25.634791],[98.869027,25.632372],[98.887754,25.609879],[98.870328,25.550684],[98.82091,25.558832],[98.794207,25.550281],[98.766897,25.555524],[98.752851,25.581657],[98.766463,25.630438],[98.75762,25.659213],[98.767937,25.682583],[98.746869,25.703854],[98.754672,25.719321],[98.737072,25.740505],[98.744268,25.771025],[98.720946,25.782377],[98.712277,25.807897],[98.728749,25.833893],[98.706208,25.856344],[98.680805,25.833571],[98.677771,25.816187],[98.664506,25.816831],[98.640751,25.7988],[98.605724,25.811277],[98.568097,25.841377],[98.528996,25.840733],[98.479058,25.784149],[98.481139,25.759752],[98.461285,25.735189],[98.467267,25.702726],[98.457904,25.682986],[98.415768,25.671302],[98.408052,25.652765],[98.409613,25.619957],[98.40233,25.594398],[98.382303,25.595366],[98.371379,25.583753],[98.326729,25.566333],[98.314591,25.543263],[98.274797,25.590931],[98.24766,25.607783],[98.194774,25.613024],[98.170586,25.620361],[98.189572,25.568914],[98.186365,25.554718],[98.16365,25.524545],[98.131571,25.510263],[98.157841,25.457316],[98.151685,25.407415],[98.137207,25.381568],[98.10114,25.388434],[98.099666,25.35418],[98.089436,25.33608],[98.104782,25.323392],[98.111024,25.294213],[98.125242,25.28249],[98.152552,25.279903],[98.159488,25.262843],[98.192607,25.245133],[98.185844,25.222568],[98.192347,25.208978],[98.167725,25.171761],[98.179515,25.140522],[98.197896,25.135989],[98.234222,25.100287],[98.257717,25.105874],[98.269595,25.084416],[98.254076,25.067248],[98.248874,25.04149],[98.225032,25.006491],[98.221304,24.961997],[98.239944,24.947649],[98.235783,24.930542],[98.251562,24.918136],[98.272803,24.936785],[98.288409,24.936866],[98.317799,24.957701],[98.32933,24.945703],[98.334185,24.908162],[98.362796,24.89762],[98.436663,24.900296],[98.445333,24.874585],[98.464753,24.88886],[98.492063,24.890158],[98.512004,24.901837],[98.533678,24.891699],[98.534805,24.859902],[98.55596,24.827447],[98.546076,24.799529],[98.498392,24.809918],[98.468308,24.781834],[98.432068,24.776963],[98.42097,24.762837],[98.449581,24.725484],[98.439264,24.703067],[98.452008,24.674552],[98.415422,24.648388],[98.414815,24.63636],[98.440564,24.634653],[98.460591,24.612708],[98.461458,24.596693],[98.477758,24.586774],[98.485994,24.56726],[98.475677,24.553354],[98.484867,24.541561],[98.504547,24.55254],[98.523794,24.546766],[98.546856,24.553516],[98.578935,24.573521],[98.616302,24.58092],[98.659737,24.564576],[98.691122,24.563438],[98.697971,24.545058],[98.682886,24.538795],[98.710976,24.495599],[98.726929,24.488276],[98.684793,24.444899],[98.696151,24.422025],[98.689822,24.412988],[98.713317,24.390107],[98.724848,24.365431],[98.713404,24.33961],[98.721987,24.330241],[98.699705,24.283713],[98.703087,24.252169],[98.717652,24.238309],[98.726235,24.206101],[98.689822,24.185875],[98.692249,24.164341],[98.683233,24.133828],[98.709502,24.121261],[98.716525,24.127626],[98.757707,24.124362],[98.818482,24.133501],[98.855329,24.130727],[98.87683,24.151533],[98.909255,24.181634],[98.946015,24.188078],[98.981301,24.205694],[99.017108,24.213114],[99.024824,24.230319],[99.050053,24.227873],[99.073462,24.237983],[99.091148,24.236108],[99.151143,24.281594],[99.189464,24.329019],[99.216427,24.345882],[99.21478,24.374309],[99.248072,24.410627],[99.266366,24.442376],[99.302605,24.448969],[99.331389,24.417466],[99.352977,24.35411],[99.353324,24.333907],[99.36971,24.31419],[99.360867,24.288277],[99.36104,24.242223],[99.42381,24.230482],[99.445658,24.245239],[99.459703,24.241244],[99.483545,24.260239],[99.482678,24.282328],[99.501925,24.317205],[99.550563,24.326656],[99.590097,24.35639],[99.603795,24.407207],[99.636307,24.451655],[99.650699,24.456457],[99.677316,24.448806],[99.683471,24.472815],[99.673154,24.490229],[99.686852,24.494134],[99.668125,24.569536],[99.645237,24.579782],[99.665091,24.596043],[99.684251,24.597506],[99.702371,24.630508],[99.730115,24.631727],[99.726127,24.670165],[99.744247,24.670246],[99.777192,24.695756],[99.807103,24.699168],[99.816293,24.736772],[99.801467,24.766977],[99.770343,24.778505],[99.771123,24.786542],[99.803808,24.805535],[99.808924,24.819981],[99.837967,24.829313],[99.810224,24.850491],[99.815859,24.869799],[99.839095,24.872962],[99.865798,24.904918],[99.844383,24.93265],[99.851839,24.949351],[99.890073,24.971805],[99.902384,24.991418],[99.922325,24.993849],[99.938711,25.009813],[99.967321,25.01119],[99.993764,25.032741],[100.014919,25.035739],[100.04665,25.052669],[100.029224,25.084821],[100.038847,25.099397],[100.021681,25.108222],[99.994545,25.107169],[99.981193,25.098425],[99.978505,25.118504],[99.959432,25.151367],[99.940878,25.162212],[99.926747,25.186083],[99.928567,25.204286],[99.895622,25.190371],[99.879149,25.190371],[99.853486,25.17435],[99.859295,25.154766],[99.82557,25.109841],[99.825223,25.087251],[99.75491,25.085145],[99.734536,25.07316],[99.737658,25.060607],[99.693615,25.05113],[99.678096,25.066276],[99.655207,25.067653],[99.628071,25.093162],[99.554464,25.117451],[99.54328,25.131294],[99.506346,25.118908],[99.462304,25.157032],[99.429965,25.197976],[99.38809,25.235995],[99.358959,25.287988],[99.343527,25.287179],[99.314743,25.323958],[99.305033,25.345454],[99.285179,25.365492],[99.29567,25.375105],[99.285786,25.423809],[99.335377,25.407415],[99.345261,25.412341],[99.341099,25.438263],[99.353064,25.459657],[99.325927,25.496141],[99.329915,25.514137],[99.291942,25.52043],[99.252407,25.54649],[99.217988,25.539229],[99.188684,25.514459],[99.154871,25.520269],[99.161287,25.498159],[99.1234,25.475156],[99.088461,25.466923],[99.066353,25.496867],[99.07875,25.522609],[99.056296,25.564478],[99.002543,25.561171],[99.010952,25.629067],[98.954165,25.638499],[98.915064,25.627294],[98.888014,25.634791]]]]}},{"type":"Feature","properties":{"adcode":530600,"name":"昭通市","center":[103.717216,27.336999],"centroid":[104.00534,27.652533],"childrenNum":11,"level":"city","parent":{"adcode":530000},"subFeatureIndex":4,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.054562,26.541864],[103.062278,26.534665],[103.072595,26.610713],[103.107968,26.621025],[103.119672,26.63709],[103.173858,26.610713],[103.210445,26.626061],[103.210272,26.640847],[103.225184,26.654672],[103.217381,26.668975],[103.239836,26.694619],[103.236801,26.720738],[103.26862,26.728165],[103.293415,26.724651],[103.301305,26.735272],[103.328008,26.714109],[103.338759,26.713949],[103.365115,26.735112],[103.372658,26.715466],[103.401181,26.707799],[103.394332,26.731439],[103.384795,26.734393],[103.389477,26.757788],[103.36867,26.774712],[103.386269,26.815415],[103.38861,26.845814],[103.409851,26.875805],[103.397453,26.90236],[103.41514,26.899091],[103.439415,26.949314],[103.441669,26.976091],[103.418174,26.996727],[103.425284,27.004454],[103.457275,26.986688],[103.483718,27.006525],[103.517877,26.992584],[103.555071,27.004852],[103.596166,26.987644],[103.613332,26.992106],[103.614373,27.00541],[103.628158,27.016084],[103.623649,27.035359],[103.601454,27.062195],[103.617927,27.07979],[103.659802,27.065778],[103.6533,27.092606],[103.620441,27.096745],[103.624516,27.112186],[103.674715,27.131126],[103.696216,27.12667],[103.749622,27.211307],[103.764534,27.212022],[103.801381,27.250739],[103.802334,27.267272],[103.824876,27.264172],[103.84551,27.287536],[103.865451,27.281735],[103.874034,27.330357],[103.885738,27.330755],[103.903338,27.349737],[103.904899,27.384595],[103.92588,27.413887],[103.932469,27.443964],[103.956484,27.425395],[103.992637,27.419681],[104.015266,27.429284],[104.01752,27.384516],[104.029831,27.368001],[104.057834,27.355613],[104.084364,27.330993],[104.113841,27.337982],[104.134216,27.322335],[104.131528,27.306605],[104.174184,27.263059],[104.190483,27.287695],[104.21918,27.279828],[104.210857,27.29723],[104.250391,27.291509],[104.259928,27.308353],[104.247877,27.336394],[104.270419,27.360934],[104.295821,27.374671],[104.308826,27.407299],[104.322438,27.407854],[104.342638,27.436346],[104.332755,27.444044],[104.353129,27.466894],[104.410176,27.457929],[104.416592,27.435553],[104.467137,27.414284],[104.497655,27.411585],[104.490892,27.401901],[104.517249,27.400393],[104.507625,27.387533],[104.539357,27.329722],[104.570221,27.331708],[104.594757,27.311292],[104.611316,27.307002],[104.630824,27.317886],[104.680242,27.319634],[104.686137,27.334805],[104.722637,27.34243],[104.735642,27.334647],[104.754369,27.345369],[104.771015,27.317409],[104.789135,27.321064],[104.808989,27.35474],[104.826068,27.352357],[104.856499,27.332581],[104.850517,27.304301],[104.871238,27.290873],[104.904097,27.306049],[104.913547,27.327101],[104.943804,27.346639],[105.012123,27.380229],[105.031456,27.400234],[105.070384,27.419046],[105.097174,27.411903],[105.121449,27.41849],[105.150927,27.404997],[105.167226,27.408807],[105.184739,27.392455],[105.182658,27.367604],[105.213263,27.401107],[105.23277,27.436346],[105.226094,27.441108],[105.239012,27.469829],[105.235891,27.490532],[105.248029,27.494657],[105.260167,27.519637],[105.246728,27.545167],[105.234764,27.540172],[105.257912,27.583688],[105.304296,27.611897],[105.295019,27.632891],[105.309845,27.654989],[105.301348,27.682783],[105.305683,27.707879],[105.290511,27.71247],[105.28791,27.742387],[105.292939,27.771267],[105.273865,27.795235],[105.31418,27.819435],[105.274385,27.817142],[105.24118,27.830822],[105.250196,27.844816],[105.232683,27.892952],[105.248202,27.912469],[105.264155,27.9116],[105.280887,27.929139],[105.283402,27.959944],[105.26875,27.98316],[105.27083,27.995792],[105.248809,28.008107],[105.215604,27.990581],[105.184392,27.996424],[105.167573,28.023657],[105.183785,28.04031],[105.185519,28.056802],[105.166359,28.07195],[105.144251,28.066664],[105.108098,28.081102],[105.078274,28.08331],[105.059113,28.09814],[105.011082,28.066743],[104.976316,28.060116],[104.975016,28.019869],[104.946926,27.994845],[104.947099,27.980554],[104.929239,27.984976],[104.903056,27.960417],[104.921089,27.941699],[104.894733,27.934906],[104.887017,27.913022],[104.858407,27.902435],[104.79529,27.900538],[104.76668,27.884733],[104.743705,27.90204],[104.679114,27.882284],[104.633598,27.850903],[104.607935,27.858176],[104.580885,27.842049],[104.557997,27.852643],[104.558344,27.867978],[104.526699,27.889475],[104.509533,27.8777],[104.496181,27.896903],[104.468177,27.907413],[104.451965,27.926216],[104.40116,27.952283],[104.383473,27.968709],[104.378792,27.993739],[104.356163,28.018448],[104.326599,28.025473],[104.298769,28.043861],[104.304058,28.050726],[104.341425,28.057907],[104.376451,28.052304],[104.398125,28.068795],[104.40064,28.091514],[104.421447,28.097193],[104.433758,28.113913],[104.451011,28.116358],[104.444682,28.162087],[104.406362,28.173358],[104.402287,28.202832],[104.435839,28.209293],[104.460808,28.24435],[104.444075,28.259235],[104.447283,28.271205],[104.408269,28.269867],[104.393617,28.289945],[104.384774,28.330091],[104.358244,28.338905],[104.340991,28.332688],[104.313941,28.306635],[104.290012,28.314743],[104.30189,28.328517],[104.278395,28.346617],[104.2549,28.410101],[104.267644,28.420481],[104.258368,28.453188],[104.269812,28.468359],[104.261142,28.482585],[104.266691,28.502073],[104.248657,28.509616],[104.248311,28.528392],[104.262009,28.536954],[104.287758,28.532556],[104.323478,28.541196],[104.330934,28.559731],[104.35677,28.555726],[104.368388,28.585957],[104.387721,28.598911],[104.417286,28.598047],[104.425262,28.626697],[104.404888,28.640666],[104.37411,28.649297],[104.343939,28.64098],[104.314895,28.615631],[104.296428,28.634388],[104.269638,28.635173],[104.252645,28.660674],[104.241461,28.660831],[104.231058,28.635801],[104.190396,28.634153],[104.170369,28.64302],[104.125199,28.637292],[104.103351,28.60629],[104.089653,28.604013],[104.059568,28.627639],[103.942526,28.603071],[103.936717,28.622616],[103.909927,28.631249],[103.896315,28.619712],[103.874641,28.626462],[103.873687,28.65275],[103.851146,28.667107],[103.834846,28.622302],[103.835453,28.582581],[103.801381,28.561851],[103.800687,28.533812],[103.783694,28.526585],[103.810397,28.495394],[103.830251,28.458377],[103.828951,28.439824],[103.851232,28.406719],[103.859815,28.383516],[103.8534,28.356768],[103.875595,28.32222],[103.868919,28.300337],[103.828951,28.284985],[103.812998,28.265142],[103.785862,28.254037],[103.770776,28.233558],[103.739998,28.236],[103.721272,28.201965],[103.702025,28.198971],[103.694655,28.227335],[103.649485,28.25703],[103.632406,28.260023],[103.618101,28.243641],[103.573191,28.230959],[103.552643,28.191248],[103.533136,28.16855],[103.47028,28.122193],[103.455021,28.123691],[103.453634,28.087728],[103.432913,28.072187],[103.430832,28.04465],[103.459443,28.021368],[103.47921,28.033996],[103.496116,28.022473],[103.49889,27.984107],[103.515536,27.965551],[103.541719,27.966419],[103.563221,27.977632],[103.556718,27.955205],[103.541979,27.953625],[103.502965,27.911758],[103.499931,27.877542],[103.508601,27.839124],[103.489527,27.79745],[103.459789,27.777595],[103.448172,27.755126],[103.420862,27.742941],[103.393032,27.709383],[103.370057,27.708671],[103.349769,27.678428],[103.31457,27.655305],[103.280411,27.617998],[103.298531,27.601201],[103.295583,27.566966],[103.278677,27.561893],[103.236194,27.570453],[103.218161,27.562131],[103.204463,27.529152],[103.190331,27.523522],[103.144554,27.45055],[103.142907,27.421903],[103.111609,27.401028],[103.079531,27.397297],[103.055602,27.409521],[103.025864,27.382531],[102.98529,27.367366],[102.962488,27.389914],[102.955292,27.411426],[102.944975,27.410474],[102.911423,27.349101],[102.900065,27.317648],[102.882119,27.293337],[102.882986,27.259324],[102.900499,27.237305],[102.902233,27.19588],[102.913503,27.140038],[102.898938,27.076287],[102.885326,27.059567],[102.872582,27.022695],[102.894863,27.001586],[102.888881,26.951625],[102.896597,26.91137],[102.909429,26.902679],[102.947402,26.844298],[102.962748,26.840548],[102.991705,26.774632],[102.983642,26.765612],[103.010432,26.701329],[103.00523,26.68048],[103.027425,26.662583],[103.024391,26.641246],[103.029679,26.60168],[103.019362,26.594324],[103.036702,26.555382],[103.054562,26.541864]]]]}},{"type":"Feature","properties":{"adcode":530700,"name":"丽江市","center":[100.233026,26.872108],"centroid":[100.524919,26.939309],"childrenNum":5,"level":"city","parent":{"adcode":530000},"subFeatureIndex":5,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.909905,26.166912],[100.931493,26.20366],[100.986633,26.250019],[101.02244,26.26782],[101.053651,26.302211],[101.097954,26.320485],[101.12431,26.338355],[101.16818,26.340999],[101.193149,26.36103],[101.226701,26.351816],[101.25193,26.359427],[101.273345,26.356303],[101.329265,26.374248],[101.339235,26.372485],[101.386833,26.39283],[101.43417,26.389226],[101.438852,26.408767],[101.468156,26.420138],[101.477259,26.446719],[101.452637,26.46369],[101.463301,26.482658],[101.458706,26.495462],[101.440326,26.511865],[101.438505,26.538505],[101.422899,26.531706],[101.4066,26.556341],[101.396023,26.592006],[101.400271,26.605117],[101.452117,26.60096],[101.462174,26.607116],[101.461047,26.640767],[101.481247,26.673209],[101.454024,26.691184],[101.454457,26.703646],[101.472751,26.721456],[101.498934,26.732237],[101.492171,26.74645],[101.510638,26.754435],[101.512632,26.769683],[101.4972,26.770481],[101.460613,26.786605],[101.445961,26.774233],[101.459139,26.747409],[101.457058,26.729762],[101.436077,26.740542],[101.421339,26.72481],[101.389694,26.723213],[101.390214,26.749964],[101.357789,26.770641],[101.379897,26.786446],[101.372007,26.800333],[101.399317,26.841905],[101.374695,26.865357],[101.365418,26.8837],[101.323283,26.888246],[101.311579,26.902918],[101.293979,26.89614],[101.267796,26.902998],[101.255572,26.923886],[101.264501,26.955531],[101.227048,26.958958],[101.227221,26.984377],[101.137402,27.022377],[101.156822,27.095949],[101.145291,27.10375],[101.170347,27.175121],[101.170434,27.195641],[101.118675,27.208683],[101.074892,27.19413],[101.060327,27.198345],[101.04238,27.221643],[101.042554,27.247003],[101.028075,27.266556],[101.029983,27.294608],[101.010215,27.312246],[101.020272,27.344495],[100.99669,27.355058],[100.995217,27.368239],[100.952127,27.426268],[100.957676,27.439997],[100.936782,27.469194],[100.921263,27.471336],[100.901322,27.453406],[100.901582,27.486249],[100.912073,27.521699],[100.868117,27.591851],[100.854072,27.596605],[100.855285,27.623622],[100.828149,27.6157],[100.851818,27.643346],[100.832224,27.650395],[100.848436,27.670668],[100.836472,27.681675],[100.789048,27.684367],[100.781505,27.69363],[100.77613,27.739934],[100.757403,27.766757],[100.709459,27.798557],[100.70391,27.818565],[100.719516,27.858255],[100.70209,27.867029],[100.70313,27.888922],[100.681282,27.922266],[100.654405,27.910494],[100.634638,27.915393],[100.609062,27.876198],[100.609496,27.859994],[100.559904,27.824101],[100.546379,27.808601],[100.536582,27.824654],[100.51118,27.827659],[100.504331,27.85201],[100.495661,27.844658],[100.473726,27.859678],[100.443208,27.866239],[100.414685,27.840073],[100.41191,27.816351],[100.392837,27.787483],[100.376971,27.775618],[100.374717,27.754573],[100.350788,27.755997],[100.344372,27.734315],[100.327726,27.720465],[100.299463,27.736135],[100.293567,27.710412],[100.278742,27.689038],[100.2927,27.681754],[100.296168,27.664017],[100.258281,27.618869],[100.26591,27.60025],[100.240681,27.591375],[100.24597,27.561338],[100.223775,27.544691],[100.188749,27.50235],[100.177218,27.471495],[100.194037,27.449915],[100.213024,27.404441],[100.206002,27.393566],[100.233138,27.352675],[100.239554,27.316059],[100.233659,27.304698],[100.206002,27.299216],[100.172189,27.255191],[100.149648,27.236351],[100.104218,27.174883],[100.062603,27.157302],[100.05558,27.110435],[100.078729,27.046747],[100.067891,27.034164],[100.077255,27.018474],[100.057054,26.960233],[100.060349,26.937119],[100.049078,26.931459],[100.034166,26.900845],[99.974084,26.867191],[99.960819,26.873652],[99.96472,26.892153],[99.953103,26.904274],[99.959865,26.922372],[99.951802,26.955132],[99.965847,26.961348],[99.949201,26.983023],[99.948855,26.996408],[99.928047,27.014571],[99.918077,27.038624],[99.899957,27.051286],[99.896142,27.074934],[99.857995,27.092765],[99.84603,27.127147],[99.822362,27.152131],[99.79878,27.166451],[99.796699,27.182677],[99.77173,27.20415],[99.743293,27.212897],[99.719451,27.247321],[99.703932,27.249786],[99.698123,27.265205],[99.660149,27.289364],[99.662317,27.302077],[99.640642,27.322176],[99.658502,27.347831],[99.639515,27.378164],[99.616193,27.391105],[99.609171,27.414919],[99.595472,27.424919],[99.606656,27.448566],[99.586109,27.453168],[99.567902,27.472526],[99.559839,27.496957],[99.567989,27.52598],[99.550476,27.540807],[99.551256,27.563716],[99.502358,27.542789],[99.498023,27.507901],[99.485365,27.49315],[99.439849,27.486328],[99.410978,27.475541],[99.41696,27.444996],[99.404476,27.428649],[99.417481,27.408331],[99.417827,27.37348],[99.440976,27.346878],[99.42563,27.331311],[99.397627,27.283086],[99.417914,27.22856],[99.383408,27.213692],[99.411759,27.191187],[99.408031,27.175917],[99.418261,27.154518],[99.43456,27.148949],[99.441583,27.112027],[99.424677,27.114653],[99.433173,27.096427],[99.428145,27.075809],[99.440369,27.040137],[99.470193,27.020784],[99.477389,26.995452],[99.48918,26.985572],[99.492908,26.961826],[99.497243,26.943257],[99.523513,26.908499],[99.559059,26.899888],[99.55325,26.878915],[99.560359,26.858896],[99.574145,26.854589],[99.564348,26.833847],[99.579173,26.830017],[99.57137,26.795465],[99.599287,26.728564],[99.601888,26.703725],[99.622782,26.697176],[99.64333,26.677124],[99.663617,26.675446],[99.690927,26.657229],[99.703498,26.624142],[99.727427,26.619826],[99.751009,26.633973],[99.78985,26.643963],[99.82739,26.620945],[99.895275,26.620066],[99.894148,26.643724],[99.913915,26.641086],[99.939838,26.623503],[99.946947,26.610234],[99.992724,26.595444],[100.016219,26.582731],[100.053673,26.594964],[100.056187,26.643724],[100.080723,26.638209],[100.110634,26.603199],[100.134996,26.604158],[100.157277,26.617428],[100.198979,26.685912],[100.241982,26.695897],[100.242849,26.641486],[100.296602,26.652354],[100.296602,26.632615],[100.308132,26.624302],[100.345586,26.624142],[100.339257,26.598402],[100.357897,26.612232],[100.369948,26.586969],[100.363966,26.563939],[100.405235,26.56202],[100.416332,26.534825],[100.450838,26.536265],[100.443902,26.511065],[100.469998,26.484419],[100.440607,26.484819],[100.426649,26.474815],[100.443382,26.441756],[100.444769,26.42206],[100.463756,26.427905],[100.49384,26.413732],[100.494447,26.395634],[100.452659,26.398196],[100.434539,26.352938],[100.450664,26.353739],[100.427863,26.324732],[100.405581,26.314955],[100.394657,26.298364],[100.41217,26.284335],[100.432284,26.212805],[100.445549,26.201895],[100.416159,26.181837],[100.423268,26.143397],[100.451271,26.128307],[100.469131,26.136414],[100.491759,26.112973],[100.477107,26.101572],[100.48283,26.03957],[100.491499,26.015467],[100.51985,26.013217],[100.528259,26.025269],[100.567274,26.009521],[100.570308,25.985251],[100.624841,26.001003],[100.669057,25.998592],[100.652758,26.041257],[100.647383,26.095229],[100.687698,26.127183],[100.707031,26.148052],[100.74093,26.155757],[100.762778,26.168276],[100.770668,26.186651],[100.788701,26.183923],[100.823467,26.197242],[100.827975,26.178307],[100.851124,26.169159],[100.865689,26.15351],[100.895253,26.151985],[100.909905,26.166912]]]]}},{"type":"Feature","properties":{"adcode":530800,"name":"普洱市","center":[100.972344,22.777321],"centroid":[100.722321,23.188037],"childrenNum":10,"level":"city","parent":{"adcode":530000},"subFeatureIndex":6,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.277073,24.292678],[101.253924,24.296345],[101.204593,24.338714],[101.175289,24.346371],[101.163498,24.37382],[101.144598,24.389456],[101.123703,24.419582],[101.084516,24.448318],[101.079227,24.472327],[101.056946,24.485591],[101.044288,24.504955],[101.036572,24.557582],[101.023567,24.565552],[101.002413,24.596043],[100.971028,24.655051],[100.945712,24.673577],[100.943718,24.729057],[100.910165,24.727514],[100.905137,24.748709],[100.871671,24.723129],[100.817312,24.732874],[100.80292,24.722641],[100.7685,24.748384],[100.765033,24.770874],[100.739023,24.784269],[100.695847,24.795877],[100.689865,24.80797],[100.643742,24.82201],[100.631257,24.786298],[100.623974,24.745542],[100.565366,24.703879],[100.531034,24.70989],[100.514995,24.719799],[100.512914,24.736204],[100.442081,24.732549],[100.42006,24.708346],[100.408182,24.707291],[100.404194,24.683002],[100.423181,24.671546],[100.42032,24.656514],[100.464363,24.593685],[100.479015,24.592547],[100.494187,24.567341],[100.498782,24.521144],[100.529387,24.509593],[100.546379,24.476396],[100.540917,24.462968],[100.514821,24.445306],[100.507712,24.422025],[100.509793,24.37496],[100.504071,24.343031],[100.51066,24.330485],[100.514995,24.284854],[100.507539,24.258364],[100.518376,24.246951],[100.526092,24.190443],[100.521844,24.157815],[100.497828,24.088534],[100.480142,24.075718],[100.425002,24.06233],[100.392837,24.070494],[100.36674,24.051144],[100.381913,24.020277],[100.378271,23.997408],[100.391276,23.976577],[100.395698,23.941035],[100.414858,23.915945],[100.404107,23.873436],[100.381306,23.871555],[100.374457,23.855611],[100.359978,23.861744],[100.350875,23.844653],[100.36492,23.83762],[100.353302,23.815536],[100.360758,23.766121],[100.34784,23.751063],[100.378531,23.73404],[100.386941,23.716932],[100.388935,23.686395],[100.436533,23.661829],[100.392923,23.636767],[100.36466,23.612847],[100.307352,23.618745],[100.288625,23.640862],[100.25516,23.635129],[100.239207,23.608505],[100.213805,23.620548],[100.186841,23.611864],[100.15615,23.485392],[100.144359,23.459312],[100.1089,23.426007],[100.102918,23.408777],[100.10994,23.384652],[100.082543,23.351164],[100.078902,23.324155],[100.091387,23.281946],[100.082717,23.246708],[100.043009,23.217869],[100.002434,23.226497],[99.971396,23.227565],[99.942266,23.249583],[99.885305,23.255498],[99.842476,23.214747],[99.799213,23.198722],[99.781874,23.21261],[99.727601,23.234549],[99.667519,23.248351],[99.661623,23.230934],[99.613939,23.188367],[99.638995,23.149897],[99.6168,23.14924],[99.611338,23.162804],[99.591744,23.170038],[99.539032,23.136085],[99.540766,23.127123],[99.503225,23.106565],[99.513976,23.073172],[99.528021,23.065604],[99.529408,23.046024],[99.517097,23.006773],[99.53357,22.961418],[99.544927,22.958784],[99.563307,22.925601],[99.554464,22.907072],[99.531489,22.897106],[99.506,22.902789],[99.446785,22.934742],[99.436728,22.91366],[99.462911,22.844793],[99.442103,22.844711],[99.419908,22.827324],[99.401181,22.826088],[99.386876,22.788257],[99.386269,22.762371],[99.326794,22.751569],[99.31483,22.737057],[99.339105,22.709346],[99.348556,22.672473],[99.361127,22.662078],[99.371964,22.601503],[99.386009,22.573518],[99.359653,22.535369],[99.35974,22.520751],[99.381414,22.50324],[99.333557,22.445985],[99.312576,22.437638],[99.302172,22.416976],[99.282231,22.401436],[99.25154,22.393417],[99.253621,22.380355],[99.276683,22.36233],[99.277723,22.344965],[99.254488,22.329831],[99.233767,22.296496],[99.235761,22.250658],[99.208191,22.232203],[99.174205,22.177982],[99.18799,22.163078],[99.158426,22.165645],[99.169697,22.14635],[99.187557,22.139808],[99.220329,22.111067],[99.256222,22.112144],[99.272348,22.100381],[99.292982,22.11057],[99.300958,22.100298],[99.354711,22.095659],[99.365028,22.104191],[99.399881,22.100215],[99.448605,22.113303],[99.471927,22.130946],[99.487273,22.128627],[99.516577,22.099552],[99.562614,22.113221],[99.575618,22.094499],[99.592264,22.112558],[99.612985,22.093919],[99.648792,22.100546],[99.676622,22.074946],[99.696129,22.067654],[99.690407,22.04528],[99.712255,22.036993],[99.721445,22.060611],[99.763147,22.067903],[99.824963,22.043125],[99.834586,22.028124],[99.869959,22.02945],[99.871433,22.066909],[99.972437,22.052987],[99.989169,22.077266],[99.997319,22.112806],[100.014919,22.111233],[100.04613,22.130366],[100.066851,22.16018],[100.093121,22.241721],[100.10838,22.24652],[100.143319,22.232037],[100.174097,22.2399],[100.183547,22.254134],[100.201494,22.255623],[100.195425,22.276227],[100.203921,22.292525],[100.264176,22.287644],[100.276227,22.272007],[100.346106,22.243127],[100.371422,22.261664],[100.378011,22.300384],[100.389716,22.329252],[100.390409,22.372335],[100.382606,22.402015],[100.401073,22.409454],[100.414251,22.43739],[100.44659,22.426068],[100.448237,22.437721],[100.470258,22.452761],[100.529387,22.462098],[100.578891,22.458793],[100.592763,22.441853],[100.617299,22.454744],[100.611056,22.467717],[100.62224,22.489858],[100.658047,22.497706],[100.659,22.519512],[100.696628,22.51786],[100.723244,22.523312],[100.758097,22.571124],[100.81185,22.57971],[100.809942,22.594487],[100.845489,22.583177],[100.859013,22.585571],[100.879301,22.558656],[100.882162,22.538508],[100.901756,22.525955],[100.923257,22.528763],[100.959844,22.555188],[100.996604,22.557913],[100.993569,22.58392],[101.006314,22.573023],[101.028162,22.590194],[101.097,22.550399],[101.124831,22.545444],[101.176069,22.552298],[101.206067,22.535039],[101.254791,22.543628],[101.308197,22.53347],[101.349553,22.558986],[101.36932,22.55973],[101.402005,22.576242],[101.445874,22.584333],[101.453851,22.547178],[101.468763,22.529588],[101.48879,22.479283],[101.493038,22.451934],[101.50613,22.436233],[101.509858,22.404412],[101.532226,22.380851],[101.563177,22.37126],[101.551906,22.3295],[101.60618,22.339755],[101.647968,22.33165],[101.648922,22.362992],[101.67181,22.372749],[101.648488,22.400444],[101.667128,22.432762],[101.677966,22.477218],[101.715246,22.478209],[101.764577,22.506379],[101.782177,22.501423],[101.792581,22.482423],[101.824226,22.456892],[101.823012,22.426811],[101.86272,22.389201],[101.901387,22.384324],[101.911184,22.396972],[101.90789,22.437225],[101.93624,22.43896],[101.978549,22.427803],[102.046434,22.457884],[102.087789,22.439208],[102.131398,22.430861],[102.12819,22.417141],[102.14527,22.397799],[102.167378,22.425572],[102.179429,22.430531],[102.236476,22.426811],[102.270202,22.419621],[102.256157,22.457388],[102.322568,22.554032],[102.29283,22.572527],[102.276878,22.611986],[102.248527,22.606373],[102.212721,22.623623],[102.198849,22.613802],[102.181943,22.624449],[102.154546,22.625026],[102.078685,22.656219],[102.058658,22.698211],[102.058831,22.725182],[102.031695,22.74687],[102.012535,22.776716],[101.99164,22.794109],[101.968839,22.794851],[101.922282,22.820731],[101.894451,22.795675],[101.874251,22.800951],[101.823359,22.840508],[101.800297,22.876513],[101.838184,22.911025],[101.848415,22.906742],[101.861679,22.939518],[101.851189,22.973767],[101.870436,22.982492],[101.879279,23.015908],[101.903295,23.020105],[101.910751,23.009736],[101.96277,23.020681],[101.967018,22.993687],[102.015222,22.988666],[102.056664,23.039524],[102.058918,23.054498],[102.044526,23.074982],[102.069149,23.096449],[102.043919,23.108127],[102.037244,23.127698],[101.997622,23.14332],[102.002824,23.155734],[101.971179,23.171846],[101.950459,23.175052],[101.939361,23.14554],[101.918207,23.159351],[101.883961,23.148746],[101.83463,23.164366],[101.827694,23.176367],[101.842693,23.212692],[101.823532,23.243339],[101.851796,23.262973],[101.876938,23.264041],[101.892197,23.291063],[101.874684,23.302806],[101.873904,23.326946],[101.84538,23.349933],[101.821105,23.350508],[101.824746,23.370864],[101.787206,23.387442],[101.761716,23.380548],[101.747238,23.394828],[101.745417,23.419608],[101.768132,23.416818],[101.788333,23.440692],[101.782437,23.46735],[101.764404,23.499496],[101.745677,23.516468],[101.731719,23.511221],[101.713252,23.531716],[101.728598,23.56524],[101.705796,23.568518],[101.689497,23.590807],[101.688283,23.607849],[101.667389,23.606375],[101.667649,23.625053],[101.685335,23.620138],[101.690364,23.636603],[101.709784,23.654868],[101.687676,23.670346],[101.64294,23.651674],[101.619011,23.632508],[101.614069,23.649954],[101.594128,23.661993],[101.574014,23.689261],[101.560663,23.670428],[101.535087,23.687787],[101.540549,23.717996],[101.564911,23.721353],[101.568813,23.739278],[101.548525,23.771112],[101.531186,23.781995],[101.520262,23.772912],[101.497373,23.777494],[101.482634,23.757283],[101.468156,23.755892],[101.459573,23.727083],[101.430355,23.718569],[101.42602,23.74157],[101.412582,23.746726],[101.4066,23.765712],[101.424286,23.778558],[101.422726,23.808665],[101.400878,23.826496],[101.445528,23.851277],[101.462781,23.839501],[101.497113,23.880794],[101.502402,23.897226],[101.533006,23.917988],[101.512805,23.942261],[101.491998,23.948553],[101.481421,23.973963],[101.454978,23.995693],[101.443447,24.025504],[101.409634,24.040203],[101.411975,24.068371],[101.384232,24.09841],[101.383625,24.128034],[101.357095,24.140355],[101.347472,24.161812],[101.34357,24.199088],[101.316607,24.228199],[101.307677,24.249886],[101.277073,24.292678]]]]}},{"type":"Feature","properties":{"adcode":530900,"name":"临沧市","center":[100.08697,23.886567],"centroid":[99.674418,23.938527],"childrenNum":8,"level":"city","parent":{"adcode":530000},"subFeatureIndex":7,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.408182,24.707291],[100.385814,24.72857],[100.369948,24.726621],[100.350875,24.750495],[100.33839,24.745867],[100.321484,24.758046],[100.294521,24.757478],[100.238254,24.741888],[100.190049,24.738965],[100.170716,24.722235],[100.137597,24.705097],[100.126673,24.663421],[100.098409,24.667077],[100.094768,24.712002],[100.131441,24.733524],[100.135429,24.762918],[100.152942,24.79263],[100.150948,24.818115],[100.180513,24.861524],[100.179472,24.877667],[100.198372,24.909054],[100.210077,24.96678],[100.185368,24.973831],[100.182593,24.983962],[100.146007,24.980315],[100.101184,24.988258],[100.075174,24.978208],[100.060695,24.947325],[100.025409,24.953648],[100.014745,25.016538],[99.993764,25.032741],[99.967321,25.01119],[99.938711,25.009813],[99.922325,24.993849],[99.902384,24.991418],[99.890073,24.971805],[99.851839,24.949351],[99.844383,24.93265],[99.865798,24.904918],[99.839095,24.872962],[99.815859,24.869799],[99.810224,24.850491],[99.837967,24.829313],[99.808924,24.819981],[99.803808,24.805535],[99.771123,24.786542],[99.770343,24.778505],[99.801467,24.766977],[99.816293,24.736772],[99.807103,24.699168],[99.777192,24.695756],[99.744247,24.670246],[99.726127,24.670165],[99.730115,24.631727],[99.702371,24.630508],[99.684251,24.597506],[99.665091,24.596043],[99.645237,24.579782],[99.668125,24.569536],[99.686852,24.494134],[99.673154,24.490229],[99.683471,24.472815],[99.677316,24.448806],[99.650699,24.456457],[99.636307,24.451655],[99.603795,24.407207],[99.590097,24.35639],[99.550563,24.326656],[99.501925,24.317205],[99.482678,24.282328],[99.483545,24.260239],[99.459703,24.241244],[99.445658,24.245239],[99.42381,24.230482],[99.36104,24.242223],[99.360867,24.288277],[99.36971,24.31419],[99.353324,24.333907],[99.352977,24.35411],[99.331389,24.417466],[99.302605,24.448969],[99.266366,24.442376],[99.248072,24.410627],[99.21478,24.374309],[99.216427,24.345882],[99.189464,24.329019],[99.151143,24.281594],[99.091148,24.236108],[99.073462,24.237983],[99.050053,24.227873],[99.024824,24.230319],[99.017108,24.213114],[98.981301,24.205694],[98.946015,24.188078],[98.909255,24.181634],[98.87683,24.151533],[98.899892,24.108939],[98.866773,24.080779],[98.860271,24.064452],[98.82117,24.041673],[98.807471,24.025177],[98.773919,24.022237],[98.746783,23.983276],[98.727622,23.970368],[98.701179,23.981479],[98.673176,23.960646],[98.701093,23.946346],[98.687828,23.922075],[98.693723,23.885781],[98.690862,23.850623],[98.701439,23.834348],[98.668841,23.80073],[98.684793,23.802039],[98.69511,23.78494],[98.736812,23.78764],[98.751378,23.776267],[98.78623,23.781422],[98.824117,23.727492],[98.811893,23.703097],[98.836082,23.683693],[98.847266,23.631934],[98.881945,23.619974],[98.882119,23.595314],[98.844665,23.578926],[98.803743,23.540569],[98.803657,23.521223],[98.825851,23.470056],[98.871802,23.484572],[98.898505,23.458574],[98.896164,23.441266],[98.91255,23.426335],[98.907261,23.392284],[98.920613,23.353873],[98.89469,23.353463],[98.872842,23.32982],[98.882032,23.323662],[98.906914,23.331708],[98.936912,23.310114],[98.925294,23.296483],[98.930236,23.266751],[98.910556,23.248926],[98.910816,23.230934],[98.890008,23.212035],[98.890442,23.176449],[98.907174,23.18549],[98.951824,23.176942],[99.002803,23.160256],[99.057509,23.164448],[99.048406,23.114706],[99.106494,23.086579],[99.123573,23.097272],[99.186776,23.100561],[99.200561,23.109196],[99.216687,23.08954],[99.255442,23.077943],[99.282145,23.101137],[99.307721,23.100808],[99.32532,23.111006],[99.32532,23.132385],[99.348556,23.128685],[99.380634,23.099903],[99.440716,23.079177],[99.477476,23.083043],[99.513976,23.073172],[99.503225,23.106565],[99.540766,23.127123],[99.539032,23.136085],[99.591744,23.170038],[99.611338,23.162804],[99.6168,23.14924],[99.638995,23.149897],[99.613939,23.188367],[99.661623,23.230934],[99.667519,23.248351],[99.727601,23.234549],[99.781874,23.21261],[99.799213,23.198722],[99.842476,23.214747],[99.885305,23.255498],[99.942266,23.249583],[99.971396,23.227565],[100.002434,23.226497],[100.043009,23.217869],[100.082717,23.246708],[100.091387,23.281946],[100.078902,23.324155],[100.082543,23.351164],[100.10994,23.384652],[100.102918,23.408777],[100.1089,23.426007],[100.144359,23.459312],[100.15615,23.485392],[100.186841,23.611864],[100.213805,23.620548],[100.239207,23.608505],[100.25516,23.635129],[100.288625,23.640862],[100.307352,23.618745],[100.36466,23.612847],[100.392923,23.636767],[100.436533,23.661829],[100.388935,23.686395],[100.386941,23.716932],[100.378531,23.73404],[100.34784,23.751063],[100.360758,23.766121],[100.353302,23.815536],[100.36492,23.83762],[100.350875,23.844653],[100.359978,23.861744],[100.374457,23.855611],[100.381306,23.871555],[100.404107,23.873436],[100.414858,23.915945],[100.395698,23.941035],[100.391276,23.976577],[100.378271,23.997408],[100.381913,24.020277],[100.36674,24.051144],[100.392837,24.070494],[100.425002,24.06233],[100.480142,24.075718],[100.497828,24.088534],[100.521844,24.157815],[100.526092,24.190443],[100.518376,24.246951],[100.507539,24.258364],[100.514995,24.284854],[100.51066,24.330485],[100.504071,24.343031],[100.509793,24.37496],[100.507712,24.422025],[100.514821,24.445306],[100.540917,24.462968],[100.546379,24.476396],[100.529387,24.509593],[100.498782,24.521144],[100.494187,24.567341],[100.479015,24.592547],[100.464363,24.593685],[100.42032,24.656514],[100.423181,24.671546],[100.404194,24.683002],[100.408182,24.707291]]]]}},{"type":"Feature","properties":{"adcode":532300,"name":"楚雄彝族自治州","center":[101.546046,25.041988],"centroid":[101.569589,25.352508],"childrenNum":10,"level":"city","parent":{"adcode":530000},"subFeatureIndex":8,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.226853,24.910676],[102.229714,24.940028],[102.246013,24.964429],[102.247574,24.98145],[102.228153,25.000332],[102.203791,24.991499],[102.179082,25.018482],[102.182377,25.04068],[102.171106,25.053074],[102.187665,25.083688],[102.20093,25.085874],[102.200583,25.065628],[102.233962,25.051211],[102.235089,25.03266],[102.281299,25.048781],[102.300113,25.066762],[102.342508,25.059149],[102.351438,25.089842],[102.36661,25.114699],[102.359328,25.153229],[102.373373,25.190776],[102.390626,25.211244],[102.407532,25.208493],[102.413428,25.250794],[102.406318,25.277559],[102.378315,25.269878],[102.373806,25.29979],[102.362449,25.310703],[102.368604,25.336403],[102.349011,25.349494],[102.358374,25.370824],[102.377795,25.389646],[102.393747,25.368885],[102.435275,25.381487],[102.430767,25.398531],[102.457297,25.417752],[102.457557,25.428735],[102.479058,25.453038],[102.477411,25.491137],[102.460245,25.501952],[102.463713,25.526321],[102.448107,25.534389],[102.451401,25.581818],[102.43016,25.573027],[102.421577,25.588834],[102.382043,25.60996],[102.379095,25.628906],[102.36583,25.638015],[102.380222,25.661309],[102.38421,25.693299],[102.357074,25.71779],[102.362449,25.782619],[102.379008,25.787611],[102.371726,25.801457],[102.377534,25.828179],[102.352305,25.84709],[102.328983,25.852964],[102.322308,25.888041],[102.330544,25.898256],[102.328463,25.922222],[102.340428,25.927771],[102.322394,25.945058],[102.321614,25.964111],[102.335919,25.989832],[102.332451,26.004378],[102.343635,26.023823],[102.353519,26.060937],[102.347884,26.075795],[102.314678,26.088484],[102.294304,26.110565],[102.259885,26.127424],[102.263439,26.142835],[102.248527,26.157362],[102.236476,26.185127],[102.199629,26.158486],[102.175094,26.147009],[102.152292,26.109601],[102.137033,26.108317],[102.130964,26.087119],[102.115532,26.085272],[102.107816,26.068246],[102.084321,26.065194],[102.052589,26.075474],[102.020771,26.096273],[101.954707,26.084469],[101.922888,26.107995],[101.89974,26.099244],[101.858038,26.04937],[101.83541,26.045836],[101.839918,26.082381],[101.819544,26.087119],[101.796569,26.11482],[101.799083,26.146929],[101.80758,26.156319],[101.77316,26.168276],[101.735707,26.219944],[101.705016,26.224435],[101.690017,26.241679],[101.671637,26.231895],[101.649962,26.234301],[101.630368,26.224837],[101.615716,26.252264],[101.594475,26.261566],[101.586239,26.279686],[101.597423,26.303414],[101.621005,26.312871],[101.646928,26.305177],[101.660366,26.310868],[101.640339,26.318882],[101.660626,26.346849],[101.63557,26.357585],[101.637564,26.389066],[101.619011,26.396595],[101.620225,26.408607],[101.588146,26.425823],[101.563871,26.455525],[101.529972,26.467211],[101.50691,26.499703],[101.458706,26.495462],[101.463301,26.482658],[101.452637,26.46369],[101.477259,26.446719],[101.468156,26.420138],[101.438852,26.408767],[101.43417,26.389226],[101.386833,26.39283],[101.339235,26.372485],[101.329265,26.374248],[101.273345,26.356303],[101.25193,26.359427],[101.226701,26.351816],[101.193149,26.36103],[101.16818,26.340999],[101.12431,26.338355],[101.097954,26.320485],[101.053651,26.302211],[101.02244,26.26782],[100.986633,26.250019],[100.931493,26.20366],[100.909905,26.166912],[100.919529,26.151744],[100.9145,26.053547],[100.937042,26.043185],[100.940943,26.029849],[100.920049,26.014824],[100.904443,25.992564],[100.921003,25.967326],[100.943978,25.970381],[100.962098,25.945942],[100.950307,25.898738],[100.916494,25.878388],[100.934788,25.860125],[100.889618,25.822545],[100.898635,25.809506],[100.924211,25.80194],[100.94892,25.766757],[100.934788,25.741632],[100.973455,25.745095],[100.965566,25.728504],[100.933401,25.699826],[100.956289,25.67662],[100.948139,25.657359],[100.9875,25.656312],[101.001459,25.587866],[101.002066,25.562058],[100.957156,25.560041],[100.947793,25.525836],[100.941464,25.473623],[100.957763,25.459657],[100.952388,25.440523],[100.979351,25.424455],[100.980998,25.412261],[101.017325,25.413149],[101.035618,25.403296],[101.027035,25.37042],[101.034924,25.348363],[100.995997,25.344969],[100.992789,25.331554],[100.969467,25.324766],[100.974236,25.306095],[100.960971,25.301569],[100.988107,25.266563],[100.981085,25.250552],[100.944065,25.259366],[100.933921,25.242546],[100.907565,25.241009],[100.888404,25.254029],[100.848176,25.261792],[100.828929,25.276669],[100.818525,25.271252],[100.830403,25.232759],[100.817918,25.227987],[100.819826,25.192636],[100.801619,25.202021],[100.779251,25.201536],[100.775176,25.181552],[100.750901,25.148292],[100.759137,25.127246],[100.750727,25.102554],[100.772489,25.061416],[100.746913,25.046432],[100.780291,25.005113],[100.742404,24.990608],[100.720556,24.973669],[100.738329,24.955107],[100.743531,24.933704],[100.758097,24.933785],[100.760958,24.895511],[100.736942,24.867771],[100.743271,24.837103],[100.75905,24.831748],[100.762692,24.816329],[100.743271,24.81357],[100.747433,24.784188],[100.739023,24.784269],[100.765033,24.770874],[100.7685,24.748384],[100.80292,24.722641],[100.817312,24.732874],[100.871671,24.723129],[100.905137,24.748709],[100.910165,24.727514],[100.943718,24.729057],[100.945712,24.673577],[100.971028,24.655051],[101.002413,24.596043],[101.023567,24.565552],[101.036572,24.557582],[101.044288,24.504955],[101.056946,24.485591],[101.079227,24.472327],[101.084516,24.448318],[101.123703,24.419582],[101.144598,24.389456],[101.163498,24.37382],[101.175289,24.346371],[101.204593,24.338714],[101.253924,24.296345],[101.277073,24.292678],[101.278373,24.309302],[101.302649,24.322664],[101.36091,24.342461],[101.381804,24.361033],[101.385879,24.380091],[101.37799,24.39939],[101.39611,24.421862],[101.413276,24.401996],[101.449082,24.385873],[101.445267,24.377485],[101.453157,24.336759],[101.470497,24.302212],[101.468503,24.286321],[101.483155,24.269531],[101.47908,24.245402],[101.48983,24.225998],[101.514366,24.220453],[101.546444,24.237494],[101.577656,24.243609],[101.598897,24.286484],[101.629588,24.322827],[101.650742,24.366572],[101.668082,24.376019],[101.692965,24.343846],[101.749145,24.320057],[101.773074,24.299523],[101.772814,24.285506],[101.791454,24.284039],[101.799517,24.310442],[101.827174,24.305309],[101.810094,24.283143],[101.815989,24.242712],[101.832115,24.250457],[101.841912,24.240837],[101.860206,24.2485],[101.904942,24.25119],[101.905896,24.261625],[101.932425,24.254125],[101.953926,24.275318],[101.970833,24.271813],[102.000483,24.294634],[102.010367,24.33407],[102.006552,24.350118],[102.031868,24.36592],[102.028747,24.390026],[102.001871,24.408184],[102.016956,24.430654],[102.001957,24.455155],[102.012448,24.471594],[101.972653,24.457759],[101.947251,24.462724],[101.941875,24.493971],[101.923842,24.491693],[101.920374,24.514962],[101.905029,24.530906],[101.913525,24.545627],[101.891764,24.568479],[101.904075,24.583115],[101.920374,24.578562],[101.948291,24.587994],[101.936327,24.632378],[101.922455,24.62173],[101.903468,24.636685],[101.926356,24.651232],[101.953146,24.680646],[101.939101,24.679346],[101.933032,24.712002],[101.943956,24.766247],[101.983144,24.790925],[101.986265,24.811297],[101.996755,24.808376],[102.009847,24.837428],[101.996582,24.860875],[102.005078,24.872394],[102.051289,24.86193],[102.077645,24.866959],[102.085101,24.896079],[102.11085,24.908406],[102.122295,24.925921],[102.124635,24.952351],[102.161135,24.932894],[102.1744,24.912866],[102.221304,24.903702],[102.226853,24.910676]]]]}},{"type":"Feature","properties":{"adcode":532500,"name":"红河哈尼族彝族自治州","center":[103.384182,23.366775],"centroid":[103.037257,23.440306],"childrenNum":13,"level":"city","parent":{"adcode":530000},"subFeatureIndex":9,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.109095,24.506989],[103.107274,24.473222],[103.088634,24.441236],[103.062104,24.432445],[103.067566,24.411685],[103.099038,24.404113],[103.089761,24.340343],[103.098864,24.322583],[103.112389,24.324864],[103.121753,24.306287],[103.138572,24.301397],[103.125741,24.249641],[103.149236,24.235048],[103.151143,24.215316],[103.134671,24.201127],[103.137012,24.170949],[103.100772,24.145577],[103.081611,24.093839],[103.052307,24.080698],[103.033407,24.050165],[103.037829,24.04053],[103.053261,24.03661],[103.035921,24.023054],[103.03254,24.032364],[103.015894,24.033262],[102.96691,24.067636],[102.9396,24.057268],[102.915151,24.039876],[102.899458,24.013009],[102.87761,24.010395],[102.884806,23.993814],[102.856889,23.987524],[102.84822,24.014316],[102.834868,24.024361],[102.841457,24.043143],[102.829493,24.046735],[102.784323,24.017827],[102.747129,24.018154],[102.732217,23.972166],[102.711063,23.967754],[102.689908,23.94602],[102.689302,23.922402],[102.674129,23.9242],[102.658437,23.91006],[102.643005,23.926733],[102.636502,23.951658],[102.650201,23.976087],[102.634682,23.993487],[102.646559,24.006638],[102.635635,24.022972],[102.6111,24.025912],[102.625925,24.038733],[102.612487,24.046817],[102.59324,24.034242],[102.565583,24.028852],[102.54859,24.041101],[102.516252,24.029016],[102.491456,24.064942],[102.469435,24.054084],[102.428947,24.049185],[102.411087,24.058574],[102.418543,24.067146],[102.377014,24.087065],[102.318753,24.096125],[102.295865,24.081024],[102.304881,24.058492],[102.32777,24.060452],[102.331671,24.044776],[102.311644,24.034814],[102.271069,24.032527],[102.230841,24.023381],[102.224945,24.008027],[102.252342,23.969225],[102.264133,23.963015],[102.265173,23.927551],[102.283207,23.925916],[102.264306,23.900006],[102.251042,23.908589],[102.223385,23.904338],[102.201017,23.887498],[102.160008,23.872618],[102.136253,23.830668],[102.186018,23.763748],[102.159488,23.747217],[102.148044,23.721353],[102.159922,23.696875],[102.202404,23.700068],[102.225379,23.691963],[102.249048,23.662812],[102.292397,23.6262],[102.296992,23.597608],[102.321181,23.57532],[102.317973,23.551143],[102.355513,23.520485],[102.360715,23.481292],[102.334966,23.460132],[102.319273,23.413782],[102.289276,23.415177],[102.275144,23.4233],[102.223125,23.424038],[102.216622,23.41009],[102.187578,23.428304],[102.157754,23.382928],[102.151685,23.345418],[102.130011,23.32358],[102.095505,23.31463],[102.068715,23.329902],[102.055624,23.320788],[102.027533,23.330723],[102.013835,23.345993],[101.987999,23.336141],[101.968665,23.353299],[101.906502,23.360522],[101.874858,23.338112],[101.873904,23.326946],[101.874684,23.302806],[101.892197,23.291063],[101.876938,23.264041],[101.851796,23.262973],[101.823532,23.243339],[101.842693,23.212692],[101.827694,23.176367],[101.83463,23.164366],[101.883961,23.148746],[101.918207,23.159351],[101.939361,23.14554],[101.950459,23.175052],[101.971179,23.171846],[102.002824,23.155734],[101.997622,23.14332],[102.037244,23.127698],[102.043919,23.108127],[102.069149,23.096449],[102.044526,23.074982],[102.058918,23.054498],[102.056664,23.039524],[102.015222,22.988666],[101.967018,22.993687],[101.96277,23.020681],[101.910751,23.009736],[101.903295,23.020105],[101.879279,23.015908],[101.870436,22.982492],[101.851189,22.973767],[101.861679,22.939518],[101.848415,22.906742],[101.838184,22.911025],[101.800297,22.876513],[101.823359,22.840508],[101.874251,22.800951],[101.894451,22.795675],[101.922282,22.820731],[101.968839,22.794851],[101.99164,22.794109],[102.012535,22.776716],[102.031695,22.74687],[102.058831,22.725182],[102.058658,22.698211],[102.078685,22.656219],[102.154546,22.625026],[102.181943,22.624449],[102.198849,22.613802],[102.212721,22.623623],[102.248527,22.606373],[102.276878,22.611986],[102.29283,22.572527],[102.322568,22.554032],[102.356727,22.56361],[102.347537,22.585241],[102.376928,22.593744],[102.404844,22.629978],[102.41889,22.638066],[102.403631,22.645245],[102.384557,22.679733],[102.407792,22.682043],[102.436489,22.699531],[102.456256,22.731202],[102.459724,22.762865],[102.498132,22.777787],[102.511917,22.773171],[102.565756,22.717842],[102.570438,22.700273],[102.607372,22.730707],[102.657397,22.688148],[102.692163,22.699614],[102.737072,22.66513],[102.750684,22.666863],[102.758313,22.650526],[102.787097,22.641532],[102.801056,22.620487],[102.823424,22.623128],[102.85897,22.607281],[102.880125,22.586892],[102.874576,22.571124],[102.892002,22.534956],[102.924254,22.503654],[102.928849,22.483662],[102.985116,22.478375],[102.993353,22.460941],[103.009739,22.458875],[103.030199,22.44144],[103.071988,22.445324],[103.081785,22.454248],[103.072075,22.488206],[103.083519,22.508444],[103.118978,22.518273],[103.139439,22.537847],[103.157559,22.53859],[103.183829,22.557665],[103.164582,22.580205],[103.166662,22.609015],[103.19588,22.648381],[103.216514,22.643595],[103.248159,22.665625],[103.282751,22.678496],[103.290381,22.70547],[103.287953,22.731202],[103.321419,22.778035],[103.323326,22.807874],[103.375172,22.794933],[103.390691,22.778859],[103.415053,22.773418],[103.441063,22.752971],[103.432826,22.732769],[103.435514,22.698789],[103.460483,22.676763],[103.458229,22.658365],[103.508947,22.601008],[103.533656,22.593496],[103.554724,22.633939],[103.573364,22.641944],[103.58004,22.668265],[103.567902,22.700933],[103.584635,22.72848],[103.612465,22.756682],[103.620528,22.783888],[103.643416,22.794604],[103.664397,22.782239],[103.685639,22.75025],[103.708267,22.738376],[103.741386,22.706872],[103.75465,22.686663],[103.769649,22.68724],[103.826957,22.613967],[103.863543,22.584085],[103.878629,22.563528],[103.889726,22.566583],[103.930301,22.534956],[103.9642,22.502827],[104.008243,22.5172],[104.015352,22.542141],[104.009023,22.572692],[104.030958,22.62676],[104.036247,22.666533],[104.031478,22.684765],[104.04535,22.728151],[104.067111,22.753961],[104.093381,22.773995],[104.117396,22.808945],[104.13725,22.803011],[104.168461,22.81966],[104.224035,22.826335],[104.261489,22.841992],[104.274233,22.827901],[104.282556,22.842074],[104.276227,22.863167],[104.257934,22.87297],[104.240161,22.864897],[104.21814,22.871076],[104.190223,22.844134],[104.175917,22.847348],[104.179299,22.872888],[104.157017,22.861354],[104.137077,22.898918],[104.118697,22.894635],[104.100056,22.87503],[104.080203,22.836388],[104.067458,22.823451],[104.048037,22.827077],[104.043442,22.839602],[104.022722,22.821885],[104.039454,22.796994],[104.013532,22.746457],[104.00148,22.749013],[104.001914,22.726666],[103.989863,22.709099],[103.96342,22.699861],[103.934809,22.707284],[103.923452,22.688148],[103.896836,22.699201],[103.889033,22.722872],[103.905245,22.738211],[103.89094,22.782816],[103.897009,22.798972],[103.885998,22.818835],[103.907066,22.818341],[103.917036,22.838119],[103.917643,22.893234],[103.907673,22.916049],[103.937064,22.952033],[103.947901,22.95335],[103.958045,23.00595],[103.934549,23.041581],[103.946427,23.089458],[103.937584,23.099739],[103.938104,23.152446],[103.908713,23.199462],[103.912615,23.232084],[103.936717,23.253115],[103.913568,23.304695],[103.882877,23.32711],[103.856261,23.332283],[103.830251,23.351329],[103.815686,23.338358],[103.808317,23.35806],[103.815773,23.370946],[103.803548,23.405495],[103.819501,23.428468],[103.798867,23.44586],[103.806756,23.470712],[103.788549,23.473583],[103.80034,23.491296],[103.767829,23.500726],[103.731849,23.494248],[103.73497,23.510647],[103.719971,23.521551],[103.737918,23.538602],[103.724826,23.550323],[103.70662,23.541963],[103.694568,23.518271],[103.67983,23.526388],[103.65356,23.505891],[103.632666,23.507449],[103.622349,23.523026],[103.595646,23.539995],[103.587149,23.577041],[103.614199,23.584006],[103.649312,23.628903],[103.662577,23.653066],[103.648878,23.673949],[103.650699,23.714395],[103.630759,23.747872],[103.644544,23.763748],[103.652433,23.825106],[103.665004,23.849968],[103.660756,23.865995],[103.707833,23.889378],[103.688326,23.920113],[103.701244,23.929185],[103.695262,23.942669],[103.678876,23.939319],[103.65434,23.962198],[103.634573,23.970287],[103.640902,23.984093],[103.622175,24.009497],[103.581514,24.048532],[103.574925,24.086248],[103.59053,24.115794],[103.62495,24.137418],[103.639168,24.172091],[103.670987,24.186854],[103.692574,24.186202],[103.697083,24.20496],[103.728554,24.198272],[103.773551,24.203899],[103.785515,24.219149],[103.786122,24.24744],[103.810397,24.257386],[103.81872,24.271243],[103.818634,24.301316],[103.840308,24.312805],[103.863717,24.359567],[103.906459,24.379602],[103.945907,24.429921],[103.968275,24.440666],[103.988996,24.43505],[104.010324,24.44905],[104.020728,24.453934],[104.009023,24.482824],[104.03772,24.493565],[104.038674,24.5257],[104.027923,24.525944],[104.013358,24.552866],[104.000353,24.554573],[103.986655,24.581489],[103.97183,24.590677],[103.994545,24.620999],[103.969229,24.658952],[103.954317,24.638554],[103.92822,24.648225],[103.929521,24.667077],[103.892501,24.667971],[103.869439,24.685033],[103.838661,24.695512],[103.813085,24.728732],[103.794965,24.722479],[103.789243,24.732712],[103.760372,24.692019],[103.719538,24.714601],[103.730982,24.736528],[103.740692,24.730113],[103.753263,24.761456],[103.733236,24.75147],[103.708007,24.753987],[103.693095,24.736528],[103.675582,24.738234],[103.666565,24.724184],[103.633013,24.663502],[103.640295,24.65757],[103.619748,24.624981],[103.631625,24.616609],[103.617754,24.596286],[103.562787,24.555631],[103.543367,24.554899],[103.535304,24.527408],[103.474962,24.499097],[103.4532,24.511301],[103.483805,24.530987],[103.472621,24.541805],[103.491348,24.555875],[103.460656,24.558233],[103.448952,24.571081],[103.419648,24.577099],[103.385922,24.60466],[103.323933,24.639367],[103.305727,24.640992],[103.288734,24.656839],[103.269573,24.633353],[103.284225,24.622949],[103.278677,24.603766],[103.260123,24.607342],[103.25102,24.584172],[103.263071,24.552703],[103.237755,24.532126],[103.247379,24.514148],[103.237408,24.507559],[103.176286,24.523991],[103.167876,24.510813],[103.152704,24.527327],[103.139179,24.526106],[103.109095,24.506989]]],[[[103.053261,24.03661],[103.037829,24.04053],[103.03254,24.032364],[103.035921,24.023054],[103.053261,24.03661]]]]}},{"type":"Feature","properties":{"adcode":532600,"name":"文山壮族苗族自治州","center":[104.24401,23.36951],"centroid":[104.716265,23.688656],"childrenNum":8,"level":"city","parent":{"adcode":530000},"subFeatureIndex":10,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.567014,24.472652],[104.553142,24.453771],[104.524965,24.454259],[104.527826,24.43505],[104.505544,24.441887],[104.467831,24.440097],[104.419106,24.422269],[104.415985,24.383756],[104.356857,24.379277],[104.347754,24.365594],[104.288365,24.35191],[104.270245,24.366734],[104.246317,24.354843],[104.215972,24.358345],[104.20921,24.375775],[104.22785,24.39369],[104.196812,24.437736],[104.176784,24.455155],[104.143492,24.44669],[104.134996,24.455562],[104.056967,24.421211],[104.010324,24.44905],[103.988996,24.43505],[103.968275,24.440666],[103.945907,24.429921],[103.906459,24.379602],[103.863717,24.359567],[103.840308,24.312805],[103.818634,24.301316],[103.81872,24.271243],[103.810397,24.257386],[103.786122,24.24744],[103.785515,24.219149],[103.773551,24.203899],[103.728554,24.198272],[103.697083,24.20496],[103.692574,24.186202],[103.670987,24.186854],[103.639168,24.172091],[103.62495,24.137418],[103.59053,24.115794],[103.574925,24.086248],[103.581514,24.048532],[103.622175,24.009497],[103.640902,23.984093],[103.634573,23.970287],[103.65434,23.962198],[103.678876,23.939319],[103.695262,23.942669],[103.701244,23.929185],[103.688326,23.920113],[103.707833,23.889378],[103.660756,23.865995],[103.665004,23.849968],[103.652433,23.825106],[103.644544,23.763748],[103.630759,23.747872],[103.650699,23.714395],[103.648878,23.673949],[103.662577,23.653066],[103.649312,23.628903],[103.614199,23.584006],[103.587149,23.577041],[103.595646,23.539995],[103.622349,23.523026],[103.632666,23.507449],[103.65356,23.505891],[103.67983,23.526388],[103.694568,23.518271],[103.70662,23.541963],[103.724826,23.550323],[103.737918,23.538602],[103.719971,23.521551],[103.73497,23.510647],[103.731849,23.494248],[103.767829,23.500726],[103.80034,23.491296],[103.788549,23.473583],[103.806756,23.470712],[103.798867,23.44586],[103.819501,23.428468],[103.803548,23.405495],[103.815773,23.370946],[103.808317,23.35806],[103.815686,23.338358],[103.830251,23.351329],[103.856261,23.332283],[103.882877,23.32711],[103.913568,23.304695],[103.936717,23.253115],[103.912615,23.232084],[103.908713,23.199462],[103.938104,23.152446],[103.937584,23.099739],[103.946427,23.089458],[103.934549,23.041581],[103.958045,23.00595],[103.947901,22.95335],[103.937064,22.952033],[103.907673,22.916049],[103.917643,22.893234],[103.917036,22.838119],[103.907066,22.818341],[103.885998,22.818835],[103.897009,22.798972],[103.89094,22.782816],[103.905245,22.738211],[103.889033,22.722872],[103.896836,22.699201],[103.923452,22.688148],[103.934809,22.707284],[103.96342,22.699861],[103.989863,22.709099],[104.001914,22.726666],[104.00148,22.749013],[104.013532,22.746457],[104.039454,22.796994],[104.022722,22.821885],[104.043442,22.839602],[104.048037,22.827077],[104.067458,22.823451],[104.080203,22.836388],[104.100056,22.87503],[104.118697,22.894635],[104.137077,22.898918],[104.157017,22.861354],[104.179299,22.872888],[104.175917,22.847348],[104.190223,22.844134],[104.21814,22.871076],[104.240161,22.864897],[104.257934,22.87297],[104.276227,22.863167],[104.282556,22.842074],[104.274233,22.827901],[104.256634,22.773913],[104.272066,22.738541],[104.299983,22.72848],[104.322524,22.728975],[104.340818,22.719326],[104.344546,22.704563],[104.376017,22.690127],[104.402894,22.702336],[104.422748,22.734995],[104.456733,22.747777],[104.501556,22.776633],[104.525919,22.802764],[104.527826,22.81422],[104.559384,22.828313],[104.579498,22.846359],[104.595451,22.846276],[104.614871,22.813149],[104.620333,22.834988],[104.657787,22.830867],[104.674173,22.817187],[104.737723,22.826005],[104.732781,22.852126],[104.760958,22.862508],[104.772662,22.893482],[104.846269,22.926342],[104.861614,22.940012],[104.860314,22.970968],[104.837426,22.994345],[104.82078,23.032201],[104.816965,23.072925],[104.807861,23.080657],[104.80448,23.110019],[104.856413,23.123423],[104.874272,23.123423],[104.886584,23.168805],[104.912593,23.175792],[104.920483,23.164037],[104.948833,23.152199],[104.958803,23.188613],[104.973715,23.197407],[104.997297,23.196092],[105.003626,23.213021],[105.036138,23.224607],[105.055212,23.245229],[105.093186,23.261084],[105.108184,23.245886],[105.122143,23.247694],[105.182051,23.278907],[105.238145,23.264287],[105.244214,23.289256],[105.26008,23.317915],[105.261294,23.338112],[105.279414,23.339425],[105.325537,23.390068],[105.349379,23.368812],[105.355188,23.341888],[105.373134,23.317668],[105.393509,23.308308],[105.41579,23.283753],[105.439632,23.296565],[105.459919,23.259441],[105.475785,23.249501],[105.4972,23.220745],[105.501968,23.202749],[105.54263,23.184257],[105.546358,23.200119],[105.526417,23.234549],[105.531792,23.248186],[105.560316,23.257305],[105.56968,23.282439],[105.593261,23.312578],[105.666955,23.346814],[105.671637,23.326454],[105.700594,23.328424],[105.674151,23.348373],[105.694265,23.363313],[105.668862,23.387935],[105.647535,23.39811],[105.671897,23.408613],[105.6999,23.401393],[105.738048,23.430683],[105.758682,23.459558],[105.806193,23.467432],[105.813822,23.502202],[105.852403,23.526962],[105.892024,23.52483],[105.912918,23.499332],[105.935807,23.508925],[105.959909,23.494166],[105.986265,23.489574],[105.997362,23.474075],[105.991814,23.448321],[106.01054,23.455867],[106.03603,23.482686],[106.072183,23.495642],[106.086228,23.524174],[106.107296,23.533684],[106.120561,23.559257],[106.141455,23.569665],[106.124896,23.585891],[106.120734,23.605392],[106.137293,23.632098],[106.149518,23.665432],[106.157321,23.724136],[106.14501,23.744271],[106.13686,23.795412],[106.155673,23.813818],[106.19226,23.824779],[106.17284,23.861662],[106.192087,23.862398],[106.192434,23.878914],[106.1555,23.893956],[106.139114,23.921012],[106.127757,23.956887],[106.090216,23.99896],[106.096545,24.017909],[106.075477,24.028444],[106.054323,24.049838],[106.052502,24.084208],[106.024239,24.103307],[106.011841,24.099471],[105.998316,24.124199],[105.96381,24.11106],[105.933292,24.123791],[105.910144,24.114896],[105.902168,24.099308],[105.90789,24.069514],[105.892284,24.040285],[105.859252,24.056778],[105.841479,24.030812],[105.796482,24.023707],[105.789373,24.039468],[105.801944,24.052206],[105.790413,24.069841],[105.765358,24.073759],[105.739348,24.059472],[105.700247,24.065595],[105.675365,24.03808],[105.649442,24.033099],[105.643373,24.063718],[105.628201,24.10347],[105.628461,24.126565],[105.595256,24.137826],[105.545664,24.123628],[105.517747,24.096696],[105.518094,24.075881],[105.504743,24.044367],[105.509251,24.024851],[105.494772,24.017909],[105.461047,24.029587],[105.413016,24.038978],[105.396803,24.064616],[105.345911,24.086167],[105.318948,24.117181],[105.293545,24.113182],[105.273171,24.09286],[105.293025,24.07482],[105.260167,24.061268],[105.234937,24.074984],[105.200605,24.105348],[105.181878,24.132849],[105.182832,24.167033],[105.229562,24.165728],[105.243087,24.206754],[105.23277,24.219312],[105.215257,24.214908],[105.201298,24.248174],[105.179884,24.252413],[105.168353,24.277682],[105.171648,24.299605],[105.19679,24.326982],[105.18786,24.347104],[105.144598,24.375612],[105.116768,24.37154],[105.102896,24.38229],[105.108965,24.412336],[105.054605,24.439283],[105.019405,24.438713],[104.979958,24.412906],[104.929846,24.410871],[104.913894,24.426258],[104.836645,24.44669],[104.784973,24.443841],[104.768154,24.459305],[104.752808,24.455236],[104.752895,24.435945],[104.717262,24.442783],[104.703737,24.421373],[104.721076,24.340017],[104.708939,24.321279],[104.683709,24.330648],[104.660821,24.355657],[104.61097,24.377159],[104.62987,24.397843],[104.616345,24.42178],[104.578024,24.420152],[104.567014,24.472652]]]]}},{"type":"Feature","properties":{"adcode":532800,"name":"西双版纳傣族自治州","center":[100.797941,22.001724],"centroid":[100.94391,21.930146],"childrenNum":3,"level":"city","parent":{"adcode":530000},"subFeatureIndex":11,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.647968,22.33165],[101.60618,22.339755],[101.551906,22.3295],[101.563177,22.37126],[101.532226,22.380851],[101.509858,22.404412],[101.50613,22.436233],[101.493038,22.451934],[101.48879,22.479283],[101.468763,22.529588],[101.453851,22.547178],[101.445874,22.584333],[101.402005,22.576242],[101.36932,22.55973],[101.349553,22.558986],[101.308197,22.53347],[101.254791,22.543628],[101.206067,22.535039],[101.176069,22.552298],[101.124831,22.545444],[101.097,22.550399],[101.028162,22.590194],[101.006314,22.573023],[100.993569,22.58392],[100.996604,22.557913],[100.959844,22.555188],[100.923257,22.528763],[100.901756,22.525955],[100.882162,22.538508],[100.879301,22.558656],[100.859013,22.585571],[100.845489,22.583177],[100.809942,22.594487],[100.81185,22.57971],[100.758097,22.571124],[100.723244,22.523312],[100.696628,22.51786],[100.659,22.519512],[100.658047,22.497706],[100.62224,22.489858],[100.611056,22.467717],[100.617299,22.454744],[100.592763,22.441853],[100.578891,22.458793],[100.529387,22.462098],[100.470258,22.452761],[100.448237,22.437721],[100.44659,22.426068],[100.414251,22.43739],[100.401073,22.409454],[100.382606,22.402015],[100.390409,22.372335],[100.389716,22.329252],[100.378011,22.300384],[100.371422,22.261664],[100.346106,22.243127],[100.276227,22.272007],[100.264176,22.287644],[100.203921,22.292525],[100.195425,22.276227],[100.201494,22.255623],[100.183547,22.254134],[100.174097,22.2399],[100.143319,22.232037],[100.10838,22.24652],[100.093121,22.241721],[100.066851,22.16018],[100.04613,22.130366],[100.014919,22.111233],[99.997319,22.112806],[99.989169,22.077266],[99.972437,22.052987],[99.958912,22.037241],[99.965761,22.014199],[99.992724,21.986427],[99.998099,21.968186],[99.981193,21.934932],[99.98154,21.91826],[99.959952,21.907145],[99.964114,21.885575],[99.946167,21.861595],[99.944173,21.821344],[99.959085,21.79561],[99.983621,21.716387],[99.991684,21.703595],[100.033559,21.69213],[100.030698,21.674433],[100.046043,21.669614],[100.097542,21.704509],[100.118957,21.703512],[100.147567,21.687395],[100.169155,21.664047],[100.169935,21.646014],[100.153549,21.647344],[100.135169,21.616591],[100.111414,21.599467],[100.108553,21.583754],[100.122771,21.567125],[100.12017,21.543092],[100.126933,21.508242],[100.168722,21.483035],[100.180252,21.514314],[100.206435,21.509323],[100.229757,21.471969],[100.247357,21.463731],[100.280909,21.482619],[100.292787,21.477044],[100.316542,21.489191],[100.350961,21.529369],[100.389802,21.52363],[100.423181,21.540514],[100.43714,21.532946],[100.464363,21.478625],[100.48283,21.459238],[100.526612,21.471137],[100.557997,21.450583],[100.578891,21.451915],[100.644348,21.482452],[100.669838,21.487361],[100.691859,21.510904],[100.730613,21.518723],[100.753588,21.555317],[100.783673,21.567374],[100.804654,21.609941],[100.834391,21.633714],[100.844882,21.634296],[100.871411,21.672605],[100.887364,21.685068],[100.914154,21.682161],[100.940943,21.697115],[100.967993,21.695537],[101.014984,21.707084],[101.019579,21.720125],[101.090325,21.773774],[101.123357,21.771864],[101.111479,21.748613],[101.120409,21.70833],[101.117201,21.692546],[101.136188,21.671442],[101.15162,21.67003],[101.16081,21.643853],[101.166012,21.588909],[101.149453,21.587246],[101.145205,21.561304],[101.179624,21.555068],[101.208928,21.557313],[101.210315,21.508991],[101.225487,21.50192],[101.192889,21.474215],[101.195056,21.425116],[101.185953,21.415711],[101.142864,21.409135],[101.183699,21.334698],[101.249676,21.296882],[101.246642,21.275721],[101.228782,21.25589],[101.222193,21.23439],[101.290251,21.178291],[101.340969,21.196965],[101.387613,21.225972],[101.445961,21.227473],[101.476479,21.24164],[101.532659,21.25239],[101.601585,21.23314],[101.600631,21.212636],[101.588666,21.19163],[101.605659,21.172288],[101.637651,21.19188],[101.672504,21.194965],[101.696606,21.168786],[101.702848,21.146106],[101.740735,21.141769],[101.764664,21.147857],[101.78105,21.172038],[101.795095,21.208302],[101.83541,21.208052],[101.833676,21.252474],[101.803765,21.26464],[101.791627,21.285802],[101.766571,21.286302],[101.745677,21.297299],[101.730332,21.336947],[101.739955,21.40081],[101.750099,21.409301],[101.741082,21.482868],[101.772467,21.513233],[101.75478,21.542261],[101.758855,21.562801],[101.745504,21.570368],[101.755127,21.584918],[101.789113,21.572613],[101.804805,21.577685],[101.828474,21.61709],[101.807666,21.644186],[101.779923,21.640861],[101.771166,21.660391],[101.767612,21.716221],[101.747324,21.73001],[101.759636,21.766633],[101.760589,21.791625],[101.777062,21.826905],[101.740215,21.845413],[101.735013,21.875784],[101.714292,21.881924],[101.700334,21.897024],[101.703975,21.929043],[101.687763,21.942645],[101.662447,21.935761],[101.654384,21.946543],[101.60644,21.967855],[101.626207,22.006158],[101.616583,22.034175],[101.587279,22.078177],[101.573928,22.115126],[101.602972,22.132023],[101.596469,22.161091],[101.547658,22.231127],[101.564304,22.269607],[101.604446,22.270683],[101.625513,22.282597],[101.635484,22.314777],[101.647968,22.33165]]]]}},{"type":"Feature","properties":{"adcode":532900,"name":"大理白族自治州","center":[100.225668,25.589449],"centroid":[100.039806,25.7274],"childrenNum":12,"level":"city","parent":{"adcode":530000},"subFeatureIndex":12,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.888014,25.634791],[98.915064,25.627294],[98.954165,25.638499],[99.010952,25.629067],[99.002543,25.561171],[99.056296,25.564478],[99.07875,25.522609],[99.066353,25.496867],[99.088461,25.466923],[99.1234,25.475156],[99.161287,25.498159],[99.154871,25.520269],[99.188684,25.514459],[99.217988,25.539229],[99.252407,25.54649],[99.291942,25.52043],[99.329915,25.514137],[99.325927,25.496141],[99.353064,25.459657],[99.341099,25.438263],[99.345261,25.412341],[99.335377,25.407415],[99.285786,25.423809],[99.29567,25.375105],[99.285179,25.365492],[99.305033,25.345454],[99.314743,25.323958],[99.343527,25.287179],[99.358959,25.287988],[99.38809,25.235995],[99.429965,25.197976],[99.462304,25.157032],[99.506346,25.118908],[99.54328,25.131294],[99.554464,25.117451],[99.628071,25.093162],[99.655207,25.067653],[99.678096,25.066276],[99.693615,25.05113],[99.737658,25.060607],[99.734536,25.07316],[99.75491,25.085145],[99.825223,25.087251],[99.82557,25.109841],[99.859295,25.154766],[99.853486,25.17435],[99.879149,25.190371],[99.895622,25.190371],[99.928567,25.204286],[99.926747,25.186083],[99.940878,25.162212],[99.959432,25.151367],[99.978505,25.118504],[99.981193,25.098425],[99.994545,25.107169],[100.021681,25.108222],[100.038847,25.099397],[100.029224,25.084821],[100.04665,25.052669],[100.014919,25.035739],[99.993764,25.032741],[100.014745,25.016538],[100.025409,24.953648],[100.060695,24.947325],[100.075174,24.978208],[100.101184,24.988258],[100.146007,24.980315],[100.182593,24.983962],[100.185368,24.973831],[100.210077,24.96678],[100.198372,24.909054],[100.179472,24.877667],[100.180513,24.861524],[100.150948,24.818115],[100.152942,24.79263],[100.135429,24.762918],[100.131441,24.733524],[100.094768,24.712002],[100.098409,24.667077],[100.126673,24.663421],[100.137597,24.705097],[100.170716,24.722235],[100.190049,24.738965],[100.238254,24.741888],[100.294521,24.757478],[100.321484,24.758046],[100.33839,24.745867],[100.350875,24.750495],[100.369948,24.726621],[100.385814,24.72857],[100.408182,24.707291],[100.42006,24.708346],[100.442081,24.732549],[100.512914,24.736204],[100.514995,24.719799],[100.531034,24.70989],[100.565366,24.703879],[100.623974,24.745542],[100.631257,24.786298],[100.643742,24.82201],[100.689865,24.80797],[100.695847,24.795877],[100.739023,24.784269],[100.747433,24.784188],[100.743271,24.81357],[100.762692,24.816329],[100.75905,24.831748],[100.743271,24.837103],[100.736942,24.867771],[100.760958,24.895511],[100.758097,24.933785],[100.743531,24.933704],[100.738329,24.955107],[100.720556,24.973669],[100.742404,24.990608],[100.780291,25.005113],[100.746913,25.046432],[100.772489,25.061416],[100.750727,25.102554],[100.759137,25.127246],[100.750901,25.148292],[100.775176,25.181552],[100.779251,25.201536],[100.801619,25.202021],[100.819826,25.192636],[100.817918,25.227987],[100.830403,25.232759],[100.818525,25.271252],[100.828929,25.276669],[100.848176,25.261792],[100.888404,25.254029],[100.907565,25.241009],[100.933921,25.242546],[100.944065,25.259366],[100.981085,25.250552],[100.988107,25.266563],[100.960971,25.301569],[100.974236,25.306095],[100.969467,25.324766],[100.992789,25.331554],[100.995997,25.344969],[101.034924,25.348363],[101.027035,25.37042],[101.035618,25.403296],[101.017325,25.413149],[100.980998,25.412261],[100.979351,25.424455],[100.952388,25.440523],[100.957763,25.459657],[100.941464,25.473623],[100.947793,25.525836],[100.957156,25.560041],[101.002066,25.562058],[101.001459,25.587866],[100.9875,25.656312],[100.948139,25.657359],[100.956289,25.67662],[100.933401,25.699826],[100.965566,25.728504],[100.973455,25.745095],[100.934788,25.741632],[100.94892,25.766757],[100.924211,25.80194],[100.898635,25.809506],[100.889618,25.822545],[100.934788,25.860125],[100.916494,25.878388],[100.950307,25.898738],[100.962098,25.945942],[100.943978,25.970381],[100.921003,25.967326],[100.904443,25.992564],[100.920049,26.014824],[100.940943,26.029849],[100.937042,26.043185],[100.9145,26.053547],[100.919529,26.151744],[100.909905,26.166912],[100.895253,26.151985],[100.865689,26.15351],[100.851124,26.169159],[100.827975,26.178307],[100.823467,26.197242],[100.788701,26.183923],[100.770668,26.186651],[100.762778,26.168276],[100.74093,26.155757],[100.707031,26.148052],[100.687698,26.127183],[100.647383,26.095229],[100.652758,26.041257],[100.669057,25.998592],[100.624841,26.001003],[100.570308,25.985251],[100.567274,26.009521],[100.528259,26.025269],[100.51985,26.013217],[100.491499,26.015467],[100.48283,26.03957],[100.477107,26.101572],[100.491759,26.112973],[100.469131,26.136414],[100.451271,26.128307],[100.423268,26.143397],[100.416159,26.181837],[100.445549,26.201895],[100.432284,26.212805],[100.41217,26.284335],[100.394657,26.298364],[100.405581,26.314955],[100.427863,26.324732],[100.450664,26.353739],[100.434539,26.352938],[100.452659,26.398196],[100.494447,26.395634],[100.49384,26.413732],[100.463756,26.427905],[100.444769,26.42206],[100.443382,26.441756],[100.426649,26.474815],[100.440607,26.484819],[100.469998,26.484419],[100.443902,26.511065],[100.450838,26.536265],[100.416332,26.534825],[100.405235,26.56202],[100.363966,26.563939],[100.369948,26.586969],[100.357897,26.612232],[100.339257,26.598402],[100.345586,26.624142],[100.308132,26.624302],[100.296602,26.632615],[100.296602,26.652354],[100.242849,26.641486],[100.241982,26.695897],[100.198979,26.685912],[100.157277,26.617428],[100.134996,26.604158],[100.110634,26.603199],[100.080723,26.638209],[100.056187,26.643724],[100.053673,26.594964],[100.016219,26.582731],[99.992724,26.595444],[99.946947,26.610234],[99.939838,26.623503],[99.913915,26.641086],[99.894148,26.643724],[99.895275,26.620066],[99.82739,26.620945],[99.78985,26.643963],[99.751009,26.633973],[99.727427,26.619826],[99.703498,26.624142],[99.690927,26.657229],[99.663617,26.675446],[99.64333,26.677124],[99.628158,26.668016],[99.617234,26.623183],[99.594779,26.623743],[99.573798,26.609514],[99.513629,26.58433],[99.490827,26.571056],[99.504612,26.514985],[99.498457,26.476416],[99.520998,26.448641],[99.512242,26.425743],[99.484759,26.40124],[99.48077,26.389146],[99.457709,26.374969],[99.429879,26.343724],[99.386876,26.348371],[99.349336,26.313352],[99.322373,26.319123],[99.301738,26.273192],[99.325494,26.259241],[99.311449,26.240075],[99.293675,26.231494],[99.2707,26.233098],[99.25995,26.223553],[99.201515,26.19652],[99.173772,26.166029],[99.15912,26.160492],[99.174032,26.129109],[99.203336,26.11771],[99.197094,26.107112],[99.134324,26.136494],[99.104413,26.127424],[99.100252,26.151664],[99.047366,26.157523],[99.025951,26.144441],[99.025344,26.131919],[99.006444,26.113455],[98.998121,26.06407],[99.010259,26.033705],[99.002716,26.00494],[99.008785,25.959609],[99.030633,25.957117],[99.056902,25.967809],[99.06826,25.955911],[99.089241,25.914502],[99.094529,25.886754],[99.11525,25.842182],[99.137185,25.784471],[99.099211,25.787852],[99.072075,25.777788],[99.060544,25.798478],[99.067219,25.809587],[99.026298,25.818038],[99.026731,25.791797],[99.017715,25.784954],[99.046585,25.756611],[99.049273,25.739538],[99.027512,25.743565],[99.021529,25.730437],[99.000809,25.725201],[98.963702,25.735994],[98.940033,25.755967],[98.911163,25.759752],[98.907174,25.780365],[98.869201,25.776661],[98.864692,25.756772],[98.889835,25.738491],[98.875876,25.723026],[98.873709,25.6962],[98.888014,25.634791]]]]}},{"type":"Feature","properties":{"adcode":533100,"name":"德宏傣族景颇族自治州","center":[98.578363,24.436694],"centroid":[98.085143,24.557413],"childrenNum":5,"level":"city","parent":{"adcode":530000},"subFeatureIndex":13,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.089436,25.33608],[98.073137,25.329453],[98.070622,25.312885],[98.038978,25.301892],[98.023805,25.308439],[98.004385,25.291707],[98.007246,25.280793],[97.948464,25.219818],[97.914739,25.211324],[97.903988,25.216502],[97.873557,25.259043],[97.839658,25.270605],[97.819891,25.232598],[97.797003,25.157356],[97.777062,25.122227],[97.74533,25.080044],[97.720188,25.080691],[97.727731,25.043759],[97.718541,25.012406],[97.716547,24.978289],[97.731632,24.947163],[97.729725,24.908568],[97.764144,24.878803],[97.784865,24.877018],[97.797696,24.845947],[97.765531,24.824201],[97.710304,24.833939],[97.701374,24.842377],[97.680133,24.827041],[97.651956,24.791088],[97.588666,24.76649],[97.57124,24.76714],[97.547311,24.738883],[97.564304,24.72589],[97.569506,24.675446],[97.567512,24.606286],[97.561357,24.568967],[97.555114,24.493727],[97.529972,24.441887],[97.531879,24.431468],[97.576876,24.441725],[97.58884,24.435782],[97.669816,24.452794],[97.678573,24.438876],[97.677879,24.408835],[97.690971,24.385629],[97.714466,24.374227],[97.715506,24.355494],[97.684121,24.337655],[97.662273,24.339121],[97.665221,24.296345],[97.698427,24.290966],[97.721142,24.295774],[97.749579,24.282735],[97.767525,24.259098],[97.729898,24.227058],[97.728684,24.183592],[97.744463,24.182613],[97.754174,24.164015],[97.73484,24.149493],[97.730592,24.111877],[97.692011,24.093268],[97.675278,24.070739],[97.635744,24.047878],[97.628634,24.004923],[97.572714,23.982868],[97.567859,23.967182],[97.529538,23.942669],[97.528671,23.926325],[97.572194,23.912348],[97.598463,23.894447],[97.633229,23.880712],[97.647014,23.841054],[97.658545,23.865096],[97.663487,23.851931],[97.681,23.860681],[97.684208,23.877033],[97.710998,23.861498],[97.728251,23.89551],[97.763884,23.907199],[97.765878,23.927632],[97.795875,23.952066],[97.810094,23.943405],[97.839311,23.971431],[97.863153,23.978865],[97.896792,23.975679],[97.883441,23.995203],[97.902168,24.014234],[97.938321,24.017337],[97.985138,24.032037],[97.995455,24.046327],[98.056577,24.076779],[98.07383,24.0758],[98.110504,24.092697],[98.197289,24.098329],[98.220177,24.113427],[98.290403,24.101593],[98.32855,24.103226],[98.360368,24.096859],[98.36609,24.111468],[98.461632,24.125913],[98.484,24.122567],[98.551018,24.124689],[98.555439,24.108694],[98.589945,24.091146],[98.59376,24.080534],[98.648207,24.10649],[98.680545,24.099798],[98.709502,24.121261],[98.683233,24.133828],[98.692249,24.164341],[98.689822,24.185875],[98.726235,24.206101],[98.717652,24.238309],[98.703087,24.252169],[98.699705,24.283713],[98.721987,24.330241],[98.713404,24.33961],[98.724848,24.365431],[98.713317,24.390107],[98.689822,24.412988],[98.696151,24.422025],[98.684793,24.444899],[98.726929,24.488276],[98.710976,24.495599],[98.682886,24.538795],[98.697971,24.545058],[98.691122,24.563438],[98.659737,24.564576],[98.616302,24.58092],[98.578935,24.573521],[98.546856,24.553516],[98.523794,24.546766],[98.504547,24.55254],[98.484867,24.541561],[98.475677,24.553354],[98.485994,24.56726],[98.477758,24.586774],[98.461458,24.596693],[98.460591,24.612708],[98.440564,24.634653],[98.414815,24.63636],[98.415422,24.648388],[98.452008,24.674552],[98.439264,24.703067],[98.449581,24.725484],[98.42097,24.762837],[98.432068,24.776963],[98.468308,24.781834],[98.498392,24.809918],[98.546076,24.799529],[98.55596,24.827447],[98.534805,24.859902],[98.533678,24.891699],[98.512004,24.901837],[98.492063,24.890158],[98.464753,24.88886],[98.445333,24.874585],[98.436663,24.900296],[98.362796,24.89762],[98.334185,24.908162],[98.32933,24.945703],[98.317799,24.957701],[98.288409,24.936866],[98.272803,24.936785],[98.251562,24.918136],[98.235783,24.930542],[98.239944,24.947649],[98.221304,24.961997],[98.225032,25.006491],[98.248874,25.04149],[98.254076,25.067248],[98.269595,25.084416],[98.257717,25.105874],[98.234222,25.100287],[98.197896,25.135989],[98.179515,25.140522],[98.167725,25.171761],[98.192347,25.208978],[98.185844,25.222568],[98.192607,25.245133],[98.159488,25.262843],[98.152552,25.279903],[98.125242,25.28249],[98.111024,25.294213],[98.104782,25.323392],[98.089436,25.33608]]]]}},{"type":"Feature","properties":{"adcode":533300,"name":"怒江傈僳族自治州","center":[98.854304,25.850949],"centroid":[98.868904,26.962444],"childrenNum":4,"level":"city","parent":{"adcode":530000},"subFeatureIndex":14,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.64333,26.677124],[99.622782,26.697176],[99.601888,26.703725],[99.599287,26.728564],[99.57137,26.795465],[99.579173,26.830017],[99.564348,26.833847],[99.574145,26.854589],[99.560359,26.858896],[99.55325,26.878915],[99.559059,26.899888],[99.523513,26.908499],[99.497243,26.943257],[99.492908,26.961826],[99.459529,26.96103],[99.444877,26.969716],[99.425804,26.957762],[99.415487,26.972903],[99.390951,26.949394],[99.418088,26.930025],[99.374738,26.908739],[99.357485,26.940307],[99.358959,26.958559],[99.320205,27.031855],[99.297317,27.066972],[99.257349,27.075013],[99.254661,27.066494],[99.272694,27.024766],[99.231253,26.9886],[99.211225,26.982067],[99.179667,26.992106],[99.155218,26.990592],[99.148109,27.002064],[99.116204,26.99824],[99.101119,27.008198],[99.086727,26.995054],[99.045892,26.985413],[99.000202,26.996249],[98.996907,27.027873],[99.01494,27.024527],[99.019882,27.043641],[99.000895,27.038465],[98.981301,27.049216],[98.984769,27.058453],[98.96795,27.081621],[98.979654,27.104546],[98.9774,27.13232],[98.983989,27.162553],[98.965176,27.166928],[98.967256,27.196277],[98.981908,27.204786],[98.990318,27.227288],[98.986677,27.259403],[99.005577,27.278239],[99.007744,27.295005],[98.994826,27.332184],[98.965176,27.327895],[98.939426,27.342271],[98.918445,27.335044],[98.92226,27.364269],[98.902319,27.397456],[98.914284,27.42103],[98.911336,27.466497],[98.891309,27.492118],[98.908215,27.524315],[98.891135,27.563399],[98.879604,27.570612],[98.889228,27.592722],[98.918619,27.631385],[98.889921,27.667263],[98.838596,27.705742],[98.834261,27.724739],[98.86738,27.739459],[98.869981,27.76739],[98.860964,27.796105],[98.846572,27.812793],[98.849607,27.838096],[98.815794,27.831692],[98.798281,27.851141],[98.803483,27.872088],[98.792299,27.879596],[98.785363,27.913496],[98.795073,27.987897],[98.793946,28.025867],[98.780421,28.053567],[98.74843,28.065639],[98.760481,28.071635],[98.752418,28.093565],[98.733604,28.094748],[98.725368,28.12858],[98.704994,28.137411],[98.702653,28.164294],[98.68488,28.1892],[98.696064,28.215518],[98.650201,28.200232],[98.626532,28.165555],[98.58535,28.181319],[98.559514,28.182895],[98.525789,28.170521],[98.507495,28.14427],[98.464406,28.151129],[98.459031,28.131655],[98.428773,28.104528],[98.400076,28.104686],[98.389325,28.114623],[98.390192,28.164373],[98.370252,28.183841],[98.377795,28.207796],[98.377448,28.245925],[98.353346,28.292937],[98.338867,28.296007],[98.318146,28.324582],[98.321961,28.346774],[98.304014,28.359128],[98.300113,28.385955],[98.281213,28.393978],[98.27341,28.380763],[98.234916,28.370064],[98.229974,28.347247],[98.209773,28.358577],[98.207432,28.330406],[98.236736,28.309312],[98.244539,28.27845],[98.265,28.239939],[98.228413,28.225681],[98.217056,28.212839],[98.20119,28.219693],[98.169025,28.204329],[98.174574,28.163584],[98.150038,28.155465],[98.140068,28.141669],[98.149084,28.112572],[98.160529,28.09948],[98.151078,28.05696],[98.139374,28.04323],[98.144576,28.017895],[98.132438,27.98316],[98.140588,27.951888],[98.15498,27.938697],[98.188099,27.939013],[98.205178,27.889633],[98.197029,27.872246],[98.181596,27.872562],[98.169372,27.850903],[98.176221,27.83264],[98.20882,27.813267],[98.222691,27.812476],[98.217056,27.775222],[98.224339,27.751645],[98.245666,27.735027],[98.223905,27.725055],[98.221217,27.710808],[98.234222,27.690621],[98.263786,27.671698],[98.266907,27.657998],[98.28416,27.653246],[98.288409,27.632574],[98.310343,27.583609],[98.306442,27.553887],[98.317452,27.519558],[98.33748,27.508932],[98.372506,27.507663],[98.390366,27.516862],[98.40181,27.540172],[98.429207,27.548814],[98.43805,27.622988],[98.429987,27.653721],[98.444119,27.665205],[98.474723,27.634475],[98.505241,27.632732],[98.507495,27.624573],[98.535325,27.62077],[98.537493,27.635505],[98.556566,27.645801],[98.586737,27.584956],[98.644825,27.564429],[98.664593,27.5867],[98.685834,27.563557],[98.70378,27.560942],[98.698231,27.535336],[98.705081,27.517417],[98.684967,27.486646],[98.704127,27.46372],[98.690429,27.447376],[98.687047,27.425236],[98.702653,27.412617],[98.706728,27.362125],[98.732737,27.351484],[98.7408,27.330278],[98.734992,27.287218],[98.715484,27.257496],[98.731177,27.245175],[98.717132,27.23182],[98.722767,27.22053],[98.695891,27.209955],[98.713924,27.13964],[98.712623,27.075809],[98.740714,27.071669],[98.765596,27.050968],[98.762648,27.018235],[98.732911,27.00302],[98.742448,26.987007],[98.736205,26.968361],[98.751811,26.918385],[98.757273,26.881547],[98.73083,26.851318],[98.762128,26.798657],[98.756926,26.745812],[98.743835,26.711633],[98.747389,26.695658],[98.770711,26.689747],[98.762388,26.661624],[98.781462,26.620705],[98.781115,26.60104],[98.768197,26.570417],[98.753545,26.5593],[98.755712,26.499383],[98.746262,26.444478],[98.749557,26.425183],[98.742794,26.385061],[98.729963,26.377372],[98.733084,26.349413],[98.707595,26.32321],[98.683666,26.307261],[98.672916,26.239995],[98.713317,26.231093],[98.735512,26.183362],[98.730917,26.164665],[98.708809,26.146848],[98.720426,26.128066],[98.701439,26.110404],[98.662165,26.087199],[98.66702,26.116024],[98.654709,26.140748],[98.627659,26.144521],[98.604424,26.128708],[98.590292,26.139464],[98.575293,26.11787],[98.601216,26.057323],[98.601303,26.027921],[98.614394,25.968773],[98.637369,25.971587],[98.661125,25.955349],[98.686614,25.925841],[98.703087,25.893269],[98.706208,25.856344],[98.728749,25.833893],[98.712277,25.807897],[98.720946,25.782377],[98.744268,25.771025],[98.737072,25.740505],[98.754672,25.719321],[98.746869,25.703854],[98.767937,25.682583],[98.75762,25.659213],[98.766463,25.630438],[98.752851,25.581657],[98.766897,25.555524],[98.794207,25.550281],[98.82091,25.558832],[98.870328,25.550684],[98.887754,25.609879],[98.869027,25.632372],[98.888014,25.634791],[98.873709,25.6962],[98.875876,25.723026],[98.889835,25.738491],[98.864692,25.756772],[98.869201,25.776661],[98.907174,25.780365],[98.911163,25.759752],[98.940033,25.755967],[98.963702,25.735994],[99.000809,25.725201],[99.021529,25.730437],[99.027512,25.743565],[99.049273,25.739538],[99.046585,25.756611],[99.017715,25.784954],[99.026731,25.791797],[99.026298,25.818038],[99.067219,25.809587],[99.060544,25.798478],[99.072075,25.777788],[99.099211,25.787852],[99.137185,25.784471],[99.11525,25.842182],[99.094529,25.886754],[99.089241,25.914502],[99.06826,25.955911],[99.056902,25.967809],[99.030633,25.957117],[99.008785,25.959609],[99.002716,26.00494],[99.010259,26.033705],[98.998121,26.06407],[99.006444,26.113455],[99.025344,26.131919],[99.025951,26.144441],[99.047366,26.157523],[99.100252,26.151664],[99.104413,26.127424],[99.134324,26.136494],[99.197094,26.107112],[99.203336,26.11771],[99.174032,26.129109],[99.15912,26.160492],[99.173772,26.166029],[99.201515,26.19652],[99.25995,26.223553],[99.2707,26.233098],[99.293675,26.231494],[99.311449,26.240075],[99.325494,26.259241],[99.301738,26.273192],[99.322373,26.319123],[99.349336,26.313352],[99.386876,26.348371],[99.429879,26.343724],[99.457709,26.374969],[99.48077,26.389146],[99.484759,26.40124],[99.512242,26.425743],[99.520998,26.448641],[99.498457,26.476416],[99.504612,26.514985],[99.490827,26.571056],[99.513629,26.58433],[99.573798,26.609514],[99.594779,26.623743],[99.617234,26.623183],[99.628158,26.668016],[99.64333,26.677124]]]]}},{"type":"Feature","properties":{"adcode":533400,"name":"迪庆藏族自治州","center":[99.706463,27.826853],"centroid":[99.440026,27.956929],"childrenNum":3,"level":"city","parent":{"adcode":530000},"subFeatureIndex":15,"acroutes":[100000,530000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.299463,27.736135],[100.307092,27.748638],[100.302844,27.792388],[100.286024,27.805912],[100.308566,27.830426],[100.309173,27.859125],[100.294868,27.869559],[100.257847,27.864974],[100.21051,27.877225],[100.169935,27.90765],[100.196205,27.937354],[100.137163,27.996818],[100.120951,28.018685],[100.086445,28.030603],[100.078035,28.04173],[100.056534,28.097903],[100.039714,28.13063],[100.021161,28.147424],[100.033299,28.184629],[100.050292,28.181791],[100.06399,28.193691],[100.091994,28.182343],[100.10968,28.203541],[100.153289,28.208269],[100.168201,28.220717],[100.16352,28.233479],[100.188402,28.252777],[100.147567,28.288764],[100.168722,28.296322],[100.172623,28.321118],[100.13647,28.350079],[100.065551,28.370221],[100.054193,28.376594],[100.060956,28.405854],[100.074654,28.424334],[100.060956,28.447686],[100.045263,28.446192],[100.000874,28.464901],[99.982407,28.503252],[99.987002,28.524464],[99.96446,28.539625],[99.961599,28.561537],[99.918684,28.599068],[99.88045,28.607703],[99.873254,28.631798],[99.8345,28.628031],[99.841696,28.65322],[99.794445,28.69911],[99.756471,28.700365],[99.733149,28.7195],[99.736444,28.73471],[99.722745,28.755955],[99.723612,28.810731],[99.717804,28.846293],[99.678356,28.810261],[99.625557,28.814648],[99.622522,28.795297],[99.605789,28.771552],[99.615846,28.742158],[99.601108,28.7264],[99.55377,28.710403],[99.531662,28.679972],[99.542586,28.670638],[99.540766,28.623558],[99.518224,28.613825],[99.496723,28.616259],[99.49707,28.602836],[99.466032,28.579755],[99.463431,28.549207],[99.426757,28.555333],[99.402915,28.545751],[99.394592,28.52415],[99.402829,28.514173],[99.395633,28.493115],[99.414013,28.476769],[99.426497,28.45256],[99.404476,28.444226],[99.417827,28.416707],[99.431526,28.415684],[99.437335,28.39854],[99.420862,28.368805],[99.40699,28.35779],[99.408984,28.331744],[99.393118,28.317734],[99.413839,28.29278],[99.417654,28.266717],[99.40569,28.262307],[99.388003,28.21536],[99.38835,28.183368],[99.402395,28.150735],[99.375952,28.180846],[99.361127,28.181082],[99.332516,28.216621],[99.30668,28.227571],[99.299571,28.259078],[99.281538,28.259944],[99.289514,28.286087],[99.280584,28.298054],[99.238449,28.317026],[99.230819,28.348978],[99.200908,28.3644],[99.202382,28.374548],[99.174465,28.403416],[99.165449,28.424492],[99.18721,28.439902],[99.183395,28.472761],[99.191632,28.49673],[99.172124,28.545123],[99.17013,28.565228],[99.183742,28.588941],[99.166142,28.595849],[99.172731,28.613825],[99.164408,28.632897],[99.147329,28.641058],[99.142474,28.676599],[99.126955,28.699503],[99.13389,28.734789],[99.114557,28.762931],[99.117851,28.779311],[99.104326,28.814257],[99.104066,28.841907],[99.123573,28.890141],[99.131723,28.949463],[99.122967,28.998351],[99.127388,29.018916],[99.118632,29.033771],[99.11395,29.072538],[99.117938,29.102386],[99.108748,29.138706],[99.115077,29.154559],[99.1058,29.166895],[99.119152,29.198901],[99.113776,29.221376],[99.093489,29.223327],[99.074676,29.210607],[99.037569,29.20772],[99.024217,29.188676],[98.976446,29.20452],[98.974106,29.181572],[98.961101,29.16955],[98.96743,29.128319],[98.991272,29.105901],[99.006531,29.07793],[99.015374,29.042448],[98.959974,29.003825],[98.952691,28.987168],[98.926075,28.978486],[98.917492,28.915815],[98.917318,28.887949],[98.973759,28.864931],[98.965262,28.851462],[98.972198,28.834467],[98.922607,28.823266],[98.922173,28.806814],[98.896511,28.799606],[98.875269,28.808146],[98.851948,28.798587],[98.828019,28.821621],[98.829059,28.845902],[98.817875,28.896012],[98.821516,28.920981],[98.810939,28.929589],[98.815448,28.948916],[98.785623,28.987637],[98.78571,28.99882],[98.76603,29.005858],[98.722074,28.98138],[98.707422,28.965345],[98.655836,28.976843],[98.63078,28.972854],[98.633641,28.940466],[98.656963,28.927085],[98.643872,28.893742],[98.653495,28.857492],[98.668234,28.843552],[98.652281,28.815902],[98.663812,28.785893],[98.678984,28.771631],[98.681672,28.730869],[98.666673,28.712285],[98.637889,28.700444],[98.634248,28.68915],[98.59428,28.682796],[98.594194,28.669539],[98.62081,28.620026],[98.613701,28.611785],[98.631994,28.566642],[98.633381,28.531377],[98.620116,28.511502],[98.62974,28.487143],[98.673869,28.478734],[98.692769,28.431804],[98.706815,28.412853],[98.705167,28.39327],[98.734211,28.368569],[98.753632,28.336938],[98.746696,28.321276],[98.719126,28.310335],[98.710196,28.288843],[98.712363,28.229462],[98.696064,28.215518],[98.68488,28.1892],[98.702653,28.164294],[98.704994,28.137411],[98.725368,28.12858],[98.733604,28.094748],[98.752418,28.093565],[98.760481,28.071635],[98.74843,28.065639],[98.780421,28.053567],[98.793946,28.025867],[98.795073,27.987897],[98.785363,27.913496],[98.792299,27.879596],[98.803483,27.872088],[98.798281,27.851141],[98.815794,27.831692],[98.849607,27.838096],[98.846572,27.812793],[98.860964,27.796105],[98.869981,27.76739],[98.86738,27.739459],[98.834261,27.724739],[98.838596,27.705742],[98.889921,27.667263],[98.918619,27.631385],[98.889228,27.592722],[98.879604,27.570612],[98.891135,27.563399],[98.908215,27.524315],[98.891309,27.492118],[98.911336,27.466497],[98.914284,27.42103],[98.902319,27.397456],[98.92226,27.364269],[98.918445,27.335044],[98.939426,27.342271],[98.965176,27.327895],[98.994826,27.332184],[99.007744,27.295005],[99.005577,27.278239],[98.986677,27.259403],[98.990318,27.227288],[98.981908,27.204786],[98.967256,27.196277],[98.965176,27.166928],[98.983989,27.162553],[98.9774,27.13232],[98.979654,27.104546],[98.96795,27.081621],[98.984769,27.058453],[98.981301,27.049216],[99.000895,27.038465],[99.019882,27.043641],[99.01494,27.024527],[98.996907,27.027873],[99.000202,26.996249],[99.045892,26.985413],[99.086727,26.995054],[99.101119,27.008198],[99.116204,26.99824],[99.148109,27.002064],[99.155218,26.990592],[99.179667,26.992106],[99.211225,26.982067],[99.231253,26.9886],[99.272694,27.024766],[99.254661,27.066494],[99.257349,27.075013],[99.297317,27.066972],[99.320205,27.031855],[99.358959,26.958559],[99.357485,26.940307],[99.374738,26.908739],[99.418088,26.930025],[99.390951,26.949394],[99.415487,26.972903],[99.425804,26.957762],[99.444877,26.969716],[99.459529,26.96103],[99.492908,26.961826],[99.48918,26.985572],[99.477389,26.995452],[99.470193,27.020784],[99.440369,27.040137],[99.428145,27.075809],[99.433173,27.096427],[99.424677,27.114653],[99.441583,27.112027],[99.43456,27.148949],[99.418261,27.154518],[99.408031,27.175917],[99.411759,27.191187],[99.383408,27.213692],[99.417914,27.22856],[99.397627,27.283086],[99.42563,27.331311],[99.440976,27.346878],[99.417827,27.37348],[99.417481,27.408331],[99.404476,27.428649],[99.41696,27.444996],[99.410978,27.475541],[99.439849,27.486328],[99.485365,27.49315],[99.498023,27.507901],[99.502358,27.542789],[99.551256,27.563716],[99.550476,27.540807],[99.567989,27.52598],[99.559839,27.496957],[99.567902,27.472526],[99.586109,27.453168],[99.606656,27.448566],[99.595472,27.424919],[99.609171,27.414919],[99.616193,27.391105],[99.639515,27.378164],[99.658502,27.347831],[99.640642,27.322176],[99.662317,27.302077],[99.660149,27.289364],[99.698123,27.265205],[99.703932,27.249786],[99.719451,27.247321],[99.743293,27.212897],[99.77173,27.20415],[99.796699,27.182677],[99.79878,27.166451],[99.822362,27.152131],[99.84603,27.127147],[99.857995,27.092765],[99.896142,27.074934],[99.899957,27.051286],[99.918077,27.038624],[99.928047,27.014571],[99.948855,26.996408],[99.949201,26.983023],[99.965847,26.961348],[99.951802,26.955132],[99.959865,26.922372],[99.953103,26.904274],[99.96472,26.892153],[99.960819,26.873652],[99.974084,26.867191],[100.034166,26.900845],[100.049078,26.931459],[100.060349,26.937119],[100.057054,26.960233],[100.077255,27.018474],[100.067891,27.034164],[100.078729,27.046747],[100.05558,27.110435],[100.062603,27.157302],[100.104218,27.174883],[100.149648,27.236351],[100.172189,27.255191],[100.206002,27.299216],[100.233659,27.304698],[100.239554,27.316059],[100.233138,27.352675],[100.206002,27.393566],[100.213024,27.404441],[100.194037,27.449915],[100.177218,27.471495],[100.188749,27.50235],[100.223775,27.544691],[100.24597,27.561338],[100.240681,27.591375],[100.26591,27.60025],[100.258281,27.618869],[100.296168,27.664017],[100.2927,27.681754],[100.278742,27.689038],[100.293567,27.710412],[100.299463,27.736135]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/540000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/540000.json new file mode 100644 index 0000000..1a16c94 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/540000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":540100,"name":"拉萨市","center":[91.132212,29.660361],"centroid":[91.091762,30.037072],"childrenNum":8,"level":"city","parent":{"adcode":540000},"subFeatureIndex":0,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[90.349226,29.307363],[90.377614,29.292533],[90.413254,29.260296],[90.424029,29.244471],[90.443921,29.237942],[90.477903,29.251592],[90.522039,29.247933],[90.564516,29.259604],[90.590625,29.274636],[90.609895,29.268406],[90.63476,29.293226],[90.651337,29.297576],[90.658175,29.314481],[90.708734,29.337905],[90.745824,29.336423],[90.762815,29.32476],[90.893772,29.346207],[90.929826,29.358756],[90.939979,29.373576],[90.98225,29.379405],[91.037989,29.412394],[91.058503,29.415752],[91.056016,29.435698],[91.077359,29.432834],[91.107611,29.463339],[91.133305,29.46482],[91.155684,29.481894],[91.170603,29.505675],[91.217018,29.527182],[91.223234,29.519684],[91.287469,29.527083],[91.312541,29.52077],[91.341136,29.50015],[91.35419,29.502616],[91.377812,29.489493],[91.404956,29.489789],[91.428785,29.513666],[91.459659,29.522742],[91.524309,29.555488],[91.547723,29.575407],[91.572174,29.56604],[91.596417,29.575012],[91.633093,29.575505],[91.625012,29.54464],[91.63185,29.528365],[91.648634,29.524913],[91.660859,29.541582],[91.681788,29.536848],[91.692148,29.519783],[91.726959,29.524518],[91.731932,29.543161],[91.76032,29.53961],[91.786843,29.55539],[91.802798,29.549571],[91.814194,29.573336],[91.842582,29.58221],[91.893555,29.576984],[91.911997,29.562687],[91.93106,29.576787],[91.989907,29.568505],[92.000061,29.554897],[92.042331,29.549867],[92.063259,29.528464],[92.091854,29.53596],[92.12853,29.52294],[92.148422,29.542766],[92.185098,29.561997],[92.234621,29.549768],[92.249748,29.555587],[92.262802,29.574519],[92.28518,29.566828],[92.290982,29.588815],[92.319577,29.611487],[92.325793,29.624102],[92.339884,29.612965],[92.384848,29.626467],[92.387956,29.638587],[92.371379,29.667946],[92.386298,29.687252],[92.384226,29.729001],[92.362884,29.753413],[92.364541,29.775851],[92.378424,29.784707],[92.393965,29.823072],[92.356046,29.827891],[92.334911,29.82435],[92.329937,29.803891],[92.306108,29.786281],[92.292433,29.790315],[92.269847,29.836939],[92.244153,29.859653],[92.177224,29.874399],[92.166864,29.881084],[92.173287,29.904475],[92.167071,29.914794],[92.177224,29.948099],[92.191936,29.95085],[92.223018,29.936114],[92.247675,29.936704],[92.292018,29.963226],[92.324757,29.987973],[92.364749,29.975895],[92.375316,29.99573],[92.410956,30.013597],[92.434371,30.014775],[92.442866,30.031069],[92.423389,30.036566],[92.417794,30.049323],[92.438308,30.062276],[92.438515,30.073068],[92.486588,30.098671],[92.508966,30.086017],[92.554552,30.096905],[92.563669,30.134268],[92.578588,30.134562],[92.583976,30.163481],[92.61112,30.178966],[92.625418,30.201504],[92.616715,30.219335],[92.592057,30.235693],[92.564498,30.24343],[92.513939,30.236477],[92.470218,30.243039],[92.403497,30.265758],[92.365577,30.267128],[92.356046,30.251461],[92.295334,30.267716],[92.273784,30.298749],[92.237315,30.315682],[92.222396,30.315682],[92.211621,30.293072],[92.196495,30.283674],[92.172873,30.213359],[92.150702,30.214339],[92.139305,30.200524],[92.07735,30.218943],[92.039845,30.194939],[91.998196,30.200916],[91.981619,30.18465],[91.959862,30.185532],[91.951988,30.235007],[91.922979,30.253517],[91.928159,30.279465],[91.893348,30.290429],[91.859366,30.284849],[91.850663,30.317345],[91.846933,30.362059],[91.8546,30.380447],[91.844447,30.414182],[91.853771,30.430313],[91.834293,30.439696],[91.810464,30.430508],[91.793059,30.445463],[91.791608,30.463738],[91.812536,30.463542],[91.818131,30.486601],[91.860816,30.503403],[91.903916,30.51444],[91.878429,30.558672],[91.823726,30.621715],[91.755554,30.653417],[91.741257,30.68423],[91.746644,30.70402],[91.738563,30.728288],[91.69277,30.702265],[91.661896,30.699828],[91.622526,30.674383],[91.57321,30.65566],[91.548138,30.651076],[91.504417,30.656635],[91.488254,30.691834],[91.459659,30.702752],[91.428578,30.705189],[91.436038,30.755473],[91.42692,30.796187],[91.393974,30.825397],[91.380713,30.863552],[91.384857,30.899843],[91.370352,30.916865],[91.369524,30.986866],[91.351082,30.997653],[91.342172,31.032728],[91.347145,31.041373],[91.280216,31.055845],[91.270063,31.034865],[91.241054,31.038945],[91.191945,31.019807],[91.174125,31.032242],[91.149053,31.035545],[91.135377,31.050697],[91.115278,31.040402],[91.107819,31.020876],[91.124602,30.981715],[91.161278,30.963052],[91.144702,30.946427],[91.105539,30.933203],[91.123981,30.92163],[91.107611,30.89352],[91.080881,30.881845],[91.007115,30.922408],[91.018304,30.945358],[90.997169,30.93155],[90.98225,30.937384],[90.983286,30.967329],[90.940394,31.013298],[90.909934,31.022722],[90.878853,30.988227],[90.832645,31.015824],[90.797419,31.024179],[90.756185,31.012423],[90.748311,30.978896],[90.720338,30.949733],[90.718266,30.905485],[90.707698,30.881845],[90.688013,30.814493],[90.65631,30.740858],[90.596841,30.572534],[90.636832,30.489531],[90.654652,30.46921],[90.626265,30.458363],[90.557057,30.40157],[90.518102,30.404503],[90.481011,30.374285],[90.450344,30.384848],[90.447443,30.362059],[90.410974,30.349146],[90.398749,30.335155],[90.404758,30.305699],[90.394605,30.283479],[90.370983,30.280933],[90.349848,30.299435],[90.320631,30.300218],[90.291829,30.28994],[90.251424,30.283087],[90.228009,30.250482],[90.218892,30.186904],[90.194855,30.16897],[90.19672,30.144954],[90.163152,30.122011],[90.158801,30.094159],[90.122125,30.042748],[90.117774,30.015561],[90.082134,30.014775],[90.083999,29.985223],[90.069908,29.953207],[90.033647,29.938963],[89.986818,29.948099],[89.974592,29.960868],[89.94579,29.954877],[89.918024,29.972457],[89.899168,29.975305],[89.876375,29.977466],[89.849438,29.970592],[89.836177,29.948001],[89.836591,29.88246],[89.858141,29.845887],[89.859384,29.830251],[89.845294,29.800153],[89.87306,29.764337],[89.895646,29.746228],[89.867465,29.709704],[89.871195,29.700448],[89.800951,29.68085],[89.811933,29.677402],[89.821258,29.652184],[89.809239,29.645879],[89.794735,29.617696],[89.771113,29.592068],[89.754743,29.583491],[89.787482,29.544739],[89.815248,29.528661],[89.818357,29.513568],[89.80551,29.499262],[89.776086,29.498078],[89.772356,29.481894],[89.789762,29.468472],[89.78914,29.422368],[89.804266,29.408148],[89.839285,29.397876],[89.893159,29.364882],[89.902276,29.351147],[89.944754,29.335929],[90.054368,29.340178],[90.079854,29.349369],[90.140152,29.346009],[90.157972,29.350357],[90.174756,29.342451],[90.201279,29.344033],[90.227594,29.32822],[90.26282,29.33158],[90.349226,29.307363]]]]}},{"type":"Feature","properties":{"adcode":540200,"name":"日喀则市","center":[88.885148,29.267519],"centroid":[86.477854,29.498529],"childrenNum":18,"level":"city","parent":{"adcode":540000},"subFeatureIndex":1,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[89.899168,29.975305],[89.883835,29.994061],[89.879276,30.032149],[89.869744,30.045398],[89.830789,30.059136],[89.817321,30.100436],[89.830789,30.131522],[89.813384,30.15662],[89.776915,30.18514],[89.76096,30.168088],[89.718689,30.159854],[89.70232,30.192882],[89.700662,30.220217],[89.684914,30.222959],[89.65922,30.205423],[89.612391,30.213457],[89.579859,30.240198],[89.57385,30.227171],[89.552922,30.21669],[89.534687,30.236966],[89.496147,30.254888],[89.483714,30.251951],[89.432326,30.259197],[89.4172,30.253909],[89.399794,30.227563],[89.368299,30.229131],[89.346749,30.240982],[89.318154,30.274961],[89.302613,30.277996],[89.285415,30.266443],[89.248325,30.261449],[89.208333,30.285143],[89.201702,30.311278],[89.165234,30.29454],[89.15736,30.28201],[89.13954,30.290723],[89.107837,30.267226],[89.104521,30.252146],[89.040287,30.254203],[89.010449,30.260764],[88.993043,30.232853],[88.96652,30.227074],[88.949115,30.196017],[88.910781,30.223939],[88.889231,30.219531],[88.873276,30.230306],[88.859808,30.222078],[88.860429,30.202876],[88.80614,30.207089],[88.79205,30.219237],[88.69404,30.229228],[88.646175,30.220608],[88.636229,30.193568],[88.608463,30.15907],[88.568679,30.14613],[88.566814,30.119167],[88.54112,30.098965],[88.538841,30.0662],[88.51812,30.050305],[88.475228,30.069144],[88.46466,30.085723],[88.472327,30.1175],[88.469633,30.134954],[88.481029,30.147699],[88.482687,30.174752],[88.469011,30.198761],[88.44311,30.212477],[88.419903,30.215906],[88.412029,30.243528],[88.391308,30.252342],[88.341785,30.26047],[88.30428,30.259393],[88.273199,30.22051],[88.25082,30.232069],[88.214973,30.218747],[88.201297,30.224527],[88.187207,30.257043],[88.146387,30.273982],[88.117792,30.276038],[88.111161,30.314605],[88.082152,30.376144],[88.058116,30.374188],[88.036152,30.356972],[88.006106,30.365482],[88.001133,30.378589],[87.961764,30.382207],[87.927367,30.365971],[87.882402,30.371351],[87.860853,30.393062],[87.821897,30.370471],[87.809258,30.38563],[87.748338,30.332122],[87.731347,30.334861],[87.699022,30.354624],[87.66504,30.350418],[87.626914,30.376828],[87.591481,30.380056],[87.577598,30.367145],[87.561021,30.383674],[87.540093,30.380056],[87.527661,30.395996],[87.538228,30.422101],[87.509219,30.430899],[87.524552,30.450545],[87.531598,30.477906],[87.487669,30.50477],[87.504868,30.532018],[87.485597,30.534166],[87.472957,30.551546],[87.453065,30.54393],[87.442083,30.552229],[87.422191,30.542856],[87.386137,30.556427],[87.371839,30.54725],[87.367488,30.529088],[87.335578,30.545004],[87.292893,30.541196],[87.2471,30.547738],[87.211667,30.566286],[87.181207,30.549691],[87.180585,30.561406],[87.159036,30.584929],[87.160279,30.615471],[87.172297,30.632544],[87.16836,30.710745],[87.137279,30.737838],[87.1149,30.766189],[87.10081,30.7957],[87.127747,30.847688],[87.124432,30.906166],[87.119252,30.9227],[87.101224,30.935537],[87.069729,30.934078],[87.050044,30.904026],[87.023314,30.893812],[87.01917,30.852068],[87.008187,30.805243],[86.976899,30.793071],[86.952448,30.765604],[86.922196,30.75294],[86.893394,30.753037],[86.88697,30.739007],[86.864592,30.756057],[86.869772,30.767163],[86.910385,30.785572],[86.932349,30.819653],[86.950169,30.837565],[86.941673,30.894298],[86.960529,30.916962],[86.976692,30.919977],[86.918466,30.929119],[86.864177,30.897119],[86.81942,30.895563],[86.735708,30.831335],[86.736536,30.818874],[86.766167,30.775053],[86.781708,30.773787],[86.79787,30.740371],[86.794555,30.722636],[86.808438,30.702947],[86.804294,30.689397],[86.765338,30.68462],[86.784195,30.664144],[86.820042,30.648443],[86.87143,30.64893],[86.862312,30.663559],[86.861069,30.726534],[86.897952,30.729067],[86.905412,30.697976],[86.901682,30.658976],[86.88034,30.649223],[86.883448,30.627569],[86.87288,30.602299],[86.853402,30.595566],[86.854024,30.582294],[86.896295,30.581903],[86.923646,30.609617],[86.93152,30.60347],[86.943745,30.53319],[86.941466,30.509263],[86.925097,30.51483],[86.904997,30.541978],[86.87661,30.544516],[86.858168,30.568336],[86.80906,30.53319],[86.786267,30.548324],[86.780879,30.521471],[86.740473,30.520788],[86.727005,30.550179],[86.706284,30.547152],[86.677275,30.52694],[86.695302,30.472434],[86.718924,30.451815],[86.686392,30.451913],[86.659869,30.463249],[86.641635,30.444681],[86.640391,30.426989],[86.556265,30.444779],[86.576364,30.417311],[86.60786,30.408805],[86.581751,30.391009],[86.571598,30.396974],[86.548598,30.439207],[86.530363,30.460122],[86.532643,30.4824],[86.468408,30.469991],[86.429453,30.481227],[86.439813,30.500668],[86.427588,30.526061],[86.440849,30.560429],[86.414948,30.594883],[86.428624,30.608642],[86.410597,30.634007],[86.407903,30.67019],[86.424272,30.700803],[86.400236,30.722538],[86.396092,30.744171],[86.377029,30.74875],[86.357344,30.785669],[86.339938,30.794434],[86.343668,30.816343],[86.331236,30.846423],[86.331443,30.894687],[86.31756,30.925423],[86.315695,30.953038],[86.277776,30.959066],[86.230118,30.98152],[86.194685,31.003872],[86.123612,30.967329],[86.101648,30.905874],[86.067458,30.897119],[86.090251,30.868515],[86.077612,30.862579],[86.077404,30.843308],[86.063107,30.828318],[86.037413,30.835132],[86.023323,30.82014],[86.028089,30.781384],[86.015242,30.774468],[85.993278,30.744561],[85.980223,30.753135],[85.959088,30.74154],[85.941061,30.747873],[85.948313,30.767455],[85.872889,30.759564],[85.860457,30.751478],[85.82088,30.781968],[85.795393,30.738617],[85.802024,30.720784],[85.83124,30.689007],[85.847195,30.68072],[85.837042,30.666582],[85.800159,30.660828],[85.771149,30.67877],[85.737789,30.6776],[85.710644,30.64025],[85.714996,30.621813],[85.732194,30.622398],[85.750843,30.604056],[85.786069,30.600836],[85.796015,30.591663],[85.868745,30.59381],[85.883042,30.532116],[85.897754,30.494904],[85.885322,30.431681],[85.885529,30.39805],[85.905214,30.366754],[85.914745,30.36783],[85.934223,30.343178],[85.930493,30.328208],[85.891331,30.340928],[85.871853,30.362059],[85.860664,30.349733],[85.862736,30.321358],[85.831447,30.304035],[85.821708,30.279856],[85.798915,30.266737],[85.762032,30.268793],[85.762447,30.25577],[85.805339,30.230306],[85.820465,30.227074],[85.848231,30.148091],[85.855691,30.137797],[85.842844,30.108576],[85.800573,30.120736],[85.78669,30.146621],[85.772186,30.142797],[85.771149,30.078169],[85.802852,30.052267],[85.790834,30.04373],[85.782546,30.011143],[85.764519,30.005253],[85.73178,30.006824],[85.68868,29.991213],[85.666716,29.969217],[85.681221,29.958708],[85.696347,29.932086],[85.696554,29.900348],[85.657806,29.892977],[85.619472,29.895827],[85.545706,29.870664],[85.543841,29.836939],[85.597716,29.812843],[85.604968,29.80094],[85.591085,29.777425],[85.568499,29.783919],[85.545292,29.77772],[85.529544,29.815203],[85.504471,29.821498],[85.466138,29.821498],[85.442516,29.855622],[85.41848,29.845789],[85.391957,29.807334],[85.388849,29.772308],[85.406669,29.741897],[85.402525,29.723685],[85.379524,29.712953],[85.351137,29.710197],[85.335182,29.689812],[85.312596,29.679372],[85.272605,29.706455],[85.251676,29.712461],[85.217072,29.70547],[85.18309,29.692471],[85.164649,29.696607],[85.159054,29.721519],[85.121756,29.738058],[85.095026,29.768963],[85.081765,29.76601],[85.051305,29.781164],[85.048819,29.789429],[84.952674,29.857981],[84.902322,29.925209],[84.877457,29.930515],[84.858186,29.946135],[84.86461,29.970395],[84.855493,29.982376],[84.799753,29.977859],[84.786078,29.994846],[84.764735,29.986598],[84.736762,29.999559],[84.731996,30.023315],[84.745879,30.046772],[84.736969,30.071989],[84.735519,30.11652],[84.743185,30.171714],[84.732618,30.189158],[84.702572,30.211204],[84.708581,30.249698],[84.682473,30.258414],[84.657401,30.256161],[84.620725,30.297673],[84.619067,30.324587],[84.598968,30.34308],[84.602905,30.359026],[84.587779,30.372427],[84.584878,30.394627],[84.572652,30.406067],[84.53867,30.403525],[84.516291,30.414476],[84.479201,30.404992],[84.476093,30.420342],[84.452264,30.443117],[84.448327,30.465399],[84.486039,30.504868],[84.468633,30.527624],[84.498679,30.541294],[84.494535,30.555841],[84.509661,30.562089],[84.500751,30.573412],[84.464282,30.59137],[84.464904,30.603568],[84.486661,30.607471],[84.471327,30.621423],[84.510282,30.633617],[84.518571,30.645614],[84.521264,30.690665],[84.558562,30.73316],[84.551931,30.742417],[84.593373,30.767942],[84.591716,30.78713],[84.601454,30.799693],[84.646212,30.823937],[84.648905,30.838734],[84.731374,30.907138],[84.763699,30.901107],[84.774474,30.93048],[84.740077,30.950122],[84.703401,30.979674],[84.689518,30.974036],[84.680194,30.990268],[84.697185,31.012715],[84.693662,31.035836],[84.666311,31.056427],[84.664239,31.066139],[84.632743,31.055456],[84.614716,31.069246],[84.632743,31.102741],[84.614716,31.113127],[84.626112,31.165719],[84.605599,31.180268],[84.602283,31.209555],[84.609121,31.220802],[84.599797,31.241353],[84.609743,31.254243],[84.595445,31.27188],[84.550895,31.278663],[84.498264,31.302398],[84.494949,31.327095],[84.412273,31.311696],[84.367515,31.317798],[84.347831,31.31557],[84.314055,31.342976],[84.274064,31.357304],[84.241118,31.358563],[84.209,31.36863],[84.207757,31.411115],[84.241947,31.407632],[84.279037,31.420209],[84.291055,31.442554],[84.340371,31.448261],[84.366687,31.463734],[84.375182,31.487035],[84.421183,31.498926],[84.464696,31.495252],[84.502616,31.477561],[84.524165,31.485875],[84.554418,31.515067],[84.552139,31.537873],[84.570787,31.570719],[84.607049,31.59718],[84.620103,31.641491],[84.668383,31.648633],[84.625698,31.676423],[84.585914,31.685395],[84.553175,31.683851],[84.533283,31.694849],[84.479823,31.696585],[84.455786,31.708641],[84.46221,31.725325],[84.44584,31.75367],[84.444183,31.775936],[84.398182,31.804458],[84.378912,31.806771],[84.349695,31.780754],[84.35156,31.754249],[84.367308,31.729182],[84.372488,31.704398],[84.396525,31.67102],[84.388443,31.636858],[84.402119,31.619676],[84.386371,31.617359],[84.372903,31.638789],[84.3412,31.640912],[84.327938,31.61678],[84.302866,31.611084],[84.291055,31.657415],[84.280695,31.663976],[84.244226,31.65809],[84.211487,31.67266],[84.185586,31.662143],[84.167559,31.668608],[84.151189,31.653169],[84.156577,31.629329],[84.145594,31.619386],[84.109126,31.607125],[84.084468,31.616394],[84.056287,31.640815],[84.038053,31.641008],[84.026242,31.626144],[84.002206,31.615814],[83.978584,31.591676],[83.952683,31.593124],[83.92471,31.58366],[83.899845,31.582695],[83.857574,31.589455],[83.827529,31.569559],[83.805772,31.583757],[83.761636,31.563667],[83.71232,31.59129],[83.695329,31.592545],[83.646013,31.571298],[83.62177,31.586365],[83.601878,31.588393],[83.534328,31.583854],[83.48667,31.596021],[83.472994,31.588103],[83.439633,31.592931],[83.425336,31.602008],[83.395705,31.60587],[83.370011,31.627109],[83.3582,31.646606],[83.365867,31.66909],[83.319452,31.698032],[83.306812,31.729182],[83.256668,31.696585],[83.268686,31.670441],[83.266614,31.652107],[83.219577,31.647668],[83.200928,31.682404],[83.184145,31.689447],[83.14436,31.682115],[83.120324,31.655388],[83.095045,31.644869],[83.085513,31.651142],[83.060648,31.639561],[83.047179,31.607029],[83.017134,31.614946],[83.028531,31.628171],[83.010089,31.640333],[82.986881,31.636086],[82.964917,31.648054],[82.913944,31.632611],[82.927205,31.626626],[82.924304,31.610118],[82.951863,31.620352],[82.950413,31.598049],[82.986053,31.579894],[82.979422,31.570719],[82.952899,31.57719],[82.900683,31.568497],[82.865664,31.575934],[82.842871,31.593317],[82.840592,31.578638],[82.8207,31.578252],[82.835826,31.535071],[82.863178,31.53652],[82.896331,31.505402],[82.949377,31.491482],[82.967197,31.477464],[82.951863,31.433752],[82.949377,31.401826],[82.967404,31.367178],[82.981701,31.325061],[82.976521,31.296004],[82.992476,31.258895],[82.971962,31.249494],[82.966368,31.233114],[82.977972,31.220705],[82.962224,31.205483],[82.966161,31.173479],[82.947305,31.182014],[82.924304,31.179395],[82.897574,31.158734],[82.84888,31.161353],[82.823186,31.154271],[82.805781,31.108177],[82.792105,31.05633],[82.801222,31.018836],[82.835826,30.982298],[82.86007,30.963538],[82.865871,30.947399],[82.894881,30.916087],[82.940881,30.938065],[82.960152,30.898189],[82.986467,30.884764],[82.982945,30.868515],[83.016305,30.854598],[83.019206,30.833088],[83.044071,30.81128],[83.0909,30.816635],[83.108928,30.806606],[83.147261,30.804854],[83.158243,30.789565],[83.161973,30.723415],[83.178964,30.705189],[83.144775,30.609227],[83.122189,30.593517],[83.069765,30.505942],[83.052981,30.506626],[83.021278,30.524694],[83.011747,30.549593],[82.949791,30.539634],[82.937566,30.55711],[82.926584,30.590589],[82.926376,30.613325],[82.954142,30.637421],[82.949791,30.647662],[82.896953,30.657903],[82.868772,30.68852],[82.826087,30.691932],[82.805781,30.764825],[82.774699,30.793266],[82.737195,30.777001],[82.709636,30.79609],[82.697618,30.76765],[82.671302,30.760539],[82.678554,30.752647],[82.642914,30.742709],[82.635248,30.721758],[82.652861,30.705579],[82.653275,30.657318],[82.636284,30.633227],[82.657212,30.608056],[82.645815,30.584246],[82.632968,30.576731],[82.63214,30.553791],[82.611211,30.528112],[82.631311,30.48494],[82.630068,30.472434],[82.667365,30.420048],[82.663843,30.401081],[82.634833,30.394725],[82.645608,30.376926],[82.637734,30.364993],[82.585103,30.354331],[82.557544,30.38299],[82.533508,30.398245],[82.493517,30.408512],[82.466994,30.425523],[82.470517,30.383674],[82.457255,30.371938],[82.429282,30.381914],[82.424931,30.355798],[82.413327,30.360298],[82.409183,30.408121],[82.382867,30.398441],[82.356966,30.401863],[82.346398,30.421221],[82.322776,30.433538],[82.297911,30.398147],[82.273254,30.401765],[82.285479,30.37585],[82.270767,30.355016],[82.271596,30.310984],[82.249217,30.282108],[82.171307,30.224918],[82.143541,30.200035],[82.188919,30.18563],[82.188505,30.159756],[82.209433,30.151032],[82.183118,30.121815],[82.19037,30.108772],[82.174415,30.081897],[82.177937,30.068163],[82.231605,30.06571],[82.246938,30.071596],[82.2832,30.057468],[82.31138,30.03578],[82.333759,30.045005],[82.367948,30.013892],[82.382038,30.024101],[82.412498,30.012027],[82.431354,29.989838],[82.474868,29.973832],[82.498283,29.947706],[82.535373,29.960083],[82.561274,29.955368],[82.598365,29.910175],[82.608932,29.886293],[82.643536,29.868697],[82.623851,29.834579],[82.654725,29.833792],[82.688915,29.848542],[82.704041,29.847559],[82.731186,29.825826],[82.737816,29.80635],[82.701762,29.784411],[82.691609,29.766207],[82.702176,29.760204],[82.730357,29.76542],[82.757294,29.762074],[82.770141,29.729789],[82.816763,29.717384],[82.830646,29.687547],[82.885763,29.689024],[82.896953,29.697888],[82.946683,29.708916],[82.949791,29.671887],[82.967197,29.658785],[83.011539,29.667651],[83.037441,29.649426],[83.054846,29.626467],[83.088828,29.604784],[83.129027,29.623609],[83.159694,29.617104],[83.16446,29.595716],[83.179171,29.590392],[83.199685,29.604587],[83.217298,29.600349],[83.225794,29.583393],[83.266614,29.571167],[83.281326,29.556573],[83.263298,29.549078],[83.275938,29.505971],[83.306812,29.495709],[83.325461,29.502912],[83.349705,29.486631],[83.351777,29.461957],[83.38348,29.421874],[83.415804,29.420294],[83.42803,29.393431],[83.423264,29.36093],[83.441498,29.350752],[83.450201,29.332865],[83.4473,29.30934],[83.463877,29.286107],[83.492057,29.280075],[83.495165,29.270087],[83.525832,29.240811],[83.524796,29.222508],[83.548832,29.201234],[83.578256,29.203906],[83.577634,29.187379],[83.596283,29.174116],[83.617833,29.176689],[83.638968,29.162534],[83.655752,29.167285],[83.667356,29.200146],[83.727447,29.24457],[83.770132,29.243679],[83.800384,29.249416],[83.798727,29.271472],[83.825664,29.297576],[83.851358,29.294906],[83.873115,29.308549],[83.91725,29.324563],[83.94916,29.312602],[83.963665,29.323278],[83.98708,29.324958],[84.004485,29.312701],[84.002206,29.291446],[84.025828,29.287491],[84.051936,29.296884],[84.075765,29.285711],[84.095035,29.29461],[84.116585,29.286403],[84.117414,29.255351],[84.130054,29.240118],[84.202784,29.240118],[84.197604,29.21014],[84.171288,29.194604],[84.167559,29.169859],[84.176469,29.133821],[84.207343,29.11857],[84.191595,29.079541],[84.194496,29.044759],[84.224334,29.049417],[84.248785,29.030585],[84.24319,28.981507],[84.228271,28.949966],[84.223712,28.90601],[84.234487,28.889336],[84.268262,28.895391],[84.287118,28.877821],[84.330632,28.859256],[84.340578,28.867099],[84.408336,28.853994],[84.404606,28.827975],[84.434029,28.824102],[84.431543,28.809004],[84.445219,28.78367],[84.441903,28.770355],[84.483138,28.735072],[84.507381,28.743521],[84.557319,28.746205],[84.589851,28.734177],[84.619689,28.732388],[84.651185,28.714493],[84.669626,28.680483],[84.699671,28.671731],[84.698221,28.633429],[84.753131,28.609247],[84.773231,28.610242],[84.85715,28.567736],[84.89652,28.58715],[84.920764,28.590534],[84.961584,28.581376],[84.981476,28.586353],[84.995566,28.611436],[85.0569,28.674516],[85.087567,28.669244],[85.107666,28.680384],[85.136261,28.66805],[85.156153,28.644175],[85.180396,28.641588],[85.196144,28.617209],[85.184333,28.587249],[85.189928,28.544834],[85.166721,28.525911],[85.16009,28.492637],[85.130045,28.482275],[85.108495,28.461247],[85.116576,28.404722],[85.129216,28.377694],[85.113468,28.344774],[85.125072,28.3326],[85.179775,28.323919],[85.208577,28.339386],[85.242974,28.314837],[85.27219,28.282495],[85.350515,28.29737],[85.350515,28.284792],[85.379524,28.274409],[85.41475,28.305854],[85.416822,28.322921],[85.460129,28.3328],[85.526021,28.324617],[85.561868,28.305555],[85.602689,28.295773],[85.601445,28.254039],[85.612635,28.252641],[85.650347,28.283693],[85.667752,28.341481],[85.682464,28.343776],[85.682671,28.375899],[85.716653,28.380088],[85.735095,28.314737],[85.739032,28.273909],[85.753537,28.227772],[85.791249,28.195305],[85.838285,28.181815],[85.85424,28.172422],[85.87579,28.116242],[85.898997,28.101443],[85.90107,28.053531],[85.914124,28.038122],[85.980223,27.986978],[85.949349,27.937413],[86.002395,27.907362],[86.05399,27.900549],[86.103306,27.919483],[86.125477,27.92329],[86.126099,27.937513],[86.111387,27.951033],[86.102062,27.989181],[86.082792,28.018208],[86.089423,28.056732],[86.086522,28.089942],[86.128792,28.086742],[86.139982,28.114943],[86.174171,28.141937],[86.175829,28.161228],[86.191162,28.166925],[86.201523,28.13114],[86.224316,28.092642],[86.206288,28.084441],[86.209604,28.059834],[86.222451,28.031418],[86.221,27.996388],[86.231154,27.974764],[86.245244,27.969658],[86.273424,27.977067],[86.299118,27.968256],[86.309064,27.950532],[86.326263,27.948129],[86.336001,27.964552],[86.340767,27.944223],[86.37102,27.938515],[86.393191,27.926495],[86.415155,27.904557],[86.455768,27.91187],[86.475867,27.944423],[86.518345,27.960446],[86.513579,27.996388],[86.533057,28.024313],[86.537616,28.044826],[86.558337,28.047628],[86.569112,28.103143],[86.598742,28.100443],[86.611382,28.069937],[86.647644,28.069637],[86.66277,28.091842],[86.700275,28.101543],[86.748347,28.089542],[86.768447,28.069237],[86.750419,28.045627],[86.756843,28.033019],[86.788131,28.02041],[86.827708,28.012403],[86.864384,28.022411],[86.885727,27.996188],[86.926754,27.985977],[86.935664,27.955539],[86.978764,27.94853],[87.034917,27.946426],[87.057296,27.925093],[87.076566,27.91728],[87.094801,27.882714],[87.10599,27.873896],[87.118216,27.840519],[87.149711,27.831998],[87.173955,27.818262],[87.228036,27.813149],[87.249793,27.839416],[87.266163,27.845331],[87.297451,27.840719],[87.317551,27.826885],[87.364173,27.824278],[87.39111,27.844729],[87.420741,27.859263],[87.436074,27.842925],[87.412038,27.835607],[87.418047,27.825682],[87.455966,27.820468],[87.482489,27.834805],[87.541336,27.843226],[87.558949,27.862871],[87.581121,27.859564],[87.590445,27.848338],[87.598112,27.814452],[87.624427,27.812146],[87.638725,27.830895],[87.670013,27.832198],[87.66877,27.806129],[87.727825,27.80292],[87.746266,27.831095],[87.777969,27.860265],[87.782528,27.89053],[87.826456,27.927998],[87.826042,27.943322],[87.846763,27.945525],[87.863339,27.933807],[87.860024,27.916178],[87.878466,27.908664],[87.921979,27.910367],[87.960313,27.898545],[87.982484,27.884217],[88.037395,27.901651],[88.06226,27.886722],[88.091062,27.88542],[88.111576,27.864876],[88.137684,27.878505],[88.120693,27.915176],[88.138927,27.932806],[88.1439,27.955139],[88.15654,27.957943],[88.203784,27.943322],[88.213937,27.964351],[88.225126,27.957342],[88.242117,27.967155],[88.254136,27.939516],[88.297028,27.963851],[88.30946,27.963951],[88.357326,27.986378],[88.401047,27.976767],[88.415966,27.980771],[88.427569,27.999291],[88.469011,28.010001],[88.478957,28.03372],[88.512111,28.039823],[88.533453,28.028516],[88.553967,28.027815],[88.564949,28.083041],[88.588571,28.08134],[88.620688,28.091542],[88.645139,28.111343],[88.676013,28.068137],[88.764077,28.068337],[88.812149,28.018008],[88.835564,28.012403],[88.845096,27.996188],[88.846546,27.921487],[88.864573,27.921387],[88.882186,27.889227],[88.888402,27.846634],[88.882601,27.826684],[88.862916,27.811945],[88.860636,27.752167],[88.870375,27.743237],[88.866231,27.724273],[88.850276,27.711025],[88.851934,27.671274],[88.840123,27.651392],[88.812978,27.63211],[88.8136,27.606998],[88.787906,27.571027],[88.770708,27.567811],[88.783969,27.532431],[88.797852,27.521573],[88.78314,27.467169],[88.810285,27.420385],[88.809041,27.405893],[88.826447,27.402471],[88.838258,27.378314],[88.867267,27.381636],[88.869339,27.365729],[88.901457,27.327363],[88.92052,27.32555],[88.912024,27.272863],[88.94207,27.261577],[88.975845,27.217227],[88.98807,27.209363],[89.004854,27.219848],[89.068053,27.240412],[89.073026,27.28314],[89.121513,27.310744],[89.153008,27.318903],[89.161297,27.355459],[89.183054,27.373884],[89.165648,27.391198],[89.161504,27.412133],[89.132495,27.441214],[89.119233,27.440006],[89.095611,27.471594],[89.10908,27.537658],[89.143684,27.551329],[89.163369,27.574544],[89.128972,27.611217],[89.131666,27.633617],[89.149279,27.651694],[89.179946,27.668763],[89.209369,27.721663],[89.229261,27.730795],[89.222838,27.755076],[89.239,27.796803],[89.263036,27.810541],[89.295983,27.848438],[89.325821,27.851646],[89.36892,27.869987],[89.438128,27.959345],[89.455326,28.003195],[89.470867,28.009301],[89.46175,28.031918],[89.493246,28.061634],[89.510858,28.086141],[89.541525,28.088542],[89.558516,28.116142],[89.571156,28.121942],[89.609697,28.163127],[89.669995,28.168624],[89.681599,28.179817],[89.72905,28.171222],[89.744383,28.185613],[89.77878,28.197303],[89.784789,28.213488],[89.774843,28.224776],[89.789762,28.241056],[89.821879,28.240357],[89.843014,28.225675],[89.86933,28.221579],[89.906006,28.180716],[89.976043,28.18901],[90.017277,28.162627],[90.02971,28.139238],[90.046079,28.136938],[90.073224,28.155431],[90.103062,28.141737],[90.122539,28.168824],[90.123576,28.18941],[90.166675,28.187611],[90.18781,28.165526],[90.201901,28.210591],[90.208738,28.249246],[90.234432,28.307551],[90.225315,28.319228],[90.229252,28.347966],[90.151756,28.347667],[90.13663,28.338188],[90.12544,28.35086],[90.130413,28.374403],[90.108035,28.371311],[90.088764,28.39455],[90.091873,28.41918],[90.08089,28.473207],[90.117774,28.490147],[90.128341,28.503298],[90.121503,28.566641],[90.113008,28.594217],[90.093945,28.612332],[90.063692,28.617806],[90.077575,28.653029],[90.115909,28.672128],[90.117774,28.683566],[90.150513,28.708229],[90.170405,28.711211],[90.179315,28.736066],[90.168125,28.754653],[90.18636,28.776417],[90.202937,28.768169],[90.22345,28.801255],[90.219721,28.833338],[90.188432,28.891222],[90.197135,28.919308],[90.178279,28.927841],[90.182837,28.965737],[90.206666,28.977441],[90.214748,29.004611],[90.20563,29.024439],[90.223865,29.030981],[90.246451,29.054075],[90.245622,29.081819],[90.22573,29.117183],[90.231946,29.146],[90.245207,29.170651],[90.266757,29.173126],[90.297424,29.204797],[90.309442,29.247141],[90.304055,29.257329],[90.338244,29.274636],[90.349226,29.307363],[90.26282,29.33158],[90.227594,29.32822],[90.201279,29.344033],[90.174756,29.342451],[90.157972,29.350357],[90.140152,29.346009],[90.079854,29.349369],[90.054368,29.340178],[89.944754,29.335929],[89.902276,29.351147],[89.893159,29.364882],[89.839285,29.397876],[89.804266,29.408148],[89.78914,29.422368],[89.789762,29.468472],[89.772356,29.481894],[89.776086,29.498078],[89.80551,29.499262],[89.818357,29.513568],[89.815248,29.528661],[89.787482,29.544739],[89.754743,29.583491],[89.771113,29.592068],[89.794735,29.617696],[89.809239,29.645879],[89.821258,29.652184],[89.811933,29.677402],[89.800951,29.68085],[89.871195,29.700448],[89.867465,29.709704],[89.895646,29.746228],[89.87306,29.764337],[89.845294,29.800153],[89.859384,29.830251],[89.858141,29.845887],[89.836591,29.88246],[89.836177,29.948001],[89.849438,29.970592],[89.876375,29.977466],[89.899168,29.975305]]],[[[85.760167,30.951775],[85.774672,30.90422],[85.805961,30.870363],[85.827718,30.829973],[85.826889,30.797161],[85.90107,30.783137],[85.913709,30.808748],[85.900862,30.832698],[85.874961,30.862676],[85.862736,30.86832],[85.908529,30.884472],[85.922205,30.866179],[85.944376,30.864914],[85.950178,30.89459],[85.937953,30.89994],[85.931736,30.926687],[85.896511,30.921922],[85.847402,30.941857],[85.791249,30.951483],[85.760167,30.951775]]]]}},{"type":"Feature","properties":{"adcode":540300,"name":"昌都市","center":[97.178452,31.136875],"centroid":[97.035183,30.783725],"childrenNum":11,"level":"city","parent":{"adcode":540000},"subFeatureIndex":2,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.684832,28.435231],[98.68939,28.444403],[98.67385,28.478687],[98.625984,28.489648],[98.619354,28.509275],[98.63821,28.552203],[98.620183,28.586453],[98.613759,28.611835],[98.620804,28.619995],[98.594489,28.667752],[98.594281,28.682771],[98.634273,28.689136],[98.637795,28.700473],[98.666805,28.712206],[98.681724,28.730797],[98.67903,28.771647],[98.663696,28.785955],[98.654165,28.823605],[98.668255,28.843567],[98.653543,28.857469],[98.644219,28.892214],[98.657066,28.927048],[98.633651,28.940442],[98.63075,28.972879],[98.655823,28.976846],[98.702445,28.964448],[98.722544,28.981507],[98.766058,29.0059],[98.786571,28.998563],[98.785743,28.987655],[98.804391,28.969705],[98.82159,28.920995],[98.81786,28.895986],[98.829671,28.843766],[98.828013,28.821619],[98.852671,28.798374],[98.87277,28.808309],[98.896599,28.799567],[98.922086,28.806819],[98.922915,28.824102],[98.972231,28.834431],[98.966636,28.874446],[98.951303,28.870971],[98.917942,28.886954],[98.91214,28.911071],[98.923122,28.941434],[98.926023,28.978532],[98.950474,28.985275],[98.960005,29.003818],[99.013051,29.03673],[99.015537,29.052192],[99.001862,29.089745],[98.982591,29.10916],[98.963114,29.144812],[98.962699,29.175304],[98.974096,29.181638],[98.976375,29.204599],[99.02424,29.188666],[99.037502,29.207666],[99.074799,29.210536],[99.091998,29.223201],[99.113755,29.221321],[99.116241,29.238239],[99.09407,29.268406],[99.086196,29.290259],[99.068583,29.297477],[99.075835,29.314579],[99.067547,29.336324],[99.058637,29.417431],[99.066925,29.420788],[99.056979,29.456824],[99.062781,29.473703],[99.049727,29.485348],[99.044754,29.51998],[99.052006,29.563969],[99.014709,29.607347],[99.011393,29.628536],[98.996681,29.647356],[99.000826,29.737861],[99.01906,29.791987],[99.013673,29.817859],[99.033979,29.855425],[99.041646,29.881968],[99.053042,29.892879],[99.058015,29.921377],[99.068376,29.931399],[99.052006,29.939848],[99.055114,29.958315],[99.043096,30.01507],[99.034393,30.022825],[99.044754,30.080033],[99.009736,30.121325],[99.014709,30.135444],[98.989222,30.151914],[98.981555,30.181514],[98.993573,30.206893],[98.976168,30.228249],[98.969537,30.254301],[98.986528,30.279465],[98.981555,30.32126],[98.968294,30.333491],[98.973267,30.353548],[98.967672,30.376144],[98.973888,30.398636],[98.962699,30.426891],[98.964978,30.452011],[98.944879,30.481423],[98.945708,30.499789],[98.931618,30.527721],[98.937834,30.549593],[98.926645,30.56941],[98.9426,30.590589],[98.922086,30.60913],[98.923744,30.639664],[98.905924,30.682963],[98.907582,30.698268],[98.930789,30.70324],[98.937005,30.716301],[98.960213,30.72361],[98.963735,30.734232],[98.952339,30.769695],[98.909654,30.780702],[98.880437,30.803101],[98.878779,30.822282],[98.857023,30.829973],[98.848734,30.850316],[98.780355,30.893325],[98.774761,30.907333],[98.796932,30.948372],[98.806049,30.99571],[98.774761,31.031076],[98.736841,31.04924],[98.733526,31.067498],[98.712391,31.083228],[98.709904,31.118659],[98.690012,31.132925],[98.675093,31.154077],[98.643597,31.169599],[98.638624,31.179201],[98.615417,31.179492],[98.601741,31.19181],[98.621011,31.203543],[98.623291,31.221383],[98.606921,31.228751],[98.603399,31.256569],[98.616038,31.303754],[98.640075,31.337553],[98.69167,31.333002],[98.714463,31.304335],[98.73394,31.28932],[98.747823,31.262771],[98.779941,31.251142],[98.805842,31.279244],[98.820139,31.318379],[98.863239,31.351205],[98.887068,31.374632],[98.843347,31.41692],[98.836923,31.437041],[98.795067,31.458995],[98.787193,31.474273],[98.771238,31.476014],[98.740364,31.493222],[98.695814,31.530916],[98.696643,31.538549],[98.649606,31.579991],[98.59884,31.612822],[98.587858,31.632032],[98.553876,31.656546],[98.556984,31.690025],[98.544758,31.700539],[98.547038,31.715874],[98.518443,31.71626],[98.508911,31.751935],[98.476794,31.782296],[98.460217,31.781814],[98.461253,31.800219],[98.439289,31.81573],[98.443433,31.826422],[98.414631,31.832587],[98.426235,31.856759],[98.399298,31.895845],[98.403442,31.910474],[98.432658,31.922599],[98.421469,31.942322],[98.434109,31.959829],[98.427893,31.996467],[98.43473,32.007812],[98.402613,32.026652],[98.402406,32.047314],[98.344387,32.095731],[98.31372,32.110328],[98.301909,32.123195],[98.295486,32.149882],[98.259846,32.208989],[98.241612,32.226157],[98.219647,32.233829],[98.220269,32.257416],[98.23063,32.262881],[98.208873,32.319423],[98.218819,32.342317],[98.197476,32.360131],[98.163079,32.375643],[98.139458,32.37909],[98.128061,32.400533],[98.10734,32.391631],[98.086619,32.398523],[98.051394,32.428574],[98.036889,32.428957],[98.023628,32.452493],[98.008709,32.451058],[97.970168,32.470763],[97.947168,32.470763],[97.940122,32.482431],[97.906347,32.489316],[97.880239,32.486352],[97.864077,32.498974],[97.806265,32.500408],[97.798599,32.519242],[97.768761,32.518286],[97.757571,32.530903],[97.708877,32.523257],[97.684219,32.53033],[97.670336,32.517234],[97.629931,32.524404],[97.619777,32.519624],[97.591804,32.531095],[97.587038,32.520007],[97.565903,32.532719],[97.541038,32.53702],[97.532542,32.525742],[97.50229,32.530999],[97.473902,32.544284],[97.464578,32.570943],[97.448415,32.587087],[97.411947,32.575051],[97.411118,32.563013],[97.374235,32.546291],[97.360352,32.561866],[97.346469,32.561771],[97.331135,32.538072],[97.335486,32.514175],[97.351649,32.516948],[97.388532,32.50146],[97.377135,32.483005],[97.350198,32.464546],[97.341496,32.439769],[97.36864,32.435177],[97.391433,32.422737],[97.412983,32.375451],[97.416712,32.356396],[97.407802,32.333792],[97.424586,32.323447],[97.417956,32.300931],[97.369676,32.273137],[97.344396,32.296906],[97.319117,32.302847],[97.299639,32.294989],[97.281612,32.243993],[97.276639,32.208509],[97.264207,32.182607],[97.27581,32.156121],[97.273324,32.139035],[97.31373,32.128955],[97.293216,32.096692],[97.308549,32.076713],[97.258197,32.072102],[97.219864,32.10908],[97.202044,32.090353],[97.234161,32.063456],[97.23354,32.046065],[97.21344,32.04299],[97.187539,32.054521],[97.169719,32.032995],[97.130764,32.043855],[97.095124,32.038761],[97.077926,32.048467],[97.028817,32.048851],[97.006646,32.067779],[96.95733,32.062591],[96.93433,32.045776],[96.946762,32.022423],[96.966654,32.013195],[96.942618,31.986564],[96.894338,32.013772],[96.889158,32.002909],[96.864086,31.997044],[96.870302,31.967716],[96.852068,31.972236],[96.840464,31.997717],[96.79695,32.01829],[96.783274,32.01108],[96.74722,32.013676],[96.733544,32.026171],[96.722148,32.014253],[96.744319,31.99839],[96.740175,31.976563],[96.755094,31.943476],[96.774779,31.937127],[96.784932,31.912783],[96.810419,31.892765],[96.794256,31.869276],[96.760896,31.863018],[96.766076,31.818909],[96.799022,31.792222],[96.802545,31.77237],[96.818085,31.746344],[96.833626,31.739209],[96.837149,31.715489],[96.821815,31.700347],[96.790527,31.698417],[96.775193,31.673914],[96.753851,31.673914],[96.722769,31.687035],[96.691895,31.722239],[96.668273,31.724168],[96.661228,31.705748],[96.644237,31.709991],[96.615021,31.736992],[96.568191,31.712017],[96.53193,31.733906],[96.523849,31.745283],[96.468109,31.770538],[96.433298,31.799737],[96.431848,31.817271],[96.407812,31.845781],[96.400145,31.893824],[96.38937,31.919904],[96.368649,31.924523],[96.355595,31.91644],[96.294054,31.919327],[96.253648,31.929623],[96.21863,31.905373],[96.188999,31.902775],[96.214486,31.876497],[96.202467,31.840773],[96.183197,31.835862],[96.178017,31.775646],[96.230233,31.750682],[96.222567,31.732942],[96.253026,31.693691],[96.245152,31.657897],[96.222152,31.65037],[96.22526,31.624889],[96.204954,31.599015],[96.193557,31.605677],[96.160404,31.601042],[96.148386,31.631163],[96.152944,31.6523],[96.148386,31.686456],[96.135332,31.702276],[96.108602,31.699478],[96.104665,31.712306],[96.064881,31.7206],[96.046439,31.732074],[95.989042,31.787404],[95.992565,31.804362],[95.982619,31.816693],[95.91942,31.820065],[95.899321,31.81467],[95.868654,31.772852],[95.857879,31.742584],[95.846275,31.736413],[95.85332,31.714138],[95.824933,31.682018],[95.801932,31.703433],[95.790536,31.734871],[95.77686,31.750778],[95.736247,31.764081],[95.71967,31.762924],[95.653571,31.778923],[95.614615,31.783356],[95.601354,31.767647],[95.581462,31.768418],[95.576903,31.747404],[95.546651,31.739788],[95.511632,31.750585],[95.501065,31.774104],[95.479101,31.796269],[95.457136,31.801664],[95.461073,31.815923],[95.439938,31.83172],[95.40637,31.896904],[95.40865,31.918653],[95.368451,31.929141],[95.371352,31.945016],[95.360991,31.959156],[95.377361,31.977814],[95.376325,31.990026],[95.395595,32.001467],[95.431443,31.999256],[95.454443,32.007812],[95.421289,32.03386],[95.423569,32.051734],[95.45465,32.062495],[95.44574,32.117626],[95.434136,32.124347],[95.440145,32.157464],[95.424812,32.159576],[95.40637,32.182127],[95.388965,32.186061],[95.365343,32.176658],[95.367001,32.152186],[95.345244,32.154777],[95.312712,32.148922],[95.307946,32.164087],[95.285567,32.172627],[95.269819,32.194791],[95.280802,32.200835],[95.26381,32.211866],[95.256558,32.254348],[95.23936,32.286939],[95.241225,32.320477],[95.215116,32.322584],[95.20745,32.297577],[95.178855,32.282435],[95.138242,32.273617],[95.132025,32.264031],[95.106539,32.258854],[95.080223,32.278984],[95.080638,32.297577],[95.0968,32.322201],[95.136584,32.323926],[95.15399,32.332451],[95.193567,32.33226],[95.22672,32.344808],[95.261738,32.348064],[95.241432,32.364248],[95.228792,32.363004],[95.218432,32.396991],[95.190873,32.387036],[95.184035,32.394215],[95.154611,32.386366],[95.154611,32.401777],[95.131197,32.398906],[95.131611,32.386749],[95.081674,32.384738],[95.076079,32.376792],[95.057223,32.394598],[94.988222,32.422641],[94.980141,32.409147],[94.955898,32.412114],[94.944708,32.404553],[94.912591,32.415655],[94.904095,32.451537],[94.890005,32.472294],[94.852086,32.46359],[94.84214,32.475832],[94.806707,32.486352],[94.785779,32.524404],[94.759464,32.529374],[94.741644,32.517999],[94.739572,32.493619],[94.714292,32.501747],[94.697094,32.467416],[94.650264,32.460911],[94.683625,32.447519],[94.690877,32.423694],[94.68549,32.408095],[94.720301,32.366164],[94.745995,32.345478],[94.760914,32.341838],[94.748896,32.308788],[94.74268,32.2601],[94.707661,32.242459],[94.668499,32.211962],[94.650472,32.152857],[94.64612,32.100053],[94.664562,32.082861],[94.660625,32.056538],[94.68922,32.047122],[94.688184,32.032803],[94.655859,31.990891],[94.671814,31.953288],[94.673057,31.897577],[94.647571,31.883428],[94.651508,31.846455],[94.661454,31.828253],[94.721544,31.811877],[94.752833,31.798003],[94.761536,31.785284],[94.773554,31.72301],[94.766509,31.709991],[94.738535,31.707195],[94.723616,31.685395],[94.686526,31.678159],[94.684868,31.638789],[94.715121,31.647378],[94.751382,31.63985],[94.763401,31.615525],[94.752833,31.607608],[94.76568,31.564054],[94.782464,31.557678],[94.847113,31.555553],[94.892285,31.53681],[94.912384,31.489742],[94.905132,31.463734],[94.879645,31.439749],[94.870942,31.41305],[94.886483,31.394955],[94.92606,31.369695],[94.947609,31.3786],[94.973096,31.358369],[94.97724,31.336101],[94.992988,31.314311],[94.982835,31.291936],[94.986357,31.274884],[95.003556,31.260833],[95.011844,31.228267],[95.033187,31.19821],[95.047691,31.187639],[95.036088,31.159607],[95.01516,31.157182],[94.97724,31.140688],[94.965015,31.154271],[94.934348,31.155921],[94.926267,31.136321],[94.90596,31.125065],[94.867419,31.124094],[94.8525,31.112545],[94.831572,31.11798],[94.831572,31.097208],[94.816653,31.094004],[94.811266,31.072159],[94.794689,31.08284],[94.772932,31.078956],[94.73377,31.114874],[94.717607,31.168435],[94.720301,31.245521],[94.743508,31.292711],[94.742887,31.312181],[94.770238,31.335229],[94.761121,31.359434],[94.741022,31.357014],[94.709112,31.342395],[94.693364,31.326901],[94.657724,31.313343],[94.618976,31.314893],[94.602606,31.332712],[94.597841,31.361177],[94.580021,31.377148],[94.58375,31.393407],[94.6053,31.413824],[94.59266,31.435784],[94.562615,31.430367],[94.548525,31.414985],[94.530498,31.410824],[94.501903,31.392246],[94.482425,31.350721],[94.449272,31.339877],[94.419019,31.348978],[94.392496,31.349269],[94.398713,31.328741],[94.374676,31.320413],[94.365559,31.300848],[94.346289,31.296876],[94.298216,31.313149],[94.301532,31.294648],[94.285784,31.268876],[94.283712,31.248331],[94.294694,31.215179],[94.248693,31.191907],[94.214504,31.098664],[94.256774,31.074198],[94.26672,31.019321],[94.305054,30.97773],[94.320802,30.932231],[94.344631,30.917059],[94.322252,30.851192],[94.298423,30.847007],[94.26382,30.856253],[94.246414,30.871337],[94.194197,30.868612],[94.171404,30.853236],[94.148819,30.849538],[94.108413,30.864136],[94.065106,30.871726],[94.01579,30.872018],[93.993826,30.879607],[93.988232,30.856253],[93.963988,30.838442],[93.921096,30.84399],[93.894366,30.879899],[93.86432,30.887877],[93.855618,30.90422],[93.825365,30.904512],[93.788896,30.897605],[93.751392,30.905874],[93.73813,30.918129],[93.7114,30.921825],[93.699797,30.931258],[93.650274,30.921533],[93.640535,30.89887],[93.598678,30.870072],[93.614634,30.853333],[93.655661,30.857518],[93.681355,30.852457],[93.702697,30.805146],[93.674724,30.771741],[93.679904,30.75635],[93.713887,30.749627],[93.736265,30.723805],[93.785167,30.691932],[93.79014,30.664827],[93.821014,30.666192],[93.85396,30.635178],[93.862248,30.619569],[93.908042,30.625423],[93.940573,30.60025],[93.961916,30.606788],[93.977457,30.601226],[93.999006,30.572241],[94.017655,30.57634],[94.022835,30.564237],[94.06407,30.530651],[94.103233,30.519909],[94.098467,30.50731],[94.154206,30.486894],[94.169539,30.500668],[94.197305,30.499007],[94.214918,30.524108],[94.252423,30.540025],[94.268378,30.562577],[94.280603,30.562968],[94.322667,30.595664],[94.373019,30.585417],[94.372397,30.55467],[94.382136,30.541294],[94.437254,30.539341],[94.449686,30.549105],[94.449893,30.568824],[94.471029,30.573119],[94.486569,30.552034],[94.510191,30.545981],[94.576912,30.542563],[94.607165,30.549593],[94.595768,30.583563],[94.612345,30.60025],[94.65358,30.601616],[94.687976,30.620545],[94.714499,30.619374],[94.728175,30.60591],[94.784329,30.590297],[94.830743,30.610691],[94.899122,30.594981],[94.916735,30.575755],[94.949889,30.576438],[94.967709,30.587271],[94.987601,30.58083],[95.01143,30.558965],[95.047484,30.577121],[95.087683,30.570874],[95.10053,30.582879],[95.081259,30.607861],[95.087683,30.636738],[95.105917,30.660536],[95.141557,30.660828],[95.208071,30.614984],[95.223612,30.620447],[95.227963,30.643761],[95.267126,30.652734],[95.315613,30.62591],[95.343586,30.619764],[95.321415,30.597811],[95.323694,30.58327],[95.350009,30.568239],[95.366379,30.550569],[95.380055,30.561113],[95.381712,30.582684],[95.419217,30.575071],[95.431443,30.583563],[95.429578,30.60952],[95.480758,30.60669],[95.512668,30.58649],[95.549137,30.600445],[95.569651,30.582782],[95.599489,30.569605],[95.618967,30.569703],[95.661237,30.557696],[95.698949,30.554963],[95.71822,30.531041],[95.697499,30.48113],[95.754481,30.456018],[95.763599,30.424838],[95.783076,30.397561],[95.825347,30.360885],[95.86596,30.354624],[95.884609,30.344058],[95.860158,30.323217],[95.870104,30.298945],[95.918591,30.274863],[95.918591,30.260274],[95.936411,30.245781],[95.968321,30.24725],[95.994222,30.234616],[96.0367,30.256749],[96.056592,30.256064],[96.067989,30.238827],[96.091403,30.24725],[96.103214,30.239611],[96.103836,30.218747],[96.116268,30.200133],[96.13989,30.196801],[96.149215,30.212085],[96.191693,30.211106],[96.214071,30.224918],[96.224432,30.282402],[96.284522,30.308048],[96.335703,30.321749],[96.381082,30.312061],[96.426253,30.325566],[96.451533,30.31529],[96.439515,30.306384],[96.457542,30.279563],[96.479091,30.266737],[96.500227,30.281325],[96.517425,30.275744],[96.532344,30.303741],[96.559696,30.295226],[96.566741,30.280737],[96.589948,30.266639],[96.584146,30.257434],[96.631183,30.233636],[96.627453,30.205227],[96.636156,30.176712],[96.62994,30.157208],[96.599687,30.143974],[96.641336,30.143876],[96.667652,30.128875],[96.665787,30.114166],[96.636778,30.07091],[96.637399,30.030579],[96.619579,30.006235],[96.573164,29.978939],[96.56902,29.959592],[96.580002,29.941125],[96.57648,29.9201],[96.549543,29.90477],[96.53338,29.88187],[96.534209,29.868108],[96.511002,29.82258],[96.4822,29.806842],[96.476191,29.780771],[96.494218,29.732545],[96.52074,29.714332],[96.550164,29.713544],[96.568606,29.696411],[96.579795,29.657603],[96.603624,29.65376],[96.624345,29.639573],[96.641751,29.586646],[96.654183,29.565645],[96.645895,29.537243],[96.626003,29.506366],[96.601345,29.5038],[96.616057,29.487026],[96.641336,29.478736],[96.66703,29.452185],[96.686093,29.441819],[96.705985,29.418912],[96.701841,29.399851],[96.681535,29.389777],[96.623516,29.403605],[96.608804,29.389283],[96.581453,29.390172],[96.541254,29.356681],[96.58684,29.327034],[96.607976,29.32654],[96.607976,29.307759],[96.668895,29.271373],[96.681949,29.226664],[96.714067,29.17758],[96.728571,29.168671],[96.757788,29.17659],[96.777473,29.173126],[96.79322,29.183024],[96.840671,29.172631],[96.860356,29.156099],[96.883149,29.155604],[96.878176,29.129661],[96.889987,29.120847],[96.916303,29.122333],[96.91423,29.178966],[96.918996,29.19688],[96.93806,29.211625],[96.960231,29.197276],[96.982609,29.202224],[96.986546,29.256835],[96.979501,29.269692],[96.989862,29.289468],[96.991727,29.317644],[96.955465,29.3384],[96.953393,29.36251],[96.984889,29.379503],[96.994006,29.394222],[96.977222,29.462056],[96.982609,29.482486],[97.017835,29.496005],[97.057826,29.482684],[97.064457,29.495709],[97.053889,29.517415],[97.065908,29.540103],[97.088493,29.540695],[97.086421,29.507352],[97.153557,29.446163],[97.192512,29.444485],[97.209296,29.461464],[97.235612,29.447545],[97.252188,29.454653],[97.29881,29.450507],[97.285756,29.429181],[97.317045,29.411703],[97.359523,29.362016],[97.337351,29.354309],[97.345225,29.338202],[97.335486,29.320906],[97.358487,29.302519],[97.367189,29.28403],[97.396613,29.286205],[97.397028,29.233985],[97.418163,29.184707],[97.402208,29.131741],[97.401172,29.111934],[97.410289,29.068642],[97.489236,29.082612],[97.518866,29.098958],[97.545804,29.096481],[97.549741,29.10609],[97.519695,29.136494],[97.541038,29.187379],[97.559687,29.193713],[97.580408,29.180154],[97.615219,29.206677],[97.576263,29.243877],[97.560308,29.249713],[97.547669,29.281064],[97.588903,29.277603],[97.611903,29.290062],[97.645471,29.269395],[97.671372,29.272856],[97.693129,29.253768],[97.744724,29.23161],[97.750941,29.213307],[97.786166,29.184707],[97.790932,29.167483],[97.821184,29.145505],[97.818905,29.133424],[97.840248,29.105496],[97.857239,29.101533],[97.932663,29.104901],[97.953384,29.14194],[97.985087,29.135108],[98.006015,29.101731],[98.037718,29.083603],[98.039583,29.03336],[98.060718,29.025827],[98.079989,29.033063],[98.116665,29.000348],[98.097809,28.986069],[98.092214,28.960877],[98.111692,28.937862],[98.130755,28.903926],[98.147746,28.892314],[98.147124,28.862135],[98.167224,28.869482],[98.203485,28.863625],[98.217161,28.895291],[98.240576,28.920102],[98.263369,28.895093],[98.305225,28.870574],[98.306468,28.842276],[98.318072,28.806322],[98.329675,28.78983],[98.35682,28.787247],[98.37091,28.767076],[98.41401,28.774628],[98.437839,28.788737],[98.453794,28.775721],[98.480316,28.732885],[98.464776,28.699876],[98.475343,28.68476],[98.477208,28.649846],[98.509326,28.589838],[98.530668,28.578588],[98.553876,28.54822],[98.5402,28.528799],[98.541029,28.510969],[98.589516,28.468822],[98.607128,28.458257],[98.635102,28.461347],[98.684832,28.435231]]]]}},{"type":"Feature","properties":{"adcode":540400,"name":"林芝市","center":[94.362348,29.654693],"centroid":[95.239298,29.198982],"childrenNum":7,"level":"city","parent":{"adcode":540000},"subFeatureIndex":3,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[94.154206,30.486894],[94.151305,30.48025],[94.099917,30.45592],[94.110692,30.423274],[94.106548,30.389542],[94.088521,30.379176],[94.063034,30.378882],[94.049358,30.366558],[94.024493,30.368026],[94.010817,30.326838],[94.014547,30.306384],[94.00025,30.297281],[93.95715,30.299533],[93.878411,30.333002],[93.858519,30.33036],[93.846915,30.299043],[93.80796,30.305797],[93.783923,30.296498],[93.767139,30.279171],[93.732328,30.294443],[93.669337,30.28436],[93.650066,30.304818],[93.63121,30.301001],[93.611525,30.285241],[93.554957,30.290038],[93.535273,30.304329],[93.51538,30.30198],[93.437884,30.326935],[93.408253,30.348363],[93.40701,30.381132],[93.424001,30.387977],[93.429596,30.407925],[93.359352,30.469796],[93.310658,30.469503],[93.274189,30.49637],[93.246838,30.494807],[93.242901,30.474584],[93.216171,30.453086],[93.183846,30.436666],[93.148828,30.404601],[93.1308,30.412911],[93.111737,30.448493],[93.093917,30.46022],[93.094539,30.480837],[93.08335,30.490704],[93.036728,30.502719],[93.024709,30.510924],[93.021394,30.530651],[93.024295,30.584148],[92.987412,30.593615],[92.974772,30.57839],[92.918618,30.608349],[92.897276,30.60669],[92.887123,30.596152],[92.888159,30.568629],[92.875726,30.532799],[92.841122,30.541294],[92.79305,30.527917],[92.783933,30.51903],[92.76404,30.472629],[92.786212,30.456604],[92.794293,30.439892],[92.779581,30.402254],[92.769428,30.400885],[92.744148,30.358439],[92.750157,30.327229],[92.743734,30.323315],[92.70913,30.33584],[92.695869,30.327914],[92.710166,30.314703],[92.708301,30.29454],[92.662094,30.293562],[92.640958,30.30609],[92.619201,30.301196],[92.626246,30.282206],[92.621066,30.256259],[92.623967,30.226192],[92.616715,30.219335],[92.625418,30.201504],[92.61112,30.178966],[92.583976,30.163481],[92.578588,30.134562],[92.563669,30.134268],[92.554552,30.096905],[92.508966,30.086017],[92.486588,30.098671],[92.438515,30.073068],[92.438308,30.062276],[92.417794,30.049323],[92.423389,30.036566],[92.442866,30.031069],[92.434371,30.014775],[92.410956,30.013597],[92.375316,29.99573],[92.364749,29.975895],[92.324757,29.987973],[92.292018,29.963226],[92.247675,29.936704],[92.223018,29.936114],[92.191936,29.95085],[92.177224,29.948099],[92.167071,29.914794],[92.173287,29.904475],[92.166864,29.881084],[92.177224,29.874399],[92.244153,29.859653],[92.269847,29.836939],[92.292433,29.790315],[92.306108,29.786281],[92.329937,29.803891],[92.334911,29.82435],[92.356046,29.827891],[92.393965,29.823072],[92.408677,29.803694],[92.445767,29.802809],[92.460065,29.78756],[92.489074,29.797792],[92.503993,29.792971],[92.501921,29.742094],[92.524714,29.714332],[92.506065,29.683805],[92.478714,29.656223],[92.475605,29.60508],[92.464416,29.591772],[92.474569,29.558052],[92.509795,29.545922],[92.51539,29.567815],[92.531966,29.577181],[92.532588,29.603996],[92.563462,29.6511],[92.587913,29.664499],[92.619823,29.65711],[92.658571,29.68932],[92.69649,29.684494],[92.715968,29.649524],[92.749743,29.648933],[92.77523,29.670113],[92.79305,29.67494],[92.825789,29.670803],[92.840708,29.695623],[92.864951,29.694933],[92.883807,29.717581],[92.902249,29.706652],[92.930015,29.702811],[92.940583,29.690699],[92.975394,29.671492],[92.998808,29.643415],[92.987619,29.609811],[93.024295,29.567519],[93.056412,29.557559],[93.062214,29.542865],[93.083971,29.525011],[93.095989,29.48673],[93.077548,29.469261],[93.073611,29.4355],[93.094746,29.410715],[93.094124,29.373378],[93.115881,29.358657],[93.101584,29.334051],[93.083557,29.327133],[93.046052,29.327429],[93.025124,29.305386],[93.028439,29.274142],[93.014971,29.235667],[92.951565,29.184608],[92.943276,29.155901],[92.917375,29.124314],[92.880492,29.122036],[92.856248,29.112132],[92.825789,29.081819],[92.793464,29.063192],[92.778338,28.997373],[92.765905,28.969209],[92.776059,28.951255],[92.74995,28.915835],[92.724256,28.916232],[92.697734,28.898567],[92.6824,28.875439],[92.675355,28.838403],[92.654427,28.819235],[92.62003,28.833636],[92.596408,28.825195],[92.560768,28.835821],[92.548336,28.854192],[92.536732,28.840489],[92.519741,28.84605],[92.497777,28.867794],[92.452812,28.839396],[92.428362,28.802249],[92.439137,28.763697],[92.493633,28.71489],[92.509795,28.720856],[92.526164,28.744813],[92.533002,28.780391],[92.552273,28.803143],[92.566985,28.803044],[92.587498,28.787545],[92.638679,28.767672],[92.654427,28.756044],[92.661886,28.765287],[92.736896,28.748292],[92.777302,28.745211],[92.800716,28.719762],[92.804446,28.701467],[92.851068,28.69729],[92.868474,28.701368],[92.874897,28.73209],[92.889195,28.755846],[92.92069,28.769659],[92.943069,28.760914],[92.949493,28.768268],[92.974358,28.731294],[92.997772,28.740539],[93.009169,28.735271],[93.087701,28.723938],[93.123134,28.72871],[93.197315,28.724534],[93.251811,28.747596],[93.346298,28.749087],[93.364325,28.715487],[93.378001,28.708229],[93.41074,28.714095],[93.46938,28.701865],[93.467722,28.668647],[93.514137,28.664768],[93.558687,28.673123],[93.578786,28.670139],[93.608417,28.680384],[93.632039,28.673322],[93.636598,28.654919],[93.702076,28.666658],[93.717409,28.66427],[93.755743,28.688838],[93.78268,28.650144],[93.802572,28.655417],[93.811689,28.625369],[93.831374,28.624772],[93.837383,28.598199],[93.854996,28.577593],[93.881933,28.566143],[93.889807,28.531887],[93.878825,28.504792],[93.890014,28.480381],[93.874474,28.465234],[93.886285,28.43573],[93.888771,28.396046],[93.907834,28.374802],[93.942438,28.36343],[93.994655,28.359938],[94.031745,28.362233],[94.039205,28.339186],[94.076917,28.288485],[94.123332,28.243653],[94.1569,28.231768],[94.161665,28.198302],[94.151719,28.182515],[94.162494,28.15813],[94.154828,28.145435],[94.161044,28.110143],[94.146332,28.085541],[94.162909,28.075839],[94.195441,28.03422],[94.205594,27.996488],[94.235639,27.981873],[94.262576,27.983575],[94.292207,27.962949],[94.32391,27.893235],[94.323081,27.845431],[94.35064,27.829592],[94.320802,27.780756],[94.312514,27.737619],[94.333027,27.723068],[94.34691,27.729591],[94.362451,27.714237],[94.341109,27.708917],[94.265063,27.651292],[94.233981,27.63211],[94.216576,27.602678],[94.229216,27.591425],[94.235017,27.568716],[94.253459,27.55545],[94.277495,27.581177],[94.324946,27.585698],[94.353127,27.578564],[94.399956,27.589215],[94.44347,27.585196],[94.478281,27.602176],[94.52511,27.596148],[94.66021,27.650187],[94.709733,27.678502],[94.781013,27.699382],[94.81686,27.721061],[94.885861,27.743137],[94.947609,27.79219],[95.015367,27.82899],[95.067169,27.840619],[95.172638,27.891331],[95.24309,27.916378],[95.286603,27.940017],[95.310432,27.975265],[95.32846,28.017408],[95.35291,28.040624],[95.371559,28.110243],[95.396839,28.142337],[95.437659,28.161928],[95.520335,28.180716],[95.587471,28.208093],[95.674292,28.254139],[95.740184,28.275307],[95.787842,28.270415],[95.832185,28.294874],[95.853527,28.290083],[95.874248,28.297569],[95.899942,28.278103],[95.907816,28.241556],[95.936204,28.240557],[95.989042,28.198402],[96.024682,28.191908],[96.07234,28.192407],[96.098034,28.212289],[96.16662,28.208093],[96.195629,28.213388],[96.224846,28.227073],[96.274162,28.228671],[96.285144,28.215885],[96.282243,28.189709],[96.295711,28.142536],[96.368856,28.118442],[96.400145,28.120242],[96.396415,28.148934],[96.424388,28.160928],[96.45174,28.152432],[96.48738,28.107443],[96.499812,28.067337],[96.510794,28.07774],[96.537732,28.075239],[96.540425,28.064035],[96.568399,28.061234],[96.591192,28.039423],[96.623309,28.024513],[96.638642,27.989381],[96.682778,27.949731],[96.708057,27.956841],[96.746184,27.944524],[96.768563,27.931403],[96.788869,27.9294],[96.810004,27.89043],[96.836734,27.887323],[96.849788,27.874597],[96.883978,27.873294],[96.907393,27.884017],[96.937231,27.877403],[96.973699,27.860566],[96.998357,27.830594],[97.008511,27.807834],[97.030889,27.815455],[97.055133,27.80272],[97.048916,27.784066],[97.062799,27.742635],[97.093466,27.737819],[97.101547,27.779553],[97.134908,27.791588],[97.139052,27.801617],[97.168062,27.811845],[97.206188,27.852047],[97.251152,27.89043],[97.309171,27.913072],[97.323261,27.897343],[97.32409,27.880509],[97.357036,27.873194],[97.386253,27.886021],[97.37237,27.907562],[97.390811,27.916478],[97.375478,27.926495],[97.377757,27.966855],[97.391226,27.993385],[97.412983,28.013604],[97.395992,28.029817],[97.378793,28.031118],[97.378379,28.062635],[97.320567,28.054331],[97.30627,28.073138],[97.312072,28.089442],[97.341081,28.105843],[97.329685,28.140637],[97.351649,28.149034],[97.362424,28.198102],[97.346261,28.212988],[97.35082,28.236862],[97.399307,28.239458],[97.41464,28.255038],[97.403244,28.281497],[97.422929,28.29747],[97.460641,28.268118],[97.481569,28.279101],[97.470172,28.304057],[97.48219,28.31314],[97.512029,28.315535],[97.518452,28.327611],[97.489236,28.345372],[97.484677,28.385973],[97.501254,28.393752],[97.507263,28.412101],[97.50001,28.428951],[97.521353,28.444801],[97.506227,28.471413],[97.508092,28.494929],[97.52156,28.495626],[97.569633,28.541547],[97.587245,28.542145],[97.599056,28.517045],[97.61812,28.515551],[97.635111,28.531887],[97.663913,28.530891],[97.685877,28.519934],[97.695201,28.501405],[97.716751,28.496224],[97.73685,28.465832],[97.738094,28.396445],[97.751769,28.377395],[97.770004,28.374104],[97.800878,28.326713],[97.816419,28.3329],[97.842734,28.326813],[97.849365,28.348465],[97.871329,28.361535],[97.907798,28.36333],[97.928104,28.340383],[97.963744,28.312541],[97.960015,28.295773],[97.991718,28.287387],[98.02052,28.25344],[98.008294,28.213788],[98.033367,28.187311],[98.056574,28.202299],[98.089935,28.195405],[98.097394,28.166625],[98.118737,28.160928],[98.139458,28.142436],[98.150025,28.155431],[98.175305,28.165626],[98.169088,28.204297],[98.204107,28.219482],[98.216954,28.212889],[98.22835,28.225675],[98.265026,28.239858],[98.244513,28.278402],[98.236846,28.309347],[98.207422,28.330405],[98.209701,28.358542],[98.230215,28.348166],[98.234981,28.370014],[98.267098,28.377894],[98.281189,28.394051],[98.301288,28.384377],[98.303982,28.35914],[98.322009,28.346769],[98.318279,28.324517],[98.338793,28.295972],[98.355369,28.29178],[98.377334,28.24595],[98.377748,28.207794],[98.370288,28.183814],[98.390181,28.164327],[98.389352,28.114643],[98.400127,28.104743],[98.428721,28.104543],[98.458145,28.13064],[98.464569,28.151333],[98.507461,28.144236],[98.536677,28.176419],[98.585371,28.181316],[98.626606,28.165526],[98.631993,28.179517],[98.664318,28.208892],[98.680895,28.207394],[98.712391,28.22947],[98.710111,28.288785],[98.719021,28.310346],[98.74658,28.321224],[98.753625,28.336891],[98.740364,28.348565],[98.719021,28.388765],[98.705138,28.393253],[98.706796,28.412898],[98.684832,28.435231],[98.635102,28.461347],[98.607128,28.458257],[98.589516,28.468822],[98.541029,28.510969],[98.5402,28.528799],[98.553876,28.54822],[98.530668,28.578588],[98.509326,28.589838],[98.477208,28.649846],[98.475343,28.68476],[98.464776,28.699876],[98.480316,28.732885],[98.453794,28.775721],[98.437839,28.788737],[98.41401,28.774628],[98.37091,28.767076],[98.35682,28.787247],[98.329675,28.78983],[98.318072,28.806322],[98.306468,28.842276],[98.305225,28.870574],[98.263369,28.895093],[98.240576,28.920102],[98.217161,28.895291],[98.203485,28.863625],[98.167224,28.869482],[98.147124,28.862135],[98.147746,28.892314],[98.130755,28.903926],[98.111692,28.937862],[98.092214,28.960877],[98.097809,28.986069],[98.116665,29.000348],[98.079989,29.033063],[98.060718,29.025827],[98.039583,29.03336],[98.037718,29.083603],[98.006015,29.101731],[97.985087,29.135108],[97.953384,29.14194],[97.932663,29.104901],[97.857239,29.101533],[97.840248,29.105496],[97.818905,29.133424],[97.821184,29.145505],[97.790932,29.167483],[97.786166,29.184707],[97.750941,29.213307],[97.744724,29.23161],[97.693129,29.253768],[97.671372,29.272856],[97.645471,29.269395],[97.611903,29.290062],[97.588903,29.277603],[97.547669,29.281064],[97.560308,29.249713],[97.576263,29.243877],[97.615219,29.206677],[97.580408,29.180154],[97.559687,29.193713],[97.541038,29.187379],[97.519695,29.136494],[97.549741,29.10609],[97.545804,29.096481],[97.518866,29.098958],[97.489236,29.082612],[97.410289,29.068642],[97.401172,29.111934],[97.402208,29.131741],[97.418163,29.184707],[97.397028,29.233985],[97.396613,29.286205],[97.367189,29.28403],[97.358487,29.302519],[97.335486,29.320906],[97.345225,29.338202],[97.337351,29.354309],[97.359523,29.362016],[97.317045,29.411703],[97.285756,29.429181],[97.29881,29.450507],[97.252188,29.454653],[97.235612,29.447545],[97.209296,29.461464],[97.192512,29.444485],[97.153557,29.446163],[97.086421,29.507352],[97.088493,29.540695],[97.065908,29.540103],[97.053889,29.517415],[97.064457,29.495709],[97.057826,29.482684],[97.017835,29.496005],[96.982609,29.482486],[96.977222,29.462056],[96.994006,29.394222],[96.984889,29.379503],[96.953393,29.36251],[96.955465,29.3384],[96.991727,29.317644],[96.989862,29.289468],[96.979501,29.269692],[96.986546,29.256835],[96.982609,29.202224],[96.960231,29.197276],[96.93806,29.211625],[96.918996,29.19688],[96.91423,29.178966],[96.916303,29.122333],[96.889987,29.120847],[96.878176,29.129661],[96.883149,29.155604],[96.860356,29.156099],[96.840671,29.172631],[96.79322,29.183024],[96.777473,29.173126],[96.757788,29.17659],[96.728571,29.168671],[96.714067,29.17758],[96.681949,29.226664],[96.668895,29.271373],[96.607976,29.307759],[96.607976,29.32654],[96.58684,29.327034],[96.541254,29.356681],[96.581453,29.390172],[96.608804,29.389283],[96.623516,29.403605],[96.681535,29.389777],[96.701841,29.399851],[96.705985,29.418912],[96.686093,29.441819],[96.66703,29.452185],[96.641336,29.478736],[96.616057,29.487026],[96.601345,29.5038],[96.626003,29.506366],[96.645895,29.537243],[96.654183,29.565645],[96.641751,29.586646],[96.624345,29.639573],[96.603624,29.65376],[96.579795,29.657603],[96.568606,29.696411],[96.550164,29.713544],[96.52074,29.714332],[96.494218,29.732545],[96.476191,29.780771],[96.4822,29.806842],[96.511002,29.82258],[96.534209,29.868108],[96.53338,29.88187],[96.549543,29.90477],[96.57648,29.9201],[96.580002,29.941125],[96.56902,29.959592],[96.573164,29.978939],[96.619579,30.006235],[96.637399,30.030579],[96.636778,30.07091],[96.665787,30.114166],[96.667652,30.128875],[96.641336,30.143876],[96.599687,30.143974],[96.62994,30.157208],[96.636156,30.176712],[96.627453,30.205227],[96.631183,30.233636],[96.584146,30.257434],[96.589948,30.266639],[96.566741,30.280737],[96.559696,30.295226],[96.532344,30.303741],[96.517425,30.275744],[96.500227,30.281325],[96.479091,30.266737],[96.457542,30.279563],[96.439515,30.306384],[96.451533,30.31529],[96.426253,30.325566],[96.381082,30.312061],[96.335703,30.321749],[96.284522,30.308048],[96.224432,30.282402],[96.214071,30.224918],[96.191693,30.211106],[96.149215,30.212085],[96.13989,30.196801],[96.116268,30.200133],[96.103836,30.218747],[96.103214,30.239611],[96.091403,30.24725],[96.067989,30.238827],[96.056592,30.256064],[96.0367,30.256749],[95.994222,30.234616],[95.968321,30.24725],[95.936411,30.245781],[95.918591,30.260274],[95.918591,30.274863],[95.870104,30.298945],[95.860158,30.323217],[95.884609,30.344058],[95.86596,30.354624],[95.825347,30.360885],[95.783076,30.397561],[95.763599,30.424838],[95.754481,30.456018],[95.697499,30.48113],[95.71822,30.531041],[95.698949,30.554963],[95.661237,30.557696],[95.618967,30.569703],[95.599489,30.569605],[95.569651,30.582782],[95.549137,30.600445],[95.512668,30.58649],[95.480758,30.60669],[95.429578,30.60952],[95.431443,30.583563],[95.419217,30.575071],[95.381712,30.582684],[95.380055,30.561113],[95.366379,30.550569],[95.350009,30.568239],[95.323694,30.58327],[95.321415,30.597811],[95.343586,30.619764],[95.315613,30.62591],[95.267126,30.652734],[95.227963,30.643761],[95.223612,30.620447],[95.208071,30.614984],[95.141557,30.660828],[95.105917,30.660536],[95.087683,30.636738],[95.081259,30.607861],[95.10053,30.582879],[95.087683,30.570874],[95.047484,30.577121],[95.01143,30.558965],[94.987601,30.58083],[94.967709,30.587271],[94.949889,30.576438],[94.916735,30.575755],[94.899122,30.594981],[94.830743,30.610691],[94.784329,30.590297],[94.728175,30.60591],[94.714499,30.619374],[94.687976,30.620545],[94.65358,30.601616],[94.612345,30.60025],[94.595768,30.583563],[94.607165,30.549593],[94.576912,30.542563],[94.510191,30.545981],[94.486569,30.552034],[94.471029,30.573119],[94.449893,30.568824],[94.449686,30.549105],[94.437254,30.539341],[94.382136,30.541294],[94.372397,30.55467],[94.373019,30.585417],[94.322667,30.595664],[94.280603,30.562968],[94.268378,30.562577],[94.252423,30.540025],[94.214918,30.524108],[94.197305,30.499007],[94.169539,30.500668],[94.154206,30.486894]]]]}},{"type":"Feature","properties":{"adcode":540500,"name":"山南市","center":[91.766529,29.236023],"centroid":[92.266609,28.303935],"childrenNum":12,"level":"city","parent":{"adcode":540000},"subFeatureIndex":4,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[90.349226,29.307363],[90.338244,29.274636],[90.304055,29.257329],[90.309442,29.247141],[90.297424,29.204797],[90.266757,29.173126],[90.245207,29.170651],[90.231946,29.146],[90.22573,29.117183],[90.245622,29.081819],[90.246451,29.054075],[90.223865,29.030981],[90.20563,29.024439],[90.214748,29.004611],[90.206666,28.977441],[90.182837,28.965737],[90.178279,28.927841],[90.197135,28.919308],[90.188432,28.891222],[90.219721,28.833338],[90.22345,28.801255],[90.202937,28.768169],[90.18636,28.776417],[90.168125,28.754653],[90.179315,28.736066],[90.170405,28.711211],[90.150513,28.708229],[90.117774,28.683566],[90.115909,28.672128],[90.077575,28.653029],[90.063692,28.617806],[90.093945,28.612332],[90.113008,28.594217],[90.121503,28.566641],[90.128341,28.503298],[90.117774,28.490147],[90.08089,28.473207],[90.091873,28.41918],[90.088764,28.39455],[90.108035,28.371311],[90.130413,28.374403],[90.12544,28.35086],[90.13663,28.338188],[90.151756,28.347667],[90.229252,28.347966],[90.225315,28.319228],[90.234432,28.307551],[90.208738,28.249246],[90.201901,28.210591],[90.18781,28.165526],[90.214748,28.148234],[90.245207,28.145935],[90.293073,28.154831],[90.305091,28.133039],[90.322496,28.13084],[90.367668,28.088842],[90.384245,28.060834],[90.437083,28.063235],[90.454488,28.047828],[90.479353,28.044726],[90.514165,28.061934],[90.569282,28.044026],[90.591868,28.021311],[90.620877,28.042925],[90.640148,28.044226],[90.701896,28.076039],[90.741266,28.053031],[90.782293,28.039623],[90.795762,28.044926],[90.806329,28.014905],[90.843834,27.97086],[90.888591,27.949531],[90.930655,27.943122],[90.961736,27.953537],[90.976448,27.93561],[90.964844,27.900549],[91.031151,27.855655],[91.07798,27.846534],[91.113413,27.846133],[91.122945,27.862972],[91.155269,27.894337],[91.146981,27.925494],[91.168324,27.949331],[91.161071,27.967656],[91.216396,27.989281],[91.251829,27.970359],[91.272343,27.989181],[91.289748,28.022311],[91.312748,28.037122],[91.309847,28.057833],[91.33637,28.061134],[91.351082,28.045427],[91.427957,28.013004],[91.436038,28.000993],[91.465254,28.002695],[91.468569,27.984376],[91.490119,27.97146],[91.486597,27.937513],[91.516228,27.9292],[91.552696,27.907362],[91.555183,27.888726],[91.588958,27.900549],[91.611544,27.891532],[91.624598,27.869286],[91.61921,27.856657],[91.571138,27.857259],[91.555804,27.851144],[91.544408,27.820368],[91.576111,27.812447],[91.616517,27.816959],[91.629778,27.802419],[91.642211,27.766613],[91.634337,27.71785],[91.622526,27.692456],[91.571138,27.651191],[91.562228,27.627389],[91.582949,27.599162],[91.565958,27.57364],[91.584814,27.540372],[91.611751,27.530823],[91.627292,27.509005],[91.663553,27.507296],[91.673706,27.491307],[91.718878,27.46737],[91.753896,27.462743],[91.803834,27.481049],[91.839266,27.489698],[91.886925,27.48306],[91.946808,27.464151],[92.010421,27.474712],[92.022025,27.444333],[92.03798,27.432963],[92.064917,27.391299],[92.093305,27.331694],[92.126044,27.273165],[92.091647,27.264499],[92.071341,27.23769],[92.061187,27.190608],[92.032385,27.16822],[92.036529,27.135133],[92.028241,27.121815],[92.029692,27.078721],[92.043782,27.052777],[92.075899,27.041266],[92.086467,27.014606],[92.102836,27.000364],[92.105323,26.983696],[92.124801,26.960054],[92.114233,26.928118],[92.116927,26.90315],[92.109053,26.854815],[92.198153,26.869985],[92.286009,26.892433],[92.342992,26.900521],[92.405154,26.902644],[92.496741,26.921851],[92.549165,26.941561],[92.595579,26.949342],[92.665616,26.952374],[92.681986,26.947927],[92.773779,26.90315],[92.802996,26.895264],[92.909294,26.914371],[92.996529,26.899106],[93.050611,26.88394],[93.111323,26.880198],[93.23254,26.906789],[93.367226,26.920841],[93.567804,26.938023],[93.625408,26.955608],[93.667265,26.974907],[93.71513,27.003496],[93.74704,27.015818],[93.817077,27.025412],[93.842149,27.04581],[93.846501,27.070545],[93.849401,27.168623],[93.862248,27.18718],[93.92006,27.246661],[93.987195,27.322227],[94.05661,27.375696],[94.184044,27.494927],[94.210774,27.527807],[94.253459,27.55545],[94.235017,27.568716],[94.229216,27.591425],[94.216576,27.602678],[94.233981,27.63211],[94.265063,27.651292],[94.341109,27.708917],[94.362451,27.714237],[94.34691,27.729591],[94.333027,27.723068],[94.312514,27.737619],[94.320802,27.780756],[94.35064,27.829592],[94.323081,27.845431],[94.32391,27.893235],[94.292207,27.962949],[94.262576,27.983575],[94.235639,27.981873],[94.205594,27.996488],[94.195441,28.03422],[94.162909,28.075839],[94.146332,28.085541],[94.161044,28.110143],[94.154828,28.145435],[94.162494,28.15813],[94.151719,28.182515],[94.161665,28.198302],[94.1569,28.231768],[94.123332,28.243653],[94.076917,28.288485],[94.039205,28.339186],[94.031745,28.362233],[93.994655,28.359938],[93.942438,28.36343],[93.907834,28.374802],[93.888771,28.396046],[93.886285,28.43573],[93.874474,28.465234],[93.890014,28.480381],[93.878825,28.504792],[93.889807,28.531887],[93.881933,28.566143],[93.854996,28.577593],[93.837383,28.598199],[93.831374,28.624772],[93.811689,28.625369],[93.802572,28.655417],[93.78268,28.650144],[93.755743,28.688838],[93.717409,28.66427],[93.702076,28.666658],[93.636598,28.654919],[93.632039,28.673322],[93.608417,28.680384],[93.578786,28.670139],[93.558687,28.673123],[93.514137,28.664768],[93.467722,28.668647],[93.46938,28.701865],[93.41074,28.714095],[93.378001,28.708229],[93.364325,28.715487],[93.346298,28.749087],[93.251811,28.747596],[93.197315,28.724534],[93.123134,28.72871],[93.087701,28.723938],[93.009169,28.735271],[92.997772,28.740539],[92.974358,28.731294],[92.949493,28.768268],[92.943069,28.760914],[92.92069,28.769659],[92.889195,28.755846],[92.874897,28.73209],[92.868474,28.701368],[92.851068,28.69729],[92.804446,28.701467],[92.800716,28.719762],[92.777302,28.745211],[92.736896,28.748292],[92.661886,28.765287],[92.654427,28.756044],[92.638679,28.767672],[92.587498,28.787545],[92.566985,28.803044],[92.552273,28.803143],[92.533002,28.780391],[92.526164,28.744813],[92.509795,28.720856],[92.493633,28.71489],[92.439137,28.763697],[92.428362,28.802249],[92.452812,28.839396],[92.497777,28.867794],[92.519741,28.84605],[92.536732,28.840489],[92.548336,28.854192],[92.560768,28.835821],[92.596408,28.825195],[92.62003,28.833636],[92.654427,28.819235],[92.675355,28.838403],[92.6824,28.875439],[92.697734,28.898567],[92.724256,28.916232],[92.74995,28.915835],[92.776059,28.951255],[92.765905,28.969209],[92.778338,28.997373],[92.793464,29.063192],[92.825789,29.081819],[92.856248,29.112132],[92.880492,29.122036],[92.917375,29.124314],[92.943276,29.155901],[92.951565,29.184608],[93.014971,29.235667],[93.028439,29.274142],[93.025124,29.305386],[93.046052,29.327429],[93.083557,29.327133],[93.101584,29.334051],[93.115881,29.358657],[93.094124,29.373378],[93.094746,29.410715],[93.073611,29.4355],[93.077548,29.469261],[93.095989,29.48673],[93.083971,29.525011],[93.062214,29.542865],[93.056412,29.557559],[93.024295,29.567519],[92.987619,29.609811],[92.998808,29.643415],[92.975394,29.671492],[92.940583,29.690699],[92.930015,29.702811],[92.902249,29.706652],[92.883807,29.717581],[92.864951,29.694933],[92.840708,29.695623],[92.825789,29.670803],[92.79305,29.67494],[92.77523,29.670113],[92.749743,29.648933],[92.715968,29.649524],[92.69649,29.684494],[92.658571,29.68932],[92.619823,29.65711],[92.587913,29.664499],[92.563462,29.6511],[92.532588,29.603996],[92.531966,29.577181],[92.51539,29.567815],[92.509795,29.545922],[92.474569,29.558052],[92.464416,29.591772],[92.475605,29.60508],[92.478714,29.656223],[92.506065,29.683805],[92.524714,29.714332],[92.501921,29.742094],[92.503993,29.792971],[92.489074,29.797792],[92.460065,29.78756],[92.445767,29.802809],[92.408677,29.803694],[92.393965,29.823072],[92.378424,29.784707],[92.364541,29.775851],[92.362884,29.753413],[92.384226,29.729001],[92.386298,29.687252],[92.371379,29.667946],[92.387956,29.638587],[92.384848,29.626467],[92.339884,29.612965],[92.325793,29.624102],[92.319577,29.611487],[92.290982,29.588815],[92.28518,29.566828],[92.262802,29.574519],[92.249748,29.555587],[92.234621,29.549768],[92.185098,29.561997],[92.148422,29.542766],[92.12853,29.52294],[92.091854,29.53596],[92.063259,29.528464],[92.042331,29.549867],[92.000061,29.554897],[91.989907,29.568505],[91.93106,29.576787],[91.911997,29.562687],[91.893555,29.576984],[91.842582,29.58221],[91.814194,29.573336],[91.802798,29.549571],[91.786843,29.55539],[91.76032,29.53961],[91.731932,29.543161],[91.726959,29.524518],[91.692148,29.519783],[91.681788,29.536848],[91.660859,29.541582],[91.648634,29.524913],[91.63185,29.528365],[91.625012,29.54464],[91.633093,29.575505],[91.596417,29.575012],[91.572174,29.56604],[91.547723,29.575407],[91.524309,29.555488],[91.459659,29.522742],[91.428785,29.513666],[91.404956,29.489789],[91.377812,29.489493],[91.35419,29.502616],[91.341136,29.50015],[91.312541,29.52077],[91.287469,29.527083],[91.223234,29.519684],[91.217018,29.527182],[91.170603,29.505675],[91.155684,29.481894],[91.133305,29.46482],[91.107611,29.463339],[91.077359,29.432834],[91.056016,29.435698],[91.058503,29.415752],[91.037989,29.412394],[90.98225,29.379405],[90.939979,29.373576],[90.929826,29.358756],[90.893772,29.346207],[90.762815,29.32476],[90.745824,29.336423],[90.708734,29.337905],[90.658175,29.314481],[90.651337,29.297576],[90.63476,29.293226],[90.609895,29.268406],[90.590625,29.274636],[90.564516,29.259604],[90.522039,29.247933],[90.477903,29.251592],[90.443921,29.237942],[90.424029,29.244471],[90.413254,29.260296],[90.377614,29.292533],[90.349226,29.307363]]]]}},{"type":"Feature","properties":{"adcode":540600,"name":"那曲市","center":[92.060214,31.476004],"centroid":[89.24948,32.783399],"childrenNum":11,"level":"city","parent":{"adcode":540000},"subFeatureIndex":5,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[94.759464,32.529374],[94.757806,32.546291],[94.772725,32.555082],[94.745373,32.560528],[94.737499,32.587374],[94.717193,32.604088],[94.687562,32.604279],[94.690256,32.614497],[94.638453,32.645527],[94.614624,32.673587],[94.601156,32.663375],[94.591831,32.640658],[94.596804,32.630061],[94.569038,32.628915],[94.535471,32.598167],[94.508948,32.603802],[94.48574,32.594824],[94.473101,32.60915],[94.462119,32.605234],[94.463569,32.572471],[94.434145,32.563108],[94.404929,32.59874],[94.39519,32.594251],[94.376956,32.562153],[94.383379,32.550495],[94.367217,32.521727],[94.353541,32.532911],[94.294279,32.519815],[94.292207,32.502798],[94.244756,32.516948],[94.234189,32.510447],[94.196891,32.516183],[94.177621,32.483101],[94.187981,32.470094],[94.180107,32.455459],[94.154206,32.455363],[94.137629,32.433837],[94.102404,32.44771],[94.091836,32.463398],[94.052674,32.470668],[94.031953,32.449145],[94.011232,32.446179],[93.996313,32.463303],[93.9787,32.459859],[93.959844,32.484918],[93.92897,32.476597],[93.913222,32.462059],[93.898096,32.472676],[93.869501,32.474015],[93.858726,32.464738],[93.859555,32.485491],[93.850437,32.510925],[93.827644,32.520963],[93.822671,32.547533],[93.762995,32.56865],[93.721968,32.578108],[93.678661,32.568076],[93.650066,32.570274],[93.620435,32.523926],[93.57257,32.501173],[93.554957,32.485969],[93.534444,32.486352],[93.516417,32.475928],[93.501705,32.503372],[93.477254,32.503946],[93.475389,32.528227],[93.462957,32.556038],[93.445965,32.562344],[93.41219,32.557853],[93.385668,32.525168],[93.338424,32.571229],[93.308379,32.5804],[93.313352,32.602942],[93.302991,32.617935],[93.262793,32.625192],[93.239792,32.662326],[93.210369,32.655358],[93.17535,32.670438],[93.159603,32.644763],[93.117125,32.647436],[93.107386,32.637221],[93.077133,32.627292],[93.060349,32.632543],[93.041701,32.67435],[93.047502,32.693911],[93.023673,32.703069],[93.02098,32.734449],[93.001088,32.741124],[92.983475,32.721956],[92.964412,32.714611],[92.938303,32.720048],[92.913853,32.704596],[92.879041,32.710796],[92.876969,32.696964],[92.822681,32.729776],[92.789527,32.720048],[92.756374,32.743127],[92.711824,32.753806],[92.687995,32.766009],[92.667895,32.731874],[92.636192,32.72043],[92.624382,32.732542],[92.609462,32.72806],[92.600138,32.743604],[92.571129,32.7334],[92.524507,32.734163],[92.506272,32.744748],[92.488038,32.743794],[92.453849,32.764674],[92.410956,32.747799],[92.355839,32.764579],[92.358325,32.749611],[92.336361,32.73874],[92.322685,32.750755],[92.301135,32.749325],[92.291811,32.730253],[92.255342,32.720716],[92.234207,32.738454],[92.222603,32.734068],[92.198567,32.754759],[92.209549,32.792411],[92.193801,32.802131],[92.227576,32.820902],[92.230684,32.840239],[92.205819,32.85643],[92.205198,32.866144],[92.153603,32.873571],[92.148837,32.884043],[92.118791,32.876808],[92.104908,32.861573],[92.039845,32.861478],[92.025962,32.849573],[92.027619,32.834334],[91.998817,32.835382],[91.990529,32.824331],[91.956132,32.82052],[91.93997,32.837858],[91.922565,32.869476],[91.89397,32.885947],[91.897078,32.90727],[91.860195,32.902225],[91.839681,32.947997],[91.811708,32.954656],[91.798239,32.941432],[91.780834,32.946094],[91.753482,32.968448],[91.73504,32.97016],[91.725509,32.98395],[91.683238,32.990036],[91.664796,32.999734],[91.664589,33.013044],[91.583363,33.037662],[91.553732,33.067309],[91.560156,33.076144],[91.535705,33.099985],[91.483696,33.105018],[91.462146,33.092007],[91.458831,33.073864],[91.43583,33.066169],[91.424848,33.080229],[91.404749,33.080609],[91.373875,33.0997],[91.311712,33.107962],[91.26136,33.141382],[91.230486,33.142521],[91.215567,33.126952],[91.195882,33.125813],[91.18718,33.106253],[91.172882,33.113659],[91.148224,33.088778],[91.148431,33.072629],[91.133305,33.074244],[91.071971,33.112995],[91.037575,33.098655],[91.011881,33.12154],[90.943502,33.116698],[90.927547,33.120306],[90.911384,33.110146],[90.902267,33.083079],[90.88424,33.119167],[90.841555,33.111475],[90.803636,33.114419],[90.744167,33.142331],[90.705626,33.135781],[90.624193,33.183614],[90.587724,33.21103],[90.543795,33.238437],[90.51893,33.243273],[90.489714,33.265362],[90.406001,33.260432],[90.387974,33.27702],[90.366839,33.281285],[90.333064,33.310755],[90.246451,33.424087],[90.220964,33.437805],[90.188018,33.441022],[90.10762,33.461169],[90.091873,33.469775],[90.083377,33.525175],[90.073431,33.53368],[90.021629,33.54757],[89.988061,33.583655],[89.983917,33.612078],[90.000908,33.659178],[89.992827,33.66984],[90.008367,33.687953],[89.981845,33.702762],[89.983709,33.725771],[89.939574,33.741233],[89.907249,33.741044],[89.902276,33.758483],[89.91906,33.772619],[89.933565,33.797023],[89.925691,33.809175],[89.900204,33.807197],[89.893573,33.822079],[89.871195,33.830555],[89.862492,33.85306],[89.837213,33.868969],[89.794942,33.865486],[89.764068,33.898521],[89.765726,33.906896],[89.73195,33.92176],[89.715581,33.950165],[89.688022,33.959757],[89.678698,33.996327],[89.651346,34.036639],[89.634977,34.049415],[89.656319,34.057868],[89.656112,34.096931],[89.680977,34.105755],[89.693202,34.126028],[89.712058,34.131846],[89.756194,34.123776],[89.760338,34.152488],[89.785618,34.149955],[89.815248,34.167779],[89.805302,34.189819],[89.826438,34.200603],[89.822294,34.225446],[89.838041,34.264244],[89.825609,34.293658],[89.869952,34.330084],[89.85669,34.359569],[89.84115,34.356293],[89.820636,34.369769],[89.823951,34.384459],[89.799501,34.396247],[89.818771,34.419723],[89.82333,34.45544],[89.808203,34.474788],[89.818357,34.485908],[89.811726,34.504222],[89.814212,34.549987],[89.777951,34.574447],[89.777744,34.593954],[89.794942,34.604779],[89.799708,34.628383],[89.785825,34.641069],[89.774428,34.636405],[89.743347,34.6448],[89.726149,34.663171],[89.737752,34.679767],[89.723455,34.704003],[89.736509,34.713975],[89.733608,34.732704],[89.763032,34.73997],[89.769455,34.749472],[89.799708,34.743883],[89.807582,34.768845],[89.82996,34.787654],[89.825816,34.796871],[89.867672,34.810555],[89.85151,34.821351],[89.84633,34.857361],[89.811519,34.871034],[89.823537,34.879684],[89.82105,34.902001],[89.787482,34.92171],[89.747077,34.903582],[89.711644,34.920595],[89.700869,34.908231],[89.654454,34.883218],[89.621094,34.881544],[89.625031,34.891215],[89.579652,34.894098],[89.584418,34.907859],[89.56121,34.931098],[89.576751,34.999568],[89.568048,35.00969],[89.581517,35.019532],[89.590634,35.05796],[89.59312,35.104254],[89.582967,35.116681],[89.540904,35.120947],[89.519561,35.13402],[89.504435,35.165722],[89.484957,35.186108],[89.475426,35.208157],[89.450561,35.223995],[89.458642,35.238533],[89.485786,35.256679],[89.515003,35.265751],[89.532201,35.285094],[89.509201,35.284539],[89.494696,35.298512],[89.516246,35.333294],[89.499255,35.35447],[89.505264,35.371481],[89.535931,35.369077],[89.568048,35.383497],[89.587526,35.383775],[89.61985,35.41233],[89.660049,35.425356],[89.686364,35.414732],[89.725113,35.452419],[89.744176,35.47975],[89.765311,35.482519],[89.741068,35.507348],[89.72014,35.501718],[89.70004,35.53752],[89.714545,35.583171],[89.749563,35.580497],[89.765933,35.599765],[89.742311,35.621793],[89.729878,35.655698],[89.748942,35.662791],[89.740653,35.715551],[89.752671,35.737455],[89.749356,35.757973],[89.780023,35.7634],[89.781681,35.777841],[89.767798,35.798993],[89.781473,35.807727],[89.786654,35.83365],[89.801987,35.847803],[89.77878,35.861586],[89.742104,35.858554],[89.710193,35.849549],[89.660256,35.84817],[89.623995,35.859105],[89.598922,35.855981],[89.577787,35.861494],[89.550021,35.857451],[89.531786,35.874447],[89.541733,35.882071],[89.48993,35.903562],[89.472732,35.900532],[89.427975,35.917427],[89.421551,35.932483],[89.43502,35.952491],[89.426732,35.967632],[89.434813,35.993227],[89.40456,36.01698],[89.417614,36.04476],[89.440407,36.031742],[89.476254,36.022024],[89.518732,36.025874],[89.562453,36.035501],[89.605139,36.038251],[89.637878,36.050076],[89.641607,36.065931],[89.658806,36.069505],[89.688022,36.090945],[89.6644,36.103036],[89.649896,36.097998],[89.636013,36.109265],[89.614877,36.109631],[89.594364,36.126481],[89.511687,36.142688],[89.490137,36.15111],[89.424867,36.197964],[89.375551,36.228149],[89.334938,36.237202],[89.292667,36.231441],[89.271532,36.262618],[89.232162,36.295701],[89.199009,36.260241],[89.163162,36.263166],[89.127936,36.249636],[89.108458,36.263349],[89.102657,36.280166],[89.053548,36.293143],[89.044016,36.305294],[89.013557,36.315435],[88.964241,36.318997],[88.948907,36.329227],[88.925907,36.364382],[88.903943,36.362282],[88.87079,36.348313],[88.838879,36.353609],[88.801375,36.336898],[88.794951,36.308949],[88.782519,36.291772],[88.767185,36.292137],[88.747915,36.310958],[88.725329,36.319271],[88.730302,36.329318],[88.711446,36.353883],[88.690103,36.368125],[88.623589,36.389391],[88.617995,36.427985],[88.597066,36.448689],[88.57303,36.461181],[88.512525,36.445406],[88.498642,36.446226],[88.478128,36.464828],[88.470669,36.48224],[88.410786,36.473215],[88.378875,36.483334],[88.356704,36.476497],[88.365614,36.457807],[88.326659,36.458354],[88.282316,36.470024],[88.241496,36.468657],[88.22264,36.447594],[88.182441,36.45261],[88.160063,36.435282],[88.134576,36.427164],[88.092305,36.435373],[88.006728,36.430813],[87.982899,36.437836],[87.96798,36.429354],[87.958448,36.408463],[87.919493,36.393681],[87.838267,36.384007],[87.80615,36.39076],[87.801591,36.379991],[87.768437,36.374697],[87.731969,36.384919],[87.696122,36.371776],[87.620076,36.360365],[87.570553,36.342378],[87.518543,36.351783],[87.470471,36.354248],[87.457002,36.388114],[87.460318,36.409922],[87.432344,36.416856],[87.428407,36.425066],[87.386966,36.412751],[87.361893,36.419137],[87.348218,36.393133],[87.313406,36.367668],[87.292271,36.358995],[87.193432,36.349409],[87.161315,36.325574],[87.149504,36.297437],[87.115315,36.299264],[87.086305,36.310776],[87.056467,36.297163],[86.996169,36.308675],[86.971097,36.290127],[86.955349,36.289396],[86.93152,36.265451],[86.891736,36.261978],[86.874745,36.274591],[86.861898,36.299904],[86.836204,36.291406],[86.775699,36.296706],[86.746068,36.292046],[86.730113,36.267462],[86.708356,36.264354],[86.700068,36.244791],[86.655932,36.245522],[86.653446,36.231989],[86.606202,36.22321],[86.532228,36.227326],[86.515652,36.205283],[86.483534,36.207661],[86.455147,36.221198],[86.426759,36.208576],[86.392777,36.207021],[86.358173,36.168775],[86.315488,36.165938],[86.280055,36.170788],[86.279848,36.161545],[86.247523,36.140765],[86.190541,36.132616],[86.190126,36.098273],[86.179766,36.075186],[86.200072,36.047968],[86.199036,36.032017],[86.181216,36.029542],[86.173135,36.008085],[86.150756,36.00405],[86.132936,35.979468],[86.129,35.942488],[86.093981,35.907694],[86.090251,35.876744],[86.070567,35.860667],[86.070774,35.840175],[86.111387,35.814439],[86.104963,35.794487],[86.138117,35.771587],[86.177279,35.764228],[86.203595,35.74224],[86.208153,35.722546],[86.237163,35.721257],[86.28192,35.676145],[86.291244,35.644368],[86.318389,35.636444],[86.309271,35.611471],[86.285235,35.592851],[86.290623,35.558919],[86.281713,35.540749],[86.305749,35.529217],[86.27301,35.520728],[86.252289,35.484642],[86.250631,35.455928],[86.257884,35.425818],[86.279226,35.385254],[86.294974,35.375456],[86.245658,35.372775],[86.242964,35.342726],[86.200072,35.333201],[86.178108,35.321547],[86.201315,35.299714],[86.209189,35.276395],[86.199451,35.239459],[86.202766,35.211306],[86.234883,35.160532],[86.21437,35.135225],[86.21582,35.104625],[86.174585,35.05035],[86.150964,35.009969],[86.14454,34.974119],[86.112216,34.929239],[86.144955,34.924034],[86.137495,34.875871],[86.109936,34.819025],[86.083206,34.782999],[86.055233,34.76037],[86.034927,34.715093],[86.035963,34.691513],[86.054197,34.65711],[86.034098,34.637711],[86.027674,34.615416],[85.989755,34.594327],[85.94852,34.559884],[85.943755,34.524305],[85.951007,34.509173],[85.982295,34.502447],[86.033269,34.483292],[86.067044,34.478432],[86.11408,34.446933],[86.136252,34.415234],[86.162567,34.404946],[86.170441,34.38633],[86.170856,34.359475],[86.144126,34.328118],[86.131693,34.304241],[86.128171,34.276517],[86.1319,34.209979],[86.155729,34.175658],[86.182459,34.156335],[86.200072,34.122274],[86.193027,34.082941],[86.19282,34.027996],[86.236334,33.998301],[86.227838,33.962202],[86.244622,33.948473],[86.273631,33.894287],[86.271352,33.84807],[86.25519,33.827353],[86.211054,33.784115],[86.210225,33.749623],[86.179766,33.711344],[86.188261,33.653516],[86.213748,33.632469],[86.25001,33.632186],[86.26928,33.593477],[86.27674,33.521583],[86.268037,33.490578],[86.295181,33.458899],[86.311343,33.42948],[86.328542,33.421627],[86.298497,33.415003],[86.253739,33.387462],[86.245451,33.360196],[86.245451,33.323639],[86.230325,33.322881],[86.205252,33.302038],[86.177901,33.297774],[86.128378,33.270101],[86.075954,33.250668],[86.034305,33.243273],[86.035963,33.220419],[86.020629,33.213116],[86.019386,33.167198],[86.030161,33.156948],[86.056476,33.151444],[86.110765,33.167008],[86.172928,33.158941],[86.172306,33.140148],[86.145162,33.123439],[86.130036,33.091152],[86.111387,33.067404],[86.135837,33.046025],[86.131072,33.025592],[86.090459,33.011999],[86.069531,32.983094],[86.083828,32.961124],[86.066422,32.93991],[86.055233,32.911933],[86.062278,32.898513],[86.107035,32.866429],[86.109107,32.858335],[86.074089,32.803561],[86.062071,32.79365],[86.032855,32.795651],[85.973178,32.774016],[85.966133,32.753615],[85.936502,32.733782],[85.923655,32.717378],[85.880349,32.6962],[85.749393,32.689522],[85.712509,32.672537],[85.622995,32.642663],[85.584869,32.635216],[85.552751,32.612014],[85.501778,32.59043],[85.4593,32.581642],[85.410606,32.595015],[85.382633,32.572949],[85.34865,32.523352],[85.338497,32.515227],[85.271776,32.498113],[85.258514,32.487978],[85.241938,32.455746],[85.244631,32.434698],[85.219352,32.413454],[85.225361,32.3721],[85.186406,32.290677],[85.17646,32.245336],[85.137297,32.205919],[85.108081,32.159192],[85.082801,32.139899],[85.056071,32.100917],[85.058765,32.07508],[85.071819,32.047987],[85.115747,32.025114],[85.141234,31.998102],[85.150973,31.932028],[85.142684,31.906143],[85.16527,31.886701],[85.17045,31.871202],[85.154081,31.86244],[85.125486,31.823436],[85.135847,31.815826],[85.133774,31.78856],[85.146207,31.755116],[85.125279,31.712788],[85.118855,31.687035],[85.143306,31.658959],[85.154703,31.657222],[85.191586,31.673721],[85.21873,31.672853],[85.241523,31.655002],[85.283587,31.64207],[85.284208,31.619579],[85.306587,31.600946],[85.310524,31.579218],[85.352173,31.557292],[85.37165,31.56502],[85.39838,31.592738],[85.445831,31.576803],[85.444174,31.540192],[85.477741,31.520286],[85.479399,31.506078],[85.497426,31.510235],[85.561454,31.488679],[85.549021,31.455127],[85.579481,31.422047],[85.583832,31.395052],[85.604346,31.361854],[85.644545,31.355175],[85.65532,31.345493],[85.69241,31.335326],[85.716239,31.32051],[85.75851,31.317992],[85.788348,31.290773],[85.863358,31.285251],[85.871231,31.278663],[85.870403,31.252499],[85.908322,31.24145],[85.947277,31.241062],[85.963439,31.224777],[86.040936,31.216245],[86.070981,31.203737],[86.1319,31.213433],[86.142883,31.192682],[86.168369,31.181432],[86.172721,31.162905],[86.167955,31.11303],[86.171685,31.099441],[86.196342,31.067789],[86.188676,31.025248],[86.194685,31.003872],[86.230118,30.98152],[86.277776,30.959066],[86.315695,30.953038],[86.31756,30.925423],[86.331443,30.894687],[86.331236,30.846423],[86.343668,30.816343],[86.339938,30.794434],[86.357344,30.785669],[86.377029,30.74875],[86.396092,30.744171],[86.400236,30.722538],[86.424272,30.700803],[86.407903,30.67019],[86.410597,30.634007],[86.428624,30.608642],[86.414948,30.594883],[86.440849,30.560429],[86.427588,30.526061],[86.439813,30.500668],[86.429453,30.481227],[86.468408,30.469991],[86.532643,30.4824],[86.530363,30.460122],[86.548598,30.439207],[86.571598,30.396974],[86.581751,30.391009],[86.60786,30.408805],[86.576364,30.417311],[86.556265,30.444779],[86.640391,30.426989],[86.641635,30.444681],[86.659869,30.463249],[86.686392,30.451913],[86.718924,30.451815],[86.695302,30.472434],[86.677275,30.52694],[86.706284,30.547152],[86.727005,30.550179],[86.740473,30.520788],[86.780879,30.521471],[86.786267,30.548324],[86.80906,30.53319],[86.858168,30.568336],[86.87661,30.544516],[86.904997,30.541978],[86.925097,30.51483],[86.941466,30.509263],[86.943745,30.53319],[86.93152,30.60347],[86.923646,30.609617],[86.896295,30.581903],[86.854024,30.582294],[86.853402,30.595566],[86.87288,30.602299],[86.883448,30.627569],[86.88034,30.649223],[86.901682,30.658976],[86.905412,30.697976],[86.897952,30.729067],[86.861069,30.726534],[86.862312,30.663559],[86.87143,30.64893],[86.820042,30.648443],[86.784195,30.664144],[86.765338,30.68462],[86.804294,30.689397],[86.808438,30.702947],[86.794555,30.722636],[86.79787,30.740371],[86.781708,30.773787],[86.766167,30.775053],[86.736536,30.818874],[86.735708,30.831335],[86.81942,30.895563],[86.864177,30.897119],[86.918466,30.929119],[86.976692,30.919977],[86.960529,30.916962],[86.941673,30.894298],[86.950169,30.837565],[86.932349,30.819653],[86.910385,30.785572],[86.869772,30.767163],[86.864592,30.756057],[86.88697,30.739007],[86.893394,30.753037],[86.922196,30.75294],[86.952448,30.765604],[86.976899,30.793071],[87.008187,30.805243],[87.01917,30.852068],[87.023314,30.893812],[87.050044,30.904026],[87.069729,30.934078],[87.101224,30.935537],[87.119252,30.9227],[87.124432,30.906166],[87.127747,30.847688],[87.10081,30.7957],[87.1149,30.766189],[87.137279,30.737838],[87.16836,30.710745],[87.172297,30.632544],[87.160279,30.615471],[87.159036,30.584929],[87.180585,30.561406],[87.181207,30.549691],[87.211667,30.566286],[87.2471,30.547738],[87.292893,30.541196],[87.335578,30.545004],[87.367488,30.529088],[87.371839,30.54725],[87.386137,30.556427],[87.422191,30.542856],[87.442083,30.552229],[87.453065,30.54393],[87.472957,30.551546],[87.485597,30.534166],[87.504868,30.532018],[87.487669,30.50477],[87.531598,30.477906],[87.524552,30.450545],[87.509219,30.430899],[87.538228,30.422101],[87.527661,30.395996],[87.540093,30.380056],[87.561021,30.383674],[87.577598,30.367145],[87.591481,30.380056],[87.626914,30.376828],[87.66504,30.350418],[87.699022,30.354624],[87.731347,30.334861],[87.748338,30.332122],[87.809258,30.38563],[87.821897,30.370471],[87.860853,30.393062],[87.882402,30.371351],[87.927367,30.365971],[87.961764,30.382207],[88.001133,30.378589],[88.006106,30.365482],[88.036152,30.356972],[88.058116,30.374188],[88.082152,30.376144],[88.111161,30.314605],[88.117792,30.276038],[88.146387,30.273982],[88.187207,30.257043],[88.201297,30.224527],[88.214973,30.218747],[88.25082,30.232069],[88.273199,30.22051],[88.30428,30.259393],[88.341785,30.26047],[88.391308,30.252342],[88.412029,30.243528],[88.419903,30.215906],[88.44311,30.212477],[88.469011,30.198761],[88.482687,30.174752],[88.481029,30.147699],[88.469633,30.134954],[88.472327,30.1175],[88.46466,30.085723],[88.475228,30.069144],[88.51812,30.050305],[88.538841,30.0662],[88.54112,30.098965],[88.566814,30.119167],[88.568679,30.14613],[88.608463,30.15907],[88.636229,30.193568],[88.646175,30.220608],[88.69404,30.229228],[88.79205,30.219237],[88.80614,30.207089],[88.860429,30.202876],[88.859808,30.222078],[88.873276,30.230306],[88.889231,30.219531],[88.910781,30.223939],[88.949115,30.196017],[88.96652,30.227074],[88.993043,30.232853],[89.010449,30.260764],[89.040287,30.254203],[89.104521,30.252146],[89.107837,30.267226],[89.13954,30.290723],[89.15736,30.28201],[89.165234,30.29454],[89.201702,30.311278],[89.208333,30.285143],[89.248325,30.261449],[89.285415,30.266443],[89.302613,30.277996],[89.318154,30.274961],[89.346749,30.240982],[89.368299,30.229131],[89.399794,30.227563],[89.4172,30.253909],[89.432326,30.259197],[89.483714,30.251951],[89.496147,30.254888],[89.534687,30.236966],[89.552922,30.21669],[89.57385,30.227171],[89.579859,30.240198],[89.612391,30.213457],[89.65922,30.205423],[89.684914,30.222959],[89.700662,30.220217],[89.70232,30.192882],[89.718689,30.159854],[89.76096,30.168088],[89.776915,30.18514],[89.813384,30.15662],[89.830789,30.131522],[89.817321,30.100436],[89.830789,30.059136],[89.869744,30.045398],[89.879276,30.032149],[89.883835,29.994061],[89.899168,29.975305],[89.918024,29.972457],[89.94579,29.954877],[89.974592,29.960868],[89.986818,29.948099],[90.033647,29.938963],[90.069908,29.953207],[90.083999,29.985223],[90.082134,30.014775],[90.117774,30.015561],[90.122125,30.042748],[90.158801,30.094159],[90.163152,30.122011],[90.19672,30.144954],[90.194855,30.16897],[90.218892,30.186904],[90.228009,30.250482],[90.251424,30.283087],[90.291829,30.28994],[90.320631,30.300218],[90.349848,30.299435],[90.370983,30.280933],[90.394605,30.283479],[90.404758,30.305699],[90.398749,30.335155],[90.410974,30.349146],[90.447443,30.362059],[90.450344,30.384848],[90.481011,30.374285],[90.518102,30.404503],[90.557057,30.40157],[90.626265,30.458363],[90.654652,30.46921],[90.636832,30.489531],[90.596841,30.572534],[90.65631,30.740858],[90.688013,30.814493],[90.707698,30.881845],[90.718266,30.905485],[90.720338,30.949733],[90.748311,30.978896],[90.756185,31.012423],[90.797419,31.024179],[90.832645,31.015824],[90.878853,30.988227],[90.909934,31.022722],[90.940394,31.013298],[90.983286,30.967329],[90.98225,30.937384],[90.997169,30.93155],[91.018304,30.945358],[91.007115,30.922408],[91.080881,30.881845],[91.107611,30.89352],[91.123981,30.92163],[91.105539,30.933203],[91.144702,30.946427],[91.161278,30.963052],[91.124602,30.981715],[91.107819,31.020876],[91.115278,31.040402],[91.135377,31.050697],[91.149053,31.035545],[91.174125,31.032242],[91.191945,31.019807],[91.241054,31.038945],[91.270063,31.034865],[91.280216,31.055845],[91.347145,31.041373],[91.342172,31.032728],[91.351082,30.997653],[91.369524,30.986866],[91.370352,30.916865],[91.384857,30.899843],[91.380713,30.863552],[91.393974,30.825397],[91.42692,30.796187],[91.436038,30.755473],[91.428578,30.705189],[91.459659,30.702752],[91.488254,30.691834],[91.504417,30.656635],[91.548138,30.651076],[91.57321,30.65566],[91.622526,30.674383],[91.661896,30.699828],[91.69277,30.702265],[91.738563,30.728288],[91.746644,30.70402],[91.741257,30.68423],[91.755554,30.653417],[91.823726,30.621715],[91.878429,30.558672],[91.903916,30.51444],[91.860816,30.503403],[91.818131,30.486601],[91.812536,30.463542],[91.791608,30.463738],[91.793059,30.445463],[91.810464,30.430508],[91.834293,30.439696],[91.853771,30.430313],[91.844447,30.414182],[91.8546,30.380447],[91.846933,30.362059],[91.850663,30.317345],[91.859366,30.284849],[91.893348,30.290429],[91.928159,30.279465],[91.922979,30.253517],[91.951988,30.235007],[91.959862,30.185532],[91.981619,30.18465],[91.998196,30.200916],[92.039845,30.194939],[92.07735,30.218943],[92.139305,30.200524],[92.150702,30.214339],[92.172873,30.213359],[92.196495,30.283674],[92.211621,30.293072],[92.222396,30.315682],[92.237315,30.315682],[92.273784,30.298749],[92.295334,30.267716],[92.356046,30.251461],[92.365577,30.267128],[92.403497,30.265758],[92.470218,30.243039],[92.513939,30.236477],[92.564498,30.24343],[92.592057,30.235693],[92.616715,30.219335],[92.623967,30.226192],[92.621066,30.256259],[92.626246,30.282206],[92.619201,30.301196],[92.640958,30.30609],[92.662094,30.293562],[92.708301,30.29454],[92.710166,30.314703],[92.695869,30.327914],[92.70913,30.33584],[92.743734,30.323315],[92.750157,30.327229],[92.744148,30.358439],[92.769428,30.400885],[92.779581,30.402254],[92.794293,30.439892],[92.786212,30.456604],[92.76404,30.472629],[92.783933,30.51903],[92.79305,30.527917],[92.841122,30.541294],[92.875726,30.532799],[92.888159,30.568629],[92.887123,30.596152],[92.897276,30.60669],[92.918618,30.608349],[92.974772,30.57839],[92.987412,30.593615],[93.024295,30.584148],[93.021394,30.530651],[93.024709,30.510924],[93.036728,30.502719],[93.08335,30.490704],[93.094539,30.480837],[93.093917,30.46022],[93.111737,30.448493],[93.1308,30.412911],[93.148828,30.404601],[93.183846,30.436666],[93.216171,30.453086],[93.242901,30.474584],[93.246838,30.494807],[93.274189,30.49637],[93.310658,30.469503],[93.359352,30.469796],[93.429596,30.407925],[93.424001,30.387977],[93.40701,30.381132],[93.408253,30.348363],[93.437884,30.326935],[93.51538,30.30198],[93.535273,30.304329],[93.554957,30.290038],[93.611525,30.285241],[93.63121,30.301001],[93.650066,30.304818],[93.669337,30.28436],[93.732328,30.294443],[93.767139,30.279171],[93.783923,30.296498],[93.80796,30.305797],[93.846915,30.299043],[93.858519,30.33036],[93.878411,30.333002],[93.95715,30.299533],[94.00025,30.297281],[94.014547,30.306384],[94.010817,30.326838],[94.024493,30.368026],[94.049358,30.366558],[94.063034,30.378882],[94.088521,30.379176],[94.106548,30.389542],[94.110692,30.423274],[94.099917,30.45592],[94.151305,30.48025],[94.154206,30.486894],[94.098467,30.50731],[94.103233,30.519909],[94.06407,30.530651],[94.022835,30.564237],[94.017655,30.57634],[93.999006,30.572241],[93.977457,30.601226],[93.961916,30.606788],[93.940573,30.60025],[93.908042,30.625423],[93.862248,30.619569],[93.85396,30.635178],[93.821014,30.666192],[93.79014,30.664827],[93.785167,30.691932],[93.736265,30.723805],[93.713887,30.749627],[93.679904,30.75635],[93.674724,30.771741],[93.702697,30.805146],[93.681355,30.852457],[93.655661,30.857518],[93.614634,30.853333],[93.598678,30.870072],[93.640535,30.89887],[93.650274,30.921533],[93.699797,30.931258],[93.7114,30.921825],[93.73813,30.918129],[93.751392,30.905874],[93.788896,30.897605],[93.825365,30.904512],[93.855618,30.90422],[93.86432,30.887877],[93.894366,30.879899],[93.921096,30.84399],[93.963988,30.838442],[93.988232,30.856253],[93.993826,30.879607],[94.01579,30.872018],[94.065106,30.871726],[94.108413,30.864136],[94.148819,30.849538],[94.171404,30.853236],[94.194197,30.868612],[94.246414,30.871337],[94.26382,30.856253],[94.298423,30.847007],[94.322252,30.851192],[94.344631,30.917059],[94.320802,30.932231],[94.305054,30.97773],[94.26672,31.019321],[94.256774,31.074198],[94.214504,31.098664],[94.248693,31.191907],[94.294694,31.215179],[94.283712,31.248331],[94.285784,31.268876],[94.301532,31.294648],[94.298216,31.313149],[94.346289,31.296876],[94.365559,31.300848],[94.374676,31.320413],[94.398713,31.328741],[94.392496,31.349269],[94.419019,31.348978],[94.449272,31.339877],[94.482425,31.350721],[94.501903,31.392246],[94.530498,31.410824],[94.548525,31.414985],[94.562615,31.430367],[94.59266,31.435784],[94.6053,31.413824],[94.58375,31.393407],[94.580021,31.377148],[94.597841,31.361177],[94.602606,31.332712],[94.618976,31.314893],[94.657724,31.313343],[94.693364,31.326901],[94.709112,31.342395],[94.741022,31.357014],[94.761121,31.359434],[94.770238,31.335229],[94.742887,31.312181],[94.743508,31.292711],[94.720301,31.245521],[94.717607,31.168435],[94.73377,31.114874],[94.772932,31.078956],[94.794689,31.08284],[94.811266,31.072159],[94.816653,31.094004],[94.831572,31.097208],[94.831572,31.11798],[94.8525,31.112545],[94.867419,31.124094],[94.90596,31.125065],[94.926267,31.136321],[94.934348,31.155921],[94.965015,31.154271],[94.97724,31.140688],[95.01516,31.157182],[95.036088,31.159607],[95.047691,31.187639],[95.033187,31.19821],[95.011844,31.228267],[95.003556,31.260833],[94.986357,31.274884],[94.982835,31.291936],[94.992988,31.314311],[94.97724,31.336101],[94.973096,31.358369],[94.947609,31.3786],[94.92606,31.369695],[94.886483,31.394955],[94.870942,31.41305],[94.879645,31.439749],[94.905132,31.463734],[94.912384,31.489742],[94.892285,31.53681],[94.847113,31.555553],[94.782464,31.557678],[94.76568,31.564054],[94.752833,31.607608],[94.763401,31.615525],[94.751382,31.63985],[94.715121,31.647378],[94.684868,31.638789],[94.686526,31.678159],[94.723616,31.685395],[94.738535,31.707195],[94.766509,31.709991],[94.773554,31.72301],[94.761536,31.785284],[94.752833,31.798003],[94.721544,31.811877],[94.661454,31.828253],[94.651508,31.846455],[94.647571,31.883428],[94.673057,31.897577],[94.671814,31.953288],[94.655859,31.990891],[94.688184,32.032803],[94.68922,32.047122],[94.660625,32.056538],[94.664562,32.082861],[94.64612,32.100053],[94.650472,32.152857],[94.668499,32.211962],[94.707661,32.242459],[94.74268,32.2601],[94.748896,32.308788],[94.760914,32.341838],[94.745995,32.345478],[94.720301,32.366164],[94.68549,32.408095],[94.690877,32.423694],[94.683625,32.447519],[94.650264,32.460911],[94.697094,32.467416],[94.714292,32.501747],[94.739572,32.493619],[94.741644,32.517999],[94.759464,32.529374]]],[[[86.123612,30.967329],[86.09999,31.057884],[86.07326,31.067013],[86.053783,31.056427],[86.041764,31.064779],[85.983332,31.068761],[85.961575,31.078082],[85.940854,31.073616],[85.915367,31.079733],[85.871024,31.067207],[85.855691,31.0708],[85.842222,31.039625],[85.827096,31.04147],[85.786276,31.021167],[85.771771,31.008634],[85.760167,30.951775],[85.791249,30.951483],[85.847402,30.941857],[85.896511,30.921922],[85.931736,30.926687],[85.937953,30.89994],[85.950178,30.89459],[85.944376,30.864914],[85.922205,30.866179],[85.908529,30.884472],[85.862736,30.86832],[85.874961,30.862676],[85.900862,30.832698],[85.913709,30.808748],[85.90107,30.783137],[85.826889,30.797161],[85.82088,30.781968],[85.860457,30.751478],[85.872889,30.759564],[85.948313,30.767455],[85.941061,30.747873],[85.959088,30.74154],[85.980223,30.753135],[85.993278,30.744561],[86.015242,30.774468],[86.028089,30.781384],[86.023323,30.82014],[86.037413,30.835132],[86.063107,30.828318],[86.077404,30.843308],[86.077612,30.862579],[86.090251,30.868515],[86.067458,30.897119],[86.101648,30.905874],[86.123612,30.967329]]]]}},{"type":"Feature","properties":{"adcode":542500,"name":"阿里地区","center":[80.105498,32.503187],"centroid":[82.564653,33.063726],"childrenNum":7,"level":"city","parent":{"adcode":540000},"subFeatureIndex":6,"acroutes":[100000,540000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[86.070567,35.860667],[86.059792,35.845873],[86.044251,35.847435],[86.01317,35.833099],[85.968412,35.789705],[85.949142,35.778853],[85.90397,35.784371],[85.856105,35.778853],[85.835384,35.772231],[85.803267,35.778301],[85.782132,35.76846],[85.759753,35.769471],[85.728257,35.755489],[85.692824,35.751809],[85.675419,35.737363],[85.653248,35.731197],[85.612842,35.651645],[85.564976,35.641235],[85.521255,35.66887],[85.519805,35.679276],[85.441273,35.688577],[85.369786,35.705977],[85.367299,35.727424],[85.351344,35.746012],[85.31674,35.765148],[85.281929,35.775818],[85.271361,35.788786],[85.251262,35.781152],[85.221838,35.779865],[85.223703,35.767908],[85.146,35.742516],[85.117405,35.741872],[85.052963,35.751901],[84.994737,35.736811],[84.973602,35.709107],[84.920142,35.696495],[84.84161,35.665002],[84.836015,35.655054],[84.79706,35.646855],[84.762456,35.624558],[84.723293,35.612854],[84.702572,35.617093],[84.604355,35.589348],[84.570166,35.588242],[84.528931,35.571553],[84.447498,35.549604],[84.450399,35.53097],[84.471327,35.526818],[84.454129,35.474395],[84.41621,35.462762],[84.395696,35.448356],[84.345137,35.42471],[84.335191,35.41464],[84.26992,35.404014],[84.202991,35.382666],[84.181027,35.360387],[84.16155,35.359],[84.141036,35.378968],[84.100837,35.362421],[84.077216,35.399948],[84.051936,35.415933],[84.032251,35.409466],[84.005936,35.4224],[83.972368,35.411775],[83.923881,35.410851],[83.890727,35.386085],[83.885133,35.367413],[83.86006,35.360757],[83.797483,35.354747],[83.785465,35.363068],[83.684554,35.362514],[83.643527,35.341524],[83.622184,35.335421],[83.599184,35.351234],[83.541787,35.341617],[83.54013,35.363993],[83.526454,35.368708],[83.502625,35.360387],[83.448958,35.382111],[83.416426,35.38054],[83.373741,35.385161],[83.333749,35.397453],[83.28029,35.401242],[83.24237,35.419813],[83.206938,35.39505],[83.178343,35.389505],[83.126748,35.398562],[83.089036,35.425449],[83.067693,35.462669],[83.042621,35.473749],[82.999107,35.484458],[82.971755,35.54822],[82.981287,35.556245],[82.981494,35.599765],[82.956215,35.63626],[82.967404,35.667396],[82.96098,35.671541],[82.894673,35.673935],[82.873745,35.688853],[82.85261,35.683881],[82.788582,35.684617],[82.780294,35.666199],[82.731393,35.637826],[82.702176,35.656159],[82.652239,35.673014],[82.62841,35.69226],[82.580337,35.697047],[82.546148,35.708555],[82.525841,35.698705],[82.502012,35.701282],[82.468652,35.717392],[82.425138,35.712789],[82.408768,35.699533],[82.405038,35.675685],[82.392813,35.656159],[82.349299,35.656251],[82.336038,35.651369],[82.350128,35.611102],[82.33065,35.585568],[82.328164,35.559473],[82.299155,35.5449],[82.272217,35.550249],[82.234298,35.520359],[82.206325,35.521005],[82.189541,35.513162],[82.186433,35.489535],[82.16509,35.495719],[82.116603,35.474026],[82.086973,35.467655],[82.071017,35.450665],[82.043251,35.453066],[82.029576,35.425911],[82.054648,35.35521],[82.044288,35.331629],[81.991864,35.305821],[81.971557,35.312389],[81.955395,35.307301],[81.928043,35.271119],[81.90007,35.272971],[81.853862,35.258623],[81.804339,35.270657],[81.77533,35.262974],[81.736582,35.262234],[81.686438,35.235477],[81.675041,35.233533],[81.556725,35.235848],[81.550508,35.241126],[81.513211,35.234922],[81.499949,35.25381],[81.504715,35.279171],[81.448147,35.317939],[81.443174,35.332461],[81.404012,35.341339],[81.38557,35.335421],[81.362363,35.354562],[81.352209,35.343929],[81.334389,35.350032],[81.31429,35.33727],[81.285281,35.345316],[81.267875,35.338288],[81.266218,35.322749],[81.240316,35.328762],[81.219596,35.319142],[81.207785,35.330981],[81.19183,35.365287],[81.142307,35.365195],[81.129252,35.379061],[81.103973,35.386178],[81.099207,35.407525],[81.070819,35.399116],[81.054657,35.402351],[81.031657,35.380632],[81.040567,35.363253],[81.031242,35.337455],[81.003476,35.334958],[81.026269,35.311927],[80.963692,35.311001],[80.92453,35.330611],[80.894485,35.324044],[80.84434,35.345408],[80.760006,35.334588],[80.689348,35.338935],[80.691212,35.364363],[80.664897,35.371111],[80.656401,35.393941],[80.6305,35.392832],[80.599833,35.40965],[80.56813,35.391446],[80.532905,35.404661],[80.516742,35.392278],[80.502652,35.406694],[80.444426,35.417227],[80.44339,35.445308],[80.419976,35.442353],[80.377084,35.388951],[80.324452,35.387102],[80.303732,35.378506],[80.278452,35.327559],[80.267884,35.295736],[80.330669,35.239644],[80.332119,35.223717],[80.362786,35.20899],[80.318651,35.200839],[80.285083,35.208805],[80.257731,35.203432],[80.248199,35.185274],[80.223334,35.177306],[80.235974,35.155341],[80.209451,35.122708],[80.198262,35.120483],[80.118072,35.066126],[80.078288,35.076611],[80.053216,35.061208],[80.031044,35.038841],[80.043477,35.022039],[80.029801,35.001426],[80.042441,34.98025],[80.023792,34.971147],[80.029801,34.948198],[80.041819,34.943365],[80.033945,34.92487],[80.036225,34.902838],[80.003693,34.894935],[79.994783,34.855965],[79.961215,34.862663],[79.934071,34.859686],[79.926818,34.849267],[79.946296,34.82284],[79.898431,34.731958],[79.907133,34.683869],[79.866935,34.671377],[79.86652,34.657856],[79.885791,34.642841],[79.887241,34.62773],[79.871493,34.616908],[79.857196,34.578928],[79.843727,34.557363],[79.860926,34.528228],[79.80125,34.4789],[79.735979,34.471423],[79.699924,34.477872],[79.675681,34.45114],[79.626572,34.448429],[79.605437,34.462637],[79.581401,34.456094],[79.545346,34.476283],[79.514472,34.4474],[79.504526,34.454785],[79.435111,34.447587],[79.389111,34.431693],[79.363002,34.427952],[79.326741,34.4431],[79.274317,34.436087],[79.258362,34.421874],[79.22956,34.414018],[79.179622,34.422529],[79.161388,34.441323],[79.123262,34.435059],[79.078297,34.411587],[79.065657,34.426176],[79.038927,34.421687],[79.035612,34.410838],[79.011161,34.402327],[79.024216,34.372951],[79.048874,34.348431],[79.045973,34.32353],[79.019657,34.313325],[78.983603,34.318474],[78.958116,34.230695],[78.94299,34.215041],[78.929314,34.180535],[78.925999,34.155678],[78.906106,34.143294],[78.878548,34.162901],[78.86653,34.161213],[78.856584,34.141793],[78.829025,34.125559],[78.802088,34.137101],[78.750285,34.092612],[78.70242,34.090171],[78.685222,34.081721],[78.6616,34.086791],[78.665537,34.065569],[78.652897,34.050636],[78.656212,34.030345],[78.701798,34.019351],[78.737231,33.999335],[78.744483,33.980535],[78.73288,33.919879],[78.762511,33.909436],[78.756502,33.877441],[78.767484,33.838748],[78.757952,33.790994],[78.779916,33.732559],[78.69206,33.676538],[78.685014,33.654459],[78.713195,33.622841],[78.754844,33.623218],[78.739718,33.578461],[78.741997,33.553334],[78.771628,33.51941],[78.817007,33.480745],[78.820529,33.458332],[78.847052,33.421343],[78.896368,33.412543],[78.928278,33.386894],[78.949828,33.376386],[78.962467,33.34315],[78.977594,33.326386],[79.022351,33.323544],[79.037477,33.309049],[79.041621,33.26849],[79.083892,33.245453],[79.072288,33.22848],[79.109171,33.200501],[79.133829,33.196327],[79.157451,33.178964],[79.16201,33.166059],[79.14564,33.144135],[79.142532,33.102359],[79.163046,33.011999],[79.179001,32.989846],[79.204488,32.975962],[79.204073,32.967021],[79.255461,32.942859],[79.232875,32.91003],[79.227695,32.890422],[79.236605,32.878141],[79.229974,32.860144],[79.237848,32.845859],[79.227281,32.826808],[79.225208,32.784501],[79.255047,32.787169],[79.274939,32.779163],[79.302083,32.722147],[79.287786,32.712895],[79.288407,32.692003],[79.273074,32.678072],[79.285092,32.650777],[79.299389,32.637412],[79.308299,32.596925],[79.297732,32.596639],[79.272452,32.560911],[79.275767,32.543137],[79.2451,32.513602],[79.227073,32.519433],[79.217334,32.507292],[79.190812,32.511499],[79.180244,32.493046],[79.135901,32.472102],[79.122226,32.449815],[79.124919,32.416134],[79.104613,32.39345],[79.105649,32.374973],[79.09218,32.370185],[79.067937,32.380909],[79.005981,32.37526],[78.991684,32.366068],[78.970549,32.332068],[78.9088,32.369132],[78.903206,32.386366],[78.868394,32.407425],[78.846016,32.409434],[78.810583,32.436516],[78.782403,32.480614],[78.781367,32.502894],[78.760439,32.563777],[78.781367,32.596066],[78.781367,32.608004],[78.742411,32.655072],[78.747799,32.684656],[78.741583,32.703642],[78.722726,32.700493],[78.711537,32.686564],[78.686258,32.680267],[78.674861,32.658508],[78.657041,32.65364],[78.627825,32.630156],[78.588869,32.637508],[78.58141,32.618126],[78.557374,32.616694],[78.544734,32.606571],[78.518418,32.606189],[78.49977,32.580878],[78.42476,32.565879],[78.395543,32.530521],[78.426003,32.502512],[78.452526,32.469329],[78.473247,32.435272],[78.470346,32.398236],[78.458949,32.380047],[78.486923,32.349022],[78.484022,32.3245],[78.504328,32.317411],[78.508472,32.297864],[78.490652,32.275055],[78.485887,32.250226],[78.468274,32.232486],[78.430769,32.212154],[78.42994,32.194887],[78.445066,32.191146],[78.442787,32.175794],[78.469517,32.127899],[78.509923,32.14729],[78.519869,32.123675],[78.563176,32.095443],[78.570428,32.077194],[78.608762,32.054521],[78.595915,32.037897],[78.601302,32.025114],[78.660771,31.999544],[78.704907,31.988583],[78.737853,31.965792],[78.739718,31.953385],[78.762303,31.94694],[78.768727,31.926544],[78.744483,31.902678],[78.73951,31.885353],[78.712988,31.879096],[78.664915,31.851848],[78.653726,31.821799],[78.662636,31.810432],[78.706357,31.778441],[78.744276,31.712595],[78.755258,31.678545],[78.770592,31.668029],[78.798565,31.675555],[78.806646,31.641008],[78.845809,31.609925],[78.833998,31.584626],[78.779916,31.545409],[78.740339,31.532752],[78.725835,31.507432],[78.729979,31.478238],[78.755466,31.478431],[78.791934,31.436171],[78.759817,31.39273],[78.753808,31.363984],[78.779709,31.317023],[78.795042,31.301138],[78.858863,31.289029],[78.865079,31.312955],[78.88062,31.298814],[78.884764,31.276919],[78.923719,31.246781],[78.930764,31.220608],[78.951278,31.209749],[78.962467,31.18667],[78.994792,31.170763],[78.997693,31.158831],[78.974071,31.115748],[78.990855,31.094781],[78.994792,31.073616],[79.010125,31.04419],[79.059234,31.028259],[79.097153,30.992114],[79.132586,31.004164],[79.163253,31.006496],[79.181695,31.015532],[79.200965,31.006204],[79.227488,30.949247],[79.257119,30.94983],[79.295038,30.963246],[79.329435,30.962663],[79.31638,31.017864],[79.358444,31.031368],[79.404651,31.071577],[79.424751,31.061477],[79.430138,31.017767],[79.451066,31.026705],[79.505977,31.027385],[79.524418,30.99328],[79.542445,30.978021],[79.550941,30.957997],[79.593212,30.939815],[79.59777,30.926104],[79.628023,30.949149],[79.653095,30.953427],[79.668636,30.980257],[79.6906,30.970731],[79.71878,30.945746],[79.758357,30.936801],[79.786952,30.905096],[79.820934,30.857907],[79.835646,30.850997],[79.875638,30.857907],[79.890557,30.855085],[79.912728,30.832893],[79.895322,30.810209],[79.900917,30.799108],[79.942152,30.788201],[79.961008,30.771254],[79.95562,30.738227],[79.972197,30.71786],[79.961422,30.701193],[79.970539,30.685887],[80.013846,30.661999],[80.03809,30.626008],[80.043891,30.60347],[80.084712,30.592346],[80.090721,30.577511],[80.124703,30.558575],[80.143559,30.558477],[80.16946,30.575169],[80.214632,30.585905],[80.261875,30.566579],[80.308705,30.568824],[80.321759,30.564237],[80.341029,30.532701],[80.357606,30.520592],[80.376669,30.525573],[80.430129,30.515807],[80.446499,30.495393],[80.504932,30.483181],[80.549481,30.448981],[80.584914,30.463835],[80.633194,30.458461],[80.665933,30.441749],[80.692041,30.416724],[80.7196,30.414867],[80.758555,30.37722],[80.784664,30.357461],[80.817196,30.321358],[80.861124,30.314018],[80.881845,30.300805],[80.910647,30.302958],[80.933854,30.266639],[80.975918,30.270751],[80.996431,30.26752],[81.034351,30.247152],[81.030828,30.228151],[81.038495,30.205129],[81.06854,30.157208],[81.082216,30.151424],[81.086153,30.100436],[81.106667,30.100338],[81.110604,30.085527],[81.096099,30.05315],[81.132153,30.015953],[81.187685,30.00918],[81.204055,30.018113],[81.225812,30.005548],[81.256272,30.012027],[81.248812,30.03529],[81.263109,30.038921],[81.282587,30.061196],[81.293155,30.094943],[81.288803,30.122011],[81.263524,30.142405],[81.269326,30.153385],[81.306416,30.155933],[81.319885,30.148189],[81.356975,30.17779],[81.393858,30.199349],[81.397174,30.24059],[81.419138,30.270457],[81.406291,30.291897],[81.428048,30.305405],[81.400075,30.319498],[81.408777,30.33672],[81.406291,30.369297],[81.432814,30.379371],[81.406705,30.403819],[81.418516,30.420342],[81.454363,30.412423],[81.494976,30.381425],[81.555689,30.369591],[81.566463,30.428944],[81.575995,30.430606],[81.613086,30.412716],[81.625104,30.419755],[81.630077,30.446636],[81.681672,30.423959],[81.733888,30.40597],[81.758753,30.38563],[81.803096,30.384163],[81.837907,30.373112],[81.872097,30.372916],[81.890538,30.357266],[81.93944,30.344548],[81.953944,30.356092],[81.991035,30.322728],[82.012999,30.326348],[82.022116,30.339264],[82.060035,30.332415],[82.083657,30.353255],[82.104793,30.346407],[82.132766,30.304329],[82.121577,30.288569],[82.119297,30.256455],[82.108937,30.243137],[82.114324,30.22678],[82.137739,30.219237],[82.143541,30.200035],[82.171307,30.224918],[82.249217,30.282108],[82.271596,30.310984],[82.270767,30.355016],[82.285479,30.37585],[82.273254,30.401765],[82.297911,30.398147],[82.322776,30.433538],[82.346398,30.421221],[82.356966,30.401863],[82.382867,30.398441],[82.409183,30.408121],[82.413327,30.360298],[82.424931,30.355798],[82.429282,30.381914],[82.457255,30.371938],[82.470517,30.383674],[82.466994,30.425523],[82.493517,30.408512],[82.533508,30.398245],[82.557544,30.38299],[82.585103,30.354331],[82.637734,30.364993],[82.645608,30.376926],[82.634833,30.394725],[82.663843,30.401081],[82.667365,30.420048],[82.630068,30.472434],[82.631311,30.48494],[82.611211,30.528112],[82.63214,30.553791],[82.632968,30.576731],[82.645815,30.584246],[82.657212,30.608056],[82.636284,30.633227],[82.653275,30.657318],[82.652861,30.705579],[82.635248,30.721758],[82.642914,30.742709],[82.678554,30.752647],[82.671302,30.760539],[82.697618,30.76765],[82.709636,30.79609],[82.737195,30.777001],[82.774699,30.793266],[82.805781,30.764825],[82.826087,30.691932],[82.868772,30.68852],[82.896953,30.657903],[82.949791,30.647662],[82.954142,30.637421],[82.926376,30.613325],[82.926584,30.590589],[82.937566,30.55711],[82.949791,30.539634],[83.011747,30.549593],[83.021278,30.524694],[83.052981,30.506626],[83.069765,30.505942],[83.122189,30.593517],[83.144775,30.609227],[83.178964,30.705189],[83.161973,30.723415],[83.158243,30.789565],[83.147261,30.804854],[83.108928,30.806606],[83.0909,30.816635],[83.044071,30.81128],[83.019206,30.833088],[83.016305,30.854598],[82.982945,30.868515],[82.986467,30.884764],[82.960152,30.898189],[82.940881,30.938065],[82.894881,30.916087],[82.865871,30.947399],[82.86007,30.963538],[82.835826,30.982298],[82.801222,31.018836],[82.792105,31.05633],[82.805781,31.108177],[82.823186,31.154271],[82.84888,31.161353],[82.897574,31.158734],[82.924304,31.179395],[82.947305,31.182014],[82.966161,31.173479],[82.962224,31.205483],[82.977972,31.220705],[82.966368,31.233114],[82.971962,31.249494],[82.992476,31.258895],[82.976521,31.296004],[82.981701,31.325061],[82.967404,31.367178],[82.949377,31.401826],[82.951863,31.433752],[82.967197,31.477464],[82.949377,31.491482],[82.896331,31.505402],[82.863178,31.53652],[82.835826,31.535071],[82.8207,31.578252],[82.840592,31.578638],[82.842871,31.593317],[82.865664,31.575934],[82.900683,31.568497],[82.952899,31.57719],[82.979422,31.570719],[82.986053,31.579894],[82.950413,31.598049],[82.951863,31.620352],[82.924304,31.610118],[82.927205,31.626626],[82.913944,31.632611],[82.964917,31.648054],[82.986881,31.636086],[83.010089,31.640333],[83.028531,31.628171],[83.017134,31.614946],[83.047179,31.607029],[83.060648,31.639561],[83.085513,31.651142],[83.095045,31.644869],[83.120324,31.655388],[83.14436,31.682115],[83.184145,31.689447],[83.200928,31.682404],[83.219577,31.647668],[83.266614,31.652107],[83.268686,31.670441],[83.256668,31.696585],[83.306812,31.729182],[83.319452,31.698032],[83.365867,31.66909],[83.3582,31.646606],[83.370011,31.627109],[83.395705,31.60587],[83.425336,31.602008],[83.439633,31.592931],[83.472994,31.588103],[83.48667,31.596021],[83.534328,31.583854],[83.601878,31.588393],[83.62177,31.586365],[83.646013,31.571298],[83.695329,31.592545],[83.71232,31.59129],[83.761636,31.563667],[83.805772,31.583757],[83.827529,31.569559],[83.857574,31.589455],[83.899845,31.582695],[83.92471,31.58366],[83.952683,31.593124],[83.978584,31.591676],[84.002206,31.615814],[84.026242,31.626144],[84.038053,31.641008],[84.056287,31.640815],[84.084468,31.616394],[84.109126,31.607125],[84.145594,31.619386],[84.156577,31.629329],[84.151189,31.653169],[84.167559,31.668608],[84.185586,31.662143],[84.211487,31.67266],[84.244226,31.65809],[84.280695,31.663976],[84.291055,31.657415],[84.302866,31.611084],[84.327938,31.61678],[84.3412,31.640912],[84.372903,31.638789],[84.386371,31.617359],[84.402119,31.619676],[84.388443,31.636858],[84.396525,31.67102],[84.372488,31.704398],[84.367308,31.729182],[84.35156,31.754249],[84.349695,31.780754],[84.378912,31.806771],[84.398182,31.804458],[84.444183,31.775936],[84.44584,31.75367],[84.46221,31.725325],[84.455786,31.708641],[84.479823,31.696585],[84.533283,31.694849],[84.553175,31.683851],[84.585914,31.685395],[84.625698,31.676423],[84.668383,31.648633],[84.620103,31.641491],[84.607049,31.59718],[84.570787,31.570719],[84.552139,31.537873],[84.554418,31.515067],[84.524165,31.485875],[84.502616,31.477561],[84.464696,31.495252],[84.421183,31.498926],[84.375182,31.487035],[84.366687,31.463734],[84.340371,31.448261],[84.291055,31.442554],[84.279037,31.420209],[84.241947,31.407632],[84.207757,31.411115],[84.209,31.36863],[84.241118,31.358563],[84.274064,31.357304],[84.314055,31.342976],[84.347831,31.31557],[84.367515,31.317798],[84.412273,31.311696],[84.494949,31.327095],[84.498264,31.302398],[84.550895,31.278663],[84.595445,31.27188],[84.609743,31.254243],[84.599797,31.241353],[84.609121,31.220802],[84.602283,31.209555],[84.605599,31.180268],[84.626112,31.165719],[84.614716,31.113127],[84.632743,31.102741],[84.614716,31.069246],[84.632743,31.055456],[84.664239,31.066139],[84.666311,31.056427],[84.693662,31.035836],[84.697185,31.012715],[84.680194,30.990268],[84.689518,30.974036],[84.703401,30.979674],[84.740077,30.950122],[84.774474,30.93048],[84.763699,30.901107],[84.731374,30.907138],[84.648905,30.838734],[84.646212,30.823937],[84.601454,30.799693],[84.591716,30.78713],[84.593373,30.767942],[84.551931,30.742417],[84.558562,30.73316],[84.521264,30.690665],[84.518571,30.645614],[84.510282,30.633617],[84.471327,30.621423],[84.486661,30.607471],[84.464904,30.603568],[84.464282,30.59137],[84.500751,30.573412],[84.509661,30.562089],[84.494535,30.555841],[84.498679,30.541294],[84.468633,30.527624],[84.486039,30.504868],[84.448327,30.465399],[84.452264,30.443117],[84.476093,30.420342],[84.479201,30.404992],[84.516291,30.414476],[84.53867,30.403525],[84.572652,30.406067],[84.584878,30.394627],[84.587779,30.372427],[84.602905,30.359026],[84.598968,30.34308],[84.619067,30.324587],[84.620725,30.297673],[84.657401,30.256161],[84.682473,30.258414],[84.708581,30.249698],[84.702572,30.211204],[84.732618,30.189158],[84.743185,30.171714],[84.735519,30.11652],[84.736969,30.071989],[84.745879,30.046772],[84.731996,30.023315],[84.736762,29.999559],[84.764735,29.986598],[84.786078,29.994846],[84.799753,29.977859],[84.855493,29.982376],[84.86461,29.970395],[84.858186,29.946135],[84.877457,29.930515],[84.902322,29.925209],[84.952674,29.857981],[85.048819,29.789429],[85.051305,29.781164],[85.081765,29.76601],[85.095026,29.768963],[85.121756,29.738058],[85.159054,29.721519],[85.164649,29.696607],[85.18309,29.692471],[85.217072,29.70547],[85.251676,29.712461],[85.272605,29.706455],[85.312596,29.679372],[85.335182,29.689812],[85.351137,29.710197],[85.379524,29.712953],[85.402525,29.723685],[85.406669,29.741897],[85.388849,29.772308],[85.391957,29.807334],[85.41848,29.845789],[85.442516,29.855622],[85.466138,29.821498],[85.504471,29.821498],[85.529544,29.815203],[85.545292,29.77772],[85.568499,29.783919],[85.591085,29.777425],[85.604968,29.80094],[85.597716,29.812843],[85.543841,29.836939],[85.545706,29.870664],[85.619472,29.895827],[85.657806,29.892977],[85.696554,29.900348],[85.696347,29.932086],[85.681221,29.958708],[85.666716,29.969217],[85.68868,29.991213],[85.73178,30.006824],[85.764519,30.005253],[85.782546,30.011143],[85.790834,30.04373],[85.802852,30.052267],[85.771149,30.078169],[85.772186,30.142797],[85.78669,30.146621],[85.800573,30.120736],[85.842844,30.108576],[85.855691,30.137797],[85.848231,30.148091],[85.820465,30.227074],[85.805339,30.230306],[85.762447,30.25577],[85.762032,30.268793],[85.798915,30.266737],[85.821708,30.279856],[85.831447,30.304035],[85.862736,30.321358],[85.860664,30.349733],[85.871853,30.362059],[85.891331,30.340928],[85.930493,30.328208],[85.934223,30.343178],[85.914745,30.36783],[85.905214,30.366754],[85.885529,30.39805],[85.885322,30.431681],[85.897754,30.494904],[85.883042,30.532116],[85.868745,30.59381],[85.796015,30.591663],[85.786069,30.600836],[85.750843,30.604056],[85.732194,30.622398],[85.714996,30.621813],[85.710644,30.64025],[85.737789,30.6776],[85.771149,30.67877],[85.800159,30.660828],[85.837042,30.666582],[85.847195,30.68072],[85.83124,30.689007],[85.802024,30.720784],[85.795393,30.738617],[85.82088,30.781968],[85.826889,30.797161],[85.827718,30.829973],[85.805961,30.870363],[85.774672,30.90422],[85.760167,30.951775],[85.771771,31.008634],[85.786276,31.021167],[85.827096,31.04147],[85.842222,31.039625],[85.855691,31.0708],[85.871024,31.067207],[85.915367,31.079733],[85.940854,31.073616],[85.961575,31.078082],[85.983332,31.068761],[86.041764,31.064779],[86.053783,31.056427],[86.07326,31.067013],[86.09999,31.057884],[86.123612,30.967329],[86.194685,31.003872],[86.188676,31.025248],[86.196342,31.067789],[86.171685,31.099441],[86.167955,31.11303],[86.172721,31.162905],[86.168369,31.181432],[86.142883,31.192682],[86.1319,31.213433],[86.070981,31.203737],[86.040936,31.216245],[85.963439,31.224777],[85.947277,31.241062],[85.908322,31.24145],[85.870403,31.252499],[85.871231,31.278663],[85.863358,31.285251],[85.788348,31.290773],[85.75851,31.317992],[85.716239,31.32051],[85.69241,31.335326],[85.65532,31.345493],[85.644545,31.355175],[85.604346,31.361854],[85.583832,31.395052],[85.579481,31.422047],[85.549021,31.455127],[85.561454,31.488679],[85.497426,31.510235],[85.479399,31.506078],[85.477741,31.520286],[85.444174,31.540192],[85.445831,31.576803],[85.39838,31.592738],[85.37165,31.56502],[85.352173,31.557292],[85.310524,31.579218],[85.306587,31.600946],[85.284208,31.619579],[85.283587,31.64207],[85.241523,31.655002],[85.21873,31.672853],[85.191586,31.673721],[85.154703,31.657222],[85.143306,31.658959],[85.118855,31.687035],[85.125279,31.712788],[85.146207,31.755116],[85.133774,31.78856],[85.135847,31.815826],[85.125486,31.823436],[85.154081,31.86244],[85.17045,31.871202],[85.16527,31.886701],[85.142684,31.906143],[85.150973,31.932028],[85.141234,31.998102],[85.115747,32.025114],[85.071819,32.047987],[85.058765,32.07508],[85.056071,32.100917],[85.082801,32.139899],[85.108081,32.159192],[85.137297,32.205919],[85.17646,32.245336],[85.186406,32.290677],[85.225361,32.3721],[85.219352,32.413454],[85.244631,32.434698],[85.241938,32.455746],[85.258514,32.487978],[85.271776,32.498113],[85.338497,32.515227],[85.34865,32.523352],[85.382633,32.572949],[85.410606,32.595015],[85.4593,32.581642],[85.501778,32.59043],[85.552751,32.612014],[85.584869,32.635216],[85.622995,32.642663],[85.712509,32.672537],[85.749393,32.689522],[85.880349,32.6962],[85.923655,32.717378],[85.936502,32.733782],[85.966133,32.753615],[85.973178,32.774016],[86.032855,32.795651],[86.062071,32.79365],[86.074089,32.803561],[86.109107,32.858335],[86.107035,32.866429],[86.062278,32.898513],[86.055233,32.911933],[86.066422,32.93991],[86.083828,32.961124],[86.069531,32.983094],[86.090459,33.011999],[86.131072,33.025592],[86.135837,33.046025],[86.111387,33.067404],[86.130036,33.091152],[86.145162,33.123439],[86.172306,33.140148],[86.172928,33.158941],[86.110765,33.167008],[86.056476,33.151444],[86.030161,33.156948],[86.019386,33.167198],[86.020629,33.213116],[86.035963,33.220419],[86.034305,33.243273],[86.075954,33.250668],[86.128378,33.270101],[86.177901,33.297774],[86.205252,33.302038],[86.230325,33.322881],[86.245451,33.323639],[86.245451,33.360196],[86.253739,33.387462],[86.298497,33.415003],[86.328542,33.421627],[86.311343,33.42948],[86.295181,33.458899],[86.268037,33.490578],[86.27674,33.521583],[86.26928,33.593477],[86.25001,33.632186],[86.213748,33.632469],[86.188261,33.653516],[86.179766,33.711344],[86.210225,33.749623],[86.211054,33.784115],[86.25519,33.827353],[86.271352,33.84807],[86.273631,33.894287],[86.244622,33.948473],[86.227838,33.962202],[86.236334,33.998301],[86.19282,34.027996],[86.193027,34.082941],[86.200072,34.122274],[86.182459,34.156335],[86.155729,34.175658],[86.1319,34.209979],[86.128171,34.276517],[86.131693,34.304241],[86.144126,34.328118],[86.170856,34.359475],[86.170441,34.38633],[86.162567,34.404946],[86.136252,34.415234],[86.11408,34.446933],[86.067044,34.478432],[86.033269,34.483292],[85.982295,34.502447],[85.951007,34.509173],[85.943755,34.524305],[85.94852,34.559884],[85.989755,34.594327],[86.027674,34.615416],[86.034098,34.637711],[86.054197,34.65711],[86.035963,34.691513],[86.034927,34.715093],[86.055233,34.76037],[86.083206,34.782999],[86.109936,34.819025],[86.137495,34.875871],[86.144955,34.924034],[86.112216,34.929239],[86.14454,34.974119],[86.150964,35.009969],[86.174585,35.05035],[86.21582,35.104625],[86.21437,35.135225],[86.234883,35.160532],[86.202766,35.211306],[86.199451,35.239459],[86.209189,35.276395],[86.201315,35.299714],[86.178108,35.321547],[86.200072,35.333201],[86.242964,35.342726],[86.245658,35.372775],[86.294974,35.375456],[86.279226,35.385254],[86.257884,35.425818],[86.250631,35.455928],[86.252289,35.484642],[86.27301,35.520728],[86.305749,35.529217],[86.281713,35.540749],[86.290623,35.558919],[86.285235,35.592851],[86.309271,35.611471],[86.318389,35.636444],[86.291244,35.644368],[86.28192,35.676145],[86.237163,35.721257],[86.208153,35.722546],[86.203595,35.74224],[86.177279,35.764228],[86.138117,35.771587],[86.104963,35.794487],[86.111387,35.814439],[86.070774,35.840175],[86.070567,35.860667]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/610000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/610000.json new file mode 100644 index 0000000..507e6eb --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/610000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":610100,"name":"西安市","center":[108.948024,34.263161],"centroid":[108.797426,34.10671],"childrenNum":13,"level":"city","parent":{"adcode":610000},"subFeatureIndex":0,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.754502,34.212239],[109.739996,34.217219],[109.731074,34.236337],[109.691069,34.243003],[109.668562,34.238586],[109.659122,34.245894],[109.627751,34.240031],[109.575831,34.262516],[109.523622,34.255851],[109.500252,34.268698],[109.477688,34.294465],[109.456045,34.298237],[109.450577,34.326724],[109.458981,34.350869],[109.461859,34.394169],[109.445799,34.397376],[109.442633,34.414128],[109.423753,34.423505],[109.424501,34.441934],[109.413277,34.46068],[109.391346,34.468529],[109.399692,34.49976],[109.391346,34.529138],[109.418054,34.536741],[109.429106,34.549385],[109.449771,34.553625],[109.437222,34.595621],[109.42335,34.679548],[109.430775,34.688016],[109.421163,34.706866],[109.429854,34.713814],[109.410859,34.743117],[109.365098,34.739285],[109.358651,34.716929],[109.340749,34.69872],[109.286641,34.687697],[109.280424,34.697442],[109.254176,34.6988],[109.243873,34.687297],[109.203407,34.697682],[109.173072,34.691931],[109.168237,34.666525],[109.156034,34.644709],[109.139053,34.639514],[109.138823,34.588823],[109.108891,34.577705],[109.092889,34.588983],[109.06123,34.593542],[109.011842,34.586184],[108.998315,34.576426],[108.955201,34.565866],[108.974081,34.541383],[108.971146,34.502962],[108.976441,34.44594],[108.955834,34.444979],[108.961015,34.424787],[108.929817,34.40443],[108.913469,34.406033],[108.89292,34.390802],[108.859879,34.388638],[108.828048,34.365947],[108.803239,34.359531],[108.794316,34.334185],[108.796792,34.296713],[108.750282,34.296151],[108.744756,34.276886],[108.700952,34.273675],[108.692087,34.238987],[108.669753,34.243966],[108.650125,34.265808],[108.619444,34.25826],[108.593369,34.239308],[108.56407,34.22959],[108.529706,34.23216],[108.468115,34.205731],[108.457351,34.209186],[108.425922,34.200348],[108.418266,34.20549],[108.37452,34.207659],[108.351495,34.196812],[108.328585,34.195928],[108.293185,34.209989],[108.264865,34.199464],[108.237638,34.199625],[108.20195,34.221718],[108.156534,34.225092],[108.143928,34.218585],[108.086769,34.231036],[108.027941,34.228144],[108.030013,34.208623],[108.011421,34.161047],[108.003074,34.155742],[108.00106,34.103953],[107.976481,34.075069],[107.972567,34.062113],[107.943038,34.042312],[107.941944,34.006079],[107.949887,33.985379],[107.915638,33.986104],[107.908213,33.999314],[107.87759,33.993918],[107.846564,33.975148],[107.8103,33.995045],[107.784455,33.980626],[107.76736,33.954521],[107.71377,33.92736],[107.717626,33.910431],[107.704387,33.857282],[107.708589,33.846794],[107.697422,33.817903],[107.679463,33.808298],[107.68591,33.796996],[107.665821,33.760013],[107.687924,33.744746],[107.695868,33.72366],[107.719353,33.725761],[107.737427,33.717923],[107.763503,33.719781],[107.830102,33.69788],[107.854278,33.694081],[107.90309,33.748947],[107.931583,33.731255],[107.951672,33.745797],[107.96612,33.734648],[108.008312,33.728993],[108.054247,33.709842],[108.073818,33.723417],[108.098396,33.723498],[108.113823,33.712589],[108.132243,33.721882],[108.149281,33.712347],[108.180191,33.711862],[108.191761,33.725276],[108.233148,33.726649],[108.259281,33.754763],[108.288292,33.767282],[108.307,33.76292],[108.345969,33.793848],[108.369454,33.793202],[108.404855,33.763324],[108.443709,33.781979],[108.466445,33.800629],[108.484405,33.804262],[108.544557,33.788438],[108.560444,33.765101],[108.584274,33.764536],[108.585425,33.780122],[108.602579,33.791426],[108.617717,33.825974],[108.650067,33.841549],[108.697843,33.828315],[108.741014,33.841468],[108.755923,33.839048],[108.756038,33.812657],[108.778487,33.798046],[108.805771,33.817177],[108.84002,33.815966],[108.854238,33.826539],[108.874788,33.824522],[108.913239,33.848649],[108.922161,33.869383],[108.944265,33.86664],[109.007985,33.883256],[109.051502,33.923169],[109.070555,33.906641],[109.107682,33.907609],[109.120576,33.876481],[109.164207,33.871319],[109.18493,33.874303],[109.207379,33.867043],[109.251874,33.880675],[109.289462,33.87027],[109.299823,33.856556],[109.316918,33.85462],[109.355945,33.867608],[109.399059,33.845422],[109.442518,33.843566],[109.470263,33.851796],[109.508541,33.848004],[109.537322,33.862042],[109.540142,33.875513],[109.576118,33.897691],[109.592984,33.896804],[109.603633,33.940982],[109.562994,33.960726],[109.533235,33.982077],[109.545496,34.025244],[109.56121,34.034181],[109.552806,34.044727],[109.567139,34.064688],[109.584235,34.072092],[109.634313,34.075633],[109.658835,34.105481],[109.669886,34.099931],[109.694753,34.109101],[109.739824,34.09792],[109.742184,34.12189],[109.755078,34.127197],[109.78098,34.160083],[109.789787,34.145049],[109.822194,34.155742],[109.801415,34.160887],[109.778102,34.183392],[109.745465,34.187491],[109.754502,34.212239]]],[[[109.174166,33.808702],[109.162366,33.812657],[109.147284,33.799337],[109.154019,33.791103],[109.174166,33.808702]]]]}},{"type":"Feature","properties":{"adcode":610200,"name":"铜川市","center":[108.979608,34.916582],"centroid":[109.038368,35.195996],"childrenNum":4,"level":"city","parent":{"adcode":610000},"subFeatureIndex":1,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.868629,35.344653],[108.873349,35.326108],[108.824824,35.316279],[108.807843,35.300819],[108.79777,35.306448],[108.750627,35.293366],[108.739921,35.268464],[108.720292,35.254979],[108.696865,35.222764],[108.670674,35.210462],[108.676545,35.196729],[108.656629,35.194267],[108.65473,35.178467],[108.633432,35.164093],[108.655708,35.156866],[108.662673,35.128585],[108.644138,35.119288],[108.616278,35.11746],[108.591297,35.101645],[108.626812,35.099897],[108.60891,35.06762],[108.583526,35.043524],[108.599067,35.021966],[108.62048,35.011782],[108.631532,34.978993],[108.643217,34.975093],[108.665148,34.933608],[108.66699,34.916563],[108.689036,34.880707],[108.726509,34.866839],[108.766399,34.87202],[108.780559,34.852729],[108.81383,34.830643],[108.82327,34.804881],[108.855504,34.82219],[108.902302,34.810146],[108.898561,34.823545],[108.918189,34.83455],[108.957158,34.829766],[108.973736,34.821711],[108.977823,34.835348],[108.967347,34.88007],[108.983291,34.889951],[109.013914,34.891386],[109.034003,34.901107],[109.061748,34.888836],[109.062323,34.908357],[109.095479,34.919271],[109.097263,34.932892],[109.084542,34.955906],[109.105207,34.97167],[109.127886,34.975093],[109.144176,34.991728],[109.164438,34.983689],[109.176929,35.001597],[109.212559,35.003745],[109.20663,35.018625],[109.223726,35.04758],[109.261659,35.050761],[109.28313,35.084952],[109.27415,35.099579],[109.290728,35.09942],[109.296657,35.086145],[109.339425,35.092504],[109.359514,35.101009],[109.408384,35.09163],[109.415349,35.071993],[109.426746,35.06921],[109.444187,35.088848],[109.441021,35.104586],[109.44482,35.148684],[109.433538,35.167429],[109.381733,35.157184],[109.362162,35.164411],[109.344203,35.18998],[109.319278,35.200142],[109.30909,35.216414],[109.303564,35.246648],[109.283533,35.251012],[109.318703,35.274254],[109.368897,35.286071],[109.382481,35.298282],[109.382711,35.314059],[109.39785,35.329357],[109.411838,35.322699],[109.444475,35.343385],[109.476019,35.340215],[109.495647,35.357251],[109.493575,35.395986],[109.467097,35.421878],[109.4774,35.438977],[109.473601,35.453143],[109.45852,35.454568],[109.478379,35.473795],[109.468248,35.483763],[109.466694,35.509074],[109.448389,35.511604],[109.431293,35.500849],[109.406024,35.511762],[109.405909,35.520777],[109.342188,35.522595],[109.266494,35.519512],[109.243758,35.523702],[109.20358,35.580137],[109.179922,35.580769],[109.116086,35.565597],[109.091622,35.543625],[109.051559,35.548763],[109.032852,35.52979],[109.035845,35.518642],[109.014547,35.509311],[109.014893,35.497448],[108.992559,35.473004],[108.979204,35.448316],[108.987148,35.436444],[108.943689,35.393373],[108.923139,35.363114],[108.89787,35.350437],[108.868629,35.344653]]]]}},{"type":"Feature","properties":{"adcode":610300,"name":"宝鸡市","center":[107.14487,34.369315],"centroid":[107.205191,34.380063],"childrenNum":12,"level":"city","parent":{"adcode":610000},"subFeatureIndex":2,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.027941,34.228144],[107.990181,34.22212],[107.995131,34.265647],[107.973603,34.268858],[107.96825,34.286519],[107.950808,34.287803],[107.953744,34.32183],[107.987878,34.313485],[107.995764,34.332901],[108.009118,34.317015],[108.035884,34.315972],[108.053095,34.325761],[108.029438,34.370838],[108.027711,34.38503],[108.041698,34.390001],[108.019825,34.430797],[108.011881,34.457956],[108.017637,34.479101],[107.997606,34.487189],[108.004053,34.527938],[108.002441,34.552105],[107.980453,34.575866],[107.995822,34.612573],[108.032143,34.626644],[108.015623,34.695445],[108.015335,34.726032],[107.99916,34.750301],[107.992023,34.782782],[107.963127,34.79842],[107.94983,34.821552],[107.951787,34.863332],[107.90804,34.842684],[107.857961,34.844438],[107.857501,34.863172],[107.841269,34.890669],[107.84973,34.891466],[107.822791,34.953358],[107.820028,34.973739],[107.799997,34.966813],[107.804775,34.956782],[107.778584,34.964664],[107.741572,34.953517],[107.67434,34.951208],[107.654366,34.933529],[107.637731,34.93329],[107.63986,34.918793],[107.625815,34.918952],[107.633414,34.953915],[107.619714,34.964664],[107.605611,34.958693],[107.572168,34.971351],[107.562037,34.966495],[107.551158,34.940298],[107.537861,34.932493],[107.536653,34.915368],[107.524047,34.909871],[107.474774,34.91943],[107.455548,34.916802],[107.426019,34.92875],[107.392921,34.932414],[107.371969,34.917997],[107.35021,34.934086],[107.322351,34.938148],[107.28672,34.931856],[107.282978,34.911783],[107.262371,34.907481],[107.252528,34.881185],[107.230943,34.891864],[107.222999,34.878157],[107.201011,34.881664],[107.189556,34.893298],[107.179886,34.928272],[107.162387,34.944121],[107.135621,34.945873],[107.103041,34.960046],[107.089629,34.976685],[107.096076,35.010111],[107.082606,35.024035],[107.048242,35.028331],[107.051005,35.04074],[107.031031,35.029126],[107.012439,35.029365],[106.990796,35.068495],[106.950157,35.066905],[106.944401,35.080103],[106.912569,35.079546],[106.90169,35.094492],[106.856965,35.091232],[106.83843,35.079785],[106.777818,35.094253],[106.7145,35.105619],[106.706441,35.081852],[106.666206,35.076605],[106.661601,35.069687],[106.615379,35.071119],[106.575834,35.089325],[106.543542,35.085032],[106.545959,35.070562],[106.520978,35.027615],[106.503536,35.03374],[106.48857,35.02125],[106.502155,34.995548],[106.48316,34.980108],[106.493118,34.941095],[106.510214,34.925086],[106.517927,34.892422],[106.528,34.876483],[106.555918,34.861339],[106.554306,34.813735],[106.578367,34.789006],[106.575028,34.770095],[106.54855,34.761635],[106.539628,34.745671],[106.505839,34.746869],[106.486901,34.715172],[106.459617,34.705589],[106.44137,34.681705],[106.445687,34.669482],[106.470784,34.65374],[106.467215,34.640952],[106.44868,34.636396],[106.421741,34.654939],[106.419496,34.64343],[106.368151,34.610334],[106.323138,34.589863],[106.314044,34.578745],[106.340982,34.568026],[106.343803,34.536581],[106.33442,34.517852],[106.366137,34.512329],[106.379031,34.520654],[106.401365,34.511128],[106.407811,34.523135],[106.453861,34.531299],[106.487765,34.523375],[106.511825,34.502482],[106.536059,34.493034],[106.543657,34.47854],[106.552406,34.489191],[106.567948,34.474857],[106.599434,34.465966],[106.591606,34.456514],[106.613709,34.44626],[106.637252,34.392005],[106.662176,34.381663],[106.680078,34.383747],[106.697289,34.370598],[106.717378,34.369234],[106.710989,34.344372],[106.690324,34.334024],[106.705117,34.299522],[106.684107,34.259946],[106.663903,34.243163],[106.633626,34.259866],[106.602485,34.250873],[106.589246,34.253764],[106.5771,34.2809],[106.526446,34.291977],[106.496514,34.255129],[106.496053,34.238345],[106.512919,34.239389],[106.532087,34.254085],[106.551255,34.242601],[106.558565,34.227421],[106.572265,34.16997],[106.584871,34.149471],[106.56081,34.113203],[106.501867,34.104918],[106.505494,34.056479],[106.47159,34.024037],[106.479533,33.994401],[106.476022,33.973779],[106.443557,33.934615],[106.41092,33.909221],[106.428246,33.866479],[106.475331,33.875755],[106.493406,33.846148],[106.491391,33.834529],[106.468712,33.820083],[106.461804,33.789649],[106.479821,33.780768],[106.48811,33.758236],[106.482642,33.707336],[106.53485,33.695132],[106.575546,33.631658],[106.581475,33.590638],[106.596729,33.579389],[106.617911,33.591933],[106.629827,33.619605],[106.647325,33.634813],[106.64226,33.658994],[106.687043,33.665544],[106.705693,33.676944],[106.674955,33.701437],[106.71427,33.701356],[106.789215,33.67751],[106.797273,33.682441],[106.803835,33.72366],[106.80585,33.809832],[106.817823,33.834448],[106.839409,33.827023],[106.854375,33.848649],[106.855583,33.874384],[106.888681,33.860993],[106.890063,33.848327],[106.909691,33.847762],[106.930701,33.827266],[106.978247,33.800952],[107.028153,33.794574],[107.043234,33.805069],[107.038514,33.85462],[107.044904,33.873819],[107.063093,33.870431],[107.066432,33.838725],[107.080477,33.8221],[107.105746,33.822504],[107.112078,33.812818],[107.136945,33.81411],[107.128368,33.777618],[107.145233,33.794251],[107.163135,33.788035],[107.181612,33.769462],[107.187369,33.751774],[107.212581,33.74927],[107.231173,33.766797],[107.27279,33.790699],[107.276762,33.801194],[107.299499,33.792798],[107.322581,33.818872],[107.342037,33.81411],[107.328279,33.797642],[107.32212,33.774469],[107.305543,33.766878],[107.304334,33.733517],[107.314177,33.728831],[107.3056,33.710165],[107.336165,33.68907],[107.376516,33.682845],[107.400347,33.651312],[107.423601,33.649371],[107.467694,33.660612],[107.492503,33.679854],[107.517082,33.678318],[107.562555,33.70273],[107.586846,33.697719],[107.628694,33.714448],[107.650682,33.700628],[107.673764,33.699497],[107.695868,33.72366],[107.687924,33.744746],[107.665821,33.760013],[107.68591,33.796996],[107.679463,33.808298],[107.697422,33.817903],[107.708589,33.846794],[107.704387,33.857282],[107.717626,33.910431],[107.71377,33.92736],[107.76736,33.954521],[107.784455,33.980626],[107.8103,33.995045],[107.846564,33.975148],[107.87759,33.993918],[107.908213,33.999314],[107.915638,33.986104],[107.949887,33.985379],[107.941944,34.006079],[107.943038,34.042312],[107.972567,34.062113],[107.976481,34.075069],[108.00106,34.103953],[108.003074,34.155742],[108.011421,34.161047],[108.030013,34.208623],[108.027941,34.228144]]]]}},{"type":"Feature","properties":{"adcode":610400,"name":"咸阳市","center":[108.705117,34.333439],"centroid":[108.394642,34.785702],"childrenNum":14,"level":"city","parent":{"adcode":610000},"subFeatureIndex":3,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.820028,34.973739],[107.822791,34.953358],[107.84973,34.891466],[107.841269,34.890669],[107.857501,34.863172],[107.857961,34.844438],[107.90804,34.842684],[107.951787,34.863332],[107.94983,34.821552],[107.963127,34.79842],[107.992023,34.782782],[107.99916,34.750301],[108.015335,34.726032],[108.015623,34.695445],[108.032143,34.626644],[107.995822,34.612573],[107.980453,34.575866],[108.002441,34.552105],[108.004053,34.527938],[107.997606,34.487189],[108.017637,34.479101],[108.011881,34.457956],[108.019825,34.430797],[108.041698,34.390001],[108.027711,34.38503],[108.029438,34.370838],[108.053095,34.325761],[108.035884,34.315972],[108.009118,34.317015],[107.995764,34.332901],[107.987878,34.313485],[107.953744,34.32183],[107.950808,34.287803],[107.96825,34.286519],[107.973603,34.268858],[107.995131,34.265647],[107.990181,34.22212],[108.027941,34.228144],[108.086769,34.231036],[108.143928,34.218585],[108.156534,34.225092],[108.20195,34.221718],[108.237638,34.199625],[108.264865,34.199464],[108.293185,34.209989],[108.328585,34.195928],[108.351495,34.196812],[108.37452,34.207659],[108.418266,34.20549],[108.425922,34.200348],[108.457351,34.209186],[108.468115,34.205731],[108.529706,34.23216],[108.56407,34.22959],[108.593369,34.239308],[108.619444,34.25826],[108.650125,34.265808],[108.669753,34.243966],[108.692087,34.238987],[108.700952,34.273675],[108.744756,34.276886],[108.750282,34.296151],[108.796792,34.296713],[108.794316,34.334185],[108.803239,34.359531],[108.828048,34.365947],[108.859879,34.388638],[108.89292,34.390802],[108.913469,34.406033],[108.929817,34.40443],[108.961015,34.424787],[108.955834,34.444979],[108.976441,34.44594],[108.971146,34.502962],[108.974081,34.541383],[108.955201,34.565866],[108.998315,34.576426],[109.011842,34.586184],[109.06123,34.593542],[109.092889,34.588983],[109.108891,34.577705],[109.138823,34.588823],[109.139053,34.639514],[109.156034,34.644709],[109.168237,34.666525],[109.173072,34.691931],[109.173187,34.705589],[109.128174,34.699838],[109.090356,34.700876],[109.068655,34.713176],[109.046436,34.687058],[109.029053,34.70503],[109.030492,34.727948],[109.04517,34.752297],[109.034406,34.771451],[109.015986,34.781825],[108.997682,34.808551],[108.973736,34.821711],[108.957158,34.829766],[108.918189,34.83455],[108.898561,34.823545],[108.902302,34.810146],[108.855504,34.82219],[108.82327,34.804881],[108.81383,34.830643],[108.780559,34.852729],[108.766399,34.87202],[108.726509,34.866839],[108.689036,34.880707],[108.66699,34.916563],[108.665148,34.933608],[108.643217,34.975093],[108.631532,34.978993],[108.62048,35.011782],[108.599067,35.021966],[108.583526,35.043524],[108.60891,35.06762],[108.626812,35.099897],[108.591297,35.101645],[108.616278,35.11746],[108.644138,35.119288],[108.662673,35.128585],[108.655708,35.156866],[108.633432,35.164093],[108.65473,35.178467],[108.656629,35.194267],[108.676545,35.196729],[108.670674,35.210462],[108.696865,35.222764],[108.720292,35.254979],[108.739921,35.268464],[108.750627,35.293366],[108.79777,35.306448],[108.807843,35.300819],[108.824824,35.316279],[108.873349,35.326108],[108.868629,35.344653],[108.846467,35.349803],[108.835876,35.380304],[108.803584,35.379195],[108.808246,35.392898],[108.791611,35.421957],[108.791956,35.437631],[108.775494,35.459316],[108.767378,35.486769],[108.741993,35.491595],[108.727084,35.505831],[108.702563,35.511288],[108.690303,35.505436],[108.659162,35.537775],[108.622898,35.540779],[108.605975,35.502826],[108.616566,35.477276],[108.619444,35.442934],[108.631129,35.418632],[108.62215,35.3807],[108.610752,35.356459],[108.615357,35.331656],[108.602982,35.312315],[108.568272,35.290908],[108.543463,35.303911],[108.525043,35.289005],[108.489125,35.275285],[108.449062,35.273699],[108.402379,35.278061],[108.400134,35.282819],[108.352819,35.285753],[108.345336,35.300661],[108.298078,35.268385],[108.256921,35.267433],[108.239365,35.256248],[108.221463,35.296855],[108.193776,35.306607],[108.174666,35.305101],[108.123954,35.281788],[108.094885,35.280043],[108.048663,35.253789],[107.979301,35.245458],[107.949772,35.2453],[107.960594,35.261484],[107.937799,35.267353],[107.936073,35.253947],[107.904702,35.261166],[107.866193,35.256407],[107.841844,35.276395],[107.829814,35.273143],[107.79142,35.295903],[107.75176,35.305101],[107.745716,35.311601],[107.716648,35.302326],[107.736794,35.296141],[107.737312,35.267433],[107.720159,35.269257],[107.692357,35.251171],[107.662597,35.255375],[107.651948,35.239746],[107.670311,35.21443],[107.687291,35.216653],[107.715784,35.168144],[107.728563,35.127314],[107.722519,35.114917],[107.762006,35.084316],[107.759474,35.071198],[107.802069,35.032388],[107.827511,35.022205],[107.848349,35.023876],[107.843629,35.002313],[107.863372,34.999209],[107.858595,34.986873],[107.820028,34.973739]]]]}},{"type":"Feature","properties":{"adcode":610500,"name":"渭南市","center":[109.502882,34.499381],"centroid":[109.856208,34.950969],"childrenNum":11,"level":"city","parent":{"adcode":610000},"subFeatureIndex":4,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.430966,34.40948],[110.409496,34.421581],[110.392688,34.466046],[110.367073,34.496157],[110.360626,34.517292],[110.372714,34.544343],[110.404488,34.557626],[110.367188,34.566746],[110.379161,34.600499],[110.350783,34.606656],[110.295524,34.611054],[110.269045,34.629442],[110.236638,34.67044],[110.229616,34.692649],[110.2432,34.725792],[110.246884,34.788846],[110.233702,34.837421],[110.238825,34.852012],[110.23094,34.880707],[110.254367,34.919191],[110.262195,34.94436],[110.274686,34.947306],[110.30151,34.988624],[110.320851,35.005178],[110.320563,35.038513],[110.333111,35.045115],[110.346466,35.084316],[110.373692,35.134226],[110.364713,35.140264],[110.364367,35.197999],[110.378355,35.210858],[110.374844,35.251964],[110.40397,35.286467],[110.450019,35.327772],[110.477591,35.413882],[110.48588,35.422828],[110.513049,35.483131],[110.531699,35.511446],[110.567502,35.539514],[110.580914,35.563147],[110.589088,35.602099],[110.60935,35.632189],[110.603996,35.658873],[110.592369,35.663293],[110.592311,35.682313],[110.577633,35.701486],[110.574007,35.769777],[110.563818,35.787668],[110.56733,35.819342],[110.550752,35.838088],[110.54937,35.854074],[110.510113,35.845963],[110.486628,35.828401],[110.411107,35.809967],[110.385838,35.784673],[110.370296,35.757401],[110.328967,35.752591],[110.29915,35.731222],[110.282227,35.711741],[110.232897,35.715133],[110.222017,35.721049],[110.162787,35.710006],[110.1332,35.675132],[110.172687,35.657689],[110.193927,35.656347],[110.211656,35.639295],[110.229558,35.634715],[110.234739,35.616553],[110.25713,35.597912],[110.251316,35.586457],[110.283033,35.56702],[110.273765,35.538803],[110.222478,35.546629],[110.230421,35.510497],[110.213153,35.502905],[110.2059,35.485583],[110.184487,35.469286],[110.138611,35.456071],[110.116507,35.425045],[110.102404,35.423303],[110.087381,35.406677],[110.05198,35.416732],[110.014105,35.408656],[109.996606,35.434702],[109.983712,35.410081],[109.953608,35.414832],[109.90186,35.411823],[109.882404,35.421166],[109.875727,35.435415],[109.85299,35.422195],[109.840384,35.432248],[109.821504,35.429636],[109.81379,35.443409],[109.752775,35.434544],[109.721059,35.41119],[109.698034,35.409052],[109.616181,35.442776],[109.546935,35.443805],[109.521147,35.425441],[109.513204,35.38577],[109.495647,35.357251],[109.476019,35.340215],[109.444475,35.343385],[109.411838,35.322699],[109.39785,35.329357],[109.382711,35.314059],[109.382481,35.298282],[109.368897,35.286071],[109.318703,35.274254],[109.283533,35.251012],[109.303564,35.246648],[109.30909,35.216414],[109.319278,35.200142],[109.344203,35.18998],[109.362162,35.164411],[109.381733,35.157184],[109.433538,35.167429],[109.44482,35.148684],[109.441021,35.104586],[109.444187,35.088848],[109.426746,35.06921],[109.415349,35.071993],[109.408384,35.09163],[109.359514,35.101009],[109.339425,35.092504],[109.296657,35.086145],[109.290728,35.09942],[109.27415,35.099579],[109.28313,35.084952],[109.261659,35.050761],[109.223726,35.04758],[109.20663,35.018625],[109.212559,35.003745],[109.176929,35.001597],[109.164438,34.983689],[109.144176,34.991728],[109.127886,34.975093],[109.105207,34.97167],[109.084542,34.955906],[109.097263,34.932892],[109.095479,34.919271],[109.062323,34.908357],[109.061748,34.888836],[109.034003,34.901107],[109.013914,34.891386],[108.983291,34.889951],[108.967347,34.88007],[108.977823,34.835348],[108.973736,34.821711],[108.997682,34.808551],[109.015986,34.781825],[109.034406,34.771451],[109.04517,34.752297],[109.030492,34.727948],[109.029053,34.70503],[109.046436,34.687058],[109.068655,34.713176],[109.090356,34.700876],[109.128174,34.699838],[109.173187,34.705589],[109.173072,34.691931],[109.203407,34.697682],[109.243873,34.687297],[109.254176,34.6988],[109.280424,34.697442],[109.286641,34.687697],[109.340749,34.69872],[109.358651,34.716929],[109.365098,34.739285],[109.410859,34.743117],[109.429854,34.713814],[109.421163,34.706866],[109.430775,34.688016],[109.42335,34.679548],[109.437222,34.595621],[109.449771,34.553625],[109.429106,34.549385],[109.418054,34.536741],[109.391346,34.529138],[109.399692,34.49976],[109.391346,34.468529],[109.413277,34.46068],[109.424501,34.441934],[109.423753,34.423505],[109.442633,34.414128],[109.445799,34.397376],[109.461859,34.394169],[109.458981,34.350869],[109.450577,34.326724],[109.456045,34.298237],[109.477688,34.294465],[109.500252,34.268698],[109.523622,34.255851],[109.575831,34.262516],[109.627751,34.240031],[109.659122,34.245894],[109.668562,34.238586],[109.691069,34.243003],[109.731074,34.236337],[109.739996,34.217219],[109.754502,34.212239],[109.743565,34.240352],[109.757322,34.252961],[109.775972,34.251997],[109.80199,34.224048],[109.792147,34.263078],[109.825591,34.288205],[109.853335,34.266048],[109.873655,34.270785],[109.883555,34.24742],[109.920395,34.230313],[109.95614,34.243645],[109.94929,34.219549],[109.964372,34.209748],[109.997642,34.221638],[110.024063,34.240352],[110.007255,34.303213],[110.030855,34.30217],[110.040526,34.324156],[110.024236,34.338998],[110.007197,34.368593],[110.03736,34.377814],[110.058485,34.396975],[110.059982,34.413247],[110.075178,34.413888],[110.103383,34.428874],[110.132164,34.42687],[110.162326,34.432159],[110.194215,34.414769],[110.251834,34.406754],[110.284357,34.391364],[110.377549,34.398338],[110.388716,34.408117],[110.430966,34.40948]]]]}},{"type":"Feature","properties":{"adcode":610600,"name":"延安市","center":[109.49081,36.596537],"centroid":[109.319393,36.442397],"childrenNum":13,"level":"city","parent":{"adcode":610000},"subFeatureIndex":5,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.54937,35.854074],[110.551212,35.87541],[110.511668,35.879739],[110.516675,35.921684],[110.503206,35.943237],[110.515064,35.958101],[110.514258,35.975714],[110.49296,35.995916],[110.499695,36.008098],[110.492212,36.034656],[110.467978,36.074634],[110.470453,36.094654],[110.45048,36.132247],[110.447083,36.164332],[110.459517,36.194601],[110.454164,36.223682],[110.473907,36.24813],[110.476037,36.279541],[110.468209,36.291366],[110.473562,36.310548],[110.459977,36.327847],[110.469245,36.369944],[110.487031,36.393877],[110.492154,36.423119],[110.473159,36.453209],[110.495781,36.472976],[110.503379,36.488209],[110.50217,36.530999],[110.489909,36.550746],[110.498256,36.578056],[110.47149,36.595764],[110.447429,36.621109],[110.422389,36.661799],[110.394472,36.676839],[110.393206,36.692498],[110.408575,36.696627],[110.433269,36.679799],[110.436722,36.71127],[110.451803,36.726533],[110.439946,36.737122],[110.421238,36.721549],[110.414504,36.728869],[110.432002,36.74802],[110.420145,36.760786],[110.388486,36.764911],[110.384111,36.775261],[110.4061,36.774483],[110.419569,36.798291],[110.422908,36.819214],[110.407251,36.824891],[110.419511,36.835],[110.424519,36.855524],[110.414043,36.865707],[110.382902,36.870448],[110.376052,36.88226],[110.408747,36.892361],[110.415655,36.934228],[110.425728,36.957211],[110.418706,36.973589],[110.388313,36.958608],[110.375649,36.962024],[110.362238,36.943857],[110.352222,36.975141],[110.324247,36.98492],[110.294718,36.965594],[110.278601,36.968544],[110.269621,36.988955],[110.242855,37.00362],[110.191107,37.013394],[110.170557,36.988567],[110.115816,36.973201],[110.087554,36.985308],[110.066141,37.01099],[110.032467,37.029605],[110.031546,37.053179],[110.011112,37.095345],[110.025099,37.132221],[110.013644,37.146316],[109.990677,37.130207],[109.978071,37.151659],[109.982101,37.179375],[109.954529,37.206306],[109.968919,37.213424],[109.988375,37.199652],[110.013126,37.204913],[110.030222,37.245294],[110.028323,37.265244],[110.011227,37.274212],[109.987857,37.26965],[109.926784,37.29284],[109.919128,37.314091],[109.898176,37.294927],[109.905601,37.277922],[109.879353,37.270887],[109.841017,37.279546],[109.811948,37.257821],[109.797788,37.265476],[109.762043,37.270733],[109.783801,37.310691],[109.812351,37.305051],[109.80366,37.347308],[109.784434,37.343369],[109.77344,37.363756],[109.772807,37.393246],[109.734758,37.400501],[109.738673,37.424808],[109.717778,37.435377],[109.669599,37.422339],[109.634659,37.419407],[109.576291,37.438],[109.564088,37.460135],[109.536516,37.477869],[109.509002,37.481647],[109.492539,37.498451],[109.468651,37.487351],[109.453397,37.460212],[109.434574,37.459672],[109.417421,37.446947],[109.385877,37.438154],[109.362968,37.408913],[109.349786,37.379815],[109.329812,37.373253],[109.342994,37.347385],[109.307651,37.354644],[109.300744,37.34445],[109.282612,37.346072],[109.24865,37.337035],[109.24347,37.31865],[109.231497,37.329311],[109.205249,37.32089],[109.178713,37.327148],[109.173935,37.30451],[109.142737,37.318572],[109.11787,37.322435],[109.111193,37.307214],[109.078498,37.312005],[109.056567,37.28542],[109.049027,37.295468],[109.013684,37.303891],[109.01449,37.283024],[109.002459,37.285807],[108.984673,37.267099],[108.963778,37.263233],[108.950884,37.233383],[108.920722,37.238333],[108.894646,37.23493],[108.889639,37.222321],[108.876227,37.252717],[108.862354,37.263543],[108.868801,37.242123],[108.859994,37.236554],[108.85349,37.205378],[108.862239,37.180149],[108.882904,37.177285],[108.883019,37.150962],[108.853202,37.154601],[108.834437,37.136868],[108.819528,37.139734],[108.79754,37.111694],[108.778314,37.121919],[108.773249,37.113088],[108.750915,37.114405],[108.757707,37.099607],[108.741245,37.081241],[108.770601,37.069072],[108.782631,37.05062],[108.809052,37.043409],[108.815845,37.029916],[108.803987,37.023789],[108.80485,37.002999],[108.768241,36.974831],[108.758456,36.98911],[108.73664,36.982592],[108.688173,36.996637],[108.672401,37.020298],[108.651218,37.03961],[108.621459,37.02627],[108.611328,37.029838],[108.598607,37.004783],[108.558486,36.986549],[108.536268,36.988955],[108.517503,37.003309],[108.501213,37.001292],[108.487743,37.026891],[108.510135,37.023246],[108.542254,37.039842],[108.536728,37.060544],[108.552097,37.088293],[108.536325,37.117117],[108.547838,37.163583],[108.540527,37.178833],[108.512725,37.204217],[108.515258,37.231294],[108.48665,37.233074],[108.452688,37.2538],[108.474274,37.26161],[108.486419,37.28542],[108.438701,37.3144],[108.428743,37.356961],[108.431736,37.388306],[108.418842,37.407215],[108.406581,37.406675],[108.407445,37.381127],[108.361395,37.388461],[108.362201,37.405363],[108.343436,37.373871],[108.319548,37.358814],[108.263253,37.341747],[108.236659,37.340279],[108.21657,37.325139],[108.249438,37.298018],[108.245524,37.283642],[108.261296,37.268491],[108.282248,37.26161],[108.275571,37.235239],[108.251971,37.234775],[108.260087,37.216983],[108.24915,37.201741],[108.230673,37.194235],[108.213347,37.171866],[108.174723,37.164666],[108.173745,37.195705],[108.136617,37.191139],[108.123954,37.20414],[108.11555,37.149646],[108.102195,37.130052],[108.032316,37.127187],[107.982525,37.110299],[107.959097,37.081783],[107.94252,37.081861],[107.930835,37.094028],[107.888584,37.083953],[107.887145,37.132299],[107.866941,37.16397],[107.858652,37.212341],[107.850594,37.221393],[107.820086,37.220697],[107.82141,37.243283],[107.797694,37.246144],[107.78388,37.230521],[107.771159,37.230521],[107.747616,37.207699],[107.749343,37.176511],[107.724131,37.16366],[107.744738,37.153905],[107.734377,37.136946],[107.704099,37.142676],[107.675779,37.121687],[107.692472,37.123856],[107.700473,37.091471],[107.720217,37.07349],[107.696962,37.050078],[107.670138,37.064653],[107.65995,37.058529],[107.674858,37.029916],[107.68591,37.022935],[107.69512,36.996637],[107.702142,37.018126],[107.725282,37.016265],[107.752739,37.001137],[107.748307,36.986317],[107.723958,36.985929],[107.693335,36.97421],[107.706287,36.963033],[107.723267,36.920094],[107.727124,36.892828],[107.723095,36.8591],[107.694947,36.849772],[107.672095,36.8329],[107.720792,36.802336],[107.74491,36.811203],[107.768223,36.792923],[107.819971,36.776817],[107.826706,36.785454],[107.86625,36.76709],[107.881907,36.747164],[107.906659,36.75238],[107.905507,36.740625],[107.940965,36.694835],[107.937454,36.658215],[107.974409,36.666086],[107.980798,36.653383],[107.985979,36.674891],[108.004744,36.68315],[108.023336,36.66967],[108.023163,36.648082],[108.002096,36.637403],[108.046188,36.596232],[108.06219,36.592566],[108.079977,36.613077],[108.094943,36.604499],[108.09287,36.58734],[108.115607,36.586638],[108.139092,36.57673],[108.141453,36.562608],[108.163614,36.5637],[108.182321,36.59007],[108.197863,36.629919],[108.222902,36.630933],[108.204713,36.606371],[108.216628,36.571347],[108.245466,36.571035],[108.262447,36.549341],[108.270218,36.567446],[108.287429,36.553322],[108.306424,36.561203],[108.340616,36.558862],[108.359611,36.547312],[108.365425,36.519679],[108.391615,36.50539],[108.40802,36.459616],[108.401401,36.447036],[108.418957,36.448599],[108.460574,36.423119],[108.485556,36.429451],[108.496838,36.422728],[108.514682,36.445551],[108.510653,36.474461],[108.533044,36.454616],[108.562631,36.438595],[108.593599,36.431483],[108.618926,36.433906],[108.651276,36.384727],[108.641605,36.359148],[108.642181,36.311175],[108.655075,36.273981],[108.646095,36.254163],[108.664918,36.214826],[108.702851,36.160803],[108.712349,36.138759],[108.69767,36.117338],[108.707456,36.109803],[108.690878,36.088766],[108.682532,36.055001],[108.688633,36.021064],[108.661752,35.993873],[108.656514,35.952989],[108.633777,35.944732],[108.588764,35.950394],[108.569308,35.939619],[108.563034,35.92129],[108.518654,35.905475],[108.499543,35.872261],[108.518942,35.849113],[108.527864,35.824226],[108.523259,35.759371],[108.533908,35.746205],[108.517042,35.716001],[108.530339,35.680498],[108.523259,35.661162],[108.539721,35.605575],[108.56384,35.597991],[108.567639,35.585509],[108.618466,35.556983],[108.622898,35.540779],[108.659162,35.537775],[108.690303,35.505436],[108.702563,35.511288],[108.727084,35.505831],[108.741993,35.491595],[108.767378,35.486769],[108.775494,35.459316],[108.791956,35.437631],[108.791611,35.421957],[108.808246,35.392898],[108.803584,35.379195],[108.835876,35.380304],[108.846467,35.349803],[108.868629,35.344653],[108.89787,35.350437],[108.923139,35.363114],[108.943689,35.393373],[108.987148,35.436444],[108.979204,35.448316],[108.992559,35.473004],[109.014893,35.497448],[109.014547,35.509311],[109.035845,35.518642],[109.032852,35.52979],[109.051559,35.548763],[109.091622,35.543625],[109.116086,35.565597],[109.179922,35.580769],[109.20358,35.580137],[109.243758,35.523702],[109.266494,35.519512],[109.342188,35.522595],[109.405909,35.520777],[109.406024,35.511762],[109.431293,35.500849],[109.448389,35.511604],[109.466694,35.509074],[109.468248,35.483763],[109.478379,35.473795],[109.45852,35.454568],[109.473601,35.453143],[109.4774,35.438977],[109.467097,35.421878],[109.493575,35.395986],[109.495647,35.357251],[109.513204,35.38577],[109.521147,35.425441],[109.546935,35.443805],[109.616181,35.442776],[109.698034,35.409052],[109.721059,35.41119],[109.752775,35.434544],[109.81379,35.443409],[109.821504,35.429636],[109.840384,35.432248],[109.85299,35.422195],[109.875727,35.435415],[109.882404,35.421166],[109.90186,35.411823],[109.953608,35.414832],[109.983712,35.410081],[109.996606,35.434702],[110.014105,35.408656],[110.05198,35.416732],[110.087381,35.406677],[110.102404,35.423303],[110.116507,35.425045],[110.138611,35.456071],[110.184487,35.469286],[110.2059,35.485583],[110.213153,35.502905],[110.230421,35.510497],[110.222478,35.546629],[110.273765,35.538803],[110.283033,35.56702],[110.251316,35.586457],[110.25713,35.597912],[110.234739,35.616553],[110.229558,35.634715],[110.211656,35.639295],[110.193927,35.656347],[110.172687,35.657689],[110.1332,35.675132],[110.162787,35.710006],[110.222017,35.721049],[110.232897,35.715133],[110.282227,35.711741],[110.29915,35.731222],[110.328967,35.752591],[110.370296,35.757401],[110.385838,35.784673],[110.411107,35.809967],[110.486628,35.828401],[110.510113,35.845963],[110.54937,35.854074]]]]}},{"type":"Feature","properties":{"adcode":610700,"name":"汉中市","center":[107.028621,33.077668],"centroid":[107.106739,33.090936],"childrenNum":11,"level":"city","parent":{"adcode":610000},"subFeatureIndex":6,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[108.054247,33.709842],[108.008312,33.728993],[107.96612,33.734648],[107.951672,33.745797],[107.931583,33.731255],[107.90309,33.748947],[107.854278,33.694081],[107.830102,33.69788],[107.763503,33.719781],[107.737427,33.717923],[107.719353,33.725761],[107.695868,33.72366],[107.673764,33.699497],[107.650682,33.700628],[107.628694,33.714448],[107.586846,33.697719],[107.562555,33.70273],[107.517082,33.678318],[107.492503,33.679854],[107.467694,33.660612],[107.423601,33.649371],[107.400347,33.651312],[107.376516,33.682845],[107.336165,33.68907],[107.3056,33.710165],[107.314177,33.728831],[107.304334,33.733517],[107.305543,33.766878],[107.32212,33.774469],[107.328279,33.797642],[107.342037,33.81411],[107.322581,33.818872],[107.299499,33.792798],[107.276762,33.801194],[107.27279,33.790699],[107.231173,33.766797],[107.212581,33.74927],[107.187369,33.751774],[107.181612,33.769462],[107.163135,33.788035],[107.145233,33.794251],[107.128368,33.777618],[107.136945,33.81411],[107.112078,33.812818],[107.105746,33.822504],[107.080477,33.8221],[107.066432,33.838725],[107.063093,33.870431],[107.044904,33.873819],[107.038514,33.85462],[107.043234,33.805069],[107.028153,33.794574],[106.978247,33.800952],[106.930701,33.827266],[106.909691,33.847762],[106.890063,33.848327],[106.888681,33.860993],[106.855583,33.874384],[106.854375,33.848649],[106.839409,33.827023],[106.817823,33.834448],[106.80585,33.809832],[106.803835,33.72366],[106.797273,33.682441],[106.789215,33.67751],[106.71427,33.701356],[106.674955,33.701437],[106.705693,33.676944],[106.687043,33.665544],[106.64226,33.658994],[106.647325,33.634813],[106.629827,33.619605],[106.617911,33.591933],[106.596729,33.579389],[106.581475,33.590638],[106.580554,33.575909],[106.559774,33.57089],[106.563055,33.543041],[106.541124,33.513076],[106.494269,33.530489],[106.477461,33.519394],[106.456048,33.537939],[106.45271,33.591852],[106.446896,33.613214],[106.431354,33.61912],[106.384902,33.612081],[106.351401,33.587239],[106.335169,33.587078],[106.303395,33.604395],[106.277492,33.59687],[106.237429,33.56409],[106.187178,33.546522],[106.143719,33.5649],[106.147518,33.581817],[106.1333,33.571861],[106.108491,33.569838],[106.110851,33.591933],[106.131343,33.597193],[106.086675,33.617097],[106.063881,33.604152],[106.045749,33.609735],[106.02848,33.595251],[106.018983,33.609735],[105.998951,33.604152],[105.979726,33.612405],[105.962112,33.606499],[105.953996,33.587159],[105.919459,33.554781],[105.902708,33.556157],[105.868344,33.509269],[105.841981,33.490069],[105.830986,33.456439],[105.837951,33.410795],[105.829662,33.382812],[105.802609,33.378756],[105.743262,33.385327],[105.732844,33.391005],[105.708956,33.380703],[105.734168,33.346544],[105.755235,33.32885],[105.747752,33.298893],[105.767438,33.28257],[105.791499,33.278591],[105.792823,33.262752],[105.828799,33.253897],[105.862588,33.234316],[105.906565,33.240166],[105.921301,33.236266],[105.966889,33.20018],[105.968328,33.154076],[105.9468,33.153507],[105.945534,33.188148],[105.927747,33.198473],[105.916926,33.177741],[105.924582,33.167576],[105.896376,33.142689],[105.92343,33.147732],[105.920092,33.132113],[105.936785,33.113562],[105.91871,33.105425],[105.933273,33.077019],[105.915084,33.066273],[105.9133,33.053164],[105.928093,33.041519],[105.917444,32.993784],[105.861724,32.938929],[105.826957,32.950751],[105.78557,32.92678],[105.735434,32.905331],[105.699401,32.903456],[105.656575,32.89538],[105.644544,32.882735],[105.590609,32.87678],[105.56557,32.9068],[105.534141,32.909491],[105.513995,32.919115],[105.493503,32.905495],[105.495517,32.87319],[105.524528,32.847729],[105.535868,32.789844],[105.556302,32.792049],[105.554691,32.773998],[105.568102,32.758722],[105.557856,32.752921],[105.563785,32.724893],[105.585198,32.729061],[105.596365,32.699226],[105.625376,32.702087],[105.649264,32.718681],[105.678045,32.726527],[105.719202,32.759703],[105.735952,32.753902],[105.750688,32.767954],[105.76882,32.767545],[105.779584,32.750225],[105.811415,32.772283],[105.822525,32.770159],[105.816941,32.790334],[105.831159,32.826098],[105.850788,32.818097],[105.857753,32.827404],[105.886879,32.835159],[105.940929,32.829771],[105.969307,32.849035],[105.99521,32.827975],[106.011557,32.82969],[106.021688,32.857522],[106.04667,32.852299],[106.069925,32.824057],[106.09364,32.823812],[106.094676,32.795969],[106.064226,32.782248],[106.072688,32.763869],[106.076717,32.763787],[106.076487,32.759049],[106.071652,32.75815],[106.120003,32.719662],[106.145388,32.720397],[106.153677,32.705766],[106.169334,32.710017],[106.174342,32.697591],[106.256424,32.693258],[106.278816,32.67069],[106.300862,32.679848],[106.351171,32.671834],[106.38329,32.646561],[106.389046,32.626682],[106.420533,32.616617],[106.450983,32.640181],[106.451673,32.660139],[106.461977,32.653105],[106.498068,32.649343],[106.518733,32.668645],[106.566797,32.675841],[106.588613,32.688597],[106.628733,32.681238],[106.663443,32.690723],[106.684453,32.709281],[106.732056,32.73854],[106.779429,32.737478],[106.784322,32.697264],[106.793244,32.712632],[106.823119,32.705357],[106.845913,32.721051],[106.872564,32.725628],[106.903417,32.721296],[106.917002,32.703313],[106.964778,32.717046],[106.988436,32.711815],[107.012554,32.721542],[107.030225,32.712387],[107.066835,32.708872],[107.059697,32.686144],[107.068389,32.669954],[107.087672,32.667909],[107.099069,32.649506],[107.097572,32.627009],[107.107761,32.600741],[107.091989,32.552604],[107.080131,32.542368],[107.104653,32.516649],[107.127102,32.482482],[107.189613,32.468057],[107.210048,32.431986],[107.230597,32.416077],[107.263926,32.403282],[107.283784,32.4342],[107.286087,32.454532],[107.313889,32.490185],[107.356888,32.506408],[107.377898,32.538928],[107.411283,32.538027],[107.436323,32.529755],[107.429243,32.501083],[107.43874,32.465844],[107.457793,32.458713],[107.461995,32.441333],[107.450195,32.430838],[107.457217,32.417717],[107.48974,32.425262],[107.502864,32.395654],[107.525255,32.382446],[107.571132,32.397705],[107.598243,32.411566],[107.636349,32.405989],[107.650452,32.412879],[107.679463,32.398279],[107.695292,32.374734],[107.694774,32.35701],[107.716763,32.328857],[107.754581,32.338215],[107.788715,32.279836],[107.8358,32.223063],[107.867517,32.202432],[107.890541,32.214433],[107.924733,32.197006],[107.979359,32.146022],[107.995706,32.147173],[108.024372,32.177273],[108.018616,32.211803],[108.034676,32.220761],[108.060751,32.220515],[108.088208,32.233418],[108.12309,32.218378],[108.141683,32.218871],[108.156649,32.239005],[108.180825,32.259053],[108.167125,32.291744],[108.13679,32.318103],[108.126717,32.349541],[108.109448,32.372026],[108.117046,32.38704],[108.135927,32.382692],[108.11555,32.433216],[108.121133,32.439857],[108.156073,32.439611],[108.176392,32.42846],[108.18612,32.438709],[108.247078,32.473303],[108.27914,32.497068],[108.277931,32.519926],[108.251625,32.545071],[108.249496,32.571273],[108.211678,32.600577],[108.187962,32.608188],[108.197345,32.620709],[108.258878,32.605652],[108.265958,32.615308],[108.253065,32.673634],[108.255137,32.685817],[108.228601,32.693994],[108.240574,32.716147],[108.230961,32.729796],[108.189286,32.766728],[108.150547,32.76779],[108.149914,32.782003],[108.128962,32.777021],[108.121191,32.79997],[108.130228,32.807809],[108.112787,32.819567],[108.102598,32.850341],[108.078192,32.877514],[108.078423,32.902314],[108.12545,32.943903],[108.126832,32.988243],[108.137941,33.008857],[108.132243,33.023112],[108.095115,33.072053],[108.090108,33.093461],[108.104498,33.134147],[108.097993,33.190587],[108.107318,33.21091],[108.070594,33.203757],[108.077502,33.212373],[108.046591,33.226677],[108.048606,33.237972],[108.021839,33.257878],[108.033237,33.260965],[108.039338,33.283139],[108.052923,33.297025],[108.042734,33.324061],[108.056434,33.349222],[108.095518,33.373483],[108.10398,33.391492],[108.092928,33.4009],[108.117507,33.416795],[108.143582,33.405604],[108.158606,33.432363],[108.151641,33.463977],[108.101677,33.500358],[108.077329,33.504004],[108.060463,33.520042],[108.066392,33.540692],[108.060406,33.578499],[108.070364,33.602129],[108.058391,33.618796],[108.065068,33.651635],[108.052117,33.680016],[108.054247,33.709842]]],[[[106.076717,32.763787],[106.072688,32.763869],[106.071652,32.75815],[106.076487,32.759049],[106.076717,32.763787]]]]}},{"type":"Feature","properties":{"adcode":610800,"name":"榆林市","center":[109.741193,38.290162],"centroid":[109.577105,38.048207],"childrenNum":12,"level":"city","parent":{"adcode":610000},"subFeatureIndex":7,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.418706,36.973589],[110.40846,36.989032],[110.377146,37.010291],[110.38319,37.021849],[110.412834,37.019212],[110.441212,37.00618],[110.450307,37.016497],[110.424059,37.023944],[110.425958,37.04085],[110.460495,37.044728],[110.495781,37.086743],[110.535556,37.115102],[110.540276,37.144612],[110.584541,37.18069],[110.650161,37.254341],[110.661903,37.282019],[110.690051,37.287043],[110.678711,37.317877],[110.693965,37.325912],[110.695059,37.349625],[110.651773,37.357038],[110.634044,37.36615],[110.631799,37.398803],[110.648146,37.438154],[110.744965,37.450726],[110.758377,37.471161],[110.759528,37.503461],[110.771271,37.520183],[110.771098,37.538365],[110.794928,37.56617],[110.772249,37.592655],[110.76373,37.639596],[110.793317,37.65075],[110.796137,37.663056],[110.775357,37.680896],[110.739094,37.68943],[110.706571,37.705342],[110.70352,37.718638],[110.716645,37.728704],[110.750721,37.736157],[110.755671,37.755055],[110.735755,37.770415],[110.680381,37.790072],[110.660752,37.808034],[110.650564,37.840034],[110.607277,37.89625],[110.587937,37.926602],[110.547644,37.940317],[110.522489,37.95495],[110.516618,37.970728],[110.52836,37.990638],[110.508099,38.012838],[110.501422,38.03901],[110.508789,38.061961],[110.501882,38.098132],[110.521165,38.124427],[110.510574,38.147274],[110.507869,38.18493],[110.523928,38.210506],[110.558235,38.210506],[110.567272,38.217529],[110.567963,38.245764],[110.577461,38.297247],[110.601291,38.308225],[110.638821,38.304718],[110.668581,38.313637],[110.701621,38.35334],[110.750318,38.36949],[110.758952,38.400407],[110.77766,38.4409],[110.796828,38.453454],[110.825033,38.449421],[110.84069,38.439986],[110.874248,38.453682],[110.870161,38.508894],[110.907692,38.521056],[110.909418,38.563152],[110.919895,38.582064],[110.89664,38.588216],[110.88081,38.626933],[110.896409,38.657816],[110.916211,38.673973],[110.915405,38.704305],[110.937681,38.718784],[110.965023,38.755688],[110.956274,38.776746],[110.979126,38.787727],[110.996509,38.825125],[111.010094,38.841623],[110.996049,38.868026],[111.012339,38.878312],[111.015735,38.896234],[111.009921,38.932593],[110.994552,38.960171],[110.979989,38.972257],[110.998409,38.998536],[111.038241,39.020126],[111.088953,39.02707],[111.138341,39.064267],[111.147321,39.100539],[111.162517,39.108455],[111.174144,39.135136],[111.163093,39.152465],[111.218985,39.24567],[111.213516,39.25718],[111.227159,39.284406],[111.247478,39.3023],[111.213804,39.301247],[111.187959,39.314327],[111.17944,39.326803],[111.194233,39.340479],[111.18842,39.350922],[111.161711,39.33552],[111.155034,39.368273],[111.125562,39.36647],[111.108121,39.356556],[111.086593,39.380139],[111.09776,39.404539],[111.086651,39.412721],[111.064374,39.400936],[111.053841,39.429907],[111.05833,39.447689],[111.086881,39.45669],[111.088032,39.468391],[111.108869,39.474165],[111.100005,39.483239],[111.107143,39.499208],[111.148875,39.532633],[111.154976,39.568664],[111.136787,39.58701],[111.100984,39.559452],[111.04371,39.554584],[111.040947,39.567691],[111.017231,39.552037],[110.996624,39.547767],[110.990177,39.537054],[110.959152,39.519445],[110.890826,39.508952],[110.862909,39.482639],[110.806613,39.411295],[110.782668,39.388098],[110.768565,39.382917],[110.738288,39.348518],[110.732877,39.308464],[110.70283,39.273878],[110.688382,39.267485],[110.669617,39.275908],[110.626273,39.266808],[110.596571,39.283052],[110.566927,39.318461],[110.559156,39.352124],[110.521741,39.383217],[110.499177,39.360687],[110.482599,39.360612],[110.469475,39.375182],[110.434995,39.380889],[110.416576,39.348668],[110.429124,39.342057],[110.385205,39.310494],[110.370008,39.329433],[110.34094,39.341531],[110.296617,39.376008],[110.281018,39.394179],[110.257648,39.407091],[110.276759,39.420301],[110.243488,39.423678],[110.217125,39.443262],[110.206188,39.437485],[110.152483,39.45399],[110.133373,39.448289],[110.126408,39.416849],[110.136769,39.391777],[110.158872,39.389599],[110.185293,39.3531],[110.202792,39.316356],[110.210851,39.281473],[110.193352,39.280721],[110.159851,39.263122],[110.110808,39.249732],[110.078401,39.230771],[110.010997,39.208568],[109.962702,39.211881],[109.941289,39.239952],[109.902723,39.271922],[109.868992,39.249732],[109.882174,39.233104],[109.897255,39.234082],[109.960457,39.186735],[109.893916,39.141239],[109.922121,39.107023],[109.890923,39.104007],[109.882116,39.116747],[109.860128,39.124435],[109.815345,39.096167],[109.793356,39.074072],[109.762388,39.057478],[109.725376,39.01839],[109.704826,39.016956],[109.691242,38.992647],[109.672016,38.997026],[109.665339,38.981697],[109.68537,38.968254],[109.683759,38.93554],[109.67098,38.926472],[109.649279,38.884514],[109.624413,38.854485],[109.549755,38.805672],[109.511189,38.833753],[109.489258,38.813317],[109.450864,38.788863],[109.442576,38.771141],[109.412528,38.747581],[109.403952,38.720603],[109.338734,38.7015],[109.325956,38.670029],[109.328891,38.660471],[109.366537,38.631107],[109.331366,38.597935],[109.310299,38.60249],[109.27674,38.622986],[109.196845,38.552668],[109.178655,38.520828],[109.147112,38.506157],[109.128634,38.480533],[109.092486,38.45353],[109.054265,38.433975],[109.059791,38.408705],[109.051272,38.385255],[109.007813,38.35913],[108.989738,38.310893],[108.976441,38.296942],[108.961878,38.265065],[108.976557,38.249503],[108.955144,38.218521],[108.938508,38.207453],[108.947258,38.170725],[108.964469,38.154761],[109.019785,38.119688],[109.06359,38.100196],[109.068828,38.091174],[109.050754,38.055],[109.069519,38.023017],[109.038032,38.021487],[109.028938,37.997452],[109.015468,37.982828],[109.017483,37.969962],[108.97955,37.959316],[108.974197,37.931889],[108.935803,37.921621],[108.917095,37.959776],[108.893841,37.978157],[108.882961,38.013833],[108.855504,38.038322],[108.830638,38.049798],[108.797655,38.047886],[108.826666,37.995155],[108.824882,37.98321],[108.798231,37.933652],[108.792072,37.872864],[108.793223,37.815863],[108.801397,37.792298],[108.784704,37.764655],[108.78338,37.737309],[108.792014,37.700269],[108.777681,37.68351],[108.741648,37.685509],[108.713442,37.680665],[108.699512,37.66967],[108.628366,37.652212],[108.61127,37.654212],[108.55958,37.681742],[108.532641,37.690583],[108.477037,37.674207],[108.422411,37.648827],[108.351265,37.641366],[108.33296,37.633057],[108.301128,37.64075],[108.292782,37.656981],[108.246502,37.665748],[108.205576,37.65575],[108.193661,37.638289],[108.154001,37.623901],[108.133912,37.621978],[108.108239,37.637827],[108.077041,37.642981],[108.060233,37.652058],[108.025408,37.649827],[108.013205,37.665517],[108.02443,37.698655],[108.014069,37.725861],[107.993692,37.735081],[107.979992,37.764732],[107.981949,37.787231],[107.937109,37.795062],[107.894628,37.813637],[107.8849,37.808341],[107.842708,37.828985],[107.815884,37.829062],[107.741169,37.845328],[107.683435,37.887739],[107.675952,37.875778],[107.650222,37.864581],[107.659259,37.8441],[107.646135,37.805194],[107.620692,37.775944],[107.599222,37.791146],[107.571305,37.776712],[107.523413,37.772949],[107.49918,37.765654],[107.490833,37.745376],[107.485077,37.706495],[107.465449,37.691198],[107.430566,37.684202],[107.407081,37.692966],[107.386877,37.691121],[107.389583,37.671208],[107.422047,37.665056],[107.419918,37.650212],[107.39672,37.652443],[107.36132,37.613282],[107.325056,37.606279],[107.312565,37.610127],[107.330467,37.584033],[107.368918,37.587574],[107.372199,37.580029],[107.359132,37.540214],[107.345663,37.518873],[107.284302,37.481955],[107.283612,37.440776],[107.271063,37.390313],[107.261047,37.37086],[107.257939,37.336958],[107.273135,37.29114],[107.293282,37.277458],[107.309342,37.238874],[107.291382,37.241272],[107.270315,37.229129],[107.317688,37.199961],[107.333978,37.173801],[107.337835,37.153982],[107.3311,37.13013],[107.307039,37.100459],[107.278258,37.128194],[107.277568,37.102396],[107.268703,37.099452],[107.285223,37.056435],[107.279525,37.041703],[107.287411,36.992369],[107.304276,36.951699],[107.294836,36.929414],[107.311702,36.913026],[107.332827,36.925608],[107.370645,36.904792],[107.447202,36.899432],[107.47794,36.908443],[107.533717,36.867184],[107.528479,36.853737],[107.540106,36.828624],[107.590818,36.836244],[107.603597,36.825824],[107.639515,36.818514],[107.672095,36.8329],[107.694947,36.849772],[107.723095,36.8591],[107.727124,36.892828],[107.723267,36.920094],[107.706287,36.963033],[107.693335,36.97421],[107.723958,36.985929],[107.748307,36.986317],[107.752739,37.001137],[107.725282,37.016265],[107.702142,37.018126],[107.69512,36.996637],[107.68591,37.022935],[107.674858,37.029916],[107.65995,37.058529],[107.670138,37.064653],[107.696962,37.050078],[107.720217,37.07349],[107.700473,37.091471],[107.692472,37.123856],[107.675779,37.121687],[107.704099,37.142676],[107.734377,37.136946],[107.744738,37.153905],[107.724131,37.16366],[107.749343,37.176511],[107.747616,37.207699],[107.771159,37.230521],[107.78388,37.230521],[107.797694,37.246144],[107.82141,37.243283],[107.820086,37.220697],[107.850594,37.221393],[107.858652,37.212341],[107.866941,37.16397],[107.887145,37.132299],[107.888584,37.083953],[107.930835,37.094028],[107.94252,37.081861],[107.959097,37.081783],[107.982525,37.110299],[108.032316,37.127187],[108.102195,37.130052],[108.11555,37.149646],[108.123954,37.20414],[108.136617,37.191139],[108.173745,37.195705],[108.174723,37.164666],[108.213347,37.171866],[108.230673,37.194235],[108.24915,37.201741],[108.260087,37.216983],[108.251971,37.234775],[108.275571,37.235239],[108.282248,37.26161],[108.261296,37.268491],[108.245524,37.283642],[108.249438,37.298018],[108.21657,37.325139],[108.236659,37.340279],[108.263253,37.341747],[108.319548,37.358814],[108.343436,37.373871],[108.362201,37.405363],[108.361395,37.388461],[108.407445,37.381127],[108.406581,37.406675],[108.418842,37.407215],[108.431736,37.388306],[108.428743,37.356961],[108.438701,37.3144],[108.486419,37.28542],[108.474274,37.26161],[108.452688,37.2538],[108.48665,37.233074],[108.515258,37.231294],[108.512725,37.204217],[108.540527,37.178833],[108.547838,37.163583],[108.536325,37.117117],[108.552097,37.088293],[108.536728,37.060544],[108.542254,37.039842],[108.510135,37.023246],[108.487743,37.026891],[108.501213,37.001292],[108.517503,37.003309],[108.536268,36.988955],[108.558486,36.986549],[108.598607,37.004783],[108.611328,37.029838],[108.621459,37.02627],[108.651218,37.03961],[108.672401,37.020298],[108.688173,36.996637],[108.73664,36.982592],[108.758456,36.98911],[108.768241,36.974831],[108.80485,37.002999],[108.803987,37.023789],[108.815845,37.029916],[108.809052,37.043409],[108.782631,37.05062],[108.770601,37.069072],[108.741245,37.081241],[108.757707,37.099607],[108.750915,37.114405],[108.773249,37.113088],[108.778314,37.121919],[108.79754,37.111694],[108.819528,37.139734],[108.834437,37.136868],[108.853202,37.154601],[108.883019,37.150962],[108.882904,37.177285],[108.862239,37.180149],[108.85349,37.205378],[108.859994,37.236554],[108.868801,37.242123],[108.862354,37.263543],[108.876227,37.252717],[108.889639,37.222321],[108.894646,37.23493],[108.920722,37.238333],[108.950884,37.233383],[108.963778,37.263233],[108.984673,37.267099],[109.002459,37.285807],[109.01449,37.283024],[109.013684,37.303891],[109.049027,37.295468],[109.056567,37.28542],[109.078498,37.312005],[109.111193,37.307214],[109.11787,37.322435],[109.142737,37.318572],[109.173935,37.30451],[109.178713,37.327148],[109.205249,37.32089],[109.231497,37.329311],[109.24347,37.31865],[109.24865,37.337035],[109.282612,37.346072],[109.300744,37.34445],[109.307651,37.354644],[109.342994,37.347385],[109.329812,37.373253],[109.349786,37.379815],[109.362968,37.408913],[109.385877,37.438154],[109.417421,37.446947],[109.434574,37.459672],[109.453397,37.460212],[109.468651,37.487351],[109.492539,37.498451],[109.509002,37.481647],[109.536516,37.477869],[109.564088,37.460135],[109.576291,37.438],[109.634659,37.419407],[109.669599,37.422339],[109.717778,37.435377],[109.738673,37.424808],[109.734758,37.400501],[109.772807,37.393246],[109.77344,37.363756],[109.784434,37.343369],[109.80366,37.347308],[109.812351,37.305051],[109.783801,37.310691],[109.762043,37.270733],[109.797788,37.265476],[109.811948,37.257821],[109.841017,37.279546],[109.879353,37.270887],[109.905601,37.277922],[109.898176,37.294927],[109.919128,37.314091],[109.926784,37.29284],[109.987857,37.26965],[110.011227,37.274212],[110.028323,37.265244],[110.030222,37.245294],[110.013126,37.204913],[109.988375,37.199652],[109.968919,37.213424],[109.954529,37.206306],[109.982101,37.179375],[109.978071,37.151659],[109.990677,37.130207],[110.013644,37.146316],[110.025099,37.132221],[110.011112,37.095345],[110.031546,37.053179],[110.032467,37.029605],[110.066141,37.01099],[110.087554,36.985308],[110.115816,36.973201],[110.170557,36.988567],[110.191107,37.013394],[110.242855,37.00362],[110.269621,36.988955],[110.278601,36.968544],[110.294718,36.965594],[110.324247,36.98492],[110.352222,36.975141],[110.362238,36.943857],[110.375649,36.962024],[110.388313,36.958608],[110.418706,36.973589]]]]}},{"type":"Feature","properties":{"adcode":610900,"name":"安康市","center":[109.029273,32.6903],"centroid":[108.929995,32.759384],"childrenNum":10,"level":"city","parent":{"adcode":610000},"subFeatureIndex":8,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.438892,33.152124],[109.373789,33.147244],[109.339195,33.135855],[109.313235,33.167576],[109.295448,33.173919],[109.258206,33.167739],[109.232015,33.192376],[109.218546,33.193351],[109.174569,33.161558],[109.124202,33.15985],[109.059618,33.214242],[109.005107,33.168796],[108.988817,33.176928],[108.97057,33.160338],[108.973218,33.13732],[108.931083,33.125035],[108.919283,33.151067],[108.900863,33.147732],[108.863851,33.192782],[108.816938,33.225783],[108.80698,33.24496],[108.740842,33.283788],[108.710507,33.270062],[108.687252,33.274773],[108.691051,33.291828],[108.66227,33.323574],[108.640166,33.321139],[108.583468,33.298487],[108.569884,33.318866],[108.574201,33.373889],[108.597456,33.407226],[108.588188,33.459681],[108.633086,33.501168],[108.625143,33.533161],[108.653809,33.54798],[108.693296,33.535267],[108.724897,33.530651],[108.750685,33.536401],[108.797367,33.58384],[108.805599,33.605366],[108.828508,33.617825],[108.815039,33.633034],[108.792244,33.642497],[108.798806,33.654628],[108.826493,33.649371],[108.879335,33.698527],[108.902245,33.678803],[108.922909,33.684543],[108.945473,33.726569],[108.942307,33.747816],[108.92337,33.774711],[108.903223,33.781091],[108.846985,33.777699],[108.835588,33.792233],[108.84002,33.815966],[108.805771,33.817177],[108.778487,33.798046],[108.756038,33.812657],[108.755923,33.839048],[108.741014,33.841468],[108.697843,33.828315],[108.650067,33.841549],[108.617717,33.825974],[108.602579,33.791426],[108.585425,33.780122],[108.584274,33.764536],[108.560444,33.765101],[108.544557,33.788438],[108.484405,33.804262],[108.466445,33.800629],[108.443709,33.781979],[108.404855,33.763324],[108.369454,33.793202],[108.345969,33.793848],[108.307,33.76292],[108.288292,33.767282],[108.259281,33.754763],[108.233148,33.726649],[108.191761,33.725276],[108.180191,33.711862],[108.149281,33.712347],[108.132243,33.721882],[108.113823,33.712589],[108.098396,33.723498],[108.073818,33.723417],[108.054247,33.709842],[108.052117,33.680016],[108.065068,33.651635],[108.058391,33.618796],[108.070364,33.602129],[108.060406,33.578499],[108.066392,33.540692],[108.060463,33.520042],[108.077329,33.504004],[108.101677,33.500358],[108.151641,33.463977],[108.158606,33.432363],[108.143582,33.405604],[108.117507,33.416795],[108.092928,33.4009],[108.10398,33.391492],[108.095518,33.373483],[108.056434,33.349222],[108.042734,33.324061],[108.052923,33.297025],[108.039338,33.283139],[108.033237,33.260965],[108.021839,33.257878],[108.048606,33.237972],[108.046591,33.226677],[108.077502,33.212373],[108.070594,33.203757],[108.107318,33.21091],[108.097993,33.190587],[108.104498,33.134147],[108.090108,33.093461],[108.095115,33.072053],[108.132243,33.023112],[108.137941,33.008857],[108.126832,32.988243],[108.12545,32.943903],[108.078423,32.902314],[108.078192,32.877514],[108.102598,32.850341],[108.112787,32.819567],[108.130228,32.807809],[108.121191,32.79997],[108.128962,32.777021],[108.149914,32.782003],[108.150547,32.76779],[108.189286,32.766728],[108.230961,32.729796],[108.240574,32.716147],[108.228601,32.693994],[108.255137,32.685817],[108.253065,32.673634],[108.265958,32.615308],[108.258878,32.605652],[108.197345,32.620709],[108.187962,32.608188],[108.211678,32.600577],[108.249496,32.571273],[108.251625,32.545071],[108.277931,32.519926],[108.27914,32.497068],[108.247078,32.473303],[108.18612,32.438709],[108.176392,32.42846],[108.156073,32.439611],[108.121133,32.439857],[108.11555,32.433216],[108.135927,32.382692],[108.117046,32.38704],[108.109448,32.372026],[108.126717,32.349541],[108.13679,32.318103],[108.167125,32.291744],[108.180825,32.259053],[108.156649,32.239005],[108.179328,32.221994],[108.213289,32.248208],[108.212196,32.256999],[108.247193,32.274825],[108.265152,32.256999],[108.287832,32.249359],[108.312065,32.232185],[108.329276,32.232596],[108.347984,32.25396],[108.387644,32.262257],[108.414985,32.252481],[108.431045,32.262586],[108.450789,32.2593],[108.471741,32.270636],[108.483656,32.251413],[108.507142,32.245661],[108.514509,32.218214],[108.510595,32.200212],[108.551061,32.176122],[108.583986,32.172257],[108.679769,32.102992],[108.734049,32.106448],[108.747749,32.099864],[108.751721,32.074184],[108.788675,32.048332],[108.837891,32.038862],[108.867765,32.004102],[108.902417,31.984905],[108.937127,31.988942],[108.955086,31.979137],[108.986745,31.979961],[109.035097,31.958038],[109.087823,31.927371],[109.124605,31.892157],[109.167028,31.875329],[109.198284,31.845789],[109.196212,31.817561],[109.213595,31.817479],[109.273575,31.80105],[109.28123,31.777928],[109.254694,31.766944],[109.28313,31.741749],[109.281576,31.716877],[109.323193,31.708861],[109.390252,31.705224],[109.415464,31.710018],[109.417882,31.71886],[109.457023,31.721587],[109.458981,31.715803],[109.501116,31.717125],[109.549755,31.730016],[109.585731,31.726711],[109.605993,31.743731],[109.592984,31.75191],[109.591833,31.788912],[109.604554,31.803774],[109.638227,31.81104],[109.607547,31.881681],[109.584983,31.900488],[109.594481,31.923331],[109.620614,31.928608],[109.631263,31.962242],[109.601388,31.997676],[109.587573,32.025272],[109.590969,32.047755],[109.617851,32.085132],[109.62165,32.106777],[109.592581,32.139194],[109.587113,32.161484],[109.604324,32.199226],[109.592754,32.219364],[109.550446,32.224871],[109.528688,32.270308],[109.495417,32.300367],[109.510671,32.324588],[109.513204,32.342319],[109.500425,32.378918],[109.506239,32.395326],[109.529609,32.405743],[109.526903,32.43338],[109.541639,32.444285],[109.552748,32.477155],[109.576003,32.491742],[109.587516,32.516075],[109.618138,32.524759],[109.636788,32.541058],[109.620038,32.567425],[109.61929,32.593047],[109.631838,32.600086],[109.7267,32.60827],[109.758186,32.589855],[109.817071,32.577413],[109.849479,32.579787],[109.881253,32.591983],[109.910552,32.59272],[109.944801,32.57684],[109.971164,32.577576],[109.995743,32.550721],[110.028207,32.548428],[110.051578,32.558664],[110.088187,32.585435],[110.085366,32.613099],[110.10252,32.619072],[110.13343,32.612198],[110.153807,32.593129],[110.165147,32.593866],[110.206418,32.632981],[110.187883,32.646316],[110.154498,32.690069],[110.162326,32.715902],[110.159621,32.767218],[110.139589,32.764931],[110.127501,32.777756],[110.14218,32.802828],[110.1195,32.812953],[110.113802,32.825445],[110.0841,32.842995],[110.05129,32.851891],[110.030452,32.872129],[110.004319,32.873271],[109.98872,32.886244],[109.931274,32.885346],[109.915962,32.901009],[109.883785,32.901743],[109.857077,32.910307],[109.847752,32.893259],[109.80838,32.878983],[109.789902,32.882491],[109.764345,32.909328],[109.784607,32.985961],[109.794507,33.066924],[109.768029,33.074496],[109.715245,33.099484],[109.688076,33.116573],[109.633277,33.118038],[109.601964,33.108192],[109.592236,33.119584],[109.576176,33.110226],[109.560347,33.125686],[109.514009,33.140248],[109.468536,33.140248],[109.438892,33.152124]]]]}},{"type":"Feature","properties":{"adcode":611000,"name":"商洛市","center":[109.939776,33.868319],"centroid":[109.907166,33.647601],"childrenNum":7,"level":"city","parent":{"adcode":610000},"subFeatureIndex":9,"acroutes":[100000,610000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.185793,33.812334],[109.177562,33.809105],[109.174166,33.808702],[109.154019,33.791103],[109.147284,33.799337],[109.162366,33.812657],[109.164207,33.871319],[109.120576,33.876481],[109.107682,33.907609],[109.070555,33.906641],[109.051502,33.923169],[109.007985,33.883256],[108.944265,33.86664],[108.922161,33.869383],[108.913239,33.848649],[108.874788,33.824522],[108.854238,33.826539],[108.84002,33.815966],[108.835588,33.792233],[108.846985,33.777699],[108.903223,33.781091],[108.92337,33.774711],[108.942307,33.747816],[108.945473,33.726569],[108.922909,33.684543],[108.902245,33.678803],[108.879335,33.698527],[108.826493,33.649371],[108.798806,33.654628],[108.792244,33.642497],[108.815039,33.633034],[108.828508,33.617825],[108.805599,33.605366],[108.797367,33.58384],[108.750685,33.536401],[108.724897,33.530651],[108.693296,33.535267],[108.653809,33.54798],[108.625143,33.533161],[108.633086,33.501168],[108.588188,33.459681],[108.597456,33.407226],[108.574201,33.373889],[108.569884,33.318866],[108.583468,33.298487],[108.640166,33.321139],[108.66227,33.323574],[108.691051,33.291828],[108.687252,33.274773],[108.710507,33.270062],[108.740842,33.283788],[108.80698,33.24496],[108.816938,33.225783],[108.863851,33.192782],[108.900863,33.147732],[108.919283,33.151067],[108.931083,33.125035],[108.973218,33.13732],[108.97057,33.160338],[108.988817,33.176928],[109.005107,33.168796],[109.059618,33.214242],[109.124202,33.15985],[109.174569,33.161558],[109.218546,33.193351],[109.232015,33.192376],[109.258206,33.167739],[109.295448,33.173919],[109.313235,33.167576],[109.339195,33.135855],[109.373789,33.147244],[109.438892,33.152124],[109.464794,33.172943],[109.481948,33.200261],[109.498295,33.207333],[109.51424,33.237728],[109.549755,33.242279],[109.587688,33.229765],[109.606856,33.236022],[109.607374,33.264295],[109.616296,33.274124],[109.647783,33.268113],[109.649797,33.251703],[109.692969,33.254303],[109.70143,33.241222],[109.732456,33.231309],[109.762964,33.235778],[109.813157,33.236347],[109.845219,33.246991],[109.916595,33.229684],[109.973639,33.203919],[109.999139,33.212617],[110.040411,33.191238],[110.077595,33.20205],[110.13061,33.201725],[110.165031,33.209284],[110.218276,33.163185],[110.250338,33.160257],[110.297308,33.170585],[110.333975,33.159769],[110.361662,33.181725],[110.422332,33.17026],[110.451803,33.179367],[110.471029,33.171398],[110.470511,33.185059],[110.50902,33.221476],[110.527785,33.230415],[110.540966,33.255603],[110.577691,33.250566],[110.593923,33.20709],[110.594153,33.168552],[110.616372,33.145617],[110.651082,33.157492],[110.669559,33.130161],[110.702484,33.097124],[110.719926,33.099565],[110.717853,33.116899],[110.727811,33.133903],[110.765917,33.152449],[110.795101,33.149928],[110.824227,33.160257],[110.817377,33.177253],[110.830559,33.202537],[110.865326,33.21408],[110.921621,33.204001],[110.94597,33.228627],[110.942977,33.236347],[110.966174,33.256172],[110.997027,33.254709],[110.982867,33.270062],[111.007964,33.303683],[111.000366,33.32398],[111.026038,33.330392],[111.026153,33.375349],[111.011015,33.398873],[110.996739,33.43593],[111.020858,33.450846],[111.026787,33.467705],[111.020973,33.471189],[111.021664,33.476538],[111.026499,33.478563],[111.019476,33.520852],[111.003532,33.53308],[111.009748,33.562552],[111.003704,33.57866],[110.966577,33.609169],[110.94079,33.620091],[110.878853,33.634651],[110.857728,33.657781],[110.841841,33.663199],[110.823191,33.692869],[110.832228,33.712832],[110.816859,33.737395],[110.815938,33.753067],[110.782207,33.796027],[110.741338,33.798772],[110.72597,33.807733],[110.712615,33.83356],[110.684928,33.838805],[110.66789,33.852119],[110.644808,33.844938],[110.612746,33.85107],[110.612976,33.867447],[110.587304,33.886966],[110.591506,33.900191],[110.62587,33.90777],[110.626043,33.92462],[110.675603,33.946624],[110.670941,33.966447],[110.653442,33.969186],[110.649585,33.992307],[110.627769,34.019528],[110.624143,34.033859],[110.612113,34.024278],[110.586613,34.024037],[110.58834,34.06163],[110.595189,34.064769],[110.591793,34.101701],[110.614012,34.113686],[110.641987,34.160887],[110.621783,34.177445],[110.587706,34.17865],[110.589088,34.190223],[110.557141,34.193357],[110.551443,34.212801],[110.507869,34.217621],[110.489737,34.232321],[110.441385,34.242441],[110.442479,34.254004],[110.426476,34.276084],[110.432635,34.290853],[110.449328,34.291496],[110.474655,34.323514],[110.498141,34.320064],[110.502688,34.345174],[110.489449,34.35528],[110.473734,34.393207],[110.475922,34.409159],[110.458193,34.402426],[110.430966,34.40948],[110.388716,34.408117],[110.377549,34.398338],[110.284357,34.391364],[110.251834,34.406754],[110.194215,34.414769],[110.162326,34.432159],[110.132164,34.42687],[110.103383,34.428874],[110.075178,34.413888],[110.059982,34.413247],[110.058485,34.396975],[110.03736,34.377814],[110.007197,34.368593],[110.024236,34.338998],[110.040526,34.324156],[110.030855,34.30217],[110.007255,34.303213],[110.024063,34.240352],[109.997642,34.221638],[109.964372,34.209748],[109.94929,34.219549],[109.95614,34.243645],[109.920395,34.230313],[109.883555,34.24742],[109.873655,34.270785],[109.853335,34.266048],[109.825591,34.288205],[109.792147,34.263078],[109.80199,34.224048],[109.775972,34.251997],[109.757322,34.252961],[109.743565,34.240352],[109.754502,34.212239],[109.745465,34.187491],[109.778102,34.183392],[109.801415,34.160887],[109.822194,34.155742],[109.789787,34.145049],[109.78098,34.160083],[109.755078,34.127197],[109.742184,34.12189],[109.739824,34.09792],[109.694753,34.109101],[109.669886,34.099931],[109.658835,34.105481],[109.634313,34.075633],[109.584235,34.072092],[109.567139,34.064688],[109.552806,34.044727],[109.56121,34.034181],[109.545496,34.025244],[109.533235,33.982077],[109.562994,33.960726],[109.603633,33.940982],[109.592984,33.896804],[109.576118,33.897691],[109.540142,33.875513],[109.537322,33.862042],[109.508541,33.848004],[109.470263,33.851796],[109.442518,33.843566],[109.399059,33.845422],[109.355945,33.867608],[109.316918,33.85462],[109.299823,33.856556],[109.289462,33.87027],[109.251874,33.880675],[109.207379,33.867043],[109.185793,33.812334]]],[[[109.185793,33.812334],[109.207379,33.867043],[109.18493,33.874303],[109.164207,33.871319],[109.162366,33.812657],[109.174166,33.808702],[109.177562,33.809105],[109.185793,33.812334]]],[[[111.026499,33.478563],[111.021664,33.476538],[111.020973,33.471189],[111.026787,33.467705],[111.026499,33.478563]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/620000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/620000.json new file mode 100644 index 0000000..19847dd --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/620000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":620100,"name":"兰州市","center":[103.823557,36.058039],"centroid":[103.644112,36.355083],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":0,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.564881,36.973787],[103.528532,36.970481],[103.511832,36.961493],[103.483669,36.966452],[103.450104,36.981946],[103.440607,36.995992],[103.404586,36.999193],[103.359396,36.996715],[103.317152,36.986697],[103.309457,36.949818],[103.323702,36.946718],[103.348098,36.958291],[103.348589,36.926773],[103.368237,36.907856],[103.383464,36.920364],[103.407861,36.923465],[103.44159,36.950542],[103.455998,36.935868],[103.479576,36.940208],[103.499879,36.913335],[103.501353,36.895448],[103.519691,36.902686],[103.541631,36.878799],[103.518053,36.849938],[103.47319,36.874248],[103.472535,36.861732],[103.450759,36.831209],[103.399019,36.826034],[103.377897,36.853352],[103.380353,36.878902],[103.348425,36.895862],[103.347607,36.916126],[103.313223,36.907132],[103.281131,36.915196],[103.26574,36.907959],[103.248057,36.916643],[103.276219,36.954158],[103.258208,36.958704],[103.230537,36.937211],[103.206141,36.941242],[103.201393,36.92977],[103.176833,36.932974],[103.180271,36.945685],[103.128695,36.951678],[103.074336,36.945272],[103.068114,36.959737],[103.004421,36.946925],[102.975932,36.947855],[102.954974,36.92884],[102.919607,36.935454],[102.883095,36.901342],[102.903398,36.878695],[102.902415,36.865146],[102.877855,36.856042],[102.863447,36.838142],[102.843471,36.845179],[102.810397,36.841143],[102.846255,36.808645],[102.822677,36.794876],[102.84298,36.77458],[102.833156,36.762358],[102.813508,36.762773],[102.807614,36.773544],[102.778305,36.761737],[102.756856,36.717598],[102.778142,36.691579],[102.772575,36.673434],[102.730659,36.672811],[102.688743,36.684218],[102.666475,36.707648],[102.684977,36.743918],[102.715268,36.745576],[102.731477,36.762358],[102.720671,36.770023],[102.692509,36.775305],[102.636676,36.733143],[102.613426,36.738634],[102.601309,36.709928],[102.609005,36.6781],[102.630618,36.650927],[102.66582,36.633913],[102.684486,36.618971],[102.724273,36.61399],[102.714777,36.600289],[102.764552,36.575477],[102.737699,36.57122],[102.734425,36.562289],[102.75309,36.525933],[102.777323,36.516893],[102.779124,36.502136],[102.793041,36.499434],[102.788784,36.481867],[102.76668,36.465543],[102.787966,36.447448],[102.793532,36.427061],[102.809742,36.407916],[102.826279,36.406251],[102.813017,36.388455],[102.829718,36.365345],[102.831846,36.365345],[102.847401,36.355974],[102.838887,36.345769],[102.836431,36.344623],[102.845436,36.332229],[102.896685,36.331812],[102.915841,36.315145],[102.923701,36.29764],[102.971347,36.283571],[102.99165,36.264392],[103.023578,36.257407],[103.02145,36.232693],[103.048302,36.226435],[103.070897,36.206929],[103.102661,36.211623],[103.10741,36.221637],[103.123128,36.195661],[103.155711,36.19013],[103.165863,36.176146],[103.19075,36.180321],[103.200902,36.170301],[103.230374,36.168318],[103.257881,36.15955],[103.259846,36.146605],[103.278184,36.151929],[103.298323,36.145038],[103.312895,36.152556],[103.343022,36.125198],[103.365617,36.119872],[103.396727,36.128958],[103.412282,36.123005],[103.41048,36.07777],[103.438315,36.069201],[103.475646,36.110785],[103.483342,36.098354],[103.496604,36.108382],[103.521819,36.101697],[103.538848,36.105039],[103.571267,36.091876],[103.575033,36.06293],[103.596318,36.069514],[103.621697,36.025922],[103.633322,36.017451],[103.622352,35.99444],[103.632831,35.982409],[103.616785,35.959284],[103.623989,35.934895],[103.643801,35.931336],[103.660993,35.914269],[103.702581,35.927253],[103.714697,35.909975],[103.76742,35.89039],[103.776425,35.896256],[103.779863,35.848166],[103.795909,35.852463],[103.799184,35.841039],[103.837334,35.841773],[103.837498,35.815985],[103.849614,35.803927],[103.848959,35.774979],[103.865005,35.794803],[103.901354,35.774979],[103.919855,35.757354],[103.952111,35.746756],[103.963736,35.735318],[103.980928,35.735737],[103.997956,35.716109],[104.019569,35.713589],[104.040036,35.68902],[104.053135,35.68608],[104.067543,35.664759],[104.092431,35.657615],[104.101436,35.636076],[104.110769,35.638178],[104.138931,35.618525],[104.148591,35.635025],[104.173151,35.649421],[104.202787,35.614111],[104.198039,35.598973],[104.225382,35.578575],[104.282198,35.571109],[104.290057,35.589616],[104.310196,35.601812],[104.305939,35.643327],[104.331809,35.658561],[104.317564,35.66791],[104.316746,35.705296],[104.331154,35.732379],[104.357351,35.74109],[104.369959,35.766692],[104.384695,35.767426],[104.401068,35.793964],[104.398612,35.808855],[104.421371,35.865456],[104.439055,35.864618],[104.448879,35.875619],[104.44282,35.89657],[104.42612,35.916154],[104.441019,35.974771],[104.483754,35.993708],[104.484572,36.020693],[104.500618,36.02017],[104.507331,36.037946],[104.522722,36.043696],[104.519284,36.060212],[104.53795,36.08404],[104.5612,36.09219],[104.567422,36.112456],[104.559399,36.130106],[104.568895,36.139296],[104.577246,36.168109],[104.530909,36.168005],[104.512571,36.202547],[104.543025,36.237699],[104.531728,36.26116],[104.522231,36.262098],[104.517155,36.290241],[104.502419,36.316083],[104.501764,36.350767],[104.510442,36.373153],[104.507168,36.428621],[104.489812,36.44256],[104.439382,36.408541],[104.429067,36.386581],[104.415477,36.391369],[104.349165,36.375547],[104.318055,36.377421],[104.313962,36.363887],[104.296279,36.354308],[104.258948,36.362221],[104.232095,36.359306],[104.218178,36.349622],[104.221453,36.337541],[104.184121,36.341915],[104.164965,36.32275],[104.163327,36.305351],[104.141551,36.293785],[104.130253,36.250942],[104.113389,36.26043],[104.125669,36.29837],[104.114371,36.306914],[104.111096,36.327438],[104.128616,36.335979],[104.095214,36.371696],[104.050024,36.414056],[104.042492,36.457224],[104.051825,36.464295],[104.041018,36.481243],[104.016622,36.4959],[104.022025,36.520634],[104.034141,36.535699],[104.028575,36.554292],[104.040855,36.573712],[103.974051,36.58451],[103.951456,36.61181],[103.960789,36.62582],[103.942123,36.635573],[103.924767,36.656217],[103.899225,36.671774],[103.915435,36.693238],[103.89726,36.704227],[103.897424,36.715629],[103.930662,36.719774],[103.940813,36.748684],[103.922639,36.751999],[103.92051,36.766812],[103.897097,36.77023],[103.891366,36.787731],[103.903482,36.803469],[103.859765,36.803676],[103.832422,36.812475],[103.825709,36.7985],[103.815066,36.82324],[103.790015,36.829657],[103.777244,36.85149],[103.757923,36.844247],[103.761853,36.828104],[103.7964,36.80378],[103.800494,36.791666],[103.740895,36.799328],[103.731234,36.805125],[103.712078,36.7839],[103.676875,36.790631],[103.669507,36.812889],[103.628246,36.822101],[103.604505,36.847248],[103.62317,36.86887],[103.592388,36.882419],[103.575196,36.923465],[103.547689,36.950025],[103.564881,36.973787]]],[[[102.831846,36.365345],[102.829718,36.365345],[102.836431,36.344623],[102.838887,36.345769],[102.831846,36.365345]]]]}},{"type":"Feature","properties":{"adcode":620200,"name":"嘉峪关市","center":[98.277304,39.786529],"centroid":[98.211266,39.829379],"childrenNum":0,"level":"city","parent":{"adcode":620000},"subFeatureIndex":1,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[97.862533,39.715005],[97.857458,39.711823],[97.855657,39.71043],[97.939979,39.695807],[97.969288,39.66277],[98.038383,39.698593],[98.157581,39.696902],[98.166259,39.713116],[98.188199,39.725945],[98.217671,39.727436],[98.246325,39.718884],[98.243378,39.707943],[98.281036,39.690932],[98.320824,39.665258],[98.33556,39.667547],[98.370762,39.654309],[98.381732,39.663765],[98.391229,39.690733],[98.413824,39.710331],[98.406947,39.731016],[98.361102,39.756169],[98.355535,39.78002],[98.456395,39.823429],[98.491106,39.840705],[98.484557,39.864428],[98.518777,39.892905],[98.520087,39.909469],[98.497328,39.916114],[98.497001,39.950219],[98.474897,39.969247],[98.444115,39.955769],[98.420701,39.955373],[98.392539,39.965779],[98.371745,39.957454],[98.329501,39.955868],[98.296591,39.962806],[98.162002,39.971625],[98.062943,39.99976],[98.068674,39.983217],[98.066382,39.954084],[98.024793,39.946551],[98.004818,39.922956],[98.036255,39.914725],[97.990901,39.891913],[97.98386,39.882785],[98.031179,39.827996],[97.99221,39.808631],[97.974363,39.780616],[97.862533,39.715005]]]]}},{"type":"Feature","properties":{"adcode":620300,"name":"金昌市","center":[102.187888,38.514238],"centroid":[102.045658,38.43382],"childrenNum":2,"level":"city","parent":{"adcode":620000},"subFeatureIndex":2,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.071959,38.892926],[102.07507,38.891517],[102.00974,38.854474],[101.996478,38.842491],[101.941463,38.808848],[101.874005,38.733949],[101.775601,38.660588],[101.744328,38.679062],[101.731393,38.674721],[101.678998,38.690971],[101.64969,38.686127],[101.613014,38.655742],[101.591401,38.642312],[101.564385,38.608372],[101.567168,38.57573],[101.516247,38.548332],[101.538188,38.525172],[101.547357,38.498665],[101.533603,38.489861],[101.502494,38.487027],[101.503967,38.463746],[101.529673,38.462531],[101.518539,38.436305],[101.48743,38.412502],[101.447315,38.388487],[101.424065,38.394871],[101.372162,38.388487],[101.371179,38.37227],[101.35628,38.36487],[101.337778,38.369736],[101.34711,38.317309],[101.392301,38.316294],[101.403599,38.284332],[101.417188,38.273675],[101.467946,38.250731],[101.491196,38.228389],[101.478261,38.207362],[101.462706,38.201469],[101.419481,38.164069],[101.402452,38.132955],[101.403599,38.102336],[101.386243,38.071298],[101.419153,38.058879],[101.441257,38.040144],[101.481208,38.055723],[101.516083,38.061424],[101.576665,38.056741],[101.612523,38.059795],[101.636755,38.071501],[101.651327,38.090024],[101.690623,38.066616],[101.706342,38.091754],[101.740071,38.096028],[101.766596,38.07944],[101.812277,38.064987],[101.835036,38.075267],[101.855339,38.099487],[101.885794,38.103048],[101.945393,38.080255],[101.975192,38.085547],[101.986654,38.096028],[102.003682,38.094807],[102.015798,38.081985],[102.026113,38.043097],[102.040522,38.029655],[102.094554,38.034544],[102.10929,38.042996],[102.135979,38.045338],[102.162503,38.061729],[102.17462,38.050938],[102.185917,38.062645],[102.207039,38.055519],[102.218337,38.088905],[102.232254,38.109255],[102.223412,38.113832],[102.253867,38.12492],[102.305115,38.134582],[102.344248,38.146988],[102.388947,38.143124],[102.409414,38.130514],[102.409905,38.11607],[102.431681,38.110882],[102.447236,38.115969],[102.458206,38.134175],[102.519934,38.170269],[102.531886,38.184905],[102.557265,38.183076],[102.575276,38.173522],[102.612443,38.173116],[102.649938,38.158172],[102.678592,38.157867],[102.675153,38.188666],[102.706754,38.186836],[102.719361,38.19588],[102.723782,38.238241],[102.700859,38.277938],[102.686942,38.289508],[102.695784,38.335972],[102.693328,38.347735],[102.704134,38.396594],[102.700859,38.411488],[102.622431,38.417769],[102.572656,38.416149],[102.616209,38.470023],[102.536143,38.500183],[102.496684,38.545804],[102.478509,38.58513],[102.459025,38.595943],[102.447072,38.631606],[102.397789,38.665232],[102.408922,38.727192],[102.411378,38.773475],[102.439868,38.808545],[102.425132,38.877527],[102.412361,38.885378],[102.43643,38.918281],[102.376503,38.926127],[102.336716,38.940007],[102.283666,38.948052],[102.269421,38.913955],[102.144984,38.939906],[102.094718,38.960218],[102.087514,38.981026],[101.96062,38.996804],[102.071959,38.892926]]]]}},{"type":"Feature","properties":{"adcode":620400,"name":"白银市","center":[104.173606,36.54568],"centroid":[104.622687,36.618375],"childrenNum":5,"level":"city","parent":{"adcode":620000},"subFeatureIndex":3,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.485967,35.726396],[105.472704,35.750639],[105.453875,35.747596],[105.457313,35.771623],[105.431771,35.787566],[105.430625,35.813049],[105.408684,35.822275],[105.383961,35.792496],[105.374955,35.804346],[105.386253,35.817662],[105.371026,35.844288],[105.398369,35.855187],[105.390838,35.866504],[105.350232,35.875934],[105.334513,35.88641],[105.329274,35.907881],[105.340244,35.909242],[105.325017,35.941804],[105.33173,35.951434],[105.333203,36.000612],[105.341881,36.005947],[105.34401,36.033868],[105.36595,36.034705],[105.360383,36.044219],[105.391329,36.074844],[105.40803,36.075785],[105.43128,36.104099],[105.49137,36.10107],[105.514948,36.147335],[105.502013,36.157671],[105.47909,36.212875],[105.462062,36.222159],[105.465827,36.251985],[105.459769,36.264496],[105.473195,36.275546],[105.475324,36.295035],[105.454202,36.32275],[105.425713,36.330146],[105.401644,36.369926],[105.419491,36.377317],[105.402135,36.385124],[105.399515,36.428829],[105.384779,36.44048],[105.368242,36.432158],[105.371026,36.461696],[105.361365,36.498186],[105.320105,36.53601],[105.303895,36.524686],[105.281136,36.522608],[105.260178,36.533621],[105.252155,36.55315],[105.275897,36.56312],[105.261161,36.602677],[105.250027,36.601431],[105.241513,36.62582],[105.221865,36.62997],[105.225467,36.664515],[105.208602,36.680174],[105.200907,36.702154],[105.215315,36.727858],[105.240039,36.741432],[105.272294,36.73936],[105.275897,36.75231],[105.319613,36.742882],[105.341063,36.764741],[105.332712,36.806057],[105.300129,36.824171],[105.296691,36.844247],[105.27868,36.852628],[105.274587,36.870835],[105.240694,36.896793],[105.226285,36.886452],[105.207783,36.897516],[105.178966,36.892243],[105.184042,36.902376],[105.177656,36.92915],[105.185679,36.942068],[105.168651,36.967279],[105.165376,36.994856],[105.129355,36.996302],[105.075978,37.013132],[105.059605,37.022836],[105.039793,37.007247],[105.010976,37.017261],[105.004426,37.035429],[104.965294,37.031713],[104.954488,37.04028],[104.953833,37.077321],[104.9147,37.097846],[104.915519,37.116201],[104.898982,37.127129],[104.887521,37.159182],[104.866072,37.17134],[104.856411,37.211715],[104.806636,37.234675],[104.793701,37.229219],[104.775199,37.246821],[104.717238,37.208523],[104.683181,37.202962],[104.663697,37.208317],[104.626038,37.205846],[104.60066,37.242704],[104.603607,37.262463],[104.619816,37.29055],[104.632424,37.298882],[104.644376,37.291168],[104.664679,37.299602],[104.665989,37.310812],[104.714618,37.330348],[104.717729,37.350393],[104.702829,37.34546],[104.668281,37.356046],[104.661405,37.376598],[104.679907,37.407827],[104.605244,37.426208],[104.564802,37.430418],[104.544335,37.42323],[104.521085,37.434833],[104.499472,37.421177],[104.45068,37.423641],[104.437745,37.445817],[104.404834,37.438323],[104.365538,37.418096],[104.345071,37.420458],[104.298407,37.413988],[104.285309,37.43052],[104.237826,37.411935],[104.18363,37.406799],[104.082934,37.469321],[103.933609,37.574123],[103.87139,37.605781],[103.850269,37.633126],[103.79067,37.586317],[103.762671,37.541939],[103.759233,37.521843],[103.771513,37.506767],[103.773478,37.473836],[103.764472,37.44633],[103.767747,37.425489],[103.746953,37.421793],[103.732708,37.394782],[103.735983,37.378242],[103.770039,37.355018],[103.763654,37.34217],[103.775934,37.329731],[103.765127,37.30207],[103.747608,37.307418],[103.757596,37.27728],[103.743351,37.283555],[103.723048,37.261331],[103.746298,37.242806],[103.725013,37.229425],[103.692757,37.238277],[103.675565,37.209553],[103.65559,37.148568],[103.64642,37.133004],[103.622188,37.125479],[103.634304,37.113211],[103.634959,37.084851],[103.618586,37.0636],[103.590587,37.068759],[103.581418,37.047607],[103.559642,37.027275],[103.580927,37.002497],[103.578471,36.985974],[103.564881,36.973787],[103.547689,36.950025],[103.575196,36.923465],[103.592388,36.882419],[103.62317,36.86887],[103.604505,36.847248],[103.628246,36.822101],[103.669507,36.812889],[103.676875,36.790631],[103.712078,36.7839],[103.731234,36.805125],[103.740895,36.799328],[103.800494,36.791666],[103.7964,36.80378],[103.761853,36.828104],[103.757923,36.844247],[103.777244,36.85149],[103.790015,36.829657],[103.815066,36.82324],[103.825709,36.7985],[103.832422,36.812475],[103.859765,36.803676],[103.903482,36.803469],[103.891366,36.787731],[103.897097,36.77023],[103.92051,36.766812],[103.922639,36.751999],[103.940813,36.748684],[103.930662,36.719774],[103.897424,36.715629],[103.89726,36.704227],[103.915435,36.693238],[103.899225,36.671774],[103.924767,36.656217],[103.942123,36.635573],[103.960789,36.62582],[103.951456,36.61181],[103.974051,36.58451],[104.040855,36.573712],[104.028575,36.554292],[104.034141,36.535699],[104.022025,36.520634],[104.016622,36.4959],[104.041018,36.481243],[104.051825,36.464295],[104.042492,36.457224],[104.050024,36.414056],[104.095214,36.371696],[104.128616,36.335979],[104.111096,36.327438],[104.114371,36.306914],[104.125669,36.29837],[104.113389,36.26043],[104.130253,36.250942],[104.141551,36.293785],[104.163327,36.305351],[104.164965,36.32275],[104.184121,36.341915],[104.221453,36.337541],[104.218178,36.349622],[104.232095,36.359306],[104.258948,36.362221],[104.296279,36.354308],[104.313962,36.363887],[104.318055,36.377421],[104.349165,36.375547],[104.415477,36.391369],[104.429067,36.386581],[104.439382,36.408541],[104.489812,36.44256],[104.507168,36.428621],[104.510442,36.373153],[104.501764,36.350767],[104.502419,36.316083],[104.517155,36.290241],[104.522231,36.262098],[104.531728,36.26116],[104.543025,36.237699],[104.512571,36.202547],[104.530909,36.168005],[104.577246,36.168109],[104.568895,36.139296],[104.559399,36.130106],[104.567422,36.112456],[104.5612,36.09219],[104.53795,36.08404],[104.519284,36.060212],[104.522722,36.043696],[104.507331,36.037946],[104.500618,36.02017],[104.532383,36.014627],[104.561855,36.028013],[104.584941,36.029477],[104.61867,36.044846],[104.633242,36.035541],[104.663369,36.041501],[104.680725,36.033764],[104.676141,36.022994],[104.648797,36.010758],[104.646505,35.996533],[104.676959,35.986804],[104.709379,35.94955],[104.72788,35.951958],[104.738032,35.931754],[104.769305,35.91741],[104.768978,35.887457],[104.811385,35.877924],[104.807291,35.865875],[104.853628,35.854873],[104.865744,35.832444],[104.864762,35.804031],[104.884246,35.79344],[104.891941,35.767112],[104.937296,35.738256],[104.980358,35.716634],[104.985597,35.700361],[104.986743,35.635025],[104.967095,35.608435],[104.954979,35.57216],[104.95285,35.548179],[104.937132,35.544602],[104.933202,35.51293],[104.946465,35.491562],[104.966768,35.489983],[104.975446,35.476402],[104.996731,35.471347],[105.000333,35.456183],[105.044541,35.448916],[105.070738,35.454814],[105.083673,35.418575],[105.123461,35.420156],[105.117894,35.440278],[105.135413,35.449126],[105.1752,35.441858],[105.232998,35.482719],[105.271476,35.475138],[105.303404,35.500299],[105.319777,35.482824],[105.345483,35.485351],[105.355471,35.495668],[105.384288,35.490088],[105.415398,35.497457],[105.406065,35.514403],[105.414251,35.526821],[105.447326,35.537553],[105.451583,35.551124],[105.473687,35.553859],[105.476143,35.60034],[105.520678,35.608014],[105.456658,35.68902],[105.457313,35.715374],[105.485967,35.726396]]]]}},{"type":"Feature","properties":{"adcode":620500,"name":"天水市","center":[105.724998,34.578529],"centroid":[105.741074,34.647312],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":4,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.488671,35.02089],[106.46231,35.040583],[106.446755,35.033807],[106.405985,35.035395],[106.382408,35.059318],[106.398781,35.083127],[106.370128,35.10492],[106.365707,35.13284],[106.330177,35.112642],[106.315113,35.120997],[106.302997,35.150603],[106.27549,35.171638],[106.211797,35.152294],[106.191331,35.162654],[106.177413,35.152294],[106.157765,35.12142],[106.147778,35.144471],[106.116668,35.122371],[106.087196,35.11444],[106.064437,35.123958],[106.018592,35.089581],[106.004675,35.090216],[106.006639,35.112747],[105.991576,35.120785],[105.961285,35.097516],[105.934924,35.096352],[105.92903,35.06027],[105.898739,35.063445],[105.887605,35.052015],[105.849619,35.058789],[105.844052,35.070959],[105.803119,35.074028],[105.784125,35.062916],[105.774793,35.024385],[105.75449,35.023749],[105.738608,35.047781],[105.725345,35.027349],[105.707334,35.044076],[105.706516,35.071805],[105.646262,35.104391],[105.635947,35.120362],[105.638403,35.139396],[105.609094,35.152929],[105.572418,35.181361],[105.558173,35.1821],[105.558501,35.161385],[105.539508,35.152717],[105.535578,35.138762],[105.559974,35.127659],[105.541636,35.07244],[105.52428,35.063339],[105.505615,35.085561],[105.484984,35.093178],[105.456495,35.130831],[105.42031,35.114334],[105.41114,35.079424],[105.396568,35.089475],[105.391656,35.064927],[105.379867,35.072017],[105.354489,35.04831],[105.336478,35.049369],[105.321415,35.03836],[105.297346,35.046722],[105.299147,35.01962],[105.290141,35.006806],[105.27606,35.033596],[105.261816,35.028196],[105.249699,35.00956],[105.259851,34.979797],[105.254611,34.964646],[105.217771,34.93211],[105.192884,34.937516],[105.193539,34.954897],[105.16816,34.969308],[105.130501,34.963904],[105.092515,34.969096],[105.058131,34.981915],[105.073686,34.955639],[105.070738,34.943452],[105.035372,34.925432],[105.007865,34.928718],[105.006391,34.939636],[104.970042,34.940484],[104.971352,34.953202],[104.933694,34.93635],[104.920922,34.950022],[104.898818,34.924584],[104.909788,34.903909],[104.895871,34.862439],[104.878679,34.856073],[104.850189,34.865833],[104.794356,34.869334],[104.757844,34.86212],[104.740979,34.85289],[104.728863,34.86212],[104.697262,34.859574],[104.657803,34.872304],[104.620144,34.86456],[104.598858,34.838883],[104.597385,34.804387],[104.584286,34.787292],[104.584777,34.767221],[104.60639,34.745763],[104.591818,34.726106],[104.577246,34.721218],[104.601642,34.710058],[104.589362,34.699535],[104.601642,34.679017],[104.595584,34.654027],[104.646177,34.655941],[104.699555,34.6737],[104.685965,34.628497],[104.690877,34.618176],[104.671556,34.575816],[104.695952,34.544725],[104.716255,34.541423],[104.738523,34.555587],[104.753914,34.52747],[104.748347,34.472914],[104.783222,34.487089],[104.793046,34.482293],[104.791573,34.431866],[104.837909,34.445622],[104.88572,34.422908],[104.918139,34.438691],[104.966768,34.437198],[104.989035,34.425574],[105.013104,34.420455],[105.038974,34.423441],[105.06861,34.44189],[105.084001,34.460548],[105.108725,34.460975],[105.128373,34.508401],[105.160792,34.527364],[105.20631,34.518948],[105.227759,34.533009],[105.243969,34.528429],[105.24053,34.512343],[105.254284,34.49977],[105.260342,34.452979],[105.290633,34.439331],[105.291615,34.428667],[105.312082,34.43048],[105.31159,34.442423],[105.350887,34.43144],[105.384943,34.408615],[105.408193,34.420988],[105.460261,34.391653],[105.491861,34.352166],[105.501521,34.328786],[105.522807,34.304972],[105.546384,34.319496],[105.558009,34.306788],[105.547039,34.291621],[105.527391,34.28457],[105.530338,34.273245],[105.554899,34.258072],[105.540163,34.248668],[105.555226,34.197245],[105.547858,34.152745],[105.563085,34.137229],[105.552606,34.113682],[105.563576,34.086381],[105.591739,34.084453],[105.596978,34.105868],[105.623994,34.096232],[105.61548,34.081348],[105.640859,34.081241],[105.651665,34.119034],[105.667711,34.144613],[105.704715,34.162054],[105.718141,34.158844],[105.72338,34.174035],[105.740409,34.176602],[105.771027,34.164407],[105.772664,34.136694],[105.781997,34.11957],[105.815235,34.147502],[105.86108,34.15328],[105.86501,34.125136],[105.90316,34.119034],[105.945076,34.144185],[105.9716,34.146111],[106.017773,34.159058],[106.041351,34.158737],[106.071805,34.146646],[106.082121,34.124814],[106.100622,34.125457],[106.117323,34.111434],[106.139755,34.113575],[106.14876,34.124279],[106.189693,34.110471],[106.229972,34.118071],[106.246836,34.132199],[106.244708,34.152638],[106.266648,34.161412],[106.276963,34.191256],[106.270742,34.206869],[106.282039,34.225472],[106.323627,34.230497],[106.330177,34.203447],[106.344585,34.179277],[106.327393,34.140868],[106.336562,34.109829],[106.363087,34.100622],[106.402874,34.109829],[106.453959,34.135517],[106.472298,34.154885],[106.475081,34.180025],[106.494238,34.201415],[106.494238,34.241827],[106.49653,34.25508],[106.526493,34.291941],[106.577087,34.280938],[106.586747,34.257431],[106.602466,34.250912],[106.633575,34.259889],[106.663866,34.24311],[106.684169,34.259996],[106.701197,34.290125],[106.704635,34.30871],[106.690227,34.334018],[106.711021,34.344374],[106.717407,34.369244],[106.697267,34.370631],[106.680075,34.383757],[106.663375,34.380982],[106.637341,34.391973],[106.621786,34.420455],[106.611798,34.452766],[106.591659,34.456604],[106.599355,34.465985],[106.567918,34.474832],[106.552363,34.48922],[106.515196,34.497213],[106.513886,34.512875],[106.453959,34.531305],[106.407787,34.523103],[106.399927,34.510105],[106.380443,34.521292],[106.366034,34.512343],[106.334434,34.517883],[106.343767,34.53663],[106.340983,34.568044],[106.313967,34.578797],[106.323136,34.589868],[106.368163,34.610302],[106.378314,34.623815],[106.4145,34.638178],[106.425306,34.654346],[106.44872,34.636476],[106.467222,34.640943],[106.470496,34.654133],[106.445609,34.669447],[106.441352,34.681675],[106.45969,34.705594],[106.48687,34.71516],[106.505863,34.746932],[106.539592,34.745657],[106.548597,34.761697],[106.574958,34.770088],[106.578397,34.788991],[106.565789,34.796636],[106.55089,34.829544],[106.555965,34.861272],[106.520599,34.885245],[106.510284,34.925114],[106.493092,34.94112],[106.483104,34.980114],[106.502097,34.99558],[106.488671,35.02089]]]]}},{"type":"Feature","properties":{"adcode":620600,"name":"武威市","center":[102.634697,37.929996],"centroid":[103.059993,38.183694],"childrenNum":4,"level":"city","parent":{"adcode":620000},"subFeatureIndex":5,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[103.564881,36.973787],[103.578471,36.985974],[103.580927,37.002497],[103.559642,37.027275],[103.581418,37.047607],[103.590587,37.068759],[103.618586,37.0636],[103.634959,37.084851],[103.634304,37.113211],[103.622188,37.125479],[103.64642,37.133004],[103.65559,37.148568],[103.675565,37.209553],[103.692757,37.238277],[103.725013,37.229425],[103.746298,37.242806],[103.723048,37.261331],[103.743351,37.283555],[103.757596,37.27728],[103.747608,37.307418],[103.765127,37.30207],[103.775934,37.329731],[103.763654,37.34217],[103.770039,37.355018],[103.735983,37.378242],[103.732708,37.394782],[103.746953,37.421793],[103.767747,37.425489],[103.764472,37.44633],[103.773478,37.473836],[103.771513,37.506767],[103.759233,37.521843],[103.762671,37.541939],[103.79067,37.586317],[103.850269,37.633126],[103.840936,37.647459],[103.683261,37.777973],[103.669998,37.786659],[103.628246,37.797592],[103.401803,37.862031],[103.385429,37.947012],[103.368237,37.985645],[103.371676,38.008265],[103.362343,38.041366],[103.368728,38.088905],[103.48105,38.135701],[103.507738,38.142209],[103.534918,38.156749],[103.507902,38.280881],[103.465331,38.353109],[103.416375,38.405004],[103.574378,38.489861],[103.859765,38.644533],[103.980928,38.814187],[104.011546,38.859105],[104.044457,38.895039],[104.108477,38.916772],[104.167912,38.940409],[104.196401,38.988262],[104.190998,39.042209],[104.207372,39.083671],[104.177572,39.152185],[104.047568,39.297719],[104.073274,39.351829],[104.090957,39.418483],[104.082443,39.422479],[103.965046,39.455231],[103.853707,39.46142],[103.824071,39.45573],[103.729106,39.430069],[103.595336,39.386713],[103.511504,39.371322],[103.473518,39.359227],[103.428819,39.353528],[103.35694,39.33663],[103.339911,39.327529],[103.257881,39.26299],[103.187967,39.215424],[103.133116,39.19268],[103.082195,39.159203],[103.051249,39.129923],[103.013427,39.101132],[102.947115,39.106851],[102.896521,39.116281],[102.765698,39.144564],[102.6167,39.171734],[102.583462,39.180755],[102.537944,39.209713],[102.453622,39.255282],[102.35489,39.232051],[102.280719,39.190275],[102.197706,39.171934],[102.072777,39.146971],[102.008103,39.12581],[101.897583,39.111064],[101.830943,39.094007],[101.926236,39.000622],[101.955053,38.986051],[102.003191,38.945035],[102.045761,38.904699],[102.071959,38.892926],[101.96062,38.996804],[102.087514,38.981026],[102.094718,38.960218],[102.144984,38.939906],[102.269421,38.913955],[102.283666,38.948052],[102.336716,38.940007],[102.376503,38.926127],[102.43643,38.918281],[102.412361,38.885378],[102.425132,38.877527],[102.439868,38.808545],[102.411378,38.773475],[102.408922,38.727192],[102.397789,38.665232],[102.447072,38.631606],[102.459025,38.595943],[102.478509,38.58513],[102.496684,38.545804],[102.536143,38.500183],[102.616209,38.470023],[102.572656,38.416149],[102.622431,38.417769],[102.700859,38.411488],[102.704134,38.396594],[102.693328,38.347735],[102.695784,38.335972],[102.686942,38.289508],[102.700859,38.277938],[102.723782,38.238241],[102.719361,38.19588],[102.706754,38.186836],[102.675153,38.188666],[102.678592,38.157867],[102.649938,38.158172],[102.612443,38.173116],[102.575276,38.173522],[102.557265,38.183076],[102.531886,38.184905],[102.519934,38.170269],[102.458206,38.134175],[102.447236,38.115969],[102.431681,38.110882],[102.409905,38.11607],[102.409414,38.130514],[102.388947,38.143124],[102.344248,38.146988],[102.305115,38.134582],[102.253867,38.12492],[102.223412,38.113832],[102.232254,38.109255],[102.218337,38.088905],[102.207039,38.055519],[102.185917,38.062645],[102.17462,38.050938],[102.162503,38.061729],[102.135979,38.045338],[102.10929,38.042996],[102.094554,38.034544],[102.097501,38.032303],[102.108471,38.026091],[102.110109,38.011932],[102.132049,38.005514],[102.169217,38.004801],[102.166597,37.99451],[102.137616,37.982792],[102.090788,37.955882],[102.031517,37.941608],[102.036265,37.933349],[102.07507,37.929065],[102.087514,37.920498],[102.116986,37.917744],[102.129266,37.903361],[102.122061,37.888158],[102.151533,37.851312],[102.168398,37.84437],[102.202454,37.854477],[102.197706,37.841102],[102.15972,37.819657],[102.15137,37.78809],[102.122225,37.77082],[102.095864,37.728802],[102.079327,37.709881],[102.079163,37.693616],[102.052966,37.682463],[102.049691,37.639576],[102.035283,37.627699],[102.070158,37.601377],[102.066392,37.590108],[102.089642,37.578837],[102.101595,37.582423],[102.106998,37.564285],[102.130903,37.54686],[102.118132,37.531584],[102.122225,37.515895],[102.103396,37.492817],[102.106507,37.481326],[102.125172,37.485533],[102.176585,37.458853],[102.197379,37.420561],[102.248791,37.411524],[102.271223,37.39283],[102.30004,37.391289],[102.298893,37.370022],[102.341137,37.348029],[102.368317,37.327675],[102.393531,37.325002],[102.428243,37.308344],[102.419238,37.296002],[102.453622,37.27121],[102.461481,37.246512],[102.479983,37.241057],[102.489807,37.223659],[102.533196,37.217276],[102.579533,37.172473],[102.600982,37.174328],[102.62767,37.126098],[102.637331,37.121974],[102.642079,37.099702],[102.583626,37.105374],[102.577241,37.098465],[102.531886,37.08743],[102.497993,37.090421],[102.488497,37.078559],[102.498976,37.058442],[102.494228,37.043789],[102.505525,37.023559],[102.467212,36.988556],[102.467375,36.976575],[102.450347,36.968518],[102.467867,36.954365],[102.498485,36.956224],[102.499795,36.943515],[102.5237,36.939795],[102.527793,36.927703],[102.560867,36.919537],[102.570691,36.8879],[102.595579,36.871455],[102.637494,36.853663],[102.658125,36.823861],[102.704461,36.792184],[102.720671,36.770023],[102.731477,36.762358],[102.715268,36.745576],[102.684977,36.743918],[102.666475,36.707648],[102.688743,36.684218],[102.730659,36.672811],[102.772575,36.673434],[102.778142,36.691579],[102.756856,36.717598],[102.778305,36.761737],[102.807614,36.773544],[102.813508,36.762773],[102.833156,36.762358],[102.84298,36.77458],[102.822677,36.794876],[102.846255,36.808645],[102.810397,36.841143],[102.843471,36.845179],[102.863447,36.838142],[102.877855,36.856042],[102.902415,36.865146],[102.903398,36.878695],[102.883095,36.901342],[102.919607,36.935454],[102.954974,36.92884],[102.975932,36.947855],[103.004421,36.946925],[103.068114,36.959737],[103.074336,36.945272],[103.128695,36.951678],[103.180271,36.945685],[103.176833,36.932974],[103.201393,36.92977],[103.206141,36.941242],[103.230537,36.937211],[103.258208,36.958704],[103.276219,36.954158],[103.248057,36.916643],[103.26574,36.907959],[103.281131,36.915196],[103.313223,36.907132],[103.347607,36.916126],[103.348425,36.895862],[103.380353,36.878902],[103.377897,36.853352],[103.399019,36.826034],[103.450759,36.831209],[103.472535,36.861732],[103.47319,36.874248],[103.518053,36.849938],[103.541631,36.878799],[103.519691,36.902686],[103.501353,36.895448],[103.499879,36.913335],[103.479576,36.940208],[103.455998,36.935868],[103.44159,36.950542],[103.407861,36.923465],[103.383464,36.920364],[103.368237,36.907856],[103.348589,36.926773],[103.348098,36.958291],[103.323702,36.946718],[103.309457,36.949818],[103.317152,36.986697],[103.359396,36.996715],[103.404586,36.999193],[103.440607,36.995992],[103.450104,36.981946],[103.483669,36.966452],[103.511832,36.961493],[103.528532,36.970481],[103.564881,36.973787]]]]}},{"type":"Feature","properties":{"adcode":620700,"name":"张掖市","center":[100.455472,38.932897],"centroid":[99.818538,38.961729],"childrenNum":6,"level":"city","parent":{"adcode":620000},"subFeatureIndex":6,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.035283,37.627699],[102.049691,37.639576],[102.052966,37.682463],[102.079163,37.693616],[102.079327,37.709881],[102.095864,37.728802],[102.122225,37.77082],[102.15137,37.78809],[102.15972,37.819657],[102.197706,37.841102],[102.202454,37.854477],[102.168398,37.84437],[102.151533,37.851312],[102.122061,37.888158],[102.129266,37.903361],[102.116986,37.917744],[102.087514,37.920498],[102.07507,37.929065],[102.036265,37.933349],[102.031517,37.941608],[102.090788,37.955882],[102.137616,37.982792],[102.166597,37.99451],[102.169217,38.004801],[102.132049,38.005514],[102.110109,38.011932],[102.108471,38.026091],[102.097501,38.032303],[102.094554,38.034544],[102.040522,38.029655],[102.026113,38.043097],[102.015798,38.081985],[102.003682,38.094807],[101.986654,38.096028],[101.975192,38.085547],[101.945393,38.080255],[101.885794,38.103048],[101.855339,38.099487],[101.835036,38.075267],[101.812277,38.064987],[101.766596,38.07944],[101.740071,38.096028],[101.706342,38.091754],[101.690623,38.066616],[101.651327,38.090024],[101.636755,38.071501],[101.612523,38.059795],[101.576665,38.056741],[101.516083,38.061424],[101.481208,38.055723],[101.441257,38.040144],[101.419153,38.058879],[101.386243,38.071298],[101.403599,38.102336],[101.402452,38.132955],[101.419481,38.164069],[101.462706,38.201469],[101.478261,38.207362],[101.491196,38.228389],[101.467946,38.250731],[101.417188,38.273675],[101.403599,38.284332],[101.392301,38.316294],[101.34711,38.317309],[101.337778,38.369736],[101.35628,38.36487],[101.371179,38.37227],[101.372162,38.388487],[101.424065,38.394871],[101.447315,38.388487],[101.48743,38.412502],[101.518539,38.436305],[101.529673,38.462531],[101.503967,38.463746],[101.502494,38.487027],[101.533603,38.489861],[101.547357,38.498665],[101.538188,38.525172],[101.516247,38.548332],[101.567168,38.57573],[101.564385,38.608372],[101.591401,38.642312],[101.613014,38.655742],[101.601716,38.655136],[101.56242,38.712968],[101.487266,38.736471],[101.412276,38.7642],[101.331228,38.777305],[101.316656,38.783756],[101.306341,38.801895],[101.330082,38.807739],[101.34138,38.822246],[101.334012,38.848533],[101.259677,38.855078],[101.239865,38.86575],[101.237736,38.907315],[101.198604,38.943225],[101.228567,39.020715],[101.117229,38.975196],[100.969213,38.946945],[100.969377,38.996703],[100.961518,39.006048],[100.901755,39.030057],[100.888984,39.007254],[100.875394,39.002431],[100.835116,39.026039],[100.829549,39.035581],[100.829385,39.074939],[100.864424,39.106951],[100.865734,39.124707],[100.85329,39.151684],[100.842811,39.200095],[100.842156,39.405697],[100.707895,39.404598],[100.658775,39.392009],[100.61997,39.387612],[100.56954,39.395107],[100.499135,39.400502],[100.500608,39.481382],[100.443301,39.485573],[100.326232,39.509119],[100.301017,39.572335],[100.314116,39.606909],[100.250096,39.685062],[100.127951,39.702174],[100.040681,39.757063],[99.95865,39.769487],[99.904454,39.785783],[99.821933,39.860061],[99.712067,39.877626],[99.672608,39.888044],[99.48808,39.876038],[99.455988,39.877427],[99.35873,39.86681],[99.320581,39.847753],[99.247719,39.838024],[99.229872,39.851624],[99.206295,39.829982],[99.193196,39.809128],[99.140965,39.80148],[99.113785,39.835046],[99.083331,39.837329],[99.06925,39.850136],[99.026843,39.854007],[98.987055,39.832762],[98.960039,39.788565],[98.94956,39.701478],[98.94956,39.66496],[98.881447,39.665457],[98.824632,39.676405],[98.804492,39.627028],[98.816118,39.592065],[98.872114,39.594058],[98.938099,39.577916],[98.946613,39.594955],[98.977886,39.619559],[99.025205,39.629617],[99.053695,39.623144],[99.064665,39.609997],[99.056478,39.587681],[99.072852,39.554891],[99.097575,39.530763],[99.10609,39.514107],[99.135234,39.503633],[99.183372,39.475394],[99.23593,39.458426],[99.256233,39.427472],[99.308137,39.357527],[99.30519,39.33313],[99.293073,39.30012],[99.280793,39.289113],[99.207277,39.283809],[99.198927,39.275903],[99.213663,39.226642],[99.207113,39.205706],[99.176331,39.171634],[99.179115,39.181556],[99.143585,39.208211],[99.141292,39.24607],[99.120498,39.261088],[99.080711,39.267795],[99.060244,39.257885],[99.046491,39.285511],[99.023568,39.30032],[98.985418,39.312926],[98.975758,39.33073],[98.906498,39.33253],[98.902078,39.316527],[98.880956,39.33003],[98.866547,39.324229],[98.838713,39.34423],[98.800235,39.360426],[98.752589,39.389811],[98.72852,39.399203],[98.710509,39.414788],[98.660407,39.43646],[98.612269,39.444548],[98.57019,39.460622],[98.579686,39.481981],[98.553325,39.470204],[98.526473,39.467509],[98.515503,39.480384],[98.530566,39.486771],[98.549723,39.509718],[98.434127,39.577517],[98.410058,39.550904],[98.402035,39.514406],[98.396632,39.535549],[98.362412,39.542629],[98.330156,39.569544],[98.357009,39.630315],[98.370762,39.654309],[98.33556,39.667547],[98.320824,39.665258],[98.281036,39.690932],[98.243378,39.707943],[98.246325,39.718884],[98.217671,39.727436],[98.188199,39.725945],[98.166259,39.713116],[98.157581,39.696902],[98.038383,39.698593],[97.969288,39.66277],[97.939979,39.695807],[97.855657,39.71043],[97.828968,39.68536],[97.785579,39.680684],[97.700273,39.697101],[97.676532,39.679092],[97.656229,39.632007],[97.619062,39.630613],[97.585333,39.603124],[97.569942,39.564162],[97.557825,39.554094],[97.520494,39.53874],[97.480216,39.472999],[97.480543,39.406396],[97.477268,39.373221],[97.453855,39.352229],[97.429295,39.347429],[97.397039,39.318027],[97.402115,39.293016],[97.395074,39.240363],[97.426347,39.173738],[97.43306,39.126011],[97.458767,39.118087],[97.504939,39.076545],[97.543417,39.067209],[97.581403,39.052351],[97.620208,39.031764],[97.679152,39.010268],[97.695034,38.988765],[97.690449,38.9759],[97.701583,38.963334],[97.735967,38.958106],[97.749721,38.94956],[97.793274,38.942923],[97.828968,38.93005],[97.875796,38.898259],[97.90887,38.884472],[97.95537,38.873702],[97.971907,38.863334],[98.012022,38.858098],[98.027741,38.835542],[98.050991,38.819224],[98.062452,38.819728],[98.095035,38.786276],[98.117303,38.805623],[98.152342,38.820131],[98.167733,38.840175],[98.203427,38.856588],[98.251237,38.891215],[98.249763,38.911842],[98.236173,38.920896],[98.270066,38.954587],[98.287586,38.992181],[98.281036,39.027044],[98.292334,39.037991],[98.316894,39.040502],[98.384025,39.029354],[98.401053,39.001527],[98.43249,38.9961],[98.428233,38.976],[98.457541,38.952979],[98.526473,38.955593],[98.550542,38.949359],[98.572973,38.932363],[98.590165,38.933168],[98.597697,38.947649],[98.614889,38.947348],[98.624058,38.959212],[98.614562,38.980523],[98.663354,38.994493],[98.691844,39.020816],[98.705434,39.043314],[98.730485,39.05717],[98.743747,39.086882],[98.759793,39.090294],[98.81317,39.087685],[98.817755,39.066507],[98.857215,39.047531],[98.887178,39.039196],[98.902896,39.012578],[98.94956,38.988463],[98.984108,38.984845],[98.993277,38.977407],[99.013908,38.984644],[99.056478,38.975598],[99.065484,38.96263],[99.108873,38.946342],[99.062045,38.911641],[99.068758,38.897052],[99.110674,38.867965],[99.141292,38.852762],[99.169291,38.827283],[99.222177,38.788896],[99.257707,38.781639],[99.290945,38.765914],[99.362169,38.718214],[99.371502,38.690567],[99.412435,38.665535],[99.426189,38.647361],[99.432247,38.623425],[99.450912,38.604431],[99.496103,38.612918],[99.514277,38.597661],[99.514114,38.568452],[99.529013,38.546107],[99.548661,38.534275],[99.555702,38.520418],[99.585338,38.498564],[99.63937,38.474578],[99.659673,38.449167],[99.679157,38.436609],[99.715342,38.425164],[99.73499,38.412603],[99.75824,38.410475],[99.830774,38.368621],[99.909203,38.343375],[99.937201,38.34155],[99.959796,38.320656],[100.001712,38.314975],[100.050177,38.283215],[100.071463,38.284535],[100.099133,38.270325],[100.116162,38.254183],[100.127951,38.230624],[100.160206,38.217013],[100.183129,38.222397],[100.180509,38.245451],[100.169211,38.262001],[100.157914,38.310511],[100.164627,38.327452],[100.135646,38.33516],[100.116653,38.35027],[100.111414,38.377338],[100.091602,38.408449],[100.047885,38.421518],[100.047557,38.430229],[100.022015,38.432558],[100.025945,38.451293],[100.001221,38.466986],[100.025781,38.507974],[100.064095,38.518597],[100.090128,38.49229],[100.112232,38.497248],[100.12615,38.485206],[100.151364,38.478323],[100.164791,38.460507],[100.205069,38.456254],[100.241254,38.43985],[100.259592,38.366391],[100.274001,38.379163],[100.300853,38.389095],[100.331308,38.337493],[100.318209,38.328365],[100.359797,38.307874],[100.373715,38.309091],[100.396637,38.293262],[100.424145,38.307163],[100.435278,38.301279],[100.437243,38.26799],[100.461148,38.265858],[100.474411,38.288696],[100.496515,38.273675],[100.520584,38.271035],[100.546617,38.246872],[100.574452,38.251442],[100.595082,38.242303],[100.618987,38.265757],[100.673838,38.256214],[100.686282,38.249614],[100.714935,38.253574],[100.751775,38.238749],[100.780265,38.213559],[100.789107,38.193543],[100.810064,38.181247],[100.822017,38.161934],[100.843794,38.149123],[100.860494,38.148412],[100.911743,38.179214],[100.938104,38.160409],[100.925005,38.14892],[100.916164,38.115053],[100.922713,38.085547],[100.894878,38.063256],[100.887347,38.049614],[100.89668,38.029757],[100.894715,38.013562],[100.917965,37.999707],[100.964138,38.011015],[100.980347,38.006838],[100.997539,37.988396],[101.020953,37.975454],[101.034543,37.976575],[101.077114,37.941812],[101.102984,37.946503],[101.114281,37.920192],[101.130818,37.913664],[101.152268,37.891117],[101.150794,37.877749],[101.172734,37.860908],[101.202697,37.847535],[101.23921,37.843144],[101.258531,37.832831],[101.279161,37.836712],[101.319931,37.811281],[101.362338,37.791257],[101.376746,37.801066],[101.382641,37.82221],[101.402944,37.831708],[101.443222,37.868155],[101.482846,37.853558],[101.500365,37.857948],[101.542608,37.838958],[101.598278,37.827419],[101.619072,37.809851],[101.640685,37.775827],[101.67032,37.754261],[101.659187,37.733301],[101.791811,37.696071],[101.813587,37.681644],[101.816043,37.654318],[101.854357,37.664656],[101.872368,37.685737],[101.90888,37.703641],[101.946375,37.728086],[101.999097,37.725018],[102.033481,37.6885],[102.0343,37.667522],[102.047399,37.654318],[102.035283,37.627699]]]]}},{"type":"Feature","properties":{"adcode":620800,"name":"平凉市","center":[106.684691,35.54279],"centroid":[106.651661,35.305521],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":7,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.083103,35.421842],[106.072951,35.420788],[106.067876,35.436065],[106.072951,35.447546],[106.072133,35.463555],[106.053958,35.454709],[106.034474,35.469241],[106.017282,35.463766],[106.00402,35.439014],[105.965542,35.425635],[105.930667,35.425846],[105.894646,35.413834],[105.889734,35.439436],[105.897593,35.451549],[105.925591,35.450812],[105.988465,35.475559],[106.048555,35.489036],[106.047736,35.498089],[106.020557,35.493878],[106.016136,35.522191],[105.913311,35.539657],[105.902832,35.547337],[105.868612,35.539973],[105.862063,35.515035],[105.846999,35.49051],[105.83652,35.494826],[105.834719,35.541025],[105.816381,35.575105],[105.798207,35.565745],[105.777576,35.586777],[105.785763,35.591929],[105.762185,35.602968],[105.759074,35.634395],[105.742046,35.626303],[105.744011,35.639964],[105.714702,35.647004],[105.722889,35.673477],[105.704224,35.68587],[105.69047,35.683979],[105.723708,35.725871],[105.728456,35.699626],[105.737625,35.697421],[105.758911,35.725032],[105.734842,35.724402],[105.707826,35.737941],[105.679827,35.737626],[105.668857,35.750009],[105.595668,35.715584],[105.570126,35.716319],[105.575038,35.701306],[105.564395,35.687655],[105.561284,35.724612],[105.530175,35.726921],[105.509381,35.718943],[105.485967,35.726396],[105.457313,35.715374],[105.456658,35.68902],[105.520678,35.608014],[105.476143,35.60034],[105.473687,35.553859],[105.451583,35.551124],[105.447326,35.537553],[105.414251,35.526821],[105.406065,35.514403],[105.415398,35.497457],[105.384288,35.490088],[105.355471,35.495668],[105.345483,35.485351],[105.383797,35.458921],[105.393457,35.425003],[105.404427,35.407406],[105.426859,35.398342],[105.427841,35.380107],[105.440285,35.373782],[105.456331,35.345101],[105.477289,35.352166],[105.47778,35.388435],[105.489569,35.387591],[105.506925,35.358915],[105.54049,35.342148],[105.532631,35.311873],[105.559483,35.293301],[105.549495,35.283697],[105.545893,35.257941],[105.573564,35.207459],[105.607457,35.223304],[105.614661,35.216438],[105.617117,35.1821],[105.63873,35.173117],[105.648227,35.145845],[105.638403,35.139396],[105.635947,35.120362],[105.646262,35.104391],[105.706516,35.071805],[105.707334,35.044076],[105.725345,35.027349],[105.738608,35.047781],[105.75449,35.023749],[105.774793,35.024385],[105.784125,35.062916],[105.803119,35.074028],[105.844052,35.070959],[105.849619,35.058789],[105.887605,35.052015],[105.898739,35.063445],[105.92903,35.06027],[105.934924,35.096352],[105.961285,35.097516],[105.991576,35.120785],[106.006639,35.112747],[106.004675,35.090216],[106.018592,35.089581],[106.064437,35.123958],[106.087196,35.11444],[106.116668,35.122371],[106.147778,35.144471],[106.157765,35.12142],[106.177413,35.152294],[106.191331,35.162654],[106.211797,35.152294],[106.27549,35.171638],[106.302997,35.150603],[106.315113,35.120997],[106.330177,35.112642],[106.365707,35.13284],[106.370128,35.10492],[106.398781,35.083127],[106.382408,35.059318],[106.405985,35.035395],[106.446755,35.033807],[106.46231,35.040583],[106.488671,35.02089],[106.503571,35.033807],[106.521418,35.027773],[106.545978,35.070536],[106.543522,35.085032],[106.575777,35.08937],[106.615401,35.071065],[106.640124,35.071488],[106.706436,35.081858],[106.714459,35.105555],[106.777824,35.094236],[106.838406,35.079847],[106.856908,35.091274],[106.900624,35.094553],[106.911103,35.080694],[106.945979,35.077414],[106.950072,35.066938],[106.990842,35.068525],[107.012454,35.029361],[107.032757,35.030102],[107.050932,35.040794],[107.048312,35.028302],[107.088754,35.020785],[107.097596,34.998228],[107.089573,34.976724],[107.119536,34.950234],[107.162434,34.944088],[107.179954,34.928294],[107.189614,34.893305],[107.201075,34.881639],[107.223016,34.878138],[107.231202,34.892563],[107.251997,34.881108],[107.262312,34.907515],[107.282942,34.911756],[107.286708,34.931898],[107.322402,34.938152],[107.350237,34.934124],[107.372013,34.918011],[107.392971,34.932428],[107.426045,34.928718],[107.455517,34.916739],[107.474838,34.919389],[107.523958,34.909847],[107.536729,34.915361],[107.537875,34.932534],[107.551138,34.940272],[107.562108,34.966553],[107.572096,34.971427],[107.605661,34.958712],[107.619742,34.964646],[107.633332,34.953943],[107.6258,34.918965],[107.639881,34.918753],[107.637753,34.933276],[107.65429,34.933594],[107.675412,34.95087],[107.74156,34.95352],[107.778564,34.964752],[107.804761,34.956805],[107.80689,34.973652],[107.842092,34.978949],[107.863378,34.999181],[107.84373,35.002252],[107.848314,35.023855],[107.82752,35.022161],[107.80034,35.033384],[107.759407,35.071171],[107.754004,35.095082],[107.722567,35.114863],[107.727643,35.120151],[107.715854,35.16815],[107.6872,35.216649],[107.670336,35.214431],[107.651998,35.239779],[107.66264,35.255407],[107.69244,35.251183],[107.720111,35.269237],[107.737303,35.267442],[107.736812,35.296151],[107.718637,35.303221],[107.745817,35.311662],[107.737139,35.326748],[107.744343,35.338034],[107.736812,35.353643],[107.721912,35.353432],[107.707667,35.371251],[107.690639,35.407195],[107.700626,35.424581],[107.678522,35.43459],[107.665096,35.427637],[107.634969,35.431851],[107.636279,35.444281],[107.617614,35.462186],[107.594527,35.462397],[107.598129,35.487141],[107.585031,35.482508],[107.592726,35.467135],[107.570622,35.46345],[107.542951,35.495247],[107.53018,35.497984],[107.504474,35.480087],[107.500708,35.459974],[107.479586,35.461659],[107.482861,35.485983],[107.451752,35.485351],[107.423589,35.502089],[107.405251,35.50051],[107.383802,35.48114],[107.352365,35.490931],[107.332553,35.488825],[107.290638,35.518192],[107.255108,35.522085],[107.256745,35.499878],[107.233986,35.513561],[107.198783,35.509562],[107.189287,35.517981],[107.171112,35.474401],[107.126413,35.493141],[107.096613,35.466609],[107.064522,35.478929],[107.056499,35.465451],[107.052242,35.491036],[106.990187,35.532187],[106.989368,35.539131],[106.926003,35.579101],[106.90308,35.611168],[106.876719,35.632188],[106.823833,35.661607],[106.754738,35.691225],[106.737546,35.68944],[106.674836,35.728076],[106.662392,35.707605],[106.633248,35.714849],[106.620968,35.743818],[106.6136,35.729755],[106.599682,35.743713],[106.597554,35.727971],[106.566608,35.738781],[106.530423,35.741824],[106.506354,35.737521],[106.504226,35.736157],[106.498004,35.732484],[106.4926,35.732799],[106.465912,35.717999],[106.44872,35.694166],[106.434966,35.688495],[106.439387,35.661817],[106.459854,35.643852],[106.454287,35.62914],[106.482449,35.575526],[106.460509,35.579417],[106.451012,35.553544],[106.454778,35.537658],[106.440697,35.52661],[106.462637,35.50272],[106.465584,35.481034],[106.490144,35.480403],[106.483431,35.450601],[106.503571,35.414993],[106.494893,35.401399],[106.496039,35.376101],[106.509301,35.35881],[106.493747,35.351955],[106.490472,35.329596],[106.472298,35.310712],[106.430545,35.292985],[106.417774,35.275992],[106.38732,35.269764],[106.368163,35.273459],[106.375695,35.248544],[106.363578,35.238301],[106.335907,35.251078],[106.318715,35.267125],[106.32068,35.277681],[106.285641,35.301532],[106.275326,35.329174],[106.261736,35.330334],[106.241433,35.358493],[106.24962,35.366823],[106.237504,35.409513],[106.191986,35.412253],[106.17463,35.438382],[106.166934,35.420999],[106.134515,35.397815],[106.123873,35.373465],[106.106517,35.36714],[106.100295,35.402031],[106.08736,35.402347],[106.083103,35.421842]]],[[[106.047736,35.498089],[106.048555,35.489036],[106.053958,35.454709],[106.072133,35.463555],[106.068858,35.489141],[106.099476,35.499668],[106.078518,35.509667],[106.047736,35.498089]]],[[[106.072951,35.447546],[106.067876,35.436065],[106.072951,35.420788],[106.083103,35.421842],[106.072951,35.447546]]],[[[106.504226,35.736157],[106.506354,35.737521],[106.4926,35.732799],[106.498004,35.732484],[106.504226,35.736157]]]]}},{"type":"Feature","properties":{"adcode":620900,"name":"酒泉市","center":[98.510795,39.744023],"centroid":[96.063265,40.283136],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":8,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[99.455988,39.877427],[99.440925,39.88596],[99.45959,39.898063],[99.491355,39.884274],[99.524756,39.888143],[99.55341,39.904213],[99.621195,39.928211],[99.714032,39.97212],[99.7512,40.006891],[99.836996,40.012635],[99.881368,40.030853],[99.927704,40.063912],[99.955867,40.150836],[100.001712,40.196972],[100.169703,40.277611],[100.169703,40.541356],[100.242564,40.618639],[100.237325,40.716808],[100.224717,40.727489],[100.107975,40.875572],[100.057054,40.908021],[99.98583,40.909682],[99.828482,40.921993],[99.673263,40.932934],[99.566017,40.846725],[99.36266,40.852006],[99.174694,40.858363],[99.173057,40.747278],[99.125574,40.715142],[99.10216,40.67642],[99.041579,40.693774],[98.985091,40.782826],[98.791066,40.705341],[98.789265,40.678872],[98.807276,40.659356],[98.796142,40.633359],[98.803019,40.607843],[98.758156,40.642189],[98.715585,40.66171],[98.687914,40.696813],[98.668594,40.772937],[98.570026,40.746887],[98.627988,40.677891],[98.344237,40.568371],[98.333267,40.91916],[98.293808,40.932153],[98.250254,40.939185],[98.184761,40.988003],[98.142354,41.00186],[97.972071,41.097904],[97.910671,41.160914],[97.629541,41.440562],[97.63478,41.451901],[97.616442,41.464304],[97.61415,41.477189],[97.665235,41.517765],[97.846979,41.656635],[97.663761,41.969056],[97.500846,42.243878],[97.35938,42.476993],[97.247878,42.668756],[97.172724,42.795163],[97.073502,42.774287],[96.982629,42.757392],[96.856882,42.755493],[96.742105,42.757107],[96.597692,42.74372],[96.49192,42.736598],[96.386148,42.727765],[96.354711,42.708482],[96.281522,42.677882],[96.18934,42.634427],[96.168055,42.631763],[96.165272,42.622345],[96.103544,42.604171],[96.072435,42.56933],[96.023806,42.542472],[96.017584,42.482142],[95.978779,42.436737],[96.066213,42.4145],[96.042144,42.3529],[96.041162,42.326522],[96.17837,42.217934],[96.077183,42.149623],[96.138911,42.054172],[96.137437,42.019601],[96.115988,41.984724],[96.039197,41.925301],[96.009889,41.911255],[95.918361,41.876029],[95.883977,41.867845],[95.855652,41.849645],[95.801456,41.848104],[95.759212,41.836063],[95.676036,41.830187],[95.650985,41.823732],[95.610706,41.805133],[95.571901,41.796169],[95.562405,41.785373],[95.534898,41.77467],[95.510174,41.756347],[95.39425,41.693526],[95.359539,41.668033],[95.33547,41.644172],[95.300104,41.566152],[95.250329,41.608992],[95.212015,41.676918],[95.194168,41.694974],[95.199571,41.719395],[95.16486,41.735317],[95.13768,41.772452],[95.110664,41.768402],[95.011278,41.726343],[94.968871,41.71872],[94.861953,41.668516],[94.809885,41.619336],[94.750123,41.538285],[94.534158,41.505953],[94.281354,41.335216],[94.184096,41.268583],[94.010866,41.114855],[93.908205,40.983415],[93.809965,40.879482],[93.821099,40.793692],[93.760845,40.664848],[93.506403,40.648468],[92.928423,40.572693],[92.920564,40.39184],[92.906811,40.310648],[92.796454,40.153801],[92.769929,40.001047],[92.745533,39.868298],[92.687735,39.657395],[92.639925,39.514306],[92.525475,39.368623],[92.4608,39.322529],[92.378606,39.258485],[92.340129,39.238059],[92.346351,39.206808],[92.341439,39.182057],[92.345696,39.141556],[92.366162,39.096014],[92.351099,39.08357],[92.353719,39.069518],[92.37484,39.057672],[92.389249,39.05958],[92.410698,39.038594],[92.423142,39.046627],[92.458999,39.042711],[92.460473,39.066206],[92.494038,39.102135],[92.536282,39.10073],[92.545778,39.111265],[92.610453,39.108957],[92.645328,39.119993],[92.663503,39.110864],[92.715242,39.126813],[92.72785,39.121597],[92.765672,39.137144],[92.831166,39.143862],[92.86686,39.138648],[92.889127,39.159905],[92.939066,39.169629],[92.959042,39.165218],[92.968702,39.149277],[92.993589,39.151784],[93.043201,39.14647],[93.115407,39.179552],[93.142423,39.160707],[93.126705,39.122801],[93.131944,39.107954],[93.165673,39.090696],[93.175497,39.069418],[93.198093,39.046426],[93.185649,38.947348],[93.179263,38.923914],[93.206934,38.915867],[93.23788,38.916168],[93.273901,38.896146],[93.302555,38.894033],[93.33219,38.904095],[93.453189,38.915464],[93.72908,38.924518],[93.748073,38.912345],[93.834361,38.867663],[93.884627,38.867663],[93.884136,38.826175],[93.772961,38.820937],[93.756424,38.807639],[93.77509,38.770047],[93.800304,38.750791],[93.871856,38.722552],[93.951431,38.715187],[93.972225,38.724872],[94.281354,38.760067],[94.334894,38.755631],[94.370097,38.762789],[94.428059,38.634434],[94.511072,38.445116],[94.527118,38.426076],[94.529901,38.360815],[94.552005,38.35027],[94.583115,38.369229],[94.611277,38.371358],[94.636983,38.380886],[94.678735,38.387271],[94.729329,38.389602],[94.75045,38.385041],[94.812178,38.385548],[94.861462,38.393757],[94.883893,38.414832],[94.902231,38.420505],[94.973455,38.43033],[94.981969,38.424962],[95.0175,38.426177],[95.031581,38.412704],[95.045334,38.418782],[95.072678,38.402471],[95.122125,38.416959],[95.140791,38.392338],[95.169117,38.387575],[95.192367,38.372067],[95.188601,38.364464],[95.204647,38.331611],[95.229698,38.330495],[95.259989,38.302293],[95.315495,38.318526],[95.335634,38.308077],[95.361667,38.313352],[95.388683,38.301177],[95.408168,38.300365],[95.424541,38.311526],[95.440914,38.310917],[95.454996,38.291639],[95.487906,38.31457],[95.501005,38.313149],[95.516232,38.294785],[95.536044,38.313251],[95.54947,38.315178],[95.590076,38.344288],[95.608414,38.339217],[95.627734,38.349155],[95.640178,38.365985],[95.662446,38.365275],[95.674398,38.390615],[95.704034,38.400141],[95.723846,38.378555],[95.761832,38.365884],[95.776077,38.355948],[95.808333,38.349459],[95.823232,38.355137],[95.837641,38.342462],[95.856143,38.284433],[95.896421,38.290117],[95.933752,38.257838],[95.938501,38.237327],[95.970429,38.226663],[95.984019,38.210918],[96.006941,38.20726],[96.044109,38.180535],[96.064739,38.172811],[96.073745,38.188157],[96.101743,38.188056],[96.115497,38.180637],[96.15512,38.174437],[96.209316,38.150242],[96.222087,38.149123],[96.227654,38.16966],[96.252542,38.167423],[96.26433,38.14587],[96.313123,38.161934],[96.301825,38.183178],[96.335718,38.246162],[96.378289,38.277329],[96.399738,38.281795],[96.463594,38.277735],[96.52483,38.262001],[96.66515,38.230218],[96.663349,38.259666],[96.65418,38.297727],[96.638625,38.307671],[96.625363,38.339217],[96.627,38.356455],[96.663513,38.388487],[96.679722,38.411691],[96.698061,38.422125],[96.708048,38.45919],[96.666296,38.483688],[96.680214,38.498766],[96.700844,38.497046],[96.712797,38.506659],[96.780582,38.504331],[96.794991,38.510301],[96.800558,38.527802],[96.76732,38.552478],[96.783038,38.566936],[96.805306,38.570575],[96.794336,38.607968],[96.846731,38.599379],[96.876858,38.580683],[96.899125,38.580683],[96.92565,38.564408],[96.960689,38.557837],[97.055982,38.594529],[97.047304,38.653924],[97.057456,38.672803],[97.043866,38.685521],[97.019961,38.686228],[97.009154,38.702677],[97.021598,38.730924],[97.023072,38.75553],[97.00064,38.761075],[96.987705,38.793028],[96.9936,38.83534],[96.983776,38.870985],[96.993108,38.884774],[96.966256,38.886787],[96.940877,38.907919],[96.949228,38.939202],[96.939076,38.955492],[96.948737,38.992282],[96.965601,39.016999],[96.957742,39.041707],[96.969203,39.079054],[96.969858,39.09782],[97.011938,39.141857],[96.997857,39.151884],[96.983612,39.17855],[96.962981,39.198392],[97.017505,39.208311],[97.047632,39.20771],[97.060403,39.19759],[97.141123,39.199995],[97.163555,39.194885],[97.220862,39.193081],[97.3006,39.16592],[97.342025,39.168326],[97.365275,39.143562],[97.401296,39.14667],[97.43306,39.126011],[97.426347,39.173738],[97.395074,39.240363],[97.402115,39.293016],[97.397039,39.318027],[97.429295,39.347429],[97.453855,39.352229],[97.477268,39.373221],[97.480543,39.406396],[97.480216,39.472999],[97.520494,39.53874],[97.557825,39.554094],[97.569942,39.564162],[97.585333,39.603124],[97.619062,39.630613],[97.656229,39.632007],[97.676532,39.679092],[97.700273,39.697101],[97.785579,39.680684],[97.828968,39.68536],[97.855657,39.71043],[97.857458,39.711823],[97.855493,39.713016],[97.85975,39.716895],[97.862533,39.715005],[97.974363,39.780616],[97.99221,39.808631],[98.031179,39.827996],[97.98386,39.882785],[97.990901,39.891913],[98.036255,39.914725],[98.004818,39.922956],[98.024793,39.946551],[98.066382,39.954084],[98.068674,39.983217],[98.062943,39.99976],[98.162002,39.971625],[98.296591,39.962806],[98.329501,39.955868],[98.371745,39.957454],[98.392539,39.965779],[98.420701,39.955373],[98.444115,39.955769],[98.474897,39.969247],[98.497001,39.950219],[98.497328,39.916114],[98.520087,39.909469],[98.518777,39.892905],[98.484557,39.864428],[98.491106,39.840705],[98.456395,39.823429],[98.355535,39.78002],[98.361102,39.756169],[98.406947,39.731016],[98.413824,39.710331],[98.391229,39.690733],[98.381732,39.663765],[98.370762,39.654309],[98.357009,39.630315],[98.330156,39.569544],[98.362412,39.542629],[98.396632,39.535549],[98.402035,39.514406],[98.410058,39.550904],[98.434127,39.577517],[98.549723,39.509718],[98.530566,39.486771],[98.515503,39.480384],[98.526473,39.467509],[98.553325,39.470204],[98.579686,39.481981],[98.57019,39.460622],[98.612269,39.444548],[98.660407,39.43646],[98.710509,39.414788],[98.72852,39.399203],[98.752589,39.389811],[98.800235,39.360426],[98.838713,39.34423],[98.866547,39.324229],[98.880956,39.33003],[98.902078,39.316527],[98.906498,39.33253],[98.975758,39.33073],[98.985418,39.312926],[99.023568,39.30032],[99.046491,39.285511],[99.060244,39.257885],[99.080711,39.267795],[99.120498,39.261088],[99.141292,39.24607],[99.143585,39.208211],[99.179115,39.181556],[99.176331,39.171634],[99.207113,39.205706],[99.213663,39.226642],[99.198927,39.275903],[99.207277,39.283809],[99.280793,39.289113],[99.293073,39.30012],[99.30519,39.33313],[99.308137,39.357527],[99.256233,39.427472],[99.23593,39.458426],[99.183372,39.475394],[99.135234,39.503633],[99.10609,39.514107],[99.097575,39.530763],[99.072852,39.554891],[99.056478,39.587681],[99.064665,39.609997],[99.053695,39.623144],[99.025205,39.629617],[98.977886,39.619559],[98.946613,39.594955],[98.938099,39.577916],[98.872114,39.594058],[98.816118,39.592065],[98.804492,39.627028],[98.824632,39.676405],[98.881447,39.665457],[98.94956,39.66496],[98.94956,39.701478],[98.960039,39.788565],[98.987055,39.832762],[99.026843,39.854007],[99.06925,39.850136],[99.083331,39.837329],[99.113785,39.835046],[99.140965,39.80148],[99.193196,39.809128],[99.206295,39.829982],[99.229872,39.851624],[99.247719,39.838024],[99.320581,39.847753],[99.35873,39.86681],[99.455988,39.877427]]],[[[97.862533,39.715005],[97.85975,39.716895],[97.855493,39.713016],[97.857458,39.711823],[97.862533,39.715005]]]]}},{"type":"Feature","properties":{"adcode":621000,"name":"庆阳市","center":[107.638372,35.734218],"centroid":[107.593489,36.166303],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":9,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.754738,35.691225],[106.823833,35.661607],[106.876719,35.632188],[106.90308,35.611168],[106.926003,35.579101],[106.989368,35.539131],[106.990187,35.532187],[107.052242,35.491036],[107.056499,35.465451],[107.064522,35.478929],[107.096613,35.466609],[107.126413,35.493141],[107.171112,35.474401],[107.189287,35.517981],[107.198783,35.509562],[107.233986,35.513561],[107.256745,35.499878],[107.255108,35.522085],[107.290638,35.518192],[107.332553,35.488825],[107.352365,35.490931],[107.383802,35.48114],[107.405251,35.50051],[107.423589,35.502089],[107.451752,35.485351],[107.482861,35.485983],[107.479586,35.461659],[107.500708,35.459974],[107.504474,35.480087],[107.53018,35.497984],[107.542951,35.495247],[107.570622,35.46345],[107.592726,35.467135],[107.585031,35.482508],[107.598129,35.487141],[107.594527,35.462397],[107.617614,35.462186],[107.636279,35.444281],[107.634969,35.431851],[107.665096,35.427637],[107.678522,35.43459],[107.700626,35.424581],[107.690639,35.407195],[107.707667,35.371251],[107.721912,35.353432],[107.736812,35.353643],[107.744343,35.338034],[107.737139,35.326748],[107.745817,35.311662],[107.808036,35.287286],[107.831122,35.27272],[107.845039,35.275676],[107.868617,35.256357],[107.90251,35.261741],[107.936075,35.253928],[107.936894,35.266809],[107.960635,35.26153],[107.949829,35.24527],[107.970132,35.241574],[108.048724,35.253823],[108.094897,35.280109],[108.123878,35.281798],[108.174635,35.30512],[108.193792,35.306597],[108.233252,35.286441],[108.22703,35.276942],[108.23931,35.256251],[108.268618,35.268814],[108.29809,35.268392],[108.345409,35.300688],[108.352777,35.285808],[108.400096,35.282747],[108.403043,35.27747],[108.449052,35.27367],[108.488021,35.274831],[108.525025,35.288974],[108.543527,35.303959],[108.56825,35.290874],[108.600342,35.308813],[108.615406,35.331706],[108.610821,35.35649],[108.631124,35.418575],[108.619499,35.443017],[108.616552,35.477244],[108.605909,35.502826],[108.625721,35.537132],[108.618517,35.55691],[108.567596,35.585515],[108.56383,35.597922],[108.539761,35.605596],[108.523224,35.661187],[108.530428,35.680514],[108.517002,35.716004],[108.533866,35.746232],[108.520113,35.766797],[108.524861,35.774875],[108.527808,35.824162],[108.524534,35.839676],[108.499482,35.872267],[108.500956,35.885048],[108.518639,35.905472],[108.563011,35.921285],[108.569233,35.939606],[108.593793,35.950806],[108.633744,35.944735],[108.656503,35.953004],[108.661742,35.993917],[108.688595,36.021111],[108.682536,36.055091],[108.690887,36.088742],[108.707424,36.10974],[108.697764,36.117052],[108.712336,36.138774],[108.702839,36.160803],[108.665017,36.214753],[108.646024,36.254175],[108.655029,36.273982],[108.642094,36.311186],[108.641603,36.359098],[108.651263,36.384708],[108.619008,36.433927],[108.593629,36.431534],[108.562684,36.438607],[108.533048,36.454624],[108.510616,36.474485],[108.51471,36.445576],[108.496863,36.422691],[108.485565,36.429453],[108.459368,36.42394],[108.418762,36.448696],[108.402552,36.4462],[108.408119,36.459616],[108.391582,36.505462],[108.365385,36.519698],[108.359654,36.547229],[108.340661,36.558862],[108.311189,36.561043],[108.287447,36.553357],[108.270255,36.567482],[108.262396,36.549307],[108.245532,36.571012],[108.216551,36.571324],[108.204762,36.596656],[108.222936,36.630904],[108.197885,36.62997],[108.182331,36.590116],[108.163665,36.563743],[108.141397,36.562601],[108.139105,36.576723],[108.115691,36.586587],[108.092932,36.587313],[108.094897,36.604545],[108.081143,36.615235],[108.06215,36.592608],[108.032023,36.606413],[108.002715,36.636403],[108.022363,36.647193],[108.023345,36.6697],[108.004843,36.683181],[107.986178,36.6753],[107.985687,36.652172],[107.975044,36.666278],[107.937385,36.658188],[107.940987,36.694897],[107.932473,36.711172],[107.914299,36.721018],[107.907422,36.750238],[107.881879,36.74713],[107.866652,36.766708],[107.826701,36.785453],[107.820316,36.776755],[107.768248,36.792909],[107.745326,36.810716],[107.709632,36.80554],[107.673283,36.832554],[107.640373,36.818789],[107.603532,36.825827],[107.58896,36.836487],[107.540168,36.828622],[107.528543,36.853766],[107.533618,36.867215],[107.477949,36.908476],[107.447167,36.899378],[107.365464,36.905374],[107.332881,36.925636],[107.311759,36.913025],[107.295386,36.929046],[107.304391,36.951988],[107.287363,36.992377],[107.290965,37.004046],[107.279995,37.041931],[107.286217,37.055552],[107.268697,37.099496],[107.249704,37.106302],[107.23546,37.096196],[107.2276,37.106818],[107.180445,37.143518],[107.134108,37.134757],[107.095795,37.115582],[107.078275,37.12919],[107.061738,37.124139],[107.030629,37.140838],[107.031448,37.115479],[106.984783,37.107539],[106.960878,37.113932],[106.952528,37.128778],[106.9057,37.15135],[106.891292,37.14125],[106.913396,37.132386],[106.911922,37.11022],[106.891292,37.098465],[106.870989,37.115891],[106.858872,37.113726],[106.780771,37.158667],[106.767182,37.132283],[106.77324,37.123005],[106.756539,37.102177],[106.726903,37.108983],[106.72854,37.121459],[106.699723,37.11785],[106.687771,37.129912],[106.66976,37.111148],[106.660755,37.126098],[106.640124,37.118984],[106.616874,37.135169],[106.605249,37.127644],[106.620804,37.095784],[106.645528,37.065045],[106.651913,37.033881],[106.666813,37.016745],[106.641598,37.011996],[106.646674,37.000432],[106.643235,36.96294],[106.622932,36.959324],[106.595425,36.969035],[106.595753,36.940415],[106.57987,36.934834],[106.580525,36.947442],[106.540411,36.984425],[106.554983,36.953125],[106.549089,36.942585],[106.601974,36.91809],[106.609997,36.90403],[106.600665,36.891416],[106.609506,36.878178],[106.627026,36.89245],[106.638651,36.870525],[106.626698,36.861939],[106.641925,36.853559],[106.640616,36.834003],[106.658463,36.819617],[106.641762,36.802744],[106.639469,36.771473],[106.627517,36.75231],[106.632265,36.723298],[106.611471,36.730241],[106.594934,36.749617],[106.57545,36.746923],[106.57283,36.733972],[106.553837,36.737805],[106.514377,36.715629],[106.53075,36.68992],[106.490963,36.685773],[106.495056,36.646363],[106.491291,36.628725],[106.468532,36.620424],[106.444627,36.624886],[106.444299,36.600808],[106.471315,36.580461],[106.449702,36.577658],[106.459199,36.568728],[106.444954,36.5572],[106.397471,36.574335],[106.392232,36.556473],[106.364233,36.577658],[106.371765,36.548891],[106.401565,36.546294],[106.453796,36.497875],[106.475408,36.495692],[106.483759,36.480931],[106.494729,36.494445],[106.518143,36.480931],[106.51978,36.456288],[106.503407,36.441728],[106.504717,36.41468],[106.492273,36.422587],[106.488507,36.400424],[106.503898,36.401569],[106.526985,36.390224],[106.525183,36.372737],[106.510284,36.378879],[106.506354,36.328271],[106.497349,36.313791],[106.509792,36.30358],[106.510447,36.286073],[106.480157,36.316083],[106.470824,36.306289],[106.504717,36.26606],[106.514541,36.272002],[106.541229,36.253862],[106.556293,36.260639],[106.559895,36.292117],[106.584291,36.287949],[106.594279,36.270334],[106.605904,36.295661],[106.61098,36.273148],[106.655352,36.258658],[106.685315,36.273357],[106.698741,36.243017],[106.716588,36.231963],[106.735745,36.237282],[106.763579,36.214961],[106.795344,36.223098],[106.808442,36.210997],[106.827763,36.21517],[106.833821,36.229251],[106.841353,36.206511],[106.851504,36.207555],[106.875082,36.176877],[106.898168,36.169362],[106.912413,36.153913],[106.90701,36.136372],[106.918471,36.128853],[106.93026,36.138565],[106.925676,36.116112],[106.940084,36.126451],[106.944014,36.099607],[106.957604,36.091563],[106.959405,36.075367],[106.940575,36.064916],[106.942376,36.033136],[106.930588,36.028954],[106.928623,36.011176],[106.951218,36.004482],[106.944178,35.984293],[106.917653,35.961168],[106.891783,35.966191],[106.902589,35.943584],[106.918963,35.940443],[106.938447,35.953109],[106.944832,35.940234],[106.925184,35.926206],[106.912904,35.932173],[106.905373,35.912698],[106.886052,35.917515],[106.850195,35.887562],[106.873117,35.878239],[106.877865,35.852777],[106.89997,35.827307],[106.911267,35.831186],[106.926331,35.811686],[106.922237,35.803402],[106.897677,35.80854],[106.914378,35.791342],[106.908975,35.767741],[106.897677,35.759768],[106.885233,35.771832],[106.868533,35.772042],[106.867059,35.738676],[106.827763,35.745287],[106.818103,35.739515],[106.816465,35.717579],[106.806314,35.7096],[106.782409,35.723667],[106.753101,35.726396],[106.744586,35.700466],[106.754738,35.691225]]]]}},{"type":"Feature","properties":{"adcode":621100,"name":"定西市","center":[104.626294,35.579578],"centroid":[104.456158,35.122537],"childrenNum":7,"level":"city","parent":{"adcode":620000},"subFeatureIndex":10,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.638403,35.139396],[105.648227,35.145845],[105.63873,35.173117],[105.617117,35.1821],[105.614661,35.216438],[105.607457,35.223304],[105.573564,35.207459],[105.545893,35.257941],[105.549495,35.283697],[105.559483,35.293301],[105.532631,35.311873],[105.54049,35.342148],[105.506925,35.358915],[105.489569,35.387591],[105.47778,35.388435],[105.477289,35.352166],[105.456331,35.345101],[105.440285,35.373782],[105.427841,35.380107],[105.426859,35.398342],[105.404427,35.407406],[105.393457,35.425003],[105.383797,35.458921],[105.345483,35.485351],[105.319777,35.482824],[105.303404,35.500299],[105.271476,35.475138],[105.232998,35.482719],[105.1752,35.441858],[105.135413,35.449126],[105.117894,35.440278],[105.123461,35.420156],[105.083673,35.418575],[105.070738,35.454814],[105.044541,35.448916],[105.000333,35.456183],[104.996731,35.471347],[104.975446,35.476402],[104.966768,35.489983],[104.946465,35.491562],[104.933202,35.51293],[104.937132,35.544602],[104.95285,35.548179],[104.954979,35.57216],[104.967095,35.608435],[104.986743,35.635025],[104.985597,35.700361],[104.980358,35.716634],[104.937296,35.738256],[104.891941,35.767112],[104.884246,35.79344],[104.864762,35.804031],[104.865744,35.832444],[104.853628,35.854873],[104.807291,35.865875],[104.811385,35.877924],[104.768978,35.887457],[104.769305,35.91741],[104.738032,35.931754],[104.72788,35.951958],[104.709379,35.94955],[104.676959,35.986804],[104.646505,35.996533],[104.648797,36.010758],[104.676141,36.022994],[104.680725,36.033764],[104.663369,36.041501],[104.633242,36.035541],[104.61867,36.044846],[104.584941,36.029477],[104.561855,36.028013],[104.532383,36.014627],[104.500618,36.02017],[104.484572,36.020693],[104.483754,35.993708],[104.441019,35.974771],[104.42612,35.916154],[104.44282,35.89657],[104.448879,35.875619],[104.439055,35.864618],[104.421371,35.865456],[104.398612,35.808855],[104.401068,35.793964],[104.384695,35.767426],[104.369959,35.766692],[104.357351,35.74109],[104.331154,35.732379],[104.316746,35.705296],[104.317564,35.66791],[104.331809,35.658561],[104.305939,35.643327],[104.310196,35.601812],[104.290057,35.589616],[104.282198,35.571109],[104.225382,35.578575],[104.198039,35.598973],[104.202787,35.614111],[104.173151,35.649421],[104.148591,35.635025],[104.138931,35.618525],[104.110769,35.638178],[104.101436,35.636076],[104.092431,35.657615],[104.067543,35.664759],[104.053135,35.68608],[104.040036,35.68902],[104.019569,35.713589],[103.997956,35.716109],[103.980928,35.735737],[103.963736,35.735318],[103.952111,35.746756],[103.919855,35.757354],[103.901354,35.774979],[103.865005,35.794803],[103.848959,35.774979],[103.849614,35.803927],[103.837498,35.815985],[103.837334,35.841773],[103.799184,35.841039],[103.795909,35.852463],[103.779863,35.848166],[103.776425,35.896256],[103.76742,35.89039],[103.714697,35.909975],[103.702581,35.927253],[103.660993,35.914269],[103.643801,35.931336],[103.623989,35.934895],[103.595991,35.909452],[103.558659,35.911127],[103.542122,35.943898],[103.509212,35.940967],[103.498897,35.927253],[103.476629,35.917306],[103.471062,35.8818],[103.515925,35.851729],[103.547853,35.803193],[103.56439,35.807177],[103.59157,35.781063],[103.595663,35.75704],[103.621533,35.753577],[103.640526,35.719993],[103.694558,35.672952],[103.719937,35.659191],[103.785267,35.598973],[103.793126,35.564378],[103.8113,35.534186],[103.830948,35.520928],[103.832913,35.506825],[103.854362,35.498089],[103.854198,35.477349],[103.828001,35.458605],[103.822925,35.445018],[103.800494,35.435117],[103.811791,35.422685],[103.814084,35.39634],[103.780682,35.387486],[103.77708,35.356912],[103.74024,35.312717],[103.731726,35.277787],[103.699634,35.238512],[103.689974,35.219818],[103.691611,35.195626],[103.721083,35.190237],[103.716498,35.133263],[103.748426,35.115074],[103.735328,35.100477],[103.748918,35.088417],[103.738275,35.064927],[103.743514,35.044817],[103.758087,35.028302],[103.786249,35.01549],[103.784612,35.002676],[103.816703,34.993038],[103.834878,34.977996],[103.860584,34.987106],[103.911178,34.969096],[103.942942,34.936138],[103.952766,34.94981],[103.981092,34.946737],[103.984366,34.938046],[104.017768,34.936774],[104.024809,34.917057],[104.011055,34.910165],[104.027265,34.893411],[104.021207,34.872411],[103.964555,34.840581],[103.997629,34.807678],[103.999103,34.787717],[104.02399,34.774868],[104.004669,34.735244],[103.989115,34.738219],[103.963572,34.728656],[103.909049,34.744701],[103.881214,34.747357],[103.853052,34.738644],[103.833404,34.71686],[103.862876,34.682526],[103.850432,34.641369],[103.841591,34.634667],[103.834714,34.604768],[103.839462,34.575497],[103.828328,34.545364],[103.779045,34.536524],[103.768566,34.523316],[103.794763,34.492524],[103.810318,34.483572],[103.804751,34.471102],[103.8113,34.424508],[103.802786,34.408722],[103.753993,34.371592],[103.733363,34.331883],[103.698488,34.315011],[103.69243,34.300166],[103.70209,34.280617],[103.745152,34.287561],[103.77315,34.273245],[103.792798,34.270574],[103.821779,34.281258],[103.83717,34.273673],[103.879577,34.267369],[103.924276,34.213605],[103.936884,34.193609],[103.990916,34.161733],[104.028738,34.127276],[104.060339,34.151782],[104.067052,34.177993],[104.105693,34.194143],[104.153503,34.193074],[104.165783,34.210397],[104.162509,34.247492],[104.136966,34.269399],[104.116008,34.323127],[104.148755,34.339036],[104.14941,34.350779],[104.202787,34.375113],[104.269754,34.348644],[104.28711,34.376287],[104.328862,34.376607],[104.353913,34.369564],[104.366684,34.336687],[104.406308,34.338929],[104.417769,34.331028],[104.437417,34.298137],[104.445113,34.271108],[104.435125,34.258713],[104.452153,34.229214],[104.472456,34.218202],[104.511097,34.208045],[104.527634,34.19147],[104.536967,34.219592],[104.552358,34.204196],[104.571024,34.201629],[104.623746,34.234986],[104.665498,34.226114],[104.689894,34.248026],[104.720021,34.252942],[104.741143,34.233383],[104.779293,34.239583],[104.789117,34.252515],[104.814332,34.255187],[104.821536,34.27613],[104.844131,34.281472],[104.863288,34.301768],[104.852973,34.320457],[104.855429,34.343199],[104.844459,34.367856],[104.856902,34.379382],[104.895871,34.377995],[104.938278,34.386318],[104.96644,34.382583],[104.991983,34.396134],[104.983632,34.405735],[104.989035,34.425574],[104.966768,34.437198],[104.918139,34.438691],[104.88572,34.422908],[104.837909,34.445622],[104.791573,34.431866],[104.793046,34.482293],[104.783222,34.487089],[104.748347,34.472914],[104.753914,34.52747],[104.738523,34.555587],[104.716255,34.541423],[104.695952,34.544725],[104.671556,34.575816],[104.690877,34.618176],[104.685965,34.628497],[104.699555,34.6737],[104.646177,34.655941],[104.595584,34.654027],[104.601642,34.679017],[104.589362,34.699535],[104.601642,34.710058],[104.577246,34.721218],[104.591818,34.726106],[104.60639,34.745763],[104.584777,34.767221],[104.584286,34.787292],[104.597385,34.804387],[104.598858,34.838883],[104.620144,34.86456],[104.657803,34.872304],[104.697262,34.859574],[104.728863,34.86212],[104.740979,34.85289],[104.757844,34.86212],[104.794356,34.869334],[104.850189,34.865833],[104.878679,34.856073],[104.895871,34.862439],[104.909788,34.903909],[104.898818,34.924584],[104.920922,34.950022],[104.933694,34.93635],[104.971352,34.953202],[104.970042,34.940484],[105.006391,34.939636],[105.007865,34.928718],[105.035372,34.925432],[105.070738,34.943452],[105.073686,34.955639],[105.058131,34.981915],[105.092515,34.969096],[105.130501,34.963904],[105.16816,34.969308],[105.193539,34.954897],[105.192884,34.937516],[105.217771,34.93211],[105.254611,34.964646],[105.259851,34.979797],[105.249699,35.00956],[105.261816,35.028196],[105.27606,35.033596],[105.290141,35.006806],[105.299147,35.01962],[105.297346,35.046722],[105.321415,35.03836],[105.336478,35.049369],[105.354489,35.04831],[105.379867,35.072017],[105.391656,35.064927],[105.396568,35.089475],[105.41114,35.079424],[105.42031,35.114334],[105.456495,35.130831],[105.484984,35.093178],[105.505615,35.085561],[105.52428,35.063339],[105.541636,35.07244],[105.559974,35.127659],[105.535578,35.138762],[105.539508,35.152717],[105.558501,35.161385],[105.558173,35.1821],[105.572418,35.181361],[105.609094,35.152929],[105.638403,35.139396]]]]}},{"type":"Feature","properties":{"adcode":621200,"name":"陇南市","center":[104.929379,33.388598],"centroid":[105.225469,33.598913],"childrenNum":9,"level":"city","parent":{"adcode":620000},"subFeatureIndex":11,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.494238,34.241827],[106.494238,34.201415],[106.475081,34.180025],[106.472298,34.154885],[106.453959,34.135517],[106.402874,34.109829],[106.363087,34.100622],[106.336562,34.109829],[106.327393,34.140868],[106.344585,34.179277],[106.330177,34.203447],[106.323627,34.230497],[106.282039,34.225472],[106.270742,34.206869],[106.276963,34.191256],[106.266648,34.161412],[106.244708,34.152638],[106.246836,34.132199],[106.229972,34.118071],[106.189693,34.110471],[106.14876,34.124279],[106.139755,34.113575],[106.117323,34.111434],[106.100622,34.125457],[106.082121,34.124814],[106.071805,34.146646],[106.041351,34.158737],[106.017773,34.159058],[105.9716,34.146111],[105.945076,34.144185],[105.90316,34.119034],[105.86501,34.125136],[105.86108,34.15328],[105.815235,34.147502],[105.781997,34.11957],[105.772664,34.136694],[105.771027,34.164407],[105.740409,34.176602],[105.72338,34.174035],[105.718141,34.158844],[105.704715,34.162054],[105.667711,34.144613],[105.651665,34.119034],[105.640859,34.081241],[105.61548,34.081348],[105.623994,34.096232],[105.596978,34.105868],[105.591739,34.084453],[105.563576,34.086381],[105.552606,34.113682],[105.563085,34.137229],[105.547858,34.152745],[105.555226,34.197245],[105.540163,34.248668],[105.554899,34.258072],[105.530338,34.273245],[105.527391,34.28457],[105.547039,34.291621],[105.558009,34.306788],[105.546384,34.319496],[105.522807,34.304972],[105.501521,34.328786],[105.491861,34.352166],[105.460261,34.391653],[105.408193,34.420988],[105.384943,34.408615],[105.350887,34.43144],[105.31159,34.442423],[105.312082,34.43048],[105.291615,34.428667],[105.290633,34.439331],[105.260342,34.452979],[105.254284,34.49977],[105.24053,34.512343],[105.243969,34.528429],[105.227759,34.533009],[105.20631,34.518948],[105.160792,34.527364],[105.128373,34.508401],[105.108725,34.460975],[105.084001,34.460548],[105.06861,34.44189],[105.038974,34.423441],[105.013104,34.420455],[104.989035,34.425574],[104.983632,34.405735],[104.991983,34.396134],[104.96644,34.382583],[104.938278,34.386318],[104.895871,34.377995],[104.856902,34.379382],[104.844459,34.367856],[104.855429,34.343199],[104.852973,34.320457],[104.863288,34.301768],[104.844131,34.281472],[104.821536,34.27613],[104.814332,34.255187],[104.789117,34.252515],[104.779293,34.239583],[104.741143,34.233383],[104.720021,34.252942],[104.689894,34.248026],[104.665498,34.226114],[104.623746,34.234986],[104.571024,34.201629],[104.552358,34.204196],[104.536967,34.219592],[104.527634,34.19147],[104.511097,34.208045],[104.472456,34.218202],[104.452153,34.229214],[104.435125,34.258713],[104.445113,34.271108],[104.437417,34.298137],[104.417769,34.331028],[104.406308,34.338929],[104.366684,34.336687],[104.353913,34.369564],[104.328862,34.376607],[104.28711,34.376287],[104.269754,34.348644],[104.202787,34.375113],[104.14941,34.350779],[104.148755,34.339036],[104.116008,34.323127],[104.136966,34.269399],[104.162509,34.247492],[104.165783,34.210397],[104.153503,34.193074],[104.105693,34.194143],[104.067052,34.177993],[104.060339,34.151782],[104.028738,34.127276],[104.02661,34.084989],[104.03627,34.056714],[104.064432,34.043966],[104.077858,34.022643],[104.194764,33.949099],[104.248305,33.922817],[104.330827,33.867653],[104.341961,33.853803],[104.385186,33.847897],[104.410892,33.838984],[104.446259,33.80719],[104.450188,33.785593],[104.469181,33.771084],[104.531073,33.763238],[104.528944,33.7412],[104.490139,33.705497],[104.486373,33.69076],[104.509296,33.675806],[104.514536,33.658803],[104.501437,33.660202],[104.50553,33.642013],[104.548592,33.64309],[104.521412,33.611869],[104.542698,33.590761],[104.555797,33.598623],[104.570041,33.576543],[104.581011,33.575789],[104.584122,33.534845],[104.57217,33.536461],[104.583631,33.516413],[104.60508,33.50283],[104.657148,33.482774],[104.699391,33.457428],[104.698081,33.439843],[104.714454,33.415672],[104.730828,33.408333],[104.713636,33.401101],[104.715764,33.346142],[104.729682,33.328859],[104.759481,33.308007],[104.727226,33.299686],[104.675322,33.302388],[104.661405,33.29612],[104.646341,33.269314],[104.639628,33.238824],[104.627676,33.226927],[104.567585,33.221411],[104.539096,33.226927],[104.532219,33.251259],[104.540078,33.274071],[104.501273,33.340742],[104.487683,33.329507],[104.467217,33.333721],[104.437253,33.323242],[104.393537,33.310924],[104.41253,33.281745],[104.385841,33.298606],[104.349165,33.300659],[104.33623,33.314274],[104.302828,33.302604],[104.329026,33.252989],[104.328371,33.224115],[104.350966,33.159087],[104.377818,33.109174],[104.36079,33.099318],[104.367175,33.086753],[104.33754,33.038208],[104.360135,33.028452],[104.391408,33.03539],[104.421044,33.024225],[104.42612,33.010781],[104.383549,32.994299],[104.378473,32.95319],[104.349329,32.940495],[104.305939,32.951562],[104.286127,32.939085],[104.276958,32.888504],[104.288911,32.870371],[104.294314,32.835722],[104.330172,32.82464],[104.359807,32.823988],[104.422026,32.768776],[104.447569,32.761709],[104.45903,32.748552],[104.510279,32.754424],[104.526652,32.728432],[104.555142,32.73387],[104.582813,32.722232],[104.591327,32.697101],[104.619653,32.68339],[104.64192,32.662711],[104.667954,32.662494],[104.696771,32.673487],[104.738032,32.636148],[104.76603,32.645512],[104.79583,32.643552],[104.820717,32.662929],[104.845769,32.653894],[104.873603,32.622973],[104.88179,32.601191],[104.927799,32.608924],[104.972007,32.632882],[105.014905,32.640177],[105.030296,32.650411],[105.079416,32.637237],[105.096608,32.606092],[105.110853,32.59411],[105.184697,32.617419],[105.214988,32.636802],[105.219736,32.666412],[105.241185,32.668916],[105.263289,32.65237],[105.297673,32.657051],[105.308807,32.671092],[105.340899,32.679581],[105.365623,32.710375],[105.394276,32.714291],[105.425385,32.733979],[105.446507,32.732239],[105.459442,32.752358],[105.45322,32.767689],[105.425713,32.774212],[105.413105,32.812362],[105.392966,32.833115],[105.395095,32.864723],[105.380686,32.877103],[105.407866,32.88579],[105.413105,32.918899],[105.425549,32.931163],[105.456331,32.932682],[105.499065,32.911844],[105.527882,32.918899],[105.534104,32.909456],[105.565541,32.906851],[105.590592,32.876777],[105.638239,32.879275],[105.656577,32.895344],[105.699475,32.903486],[105.735497,32.905331],[105.785599,32.926822],[105.827024,32.950803],[105.861735,32.938976],[105.917405,32.993866],[105.928047,33.04146],[105.913311,33.053164],[105.915112,33.066276],[105.933287,33.077003],[105.918714,33.105384],[105.936889,33.113614],[105.920188,33.132131],[105.923463,33.147721],[105.896447,33.142741],[105.924609,33.167529],[105.916913,33.177811],[105.92772,33.198478],[105.945567,33.188091],[105.946877,33.153567],[105.968326,33.154108],[105.962595,33.207565],[105.906598,33.240121],[105.862554,33.234282],[105.835538,33.251151],[105.792803,33.26272],[105.791493,33.278611],[105.767425,33.282502],[105.747777,33.298822],[105.755145,33.328859],[105.728947,33.353163],[105.708972,33.380698],[105.732877,33.391062],[105.743192,33.385341],[105.802627,33.378755],[105.829643,33.382858],[105.837994,33.410816],[105.830953,33.456457],[105.841923,33.490107],[105.877945,33.517707],[105.884167,33.535707],[105.902669,33.556181],[105.919533,33.55478],[105.954081,33.587099],[105.962104,33.606485],[105.979787,33.612407],[105.998944,33.604115],[106.019083,33.609715],[106.029562,33.595931],[106.045772,33.609715],[106.063946,33.604115],[106.086705,33.617145],[106.119452,33.602392],[106.108482,33.569756],[106.141392,33.574927],[106.143684,33.564908],[106.187237,33.546483],[106.237504,33.564046],[106.277455,33.5969],[106.303325,33.604331],[106.335089,33.586991],[106.351462,33.587207],[106.384864,33.612084],[106.431364,33.619083],[106.446919,33.613268],[106.452813,33.591838],[106.456088,33.53797],[106.477537,33.519431],[106.494238,33.530426],[106.541066,33.513071],[106.563006,33.543035],[106.559731,33.570834],[106.580525,33.575897],[106.581672,33.609823],[106.575613,33.631679],[106.534844,33.695171],[106.482613,33.707326],[106.48818,33.758186],[106.479829,33.780757],[106.461819,33.789676],[106.468695,33.820081],[106.491291,33.834473],[106.493419,33.846179],[106.474262,33.876671],[106.428253,33.866472],[106.410897,33.90919],[106.444627,33.935905],[106.476063,33.973764],[106.478683,33.997885],[106.471643,34.024037],[106.505535,34.0565],[106.501933,34.104904],[106.561205,34.110899],[106.584782,34.149428],[106.574958,34.163765],[106.557766,34.229748],[106.53206,34.254011],[106.512903,34.239369],[106.494238,34.241827]]]]}},{"type":"Feature","properties":{"adcode":622900,"name":"临夏回族自治州","center":[103.212006,35.599446],"centroid":[103.289177,35.625236],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":12,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.742448,35.495247],[102.747687,35.487351],[102.820385,35.460922],[102.853132,35.420577],[102.871142,35.408565],[102.889317,35.411199],[102.907655,35.425846],[102.926975,35.428163],[102.949079,35.4073],[102.959395,35.356912],[102.951699,35.30417],[102.955137,35.259946],[102.97102,35.252978],[102.983463,35.260685],[102.989849,35.283064],[103.019485,35.288552],[103.060091,35.273459],[103.08023,35.275676],[103.099059,35.246115],[103.114778,35.236717],[103.165371,35.226895],[103.211217,35.2364],[103.262138,35.236928],[103.269833,35.232704],[103.297996,35.18284],[103.36398,35.142674],[103.408024,35.143414],[103.457145,35.128399],[103.488745,35.133475],[103.490874,35.152294],[103.5359,35.141088],[103.573068,35.115391],[103.624971,35.094025],[103.651824,35.067043],[103.676875,35.052332],[103.680477,35.036772],[103.708312,35.039736],[103.729597,35.010831],[103.70078,35.006383],[103.677857,34.992826],[103.691938,34.987212],[103.729761,35.004159],[103.733036,34.978419],[103.712733,34.960196],[103.686699,34.954473],[103.668524,34.932958],[103.685717,34.907939],[103.703563,34.915997],[103.757104,34.927128],[103.803932,34.929142],[103.833732,34.91483],[103.848468,34.953732],[103.834878,34.977996],[103.816703,34.993038],[103.784612,35.002676],[103.786249,35.01549],[103.758087,35.028302],[103.743514,35.044817],[103.738275,35.064927],[103.748918,35.088417],[103.735328,35.100477],[103.748426,35.115074],[103.716498,35.133263],[103.721083,35.190237],[103.691611,35.195626],[103.689974,35.219818],[103.699634,35.238512],[103.731726,35.277787],[103.74024,35.312717],[103.77708,35.356912],[103.780682,35.387486],[103.814084,35.39634],[103.811791,35.422685],[103.800494,35.435117],[103.822925,35.445018],[103.828001,35.458605],[103.854198,35.477349],[103.854362,35.498089],[103.832913,35.506825],[103.830948,35.520928],[103.8113,35.534186],[103.793126,35.564378],[103.785267,35.598973],[103.719937,35.659191],[103.694558,35.672952],[103.640526,35.719993],[103.621533,35.753577],[103.595663,35.75704],[103.59157,35.781063],[103.56439,35.807177],[103.547853,35.803193],[103.515925,35.851729],[103.471062,35.8818],[103.476629,35.917306],[103.498897,35.927253],[103.509212,35.940967],[103.542122,35.943898],[103.558659,35.911127],[103.595991,35.909452],[103.623989,35.934895],[103.616785,35.959284],[103.632831,35.982409],[103.622352,35.99444],[103.633322,36.017451],[103.621697,36.025922],[103.596318,36.069514],[103.575033,36.06293],[103.571267,36.091876],[103.538848,36.105039],[103.521819,36.101697],[103.496604,36.108382],[103.483342,36.098354],[103.475646,36.110785],[103.438315,36.069201],[103.41048,36.07777],[103.412282,36.123005],[103.396727,36.128958],[103.365617,36.119872],[103.343022,36.125198],[103.312895,36.152556],[103.298323,36.145038],[103.278184,36.151929],[103.259846,36.146605],[103.257881,36.15955],[103.230374,36.168318],[103.200902,36.170301],[103.19075,36.180321],[103.165863,36.176146],[103.155711,36.19013],[103.123128,36.195661],[103.10741,36.221637],[103.102661,36.211623],[103.070897,36.206929],[103.049121,36.199208],[103.01883,36.204842],[102.987393,36.193782],[102.966435,36.152242],[102.948588,36.150572],[102.94122,36.104935],[102.910111,36.088219],[102.883913,36.088951],[102.89603,36.065647],[102.909947,36.070455],[102.932379,36.048609],[102.969219,36.044114],[102.9535,36.015778],[102.971838,35.995277],[102.950062,35.963156],[102.942203,35.928195],[102.948424,35.920447],[102.951208,35.871219],[102.95612,35.861579],[102.942366,35.829928],[102.91404,35.845126],[102.886369,35.849319],[102.853295,35.846908],[102.848383,35.854768],[102.820057,35.850367],[102.784036,35.862313],[102.737208,35.820598],[102.715104,35.81546],[102.694801,35.796481],[102.68596,35.772147],[102.708064,35.704981],[102.727057,35.69133],[102.743921,35.657825],[102.764552,35.653308],[102.763242,35.611903],[102.78027,35.587829],[102.801719,35.574684],[102.80876,35.560486],[102.781744,35.549441],[102.746214,35.545233],[102.729513,35.523664],[102.773557,35.534186],[102.78289,35.528083],[102.742448,35.495247]]]]}},{"type":"Feature","properties":{"adcode":623000,"name":"甘南藏族自治州","center":[102.911008,34.986354],"centroid":[102.766903,34.325574],"childrenNum":8,"level":"city","parent":{"adcode":620000},"subFeatureIndex":13,"acroutes":[100000,620000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[104.028738,34.127276],[103.990916,34.161733],[103.936884,34.193609],[103.924276,34.213605],[103.879577,34.267369],[103.83717,34.273673],[103.821779,34.281258],[103.792798,34.270574],[103.77315,34.273245],[103.745152,34.287561],[103.70209,34.280617],[103.69243,34.300166],[103.698488,34.315011],[103.733363,34.331883],[103.753993,34.371592],[103.802786,34.408722],[103.8113,34.424508],[103.804751,34.471102],[103.810318,34.483572],[103.794763,34.492524],[103.768566,34.523316],[103.779045,34.536524],[103.828328,34.545364],[103.839462,34.575497],[103.834714,34.604768],[103.841591,34.634667],[103.850432,34.641369],[103.862876,34.682526],[103.833404,34.71686],[103.853052,34.738644],[103.881214,34.747357],[103.909049,34.744701],[103.963572,34.728656],[103.989115,34.738219],[104.004669,34.735244],[104.02399,34.774868],[103.999103,34.787717],[103.997629,34.807678],[103.964555,34.840581],[104.021207,34.872411],[104.027265,34.893411],[104.011055,34.910165],[104.024809,34.917057],[104.017768,34.936774],[103.984366,34.938046],[103.981092,34.946737],[103.952766,34.94981],[103.942942,34.936138],[103.911178,34.969096],[103.860584,34.987106],[103.834878,34.977996],[103.848468,34.953732],[103.833732,34.91483],[103.803932,34.929142],[103.757104,34.927128],[103.703563,34.915997],[103.685717,34.907939],[103.668524,34.932958],[103.686699,34.954473],[103.712733,34.960196],[103.733036,34.978419],[103.729761,35.004159],[103.691938,34.987212],[103.677857,34.992826],[103.70078,35.006383],[103.729597,35.010831],[103.708312,35.039736],[103.680477,35.036772],[103.676875,35.052332],[103.651824,35.067043],[103.624971,35.094025],[103.573068,35.115391],[103.5359,35.141088],[103.490874,35.152294],[103.488745,35.133475],[103.457145,35.128399],[103.408024,35.143414],[103.36398,35.142674],[103.297996,35.18284],[103.269833,35.232704],[103.262138,35.236928],[103.211217,35.2364],[103.165371,35.226895],[103.114778,35.236717],[103.099059,35.246115],[103.08023,35.275676],[103.060091,35.273459],[103.019485,35.288552],[102.989849,35.283064],[102.983463,35.260685],[102.97102,35.252978],[102.955137,35.259946],[102.951699,35.30417],[102.959395,35.356912],[102.949079,35.4073],[102.926975,35.428163],[102.907655,35.425846],[102.889317,35.411199],[102.871142,35.408565],[102.853132,35.420577],[102.820385,35.460922],[102.747687,35.487351],[102.742448,35.495247],[102.695292,35.528504],[102.63553,35.534397],[102.571182,35.548074],[102.531395,35.580468],[102.503233,35.584254],[102.514203,35.569426],[102.49783,35.571845],[102.498648,35.545233],[102.482603,35.51293],[102.463446,35.507773],[102.460826,35.478823],[102.451002,35.478718],[102.438067,35.45534],[102.447564,35.437329],[102.408595,35.41004],[102.314776,35.434379],[102.292672,35.422579],[102.282193,35.385062],[102.286613,35.366507],[102.306589,35.359864],[102.317723,35.342886],[102.311665,35.314405],[102.284485,35.313244],[102.280883,35.303115],[102.312156,35.282431],[102.335242,35.283486],[102.369954,35.263958],[102.365697,35.235555],[102.400081,35.19552],[102.403519,35.17819],[102.37372,35.16128],[102.343429,35.161702],[102.339499,35.141088],[102.313138,35.130937],[102.301841,35.105872],[102.295128,35.070641],[102.2799,35.056672],[102.252393,35.048734],[102.224067,35.059],[102.213916,35.03656],[102.17462,35.032537],[102.157428,35.010831],[102.133686,35.014643],[102.107489,34.989331],[102.095045,34.986788],[102.061807,34.94271],[102.04789,34.910802],[102.068357,34.887684],[102.028242,34.896274],[101.985999,34.89988],[101.959801,34.887154],[101.939662,34.888639],[101.916903,34.87379],[101.93344,34.845887],[101.923289,34.835912],[101.927546,34.803007],[101.920178,34.799822],[101.917394,34.706232],[101.930002,34.681888],[101.918213,34.667108],[101.91985,34.625198],[101.934586,34.587526],[101.956035,34.582949],[101.974374,34.548878],[101.999589,34.539186],[102.040849,34.534713],[102.09308,34.536417],[102.106998,34.521824],[102.121406,34.522996],[102.139581,34.503713],[102.15579,34.507548],[102.172327,34.476218],[102.16938,34.458203],[102.191157,34.438691],[102.222594,34.384717],[102.234055,34.382796],[102.25927,34.355582],[102.220956,34.339356],[102.186572,34.352807],[102.16938,34.324942],[102.169871,34.310633],[102.150878,34.292048],[102.148259,34.271322],[102.133359,34.272925],[102.085058,34.291727],[102.067865,34.293543],[102.060334,34.278801],[102.059843,34.227183],[102.038721,34.229962],[102.014161,34.218523],[102.030862,34.190507],[102.018254,34.190293],[102.003191,34.161947],[101.965368,34.167403],[101.967497,34.155634],[101.955053,34.109614],[101.895618,34.134019],[101.872531,34.13327],[101.865982,34.15007],[101.838147,34.124707],[101.788372,34.131664],[101.763812,34.122674],[101.757427,34.099658],[101.736141,34.080063],[101.728282,34.099658],[101.710926,34.086809],[101.713219,34.109079],[101.703067,34.119249],[101.67032,34.11197],[101.643304,34.138728],[101.65231,34.148786],[101.627586,34.165477],[101.624966,34.176923],[101.600243,34.179277],[101.576665,34.197031],[101.561274,34.191042],[101.540644,34.21168],[101.492506,34.195534],[101.482354,34.218737],[101.418171,34.228038],[101.371671,34.247706],[101.323205,34.246744],[101.327626,34.264911],[101.295698,34.268544],[101.262951,34.285745],[101.265735,34.292903],[101.229059,34.298457],[101.23528,34.325156],[101.193856,34.336687],[101.169132,34.319176],[101.156033,34.329961],[101.140479,34.324729],[101.070728,34.328893],[101.054519,34.32302],[101.051408,34.337221],[101.024064,34.342986],[100.986897,34.37458],[100.975435,34.369884],[100.950875,34.383757],[100.916164,34.373833],[100.897171,34.375754],[100.868517,34.332737],[100.822672,34.318642],[100.808427,34.274314],[100.799422,34.26224],[100.809737,34.247064],[100.782394,34.197779],[100.764383,34.178956],[100.806299,34.15542],[100.839209,34.114432],[100.849033,34.089593],[100.870155,34.083918],[100.879979,34.058],[100.879324,34.039038],[100.89668,34.035931],[100.909451,34.007425],[100.934829,33.989846],[100.927625,33.975157],[100.966594,33.945881],[100.975763,33.919384],[100.999013,33.889659],[101.023246,33.896098],[101.048461,33.878818],[101.052226,33.864325],[101.153577,33.844461],[101.149812,33.828566],[101.171261,33.804504],[101.189763,33.793115],[101.184196,33.765173],[101.188944,33.744641],[101.16291,33.719587],[101.164711,33.692912],[101.178301,33.683767],[101.166676,33.659987],[101.217761,33.66978],[101.237082,33.685596],[101.259677,33.669565],[101.302902,33.65805],[101.351368,33.657512],[101.391155,33.645242],[101.423083,33.654283],[101.427504,33.678388],[101.469911,33.686242],[101.491687,33.699904],[101.542117,33.695171],[101.557999,33.669672],[101.582559,33.675052],[101.588617,33.638138],[101.605973,33.628988],[101.616943,33.598839],[101.611868,33.590115],[101.614651,33.538617],[101.622674,33.502291],[101.635281,33.491616],[101.650018,33.502183],[101.677197,33.496468],[101.702249,33.501428],[101.735814,33.496361],[101.749404,33.506064],[101.759064,33.535599],[101.782314,33.556289],[101.806056,33.5481],[101.830288,33.554457],[101.830779,33.578805],[101.844369,33.6025],[101.882028,33.579344],[101.907079,33.542065],[101.89791,33.517707],[101.907407,33.480186],[101.929019,33.469617],[101.924435,33.449985],[101.946375,33.442757],[101.915921,33.425708],[101.91412,33.405851],[101.887267,33.383829],[101.876297,33.351111],[101.87597,33.314166],[101.857959,33.312005],[101.832253,33.291689],[101.823903,33.27126],[101.809658,33.288231],[101.76987,33.268774],[101.770362,33.249637],[101.788045,33.225846],[101.797541,33.232984],[101.829797,33.213948],[101.841258,33.189064],[101.840603,33.160386],[101.82554,33.119462],[101.865982,33.103001],[101.88563,33.134405],[101.921815,33.154],[101.935569,33.1869],[101.957345,33.186684],[101.993858,33.199992],[102.010559,33.191661],[102.055094,33.190038],[102.089642,33.204969],[102.089478,33.227576],[102.10929,33.264017],[102.112728,33.286825],[102.144165,33.274395],[102.152679,33.253097],[102.174947,33.233633],[102.203437,33.22325],[102.217518,33.248123],[102.202291,33.300983],[102.205565,33.320108],[102.1869,33.332532],[102.21981,33.351435],[102.238148,33.388579],[102.261071,33.396352],[102.263363,33.417075],[102.275152,33.408657],[102.292017,33.413945],[102.310682,33.397971],[102.347522,33.409736],[102.370118,33.394193],[102.36717,33.408981],[102.396151,33.405311],[102.403519,33.424521],[102.434301,33.439412],[102.442324,33.453113],[102.462463,33.449661],[102.453785,33.483637],[102.460498,33.509406],[102.445762,33.529456],[102.475889,33.531072],[102.473433,33.547669],[102.454604,33.555104],[102.440359,33.574819],[102.406466,33.581498],[102.386655,33.598731],[102.344575,33.606808],[102.333605,33.642013],[102.315267,33.665153],[102.328366,33.706358],[102.341628,33.720877],[102.325418,33.735287],[102.30135,33.709907],[102.287105,33.716575],[102.288087,33.733029],[102.322799,33.746038],[102.323126,33.757541],[102.300203,33.782369],[102.243552,33.78699],[102.234546,33.794619],[102.261235,33.82137],[102.253376,33.861534],[102.233891,33.87023],[102.204583,33.905649],[102.136306,33.965185],[102.166924,33.982877],[102.198525,33.978374],[102.202618,33.967115],[102.237985,33.963577],[102.241587,33.981483],[102.258124,33.975694],[102.277772,33.99006],[102.287268,33.977516],[102.316249,33.994026],[102.313138,33.974407],[102.350633,33.977409],[102.39304,33.973227],[102.39959,34.017714],[102.417764,34.042252],[102.437576,34.087238],[102.467212,34.073851],[102.516823,34.087452],[102.557429,34.091521],[102.585263,34.10105],[102.616045,34.099765],[102.649447,34.080063],[102.660417,34.085096],[102.655833,34.113468],[102.64126,34.127062],[102.598362,34.147823],[102.625378,34.16751],[102.650429,34.165584],[102.647482,34.178314],[102.665002,34.192753],[102.701187,34.196924],[102.731805,34.237445],[102.777978,34.235628],[102.783872,34.258072],[102.798281,34.273032],[102.856734,34.270681],[102.861154,34.302409],[102.879165,34.312128],[102.911748,34.312982],[102.93991,34.299952],[102.956447,34.269399],[102.980189,34.241293],[102.977078,34.198314],[103.007532,34.184839],[103.039788,34.185801],[103.05043,34.194678],[103.071552,34.184839],[103.100369,34.181951],[103.124111,34.16184],[103.132625,34.128989],[103.121818,34.112719],[103.135408,34.1003],[103.149817,34.10287],[103.178306,34.080384],[103.170283,34.065712],[103.130824,34.06689],[103.119198,34.039573],[103.147197,34.036466],[103.157185,33.998743],[103.136718,33.973656],[103.123947,33.968188],[103.120508,33.9506],[103.134426,33.930327],[103.164716,33.929361],[103.181254,33.900713],[103.153419,33.819114],[103.161278,33.80719],[103.20303,33.795371],[103.228081,33.794834],[103.250022,33.814065],[103.284733,33.802033],[103.278347,33.775383],[103.3201,33.752059],[103.349572,33.743458],[103.431766,33.750769],[103.464513,33.802462],[103.506428,33.81009],[103.518381,33.807082],[103.539994,33.766785],[103.531316,33.749049],[103.54949,33.74034],[103.545069,33.718941],[103.520509,33.678603],[103.55211,33.671501],[103.565045,33.700657],[103.598774,33.717866],[103.643473,33.708939],[103.65166,33.721415],[103.669016,33.712381],[103.650023,33.700119],[103.666887,33.699366],[103.667706,33.685812],[103.689155,33.69345],[103.778226,33.658803],[103.800494,33.67021],[103.86173,33.682154],[103.926732,33.679679],[103.96652,33.670425],[104.013184,33.683337],[104.052316,33.685274],[104.103564,33.663538],[104.169385,33.610792],[104.179701,33.575681],[104.168076,33.571049],[104.155632,33.541311],[104.169058,33.51361],[104.180683,33.473068],[104.213102,33.446856],[104.221944,33.42873],[104.220798,33.404663],[104.249779,33.407038],[104.270573,33.393329],[104.295788,33.332856],[104.328043,33.333072],[104.367667,33.345062],[104.437253,33.323242],[104.467217,33.333721],[104.487683,33.329507],[104.501273,33.340742],[104.540078,33.274071],[104.532219,33.251259],[104.539096,33.226927],[104.567585,33.221411],[104.627676,33.226927],[104.639628,33.238824],[104.646341,33.269314],[104.661405,33.29612],[104.675322,33.302388],[104.727226,33.299686],[104.759481,33.308007],[104.729682,33.328859],[104.715764,33.346142],[104.713636,33.401101],[104.730828,33.408333],[104.714454,33.415672],[104.698081,33.439843],[104.699391,33.457428],[104.657148,33.482774],[104.60508,33.50283],[104.583631,33.516413],[104.57217,33.536461],[104.584122,33.534845],[104.581011,33.575789],[104.570041,33.576543],[104.555797,33.598623],[104.542698,33.590761],[104.521412,33.611869],[104.548592,33.64309],[104.50553,33.642013],[104.501437,33.660202],[104.514536,33.658803],[104.509296,33.675806],[104.486373,33.69076],[104.490139,33.705497],[104.528944,33.7412],[104.531073,33.763238],[104.469181,33.771084],[104.450188,33.785593],[104.446259,33.80719],[104.410892,33.838984],[104.385186,33.847897],[104.341961,33.853803],[104.330827,33.867653],[104.248305,33.922817],[104.194764,33.949099],[104.077858,34.022643],[104.064432,34.043966],[104.03627,34.056714],[104.02661,34.084989],[104.028738,34.127276]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/630000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/630000.json new file mode 100644 index 0000000..4309d22 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/630000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":630100,"name":"西宁市","center":[101.778916,36.623178],"centroid":[101.438463,36.827772],"childrenNum":7,"level":"city","parent":{"adcode":630000},"subFeatureIndex":0,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.917374,36.741321],[100.916554,36.729332],[100.953728,36.690355],[100.945255,36.683007],[100.949355,36.663135],[100.990355,36.62525],[100.999375,36.59628],[100.993225,36.564595],[101.014545,36.535828],[101.009078,36.526512],[101.031355,36.509905],[101.060191,36.497955],[101.075225,36.482546],[101.081375,36.446001],[101.111031,36.436223],[101.111441,36.420349],[101.141371,36.384303],[101.183191,36.373387],[101.200548,36.340181],[101.249065,36.311405],[101.275168,36.305905],[101.303322,36.320898],[101.307558,36.337469],[101.343228,36.348314],[101.357852,36.380313],[101.378215,36.392883],[101.407325,36.375872],[101.438485,36.37286],[101.455978,36.353209],[101.541395,36.325418],[101.579252,36.329862],[101.603169,36.322329],[101.603169,36.282016],[101.623532,36.282694],[101.645399,36.267619],[101.646765,36.255481],[101.668359,36.231049],[101.706079,36.250128],[101.716192,36.278926],[101.738605,36.280961],[101.740929,36.299425],[101.771406,36.288498],[101.821562,36.294301],[101.828669,36.32715],[101.863519,36.381743],[101.849989,36.403495],[101.851902,36.442842],[101.871036,36.45653],[101.869122,36.471193],[101.897412,36.496678],[101.891946,36.533198],[101.912309,36.550776],[101.911762,36.573081],[101.879509,36.613768],[101.817599,36.653609],[101.804889,36.648808],[101.802429,36.671534],[101.790129,36.66186],[101.775642,36.676559],[101.790949,36.705948],[101.780152,36.73158],[101.790676,36.746865],[101.800516,36.792852],[101.790129,36.806253],[101.804342,36.821149],[101.805162,36.906726],[101.814592,36.925639],[101.837552,36.933039],[101.848349,36.966738],[101.831266,36.981602],[101.839876,37.009083],[101.855729,37.034091],[101.884566,37.04745],[101.893039,37.086245],[101.884566,37.122113],[101.907526,37.129195],[101.914496,37.148127],[101.891399,37.158187],[101.870899,37.179272],[101.841516,37.185902],[101.810766,37.203033],[101.799969,37.219266],[101.762249,37.220531],[101.761292,37.232071],[101.742159,37.247777],[101.716602,37.235123],[101.641435,37.25507],[101.626539,37.250233],[101.611779,37.264744],[101.573102,37.273673],[101.569549,37.282155],[101.540302,37.277914],[101.532102,37.297701],[101.535245,37.322539],[101.497662,37.337855],[101.451195,37.339267],[101.395708,37.35064],[101.374935,37.345957],[101.329562,37.352572],[101.315895,37.369516],[101.285282,37.383559],[101.253302,37.365875],[101.218042,37.370111],[101.213668,37.377987],[101.175128,37.374866],[101.148888,37.383931],[101.129755,37.377244],[101.113491,37.386531],[101.091898,37.384451],[101.081511,37.396485],[101.057048,37.398788],[101.019601,37.413865],[100.963705,37.449799],[100.973408,37.463382],[100.954138,37.470283],[100.927488,37.451432],[100.907124,37.429384],[100.890861,37.434655],[100.881431,37.415498],[100.882114,37.376724],[100.869268,37.353316],[100.896328,37.337632],[100.917238,37.304469],[100.916691,37.28818],[100.932271,37.2765],[100.931998,37.261396],[100.964935,37.242418],[100.970128,37.252019],[101.007438,37.249191],[101.049121,37.220383],[101.080555,37.228944],[101.128935,37.21033],[101.152851,37.174952],[101.157908,37.147233],[101.174445,37.124499],[101.197678,37.110631],[101.225012,37.108618],[101.243325,37.075206],[101.272025,37.05827],[101.265192,37.049838],[101.274895,37.02058],[101.289518,36.999302],[101.279678,36.96233],[101.297718,36.925116],[101.291432,36.902016],[101.275442,36.899175],[101.230068,36.915249],[101.206151,36.894763],[101.180048,36.886986],[101.166928,36.862379],[101.144515,36.853102],[101.111441,36.827511],[101.088618,36.803783],[101.022881,36.783642],[100.967395,36.821524],[100.906988,36.798542],[100.917648,36.772409],[100.917374,36.741321]]]]}},{"type":"Feature","properties":{"adcode":630200,"name":"海东市","center":[102.10327,36.502916],"centroid":[102.344727,36.335094],"childrenNum":6,"level":"city","parent":{"adcode":630000},"subFeatureIndex":1,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.45064,35.448318],[102.438066,35.455325],[102.449683,35.478551],[102.457473,35.473754],[102.465536,35.501847],[102.48262,35.512959],[102.49861,35.545222],[102.497926,35.571844],[102.512823,35.568726],[102.503256,35.584315],[102.53018,35.581045],[102.55191,35.559294],[102.58717,35.541798],[102.695273,35.528483],[102.745703,35.495072],[102.782877,35.528027],[102.773583,35.53419],[102.72944,35.523613],[102.74625,35.545298],[102.781783,35.549482],[102.808707,35.560435],[102.801737,35.574734],[102.78028,35.587813],[102.763197,35.611837],[102.764563,35.653329],[102.743927,35.657811],[102.72698,35.691382],[102.707983,35.704974],[102.68598,35.772139],[102.694863,35.79641],[102.71509,35.815443],[102.740373,35.821963],[102.773993,35.857512],[102.786977,35.862513],[102.817317,35.850085],[102.82989,35.856526],[102.85326,35.846826],[102.886334,35.849327],[102.914077,35.845083],[102.922824,35.833486],[102.944827,35.829999],[102.95617,35.862437],[102.942367,35.926819],[102.950157,35.963152],[102.97175,35.995309],[102.951797,36.021554],[102.968607,36.044313],[102.932664,36.048471],[102.91845,36.065478],[102.896037,36.065629],[102.88196,36.083464],[102.910114,36.088224],[102.941137,36.10492],[102.948517,36.148873],[102.96642,36.152195],[102.987467,36.193782],[103.0189,36.204798],[103.049104,36.199215],[103.07097,36.206911],[103.06359,36.219131],[103.02136,36.233462],[103.02505,36.256084],[102.994164,36.263171],[102.970384,36.283825],[102.92378,36.297692],[102.915717,36.315097],[102.89672,36.33182],[102.845334,36.332197],[102.831257,36.354941],[102.833307,36.369849],[102.818547,36.391754],[102.8262,36.407408],[102.8098,36.407934],[102.793537,36.427121],[102.78807,36.447505],[102.76675,36.465554],[102.788753,36.481869],[102.79299,36.499459],[102.779187,36.502089],[102.773173,36.520951],[102.753083,36.52591],[102.734497,36.562267],[102.737777,36.571278],[102.764563,36.575483],[102.714817,36.600333],[102.724247,36.613993],[102.692677,36.616995],[102.63063,36.650908],[102.609037,36.678133],[102.602203,36.709546],[102.61341,36.738699],[102.636643,36.733154],[102.69254,36.775329],[102.717277,36.767166],[102.70484,36.791729],[102.677233,36.80805],[102.66794,36.824592],[102.64744,36.834396],[102.637463,36.853701],[102.588673,36.868812],[102.562297,36.900521],[102.561613,36.918987],[102.530726,36.927059],[102.52444,36.938793],[102.50148,36.942604],[102.498063,36.956577],[102.46704,36.954485],[102.450366,36.96853],[102.46745,36.976598],[102.467176,36.988548],[102.506126,37.019237],[102.4941,37.043719],[102.498883,37.058419],[102.488496,37.078562],[102.38791,37.106754],[102.304406,37.086469],[102.271879,37.087588],[102.194116,37.077369],[102.163776,37.055584],[102.118266,37.061478],[102.064693,37.084008],[102.045286,37.096761],[102.002782,37.100415],[101.970802,37.121367],[101.914496,37.148127],[101.907526,37.129195],[101.884566,37.122113],[101.893039,37.086245],[101.884566,37.04745],[101.855729,37.034091],[101.839876,37.009083],[101.831266,36.981602],[101.848349,36.966738],[101.837552,36.933039],[101.814592,36.925639],[101.805162,36.906726],[101.804342,36.821149],[101.790129,36.806253],[101.800516,36.792852],[101.790676,36.746865],[101.780152,36.73158],[101.790949,36.705948],[101.775642,36.676559],[101.790129,36.66186],[101.802429,36.671534],[101.804889,36.648808],[101.817599,36.653609],[101.879509,36.613768],[101.911762,36.573081],[101.912309,36.550776],[101.891946,36.533198],[101.897412,36.496678],[101.869122,36.471193],[101.871036,36.45653],[101.851902,36.442842],[101.849989,36.403495],[101.863519,36.381743],[101.828669,36.32715],[101.821562,36.294301],[101.771406,36.288498],[101.740929,36.299425],[101.738605,36.280961],[101.716192,36.278926],[101.706079,36.250128],[101.668359,36.231049],[101.676422,36.211286],[101.667265,36.202459],[101.666855,36.160801],[101.726989,36.167519],[101.743252,36.149024],[101.753502,36.169633],[101.758149,36.149326],[101.769629,36.156498],[101.785346,36.145023],[101.799969,36.117988],[101.837416,36.117837],[101.850672,36.124408],[101.887572,36.109755],[101.886752,36.096837],[101.906979,36.089584],[101.896319,36.075],[101.934996,36.062832],[101.955906,36.062303],[101.944016,36.044842],[101.956042,36.026242],[101.975312,36.026998],[101.983102,36.004235],[102.017953,35.992358],[102.041323,35.954373],[102.083416,35.946729],[102.040913,35.925986],[102.053486,35.90698],[102.077813,35.908873],[102.094349,35.919323],[102.110203,35.906525],[102.115123,35.871681],[102.078223,35.861528],[102.079863,35.84622],[102.100773,35.830151],[102.082049,35.813775],[102.102686,35.789357],[102.129473,35.767815],[102.141909,35.750212],[102.124143,35.735338],[102.170473,35.728583],[102.152433,35.715906],[102.162409,35.693737],[102.180313,35.695863],[102.197533,35.709681],[102.212839,35.708011],[102.225003,35.679308],[102.226369,35.654089],[102.269146,35.624074],[102.303723,35.624378],[102.349916,35.60872],[102.354563,35.590398],[102.38832,35.561728],[102.40554,35.55435],[102.40841,35.538527],[102.426723,35.539668],[102.42276,35.490885],[102.404583,35.479008],[102.41292,35.46355],[102.45064,35.448318]]],[[[102.83891,36.345754],[102.84793,36.355619],[102.832077,36.366612],[102.83891,36.345754]]]]}},{"type":"Feature","properties":{"adcode":632200,"name":"海北藏族自治州","center":[100.901059,36.959435],"centroid":[100.299858,37.765164],"childrenNum":4,"level":"city","parent":{"adcode":630000},"subFeatureIndex":2,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.914496,37.148127],[101.970802,37.121367],[102.002782,37.100415],[102.045286,37.096761],[102.064693,37.084008],[102.118266,37.061478],[102.163776,37.055584],[102.194116,37.077369],[102.271879,37.087588],[102.304406,37.086469],[102.38791,37.106754],[102.488496,37.078562],[102.497926,37.090422],[102.53182,37.087364],[102.61177,37.104442],[102.64211,37.09967],[102.637327,37.121964],[102.62735,37.127406],[102.600837,37.174281],[102.568447,37.180017],[102.53305,37.217404],[102.48959,37.223807],[102.480296,37.240483],[102.45761,37.248893],[102.453373,37.271516],[102.419206,37.295991],[102.428363,37.308262],[102.393103,37.324993],[102.368366,37.32767],[102.34117,37.348038],[102.29894,37.370036],[102.300033,37.391285],[102.271196,37.392845],[102.248783,37.411488],[102.197396,37.420548],[102.173206,37.461304],[102.125236,37.485494],[102.106513,37.481339],[102.103369,37.492839],[102.122366,37.516204],[102.118129,37.531628],[102.130839,37.547345],[102.106923,37.564319],[102.102139,37.582104],[102.089566,37.578844],[102.066333,37.590106],[102.070296,37.601144],[102.035309,37.627585],[102.047336,37.654313],[102.036813,37.661715],[102.033396,37.688504],[102.018636,37.694867],[101.999092,37.725046],[101.946339,37.728078],[101.875546,37.685914],[101.859829,37.660827],[101.854362,37.664675],[101.813499,37.655645],[101.813636,37.681623],[101.789036,37.69716],[101.659202,37.733329],[101.670409,37.754252],[101.640752,37.775835],[101.618065,37.810413],[101.598385,37.827475],[101.542625,37.838995],[101.500395,37.857969],[101.464725,37.856788],[101.443132,37.868082],[101.402952,37.831758],[101.382588,37.822157],[101.376985,37.802214],[101.362362,37.791205],[101.319995,37.811226],[101.279132,37.836706],[101.258495,37.832792],[101.239225,37.84313],[101.202735,37.84756],[101.161051,37.867565],[101.152168,37.891181],[101.130711,37.913683],[101.114311,37.920248],[101.102968,37.946501],[101.077138,37.941856],[101.034498,37.976577],[101.020968,37.975472],[100.997598,37.988442],[100.980378,38.006789],[100.964115,38.011062],[100.918468,37.999569],[100.894824,38.013566],[100.896874,38.029476],[100.887308,38.049579],[100.894688,38.062905],[100.922704,38.085575],[100.916144,38.115079],[100.925028,38.14891],[100.938011,38.16038],[100.913274,38.178683],[100.862981,38.149278],[100.843848,38.149131],[100.821981,38.161997],[100.810091,38.181256],[100.789181,38.193528],[100.780298,38.213513],[100.751871,38.23878],[100.714834,38.253613],[100.686271,38.249574],[100.673834,38.256183],[100.619031,38.265727],[100.595114,38.242305],[100.574477,38.25141],[100.546597,38.246931],[100.520631,38.271085],[100.496577,38.273654],[100.475531,38.288847],[100.460087,38.265506],[100.437127,38.268002],[100.435351,38.301322],[100.418677,38.307192],[100.396674,38.29325],[100.373714,38.309026],[100.359774,38.307925],[100.318227,38.328392],[100.331484,38.34174],[100.29718,38.388585],[100.259597,38.366376],[100.240054,38.441698],[100.205204,38.45627],[100.16475,38.460443],[100.151357,38.478378],[100.12621,38.485258],[100.11227,38.497187],[100.08685,38.493162],[100.064027,38.518551],[100.02576,38.507943],[100.00116,38.466959],[100.02986,38.443382],[100.021933,38.432983],[100.057877,38.416355],[100.092043,38.408223],[100.111313,38.377811],[100.123887,38.34768],[100.136187,38.334846],[100.16434,38.328025],[100.157917,38.310567],[100.16639,38.269617],[100.184157,38.235255],[100.182927,38.222034],[100.16024,38.217039],[100.12785,38.230628],[100.116097,38.254127],[100.095323,38.263084],[100.09915,38.270645],[100.071407,38.284591],[100.050087,38.28327],[99.998563,38.316436],[99.95975,38.32069],[99.9372,38.341593],[99.904947,38.3446],[99.830736,38.368648],[99.758303,38.410494],[99.734933,38.412619],[99.715253,38.425146],[99.679036,38.436645],[99.65963,38.449167],[99.645963,38.468935],[99.585419,38.498504],[99.556856,38.519648],[99.548656,38.534204],[99.527473,38.547514],[99.514079,38.568425],[99.514216,38.59766],[99.496039,38.612931],[99.450803,38.604456],[99.432216,38.623451],[99.426203,38.647406],[99.412399,38.665514],[99.371536,38.69055],[99.362106,38.718204],[99.291039,38.765898],[99.257692,38.781643],[99.222159,38.788931],[99.169269,38.827255],[99.141252,38.852744],[99.110639,38.86796],[99.068819,38.897074],[99.065402,38.9157],[99.108999,38.946393],[99.065539,38.96268],[99.054469,38.976564],[99.013879,38.984705],[98.993242,38.977437],[98.984085,38.984777],[98.949645,38.988484],[98.902905,39.012535],[98.887189,39.039265],[98.820085,39.063589],[98.813252,39.087687],[98.759815,39.0903],[98.743825,39.086889],[98.730568,39.0572],[98.705422,39.043332],[98.691892,39.020817],[98.663328,38.994516],[98.614538,38.980489],[98.623968,38.959263],[98.614812,38.947338],[98.597728,38.947629],[98.590075,38.933085],[98.572992,38.93243],[98.550578,38.949374],[98.526388,38.955555],[98.457508,38.952937],[98.428261,38.975983],[98.432771,38.993571],[98.401065,39.001491],[98.383981,39.029388],[98.316878,39.0405],[98.287085,39.035489],[98.281071,39.027063],[98.287495,38.99219],[98.270138,38.954537],[98.235424,38.919046],[98.251551,38.907842],[98.251278,38.891252],[98.203444,38.856603],[98.177068,38.846045],[98.152331,38.820189],[98.134974,38.815818],[98.093291,38.786307],[98.112014,38.759336],[98.128551,38.757003],[98.141944,38.737387],[98.136614,38.710616],[98.157251,38.696023],[98.182534,38.667558],[98.246494,38.663689],[98.273965,38.643025],[98.275058,38.66252],[98.295695,38.66325],[98.368128,38.615634],[98.418148,38.598391],[98.468851,38.58816],[98.508758,38.586187],[98.538962,38.579536],[98.562332,38.553145],[98.608525,38.52689],[98.637772,38.522135],[98.683008,38.530328],[98.711572,38.520892],[98.717312,38.502675],[98.735625,38.485258],[98.778402,38.477792],[98.816395,38.482257],[98.881859,38.475011],[98.948142,38.444041],[98.969462,38.422655],[98.983539,38.396866],[98.979849,38.389318],[98.955249,38.390344],[98.909192,38.363517],[98.909739,38.350246],[98.936389,38.341813],[98.938712,38.324871],[98.908235,38.298974],[98.907825,38.2887],[98.947459,38.271599],[99.002945,38.278499],[99.013059,38.267195],[99.039982,38.25699],[99.089319,38.26301],[99.122939,38.273214],[99.146719,38.290682],[99.168176,38.28804],[99.172686,38.308219],[99.212456,38.316215],[99.223662,38.328465],[99.247442,38.328685],[99.259742,38.315408],[99.250312,38.301836],[99.283932,38.274535],[99.321379,38.265653],[99.364019,38.247298],[99.401603,38.256917],[99.438639,38.258459],[99.469116,38.2484],[99.498499,38.250676],[99.524193,38.209546],[99.548656,38.202125],[99.560136,38.207121],[99.585009,38.200215],[99.594713,38.162512],[99.579269,38.109635],[99.622593,38.095141],[99.64733,38.07667],[99.684503,38.071002],[99.652933,38.051199],[99.615623,38.053261],[99.559589,38.029476],[99.523919,38.034631],[99.499456,38.032643],[99.441373,38.017544],[99.411716,38.025352],[99.380693,38.007083],[99.359646,37.979452],[99.358963,37.967364],[99.392309,37.947238],[99.375226,37.924083],[99.417456,37.902543],[99.438366,37.897305],[99.474036,37.873175],[99.477453,37.846009],[99.498089,37.838404],[99.512439,37.857748],[99.555079,37.845197],[99.600453,37.83678],[99.606466,37.829174],[99.661543,37.812038],[99.648423,37.793052],[99.649516,37.756839],[99.657716,37.735843],[99.68915,37.719869],[99.69735,37.682807],[99.686143,37.667266],[99.63585,37.654017],[99.590749,37.610996],[99.559589,37.610552],[99.541549,37.596774],[99.543053,37.563504],[99.500959,37.544083],[99.463649,37.482675],[99.473353,37.460191],[99.476086,37.411785],[99.464879,37.398565],[99.417046,37.370111],[99.418276,37.330569],[99.434539,37.31384],[99.439323,37.280295],[99.423196,37.242195],[99.436999,37.216362],[99.430713,37.182848],[99.454356,37.17443],[99.454356,37.156622],[99.512986,37.143804],[99.548929,37.117342],[99.566559,37.116521],[99.589246,37.101683],[99.63134,37.08632],[99.688193,37.042749],[99.720856,37.03424],[99.74081,37.036554],[99.743543,37.015877],[99.77197,37.018565],[99.797526,36.991685],[99.821716,36.984963],[99.839756,36.966588],[99.904537,36.951198],[100.14261,36.899025],[100.278184,36.867316],[100.536621,36.814563],[100.696384,36.776228],[100.725631,36.753982],[100.763078,36.758926],[100.801071,36.757353],[100.862708,36.780347],[100.918604,36.749712],[100.917374,36.741321],[100.917648,36.772409],[100.906988,36.798542],[100.967395,36.821524],[101.022881,36.783642],[101.088618,36.803783],[101.111441,36.827511],[101.144515,36.853102],[101.166928,36.862379],[101.180048,36.886986],[101.206151,36.894763],[101.230068,36.915249],[101.275442,36.899175],[101.291432,36.902016],[101.297718,36.925116],[101.279678,36.96233],[101.289518,36.999302],[101.274895,37.02058],[101.265192,37.049838],[101.272025,37.05827],[101.243325,37.075206],[101.225012,37.108618],[101.197678,37.110631],[101.174445,37.124499],[101.157908,37.147233],[101.152851,37.174952],[101.128935,37.21033],[101.080555,37.228944],[101.049121,37.220383],[101.007438,37.249191],[100.970128,37.252019],[100.964935,37.242418],[100.931998,37.261396],[100.932271,37.2765],[100.916691,37.28818],[100.917238,37.304469],[100.896328,37.337632],[100.869268,37.353316],[100.882114,37.376724],[100.881431,37.415498],[100.890861,37.434655],[100.907124,37.429384],[100.927488,37.451432],[100.954138,37.470283],[100.973408,37.463382],[100.963705,37.449799],[101.019601,37.413865],[101.057048,37.398788],[101.081511,37.396485],[101.091898,37.384451],[101.113491,37.386531],[101.129755,37.377244],[101.148888,37.383931],[101.175128,37.374866],[101.213668,37.377987],[101.218042,37.370111],[101.253302,37.365875],[101.285282,37.383559],[101.315895,37.369516],[101.329562,37.352572],[101.374935,37.345957],[101.395708,37.35064],[101.451195,37.339267],[101.497662,37.337855],[101.535245,37.322539],[101.532102,37.297701],[101.540302,37.277914],[101.569549,37.282155],[101.573102,37.273673],[101.611779,37.264744],[101.626539,37.250233],[101.641435,37.25507],[101.716602,37.235123],[101.742159,37.247777],[101.761292,37.232071],[101.762249,37.220531],[101.799969,37.219266],[101.810766,37.203033],[101.841516,37.185902],[101.870899,37.179272],[101.891399,37.158187],[101.914496,37.148127]]]]}},{"type":"Feature","properties":{"adcode":632300,"name":"黄南藏族自治州","center":[102.019988,35.517744],"centroid":[101.484693,34.782539],"childrenNum":4,"level":"city","parent":{"adcode":630000},"subFeatureIndex":3,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.950585,34.383654],[100.975458,34.369918],[100.986938,34.374625],[101.023975,34.343056],[101.051445,34.337266],[101.054588,34.322982],[101.070715,34.32885],[101.140415,34.324758],[101.155995,34.329931],[101.169115,34.319198],[101.193851,34.336726],[101.235262,34.325144],[101.229112,34.298423],[101.265738,34.292939],[101.281728,34.273393],[101.315212,34.265821],[101.323275,34.248433],[101.371655,34.247738],[101.415662,34.228414],[101.482355,34.218673],[101.492469,34.195553],[101.515565,34.199187],[101.530325,34.210477],[101.552602,34.204214],[101.558479,34.191222],[101.582395,34.195475],[101.600299,34.179311],[101.625035,34.176913],[101.627632,34.165541],[101.652232,34.148752],[101.649635,34.126773],[101.672869,34.110983],[101.695829,34.120117],[101.713185,34.109047],[101.710999,34.086749],[101.728355,34.099602],[101.736145,34.080089],[101.757466,34.100067],[101.763752,34.122594],[101.788352,34.131649],[101.838099,34.124684],[101.865979,34.150067],[101.872539,34.133275],[101.895636,34.133971],[101.955086,34.109667],[101.967522,34.155638],[101.965472,34.167398],[102.003192,34.161905],[102.018363,34.190294],[102.030799,34.190526],[102.015219,34.224316],[102.064966,34.233206],[102.060593,34.279497],[102.067973,34.293479],[102.085056,34.291703],[102.133299,34.27293],[102.148333,34.271307],[102.150793,34.292089],[102.169516,34.308386],[102.169379,34.324912],[102.186463,34.352783],[102.219263,34.339814],[102.259306,34.355562],[102.235116,34.382187],[102.224866,34.383422],[102.204913,34.410656],[102.197669,34.431326],[102.175666,34.447597],[102.172249,34.476274],[102.155849,34.507562],[102.140133,34.503709],[102.121409,34.52297],[102.106923,34.521737],[102.092983,34.536373],[102.039956,34.534755],[102.003739,34.538298],[101.974356,34.548926],[101.956042,34.58288],[101.934586,34.587499],[101.919826,34.625208],[101.918186,34.666668],[101.929802,34.681508],[101.917366,34.706262],[101.917912,34.784088],[101.927479,34.802977],[101.917229,34.875113],[101.939779,34.888612],[101.959732,34.887155],[101.985972,34.899885],[102.028203,34.896281],[102.068383,34.887692],[102.047883,34.910774],[102.061823,34.942663],[102.076993,34.95301],[102.095033,34.986798],[102.124689,35.003343],[102.132479,35.014753],[102.108563,35.031139],[102.101046,35.064436],[102.054716,35.078516],[102.056356,35.098561],[102.041733,35.139859],[102.022599,35.147964],[102.015629,35.165393],[102.052119,35.183888],[102.039136,35.214372],[102.025059,35.225066],[102.015903,35.248969],[101.998136,35.256681],[101.984742,35.280117],[101.991439,35.301104],[101.936499,35.338028],[101.916409,35.306674],[101.907116,35.312473],[101.884429,35.303545],[101.872949,35.281872],[101.868712,35.252023],[101.848486,35.241791],[101.795049,35.253627],[101.775369,35.23362],[101.752819,35.221935],[101.731635,35.254772],[101.549869,35.25836],[101.529779,35.248358],[101.506682,35.21674],[101.459942,35.219338],[101.446958,35.256299],[101.425502,35.254925],[101.397075,35.238508],[101.406095,35.229038],[101.418942,35.186639],[101.398852,35.172119],[101.359218,35.172806],[101.345278,35.180678],[101.355528,35.204976],[101.348558,35.248816],[101.329288,35.278208],[101.341315,35.277063],[101.406642,35.28897],[101.391745,35.335892],[101.368102,35.338333],[101.290065,35.369141],[101.242095,35.36876],[101.214215,35.388047],[101.184421,35.391782],[101.162145,35.403138],[101.148205,35.397117],[101.127295,35.408168],[101.100235,35.406339],[101.043381,35.411064],[100.964525,35.401004],[100.934868,35.417007],[100.914094,35.417236],[100.842071,35.432398],[100.816514,35.413578],[100.767314,35.419979],[100.712374,35.42295],[100.693104,35.419598],[100.687638,35.404891],[100.703491,35.370056],[100.728364,35.357094],[100.733011,35.342528],[100.812414,35.333985],[100.814054,35.318881],[100.849588,35.325137],[100.911088,35.303622],[100.915734,35.294617],[100.873368,35.247824],[100.781254,35.18106],[100.754194,35.173418],[100.730961,35.152092],[100.703491,35.148881],[100.713878,35.132825],[100.696931,35.117377],[100.697478,35.079741],[100.715518,35.071936],[100.738478,35.044459],[100.795468,35.020037],[100.811731,35.007248],[100.873094,35.000049],[100.919424,34.982279],[100.948398,34.945882],[100.968078,34.931933],[101.006755,34.916907],[101.037778,34.915987],[101.035455,34.904179],[101.055408,34.889532],[101.114448,34.889532],[101.131531,34.882783],[101.139185,34.848261],[101.148341,34.835139],[101.126065,34.803898],[101.087388,34.801211],[101.080828,34.781401],[101.100918,34.741074],[101.097638,34.720019],[101.065658,34.715485],[101.058825,34.677817],[101.036958,34.65144],[101.000331,34.640979],[100.959741,34.663591],[100.907808,34.659054],[100.889631,34.663591],[100.892638,34.638056],[100.910268,34.626208],[100.908354,34.605894],[100.916691,34.570178],[100.946758,34.539761],[100.970128,34.542457],[100.970675,34.499934],[100.977645,34.480282],[100.976278,34.447443],[100.962611,34.422457],[100.950585,34.383654]]],[[[101.549869,35.25836],[101.731635,35.254772],[101.752819,35.221935],[101.775369,35.23362],[101.795049,35.253627],[101.848486,35.241791],[101.868712,35.252023],[101.872949,35.281872],[101.884429,35.303545],[101.907116,35.312473],[101.916409,35.306674],[101.936499,35.338028],[101.991439,35.301104],[101.984742,35.280117],[101.998136,35.256681],[102.015903,35.248969],[102.025059,35.225066],[102.039136,35.214372],[102.052119,35.183888],[102.015629,35.165393],[102.022599,35.147964],[102.041733,35.139859],[102.056356,35.098561],[102.054716,35.078516],[102.101046,35.064436],[102.108563,35.031139],[102.132479,35.014753],[102.157353,35.010848],[102.174573,35.032517],[102.213933,35.036498],[102.224046,35.059079],[102.252473,35.048746],[102.279806,35.05663],[102.295113,35.070635],[102.310283,35.128237],[102.339393,35.141159],[102.35224,35.165163],[102.373696,35.161265],[102.40349,35.178156],[102.39939,35.196266],[102.365633,35.238584],[102.370826,35.262788],[102.335293,35.283475],[102.312196,35.282483],[102.280216,35.307589],[102.311376,35.313236],[102.317663,35.342833],[102.306593,35.359839],[102.28992,35.364566],[102.282129,35.384998],[102.292653,35.422569],[102.314793,35.434378],[102.408683,35.410073],[102.447633,35.437349],[102.45064,35.448318],[102.41292,35.46355],[102.404583,35.479008],[102.42276,35.490885],[102.426723,35.539668],[102.40841,35.538527],[102.40554,35.55435],[102.38832,35.561728],[102.354563,35.590398],[102.349916,35.60872],[102.303723,35.624378],[102.269146,35.624074],[102.226369,35.654089],[102.225003,35.679308],[102.212839,35.708011],[102.197533,35.709681],[102.180313,35.695863],[102.162409,35.693737],[102.152433,35.715906],[102.170473,35.728583],[102.124143,35.735338],[102.141909,35.750212],[102.129473,35.767815],[102.102686,35.789357],[102.082049,35.813775],[102.100773,35.830151],[102.079863,35.84622],[102.078223,35.861528],[102.115123,35.871681],[102.110203,35.906525],[102.094349,35.919323],[102.077813,35.908873],[102.053486,35.90698],[102.040913,35.925986],[102.083416,35.946729],[102.041323,35.954373],[102.017953,35.992358],[101.983102,36.004235],[101.975312,36.026998],[101.956042,36.026242],[101.944016,36.044842],[101.955906,36.062303],[101.934996,36.062832],[101.896319,36.075],[101.906979,36.089584],[101.886752,36.096837],[101.887572,36.109755],[101.850672,36.124408],[101.837416,36.117837],[101.799969,36.117988],[101.785346,36.145023],[101.769629,36.156498],[101.758149,36.149326],[101.753502,36.169633],[101.743252,36.149024],[101.726989,36.167519],[101.666855,36.160801],[101.647722,36.154611],[101.638429,36.116477],[101.649362,36.090037],[101.643212,36.08029],[101.656605,36.057768],[101.646355,36.033199],[101.651959,36.010739],[101.645535,35.999847],[101.668222,35.984415],[101.681752,35.964515],[101.679975,35.928863],[101.697059,35.916218],[101.733685,35.902511],[101.665215,35.81514],[101.674509,35.79186],[101.663029,35.776387],[101.685169,35.757724],[101.718652,35.751957],[101.739425,35.754841],[101.764572,35.747253],[101.760199,35.725851],[101.772499,35.716893],[101.770586,35.687586],[101.759106,35.662977],[101.727809,35.644212],[101.699519,35.608492],[101.689542,35.604159],[101.696239,35.582338],[101.677652,35.576027],[101.657699,35.538222],[101.663985,35.526353],[101.593739,35.496061],[101.580209,35.504739],[101.548639,35.491494],[101.533059,35.469109],[101.501352,35.488373],[101.486319,35.491113],[101.464862,35.473221],[101.441082,35.488906],[101.420172,35.491113],[101.404045,35.506794],[101.389832,35.497812],[101.398715,35.476648],[101.395298,35.455021],[101.410058,35.438263],[101.455842,35.4023],[101.479759,35.352289],[101.437392,35.334367],[101.391745,35.335892],[101.406642,35.28897],[101.420308,35.291259],[101.459258,35.281338],[101.498072,35.309878],[101.505999,35.327425],[101.537842,35.320865],[101.549322,35.312244],[101.541122,35.286299],[101.549869,35.25836]]]]}},{"type":"Feature","properties":{"adcode":632500,"name":"海南藏族自治州","center":[100.619542,36.280353],"centroid":[100.253142,35.908253],"childrenNum":5,"level":"city","parent":{"adcode":630000},"subFeatureIndex":4,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[100.917374,36.741321],[100.918604,36.749712],[100.862708,36.780347],[100.801071,36.757353],[100.763078,36.758926],[100.725631,36.753982],[100.696384,36.776228],[100.536621,36.814563],[100.278184,36.867316],[100.14261,36.899025],[99.904537,36.951198],[99.839756,36.966588],[99.821716,36.984963],[99.797526,36.991685],[99.77197,37.018565],[99.743543,37.015877],[99.74081,37.036554],[99.720856,37.03424],[99.688193,37.042749],[99.63134,37.08632],[99.589246,37.101683],[99.566559,37.116521],[99.548929,37.117342],[99.512986,37.143804],[99.454356,37.156622],[99.415953,37.163403],[99.408846,37.170332],[99.382743,37.167054],[99.368529,37.175324],[99.359646,37.135084],[99.350079,37.123753],[99.321789,37.123679],[99.299649,37.106977],[99.286802,37.10653],[99.271769,37.089079],[99.249082,37.031852],[99.231042,36.976673],[99.197969,36.961135],[99.155329,36.970099],[99.160112,36.95456],[99.264526,36.905231],[99.277646,36.893642],[99.297462,36.849661],[99.387389,36.798318],[99.430986,36.760499],[99.422786,36.740722],[99.446839,36.686981],[99.427159,36.671534],[99.395179,36.657434],[99.374269,36.654959],[99.355409,36.632828],[99.334499,36.620897],[99.263159,36.604236],[99.171319,36.565121],[99.119522,36.55333],[99.085492,36.533048],[98.977115,36.498181],[98.921219,36.486755],[98.929829,36.446753],[98.946775,36.444121],[98.954839,36.423434],[98.989005,36.409816],[99.034925,36.365783],[99.065949,36.323986],[99.065949,36.298973],[99.049685,36.288196],[99.043809,36.233236],[98.993379,36.191292],[98.993789,36.17152],[98.983675,36.164575],[98.935432,36.156498],[98.937072,36.143437],[98.967685,36.129316],[98.980259,36.087846],[99.015792,36.086184],[99.010189,36.058297],[99.040255,36.046505],[99.077566,36.017092],[99.089456,35.999923],[99.071142,35.968147],[99.116789,35.911448],[99.102439,35.883424],[99.124716,35.86615],[99.126629,35.831515],[99.119112,35.818324],[99.126766,35.802629],[99.163802,35.791102],[99.185806,35.762125],[99.194142,35.737463],[99.208219,35.7279],[99.205622,35.682573],[99.177606,35.655684],[99.156012,35.619818],[99.180749,35.608112],[99.192639,35.616169],[99.211089,35.604615],[99.295002,35.565607],[99.314682,35.550471],[99.321516,35.530842],[99.337779,35.515775],[99.313179,35.5141],[99.278466,35.499715],[99.265756,35.474744],[99.213139,35.48015],[99.201796,35.462027],[99.221202,35.450451],[99.278192,35.445195],[99.280652,35.433159],[99.300606,35.42935],[99.312086,35.412435],[99.310719,35.389952],[99.291996,35.376079],[99.256326,35.370437],[99.233092,35.345883],[99.208492,35.333223],[99.179382,35.300035],[99.181706,35.270575],[99.200976,35.250649],[99.219699,35.24538],[99.234322,35.221171],[99.266302,35.212616],[99.293499,35.17273],[99.331766,35.134125],[99.340513,35.134201],[99.344749,35.102998],[99.370579,35.098408],[99.395999,35.054716],[99.416226,35.042163],[99.440553,35.00541],[99.477453,34.965807],[99.528566,34.954389],[99.553713,34.95983],[99.592936,34.939598],[99.653753,34.936148],[99.672066,34.910467],[99.707873,34.901802],[99.738213,34.864757],[99.77525,34.85977],[99.799166,34.849796],[99.81543,34.831225],[99.852876,34.831455],[99.872147,34.842276],[99.903033,34.835292],[99.926813,34.819942],[99.950867,34.819251],[99.969453,34.807967],[100.024667,34.806432],[100.026033,34.818637],[100.048173,34.816334],[100.07414,34.82969],[100.08849,34.844885],[100.10612,34.886541],[100.14794,34.888535],[100.186207,34.895361],[100.25208,34.890759],[100.298,34.910237],[100.298137,34.897048],[100.318364,34.89283],[100.32301,34.865907],[100.317407,34.850409],[100.356494,34.821477],[100.387654,34.823626],[100.421957,34.812803],[100.465554,34.811498],[100.485371,34.806355],[100.517077,34.780402],[100.556301,34.741458],[100.587871,34.734389],[100.598257,34.703187],[100.642947,34.730855],[100.644177,34.713794],[100.659347,34.710643],[100.683948,34.692118],[100.695564,34.673204],[100.731098,34.669128],[100.745174,34.67997],[100.767724,34.672435],[100.793281,34.694962],[100.852868,34.721556],[100.878698,34.709413],[100.889631,34.663591],[100.907808,34.659054],[100.959741,34.663591],[101.000331,34.640979],[101.036958,34.65144],[101.058825,34.677817],[101.065658,34.715485],[101.097638,34.720019],[101.100918,34.741074],[101.080828,34.781401],[101.087388,34.801211],[101.126065,34.803898],[101.148341,34.835139],[101.139185,34.848261],[101.131531,34.882783],[101.114448,34.889532],[101.055408,34.889532],[101.035455,34.904179],[101.037778,34.915987],[101.006755,34.916907],[100.968078,34.931933],[100.948398,34.945882],[100.919424,34.982279],[100.873094,35.000049],[100.811731,35.007248],[100.795468,35.020037],[100.738478,35.044459],[100.715518,35.071936],[100.697478,35.079741],[100.696931,35.117377],[100.713878,35.132825],[100.703491,35.148881],[100.730961,35.152092],[100.754194,35.173418],[100.781254,35.18106],[100.873368,35.247824],[100.915734,35.294617],[100.911088,35.303622],[100.849588,35.325137],[100.814054,35.318881],[100.812414,35.333985],[100.733011,35.342528],[100.728364,35.357094],[100.703491,35.370056],[100.687638,35.404891],[100.693104,35.419598],[100.712374,35.42295],[100.767314,35.419979],[100.816514,35.413578],[100.842071,35.432398],[100.914094,35.417236],[100.934868,35.417007],[100.964525,35.401004],[101.043381,35.411064],[101.100235,35.406339],[101.127295,35.408168],[101.148205,35.397117],[101.162145,35.403138],[101.184421,35.391782],[101.214215,35.388047],[101.242095,35.36876],[101.290065,35.369141],[101.368102,35.338333],[101.391745,35.335892],[101.437392,35.334367],[101.479759,35.352289],[101.455842,35.4023],[101.410058,35.438263],[101.395298,35.455021],[101.398715,35.476648],[101.389832,35.497812],[101.404045,35.506794],[101.420172,35.491113],[101.441082,35.488906],[101.464862,35.473221],[101.486319,35.491113],[101.501352,35.488373],[101.533059,35.469109],[101.548639,35.491494],[101.580209,35.504739],[101.593739,35.496061],[101.663985,35.526353],[101.657699,35.538222],[101.677652,35.576027],[101.696239,35.582338],[101.689542,35.604159],[101.699519,35.608492],[101.727809,35.644212],[101.759106,35.662977],[101.770586,35.687586],[101.772499,35.716893],[101.760199,35.725851],[101.764572,35.747253],[101.739425,35.754841],[101.718652,35.751957],[101.685169,35.757724],[101.663029,35.776387],[101.674509,35.79186],[101.665215,35.81514],[101.733685,35.902511],[101.697059,35.916218],[101.679975,35.928863],[101.681752,35.964515],[101.668222,35.984415],[101.645535,35.999847],[101.651959,36.010739],[101.646355,36.033199],[101.656605,36.057768],[101.643212,36.08029],[101.649362,36.090037],[101.638429,36.116477],[101.647722,36.154611],[101.666855,36.160801],[101.667265,36.202459],[101.676422,36.211286],[101.668359,36.231049],[101.646765,36.255481],[101.645399,36.267619],[101.623532,36.282694],[101.603169,36.282016],[101.603169,36.322329],[101.579252,36.329862],[101.541395,36.325418],[101.455978,36.353209],[101.438485,36.37286],[101.407325,36.375872],[101.378215,36.392883],[101.357852,36.380313],[101.343228,36.348314],[101.307558,36.337469],[101.303322,36.320898],[101.275168,36.305905],[101.249065,36.311405],[101.200548,36.340181],[101.183191,36.373387],[101.141371,36.384303],[101.111441,36.420349],[101.111031,36.436223],[101.081375,36.446001],[101.075225,36.482546],[101.060191,36.497955],[101.031355,36.509905],[101.009078,36.526512],[101.014545,36.535828],[100.993225,36.564595],[100.999375,36.59628],[100.990355,36.62525],[100.949355,36.663135],[100.945255,36.683007],[100.953728,36.690355],[100.916554,36.729332],[100.917374,36.741321]]],[[[101.406642,35.28897],[101.341315,35.277063],[101.329288,35.278208],[101.348558,35.248816],[101.355528,35.204976],[101.345278,35.180678],[101.359218,35.172806],[101.398852,35.172119],[101.418942,35.186639],[101.406095,35.229038],[101.397075,35.238508],[101.425502,35.254925],[101.446958,35.256299],[101.459942,35.219338],[101.506682,35.21674],[101.529779,35.248358],[101.549869,35.25836],[101.541122,35.286299],[101.549322,35.312244],[101.537842,35.320865],[101.505999,35.327425],[101.498072,35.309878],[101.459258,35.281338],[101.420308,35.291259],[101.406642,35.28897]]]]}},{"type":"Feature","properties":{"adcode":632600,"name":"果洛藏族自治州","center":[100.242143,34.4736],"centroid":[99.415532,34.124188],"childrenNum":6,"level":"city","parent":{"adcode":630000},"subFeatureIndex":5,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[97.66402,34.119498],[97.666207,34.127315],[97.699827,34.133816],[97.739051,34.153162],[97.787567,34.171188],[97.796724,34.199497],[97.835401,34.208235],[97.889384,34.204523],[97.895261,34.208853],[97.948561,34.19184],[98.012658,34.145811],[98.028648,34.122903],[98.050378,34.114698],[98.098211,34.122981],[98.143174,34.104248],[98.158071,34.107035],[98.197704,34.092092],[98.207954,34.078618],[98.228864,34.086284],[98.256198,34.08311],[98.349268,34.09426],[98.401338,34.087911],[98.392728,34.07219],[98.396828,34.052981],[98.428125,34.02904],[98.440561,33.992226],[98.432225,33.963228],[98.415005,33.956559],[98.408855,33.935616],[98.424161,33.914669],[98.422658,33.892553],[98.406941,33.867247],[98.439468,33.841546],[98.463521,33.84838],[98.492905,33.796026],[98.493451,33.769371],[98.517778,33.773957],[98.539645,33.746673],[98.581738,33.732211],[98.596088,33.717125],[98.595952,33.698457],[98.610575,33.682976],[98.652395,33.65543],[98.656632,33.647335],[98.617545,33.637216],[98.622738,33.6102],[98.652532,33.595015],[98.657862,33.576788],[98.648022,33.548818],[98.666608,33.545623],[98.680002,33.521541],[98.725512,33.503221],[98.722915,33.486145],[98.742185,33.477723],[98.744235,33.454323],[98.733985,33.410237],[98.754622,33.387288],[98.779222,33.371673],[98.783458,33.344027],[98.764325,33.321061],[98.774028,33.301839],[98.759678,33.27722],[98.785645,33.276829],[98.808605,33.263226],[98.814209,33.249857],[98.804369,33.220139],[98.810245,33.207153],[98.830882,33.196826],[98.829652,33.181334],[98.860675,33.150105],[98.895662,33.135074],[98.902769,33.125913],[98.935569,33.115654],[98.966045,33.116046],[98.969872,33.099521],[99.014562,33.081347],[99.025769,33.095056],[99.066359,33.077822],[99.092736,33.078135],[99.102029,33.061994],[99.113509,33.064267],[99.124579,33.046008],[99.147539,33.050396],[99.179382,33.044832],[99.208629,33.018651],[99.215189,32.990188],[99.234732,32.983364],[99.233229,32.954419],[99.248946,32.951516],[99.245666,32.928368],[99.259469,32.907961],[99.269036,32.878599],[99.284206,32.885352],[99.327256,32.881504],[99.343519,32.895244],[99.354043,32.885509],[99.376183,32.899797],[99.435359,32.877185],[99.452716,32.862422],[99.490163,32.850955],[99.532393,32.848048],[99.557129,32.840114],[99.581729,32.81348],[99.586513,32.792654],[99.607423,32.780863],[99.640086,32.790767],[99.651293,32.772137],[99.706233,32.764118],[99.717713,32.732191],[99.739443,32.732505],[99.73712,32.745325],[99.760216,32.769936],[99.769783,32.802321],[99.766913,32.823537],[99.79206,32.883075],[99.77443,32.922482],[99.763633,32.925307],[99.77525,32.952301],[99.788233,32.956616],[99.802856,32.941944],[99.832376,32.951516],[99.85438,32.944847],[99.863673,32.980227],[99.87775,32.993717],[99.88267,33.025158],[99.87734,33.045537],[99.90276,33.047105],[99.906723,33.027196],[99.921073,33.006969],[99.94745,32.986894],[99.956607,32.948064],[99.969453,32.93959],[100.002527,32.94163],[100.038333,32.929153],[100.029587,32.895872],[100.066077,32.895951],[100.08234,32.885194],[100.088627,32.864228],[100.109263,32.862265],[100.109673,32.846556],[100.123203,32.837286],[100.117053,32.802478],[100.139194,32.724404],[100.125253,32.714807],[100.087943,32.669089],[100.105437,32.656731],[100.109673,32.64012],[100.13195,32.632483],[100.18812,32.630829],[100.209987,32.605865],[100.229804,32.650512],[100.230897,32.696239],[100.238277,32.721572],[100.262194,32.729123],[100.26438,32.742729],[100.33449,32.718268],[100.402277,32.755075],[100.391207,32.719527],[100.37795,32.702927],[100.392984,32.697184],[100.420317,32.731797],[100.449974,32.694115],[100.470201,32.694508],[100.476351,32.672474],[100.487967,32.667909],[100.516531,32.630042],[100.508877,32.609724],[100.525277,32.611142],[100.528967,32.589559],[100.538534,32.59594],[100.544821,32.570099],[100.564911,32.569626],[100.572017,32.554654],[100.615341,32.545118],[100.645544,32.526436],[100.668094,32.52683],[100.658117,32.546694],[100.658664,32.599721],[100.666181,32.624372],[100.676431,32.627837],[100.704038,32.611221],[100.717568,32.617048],[100.709231,32.649804],[100.684768,32.671057],[100.690644,32.678062],[100.752008,32.650591],[100.765811,32.663737],[100.773601,32.640986],[100.799704,32.654921],[100.806948,32.646891],[100.834008,32.648938],[100.860658,32.635475],[100.887581,32.632562],[100.897968,32.61571],[100.914778,32.616576],[100.932134,32.600666],[100.956871,32.620907],[100.997188,32.627837],[101.030535,32.660589],[101.076728,32.68302],[101.083971,32.671923],[101.112808,32.671844],[101.112261,32.636656],[101.130301,32.660589],[101.157498,32.661533],[101.190161,32.686561],[101.223098,32.72582],[101.224328,32.771508],[101.237722,32.825109],[101.222552,32.838308],[101.223782,32.85551],[101.176358,32.894145],[101.123878,32.910002],[101.133718,32.947986],[101.129071,32.989482],[101.184148,32.984227],[101.172258,33.008537],[101.184558,33.041462],[101.159411,33.057528],[101.146975,33.056666],[101.143148,33.082757],[101.168568,33.097562],[101.163511,33.119413],[101.151211,33.132412],[101.158728,33.144234],[101.144515,33.150731],[101.120325,33.186655],[101.127841,33.223815],[101.153808,33.234139],[101.183465,33.270106],[101.204101,33.268464],[101.216675,33.255877],[101.222005,33.26909],[101.244418,33.262601],[101.272572,33.268386],[101.296488,33.262366],[101.310565,33.244461],[101.328332,33.238205],[101.328878,33.223502],[101.374388,33.171395],[101.382725,33.152845],[101.393932,33.157854],[101.396255,33.187202],[101.386825,33.207388],[101.405275,33.225614],[101.428235,33.230306],[101.475932,33.223267],[101.485362,33.226943],[101.517069,33.19088],[101.557522,33.167169],[101.567089,33.154645],[101.633372,33.1014],[101.660979,33.1357],[101.654145,33.162786],[101.686672,33.185403],[101.680659,33.20199],[101.710042,33.212942],[101.740109,33.270653],[101.706762,33.298557],[101.678199,33.297463],[101.649362,33.324576],[101.662755,33.381667],[101.692959,33.42249],[101.695692,33.433961],[101.734505,33.445118],[101.759516,33.444728],[101.769219,33.45604],[101.775779,33.491993],[101.777282,33.535492],[101.759106,33.535648],[101.749402,33.506106],[101.735872,33.49636],[101.700612,33.501662],[101.677105,33.496438],[101.650045,33.502207],[101.631459,33.492227],[101.622575,33.502363],[101.614785,33.53861],[101.611779,33.590108],[101.616972,33.598831],[101.602622,33.63239],[101.588682,33.638072],[101.582532,33.67504],[101.557932,33.669671],[101.542215,33.69519],[101.491649,33.699935],[101.469918,33.686244],[101.428235,33.680175],[101.428508,33.659399],[101.385458,33.644767],[101.349788,33.657142],[101.302912,33.657998],[101.259588,33.669515],[101.237038,33.685621],[101.217768,33.669827],[101.166655,33.660021],[101.178271,33.683754],[101.164741,33.692934],[101.164195,33.722646],[101.188931,33.744651],[101.184148,33.762531],[101.191665,33.785925],[101.150118,33.830518],[101.153535,33.844497],[101.114448,33.850632],[101.109118,33.860881],[101.087388,33.856611],[101.054315,33.863598],[101.045021,33.884403],[101.032311,33.88254],[101.019328,33.897132],[100.999101,33.889603],[100.975731,33.919402],[100.965618,33.946786],[100.927078,33.976255],[100.934731,33.989823],[100.909311,34.007419],[100.896738,34.035859],[100.879381,34.039113],[100.870224,34.083961],[100.849041,34.089614],[100.839201,34.114389],[100.806264,34.155406],[100.788634,34.159739],[100.764991,34.177841],[100.780844,34.195939],[100.809681,34.247119],[100.799431,34.262267],[100.806128,34.288149],[100.816241,34.293711],[100.821844,34.317345],[100.868448,34.332788],[100.897284,34.375783],[100.916144,34.373776],[100.950585,34.383654],[100.962611,34.422457],[100.976278,34.447443],[100.977645,34.480282],[100.970675,34.499934],[100.970128,34.542457],[100.946758,34.539761],[100.916691,34.570178],[100.908354,34.605894],[100.910268,34.626208],[100.892638,34.638056],[100.889631,34.663591],[100.878698,34.709413],[100.852868,34.721556],[100.793281,34.694962],[100.767724,34.672435],[100.745174,34.67997],[100.731098,34.669128],[100.695564,34.673204],[100.683948,34.692118],[100.659347,34.710643],[100.644177,34.713794],[100.642947,34.730855],[100.598257,34.703187],[100.587871,34.734389],[100.556301,34.741458],[100.517077,34.780402],[100.485371,34.806355],[100.465554,34.811498],[100.421957,34.812803],[100.387654,34.823626],[100.356494,34.821477],[100.317407,34.850409],[100.32301,34.865907],[100.318364,34.89283],[100.298137,34.897048],[100.298,34.910237],[100.25208,34.890759],[100.186207,34.895361],[100.14794,34.888535],[100.10612,34.886541],[100.08849,34.844885],[100.07414,34.82969],[100.048173,34.816334],[100.026033,34.818637],[100.024667,34.806432],[99.969453,34.807967],[99.950867,34.819251],[99.926813,34.819942],[99.903033,34.835292],[99.872147,34.842276],[99.852876,34.831455],[99.81543,34.831225],[99.799166,34.849796],[99.77525,34.85977],[99.738213,34.864757],[99.707873,34.901802],[99.672066,34.910467],[99.653753,34.936148],[99.592936,34.939598],[99.553713,34.95983],[99.528566,34.954389],[99.477453,34.965807],[99.440553,35.00541],[99.416226,35.042163],[99.395999,35.054716],[99.370579,35.098408],[99.344749,35.102998],[99.340513,35.134201],[99.331766,35.134125],[99.293499,35.17273],[99.266302,35.212616],[99.234322,35.221171],[99.219699,35.24538],[99.200976,35.250649],[99.181706,35.270575],[99.179382,35.300035],[99.208492,35.333223],[99.233092,35.345883],[99.256326,35.370437],[99.291996,35.376079],[99.310719,35.389952],[99.312086,35.412435],[99.300606,35.42935],[99.280652,35.433159],[99.278192,35.445195],[99.221202,35.450451],[99.201796,35.462027],[99.213139,35.48015],[99.265756,35.474744],[99.278466,35.499715],[99.313179,35.5141],[99.337779,35.515775],[99.321516,35.530842],[99.314682,35.550471],[99.295002,35.565607],[99.211089,35.604615],[99.192639,35.616169],[99.180749,35.608112],[99.156012,35.619818],[99.125672,35.617537],[99.106266,35.592907],[99.078386,35.586216],[99.043809,35.592147],[99.029185,35.600814],[99.010462,35.583479],[98.978072,35.586672],[98.911105,35.600054],[98.900719,35.592299],[98.912472,35.580589],[98.865049,35.569258],[98.817079,35.600206],[98.793025,35.603551],[98.765692,35.593896],[98.771158,35.581502],[98.760772,35.538983],[98.714442,35.516536],[98.678362,35.51509],[98.637772,35.49865],[98.617682,35.474211],[98.594585,35.461266],[98.497551,35.44809],[98.455731,35.470328],[98.434685,35.47345],[98.396828,35.461647],[98.356921,35.459895],[98.331365,35.473145],[98.313325,35.461494],[98.296515,35.476419],[98.309088,35.502684],[98.260981,35.512959],[98.253055,35.493702],[98.220118,35.46515],[98.224081,35.43613],[98.203718,35.406872],[98.180758,35.337723],[98.179118,35.320102],[98.129234,35.332612],[98.106411,35.320712],[98.088234,35.32384],[98.073064,35.293473],[98.059944,35.295762],[98.021404,35.285536],[97.942821,35.287138],[97.917537,35.306521],[97.894304,35.295991],[97.867107,35.31499],[97.838681,35.314304],[97.818454,35.325747],[97.787977,35.322696],[97.767341,35.330477],[97.750667,35.348553],[97.71035,35.34474],[97.667437,35.349315],[97.6673,35.376841],[97.638327,35.386522],[97.617007,35.376612],[97.609217,35.327273],[97.61933,35.273323],[97.612907,35.259277],[97.59104,35.257368],[97.560837,35.271262],[97.534324,35.266377],[97.493734,35.276834],[97.458474,35.292633],[97.412827,35.302248],[97.375107,35.294999],[97.369913,35.304308],[97.348183,35.298814],[97.3434,35.262712],[97.370733,35.243319],[97.371143,35.232398],[97.338207,35.2104],[97.27616,35.148728],[97.24172,35.077292],[97.225593,35.074537],[97.204,35.036728],[97.21753,35.027694],[97.2204,35.005257],[97.121316,34.950557],[97.079496,34.911617],[97.047653,34.91384],[97.0072,34.898658],[97.023053,34.873042],[97.017996,34.856624],[96.996813,34.841201],[96.995993,34.823933],[96.956086,34.812036],[96.935313,34.785471],[96.95144,34.74868],[96.98096,34.728473],[97.003373,34.723939],[97.00064,34.739537],[97.011573,34.756208],[97.075123,34.745914],[97.113116,34.723401],[97.138536,34.725168],[97.118446,34.684737],[97.073483,34.674665],[97.064736,34.656901],[97.07362,34.64521],[97.105463,34.630363],[97.129106,34.633209],[97.148923,34.620053],[97.197167,34.607433],[97.200037,34.563711],[97.181587,34.525897],[97.1589,34.51881],[97.146326,34.503401],[97.177897,34.485292],[97.209603,34.498007],[97.225047,34.497237],[97.275203,34.481207],[97.302127,34.479897],[97.324403,34.46556],[97.32741,34.448907],[97.346953,34.428627],[97.31757,34.413356],[97.30363,34.396693],[97.316203,34.375937],[97.338343,34.375242],[97.36021,34.362508],[97.40408,34.322519],[97.4131,34.294793],[97.452734,34.286759],[97.474874,34.266826],[97.47952,34.237303],[97.49633,34.20576],[97.526944,34.199342],[97.541157,34.178305],[97.567944,34.168249],[97.582567,34.174051],[97.588717,34.205451],[97.607167,34.217668],[97.627667,34.199651],[97.637644,34.158501],[97.66402,34.119498]]]]}},{"type":"Feature","properties":{"adcode":632700,"name":"玉树藏族自治州","center":[97.008522,33.004049],"centroid":[94.307972,34.231012],"childrenNum":6,"level":"city","parent":{"adcode":630000},"subFeatureIndex":6,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[92.560881,32.731876],[92.600104,32.743594],[92.609398,32.728022],[92.624431,32.732505],[92.636184,32.720471],[92.667754,32.731876],[92.687981,32.766005],[92.711761,32.753817],[92.756314,32.743201],[92.789388,32.720077],[92.822734,32.729752],[92.876991,32.696948],[92.879178,32.710795],[92.913891,32.704579],[92.938355,32.720077],[92.964458,32.71465],[92.983455,32.721965],[93.000538,32.740842],[93.020901,32.734472],[93.023771,32.703085],[93.047551,32.693958],[93.048645,32.670113],[93.067231,32.626498],[93.107411,32.637286],[93.117251,32.647442],[93.159618,32.644765],[93.175335,32.670427],[93.210458,32.655314],[93.239705,32.66232],[93.262802,32.625238],[93.302982,32.617915],[93.313368,32.60295],[93.308448,32.580421],[93.338378,32.571202],[93.385665,32.525175],[93.393045,32.54094],[93.413955,32.557806],[93.446892,32.561983],[93.463565,32.554812],[93.474635,32.530457],[93.477095,32.503966],[93.501695,32.503414],[93.516455,32.475969],[93.534359,32.48638],[93.554995,32.485986],[93.572489,32.501206],[93.620459,32.523992],[93.651482,32.571675],[93.678679,32.56805],[93.722002,32.578136],[93.751659,32.563086],[93.763002,32.568602],[93.822589,32.547561],[93.827782,32.520997],[93.850469,32.510905],[93.868646,32.473918],[93.898029,32.472656],[93.913199,32.462085],[93.929052,32.476679],[93.959939,32.48496],[93.978799,32.459876],[93.996293,32.463269],[94.011189,32.446148],[94.031826,32.449147],[94.052736,32.470605],[94.091823,32.463348],[94.102346,32.447726],[94.137606,32.433839],[94.153049,32.454512],[94.180793,32.455932],[94.187899,32.470132],[94.177649,32.483146],[94.196783,32.516187],[94.232453,32.510037],[94.244753,32.516976],[94.292176,32.502783],[94.294226,32.519814],[94.35354,32.5329],[94.371306,32.52486],[94.38347,32.549531],[94.37691,32.562219],[94.395223,32.594207],[94.434173,32.563165],[94.46342,32.572463],[94.46219,32.605235],[94.479273,32.607283],[94.485697,32.594758],[94.50893,32.603738],[94.535443,32.598224],[94.565647,32.627443],[94.5938,32.628939],[94.60118,32.663344],[94.614573,32.673576],[94.63849,32.645474],[94.690833,32.612638],[94.70368,32.598303],[94.71721,32.604132],[94.737573,32.587432],[94.743997,32.562298],[94.772014,32.555284],[94.757664,32.546063],[94.76026,32.527146],[94.785817,32.524465],[94.806864,32.486301],[94.842124,32.47589],[94.854287,32.463348],[94.889957,32.47234],[94.903487,32.45317],[94.912507,32.415686],[94.944214,32.40432],[94.980704,32.409609],[94.994234,32.420659],[95.057237,32.39461],[95.075277,32.376055],[95.081701,32.384741],[95.131721,32.387109],[95.131037,32.398873],[95.154544,32.401715],[95.153041,32.387188],[95.172721,32.393425],[95.207707,32.388215],[95.218367,32.396978],[95.228754,32.363104],[95.242967,32.363735],[95.261691,32.348097],[95.227251,32.344937],[95.193494,32.332298],[95.153997,32.332456],[95.136641,32.323923],[95.096871,32.322185],[95.081017,32.297925],[95.079514,32.280615],[95.105481,32.259507],[95.132951,32.264646],[95.139237,32.274291],[95.178051,32.282117],[95.207434,32.297688],[95.214541,32.321474],[95.241054,32.320526],[95.239414,32.286939],[95.256497,32.254288],[95.263877,32.211817],[95.280824,32.2009],[95.269891,32.194807],[95.285744,32.172413],[95.308021,32.164023],[95.312804,32.148905],[95.345194,32.154762],[95.367061,32.151913],[95.365284,32.176686],[95.389064,32.186103],[95.407924,32.179852],[95.424734,32.159591],[95.440178,32.157533],[95.434164,32.124361],[95.445644,32.11763],[95.454664,32.062497],[95.423504,32.05172],[95.421318,32.033888],[95.454391,32.007886],[95.431431,31.999244],[95.395624,32.001464],[95.376491,31.990046],[95.377311,31.977832],[95.361048,31.959193],[95.371434,31.944992],[95.368428,31.929123],[95.408744,31.918648],[95.405738,31.89944],[95.422138,31.881896],[95.419268,31.872209],[95.441818,31.830037],[95.461088,31.815896],[95.456031,31.803739],[95.480084,31.795713],[95.500994,31.774096],[95.512884,31.749133],[95.546504,31.739831],[95.578621,31.748815],[95.581491,31.768452],[95.605818,31.768929],[95.614701,31.783395],[95.653651,31.778944],[95.716518,31.763682],[95.736198,31.76408],[95.779658,31.749054],[95.801935,31.703485],[95.825031,31.682004],[95.853322,31.714143],[95.846215,31.736411],[95.857832,31.742614],[95.868628,31.772903],[95.886805,31.792296],[95.899242,31.817167],[95.943522,31.81963],[95.983292,31.816452],[95.988895,31.787448],[96.046432,31.732038],[96.064882,31.720586],[96.106975,31.710246],[96.108479,31.699428],[96.135675,31.702053],[96.148385,31.68654],[96.153032,31.652322],[96.148385,31.631148],[96.160412,31.601051],[96.193485,31.60567],[96.204965,31.598981],[96.225192,31.624939],[96.222869,31.653038],[96.248972,31.661395],[96.252662,31.696166],[96.222322,31.736173],[96.230932,31.749769],[96.206742,31.765749],[96.177905,31.775606],[96.183099,31.835836],[96.202505,31.840761],[96.214532,31.876497],[96.189112,31.902853],[96.218769,31.905393],[96.253072,31.929758],[96.294072,31.919282],[96.351882,31.916108],[96.368556,31.92452],[96.389329,31.919917],[96.408326,31.863713],[96.407779,31.845764],[96.431969,31.817247],[96.433336,31.799687],[96.465042,31.776639],[96.519162,31.749213],[96.526952,31.738558],[96.565219,31.713189],[96.576016,31.71295],[96.616059,31.736809],[96.632322,31.71812],[96.661159,31.705712],[96.668403,31.725039],[96.691773,31.722256],[96.722796,31.687017],[96.753956,31.673888],[96.775139,31.673888],[96.790583,31.698394],[96.821879,31.700303],[96.837186,31.715495],[96.833769,31.739194],[96.819283,31.744442],[96.802473,31.772426],[96.798373,31.793806],[96.766119,31.818915],[96.760379,31.860457],[96.794409,31.869271],[96.809579,31.89817],[96.782246,31.916187],[96.774729,31.937137],[96.755186,31.943405],[96.741246,31.973867],[96.743023,32.00075],[96.721019,32.017955],[96.732773,32.026754],[96.747123,32.013674],[96.783203,32.011058],[96.796869,32.018272],[96.840466,31.997737],[96.847299,31.978784],[96.868619,31.964904],[96.863153,31.995676],[96.889119,32.002891],[96.894449,32.013753],[96.94283,31.986953],[96.9662,32.009393],[96.946656,32.022394],[96.93586,32.048154],[96.95718,32.062577],[97.006653,32.067806],[97.028793,32.048788],[97.075123,32.048947],[97.099586,32.037296],[97.130746,32.043875],[97.16956,32.024218],[97.18842,32.055128],[97.213293,32.042924],[97.23188,32.044826],[97.232973,32.065033],[97.201813,32.092048],[97.219717,32.109077],[97.25607,32.072877],[97.307867,32.073907],[97.293243,32.096722],[97.313743,32.128953],[97.271377,32.141226],[97.275887,32.156108],[97.264133,32.182622],[97.276707,32.208495],[97.281627,32.244008],[97.299667,32.295001],[97.31921,32.302825],[97.344357,32.296897],[97.342307,32.279904],[97.367043,32.273817],[97.417883,32.300928],[97.4131,32.327478],[97.416243,32.36026],[97.386587,32.428078],[97.341487,32.439757],[97.349003,32.463032],[97.366907,32.473445],[97.388773,32.500102],[97.35078,32.517055],[97.334517,32.514532],[97.3311,32.537551],[97.34176,32.557412],[97.35611,32.563638],[97.374287,32.5463],[97.411733,32.56348],[97.41187,32.575063],[97.448634,32.586723],[97.464624,32.570966],[97.46394,32.554733],[97.502207,32.531008],[97.531864,32.52549],[97.540884,32.536999],[97.58407,32.522494],[97.591314,32.530693],[97.62097,32.519183],[97.62999,32.524387],[97.669624,32.517212],[97.684384,32.530457],[97.70338,32.523362],[97.731124,32.527303],[97.705567,32.5329],[97.631357,32.575457],[97.610584,32.596019],[97.606347,32.615237],[97.543754,32.621695],[97.530087,32.639412],[97.501524,32.646497],[97.470774,32.664131],[97.42376,32.704973],[97.424853,32.727786],[97.385767,32.780234],[97.380163,32.826287],[97.391233,32.827623],[97.38276,32.855353],[97.387133,32.866427],[97.375927,32.886137],[97.354333,32.887471],[97.350097,32.903958],[97.36185,32.907019],[97.36964,32.926563],[97.362397,32.941002],[97.37579,32.956694],[97.410093,32.961951],[97.447404,32.976306],[97.465034,32.97207],[97.5238,32.988619],[97.500157,33.011595],[97.541977,33.037464],[97.53733,33.058233],[97.516967,33.097484],[97.48772,33.106726],[97.49797,33.137892],[97.485944,33.1476],[97.487994,33.168186],[97.51806,33.182586],[97.529677,33.204102],[97.54676,33.203711],[97.576554,33.223345],[97.577647,33.234451],[97.60662,33.262601],[97.605937,33.283395],[97.621654,33.334263],[97.636824,33.344574],[97.676047,33.341059],[97.67632,33.357539],[97.702287,33.359725],[97.722104,33.38721],[97.749984,33.397358],[97.753537,33.410159],[97.711307,33.42647],[97.674817,33.433024],[97.664977,33.447692],[97.64516,33.449019],[97.62548,33.4615],[97.60457,33.451827],[97.582294,33.468754],[97.552637,33.465634],[97.542114,33.492695],[97.512047,33.519436],[97.518607,33.532141],[97.525167,33.575776],[97.472824,33.587382],[97.450274,33.582007],[97.437153,33.600232],[97.415833,33.605528],[97.405993,33.628497],[97.435513,33.680331],[97.417883,33.728556],[97.423213,33.754913],[97.40982,33.767661],[97.406403,33.795171],[97.36882,33.824149],[97.371827,33.842012],[97.398067,33.848302],[97.388773,33.886111],[97.46066,33.887352],[97.46845,33.902098],[97.4828,33.896976],[97.504804,33.912264],[97.52503,33.902564],[97.601837,33.930031],[97.633954,33.919092],[97.644477,33.943373],[97.659784,33.956326],[97.66156,33.975092],[97.652814,33.998427],[97.661424,34.013696],[97.68739,34.016641],[97.702287,34.036711],[97.695044,34.076605],[97.681787,34.081948],[97.66402,34.119498],[97.637644,34.158501],[97.627667,34.199651],[97.607167,34.217668],[97.588717,34.205451],[97.582567,34.174051],[97.567944,34.168249],[97.541157,34.178305],[97.526944,34.199342],[97.49633,34.20576],[97.47952,34.237303],[97.474874,34.266826],[97.452734,34.286759],[97.4131,34.294793],[97.40408,34.322519],[97.36021,34.362508],[97.338343,34.375242],[97.316203,34.375937],[97.30363,34.396693],[97.31757,34.413356],[97.346953,34.428627],[97.32741,34.448907],[97.324403,34.46556],[97.302127,34.479897],[97.275203,34.481207],[97.225047,34.497237],[97.209603,34.498007],[97.177897,34.485292],[97.146326,34.503401],[97.1589,34.51881],[97.181587,34.525897],[97.200037,34.563711],[97.197167,34.607433],[97.148923,34.620053],[97.129106,34.633209],[97.105463,34.630363],[97.07362,34.64521],[97.064736,34.656901],[97.073483,34.674665],[97.118446,34.684737],[97.138536,34.725168],[97.113116,34.723401],[97.075123,34.745914],[97.011573,34.756208],[97.00064,34.739537],[97.003373,34.723939],[96.98096,34.728473],[96.95144,34.74868],[96.935313,34.785471],[96.956086,34.812036],[96.995993,34.823933],[96.996813,34.841201],[97.017996,34.856624],[97.023053,34.873042],[97.0072,34.898658],[97.047653,34.91384],[97.079496,34.911617],[97.121316,34.950557],[97.2204,35.005257],[97.21753,35.027694],[97.204,35.036728],[97.225593,35.074537],[97.24172,35.077292],[97.27616,35.148728],[97.338207,35.2104],[97.371143,35.232398],[97.370733,35.243319],[97.3434,35.262712],[97.348183,35.298814],[97.32126,35.298814],[97.311283,35.332536],[97.29666,35.338104],[97.278073,35.318729],[97.24049,35.321704],[97.21794,35.334367],[97.17735,35.333451],[97.12774,35.342604],[97.097946,35.355645],[97.0769,35.381872],[97.056263,35.390791],[97.043416,35.407863],[97.044783,35.432855],[97.017723,35.452507],[97.000366,35.472688],[96.963603,35.486013],[96.94611,35.46652],[96.941053,35.490504],[96.929846,35.498497],[96.894449,35.481064],[96.850989,35.496975],[96.843883,35.509991],[96.825569,35.500933],[96.787576,35.505881],[96.771996,35.527113],[96.712546,35.565151],[96.707626,35.585],[96.674963,35.592071],[96.662936,35.583327],[96.640113,35.58941],[96.617289,35.582414],[96.581346,35.58135],[96.566449,35.602182],[96.542942,35.614573],[96.526816,35.611381],[96.465999,35.622326],[96.441672,35.636005],[96.429509,35.634181],[96.354342,35.652493],[96.338625,35.634485],[96.293252,35.64839],[96.265645,35.642616],[96.242139,35.647783],[96.224099,35.629394],[96.203599,35.636309],[96.179819,35.632585],[96.134172,35.647707],[96.117499,35.625062],[96.072672,35.613433],[96.052445,35.554655],[95.993405,35.532364],[95.979875,35.533049],[95.968122,35.553209],[95.948988,35.569182],[95.945298,35.590854],[95.925755,35.620426],[95.917008,35.617461],[95.885165,35.636157],[95.773235,35.641856],[95.745491,35.633801],[95.736745,35.650442],[95.687818,35.648618],[95.664311,35.653937],[95.649005,35.646415],[95.633015,35.659255],[95.571105,35.653329],[95.478991,35.657887],[95.468604,35.646947],[95.460268,35.617309],[95.433754,35.60127],[95.396991,35.597773],[95.371708,35.602791],[95.357631,35.62605],[95.321004,35.640488],[95.279047,35.637677],[95.249801,35.647175],[95.211944,35.639652],[95.175181,35.647707],[95.166707,35.6727],[95.155637,35.656748],[95.174634,35.636385],[95.143201,35.629926],[95.156184,35.595872],[95.148257,35.577167],[95.118737,35.579601],[95.126937,35.535331],[95.113407,35.511665],[95.099331,35.51684],[95.090311,35.545298],[95.021294,35.552068],[95.009814,35.546135],[94.976604,35.572224],[94.94148,35.566748],[94.93164,35.579068],[94.894604,35.589562],[94.8521,35.586292],[94.838297,35.573821],[94.828184,35.583099],[94.815884,35.616473],[94.786774,35.59093],[94.768324,35.608036],[94.71803,35.607352],[94.711607,35.594124],[94.68687,35.587889],[94.649013,35.597469],[94.642317,35.606287],[94.591613,35.592831],[94.57986,35.601726],[94.50647,35.609708],[94.48884,35.602182],[94.46137,35.606135],[94.434036,35.623618],[94.407386,35.614041],[94.38429,35.617081],[94.363516,35.628862],[94.343836,35.628482],[94.31377,35.638285],[94.280423,35.633041],[94.2535,35.653861],[94.267576,35.660774],[94.239013,35.661002],[94.214003,35.648846],[94.196099,35.661837],[94.155236,35.669434],[94.122436,35.640412],[94.092916,35.64216],[94.062029,35.636461],[94.032373,35.648694],[94.008456,35.673611],[93.963493,35.688649],[93.933972,35.706568],[93.889146,35.702165],[93.850332,35.709681],[93.835846,35.722207],[93.781452,35.730556],[93.761909,35.756282],[93.726922,35.750743],[93.697539,35.751881],[93.681412,35.765008],[93.660639,35.753703],[93.627565,35.755903],[93.587112,35.771001],[93.539415,35.781241],[93.531079,35.76129],[93.516045,35.757117],[93.448532,35.77358],[93.408488,35.772139],[93.385528,35.77707],[93.265398,35.777525],[93.225492,35.790571],[93.174105,35.791329],[93.147045,35.80005],[93.086911,35.807178],[93.067095,35.841521],[93.016255,35.849175],[92.993978,35.833334],[92.915531,35.847963],[92.839818,35.867893],[92.756178,35.869181],[92.695498,35.877439],[92.591904,35.878499],[92.497057,35.894256],[92.452231,35.89827],[92.406311,35.915158],[92.369411,35.910236],[92.351234,35.896528],[92.314334,35.911372],[92.258027,35.907813],[92.151017,35.928333],[92.141314,35.935147],[92.03362,35.961639],[91.974307,35.9885],[91.967747,36.006579],[91.909937,36.015579],[91.885473,36.024957],[91.793223,36.00552],[91.763566,36.008773],[91.71956,36.020571],[91.679516,36.03713],[91.646033,36.043405],[91.63264,36.037735],[91.582893,36.060792],[91.548863,36.09525],[91.571413,36.155064],[91.52768,36.133017],[91.523579,36.120556],[91.477249,36.091699],[91.391969,36.065327],[91.316393,36.07432],[91.291929,36.081348],[91.255029,36.107942],[91.229882,36.117761],[91.146652,36.139813],[91.122599,36.154913],[91.104832,36.156725],[91.124786,36.115495],[91.111939,36.095024],[91.081326,36.088375],[91.039642,36.09389],[91.033219,36.10001],[90.979235,36.106809],[90.964612,36.09525],[90.949989,36.059129],[90.927302,36.031308],[90.872225,36.026393],[90.852409,36.017168],[90.815919,36.035769],[90.787355,36.065175],[90.776285,36.086335],[90.742392,36.09593],[90.714238,36.115118],[90.662988,36.133923],[90.615565,36.126447],[90.568825,36.132413],[90.550922,36.145098],[90.527005,36.148496],[90.490788,36.141172],[90.479718,36.132262],[90.423958,36.133998],[90.373938,36.147514],[90.345375,36.143286],[90.329248,36.157857],[90.236725,36.160575],[90.198185,36.187444],[90.151854,36.196197],[90.130124,36.207816],[90.133541,36.227278],[90.145704,36.238967],[90.128484,36.246735],[90.058374,36.255556],[90.043478,36.276589],[90.003571,36.278549],[90.027761,36.259854],[90.019971,36.2137],[90.009038,36.184274],[89.982388,36.15597],[89.946581,36.141549],[89.937288,36.130072],[89.946308,36.111492],[89.947128,36.069937],[89.912277,36.079232],[89.859661,36.081726],[89.848181,36.075907],[89.812237,36.079534],[89.794197,36.070995],[89.730921,36.083464],[89.712334,36.092757],[89.689374,36.091246],[89.658897,36.069483],[89.643727,36.068274],[89.63785,36.050134],[89.605187,36.038264],[89.562547,36.035543],[89.514167,36.025335],[89.474124,36.022613],[89.440367,36.031762],[89.417544,36.044766],[89.404697,36.021554],[89.4349,35.993191],[89.426974,35.96686],[89.43449,35.947107],[89.421507,35.932497],[89.428067,35.91743],[89.472757,35.900466],[89.489977,35.903496],[89.541637,35.88206],[89.531797,35.874408],[89.55052,35.857133],[89.607237,35.861149],[89.660264,35.84819],[89.707551,35.849251],[89.741171,35.8588],[89.778754,35.861528],[89.801987,35.847811],[89.786681,35.833638],[89.781624,35.807709],[89.767684,35.798989],[89.781624,35.777904],[89.779984,35.763414],[89.763857,35.765766],[89.746911,35.754689],[89.752514,35.731771],[89.740761,35.715527],[89.748824,35.662749],[89.725317,35.649834],[89.742401,35.621794],[89.765907,35.59975],[89.764267,35.587357],[89.744587,35.579753],[89.719167,35.583935],[89.709191,35.576863],[89.700034,35.537461],[89.705364,35.507403],[89.720124,35.50177],[89.741034,35.507327],[89.765224,35.48251],[89.744177,35.479769],[89.738984,35.468653],[89.686367,35.414721],[89.658487,35.425541],[89.617487,35.410835],[89.59931,35.391934],[89.536034,35.369141],[89.507334,35.372496],[89.49722,35.361364],[89.516217,35.333299],[89.49517,35.293549],[89.531797,35.276376],[89.48574,35.256757],[89.45868,35.238508],[89.45048,35.223921],[89.469067,35.214602],[89.482597,35.189848],[89.504464,35.165698],[89.513074,35.139324],[89.540817,35.120972],[89.583047,35.116613],[89.593024,35.104222],[89.5907,35.057931],[89.581544,35.019501],[89.569244,35.014524],[89.57676,34.99959],[89.56118,34.931089],[89.584414,34.907783],[89.579084,34.895207],[89.62432,34.89237],[89.621177,34.881556],[89.64154,34.882246],[89.699214,34.906633],[89.711787,34.920587],[89.747047,34.903566],[89.787501,34.921737],[89.821394,34.902876],[89.830687,34.898428],[89.867451,34.906786],[89.866084,34.900192],[89.904487,34.871738],[89.928131,34.872505],[89.946581,34.890989],[89.968721,34.900499],[90.019834,34.91338],[90.089808,34.902876],[90.105388,34.877414],[90.121241,34.866291],[90.167708,34.879408],[90.185065,34.892447],[90.183425,34.907783],[90.203241,34.932009],[90.221145,34.94228],[90.252578,34.9432],[90.272395,34.92718],[90.305058,34.922887],[90.340591,34.936455],[90.375031,34.931549],[90.422455,34.939598],[90.443365,34.927027],[90.535888,34.924344],[90.570602,34.921124],[90.607365,34.925417],[90.638252,34.919284],[90.653832,34.895898],[90.679798,34.903183],[90.717108,34.900115],[90.728589,34.887538],[90.781342,34.890453],[90.846395,34.860921],[90.876872,34.853095],[90.918829,34.834448],[90.923885,34.811729],[90.948212,34.79814],[90.942062,34.77326],[90.961059,34.755747],[91.003836,34.745146],[91.024336,34.766271],[91.060006,34.76243],[91.059186,34.796451],[91.096496,34.79622],[91.126426,34.781017],[91.166606,34.799522],[91.232752,34.802823],[91.263776,34.789387],[91.321586,34.789924],[91.350013,34.761969],[91.453469,34.724323],[91.54572,34.708491],[91.591776,34.695347],[91.675416,34.661746],[91.704116,34.670513],[91.72653,34.667206],[91.738556,34.646363],[91.760833,34.625131],[91.808257,34.625054],[91.82862,34.620745],[91.85363,34.592656],[91.879597,34.585113],[91.95859,34.576568],[91.96638,34.555318],[91.930573,34.517577],[91.940277,34.487218],[92.00492,34.473885],[92.066284,34.442431],[92.099357,34.434719],[92.167007,34.403019],[92.204864,34.398545],[92.23206,34.377635],[92.298617,34.38265],[92.365311,34.379332],[92.424214,34.389749],[92.438701,34.380799],[92.491317,34.378252],[92.513731,34.415901],[92.546394,34.401939],[92.540791,34.37995],[92.554457,34.342053],[92.578647,34.29039],[92.592861,34.276406],[92.612814,34.239545],[92.631811,34.187123],[92.644658,34.173045],[92.661604,34.13846],[92.652584,34.121897],[92.690851,34.092789],[92.690578,34.083497],[92.713401,34.070331],[92.735268,34.076837],[92.753854,34.068008],[92.803464,34.082568],[92.826834,34.071106],[92.833531,34.078695],[92.870568,34.090001],[92.911841,34.093253],[92.902685,34.068705],[92.878085,34.060572],[92.868654,34.044149],[92.852528,34.045234],[92.829568,34.030513],[92.782281,34.035704],[92.758228,34.002535],[92.739914,33.994629],[92.706704,33.944925],[92.723651,33.922816],[92.742784,33.915755],[92.741828,33.899149],[92.752761,33.869421],[92.741691,33.847448],[92.746338,33.814827],[92.761918,33.791597],[92.752761,33.765329],[92.756724,33.746362],[92.773808,33.723579],[92.756451,33.703747],[92.797724,33.68461],[92.784331,33.636827],[92.812894,33.616429],[92.815081,33.593768],[92.807564,33.57079],[92.819044,33.555208],[92.851981,33.534167],[92.855944,33.512732],[92.848974,33.499167],[92.815491,33.477333],[92.793898,33.469378],[92.760278,33.473979],[92.734311,33.458224],[92.698094,33.472965],[92.684564,33.446444],[92.657231,33.409145],[92.655591,33.381979],[92.620468,33.367534],[92.599147,33.35215],[92.610628,33.319029],[92.598601,33.301604],[92.620878,33.283551],[92.633178,33.28488],[92.679098,33.266979],[92.708208,33.249935],[92.721054,33.232105],[92.710258,33.217948],[92.711898,33.191349],[92.670624,33.147287],[92.673494,33.133038],[92.718048,33.101635],[92.731851,33.061132],[92.729801,33.038248],[92.703288,33.023511],[92.689621,32.997951],[92.697001,32.982972],[92.674588,32.952615],[92.656548,32.940845],[92.649031,32.902702],[92.629761,32.886843],[92.596277,32.869961],[92.594637,32.821416],[92.581381,32.75484],[92.560881,32.731876]]]]}},{"type":"Feature","properties":{"adcode":632800,"name":"海西蒙古族藏族自治州","center":[97.370785,37.374663],"centroid":[95.116879,37.239284],"childrenNum":7,"level":"city","parent":{"adcode":630000},"subFeatureIndex":7,"acroutes":[100000,630000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[98.093291,38.786307],[98.068691,38.816255],[98.050924,38.819242],[98.027828,38.835558],[98.011974,38.858059],[97.971931,38.863301],[97.955257,38.873638],[97.908791,38.884484],[97.875854,38.898238],[97.828977,38.93003],[97.793307,38.942903],[97.749711,38.949593],[97.725384,38.961153],[97.701467,38.963262],[97.690397,38.97591],[97.686844,39.005488],[97.62015,39.031785],[97.581474,39.052336],[97.53692,39.069252],[97.500567,39.07818],[97.458884,39.118089],[97.430457,39.123746],[97.401347,39.146736],[97.375653,39.140355],[97.342033,39.168269],[97.300623,39.165949],[97.22081,39.193056],[97.163546,39.194867],[97.141133,39.19994],[97.0605,39.197621],[97.047516,39.207765],[97.01745,39.208344],[96.963056,39.198346],[96.983693,39.178562],[96.997223,39.152827],[97.011573,39.140065],[96.96989,39.097774],[96.969206,39.079051],[96.957726,39.041661],[96.965653,39.016967],[96.948706,38.992336],[96.939003,38.955482],[96.949253,38.939266],[96.94078,38.907842],[96.9662,38.886813],[96.993123,38.884192],[96.983693,38.870945],[96.99367,38.836068],[96.987656,38.7917],[97.00064,38.761086],[97.023053,38.755545],[97.021686,38.731552],[97.009113,38.702663],[97.017586,38.688142],[97.057493,38.672814],[97.047243,38.653905],[97.05599,38.594518],[96.960733,38.557824],[96.925746,38.564404],[96.899233,38.580705],[96.876819,38.580705],[96.846753,38.599414],[96.794409,38.608036],[96.805343,38.570545],[96.783066,38.566963],[96.767349,38.552486],[96.800423,38.527768],[96.795093,38.510284],[96.780606,38.504284],[96.706806,38.505455],[96.680293,38.498797],[96.666353,38.483721],[96.708173,38.459125],[96.698059,38.422142],[96.679746,38.411666],[96.663483,38.388438],[96.626719,38.356259],[96.623712,38.345187],[96.639019,38.307412],[96.654189,38.2978],[96.665259,38.230187],[96.524902,38.262056],[96.463676,38.277765],[96.399716,38.281802],[96.378396,38.277325],[96.335755,38.246197],[96.301862,38.18324],[96.313205,38.161997],[96.264279,38.145895],[96.252525,38.167437],[96.227652,38.169642],[96.222185,38.149057],[96.209339,38.150234],[96.155082,38.17442],[96.117362,38.179492],[96.101782,38.18809],[96.073902,38.188311],[96.064335,38.172803],[96.044108,38.180521],[96.006935,38.207195],[95.985615,38.209987],[95.938465,38.237311],[95.933682,38.257871],[95.893638,38.290388],[95.859608,38.283049],[95.850588,38.29802],[95.837742,38.342473],[95.827491,38.353546],[95.807538,38.349293],[95.776105,38.355965],[95.761891,38.365863],[95.723898,38.378544],[95.701895,38.40053],[95.674288,38.390637],[95.662398,38.36535],[95.640121,38.366009],[95.627821,38.349146],[95.608415,38.339247],[95.590921,38.34416],[95.568781,38.325825],[95.536801,38.313795],[95.516164,38.294791],[95.505641,38.309319],[95.487601,38.314381],[95.454118,38.291783],[95.441818,38.310933],[95.424461,38.31152],[95.408061,38.300368],[95.389201,38.301249],[95.361731,38.313354],[95.335628,38.308072],[95.321278,38.32025],[95.311301,38.31174],[95.260051,38.302276],[95.249801,38.317609],[95.226977,38.330886],[95.204427,38.331986],[95.188164,38.36271],[95.192401,38.37202],[95.169167,38.387559],[95.138281,38.394448],[95.122154,38.417014],[95.073364,38.402435],[95.045347,38.418699],[95.031544,38.412692],[95.017604,38.426171],[94.98535,38.4239],[94.97387,38.430126],[94.90212,38.420457],[94.883944,38.41489],[94.86153,38.393715],[94.812057,38.385507],[94.75042,38.384994],[94.729373,38.389611],[94.698897,38.385067],[94.66104,38.38602],[94.61184,38.371654],[94.583003,38.369235],[94.55198,38.350246],[94.529977,38.360878],[94.527107,38.426025],[94.511117,38.44514],[94.428023,38.63448],[94.370076,38.762763],[94.334816,38.755691],[94.28138,38.760065],[93.972923,38.724842],[93.951329,38.71514],[93.871926,38.722581],[93.800312,38.750805],[93.773526,38.771073],[93.756306,38.807658],[93.769972,38.820917],[93.884226,38.826235],[93.884636,38.867669],[93.834342,38.867669],[93.748106,38.912353],[93.729109,38.924502],[93.509485,38.918028],[93.453179,38.915409],[93.332228,38.904059],[93.302572,38.894017],[93.274008,38.896128],[93.237928,38.916136],[93.206905,38.915918],[93.179298,38.923847],[93.185722,38.947411],[93.198158,39.046019],[93.175608,39.069106],[93.165768,39.090518],[93.132558,39.107424],[93.126681,39.122804],[93.142398,39.16073],[93.115338,39.179576],[93.043178,39.146446],[92.993568,39.151812],[92.978535,39.143546],[92.958991,39.165152],[92.939038,39.169646],[92.889155,39.159932],[92.866878,39.138687],[92.831208,39.143908],[92.821778,39.134843],[92.780778,39.139702],[92.727751,39.121643],[92.715178,39.126793],[92.663518,39.110907],[92.645341,39.119975],[92.610354,39.108948],[92.545711,39.111342],[92.536417,39.100749],[92.494051,39.102128],[92.460567,39.066203],[92.459064,39.042751],[92.423121,39.046599],[92.406037,39.033382],[92.418474,39.013044],[92.380071,39.000038],[92.32349,39.002945],[92.264177,39.002145],[92.208964,38.98267],[92.198167,38.983469],[92.17302,38.960572],[92.15006,38.958463],[92.105644,38.96268],[92.090884,38.954101],[92.036627,38.949374],[92.022823,38.94043],[91.990433,38.938612],[91.880553,38.899257],[91.879323,38.884192],[91.858277,38.876987],[91.806343,38.872619],[91.782836,38.861772],[91.756596,38.869125],[91.70562,38.868179],[91.681293,38.852817],[91.64125,38.855147],[91.61337,38.839054],[91.552826,38.826235],[91.535606,38.826891],[91.501439,38.815308],[91.446363,38.813487],[91.395386,38.793522],[91.351789,38.76823],[91.316393,38.760503],[91.307783,38.751024],[91.270609,38.745482],[91.249972,38.752774],[91.219496,38.74519],[91.191069,38.731844],[91.129979,38.718787],[91.112076,38.707479],[91.088022,38.70996],[90.992766,38.695001],[90.965432,38.696899],[90.905845,38.680916],[90.833959,38.669091],[90.803619,38.655146],[90.805532,38.66639],[90.724625,38.65814],[90.702075,38.667558],[90.650278,38.673909],[90.620622,38.663177],[90.645632,38.634991],[90.626225,38.62871],[90.605178,38.607013],[90.610645,38.595833],[90.563085,38.593714],[90.532608,38.580997],[90.535615,38.567986],[90.499945,38.555411],[90.463592,38.556727],[90.456758,38.547368],[90.463728,38.52016],[90.441315,38.511016],[90.420268,38.490966],[90.358905,38.481306],[90.315171,38.50187],[90.273488,38.499528],[90.259275,38.492211],[90.228935,38.496016],[90.197228,38.491259],[90.130808,38.494186],[90.112084,38.477719],[90.110854,38.42456],[90.128348,38.400237],[90.138598,38.403973],[90.179188,38.397012],[90.159918,38.360218],[90.144338,38.362197],[90.149121,38.349073],[90.137778,38.340567],[90.210075,38.286132],[90.280868,38.238119],[90.352891,38.233492],[90.361638,38.300148],[90.401818,38.311227],[90.530695,38.319076],[90.516345,38.204403],[90.519625,37.731184],[90.579348,37.720535],[90.586592,37.703079],[90.614745,37.696938],[90.658752,37.703818],[90.676928,37.682733],[90.742255,37.664675],[90.750865,37.65113],[90.776149,37.650537],[90.795009,37.630177],[90.806899,37.631436],[90.824939,37.610478],[90.854595,37.604182],[90.882475,37.575732],[90.869355,37.561132],[90.865939,37.530664],[90.911722,37.519541],[90.942609,37.494916],[90.940832,37.480449],[90.957915,37.47763],[91.000419,37.494545],[91.056999,37.483862],[91.074766,37.475181],[91.095539,37.452175],[91.109069,37.427676],[91.111392,37.391954],[91.136676,37.354579],[91.134762,37.324175],[91.161139,37.311683],[91.172756,37.283494],[91.191889,37.27784],[91.190932,37.205714],[91.218539,37.19916],[91.235486,37.179198],[91.256259,37.176889],[91.280313,37.163776],[91.287556,37.103473],[91.303546,37.08177],[91.303136,37.062075],[91.291109,37.042749],[91.314206,37.019908],[91.303683,37.012592],[91.244916,37.013787],[91.216352,37.010203],[91.190796,37.024686],[91.133669,37.007739],[91.127109,36.978391],[91.110709,36.970174],[91.048936,36.966439],[91.037046,36.929526],[90.983745,36.913679],[90.965979,36.918463],[90.873592,36.920556],[90.854185,36.915548],[90.813732,36.881901],[90.789132,36.845695],[90.756469,36.825191],[90.733645,36.827287],[90.722439,36.798168],[90.727085,36.756005],[90.755102,36.721239],[90.722165,36.710071],[90.719432,36.69058],[90.708088,36.684657],[90.706038,36.659159],[90.723122,36.66126],[90.735559,36.633428],[90.722439,36.619922],[90.741025,36.585845],[90.779155,36.582016],[90.812912,36.585619],[90.826579,36.57646],[90.817559,36.565797],[90.833002,36.558061],[90.906939,36.559563],[91.011352,36.539809],[91.035269,36.528315],[91.027889,36.50487],[91.039779,36.474802],[91.028299,36.443293],[91.052626,36.426443],[91.032809,36.396571],[91.042102,36.386034],[91.029256,36.356899],[91.036226,36.339804],[91.026386,36.323685],[91.074082,36.297616],[91.076132,36.287744],[91.052216,36.265056],[91.047842,36.244397],[91.096906,36.219358],[91.093352,36.184199],[91.102099,36.173935],[91.091439,36.16133],[91.104832,36.156725],[91.122599,36.154913],[91.146652,36.139813],[91.229882,36.117761],[91.255029,36.107942],[91.291929,36.081348],[91.316393,36.07432],[91.391969,36.065327],[91.477249,36.091699],[91.523579,36.120556],[91.52768,36.133017],[91.571413,36.155064],[91.548863,36.09525],[91.582893,36.060792],[91.63264,36.037735],[91.646033,36.043405],[91.679516,36.03713],[91.71956,36.020571],[91.763566,36.008773],[91.793223,36.00552],[91.885473,36.024957],[91.909937,36.015579],[91.967747,36.006579],[91.974307,35.9885],[92.03362,35.961639],[92.141314,35.935147],[92.151017,35.928333],[92.258027,35.907813],[92.314334,35.911372],[92.351234,35.896528],[92.369411,35.910236],[92.406311,35.915158],[92.452231,35.89827],[92.497057,35.894256],[92.591904,35.878499],[92.695498,35.877439],[92.756178,35.869181],[92.839818,35.867893],[92.915531,35.847963],[92.993978,35.833334],[93.016255,35.849175],[93.067095,35.841521],[93.086911,35.807178],[93.147045,35.80005],[93.174105,35.791329],[93.225492,35.790571],[93.265398,35.777525],[93.385528,35.77707],[93.408488,35.772139],[93.448532,35.77358],[93.516045,35.757117],[93.531079,35.76129],[93.539415,35.781241],[93.587112,35.771001],[93.627565,35.755903],[93.660639,35.753703],[93.681412,35.765008],[93.697539,35.751881],[93.726922,35.750743],[93.761909,35.756282],[93.781452,35.730556],[93.835846,35.722207],[93.850332,35.709681],[93.889146,35.702165],[93.933972,35.706568],[93.963493,35.688649],[94.008456,35.673611],[94.032373,35.648694],[94.062029,35.636461],[94.092916,35.64216],[94.122436,35.640412],[94.155236,35.669434],[94.196099,35.661837],[94.214003,35.648846],[94.239013,35.661002],[94.267576,35.660774],[94.2535,35.653861],[94.280423,35.633041],[94.31377,35.638285],[94.343836,35.628482],[94.363516,35.628862],[94.38429,35.617081],[94.407386,35.614041],[94.434036,35.623618],[94.46137,35.606135],[94.48884,35.602182],[94.50647,35.609708],[94.57986,35.601726],[94.591613,35.592831],[94.642317,35.606287],[94.649013,35.597469],[94.68687,35.587889],[94.711607,35.594124],[94.71803,35.607352],[94.768324,35.608036],[94.786774,35.59093],[94.815884,35.616473],[94.828184,35.583099],[94.838297,35.573821],[94.8521,35.586292],[94.894604,35.589562],[94.93164,35.579068],[94.94148,35.566748],[94.976604,35.572224],[95.009814,35.546135],[95.021294,35.552068],[95.090311,35.545298],[95.099331,35.51684],[95.113407,35.511665],[95.126937,35.535331],[95.118737,35.579601],[95.148257,35.577167],[95.156184,35.595872],[95.143201,35.629926],[95.174634,35.636385],[95.155637,35.656748],[95.166707,35.6727],[95.175181,35.647707],[95.211944,35.639652],[95.249801,35.647175],[95.279047,35.637677],[95.321004,35.640488],[95.357631,35.62605],[95.371708,35.602791],[95.396991,35.597773],[95.433754,35.60127],[95.460268,35.617309],[95.468604,35.646947],[95.478991,35.657887],[95.571105,35.653329],[95.633015,35.659255],[95.649005,35.646415],[95.664311,35.653937],[95.687818,35.648618],[95.736745,35.650442],[95.745491,35.633801],[95.773235,35.641856],[95.885165,35.636157],[95.917008,35.617461],[95.925755,35.620426],[95.945298,35.590854],[95.948988,35.569182],[95.968122,35.553209],[95.979875,35.533049],[95.993405,35.532364],[96.052445,35.554655],[96.072672,35.613433],[96.117499,35.625062],[96.134172,35.647707],[96.179819,35.632585],[96.203599,35.636309],[96.224099,35.629394],[96.242139,35.647783],[96.265645,35.642616],[96.293252,35.64839],[96.338625,35.634485],[96.354342,35.652493],[96.429509,35.634181],[96.441672,35.636005],[96.465999,35.622326],[96.526816,35.611381],[96.542942,35.614573],[96.566449,35.602182],[96.581346,35.58135],[96.617289,35.582414],[96.640113,35.58941],[96.662936,35.583327],[96.674963,35.592071],[96.707626,35.585],[96.712546,35.565151],[96.771996,35.527113],[96.787576,35.505881],[96.825569,35.500933],[96.843883,35.509991],[96.850989,35.496975],[96.894449,35.481064],[96.929846,35.498497],[96.941053,35.490504],[96.94611,35.46652],[96.963603,35.486013],[97.000366,35.472688],[97.017723,35.452507],[97.044783,35.432855],[97.043416,35.407863],[97.056263,35.390791],[97.0769,35.381872],[97.097946,35.355645],[97.12774,35.342604],[97.17735,35.333451],[97.21794,35.334367],[97.24049,35.321704],[97.278073,35.318729],[97.29666,35.338104],[97.311283,35.332536],[97.32126,35.298814],[97.348183,35.298814],[97.369913,35.304308],[97.375107,35.294999],[97.412827,35.302248],[97.458474,35.292633],[97.493734,35.276834],[97.534324,35.266377],[97.560837,35.271262],[97.59104,35.257368],[97.612907,35.259277],[97.61933,35.273323],[97.609217,35.327273],[97.617007,35.376612],[97.638327,35.386522],[97.6673,35.376841],[97.667437,35.349315],[97.71035,35.34474],[97.750667,35.348553],[97.767341,35.330477],[97.787977,35.322696],[97.818454,35.325747],[97.838681,35.314304],[97.867107,35.31499],[97.894304,35.295991],[97.917537,35.306521],[97.942821,35.287138],[98.021404,35.285536],[98.059944,35.295762],[98.073064,35.293473],[98.088234,35.32384],[98.106411,35.320712],[98.129234,35.332612],[98.179118,35.320102],[98.180758,35.337723],[98.203718,35.406872],[98.224081,35.43613],[98.220118,35.46515],[98.253055,35.493702],[98.260981,35.512959],[98.309088,35.502684],[98.296515,35.476419],[98.313325,35.461494],[98.331365,35.473145],[98.356921,35.459895],[98.396828,35.461647],[98.434685,35.47345],[98.455731,35.470328],[98.497551,35.44809],[98.594585,35.461266],[98.617682,35.474211],[98.637772,35.49865],[98.678362,35.51509],[98.714442,35.516536],[98.760772,35.538983],[98.771158,35.581502],[98.765692,35.593896],[98.793025,35.603551],[98.817079,35.600206],[98.865049,35.569258],[98.912472,35.580589],[98.900719,35.592299],[98.911105,35.600054],[98.978072,35.586672],[99.010462,35.583479],[99.029185,35.600814],[99.043809,35.592147],[99.078386,35.586216],[99.106266,35.592907],[99.125672,35.617537],[99.156012,35.619818],[99.177606,35.655684],[99.205622,35.682573],[99.208219,35.7279],[99.194142,35.737463],[99.185806,35.762125],[99.163802,35.791102],[99.126766,35.802629],[99.119112,35.818324],[99.126629,35.831515],[99.124716,35.86615],[99.102439,35.883424],[99.116789,35.911448],[99.071142,35.968147],[99.089456,35.999923],[99.077566,36.017092],[99.040255,36.046505],[99.010189,36.058297],[99.015792,36.086184],[98.980259,36.087846],[98.967685,36.129316],[98.937072,36.143437],[98.935432,36.156498],[98.983675,36.164575],[98.993789,36.17152],[98.993379,36.191292],[99.043809,36.233236],[99.049685,36.288196],[99.065949,36.298973],[99.065949,36.323986],[99.034925,36.365783],[98.989005,36.409816],[98.954839,36.423434],[98.946775,36.444121],[98.929829,36.446753],[98.921219,36.486755],[98.977115,36.498181],[99.085492,36.533048],[99.119522,36.55333],[99.171319,36.565121],[99.263159,36.604236],[99.334499,36.620897],[99.355409,36.632828],[99.374269,36.654959],[99.395179,36.657434],[99.427159,36.671534],[99.446839,36.686981],[99.422786,36.740722],[99.430986,36.760499],[99.387389,36.798318],[99.297462,36.849661],[99.277646,36.893642],[99.264526,36.905231],[99.160112,36.95456],[99.155329,36.970099],[99.197969,36.961135],[99.231042,36.976673],[99.249082,37.031852],[99.271769,37.089079],[99.286802,37.10653],[99.299649,37.106977],[99.321789,37.123679],[99.350079,37.123753],[99.359646,37.135084],[99.368529,37.175324],[99.382743,37.167054],[99.408846,37.170332],[99.415953,37.163403],[99.454356,37.156622],[99.454356,37.17443],[99.430713,37.182848],[99.436999,37.216362],[99.423196,37.242195],[99.439323,37.280295],[99.434539,37.31384],[99.418276,37.330569],[99.417046,37.370111],[99.464879,37.398565],[99.476086,37.411785],[99.473353,37.460191],[99.463649,37.482675],[99.500959,37.544083],[99.543053,37.563504],[99.541549,37.596774],[99.559589,37.610552],[99.590749,37.610996],[99.63585,37.654017],[99.686143,37.667266],[99.69735,37.682807],[99.68915,37.719869],[99.657716,37.735843],[99.649516,37.756839],[99.648423,37.793052],[99.661543,37.812038],[99.606466,37.829174],[99.600453,37.83678],[99.555079,37.845197],[99.512439,37.857748],[99.498089,37.838404],[99.477453,37.846009],[99.474036,37.873175],[99.438366,37.897305],[99.417456,37.902543],[99.375226,37.924083],[99.392309,37.947238],[99.358963,37.967364],[99.359646,37.979452],[99.380693,38.007083],[99.411716,38.025352],[99.441373,38.017544],[99.499456,38.032643],[99.523919,38.034631],[99.559589,38.029476],[99.615623,38.053261],[99.652933,38.051199],[99.684503,38.071002],[99.64733,38.07667],[99.622593,38.095141],[99.579269,38.109635],[99.594713,38.162512],[99.585009,38.200215],[99.560136,38.207121],[99.548656,38.202125],[99.524193,38.209546],[99.498499,38.250676],[99.469116,38.2484],[99.438639,38.258459],[99.401603,38.256917],[99.364019,38.247298],[99.321379,38.265653],[99.283932,38.274535],[99.250312,38.301836],[99.259742,38.315408],[99.247442,38.328685],[99.223662,38.328465],[99.212456,38.316215],[99.172686,38.308219],[99.168176,38.28804],[99.146719,38.290682],[99.122939,38.273214],[99.089319,38.26301],[99.039982,38.25699],[99.013059,38.267195],[99.002945,38.278499],[98.947459,38.271599],[98.907825,38.2887],[98.908235,38.298974],[98.938712,38.324871],[98.936389,38.341813],[98.909739,38.350246],[98.909192,38.363517],[98.955249,38.390344],[98.979849,38.389318],[98.983539,38.396866],[98.969462,38.422655],[98.948142,38.444041],[98.881859,38.475011],[98.816395,38.482257],[98.778402,38.477792],[98.735625,38.485258],[98.717312,38.502675],[98.711572,38.520892],[98.683008,38.530328],[98.637772,38.522135],[98.608525,38.52689],[98.562332,38.553145],[98.538962,38.579536],[98.508758,38.586187],[98.468851,38.58816],[98.418148,38.598391],[98.368128,38.615634],[98.295695,38.66325],[98.275058,38.66252],[98.273965,38.643025],[98.246494,38.663689],[98.182534,38.667558],[98.157251,38.696023],[98.136614,38.710616],[98.141944,38.737387],[98.128551,38.757003],[98.112014,38.759336],[98.093291,38.786307]]],[[[92.560881,32.731876],[92.581381,32.75484],[92.594637,32.821416],[92.596277,32.869961],[92.629761,32.886843],[92.649031,32.902702],[92.656548,32.940845],[92.674588,32.952615],[92.697001,32.982972],[92.689621,32.997951],[92.703288,33.023511],[92.729801,33.038248],[92.731851,33.061132],[92.718048,33.101635],[92.673494,33.133038],[92.670624,33.147287],[92.711898,33.191349],[92.710258,33.217948],[92.721054,33.232105],[92.708208,33.249935],[92.679098,33.266979],[92.633178,33.28488],[92.620878,33.283551],[92.598601,33.301604],[92.610628,33.319029],[92.599147,33.35215],[92.620468,33.367534],[92.655591,33.381979],[92.657231,33.409145],[92.684564,33.446444],[92.698094,33.472965],[92.734311,33.458224],[92.760278,33.473979],[92.793898,33.469378],[92.815491,33.477333],[92.848974,33.499167],[92.855944,33.512732],[92.851981,33.534167],[92.819044,33.555208],[92.807564,33.57079],[92.815081,33.593768],[92.812894,33.616429],[92.784331,33.636827],[92.797724,33.68461],[92.756451,33.703747],[92.773808,33.723579],[92.756724,33.746362],[92.752761,33.765329],[92.761918,33.791597],[92.746338,33.814827],[92.741691,33.847448],[92.752761,33.869421],[92.741828,33.899149],[92.742784,33.915755],[92.723651,33.922816],[92.706704,33.944925],[92.739914,33.994629],[92.758228,34.002535],[92.782281,34.035704],[92.829568,34.030513],[92.852528,34.045234],[92.868654,34.044149],[92.878085,34.060572],[92.902685,34.068705],[92.911841,34.093253],[92.870568,34.090001],[92.833531,34.078695],[92.826834,34.071106],[92.803464,34.082568],[92.753854,34.068008],[92.735268,34.076837],[92.713401,34.070331],[92.690578,34.083497],[92.690851,34.092789],[92.652584,34.121897],[92.661604,34.13846],[92.644658,34.173045],[92.631811,34.187123],[92.612814,34.239545],[92.592861,34.276406],[92.578647,34.29039],[92.554457,34.342053],[92.540791,34.37995],[92.546394,34.401939],[92.513731,34.415901],[92.491317,34.378252],[92.438701,34.380799],[92.424214,34.389749],[92.365311,34.379332],[92.298617,34.38265],[92.23206,34.377635],[92.204864,34.398545],[92.167007,34.403019],[92.099357,34.434719],[92.066284,34.442431],[92.00492,34.473885],[91.940277,34.487218],[91.930573,34.517577],[91.96638,34.555318],[91.95859,34.576568],[91.879597,34.585113],[91.85363,34.592656],[91.82862,34.620745],[91.808257,34.625054],[91.760833,34.625131],[91.738556,34.646363],[91.72653,34.667206],[91.704116,34.670513],[91.675416,34.661746],[91.591776,34.695347],[91.54572,34.708491],[91.453469,34.724323],[91.350013,34.761969],[91.321586,34.789924],[91.263776,34.789387],[91.232752,34.802823],[91.166606,34.799522],[91.126426,34.781017],[91.096496,34.79622],[91.059186,34.796451],[91.060006,34.76243],[91.024336,34.766271],[91.003836,34.745146],[90.961059,34.755747],[90.942062,34.77326],[90.948212,34.79814],[90.923885,34.811729],[90.918829,34.834448],[90.876872,34.853095],[90.846395,34.860921],[90.781342,34.890453],[90.728589,34.887538],[90.717108,34.900115],[90.679798,34.903183],[90.653832,34.895898],[90.638252,34.919284],[90.607365,34.925417],[90.570602,34.921124],[90.535888,34.924344],[90.443365,34.927027],[90.422455,34.939598],[90.375031,34.931549],[90.340591,34.936455],[90.305058,34.922887],[90.272395,34.92718],[90.252578,34.9432],[90.221145,34.94228],[90.203241,34.932009],[90.183425,34.907783],[90.185065,34.892447],[90.167708,34.879408],[90.121241,34.866291],[90.105388,34.877414],[90.089808,34.902876],[90.019834,34.91338],[89.968721,34.900499],[89.946581,34.890989],[89.928131,34.872505],[89.904487,34.871738],[89.866084,34.900192],[89.867451,34.906786],[89.830687,34.898428],[89.821394,34.902876],[89.823307,34.882323],[89.811554,34.871047],[89.846267,34.857315],[89.851597,34.821401],[89.867724,34.810577],[89.825904,34.796835],[89.828364,34.782629],[89.807591,34.768805],[89.808274,34.74891],[89.770964,34.749525],[89.763037,34.739998],[89.732561,34.732238],[89.736387,34.713948],[89.723541,34.704033],[89.737754,34.679817],[89.726001,34.663207],[89.743357,34.644748],[89.774381,34.63644],[89.785861,34.641133],[89.798707,34.628824],[89.792831,34.601122],[89.777797,34.593888],[89.777934,34.574412],[89.814971,34.548772],[89.811691,34.504249],[89.818387,34.485908],[89.808137,34.474733],[89.823307,34.455384],[89.818797,34.419758],[89.799527,34.39623],[89.823991,34.384425],[89.820574,34.369069],[89.841074,34.356256],[89.862121,34.356256],[89.871551,34.341435],[89.864991,34.322905],[89.825494,34.293711],[89.837931,34.264276],[89.822351,34.225476],[89.826451,34.200657],[89.805267,34.18983],[89.817021,34.169487],[89.785587,34.14999],[89.760441,34.152466],[89.756887,34.125303],[89.712061,34.131882],[89.693201,34.126077],[89.681037,34.105796],[89.656164,34.096892],[89.651107,34.083342],[89.656437,34.057861],[89.63498,34.04934],[89.651381,34.036634],[89.679534,33.995404],[89.691697,33.957954],[89.718621,33.946786],[89.731877,33.92173],[89.765634,33.909315],[89.763994,33.898528],[89.795017,33.865539],[89.837247,33.869033],[89.862394,33.853039],[89.874147,33.827566],[89.895194,33.82112],[89.899841,33.80768],[89.925808,33.809156],[89.933598,33.797036],[89.902301,33.758411],[89.907357,33.741075],[89.939474,33.74123],[89.983754,33.725834],[89.981294,33.70328],[90.004254,33.693712],[89.992774,33.668115],[90.000974,33.659243],[89.984028,33.612147],[89.988128,33.583643],[90.008218,33.556766],[90.024208,33.546714],[90.081061,33.530582],[90.091858,33.469768],[90.107711,33.46111],[90.188071,33.440983],[90.225655,33.436302],[90.246428,33.424051],[90.333075,33.310747],[90.367378,33.28144],[90.387878,33.277141],[90.407148,33.26049],[90.480948,33.265806],[90.519898,33.242975],[90.543678,33.23844],[90.564315,33.221155],[90.595885,33.206997],[90.632238,33.174525],[90.682122,33.151123],[90.705628,33.135778],[90.740205,33.142276],[90.763165,33.136013],[90.804302,33.114401],[90.843935,33.110799],[90.884252,33.119178],[90.902292,33.083149],[90.911449,33.110172],[90.927575,33.120275],[90.952859,33.115811],[91.011899,33.121528],[91.037592,33.098659],[91.071486,33.113227],[91.133669,33.074061],[91.147746,33.072337],[91.162369,33.109389],[91.188062,33.106491],[91.194759,33.123485],[91.215396,33.126931],[91.225919,33.141415],[91.261453,33.141337],[91.311609,33.10798],[91.373929,33.099677],[91.404816,33.080564],[91.426956,33.079075],[91.435976,33.066147],[91.458799,33.073826],[91.461806,33.091766],[91.501303,33.107588],[91.511006,33.098659],[91.535606,33.099991],[91.56007,33.076176],[91.554193,33.061603],[91.580706,33.039424],[91.664483,33.013084],[91.664756,32.999755],[91.683206,32.990109],[91.725573,32.983992],[91.73022,32.972541],[91.751266,32.969638],[91.780786,32.946103],[91.799237,32.941944],[91.81181,32.954655],[91.838323,32.949398],[91.860053,32.902231],[91.896953,32.907255],[91.893947,32.885901],[91.92251,32.86949],[91.94096,32.836187],[91.95777,32.819609],[91.99262,32.82448],[91.997677,32.835165],[92.01968,32.82943],[92.02665,32.85119],[92.03977,32.861479],[92.10209,32.86038],[92.118627,32.876793],[92.145687,32.885744],[92.153477,32.873573],[92.205274,32.866191],[92.205,32.857788],[92.230694,32.840272],[92.227414,32.820945],[92.193794,32.802085],[92.20951,32.792339],[92.198714,32.75484],[92.220444,32.734],[92.23411,32.738483],[92.255294,32.720785],[92.290964,32.72928],[92.301077,32.749335],[92.33087,32.747448],[92.336337,32.738719],[92.358341,32.74965],[92.355881,32.764589],[92.410957,32.747841],[92.453871,32.764668],[92.488037,32.74383],[92.506214,32.744774],[92.524664,32.734157],[92.560881,32.731876]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/640000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/640000.json new file mode 100644 index 0000000..3dbfd73 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/640000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":640100,"name":"银川市","center":[106.278179,38.46637],"centroid":[106.347233,38.2883],"childrenNum":6,"level":"city","parent":{"adcode":640000},"subFeatureIndex":0,"acroutes":[100000,640000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.824334,38.16341],[106.778909,38.17185],[106.754089,38.182216],[106.728089,38.204171],[106.704146,38.212689],[106.673931,38.220878],[106.655653,38.228944],[106.627798,38.232588],[106.592726,38.249534],[106.555395,38.263735],[106.546762,38.269873],[106.532228,38.286484],[106.516041,38.299287],[106.490344,38.306199],[106.482453,38.319489],[106.587533,38.382636],[106.601865,38.392522],[106.637881,38.455891],[106.64874,38.472745],[106.65137,38.492572],[106.662532,38.601485],[106.641624,38.619974],[106.643041,38.638866],[106.639567,38.642936],[106.604057,38.65356],[106.587095,38.655717],[106.595863,38.668536],[106.596267,38.682574],[106.572122,38.681679],[106.539815,38.688473],[106.524944,38.697869],[106.495032,38.698317],[106.476821,38.708241],[106.461275,38.707997],[106.457026,38.700757],[106.438243,38.693557],[106.434837,38.70641],[106.440704,38.71369],[106.437703,38.719505],[106.423438,38.722189],[106.415615,38.718773],[106.405026,38.7204],[106.397034,38.726214],[106.397742,38.752516],[106.375013,38.754995],[106.382668,38.771332],[106.354206,38.770316],[106.335355,38.775435],[106.320449,38.771047],[106.311614,38.776248],[106.31212,38.787746],[106.300485,38.786405],[106.282781,38.780189],[106.2815,38.787136],[106.258298,38.79981],[106.241977,38.798185],[106.230309,38.814187],[106.207546,38.803262],[106.196451,38.805252],[106.196215,38.810492],[106.174025,38.815365],[106.146643,38.81638],[106.137908,38.818532],[106.128297,38.828886],[106.124959,38.839401],[106.10024,38.841349],[106.065202,38.856976],[106.050701,38.868461],[106.030434,38.870124],[106.003321,38.875156],[105.992496,38.857585],[105.976984,38.846058],[105.970914,38.844597],[105.964135,38.834692],[105.946667,38.824014],[105.936011,38.810045],[105.936382,38.803912],[105.926433,38.802856],[105.909639,38.79128],[105.898612,38.789574],[105.899118,38.777264],[105.907313,38.770113],[105.901074,38.755849],[105.907953,38.737273],[105.905829,38.731296],[105.886034,38.717065],[105.894633,38.694086],[105.884853,38.681028],[105.873118,38.671588],[105.873185,38.658647],[105.854098,38.643466],[105.85221,38.632352],[105.857673,38.612726],[105.864822,38.607513],[105.867284,38.598553],[105.874298,38.593298],[105.8716,38.582054],[105.861315,38.579773],[105.856796,38.572194],[105.864013,38.539182],[105.86263,38.52638],[105.846072,38.513047],[105.84877,38.497426],[105.836697,38.475845],[105.850658,38.443646],[105.842902,38.437686],[105.831639,38.437278],[105.828334,38.409023],[105.835584,38.390357],[105.821758,38.368131],[105.828874,38.345899],[105.83808,38.335353],[105.84361,38.321943],[105.858145,38.308407],[105.865901,38.297283],[105.852749,38.264717],[105.892373,38.259848],[105.907178,38.244623],[105.923803,38.239793],[105.967272,38.224072],[105.970172,38.219404],[105.940159,38.160295],[105.966125,38.146402],[105.979715,38.178856],[106.005311,38.173612],[106.012865,38.185534],[106.0419,38.175743],[106.055692,38.186722],[106.058154,38.19471],[106.077342,38.210887],[106.077106,38.204007],[106.084863,38.200034],[106.077815,38.197454],[106.082232,38.190122],[106.078995,38.183486],[106.090326,38.180659],[106.096666,38.186067],[106.109581,38.183035],[106.108334,38.175866],[106.125229,38.169351],[106.126881,38.145418],[106.129882,38.144517],[106.14064,38.157181],[106.152544,38.159189],[106.164887,38.152386],[106.18485,38.15046],[106.183501,38.143246],[106.200835,38.134638],[106.218404,38.13103],[106.218809,38.123036],[106.229229,38.107495],[106.225587,38.097816],[106.21257,38.089613],[106.207107,38.071357],[106.210547,38.0659],[106.227307,38.059499],[106.239953,38.035284],[106.248789,38.035325],[106.238672,38.045381],[106.266156,38.043001],[106.266122,38.019232],[106.258636,38.019437],[106.25904,38.008145],[106.265481,38.003628],[106.272664,37.98761],[106.283456,37.994017],[106.292594,37.988678],[106.298395,37.977053],[106.31303,37.96637],[106.29826,37.949276],[106.304869,37.942659],[106.335726,37.941837],[106.336771,37.92634],[106.358016,37.924325],[106.358691,37.886658],[106.345809,37.873823],[106.3335,37.875592],[106.318021,37.872342],[106.289559,37.871108],[106.27833,37.854608],[106.284906,37.851646],[106.282714,37.838558],[106.292291,37.825962],[106.303352,37.819293],[106.303217,37.815011],[106.314447,37.811058],[106.342942,37.808094],[106.342605,37.802123],[106.361827,37.787214],[106.378284,37.778523],[106.392312,37.758872],[106.423573,37.740286],[106.438209,37.738555],[106.470212,37.72182],[106.482453,37.707431],[106.499281,37.693329],[106.545312,37.667673],[106.536578,37.656203],[106.603045,37.653975],[106.643985,37.642132],[106.649111,37.655502],[106.713959,37.639903],[106.773817,37.637179],[106.775234,37.658349],[106.773176,37.665115],[106.767005,37.722067],[106.769602,37.737813],[106.807101,37.750095],[106.83209,37.761055],[106.861665,37.796893],[106.880786,37.836294],[106.885675,37.863167],[106.845343,37.866418],[106.834585,37.859217],[106.822681,37.875016],[106.817623,37.930286],[106.821636,37.944755],[106.791488,37.943193],[106.781641,37.939699],[106.771423,37.954043],[106.764847,37.976847],[106.765791,37.999932],[106.762385,38.00256],[106.771693,38.020381],[106.784878,38.040456],[106.831281,38.034175],[106.857247,38.048541],[106.852391,38.058514],[106.816038,38.112744],[106.811182,38.135827],[106.817185,38.151525],[106.827301,38.157877],[106.824334,38.16341]]]]}},{"type":"Feature","properties":{"adcode":640200,"name":"石嘴山市","center":[106.376173,39.01333],"centroid":[106.517117,39.007544],"childrenNum":3,"level":"city","parent":{"adcode":640000},"subFeatureIndex":1,"acroutes":[100000,640000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.662532,38.601485],[106.702831,38.708241],[106.709575,38.718895],[106.756012,38.748533],[106.767511,38.764952],[106.785688,38.786405],[106.802515,38.810938],[106.8214,38.832175],[106.837384,38.847479],[106.878358,38.881931],[106.904729,38.901119],[106.954335,38.94118],[106.959764,38.948841],[106.971398,39.016983],[106.971736,39.026215],[106.967284,39.054794],[106.95447,39.061269],[106.946579,39.061147],[106.941115,39.071183],[106.932617,39.076443],[106.905909,39.080853],[106.88146,39.090238],[106.870163,39.096912],[106.853673,39.116526],[106.847737,39.137873],[106.833911,39.164467],[106.825514,39.193757],[106.795939,39.214314],[106.799312,39.23224],[106.791049,39.241484],[106.793444,39.25327],[106.806461,39.277359],[106.801874,39.293898],[106.806798,39.318659],[106.793275,39.335913],[106.798064,39.348086],[106.790948,39.361667],[106.781506,39.37186],[106.755843,39.373472],[106.75129,39.38157],[106.73335,39.373915],[106.716084,39.374197],[106.692714,39.364729],[106.675718,39.355058],[106.643715,39.357798],[106.631305,39.366018],[106.602607,39.375325],[106.587634,39.357395],[106.582272,39.347723],[106.573302,39.342403],[106.555969,39.322287],[106.541333,39.31632],[106.533509,39.308376],[106.525348,39.308457],[106.523224,39.295713],[106.515535,39.283612],[106.514186,39.274535],[106.506363,39.270097],[106.472134,39.277238],[106.461444,39.282644],[106.43686,39.287283],[106.402935,39.291639],[106.37417,39.288331],[106.342571,39.281433],[106.327464,39.275947],[106.301801,39.275422],[106.284602,39.270298],[106.279982,39.262148],[106.282174,39.24657],[106.28902,39.219684],[106.286356,39.200785],[106.287907,39.187052],[106.295562,39.167983],[106.286457,39.148181],[106.277014,39.141713],[106.253914,39.132335],[106.239313,39.136499],[106.218101,39.137995],[106.189639,39.1443],[106.170822,39.163336],[106.157164,39.160184],[106.146069,39.153233],[106.132479,39.136539],[106.118518,39.11592],[106.112785,39.100835],[106.098453,39.087528],[106.094608,39.074136],[106.083547,39.053944],[106.080883,39.038887],[106.085739,39.036093],[106.078017,39.027389],[106.088808,39.01755],[106.086582,39.005523],[106.076567,38.991751],[106.070834,38.990253],[106.062707,38.977897],[106.060785,38.968496],[106.051309,38.962742],[106.037246,38.962499],[106.023757,38.955164],[106.008548,38.935829],[105.980322,38.917178],[105.96889,38.905093],[105.972532,38.890978],[105.986089,38.874993],[106.003321,38.875156],[106.030434,38.870124],[106.050701,38.868461],[106.065202,38.856976],[106.10024,38.841349],[106.124959,38.839401],[106.128297,38.828886],[106.137908,38.818532],[106.146643,38.81638],[106.174025,38.815365],[106.196215,38.810492],[106.196451,38.805252],[106.207546,38.803262],[106.230309,38.814187],[106.241977,38.798185],[106.258298,38.79981],[106.2815,38.787136],[106.282781,38.780189],[106.300485,38.786405],[106.31212,38.787746],[106.311614,38.776248],[106.320449,38.771047],[106.335355,38.775435],[106.354206,38.770316],[106.382668,38.771332],[106.375013,38.754995],[106.397742,38.752516],[106.397034,38.726214],[106.405026,38.7204],[106.415615,38.718773],[106.423438,38.722189],[106.437703,38.719505],[106.440704,38.71369],[106.434837,38.70641],[106.438243,38.693557],[106.457026,38.700757],[106.461275,38.707997],[106.476821,38.708241],[106.495032,38.698317],[106.524944,38.697869],[106.539815,38.688473],[106.572122,38.681679],[106.596267,38.682574],[106.595863,38.668536],[106.587095,38.655717],[106.604057,38.65356],[106.639567,38.642936],[106.643041,38.638866],[106.641624,38.619974],[106.662532,38.601485]]]]}},{"type":"Feature","properties":{"adcode":640300,"name":"吴忠市","center":[106.199409,37.986165],"centroid":[106.532262,37.465858],"childrenNum":5,"level":"city","parent":{"adcode":640000},"subFeatureIndex":2,"acroutes":[100000,640000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.852749,38.264717],[105.842363,38.240857],[105.82105,38.227061],[105.80284,38.220305],[105.783179,38.202696],[105.775322,38.186804],[105.768038,38.121601],[105.780684,38.084813],[105.793768,38.067336],[105.809382,38.050799],[105.829177,38.025472],[105.839935,38.007899],[105.823411,37.975491],[105.811709,37.961563],[105.799838,37.940069],[105.798051,37.929711],[105.79967,37.910017],[105.807527,37.886123],[105.808674,37.875386],[105.803885,37.861933],[105.786653,37.843909],[105.780785,37.834771],[105.771916,37.811305],[105.760686,37.799899],[105.744297,37.792486],[105.724637,37.78742],[105.6955,37.774939],[105.677425,37.771973],[105.670579,37.775434],[105.633653,37.781448],[105.622086,37.777782],[105.61669,37.753886],[105.616286,37.722562],[105.610047,37.706978],[105.649165,37.710318],[105.651897,37.715554],[105.678875,37.725036],[105.696343,37.725942],[105.717521,37.731672],[105.742071,37.727591],[105.760922,37.728416],[105.78409,37.73872],[105.815857,37.734186],[105.825063,37.735217],[105.844521,37.728704],[105.853289,37.739833],[105.882695,37.735876],[105.901276,37.738308],[105.902389,37.726849],[105.889204,37.714111],[105.888259,37.67947],[105.880705,37.660164],[105.879323,37.647249],[105.886405,37.643494],[105.894093,37.628842],[105.882931,37.615178],[105.904514,37.613857],[105.910516,37.62942],[105.93075,37.654553],[105.934291,37.669488],[105.951591,37.657647],[105.977928,37.659628],[105.990136,37.654594],[106.005547,37.65513],[106.011752,37.648611],[106.024566,37.643782],[106.022577,37.626324],[106.024701,37.613403],[106.020756,37.609522],[106.008346,37.610554],[106.001837,37.603081],[106.002073,37.592964],[106.034447,37.559714],[106.029928,37.558681],[106.039472,37.550045],[106.060312,37.545583],[106.075319,37.527647],[106.056536,37.524092],[106.048847,37.516982],[106.037988,37.51938],[106.032019,37.508301],[106.016068,37.498791],[106.01219,37.484773],[106.004029,37.474723],[105.994722,37.473564],[105.98248,37.477328],[105.975601,37.474185],[105.960426,37.475012],[105.958335,37.469056],[105.973072,37.464381],[105.983627,37.451805],[105.936921,37.445888],[105.934695,37.428011],[105.923938,37.424989],[105.913147,37.431487],[105.885932,37.424824],[105.875714,37.415759],[105.885629,37.398289],[105.884314,37.392989],[105.850186,37.396508],[105.843273,37.38127],[105.876962,37.36288],[105.889102,37.360519],[105.905626,37.351861],[105.916553,37.351695],[105.92849,37.346143],[105.943666,37.33222],[105.94117,37.321031],[105.925725,37.307642],[105.837675,37.315394],[105.794207,37.318668],[105.791509,37.311124],[105.775221,37.301341],[105.755324,37.29649],[105.734888,37.288903],[105.755392,37.256222],[105.756741,37.24415],[105.772085,37.233652],[105.767026,37.229254],[105.771579,37.216181],[105.783146,37.213027],[105.775052,37.206095],[105.780718,37.199577],[105.769454,37.19306],[105.73708,37.188077],[105.712834,37.187455],[105.707337,37.197128],[105.684304,37.216306],[105.693949,37.231163],[105.69432,37.23888],[105.687002,37.25506],[105.679212,37.261614],[105.676481,37.276836],[105.667915,37.26879],[105.649334,37.259375],[105.63018,37.241411],[105.605495,37.222946],[105.585531,37.222157],[105.573424,37.217094],[105.561284,37.217717],[105.573964,37.208046],[105.575886,37.202566],[105.586475,37.198041],[105.616724,37.197917],[105.63426,37.190569],[105.664981,37.191897],[105.6724,37.176285],[105.668859,37.160711],[105.67557,37.139068],[105.683428,37.127393],[105.696816,37.120245],[105.711013,37.116754],[105.741464,37.089861],[105.748546,37.085579],[105.778458,37.085371],[105.785135,37.078511],[105.842329,36.98698],[105.848669,36.980194],[105.833494,36.974531],[105.831909,36.959332],[105.821859,36.947837],[105.785236,36.928009],[105.783618,36.921968],[105.76797,36.914092],[105.768375,36.908133],[105.751075,36.914676],[105.742105,36.914092],[105.759776,36.89859],[105.746995,36.884168],[105.748378,36.864989],[105.738396,36.861695],[105.737519,36.840176],[105.745713,36.815062],[105.761091,36.825701],[105.767161,36.820361],[105.789755,36.82057],[105.808944,36.828246],[105.82304,36.822113],[105.826648,36.803504],[105.836394,36.806258],[105.839901,36.829247],[105.856998,36.835546],[105.86118,36.842303],[105.872376,36.845681],[105.874534,36.855023],[105.882729,36.859694],[105.899927,36.878248],[105.897904,36.882333],[105.908493,36.890087],[105.908291,36.894713],[105.888462,36.917426],[105.909302,36.918009],[105.923972,36.926801],[105.926164,36.934216],[105.934695,36.932883],[105.936348,36.924301],[105.956649,36.911926],[105.95267,36.902216],[105.963832,36.898298],[105.965451,36.888461],[105.981165,36.878456],[105.980525,36.865573],[105.984436,36.860361],[105.971015,36.849227],[105.976478,36.842387],[105.984032,36.845306],[105.990506,36.840676],[106.004603,36.842011],[106.028546,36.824366],[106.031952,36.810723],[106.029659,36.7957],[106.047127,36.783429],[106.058019,36.769695],[106.071778,36.758923],[106.067563,36.741677],[106.077275,36.720458],[106.106344,36.690582],[106.106884,36.675494],[106.118619,36.661741],[106.119192,36.648947],[106.132108,36.643427],[106.152004,36.622683],[106.146845,36.604736],[106.152881,36.587288],[106.167416,36.579043],[106.182186,36.587539],[106.195068,36.589757],[106.211019,36.587162],[106.21139,36.604904],[106.216651,36.6103],[106.231253,36.612518],[106.249632,36.606577],[106.25668,36.619127],[106.274215,36.613313],[106.277318,36.606284],[106.290133,36.610844],[106.297821,36.609171],[106.306657,36.596577],[106.320483,36.594318],[106.363682,36.608753],[106.383646,36.614191],[106.380611,36.622139],[106.388434,36.623979],[106.404958,36.620591],[106.410185,36.624774],[106.430486,36.629668],[106.432813,36.635439],[106.444684,36.624941],[106.468526,36.620424],[106.491322,36.628789],[106.495065,36.646396],[106.494324,36.667301],[106.491052,36.685734],[106.510848,36.693132],[106.519009,36.68749],[106.530677,36.689914],[106.52437,36.703996],[106.514355,36.715611],[106.524606,36.719789],[106.533273,36.730399],[106.55091,36.731987],[106.553844,36.737834],[106.572762,36.733992],[106.574111,36.746772],[106.58669,36.744767],[106.594851,36.749611],[106.611341,36.730232],[106.616265,36.737667],[106.632182,36.723298],[106.645401,36.723173],[106.631946,36.735078],[106.627528,36.752284],[106.633801,36.75362],[106.639533,36.771448],[106.638083,36.786977],[106.644221,36.79161],[106.641725,36.802085],[106.658182,36.811349],[106.657508,36.820611],[106.64068,36.834003],[106.642501,36.85298],[106.626415,36.861946],[106.638724,36.870493],[106.630934,36.877956],[106.638218,36.884168],[106.627056,36.892463],[106.618052,36.888461],[106.609487,36.878373],[106.600584,36.891421],[106.609992,36.904049],[106.602,36.918093],[106.588275,36.921843],[106.579204,36.930842],[106.562612,36.932717],[106.549123,36.942631],[106.554991,36.953127],[106.541636,36.970284],[106.540389,36.984399],[106.550438,36.973615],[106.580451,36.947421],[106.56848,36.946171],[106.579912,36.934799],[106.591108,36.94034],[106.589927,36.955751],[106.594547,36.967536],[106.606822,36.962206],[106.622706,36.959332],[106.643142,36.963122],[106.6395,36.973782],[106.646548,36.998344],[106.641591,37.012037],[106.657339,37.007709],[106.666748,37.016781],[106.651842,37.033924],[106.643917,37.059215],[106.645502,37.065038],[106.634441,37.083375],[106.629383,37.084332],[106.620784,37.095764],[106.605237,37.127601],[106.616905,37.135163],[106.635891,37.128556],[106.640208,37.118999],[106.660812,37.126063],[106.6684,37.1121],[106.676493,37.114219],[106.687757,37.129927],[106.698346,37.118375],[106.708766,37.121284],[106.72846,37.12145],[106.726875,37.109024],[106.736621,37.100877],[106.748761,37.100295],[106.752538,37.086826],[106.760969,37.081047],[106.764813,37.095432],[106.756619,37.102166],[106.773244,37.122988],[106.767174,37.132254],[106.772367,37.150493],[106.781877,37.151282],[106.78073,37.158634],[106.803257,37.145175],[106.8185,37.141893],[106.826897,37.131839],[106.840689,37.125731],[106.858832,37.113721],[106.870939,37.11584],[106.892184,37.097926],[106.901963,37.10919],[106.911844,37.110271],[106.907561,37.122656],[106.916228,37.122905],[106.913395,37.132421],[106.90166,37.133459],[106.891307,37.141229],[106.905673,37.151407],[106.922501,37.147169],[106.952446,37.128764],[106.960911,37.113887],[106.984753,37.107528],[107.000265,37.108983],[106.989069,37.118292],[106.994701,37.1217],[107.007718,37.113637],[107.011764,37.115923],[107.027547,37.110811],[107.031357,37.116547],[107.025827,37.132753],[107.03075,37.140813],[107.045184,37.129927],[107.061809,37.124193],[107.078266,37.129138],[107.086831,37.12598],[107.095835,37.115549],[107.111921,37.126686],[107.121397,37.127476],[107.13411,37.134706],[107.151242,37.138611],[107.170126,37.140024],[107.181491,37.143555],[107.189011,37.135287],[107.206715,37.12411],[107.23511,37.0983],[107.249712,37.106322],[107.274903,37.097635],[107.285188,37.096263],[107.277567,37.102415],[107.273351,37.125398],[107.278241,37.128182],[107.295271,37.113554],[107.30704,37.10042],[107.330882,37.129803],[107.331085,37.137573],[107.337829,37.153982],[107.33648,37.165653],[107.329972,37.180687],[107.317494,37.200242],[107.300802,37.207589],[107.27035,37.229088],[107.272542,37.235934],[107.291393,37.241245],[107.30812,37.237926],[107.308659,37.250954],[107.293484,37.277085],[107.273115,37.291142],[107.263842,37.311415],[107.25794,37.336986],[107.263909,37.349913],[107.261076,37.370833],[107.274262,37.400193],[107.283603,37.440798],[107.282457,37.467898],[107.284311,37.481919],[107.291292,37.488495],[107.30613,37.493168],[107.331321,37.50797],[107.345687,37.518842],[107.35749,37.538144],[107.3642,37.553888],[107.372193,37.580038],[107.368922,37.587596],[107.342146,37.581855],[107.330478,37.584044],[107.312605,37.6101],[107.325082,37.606302],[107.348789,37.608242],[107.3613,37.613279],[107.363762,37.6236],[107.368989,37.626076],[107.399643,37.653851],[107.419877,37.65022],[107.422035,37.665074],[107.38956,37.671179],[107.384737,37.685492],[107.386862,37.691102],[107.407062,37.692957],[107.430533,37.684214],[107.465436,37.691225],[107.485096,37.706483],[107.49238,37.732744],[107.490829,37.745356],[107.499192,37.76567],[107.523405,37.772921],[107.552609,37.776834],[107.571325,37.77667],[107.591356,37.787173],[107.582521,37.786761],[107.577092,37.792157],[107.585151,37.798499],[107.587647,37.791086],[107.599248,37.791127],[107.609297,37.778194],[107.620695,37.775969],[107.639681,37.795369],[107.646122,37.805211],[107.649798,37.820281],[107.659274,37.844114],[107.658026,37.858929],[107.63614,37.872548],[107.560399,37.893609],[107.520606,37.92079],[107.492549,37.944878],[107.458219,37.941755],[107.448608,37.933369],[107.419404,37.940686],[107.411614,37.949111],[107.417482,37.961522],[107.440515,37.995496],[107.42996,38.007324],[107.396979,38.013155],[107.378128,38.037377],[107.359378,38.052071],[107.358467,38.058227],[107.344709,38.068895],[107.331759,38.086536],[107.307715,38.096053],[107.288055,38.09675],[107.275172,38.102533],[107.244586,38.109627],[107.234975,38.116844],[107.22732,38.129349],[107.212077,38.133121],[107.190394,38.154025],[107.174476,38.151935],[107.151579,38.154968],[107.138933,38.160787],[107.128378,38.149394],[107.125713,38.137056],[107.119239,38.134146],[107.091148,38.135253],[107.086764,38.130456],[107.071319,38.138614],[107.063023,38.135335],[107.051153,38.122626],[107.029705,38.127914],[107.017531,38.126521],[107.014934,38.120371],[106.945095,38.131727],[106.910259,38.140787],[106.900041,38.145254],[106.873164,38.150378],[106.863756,38.155009],[106.824334,38.16341],[106.827301,38.157877],[106.817185,38.151525],[106.811182,38.135827],[106.816038,38.112744],[106.852391,38.058514],[106.857247,38.048541],[106.831281,38.034175],[106.784878,38.040456],[106.771693,38.020381],[106.762385,38.00256],[106.765791,37.999932],[106.764847,37.976847],[106.771423,37.954043],[106.781641,37.939699],[106.791488,37.943193],[106.821636,37.944755],[106.817623,37.930286],[106.822681,37.875016],[106.834585,37.859217],[106.845343,37.866418],[106.885675,37.863167],[106.880786,37.836294],[106.861665,37.796893],[106.83209,37.761055],[106.807101,37.750095],[106.769602,37.737813],[106.767005,37.722067],[106.773176,37.665115],[106.775234,37.658349],[106.773817,37.637179],[106.713959,37.639903],[106.649111,37.655502],[106.643985,37.642132],[106.603045,37.653975],[106.536578,37.656203],[106.545312,37.667673],[106.499281,37.693329],[106.482453,37.707431],[106.470212,37.72182],[106.438209,37.738555],[106.423573,37.740286],[106.392312,37.758872],[106.378284,37.778523],[106.361827,37.787214],[106.342605,37.802123],[106.342942,37.808094],[106.314447,37.811058],[106.303217,37.815011],[106.303352,37.819293],[106.292291,37.825962],[106.282714,37.838558],[106.284906,37.851646],[106.27833,37.854608],[106.289559,37.871108],[106.318021,37.872342],[106.3335,37.875592],[106.345809,37.873823],[106.358691,37.886658],[106.358016,37.924325],[106.336771,37.92634],[106.335726,37.941837],[106.304869,37.942659],[106.29826,37.949276],[106.31303,37.96637],[106.298395,37.977053],[106.292594,37.988678],[106.283456,37.994017],[106.272664,37.98761],[106.265481,38.003628],[106.25904,38.008145],[106.258636,38.019437],[106.266122,38.019232],[106.266156,38.043001],[106.238672,38.045381],[106.248789,38.035325],[106.239953,38.035284],[106.227307,38.059499],[106.210547,38.0659],[106.207107,38.071357],[106.21257,38.089613],[106.225587,38.097816],[106.229229,38.107495],[106.218809,38.123036],[106.218404,38.13103],[106.200835,38.134638],[106.183501,38.143246],[106.18485,38.15046],[106.164887,38.152386],[106.152544,38.159189],[106.14064,38.157181],[106.129882,38.144517],[106.126881,38.145418],[106.125229,38.169351],[106.108334,38.175866],[106.109581,38.183035],[106.096666,38.186067],[106.090326,38.180659],[106.078995,38.183486],[106.082232,38.190122],[106.077815,38.197454],[106.084863,38.200034],[106.077106,38.204007],[106.077342,38.210887],[106.058154,38.19471],[106.055692,38.186722],[106.0419,38.175743],[106.012865,38.185534],[106.005311,38.173612],[105.979715,38.178856],[105.966125,38.146402],[105.940159,38.160295],[105.970172,38.219404],[105.967272,38.224072],[105.923803,38.239793],[105.907178,38.244623],[105.892373,38.259848],[105.852749,38.264717]]]]}},{"type":"Feature","properties":{"adcode":640400,"name":"固原市","center":[106.285241,36.004561],"centroid":[106.186077,35.918037],"childrenNum":5,"level":"city","parent":{"adcode":640000},"subFeatureIndex":3,"acroutes":[100000,640000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.071306,35.449418],[106.076196,35.446785],[106.078118,35.429418],[106.084087,35.420287],[106.081288,35.413109],[106.087291,35.40232],[106.100206,35.40198],[106.098588,35.390977],[106.104725,35.388852],[106.102432,35.379972],[106.106546,35.367138],[106.115854,35.362208],[106.113021,35.3716],[106.123779,35.37347],[106.129916,35.393568],[106.154871,35.41553],[106.166977,35.421009],[106.170653,35.433198],[106.178848,35.436383],[106.180669,35.424534],[106.187447,35.426063],[106.192067,35.412217],[106.207579,35.409329],[106.221676,35.41209],[106.237491,35.409456],[106.244405,35.377507],[106.249699,35.36684],[106.241403,35.358552],[106.251655,35.346863],[106.253645,35.337425],[106.261772,35.330325],[106.275328,35.329134],[106.287165,35.309913],[106.285715,35.301492],[106.300182,35.28822],[106.310501,35.28856],[106.320753,35.277711],[106.318729,35.267117],[106.335928,35.25103],[106.352452,35.249541],[106.355555,35.239538],[106.363614,35.238304],[106.37562,35.248604],[106.368201,35.273499],[106.376294,35.275967],[106.387355,35.269797],[106.410961,35.279796],[106.421179,35.27835],[106.43052,35.293027],[106.443065,35.296855],[106.457161,35.308169],[106.472269,35.310678],[106.490412,35.329602],[106.488017,35.337297],[106.493784,35.351921],[106.50933,35.358765],[106.502282,35.363058],[106.496111,35.376147],[106.497966,35.3866],[106.493244,35.392549],[106.494964,35.401428],[106.503496,35.415063],[106.497527,35.428399],[106.483431,35.450564],[106.490142,35.480405],[106.486601,35.483121],[106.470414,35.478792],[106.465592,35.480999],[106.463332,35.501665],[106.449506,35.509598],[106.451968,35.516131],[106.443638,35.519355],[106.440772,35.526609],[106.454767,35.537679],[106.450922,35.553496],[106.460567,35.579399],[106.478946,35.575202],[106.471493,35.600929],[106.465895,35.604827],[106.465457,35.620631],[106.454362,35.629104],[106.453789,35.636644],[106.460061,35.643125],[106.449675,35.647656],[106.445223,35.663155],[106.437838,35.662182],[106.434972,35.688515],[106.44873,35.694145],[106.465828,35.717971],[106.488287,35.725334],[106.494155,35.73663],[106.524539,35.739464],[106.531014,35.725714],[106.530407,35.741791],[106.566591,35.738787],[106.581935,35.730411],[106.597549,35.727957],[106.60146,35.731638],[106.599606,35.743694],[106.606013,35.743906],[106.613533,35.729734],[106.61613,35.741198],[106.62102,35.743821],[106.624122,35.727322],[106.633227,35.714882],[106.648537,35.709466],[106.651943,35.715475],[106.662397,35.707561],[106.674875,35.728041],[106.681451,35.729691],[106.692714,35.715051],[106.713757,35.704176],[106.737498,35.689446],[106.75473,35.691266],[106.753482,35.699266],[106.746131,35.698208],[106.751526,35.726095],[106.756956,35.723049],[106.764409,35.728126],[106.768725,35.722795],[106.782484,35.723726],[106.806258,35.709635],[106.816375,35.71759],[106.817454,35.728634],[106.823255,35.731045],[106.818129,35.739464],[106.827807,35.745301],[106.834484,35.738068],[106.836002,35.743821],[106.85428,35.74399],[106.86706,35.73866],[106.868983,35.774145],[106.875997,35.776597],[106.885304,35.771861],[106.88554,35.761712],[106.897613,35.759809],[106.902065,35.774948],[106.90891,35.767717],[106.91434,35.791353],[106.905302,35.793889],[106.904088,35.803907],[106.897681,35.808472],[106.919634,35.803569],[106.926277,35.811684],[106.917206,35.81291],[106.919229,35.819249],[106.911271,35.83125],[106.899906,35.827278],[106.877953,35.852797],[106.873974,35.87476],[106.883618,35.868974],[106.880786,35.880841],[106.873097,35.878307],[106.852897,35.883375],[106.850132,35.887555],[106.862474,35.895366],[106.861766,35.909044],[106.872692,35.90592],[106.885979,35.917486],[106.905437,35.912674],[106.904864,35.924872],[106.912923,35.932215],[106.925131,35.926223],[106.934472,35.933439],[106.940508,35.931034],[106.944791,35.940275],[106.938384,35.953144],[106.922231,35.948545],[106.91896,35.940486],[106.902537,35.943566],[106.896736,35.950106],[106.891847,35.966137],[106.898591,35.960442],[106.90773,35.963311],[106.910529,35.950148],[106.917577,35.946604],[106.917678,35.961201],[106.934843,35.981237],[106.944252,35.984231],[106.951232,36.004513],[106.932921,36.007464],[106.928436,36.011385],[106.930897,36.029047],[106.942093,36.032503],[106.942768,36.051804],[106.940643,36.06495],[106.949546,36.067941],[106.947927,36.077545],[106.95882,36.075144],[106.955245,36.083063],[106.957572,36.091571],[106.950592,36.099446],[106.944083,36.099614],[106.940643,36.108204],[106.946342,36.122393],[106.940475,36.12656],[106.932988,36.11431],[106.92567,36.11612],[106.930324,36.138515],[106.918386,36.129297],[106.907056,36.136368],[106.912552,36.153582],[106.905167,36.157663],[106.896601,36.169529],[106.888677,36.166373],[106.878425,36.179331],[106.874614,36.176891],[106.867128,36.185515],[106.865577,36.193843],[106.857854,36.203306],[106.84133,36.20646],[106.838801,36.221766],[106.834181,36.229124],[106.828077,36.215459],[106.821636,36.220967],[106.810609,36.218318],[106.808282,36.210876],[106.789127,36.226265],[106.7839,36.21773],[106.776043,36.223406],[106.772907,36.21302],[106.762925,36.215165],[106.741275,36.228661],[106.736081,36.237279],[106.729674,36.232151],[106.719288,36.236943],[106.716556,36.231983],[106.708665,36.240138],[106.702123,36.239465],[106.685329,36.273339],[106.670626,36.268632],[106.663443,36.262833],[106.656766,36.266447],[106.654945,36.257917],[106.64874,36.258883],[106.643782,36.284892],[106.638016,36.265943],[106.609655,36.275691],[106.609082,36.290354],[106.600213,36.292832],[106.599302,36.274221],[106.594311,36.270397],[106.586724,36.277834],[106.582306,36.289093],[106.577787,36.286027],[106.559611,36.292244],[106.561533,36.274053],[106.556238,36.260648],[106.545649,36.259346],[106.541198,36.253882],[106.518874,36.270481],[106.502417,36.271028],[106.484038,36.285523],[106.478373,36.298251],[106.470751,36.306315],[106.470819,36.312867],[106.480227,36.3161],[106.497122,36.302997],[106.499584,36.296193],[106.510409,36.286111],[106.509802,36.303585],[106.497426,36.313791],[106.506363,36.328236],[106.50761,36.367065],[106.510308,36.378857],[106.525112,36.37273],[106.531048,36.378982],[106.524977,36.382759],[106.526967,36.390185],[106.514152,36.391444],[106.504676,36.401386],[106.492435,36.399247],[106.492705,36.422945],[106.504643,36.414641],[106.50987,36.427138],[106.500461,36.432925],[106.503395,36.44173],[106.519784,36.456319],[106.523258,36.468474],[106.518098,36.480921],[106.502586,36.485279],[106.494762,36.494456],[106.491019,36.48243],[106.483735,36.480921],[106.477091,36.494623],[106.462759,36.499567],[106.453856,36.497849],[106.433285,36.518082],[106.420909,36.514606],[106.410927,36.519381],[106.401721,36.509914],[106.371269,36.515821],[106.3566,36.510375],[106.347798,36.499274],[106.337412,36.500279],[106.330296,36.486243],[106.311951,36.479538],[106.316504,36.451037],[106.327126,36.454181],[106.316807,36.436405],[106.315256,36.41204],[106.302812,36.411872],[106.288784,36.406965],[106.281061,36.411537],[106.270405,36.382507],[106.245821,36.382465],[106.227274,36.372101],[106.203937,36.353928],[106.197395,36.341797],[106.158783,36.331973],[106.141618,36.324919],[106.127286,36.325171],[106.105501,36.315429],[106.091169,36.324205],[106.085672,36.331637],[106.07832,36.332015],[106.074914,36.325003],[106.058727,36.33277],[106.038089,36.327228],[106.026118,36.327942],[106.014011,36.313203],[105.984639,36.319082],[105.979749,36.311607],[105.981401,36.302619],[105.971892,36.298839],[105.967946,36.29174],[105.993069,36.246275],[105.999173,36.225382],[106.003557,36.193843],[105.98184,36.19603],[105.952906,36.211885],[105.902726,36.216552],[105.886371,36.216132],[105.882864,36.20911],[105.885022,36.190605],[105.876861,36.18501],[105.861787,36.165953],[105.857032,36.150762],[105.839867,36.141251],[105.818521,36.121256],[105.812518,36.126939],[105.80918,36.138725],[105.800007,36.141335],[105.784697,36.136873],[105.77458,36.139146],[105.76534,36.133211],[105.757145,36.136495],[105.779773,36.154886],[105.768679,36.174662],[105.75927,36.179121],[105.745241,36.172222],[105.725581,36.174704],[105.706932,36.167593],[105.696816,36.155265],[105.687036,36.152403],[105.673547,36.155812],[105.645894,36.17727],[105.635474,36.190142],[105.625323,36.195315],[105.618107,36.209236],[105.60853,36.21445],[105.603606,36.230721],[105.588127,36.237447],[105.537004,36.218024],[105.516669,36.203559],[105.496941,36.192666],[105.488679,36.191109],[105.488342,36.18501],[105.502101,36.157705],[105.5136,36.150173],[105.505372,36.128455],[105.497144,36.130644],[105.500347,36.123277],[105.491343,36.101046],[105.486521,36.098856],[105.468176,36.101046],[105.459981,36.107152],[105.452394,36.100878],[105.441939,36.099488],[105.431249,36.10412],[105.407981,36.075818],[105.399988,36.079693],[105.391389,36.074807],[105.391288,36.066003],[105.378035,36.061579],[105.360432,36.044219],[105.365895,36.034653],[105.343941,36.033852],[105.338984,36.017203],[105.341547,36.004555],[105.333184,36.000634],[105.335612,35.98014],[105.331767,35.951456],[105.325057,35.941794],[105.335241,35.930612],[105.340266,35.909255],[105.327114,35.904738],[105.334499,35.886373],[105.350247,35.875985],[105.357869,35.879279],[105.370515,35.871128],[105.379182,35.872142],[105.390816,35.866482],[105.398437,35.855162],[105.391254,35.846883],[105.385387,35.853684],[105.371021,35.844263],[105.378642,35.82487],[105.375472,35.816545],[105.386196,35.817601],[105.374966,35.80433],[105.383903,35.792494],[105.394694,35.809698],[105.408588,35.822292],[105.416378,35.821574],[105.417221,35.815023],[105.428821,35.818911],[105.431755,35.78759],[105.437319,35.779937],[105.447537,35.780783],[105.457283,35.77165],[105.453844,35.747628],[105.464028,35.752704],[105.472661,35.750631],[105.476708,35.732737],[105.4818,35.727068],[105.509385,35.718902],[105.530225,35.726857],[105.537914,35.721864],[105.54675,35.727787],[105.56125,35.724614],[105.567826,35.714247],[105.560104,35.698758],[105.564353,35.687668],[105.57511,35.699308],[105.570086,35.716321],[105.595715,35.715602],[105.597839,35.722922],[105.621547,35.729353],[105.668927,35.750039],[105.679752,35.737603],[105.684068,35.746867],[105.690172,35.745555],[105.691083,35.736418],[105.702279,35.733203],[105.707843,35.737941],[105.72784,35.731849],[105.734888,35.724445],[105.746523,35.731807],[105.755055,35.73058],[105.756606,35.717294],[105.73762,35.697404],[105.728481,35.699689],[105.720995,35.72601],[105.711822,35.710397],[105.704268,35.702991],[105.690948,35.698589],[105.690476,35.683986],[105.704201,35.685891],[105.719814,35.678059],[105.714722,35.646979],[105.726323,35.63855],[105.736575,35.642489],[105.744095,35.63999],[105.742004,35.626351],[105.750367,35.623682],[105.759034,35.634442],[105.763924,35.630417],[105.758022,35.617496],[105.749659,35.616861],[105.76217,35.602921],[105.778391,35.599954],[105.78581,35.591987],[105.777615,35.586816],[105.79822,35.565749],[105.816464,35.575075],[105.82422,35.559771],[105.820983,35.555065],[105.827727,35.547983],[105.82304,35.537891],[105.834674,35.540986],[105.836967,35.522537],[105.834033,35.517574],[105.836596,35.494791],[105.846949,35.490505],[105.856223,35.511423],[105.862023,35.515071],[105.868532,35.539969],[105.884415,35.534879],[105.884347,35.543785],[105.902794,35.547305],[105.913248,35.539672],[105.948387,35.53577],[105.96309,35.531147],[105.974286,35.531783],[105.996711,35.526227],[106.00467,35.519568],[106.016102,35.52224],[106.017451,35.512144],[106.01128,35.509641],[106.02052,35.4939],[106.031142,35.494536],[106.068102,35.503107],[106.070699,35.491863],[106.074914,35.493221],[106.078523,35.509641],[106.094608,35.508368],[106.099431,35.499628],[106.088437,35.49025],[106.068102,35.488129],[106.072486,35.470176],[106.069789,35.458121],[106.074105,35.454894],[106.073262,35.450182],[106.071306,35.449418]]],[[[106.05458,35.451625],[106.052219,35.474718],[106.058829,35.486177],[106.054276,35.489741],[106.03927,35.485752],[106.028546,35.486983],[106.023015,35.48223],[105.988483,35.475567],[105.977759,35.469497],[105.970374,35.470176],[105.959853,35.463809],[105.938405,35.459734],[105.925523,35.450819],[105.914833,35.453493],[105.8976,35.451498],[105.889811,35.439482],[105.893958,35.415403],[105.925624,35.42067],[105.930682,35.425809],[105.946802,35.422708],[105.949399,35.429631],[105.960426,35.432901],[105.965585,35.425639],[105.975466,35.432773],[105.992429,35.437359],[105.994789,35.451116],[106.004029,35.439015],[106.00983,35.442242],[106.008143,35.453196],[106.017282,35.463767],[106.034548,35.469242],[106.041832,35.454003],[106.05458,35.451625]]],[[[106.073026,35.420755],[106.074678,35.430692],[106.063516,35.437911],[106.064258,35.425809],[106.073026,35.420755]]],[[[106.074105,35.454894],[106.069789,35.458121],[106.071306,35.449418],[106.073262,35.450182],[106.074105,35.454894]]]]}},{"type":"Feature","properties":{"adcode":640500,"name":"中卫市","center":[105.189568,37.514951],"centroid":[105.504008,37.016864],"childrenNum":3,"level":"city","parent":{"adcode":640000},"subFeatureIndex":4,"acroutes":[100000,640000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.410927,36.519381],[106.418313,36.527841],[106.406881,36.536845],[106.401552,36.546308],[106.384118,36.545512],[106.371775,36.548904],[106.371438,36.557696],[106.362299,36.571049],[106.364828,36.577913],[106.392582,36.556649],[106.397539,36.574356],[106.407386,36.57264],[106.41838,36.562719],[106.444886,36.557235],[106.455913,36.559914],[106.459151,36.568705],[106.449776,36.577662],[106.471662,36.581303],[106.459252,36.592644],[106.444313,36.600845],[106.447044,36.615195],[106.444684,36.624941],[106.432813,36.635439],[106.430486,36.629668],[106.410185,36.624774],[106.404958,36.620591],[106.388434,36.623979],[106.380611,36.622139],[106.383646,36.614191],[106.363682,36.608753],[106.320483,36.594318],[106.306657,36.596577],[106.297821,36.609171],[106.290133,36.610844],[106.277318,36.606284],[106.274215,36.613313],[106.25668,36.619127],[106.249632,36.606577],[106.231253,36.612518],[106.216651,36.6103],[106.21139,36.604904],[106.211019,36.587162],[106.195068,36.589757],[106.182186,36.587539],[106.167416,36.579043],[106.152881,36.587288],[106.146845,36.604736],[106.152004,36.622683],[106.132108,36.643427],[106.119192,36.648947],[106.118619,36.661741],[106.106884,36.675494],[106.106344,36.690582],[106.077275,36.720458],[106.067563,36.741677],[106.071778,36.758923],[106.058019,36.769695],[106.047127,36.783429],[106.029659,36.7957],[106.031952,36.810723],[106.028546,36.824366],[106.004603,36.842011],[105.990506,36.840676],[105.984032,36.845306],[105.976478,36.842387],[105.971015,36.849227],[105.984436,36.860361],[105.980525,36.865573],[105.981165,36.878456],[105.965451,36.888461],[105.963832,36.898298],[105.95267,36.902216],[105.956649,36.911926],[105.936348,36.924301],[105.934695,36.932883],[105.926164,36.934216],[105.923972,36.926801],[105.909302,36.918009],[105.888462,36.917426],[105.908291,36.894713],[105.908493,36.890087],[105.897904,36.882333],[105.899927,36.878248],[105.882729,36.859694],[105.874534,36.855023],[105.872376,36.845681],[105.86118,36.842303],[105.856998,36.835546],[105.839901,36.829247],[105.836394,36.806258],[105.826648,36.803504],[105.82304,36.822113],[105.808944,36.828246],[105.789755,36.82057],[105.767161,36.820361],[105.761091,36.825701],[105.745713,36.815062],[105.737519,36.840176],[105.738396,36.861695],[105.748378,36.864989],[105.746995,36.884168],[105.759776,36.89859],[105.742105,36.914092],[105.751075,36.914676],[105.768375,36.908133],[105.76797,36.914092],[105.783618,36.921968],[105.785236,36.928009],[105.821859,36.947837],[105.831909,36.959332],[105.833494,36.974531],[105.848669,36.980194],[105.842329,36.98698],[105.785135,37.078511],[105.778458,37.085371],[105.748546,37.085579],[105.741464,37.089861],[105.711013,37.116754],[105.696816,37.120245],[105.683428,37.127393],[105.67557,37.139068],[105.668859,37.160711],[105.6724,37.176285],[105.664981,37.191897],[105.63426,37.190569],[105.616724,37.197917],[105.586475,37.198041],[105.575886,37.202566],[105.573964,37.208046],[105.561284,37.217717],[105.573424,37.217094],[105.585531,37.222157],[105.605495,37.222946],[105.63018,37.241411],[105.649334,37.259375],[105.667915,37.26879],[105.676481,37.276836],[105.679212,37.261614],[105.687002,37.25506],[105.69432,37.23888],[105.693949,37.231163],[105.684304,37.216306],[105.707337,37.197128],[105.712834,37.187455],[105.73708,37.188077],[105.769454,37.19306],[105.780718,37.199577],[105.775052,37.206095],[105.783146,37.213027],[105.771579,37.216181],[105.767026,37.229254],[105.772085,37.233652],[105.756741,37.24415],[105.755392,37.256222],[105.734888,37.288903],[105.755324,37.29649],[105.775221,37.301341],[105.791509,37.311124],[105.794207,37.318668],[105.837675,37.315394],[105.925725,37.307642],[105.94117,37.321031],[105.943666,37.33222],[105.92849,37.346143],[105.916553,37.351695],[105.905626,37.351861],[105.889102,37.360519],[105.876962,37.36288],[105.843273,37.38127],[105.850186,37.396508],[105.884314,37.392989],[105.885629,37.398289],[105.875714,37.415759],[105.885932,37.424824],[105.913147,37.431487],[105.923938,37.424989],[105.934695,37.428011],[105.936921,37.445888],[105.983627,37.451805],[105.973072,37.464381],[105.958335,37.469056],[105.960426,37.475012],[105.975601,37.474185],[105.98248,37.477328],[105.994722,37.473564],[106.004029,37.474723],[106.01219,37.484773],[106.016068,37.498791],[106.032019,37.508301],[106.037988,37.51938],[106.048847,37.516982],[106.056536,37.524092],[106.075319,37.527647],[106.060312,37.545583],[106.039472,37.550045],[106.029928,37.558681],[106.034447,37.559714],[106.002073,37.592964],[106.001837,37.603081],[106.008346,37.610554],[106.020756,37.609522],[106.024701,37.613403],[106.022577,37.626324],[106.024566,37.643782],[106.011752,37.648611],[106.005547,37.65513],[105.990136,37.654594],[105.977928,37.659628],[105.951591,37.657647],[105.934291,37.669488],[105.93075,37.654553],[105.910516,37.62942],[105.904514,37.613857],[105.882931,37.615178],[105.894093,37.628842],[105.886405,37.643494],[105.879323,37.647249],[105.880705,37.660164],[105.888259,37.67947],[105.889204,37.714111],[105.902389,37.726849],[105.901276,37.738308],[105.882695,37.735876],[105.853289,37.739833],[105.844521,37.728704],[105.825063,37.735217],[105.815857,37.734186],[105.78409,37.73872],[105.760922,37.728416],[105.742071,37.727591],[105.717521,37.731672],[105.696343,37.725942],[105.678875,37.725036],[105.651897,37.715554],[105.649165,37.710318],[105.610047,37.706978],[105.598952,37.699391],[105.584216,37.699803],[105.533733,37.69605],[105.4674,37.695019],[105.447436,37.696875],[105.421773,37.707225],[105.403698,37.710029],[105.388253,37.70739],[105.372606,37.708174],[105.359757,37.705164],[105.323505,37.701246],[105.314771,37.702071],[105.27862,37.687348],[105.246685,37.680625],[105.22689,37.678522],[105.210298,37.671674],[105.187502,37.657771],[105.165447,37.651458],[105.134861,37.638376],[105.110918,37.633795],[105.087885,37.613816],[105.040471,37.586481],[105.024183,37.579872],[104.926758,37.572437],[104.905175,37.566902],[104.866327,37.566613],[104.832773,37.554797],[104.805053,37.53926],[104.715957,37.531738],[104.623591,37.522563],[104.544545,37.518801],[104.433294,37.515287],[104.430495,37.510947],[104.41967,37.511815],[104.410497,37.481506],[104.407563,37.46463],[104.391646,37.460782],[104.37347,37.461982],[104.357047,37.449736],[104.336914,37.444067],[104.322447,37.448371],[104.303259,37.441709],[104.287241,37.427845],[104.287409,37.421306],[104.298437,37.41402],[104.345109,37.420436],[104.365511,37.418036],[104.375493,37.425196],[104.386588,37.427638],[104.404866,37.438315],[104.437745,37.445805],[104.452718,37.422713],[104.465836,37.41965],[104.484519,37.422423],[104.499491,37.42114],[104.521006,37.434798],[104.531123,37.433018],[104.544275,37.42321],[104.56488,37.430411],[104.58046,37.427307],[104.607708,37.425114],[104.613811,37.418822],[104.625378,37.416007],[104.638294,37.419443],[104.658055,37.412489],[104.679908,37.407852],[104.671612,37.400152],[104.669184,37.388475],[104.661495,37.376631],[104.661529,37.369383],[104.668273,37.356045],[104.702873,37.34548],[104.717643,37.350452],[104.718082,37.338229],[104.712518,37.328947],[104.70466,37.330107],[104.686787,37.318917],[104.678053,37.319331],[104.666014,37.310834],[104.664733,37.299558],[104.653672,37.291515],[104.64433,37.291183],[104.632494,37.298854],[104.624434,37.29848],[104.61951,37.291308],[104.625243,37.285669],[104.622984,37.277914],[104.613643,37.278121],[104.603627,37.262444],[104.600693,37.242656],[104.611114,37.223195],[104.624569,37.212529],[104.626053,37.205846],[104.637957,37.201902],[104.653435,37.203521],[104.663755,37.208336],[104.666992,37.204808],[104.683145,37.202982],[104.705942,37.208129],[104.717239,37.208502],[104.731402,37.219626],[104.747387,37.228631],[104.750388,37.235105],[104.765395,37.239129],[104.776422,37.246639],[104.785224,37.241619],[104.793688,37.229171],[104.804682,37.234814],[104.810853,37.230291],[104.823533,37.229378],[104.832368,37.222116],[104.856412,37.21174],[104.858503,37.183884],[104.86491,37.172838],[104.888247,37.158676],[104.897217,37.141436],[104.898296,37.127725],[104.90993,37.122032],[104.918462,37.110105],[104.916338,37.095806],[104.93158,37.086494],[104.947329,37.083209],[104.953871,37.077346],[104.954545,37.040289],[104.965269,37.03176],[105.004421,37.035463],[105.013729,37.031927],[105.010997,37.01728],[105.039864,37.007251],[105.049239,37.019777],[105.059558,37.022815],[105.075981,37.013119],[105.090853,37.009581],[105.111052,37.000342],[105.129296,36.996346],[105.156645,36.99697],[105.165346,36.994889],[105.168718,36.967245],[105.177756,36.959083],[105.179543,36.947463],[105.185816,36.941798],[105.184062,36.929217],[105.17779,36.929425],[105.184062,36.902382],[105.179004,36.892296],[105.190705,36.886294],[105.191852,36.891837],[105.207702,36.897506],[105.22635,36.886419],[105.240615,36.896797],[105.24999,36.891254],[105.274607,36.870785],[105.280947,36.857859],[105.278722,36.852646],[105.297505,36.843513],[105.292447,36.835671],[105.298618,36.832626],[105.303609,36.820528],[105.327451,36.805048],[105.332712,36.806049],[105.335983,36.782344],[105.341075,36.764685],[105.333521,36.762597],[105.329845,36.751156],[105.319627,36.742846],[105.307082,36.742136],[105.298045,36.748317],[105.275889,36.752284],[105.272247,36.739421],[105.240075,36.741426],[105.239941,36.733783],[105.226553,36.733783],[105.215256,36.72781],[105.200957,36.7022],[105.208578,36.680217],[105.225406,36.6645],[105.222068,36.636485],[105.233837,36.62582],[105.241526,36.625862],[105.241492,36.613689],[105.250024,36.601431],[105.261152,36.602644],[105.27046,36.593146],[105.265435,36.58938],[105.274371,36.577453],[105.275956,36.563138],[105.252081,36.553132],[105.248978,36.546727],[105.257004,36.544214],[105.260107,36.533662],[105.272415,36.531066],[105.28115,36.522564],[105.287726,36.526459],[105.30398,36.524658],[105.320133,36.536007],[105.336016,36.519255],[105.36141,36.498184],[105.367581,36.486117],[105.365625,36.470277],[105.370953,36.461642],[105.363332,36.443197],[105.370481,36.436531],[105.384813,36.440514],[105.39955,36.428774],[105.397088,36.407804],[105.402214,36.385108],[105.414085,36.384101],[105.41948,36.377346],[105.413309,36.369583],[105.401641,36.36996],[105.405418,36.358041],[105.419919,36.346792],[105.425651,36.330209],[105.435026,36.325339],[105.454215,36.322777],[105.460622,36.308037],[105.468209,36.303627],[105.476977,36.29132],[105.473133,36.275565],[105.466523,36.274599],[105.459745,36.264556],[105.465781,36.251991],[105.457418,36.236355],[105.460487,36.223868],[105.479136,36.212894],[105.488679,36.191109],[105.496941,36.192666],[105.516669,36.203559],[105.537004,36.218024],[105.588127,36.237447],[105.603606,36.230721],[105.60853,36.21445],[105.618107,36.209236],[105.625323,36.195315],[105.635474,36.190142],[105.645894,36.17727],[105.673547,36.155812],[105.687036,36.152403],[105.696816,36.155265],[105.706932,36.167593],[105.725581,36.174704],[105.745241,36.172222],[105.75927,36.179121],[105.768679,36.174662],[105.779773,36.154886],[105.757145,36.136495],[105.76534,36.133211],[105.77458,36.139146],[105.784697,36.136873],[105.800007,36.141335],[105.80918,36.138725],[105.812518,36.126939],[105.818521,36.121256],[105.839867,36.141251],[105.857032,36.150762],[105.861787,36.165953],[105.876861,36.18501],[105.885022,36.190605],[105.882864,36.20911],[105.886371,36.216132],[105.902726,36.216552],[105.952906,36.211885],[105.98184,36.19603],[106.003557,36.193843],[105.999173,36.225382],[105.993069,36.246275],[105.967946,36.29174],[105.971892,36.298839],[105.981401,36.302619],[105.979749,36.311607],[105.984639,36.319082],[106.014011,36.313203],[106.026118,36.327942],[106.038089,36.327228],[106.058727,36.33277],[106.074914,36.325003],[106.07832,36.332015],[106.085672,36.331637],[106.091169,36.324205],[106.105501,36.315429],[106.127286,36.325171],[106.141618,36.324919],[106.158783,36.331973],[106.197395,36.341797],[106.203937,36.353928],[106.227274,36.372101],[106.245821,36.382465],[106.270405,36.382507],[106.281061,36.411537],[106.288784,36.406965],[106.302812,36.411872],[106.315256,36.41204],[106.316807,36.436405],[106.327126,36.454181],[106.316504,36.451037],[106.311951,36.479538],[106.330296,36.486243],[106.337412,36.500279],[106.347798,36.499274],[106.3566,36.510375],[106.371269,36.515821],[106.401721,36.509914],[106.410927,36.519381]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/650000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/650000.json new file mode 100644 index 0000000..7a94ef0 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/650000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":650100,"name":"乌鲁木齐市","center":[87.617733,43.792818],"centroid":[87.783748,43.739398],"childrenNum":8,"level":"city","parent":{"adcode":650000},"subFeatureIndex":0,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.504658,44.066424],[87.46278,44.078813],[87.404426,44.046827],[87.404426,44.046827],[87.383144,44.044233],[87.28703,43.959569],[87.262545,43.923764],[87.280852,43.865968],[87.278563,43.800446],[87.222497,43.740212],[87.202588,43.698186],[87.169635,43.679628],[87.102814,43.596188],[86.997318,43.530952],[86.97123,43.474231],[86.900976,43.429398],[86.904867,43.393129],[86.940108,43.367188],[86.922716,43.325047],[86.895942,43.302726],[86.85475,43.211458],[86.815161,43.171403],[86.844681,43.159703],[86.797998,43.112442],[86.853835,43.083452],[86.912189,43.074665],[86.926378,43.051519],[87.054528,43.022941],[87.111052,43.046684],[87.111281,43.063093],[87.270096,43.032322],[87.345156,42.999775],[87.403053,42.96369],[87.497106,42.940062],[87.538069,42.908201],[87.569649,42.899095],[87.66805,42.903207],[87.758213,42.898948],[87.789336,42.872209],[87.882245,42.829873],[87.941515,42.827815],[87.931675,42.854426],[87.862565,42.884551],[87.815424,42.925382],[87.755925,42.961196],[87.638072,42.998162],[87.634411,43.036572],[87.597567,43.040089],[87.487953,43.10278],[87.414266,43.105562],[87.385203,43.123565],[87.393899,43.184124],[87.36804,43.281272],[87.587727,43.260979],[87.752492,43.298056],[87.886135,43.29864],[87.974697,43.313815],[87.99964,43.300245],[88.045408,43.318045],[88.164634,43.331028],[88.225048,43.325193],[88.21887,43.271345],[88.247932,43.224609],[88.310177,43.212188],[88.351597,43.227093],[88.430776,43.197427],[88.482494,43.242139],[88.523457,43.262585],[88.53261,43.352027],[88.555037,43.342549],[88.641538,43.353922],[88.753899,43.396625],[88.842689,43.388466],[88.871523,43.413961],[88.93148,43.435368],[88.936285,43.489943],[88.974273,43.55101],[88.936285,43.63248],[88.835138,43.720797],[88.758476,43.706449],[88.704927,43.708913],[88.723006,43.742964],[88.693485,43.759621],[88.626893,43.765703],[88.600118,43.803919],[88.531466,43.801314],[88.512015,43.858016],[88.460068,43.807681],[88.413842,43.791617],[88.33924,43.801459],[88.315669,43.790604],[88.282487,43.830974],[88.247246,43.80334],[88.259146,43.786985],[88.21086,43.758897],[88.169898,43.772074],[88.138318,43.756869],[88.132826,43.817086],[88.090719,43.81318],[88.06486,43.854257],[88.018405,43.874496],[88.018405,43.937482],[87.996894,43.994632],[87.958449,44.009199],[87.866226,44.063975],[87.85959,44.09624],[87.824348,44.123306],[87.774232,44.11726],[87.818627,44.225268],[87.81611,44.288599],[87.794828,44.329205],[87.802151,44.378238],[87.989114,44.961169],[88.004446,45.002015],[87.336231,45.001874],[87.555461,44.665873],[87.58132,44.596525],[87.575141,44.583531],[87.575141,44.583531],[87.59116,44.533383],[87.598711,44.477756],[87.652718,44.450423],[87.663702,44.417063],[87.693452,44.416633],[87.692765,44.370212],[87.716107,44.356881],[87.712216,44.262902],[87.691163,44.221963],[87.652489,44.196236],[87.640132,44.226561],[87.584066,44.239347],[87.564614,44.170929],[87.576743,44.116541],[87.527542,44.093648],[87.508319,44.021456],[87.492529,44.007757],[87.504658,44.066424]]]]}},{"type":"Feature","properties":{"adcode":650200,"name":"克拉玛依市","center":[84.873946,45.595886],"centroid":[85.224171,45.567128],"childrenNum":4,"level":"city","parent":{"adcode":650000},"subFeatureIndex":1,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[85.010295,44.755219],[85.047367,44.770167],[85.021965,44.814421],[85.027229,44.886208],[85.051486,44.931793],[85.156066,44.970958],[85.171627,45.022711],[85.240737,45.019735],[85.258358,45.031639],[85.238449,45.080223],[85.250348,45.158607],[85.205953,45.207365],[85.201834,45.244224],[85.239593,45.29305],[85.245772,45.329008],[85.239593,45.375508],[85.28353,45.421406],[85.388111,45.436182],[85.434336,45.459814],[85.491775,45.51267],[85.547384,45.593123],[85.596813,45.641929],[85.59155,45.654404],[85.621299,45.763058],[85.642353,45.78921],[85.814212,45.895369],[85.839613,45.921877],[85.886297,45.938751],[85.880347,45.952973],[85.931836,45.975273],[85.95472,46.001325],[85.962501,46.044764],[86.024288,46.068001],[85.993165,46.123897],[85.903002,46.181819],[85.813754,46.178209],[85.791557,46.192924],[85.679882,46.190842],[85.648302,46.211936],[85.557453,46.198059],[85.437998,46.150296],[85.419462,46.128066],[85.380101,46.143628],[85.282844,46.090811],[85.263392,46.053114],[85.293142,45.993246],[85.259044,45.978199],[85.288565,45.967608],[85.258358,45.925364],[85.22838,45.850136],[85.193825,45.802491],[85.129978,45.74543],[85.059953,45.713098],[85.023796,45.721218],[84.956746,45.707777],[84.910291,45.648938],[84.847589,45.631414],[84.791981,45.663794],[84.772071,45.648658],[84.80594,45.608275],[84.783513,45.597613],[84.739576,45.520819],[84.710742,45.451797],[84.651701,45.395646],[84.623325,45.343808],[84.579388,45.31068],[84.58877,45.241401],[84.633394,45.185888],[84.668864,45.158607],[84.661541,45.102872],[84.657422,45.063514],[84.706394,45.067196],[84.805253,45.025687],[84.861548,44.899419],[84.917156,44.888481],[84.917156,44.836891],[84.84942,44.826511],[84.898163,44.802899],[84.954,44.799911],[85.010295,44.755219]]],[[[85.113273,44.34369],[84.974595,44.384687],[84.77825,44.390848],[84.779166,44.343546],[84.798159,44.258737],[84.792209,44.224262],[84.737974,44.126185],[84.797244,44.161436],[84.830426,44.160142],[84.917385,44.17927],[84.939354,44.252275],[84.969103,44.297354],[84.996106,44.310699],[85.065445,44.317299],[85.108467,44.309551],[85.113273,44.34369]]]]}},{"type":"Feature","properties":{"adcode":650400,"name":"吐鲁番市","center":[89.184078,42.947613],"centroid":[89.829374,42.398557],"childrenNum":3,"level":"city","parent":{"adcode":650000},"subFeatureIndex":2,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[91.910299,41.271422],[91.905264,41.399694],[91.889932,41.401799],[91.823797,41.498585],[91.785581,41.508947],[91.784436,41.558778],[91.82128,41.57393],[91.833408,41.690377],[91.855377,41.74336],[91.808693,41.841577],[91.737066,42.011046],[91.696104,42.064508],[91.632715,42.075225],[91.637521,42.140529],[91.503649,42.202795],[91.464288,42.246003],[91.472984,42.295411],[91.448269,42.438372],[91.447354,42.49443],[91.431106,42.579531],[91.412113,42.618792],[91.407307,42.671298],[91.429047,42.727295],[91.408909,42.789716],[91.416232,42.835461],[91.384652,42.972787],[91.347351,43.102048],[91.313025,43.135126],[91.255128,43.295138],[91.259018,43.334236],[91.209131,43.356255],[91.225836,43.3822],[91.204554,43.423282],[91.16588,43.442356],[91.15398,43.472048],[91.169084,43.49518],[91.129952,43.483833],[91.104551,43.494744],[91.017591,43.495325],[91.003632,43.515104],[90.948939,43.504489],[90.881202,43.532842],[90.843443,43.522229],[90.790124,43.528044],[90.760145,43.517867],[90.686916,43.523101],[90.635198,43.502307],[90.555104,43.501434],[90.420546,43.526881],[90.385304,43.498525],[90.361505,43.515686],[90.318025,43.504925],[90.269969,43.53226],[90.21253,43.535022],[90.17294,43.55348],[90.057147,43.519903],[90.016184,43.516704],[90.014125,43.490671],[89.966755,43.492562],[89.964695,43.473794],[89.920071,43.452837],[89.896958,43.466227],[89.758739,43.463899],[89.749127,43.426922],[89.67956,43.410319],[89.624638,43.427505],[89.550265,43.433184],[89.519142,43.44978],[89.398086,43.449344],[89.375659,43.490962],[89.326001,43.501434],[89.31433,43.536185],[89.280233,43.552753],[89.226913,43.526445],[89.199223,43.539673],[89.189154,43.580793],[89.138123,43.600254],[89.078853,43.594445],[88.999903,43.607078],[88.936285,43.63248],[88.974273,43.55101],[88.936285,43.489943],[88.93148,43.435368],[88.871523,43.413961],[88.842689,43.388466],[88.753899,43.396625],[88.641538,43.353922],[88.555037,43.342549],[88.53261,43.352027],[88.523457,43.262585],[88.482494,43.242139],[88.430776,43.197427],[88.351597,43.227093],[88.310177,43.212188],[88.247932,43.224609],[88.21887,43.271345],[88.225048,43.325193],[88.164634,43.331028],[88.045408,43.318045],[87.99964,43.300245],[87.974697,43.313815],[87.886135,43.29864],[87.752492,43.298056],[87.587727,43.260979],[87.36804,43.281272],[87.393899,43.184124],[87.385203,43.123565],[87.414266,43.105562],[87.487953,43.10278],[87.597567,43.040089],[87.634411,43.036572],[87.638072,42.998162],[87.755925,42.961196],[87.815424,42.925382],[87.862565,42.884551],[87.931675,42.854426],[87.941515,42.827815],[87.882245,42.829873],[87.789336,42.872209],[87.758213,42.898948],[87.66805,42.903207],[87.569649,42.899095],[87.538069,42.908201],[87.52594,42.865155],[87.543103,42.8459],[87.509235,42.795601],[87.544019,42.777796],[87.589558,42.778826],[87.691392,42.760721],[87.841054,42.768229],[87.9049,42.704018],[87.913139,42.659355],[87.947922,42.635906],[87.981104,42.640478],[88.031449,42.604035],[88.128935,42.572296],[88.166008,42.547927],[88.202393,42.501674],[88.176534,42.439556],[88.122299,42.371302],[88.003531,42.329218],[87.898264,42.248675],[87.923436,42.177985],[87.997581,42.069867],[88.138775,42.004193],[88.168754,41.945013],[88.19324,41.926965],[88.215437,41.871296],[88.293929,41.822752],[88.341986,41.76804],[88.347936,41.67016],[88.33718,41.641246],[88.347478,41.533567],[88.307889,41.513902],[88.318873,41.493179],[88.406519,41.459828],[88.563275,41.477858],[88.735363,41.475003],[88.835824,41.440892],[88.859624,41.42195],[88.990063,41.419394],[89.017753,41.426912],[89.082057,41.409921],[89.204029,41.361178],[89.282979,41.393076],[89.33607,41.389766],[89.338816,41.404807],[89.399001,41.396385],[89.45644,41.375022],[89.460788,41.359824],[89.558045,41.3678],[89.616629,41.355158],[89.698096,41.366596],[89.743635,41.344622],[89.785742,41.34974],[89.834256,41.377129],[89.960347,41.357416],[90.108636,41.252883],[90.315279,41.24248],[90.399721,41.234187],[90.54023,41.250018],[90.65465,41.237052],[90.69996,41.239314],[90.780512,41.225743],[90.905917,41.227552],[90.966331,41.245797],[91.092651,41.251375],[91.194485,41.226497],[91.446667,41.197687],[91.641182,41.226949],[91.765214,41.267202],[91.840273,41.281066],[91.910299,41.271422]]]]}},{"type":"Feature","properties":{"adcode":650500,"name":"哈密市","center":[93.51316,42.833248],"centroid":[93.512835,43.0655],"childrenNum":3,"level":"city","parent":{"adcode":650000},"subFeatureIndex":3,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[91.518752,45.096928],[91.501818,45.030931],[91.543925,44.981454],[91.569097,44.894873],[91.530423,44.855656],[91.40662,44.76248],[91.387169,44.736563],[91.402501,44.624788],[91.361768,44.553819],[91.348953,44.549961],[91.344376,44.471604],[91.302956,44.432958],[91.287623,44.375515],[91.332934,44.28013],[91.334993,44.174668],[91.319432,44.049997],[91.307075,44.008911],[91.419664,43.927519],[91.435912,43.909464],[91.511429,43.870882],[91.525618,43.816652],[91.563147,43.769468],[91.563834,43.745572],[91.492436,43.726158],[91.366344,43.705144],[91.470925,43.675277],[91.501589,43.649167],[91.553994,43.643364],[91.495182,43.629433],[91.474815,43.605336],[91.396094,43.585151],[91.317144,43.586313],[91.295861,43.546504],[91.225607,43.540255],[91.174805,43.524991],[91.169084,43.49518],[91.15398,43.472048],[91.16588,43.442356],[91.204554,43.423282],[91.225836,43.3822],[91.209131,43.356255],[91.259018,43.334236],[91.255128,43.295138],[91.313025,43.135126],[91.347351,43.102048],[91.384652,42.972787],[91.416232,42.835461],[91.408909,42.789716],[91.429047,42.727295],[91.407307,42.671298],[91.412113,42.618792],[91.431106,42.579531],[91.447354,42.49443],[91.448269,42.438372],[91.472984,42.295411],[91.464288,42.246003],[91.503649,42.202795],[91.637521,42.140529],[91.632715,42.075225],[91.696104,42.064508],[91.737066,42.011046],[91.808693,41.841577],[91.855377,41.74336],[91.833408,41.690377],[91.82128,41.57393],[91.784436,41.558778],[91.785581,41.508947],[91.823797,41.498585],[91.889932,41.401799],[91.905264,41.399694],[91.910299,41.271422],[92.023346,41.272476],[92.070029,41.264187],[92.177356,41.222727],[92.373243,41.165543],[92.505513,41.142897],[92.535949,41.120847],[92.66204,41.115258],[92.742821,41.125228],[92.863191,41.112992],[92.99569,41.079749],[93.062054,41.048757],[93.102101,41.041045],[93.200731,40.990968],[93.261374,40.986276],[93.348333,40.993995],[93.556807,40.957511],[93.696629,40.875388],[93.809905,40.87933],[93.908307,40.9834],[94.010827,41.114805],[94.18406,41.268558],[94.534186,41.505944],[94.750211,41.53837],[94.80971,41.619365],[94.861886,41.668512],[94.968754,41.718819],[95.011319,41.726302],[95.136266,41.772826],[95.164871,41.73528],[95.199426,41.719418],[95.194162,41.695018],[95.250228,41.609021],[95.306752,41.57168],[95.335357,41.644243],[95.394398,41.693521],[95.510191,41.756374],[95.571521,41.796],[95.677245,41.83097],[95.855741,41.849643],[95.883888,41.867862],[96.038356,41.924727],[96.115933,41.98482],[96.139046,42.054236],[96.077259,42.149598],[96.178406,42.217943],[96.041102,42.326549],[96.066045,42.414543],[95.978628,42.436744],[96.017531,42.482158],[96.02371,42.542462],[96.072453,42.569343],[96.103575,42.604183],[96.166278,42.623366],[96.386193,42.727737],[96.363538,42.900564],[95.921418,43.229722],[95.879769,43.280104],[95.858029,43.417602],[95.735599,43.597495],[95.70585,43.670926],[95.645207,43.787854],[95.62301,43.855703],[95.526897,44.007469],[95.426436,44.009488],[95.377693,44.02607],[95.326661,44.028809],[95.351834,44.090048],[95.355953,44.165895],[95.376091,44.227423],[95.410646,44.245093],[95.430097,44.281709],[95.413621,44.298646],[94.998732,44.253136],[94.945413,44.292762],[94.826187,44.320168],[94.768061,44.340535],[94.722751,44.340822],[94.67355,44.396866],[94.606042,44.448276],[94.557299,44.462589],[94.470797,44.509508],[94.390932,44.521947],[94.358894,44.515657],[94.329831,44.582674],[94.279944,44.603806],[94.215411,44.668155],[94.15248,44.685122],[94.066207,44.732147],[93.723861,44.865321],[93.71608,44.894447],[93.613331,44.92654],[93.509437,44.968262],[93.434378,44.95521],[93.376939,44.985425],[93.314923,44.995068],[93.313779,44.980461],[93.173957,45.015199],[93.100041,45.007403],[93.062283,45.018318],[93.002098,45.010096],[92.932988,45.017325],[92.884245,45.0468],[92.847859,45.038582],[92.779436,45.050624],[92.684009,45.025829],[92.547849,45.018318],[92.500936,45.001165],[92.414206,45.018459],[92.348986,45.014065],[92.315347,45.028947],[92.240287,45.015908],[92.100236,45.081497],[92.044857,45.08447],[91.905722,45.078666],[91.803201,45.082772],[91.69496,45.065355],[91.561545,45.075551],[91.518752,45.096928]]]]}},{"type":"Feature","properties":{"adcode":652300,"name":"昌吉回族自治州","center":[87.304012,44.014577],"centroid":[89.791022,44.351372],"childrenNum":7,"level":"city","parent":{"adcode":650000},"subFeatureIndex":4,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[90.671355,45.487654],[90.494919,45.42028],[90.481646,45.397335],[90.379583,45.276968],[90.353267,45.23067],[90.292166,45.177267],[90.251204,45.087727],[90.22237,45.064364],[90.23816,45.001732],[88.004446,45.002015],[87.989114,44.961169],[87.802151,44.378238],[87.794828,44.329205],[87.81611,44.288599],[87.818627,44.225268],[87.774232,44.11726],[87.824348,44.123306],[87.85959,44.09624],[87.866226,44.063975],[87.958449,44.009199],[87.996894,43.994632],[88.018405,43.937482],[88.018405,43.874496],[88.06486,43.854257],[88.090719,43.81318],[88.132826,43.817086],[88.138318,43.756869],[88.169898,43.772074],[88.21086,43.758897],[88.259146,43.786985],[88.247246,43.80334],[88.282487,43.830974],[88.315669,43.790604],[88.33924,43.801459],[88.413842,43.791617],[88.460068,43.807681],[88.512015,43.858016],[88.531466,43.801314],[88.600118,43.803919],[88.626893,43.765703],[88.693485,43.759621],[88.723006,43.742964],[88.704927,43.708913],[88.758476,43.706449],[88.835138,43.720797],[88.936285,43.63248],[88.999903,43.607078],[89.078853,43.594445],[89.138123,43.600254],[89.189154,43.580793],[89.199223,43.539673],[89.226913,43.526445],[89.280233,43.552753],[89.31433,43.536185],[89.326001,43.501434],[89.375659,43.490962],[89.398086,43.449344],[89.519142,43.44978],[89.550265,43.433184],[89.624638,43.427505],[89.67956,43.410319],[89.749127,43.426922],[89.758739,43.463899],[89.896958,43.466227],[89.920071,43.452837],[89.964695,43.473794],[89.966755,43.492562],[90.014125,43.490671],[90.016184,43.516704],[90.057147,43.519903],[90.17294,43.55348],[90.21253,43.535022],[90.269969,43.53226],[90.318025,43.504925],[90.361505,43.515686],[90.385304,43.498525],[90.420546,43.526881],[90.555104,43.501434],[90.635198,43.502307],[90.686916,43.523101],[90.760145,43.517867],[90.790124,43.528044],[90.843443,43.522229],[90.881202,43.532842],[90.948939,43.504489],[91.003632,43.515104],[91.017591,43.495325],[91.104551,43.494744],[91.129952,43.483833],[91.169084,43.49518],[91.174805,43.524991],[91.225607,43.540255],[91.295861,43.546504],[91.317144,43.586313],[91.396094,43.585151],[91.474815,43.605336],[91.495182,43.629433],[91.553994,43.643364],[91.501589,43.649167],[91.470925,43.675277],[91.366344,43.705144],[91.492436,43.726158],[91.563834,43.745572],[91.563147,43.769468],[91.525618,43.816652],[91.511429,43.870882],[91.435912,43.909464],[91.419664,43.927519],[91.307075,44.008911],[91.319432,44.049997],[91.334993,44.174668],[91.332934,44.28013],[91.287623,44.375515],[91.302956,44.432958],[91.344376,44.471604],[91.348953,44.549961],[91.361768,44.553819],[91.402501,44.624788],[91.387169,44.736563],[91.40662,44.76248],[91.530423,44.855656],[91.569097,44.894873],[91.543925,44.981454],[91.501818,45.030931],[91.518752,45.096928],[91.449185,45.156627],[91.429276,45.156627],[91.377329,45.11108],[91.335222,45.129614],[91.242084,45.137394],[91.196087,45.159031],[91.170914,45.199454],[91.129723,45.215982],[91.050544,45.208919],[91.00798,45.218383],[90.961525,45.201432],[90.881889,45.191823],[90.866785,45.209343],[90.89745,45.249871],[90.877083,45.280918],[90.831773,45.300385],[90.804998,45.294884],[90.813008,45.328585],[90.774105,45.405923],[90.772274,45.432805],[90.671355,45.487654]]],[[[87.59116,44.533383],[87.575141,44.583531],[87.575141,44.583531],[87.58132,44.596525],[87.555461,44.665873],[87.336231,45.001874],[87.336918,45.330559],[86.487003,45.332532],[85.666838,45.331123],[85.670729,45.278097],[85.668898,44.9193],[85.781488,44.922849],[85.868447,44.86589],[85.891331,44.813141],[85.942134,44.759633],[85.906892,44.736563],[85.955635,44.638629],[85.988588,44.637773],[86.01788,44.603378],[86.068225,44.601807],[86.06525,44.564105],[86.084015,44.490345],[86.130927,44.463447],[86.122689,44.448992],[86.127037,44.374225],[86.141683,44.32734],[86.123833,44.266204],[86.128868,44.211472],[86.096144,44.125897],[86.038018,44.062102],[85.967535,44.003575],[85.955407,43.967074],[85.965018,43.931706],[85.91925,43.934306],[85.883779,43.920586],[85.786293,43.839507],[85.767757,43.791183],[85.779199,43.763676],[85.739152,43.731809],[85.719701,43.678758],[85.719701,43.638575],[85.697274,43.619272],[85.665008,43.622901],[85.579879,43.539528],[85.5975,43.530806],[85.651277,43.522956],[85.690638,43.484124],[85.720845,43.484415],[85.787209,43.450363],[85.842588,43.437697],[85.863413,43.445996],[85.929776,43.430417],[85.989046,43.403036],[86.090423,43.431728],[86.121545,43.371561],[86.153354,43.359754],[86.166169,43.306811],[86.243746,43.288278],[86.293175,43.24433],[86.380364,43.226508],[86.486317,43.142149],[86.61607,43.114198],[86.64559,43.09707],[86.692731,43.118589],[86.741245,43.099559],[86.797998,43.112442],[86.844681,43.159703],[86.815161,43.171403],[86.85475,43.211458],[86.895942,43.302726],[86.922716,43.325047],[86.940108,43.367188],[86.904867,43.393129],[86.900976,43.429398],[86.97123,43.474231],[86.997318,43.530952],[87.102814,43.596188],[87.169635,43.679628],[87.202588,43.698186],[87.222497,43.740212],[87.278563,43.800446],[87.280852,43.865968],[87.262545,43.923764],[87.28703,43.959569],[87.383144,44.044233],[87.404426,44.046827],[87.404426,44.046827],[87.46278,44.078813],[87.504658,44.066424],[87.493674,44.107615],[87.521592,44.150935],[87.506489,44.167765],[87.523423,44.227279],[87.471934,44.283145],[87.489783,44.303525],[87.423877,44.351433],[87.430056,44.408469],[87.449279,44.443552],[87.406943,44.529381],[87.370557,44.566963],[87.514498,44.548818],[87.501912,44.594812],[87.554774,44.580532],[87.59116,44.533383]]]]}},{"type":"Feature","properties":{"adcode":652700,"name":"博尔塔拉蒙古自治州","center":[82.074778,44.903258],"centroid":[82.91122,44.549726],"childrenNum":4,"level":"city","parent":{"adcode":650000},"subFeatureIndex":5,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[82.172213,44.713627],[82.155736,44.770879],[82.184341,44.790093],[82.177476,44.806882],[82.173128,44.80802],[82.157109,44.806882],[82.139717,44.801334],[82.061454,44.762195],[82.056648,44.78127],[81.993946,44.762053],[82.001269,44.745536],[81.968544,44.72303],[81.94566,44.684694],[81.978613,44.692535],[82.012482,44.674999],[82.011566,44.63335],[81.978384,44.634634],[81.960764,44.584816],[81.984105,44.569962],[82.082507,44.570534],[82.08388,44.514656],[81.978384,44.482906],[82.002184,44.456005],[81.903096,44.436394],[81.838334,44.438256],[81.751603,44.347131],[81.777691,44.352006],[81.834901,44.327484],[82.032391,44.285442],[82.082736,44.291757],[82.167636,44.263476],[82.283658,44.249115],[82.36032,44.265343],[82.402197,44.215927],[82.444991,44.182434],[82.5379,44.156402],[82.57337,44.13669],[82.672916,44.114237],[82.705411,44.071178],[82.781158,44.085871],[82.899697,44.053312],[82.945923,44.083566],[83.126707,44.092928],[83.243416,44.073195],[83.238381,44.043512],[83.263554,44.041206],[83.310466,44.008334],[83.399485,44.014823],[83.429921,44.006171],[83.468824,44.036882],[83.448457,44.076508],[83.445482,44.121723],[83.412071,44.168916],[83.448915,44.254285],[83.439761,44.282571],[83.486216,44.317442],[83.489877,44.367346],[83.531526,44.414915],[83.517567,44.467597],[83.602924,44.462875],[83.63931,44.474751],[83.752815,44.46173],[83.79332,44.466739],[83.791947,44.520375],[83.745492,44.552962],[83.75968,44.633207],[83.794464,44.719469],[83.795837,44.756785],[83.730389,44.801049],[83.701784,44.853951],[83.666313,44.888339],[83.600178,44.894163],[83.573862,44.931225],[83.513448,44.939316],[83.474087,44.976064],[83.391476,44.980887],[83.263554,44.998329],[83.09444,45.028947],[83.002675,45.050766],[82.855531,45.100891],[82.757816,45.152102],[82.683214,45.153799],[82.680696,45.138526],[82.615477,45.109099],[82.588245,45.038582],[82.656439,44.944425],[82.679552,44.871432],[82.738822,44.858641],[82.735847,44.827364],[82.674518,44.792797],[82.666737,44.770025],[82.596483,44.722888],[82.543163,44.709067],[82.539959,44.682271],[82.447737,44.688258],[82.393959,44.669724],[82.358947,44.66844],[82.250934,44.691537],[82.23583,44.6817],[82.19235,44.662308],[82.156651,44.669581],[82.128962,44.637773],[82.080905,44.64405],[82.084338,44.666444],[82.126216,44.680702],[82.172213,44.713627]]],[[[82.145667,44.89672],[82.130564,44.925121],[82.063971,44.933638],[82.045892,44.972802],[81.993946,44.961169],[81.940397,45.010238],[82.058936,45.041274],[82.133767,45.037165],[82.20036,44.984291],[82.275191,45.03008],[82.287319,45.050624],[82.272902,45.091407],[82.295786,45.106693],[82.235144,45.124239],[82.222786,45.148426],[82.161457,45.226292],[82.10951,45.21132],[82.09578,45.24973],[82.052987,45.2558],[81.99303,45.238153],[81.920717,45.233353],[81.879754,45.284163],[81.832384,45.319845],[81.787989,45.383676],[81.73055,45.363252],[81.69897,45.369028],[81.582719,45.33662],[81.575396,45.307859],[81.541985,45.307154],[81.528484,45.285997],[81.449762,45.265679],[81.413148,45.280918],[81.382254,45.257634],[81.32779,45.260881],[81.28454,45.239],[81.236941,45.247189],[81.174925,45.227845],[81.170119,45.210897],[81.111307,45.218383],[81.080871,45.18292],[81.024577,45.162848],[80.965993,45.168644],[80.906266,45.131171],[80.8621,45.127068],[80.816332,45.152809],[80.770563,45.153092],[80.726626,45.176984],[80.73166,45.156203],[80.686121,45.129049],[80.599162,45.105702],[80.519296,45.108674],[80.493666,45.127068],[80.445838,45.097777],[80.444237,45.077533],[80.404418,45.049491],[80.358192,45.040708],[80.328214,45.070028],[80.291829,45.065921],[80.254756,45.035182],[80.195716,45.030789],[80.161389,45.056007],[80.11196,45.052749],[79.944677,44.93818],[79.887925,44.909218],[79.969163,44.877542],[79.953831,44.849544],[79.997768,44.824093],[79.99937,44.793793],[80.087703,44.816982],[80.11585,44.815275],[80.170085,44.844569],[80.187935,44.825799],[80.227753,44.825088],[80.262766,44.843573],[80.311051,44.811576],[80.348581,44.805175],[80.397324,44.771733],[80.482911,44.739412],[80.590008,44.723743],[80.636005,44.73115],[80.638293,44.710635],[80.691842,44.674144],[80.66072,44.637202],[80.707632,44.601807],[80.755002,44.61023],[80.843564,44.568391],[80.873771,44.563677],[80.890018,44.52981],[80.99826,44.535527],[81.048376,44.50336],[81.112222,44.506792],[81.211311,44.462875],[81.358455,44.44255],[81.425734,44.440546],[81.459603,44.450996],[81.591415,44.41649],[81.618647,44.427374],[81.650913,44.38655],[81.700114,44.394287],[81.713845,44.365769],[81.751603,44.347131],[81.838334,44.438256],[81.903096,44.436394],[82.002184,44.456005],[81.978384,44.482906],[82.08388,44.514656],[82.082507,44.570534],[81.984105,44.569962],[81.960764,44.584816],[81.978384,44.634634],[82.011566,44.63335],[82.012482,44.674999],[81.978613,44.692535],[81.94566,44.684694],[81.968544,44.72303],[82.001269,44.745536],[81.993946,44.762053],[82.056648,44.78127],[82.061454,44.762195],[82.139717,44.801334],[82.157109,44.806882],[82.173128,44.80802],[82.177476,44.806882],[82.184341,44.790093],[82.155736,44.770879],[82.172213,44.713627],[82.192579,44.752229],[82.239263,44.724028],[82.277937,44.743827],[82.271072,44.766324],[82.206996,44.821248],[82.150015,44.833905],[82.122096,44.806313],[82.083422,44.837602],[82.100814,44.857504],[82.138115,44.843005],[82.162372,44.864326],[82.088915,44.879247],[82.07999,44.895584],[82.138344,44.88493],[82.145667,44.89672]]],[[[82.277937,44.743827],[82.239263,44.724028],[82.23583,44.6817],[82.250934,44.691537],[82.358947,44.66844],[82.347276,44.691252],[82.393959,44.669724],[82.447737,44.688258],[82.539959,44.682271],[82.543163,44.709067],[82.542934,44.740124],[82.499912,44.740836],[82.347047,44.799769],[82.312721,44.80361],[82.268097,44.832625],[82.206996,44.821248],[82.271072,44.766324],[82.277937,44.743827]]],[[[82.130564,44.925121],[82.145667,44.89672],[82.223244,44.889192],[82.278395,44.860631],[82.3562,44.901833],[82.446364,44.883509],[82.49648,44.884219],[82.49648,44.903395],[82.539502,44.902685],[82.656439,44.944425],[82.588245,45.038582],[82.525771,45.08532],[82.454144,45.068895],[82.438812,45.006977],[82.275191,45.03008],[82.20036,44.984291],[82.211115,44.94329],[82.200589,44.91788],[82.130564,44.925121]]],[[[82.582753,45.219089],[82.486868,45.181083],[82.344758,45.218948],[82.294413,45.247754],[82.161457,45.226292],[82.222786,45.148426],[82.235144,45.124239],[82.295786,45.106693],[82.454144,45.068895],[82.525771,45.08532],[82.588245,45.038582],[82.615477,45.109099],[82.680696,45.138526],[82.683214,45.153799],[82.582753,45.219089]]]]}},{"type":"Feature","properties":{"adcode":652800,"name":"巴音郭楞蒙古自治州","center":[86.150969,41.768552],"centroid":[87.681908,39.239339],"childrenNum":9,"level":"city","parent":{"adcode":650000},"subFeatureIndex":6,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[85.894993,41.821856],[85.792701,41.82589],[85.73961,41.756374],[85.773021,41.72705],[85.785836,41.664468],[85.726795,41.661472],[85.703682,41.684237],[85.705513,41.745903],[85.526101,41.740218],[85.491089,41.754579],[85.357675,41.747399],[85.367973,41.826488],[85.498412,41.866369],[85.512142,41.914581],[85.437311,41.932036],[85.408706,41.94203],[85.262477,41.971106],[85.26385,42.034581],[85.340969,42.109447],[85.335706,42.177242],[85.293142,42.21527],[85.263621,42.211261],[85.265223,42.283545],[85.155608,42.278946],[85.110984,42.301047],[85.020821,42.296746],[84.899536,42.356783],[84.844614,42.358561],[84.835231,42.329662],[84.773673,42.30772],[84.75857,42.35945],[84.601585,42.389224],[84.495632,42.432897],[84.429497,42.443699],[84.324688,42.443403],[84.232007,42.424905],[84.154202,42.457162],[84.121477,42.484524],[84.056029,42.502118],[84.002938,42.501231],[83.947101,42.531972],[83.932226,42.500196],[83.938405,42.415727],[83.932455,42.373821],[83.96312,42.356783],[83.974104,42.294521],[83.948016,42.268857],[83.880279,42.261735],[83.880737,42.186454],[83.924674,42.14603],[83.938405,42.074332],[83.980054,41.985863],[83.987606,41.93323],[83.96701,41.873984],[83.964264,41.809004],[83.929709,41.774919],[83.906596,41.685885],[83.900646,41.597626],[83.918267,41.56883],[83.953051,41.558778],[83.94733,41.528314],[83.975706,41.505944],[84.015295,41.445401],[84.029255,41.348536],[84.022847,41.233434],[84.034518,41.168864],[84.08738,41.120847],[84.058775,41.082318],[84.073192,40.924038],[84.067471,40.77707],[84.060377,40.677846],[84.012092,40.113142],[84.009574,40.037654],[83.951906,39.956396],[83.414817,39.483227],[83.395137,39.321629],[83.387814,38.98344],[83.38667,38.388217],[83.502692,38.281581],[83.648921,38.187713],[83.747781,38.115339],[83.819179,38.048104],[83.885543,37.947294],[83.938405,37.832252],[83.932455,37.78552],[83.963577,37.6534],[83.989894,37.612273],[83.987377,37.514525],[83.974104,37.481913],[83.975706,37.410437],[83.894467,37.349732],[83.862201,37.291211],[83.79126,37.250203],[83.855336,37.117773],[83.860828,37.070112],[83.82101,36.963326],[83.858311,36.867459],[83.833138,36.83232],[83.914148,36.766974],[83.991038,36.76858],[84.013693,36.739502],[84.084634,36.69498],[84.167932,36.69482],[84.201114,36.660728],[84.251917,36.643837],[84.302719,36.611171],[84.346428,36.545636],[84.341851,36.490525],[84.322857,36.478757],[84.308211,36.42263],[84.35581,36.397779],[84.346885,36.364524],[84.363362,36.311223],[84.410274,36.309931],[84.416682,36.276639],[84.537739,36.269364],[84.570463,36.225704],[84.618519,36.220042],[84.637284,36.192214],[84.673441,36.182828],[84.681222,36.142844],[84.775046,36.102353],[84.84347,36.09895],[84.873677,35.984486],[84.861319,35.945212],[84.914182,35.854418],[84.917614,35.77442],[84.986266,35.725113],[85.053088,35.751968],[85.15927,35.745458],[85.271173,35.788735],[85.341198,35.753432],[85.374151,35.700367],[85.519694,35.679196],[85.566149,35.640423],[85.613747,35.652317],[85.653337,35.731299],[85.803228,35.778325],[85.835494,35.772306],[85.903917,35.784343],[85.948999,35.778813],[86.031611,35.844179],[86.059987,35.845805],[86.126122,35.931738],[86.132758,35.979456],[86.173263,36.008009],[86.200037,36.0479],[86.179899,36.075941],[86.190197,36.13248],[86.247178,36.1409],[86.280132,36.170851],[86.358166,36.168747],[86.39295,36.206939],[86.455195,36.221175],[86.515609,36.205321],[86.532085,36.227321],[86.599364,36.222307],[86.700054,36.244788],[86.746051,36.291994],[86.836214,36.291347],[86.862989,36.299912],[86.887246,36.262898],[86.931641,36.265485],[86.996174,36.308638],[87.056588,36.297165],[87.086337,36.310739],[87.149497,36.297488],[87.193435,36.349345],[87.292294,36.359035],[87.348131,36.393098],[87.361861,36.41908],[87.424106,36.425856],[87.460263,36.409882],[87.470332,36.354352],[87.570564,36.342401],[87.619994,36.360326],[87.731897,36.384866],[87.768511,36.374696],[87.919546,36.393582],[87.958449,36.40843],[87.982935,36.437794],[88.092321,36.435375],[88.134656,36.427147],[88.182484,36.452634],[88.22276,36.447634],[88.241525,36.468599],[88.365557,36.457794],[88.378829,36.483271],[88.410867,36.473275],[88.470594,36.482303],[88.498742,36.446182],[88.573115,36.461181],[88.617968,36.427954],[88.623689,36.389386],[88.690053,36.368077],[88.725065,36.319625],[88.783191,36.291832],[88.801727,36.337232],[88.925987,36.364363],[88.948871,36.329318],[89.013405,36.315424],[89.102652,36.280195],[89.128054,36.249639],[89.198994,36.260311],[89.232176,36.295711],[89.29854,36.228615],[89.375431,36.22813],[89.490309,36.151101],[89.594431,36.126326],[89.615027,36.109643],[89.707936,36.09733],[89.761714,36.073186],[89.819153,36.080803],[89.912748,36.079344],[89.941353,36.067514],[89.937234,36.130051],[90.00909,36.184285],[90.028084,36.258371],[90.145708,36.238966],[90.12763,36.215028],[90.253492,36.157415],[90.330383,36.157091],[90.423978,36.133937],[90.479587,36.132318],[90.526957,36.148511],[90.615518,36.126488],[90.662888,36.133937],[90.776393,36.086312],[90.815983,36.03574],[90.846876,36.016929],[90.922622,36.02893],[90.9645,36.095224],[90.994936,36.107861],[91.092422,36.088743],[91.124689,36.115474],[91.091507,36.161301],[91.098601,36.216807],[91.053977,36.235408],[91.074115,36.29765],[91.026516,36.323664],[91.052604,36.426502],[91.028347,36.443279],[91.035898,36.530009],[90.906832,36.559489],[90.832917,36.558039],[90.813008,36.585576],[90.740923,36.585898],[90.735431,36.633379],[90.706139,36.661049],[90.722158,36.710092],[90.755111,36.721182],[90.727192,36.756051],[90.7336,36.827345],[90.789208,36.845639],[90.813694,36.881895],[90.87365,36.920537],[90.983723,36.913644],[91.037043,36.929514],[91.051688,36.967331],[91.113018,36.970535],[91.133613,37.007692],[91.190824,37.024662],[91.214623,37.010414],[91.305702,37.012815],[91.29014,37.047391],[91.303184,37.08515],[91.287623,37.103542],[91.2803,37.163807],[91.191052,37.20582],[91.194485,37.273662],[91.134758,37.324224],[91.137046,37.353079],[91.110043,37.398332],[91.097457,37.450402],[91.056952,37.483823],[91.000428,37.494482],[90.940701,37.480481],[90.911638,37.519614],[90.86587,37.530586],[90.882575,37.575732],[90.776164,37.650543],[90.644123,37.697202],[90.586684,37.703072],[90.579361,37.72052],[90.519634,37.730829],[90.51643,38.207253],[90.530847,38.319819],[90.402239,38.311323],[90.361734,38.300152],[90.352809,38.23356],[90.280724,38.238127],[90.137699,38.340581],[90.179119,38.397018],[90.128316,38.400161],[90.11184,38.419015],[90.110696,38.473036],[90.130834,38.494226],[90.251433,38.491401],[90.315279,38.501915],[90.355784,38.481513],[90.426953,38.493912],[90.463568,38.520115],[90.463568,38.556658],[90.535653,38.567947],[90.643208,38.640809],[90.619637,38.664454],[90.653048,38.674317],[90.728108,38.657565],[90.831086,38.668055],[90.965416,38.696855],[90.992876,38.694977],[91.188764,38.731118],[91.250093,38.752857],[91.301582,38.747697],[91.446439,38.813502],[91.50136,38.815377],[91.613263,38.838964],[91.692442,38.86551],[91.777113,38.862544],[91.878719,38.882681],[91.878948,38.897664],[91.990393,38.938693],[92.171177,38.960524],[92.193375,38.981725],[92.256763,39.000739],[92.380109,38.999959],[92.418325,39.013048],[92.389262,39.059616],[92.351275,39.0839],[92.366149,39.096039],[92.344409,39.144107],[92.340061,39.238127],[92.38171,39.260176],[92.525422,39.368613],[92.639843,39.514326],[92.68767,39.657418],[92.745567,39.868271],[92.796599,40.153919],[92.9069,40.310669],[92.92063,40.39181],[92.928411,40.572686],[93.506462,40.648491],[93.760704,40.664919],[93.821118,40.79377],[93.809905,40.87933],[93.696629,40.875388],[93.556807,40.957511],[93.348333,40.993995],[93.261374,40.986276],[93.200731,40.990968],[93.102101,41.041045],[93.062054,41.048757],[92.99569,41.079749],[92.863191,41.112992],[92.742821,41.125228],[92.66204,41.115258],[92.535949,41.120847],[92.505513,41.142897],[92.373243,41.165543],[92.177356,41.222727],[92.070029,41.264187],[92.023346,41.272476],[91.910299,41.271422],[91.840273,41.281066],[91.765214,41.267202],[91.641182,41.226949],[91.446667,41.197687],[91.194485,41.226497],[91.092651,41.251375],[90.966331,41.245797],[90.905917,41.227552],[90.780512,41.225743],[90.69996,41.239314],[90.65465,41.237052],[90.54023,41.250018],[90.399721,41.234187],[90.315279,41.24248],[90.108636,41.252883],[89.960347,41.357416],[89.834256,41.377129],[89.785742,41.34974],[89.743635,41.344622],[89.698096,41.366596],[89.616629,41.355158],[89.558045,41.3678],[89.460788,41.359824],[89.45644,41.375022],[89.399001,41.396385],[89.338816,41.404807],[89.33607,41.389766],[89.282979,41.393076],[89.204029,41.361178],[89.082057,41.409921],[89.017753,41.426912],[88.990063,41.419394],[88.859624,41.42195],[88.835824,41.440892],[88.735363,41.475003],[88.563275,41.477858],[88.406519,41.459828],[88.318873,41.493179],[88.307889,41.513902],[88.347478,41.533567],[88.33718,41.641246],[88.347936,41.67016],[88.341986,41.76804],[88.293929,41.822752],[88.215437,41.871296],[88.19324,41.926965],[88.168754,41.945013],[88.138775,42.004193],[87.997581,42.069867],[87.923436,42.177985],[87.898264,42.248675],[88.003531,42.329218],[88.122299,42.371302],[88.176534,42.439556],[88.202393,42.501674],[88.166008,42.547927],[88.128935,42.572296],[88.031449,42.604035],[87.981104,42.640478],[87.947922,42.635906],[87.913139,42.659355],[87.9049,42.704018],[87.841054,42.768229],[87.691392,42.760721],[87.589558,42.778826],[87.544019,42.777796],[87.509235,42.795601],[87.456144,42.800015],[87.444473,42.783094],[87.400535,42.791776],[87.377194,42.770437],[87.275588,42.77706],[87.225244,42.747618],[87.188171,42.769995],[87.161626,42.745704],[87.083133,42.739813],[87.015625,42.745409],[87.009218,42.678227],[86.978324,42.678079],[86.975578,42.645493],[87.00281,42.625432],[86.959102,42.604626],[86.95361,42.579236],[87.002353,42.500048],[87.039425,42.475947],[87.024321,42.450061],[86.922258,42.43778],[86.936904,42.460565],[86.908757,42.481567],[86.840333,42.450505],[86.842164,42.429049],[86.751086,42.417948],[86.704631,42.363599],[86.616298,42.302085],[86.634835,42.293186],[86.635063,42.2319],[86.675568,42.22804],[86.691129,42.208439],[86.691129,42.208439],[86.735067,42.169663],[86.691816,42.140826],[86.704631,42.103051],[86.620418,42.044707],[86.620418,42.044707],[86.578082,42.031602],[86.595474,41.96887],[86.552223,41.925473],[86.503251,41.922787],[86.521787,41.906076],[86.522931,41.850091],[86.44238,41.834705],[86.404392,41.861441],[86.362056,41.830522],[86.332765,41.818568],[86.099576,41.798392],[86.091109,41.771181],[85.888585,41.763853],[85.876685,41.778957],[85.894993,41.821856]]],[[[82.638132,42.597689],[82.722345,42.595918],[82.753468,42.624989],[82.826468,42.645198],[82.842029,42.613628],[82.81617,42.579088],[82.841571,42.568014],[82.924412,42.593556],[82.958738,42.630448],[82.992606,42.620858],[83.017092,42.587799],[83.078422,42.553688],[83.227855,42.583665],[83.29399,42.555018],[83.320993,42.569195],[83.353717,42.539064],[83.350742,42.508326],[83.435642,42.491178],[83.487589,42.469883],[83.64526,42.514978],[83.692401,42.513943],[83.713912,42.540689],[83.913461,42.523992],[83.947101,42.531972],[84.002938,42.501231],[84.056029,42.502118],[84.121477,42.484524],[84.154202,42.457162],[84.232007,42.424905],[84.324688,42.443403],[84.429497,42.443699],[84.495632,42.432897],[84.601585,42.389224],[84.75857,42.35945],[84.773673,42.30772],[84.835231,42.329662],[84.844614,42.358561],[84.899536,42.356783],[85.020821,42.296746],[85.110984,42.301047],[85.155608,42.278946],[85.265223,42.283545],[85.263621,42.211261],[85.293142,42.21527],[85.335706,42.177242],[85.340969,42.109447],[85.26385,42.034581],[85.262477,41.971106],[85.408706,41.94203],[85.443948,41.93845],[85.487427,42.197002],[85.638233,42.133987],[85.720616,42.083262],[85.760663,42.069718],[85.751738,42.037262],[85.858378,42.014622],[86.000488,42.018942],[86.017422,41.964994],[86.100949,41.918908],[86.113993,41.898465],[86.224294,41.908016],[86.362056,41.830522],[86.404392,41.861441],[86.44238,41.834705],[86.522931,41.850091],[86.521787,41.906076],[86.503251,41.922787],[86.552223,41.925473],[86.595474,41.96887],[86.578082,42.031602],[86.620418,42.044707],[86.620418,42.044707],[86.704631,42.103051],[86.691816,42.140826],[86.735067,42.169663],[86.691129,42.208439],[86.691129,42.208439],[86.675568,42.22804],[86.635063,42.2319],[86.634835,42.293186],[86.616298,42.302085],[86.704631,42.363599],[86.751086,42.417948],[86.842164,42.429049],[86.840333,42.450505],[86.908757,42.481567],[86.936904,42.460565],[86.922258,42.43778],[87.024321,42.450061],[87.039425,42.475947],[87.002353,42.500048],[86.95361,42.579236],[86.959102,42.604626],[87.00281,42.625432],[86.975578,42.645493],[86.978324,42.678079],[87.009218,42.678227],[87.015625,42.745409],[87.083133,42.739813],[87.161626,42.745704],[87.188171,42.769995],[87.225244,42.747618],[87.275588,42.77706],[87.377194,42.770437],[87.400535,42.791776],[87.444473,42.783094],[87.456144,42.800015],[87.509235,42.795601],[87.543103,42.8459],[87.52594,42.865155],[87.538069,42.908201],[87.497106,42.940062],[87.403053,42.96369],[87.345156,42.999775],[87.270096,43.032322],[87.111281,43.063093],[87.111052,43.046684],[87.054528,43.022941],[86.926378,43.051519],[86.912189,43.074665],[86.853835,43.083452],[86.797998,43.112442],[86.741245,43.099559],[86.692731,43.118589],[86.64559,43.09707],[86.61607,43.114198],[86.486317,43.142149],[86.380364,43.226508],[86.293175,43.24433],[86.243746,43.288278],[86.166169,43.306811],[86.153354,43.359754],[86.121545,43.371561],[86.090423,43.431728],[85.989046,43.403036],[85.929776,43.430417],[85.863413,43.445996],[85.842588,43.437697],[85.787209,43.450363],[85.720845,43.484415],[85.690638,43.484124],[85.651277,43.522956],[85.5975,43.530806],[85.519694,43.536185],[85.483537,43.498235],[85.434108,43.478887],[85.328154,43.486743],[85.31511,43.529207],[85.286734,43.502307],[85.241881,43.52092],[85.170483,43.510742],[85.156981,43.546795],[85.056292,43.563942],[85.020364,43.51365],[84.979859,43.47976],[84.950567,43.48427],[84.92425,43.425175],[84.834316,43.43595],[84.786717,43.465936],[84.716005,43.453128],[84.661541,43.491253],[84.633165,43.432747],[84.692893,43.40187],[84.676187,43.37229],[84.623554,43.338028],[84.552842,43.331757],[84.532246,43.292802],[84.538425,43.262877],[84.581447,43.266965],[84.564742,43.231037],[84.602501,43.228553],[84.653761,43.175351],[84.574124,43.168332],[84.540714,43.152974],[84.504328,43.164383],[84.423318,43.16175],[84.413707,43.102341],[84.359014,43.144197],[84.363133,43.15941],[84.279149,43.174912],[84.22949,43.171256],[84.104314,43.145514],[84.038866,43.146245],[84.043214,43.132199],[83.96312,43.156192],[83.912546,43.128102],[83.801558,43.133516],[83.758078,43.149317],[83.713226,43.137467],[83.679815,43.09751],[83.627639,43.08067],[83.56631,43.092385],[83.565852,43.07569],[83.504752,43.058845],[83.407037,43.052105],[83.361726,43.028218],[83.325112,43.047416],[83.2663,43.017957],[83.159889,43.006374],[83.135632,42.992149],[83.037688,42.996402],[83.013889,43.007107],[82.941575,42.987309],[82.892603,42.992296],[82.858963,42.971026],[82.82418,42.980269],[82.82418,42.954886],[82.789396,42.933897],[82.712505,42.951657],[82.653236,42.934337],[82.649345,42.88367],[82.576803,42.88558],[82.532637,42.901739],[82.512727,42.858541],[82.470392,42.843253],[82.480003,42.800603],[82.507006,42.799427],[82.599229,42.719635],[82.634242,42.651982],[82.621198,42.621005],[82.638132,42.597689]]],[[[85.792701,41.82589],[85.894993,41.821856],[86.099576,41.798392],[86.332765,41.818568],[86.362056,41.830522],[86.224294,41.908016],[86.113993,41.898465],[86.100949,41.918908],[86.017422,41.964994],[86.000488,42.018942],[85.858378,42.014622],[85.751738,42.037262],[85.760663,42.069718],[85.720616,42.083262],[85.638233,42.133987],[85.487427,42.197002],[85.443948,41.93845],[85.437311,41.932036],[85.512142,41.914581],[85.754484,41.852779],[85.792701,41.82589]]]]}},{"type":"Feature","properties":{"adcode":652900,"name":"阿克苏地区","center":[80.265068,41.170712],"centroid":[81.177098,41.477458],"childrenNum":9,"level":"city","parent":{"adcode":650000},"subFeatureIndex":7,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.36499,40.009709],[78.442338,40.02614],[78.543486,40.061445],[78.550122,40.088295],[78.59795,40.107621],[78.605959,40.131694],[78.759969,40.187014],[78.807339,40.22591],[78.903681,40.257134],[79.003913,40.219786],[79.145108,40.256522],[79.238933,40.253002],[79.343055,40.241065],[79.497294,40.211824],[79.587228,40.175678],[79.731169,40.146716],[79.833461,40.131388],[79.86916,40.145643],[79.915386,40.386617],[79.853599,40.437151],[79.810348,40.491154],[79.864125,40.489629],[79.941016,40.44295],[79.975342,40.485207],[80.022026,40.500913],[80.037129,40.536885],[80.022941,40.592787],[80.050631,40.642405],[80.070997,40.631906],[80.087245,40.694571],[80.08038,40.750341],[80.052004,40.775096],[80.050402,40.828826],[80.136675,40.891912],[80.22455,40.883878],[80.249264,40.82473],[80.23622,40.784358],[80.2678,40.819723],[80.331876,40.850064],[80.397095,40.818964],[80.457967,40.773881],[80.520441,40.70202],[80.552707,40.687577],[80.553165,40.655032],[80.57971,40.666592],[80.592296,40.619884],[80.683375,40.666744],[80.725939,40.701412],[80.791846,40.703236],[80.867363,40.658987],[80.990479,40.702476],[81.140828,40.698979],[81.32985,40.762947],[81.32596,40.805154],[81.385687,40.825033],[81.457085,40.804699],[81.863506,40.944033],[81.884102,40.941004],[81.939482,40.991422],[81.999895,41.076726],[82.061454,41.126436],[82.181824,41.166599],[82.294642,41.23268],[82.359633,41.251677],[82.456661,41.255897],[82.520508,41.323694],[82.57932,41.342063],[82.583897,41.389164],[82.607696,41.457424],[82.636759,41.461331],[82.635844,41.503241],[82.729211,41.463885],[82.814111,41.461932],[82.848894,41.478759],[82.98391,41.408717],[83.015033,41.377881],[83.030823,41.289353],[83.069039,41.243234],[83.104967,41.224084],[83.146387,41.223631],[83.301312,41.124019],[83.390789,41.137914],[83.438159,41.06811],[83.485529,41.077028],[83.478893,41.135951],[83.589652,41.15724],[83.616655,41.10846],[83.682103,41.069924],[83.670432,41.036205],[83.696063,41.017448],[83.745263,41.031063],[83.778903,41.010337],[83.769978,40.976891],[83.848242,40.9563],[83.837257,40.913887],[83.85259,40.873114],[83.889662,40.833681],[83.929022,40.816688],[84.067471,40.77707],[84.073192,40.924038],[84.058775,41.082318],[84.08738,41.120847],[84.034518,41.168864],[84.022847,41.233434],[84.029255,41.348536],[84.015295,41.445401],[83.975706,41.505944],[83.94733,41.528314],[83.953051,41.558778],[83.918267,41.56883],[83.900646,41.597626],[83.906596,41.685885],[83.929709,41.774919],[83.964264,41.809004],[83.96701,41.873984],[83.987606,41.93323],[83.980054,41.985863],[83.938405,42.074332],[83.924674,42.14603],[83.880737,42.186454],[83.880279,42.261735],[83.948016,42.268857],[83.974104,42.294521],[83.96312,42.356783],[83.932455,42.373821],[83.938405,42.415727],[83.932226,42.500196],[83.947101,42.531972],[83.913461,42.523992],[83.713912,42.540689],[83.692401,42.513943],[83.64526,42.514978],[83.487589,42.469883],[83.435642,42.491178],[83.350742,42.508326],[83.353717,42.539064],[83.320993,42.569195],[83.29399,42.555018],[83.227855,42.583665],[83.078422,42.553688],[83.017092,42.587799],[82.992606,42.620858],[82.958738,42.630448],[82.924412,42.593556],[82.841571,42.568014],[82.81617,42.579088],[82.842029,42.613628],[82.826468,42.645198],[82.753468,42.624989],[82.722345,42.595918],[82.638132,42.597689],[82.62074,42.558562],[82.585499,42.543939],[82.407232,42.55162],[82.363752,42.538768],[82.366498,42.50404],[82.295329,42.48275],[82.230109,42.494578],[82.189147,42.467221],[82.142692,42.489256],[82.133538,42.440444],[82.07793,42.43852],[82.065344,42.420316],[81.984563,42.425793],[81.959848,42.402255],[81.867397,42.411138],[81.865795,42.384041],[81.820256,42.3833],[81.805152,42.405957],[81.751832,42.365525],[81.672196,42.369969],[81.66144,42.392186],[81.630775,42.373821],[81.582032,42.374117],[81.50949,42.352042],[81.478825,42.360636],[81.386602,42.354413],[81.352734,42.332331],[81.318637,42.357821],[81.285455,42.332479],[81.271267,42.343595],[81.195521,42.343595],[81.152498,42.323585],[81.160508,42.259954],[81.098263,42.291703],[81.048147,42.284732],[81.025263,42.342854],[80.985216,42.380634],[80.963018,42.361673],[80.898028,42.369228],[80.803974,42.339742],[80.761639,42.361525],[80.657287,42.366117],[80.62914,42.353375],[80.592296,42.366117],[80.531883,42.360932],[80.471469,42.321806],[80.415403,42.304754],[80.372381,42.326698],[80.324324,42.315134],[80.284048,42.32062],[80.27192,42.282061],[80.286565,42.233088],[80.233245,42.210221],[80.168712,42.20027],[80.163678,42.152422],[80.13965,42.151233],[80.168026,42.096802],[80.193427,42.081476],[80.142167,42.03473],[80.089762,42.047536],[79.923624,42.042325],[79.852683,42.015367],[79.854285,41.984224],[79.822705,41.963354],[79.776708,41.892495],[79.724761,41.896823],[79.641006,41.884733],[79.604849,41.849045],[79.551071,41.833958],[79.457018,41.847851],[79.407131,41.833062],[79.356557,41.795701],[79.325892,41.809452],[79.27692,41.78105],[79.219024,41.726452],[79.138014,41.72301],[79.114901,41.699959],[79.043274,41.681242],[79.021534,41.657278],[78.957688,41.651585],[78.891553,41.597776],[78.825189,41.560279],[78.738916,41.555628],[78.696809,41.541672],[78.705734,41.519307],[78.650583,41.467341],[78.580558,41.481613],[78.533875,41.445551],[78.454696,41.412327],[78.391765,41.408266],[78.5071,41.310442],[78.565912,41.288147],[78.711913,41.185616],[78.733881,41.161467],[78.762486,41.086097],[78.826333,40.994751],[78.875534,40.985216],[78.848531,40.915553],[78.861803,40.891609],[78.79727,40.861286],[78.748298,40.81866],[78.725643,40.822909],[78.570489,40.766137],[78.574151,40.700195],[78.605044,40.696699],[78.585593,40.637841],[78.523577,40.552579],[78.47163,40.52637],[78.373915,40.494966],[78.303661,40.455462],[78.205259,40.420362],[78.158576,40.387228],[78.15583,40.331155],[78.124707,40.287119],[78.091068,40.274882],[78.082143,40.231574],[78.055826,40.202483],[78.055369,40.140892],[78.03134,40.093818],[78.09267,40.060831],[78.161322,40.071573],[78.241187,40.060831],[78.313272,40.066049],[78.36499,40.009709]]],[[[80.592296,40.619884],[80.57971,40.666592],[80.553165,40.655032],[80.552707,40.687577],[80.520441,40.70202],[80.457967,40.773881],[80.397095,40.818964],[80.331876,40.850064],[80.2678,40.819723],[80.23622,40.784358],[80.249264,40.82473],[80.22455,40.883878],[80.136675,40.891912],[80.050402,40.828826],[80.052004,40.775096],[80.08038,40.750341],[80.087245,40.694571],[80.070997,40.631906],[80.050631,40.642405],[80.022941,40.592787],[80.037129,40.536885],[80.022026,40.500913],[79.975342,40.485207],[79.941016,40.44295],[79.864125,40.489629],[79.810348,40.491154],[79.853599,40.437151],[79.915386,40.386617],[79.86916,40.145643],[79.833461,40.131388],[79.841699,40.131388],[79.860006,40.013702],[79.837809,39.980523],[79.862981,39.957165],[79.846047,39.908887],[79.815382,39.882735],[79.788379,39.801909],[79.764351,39.622831],[80.162305,39.464034],[80.726855,39.477346],[81.062335,39.483381],[81.438092,39.484929],[81.955958,39.483691],[82.101272,39.485393],[82.585041,39.484],[83.151879,39.484465],[83.414817,39.483227],[83.951906,39.956396],[84.009574,40.037654],[84.012092,40.113142],[84.060377,40.677846],[84.067471,40.77707],[83.929022,40.816688],[83.889662,40.833681],[83.85259,40.873114],[83.837257,40.913887],[83.848242,40.9563],[83.769978,40.976891],[83.778903,41.010337],[83.745263,41.031063],[83.696063,41.017448],[83.670432,41.036205],[83.682103,41.069924],[83.616655,41.10846],[83.589652,41.15724],[83.478893,41.135951],[83.485529,41.077028],[83.438159,41.06811],[83.390789,41.137914],[83.301312,41.124019],[83.146387,41.223631],[83.104967,41.224084],[83.069039,41.243234],[83.030823,41.289353],[83.015033,41.377881],[82.98391,41.408717],[82.848894,41.478759],[82.814111,41.461932],[82.729211,41.463885],[82.635844,41.503241],[82.636759,41.461331],[82.607696,41.457424],[82.583897,41.389164],[82.57932,41.342063],[82.520508,41.323694],[82.456661,41.255897],[82.359633,41.251677],[82.294642,41.23268],[82.181824,41.166599],[82.061454,41.126436],[81.999895,41.076726],[81.939482,40.991422],[81.884102,40.941004],[81.84314,40.886152],[81.812704,40.813197],[81.743365,40.733326],[81.822544,40.685144],[81.944745,40.494356],[81.978613,40.468429],[81.880441,40.467667],[81.760299,40.437914],[81.377449,40.43944],[81.281107,40.43593],[81.210395,40.397307],[81.003065,40.396849],[80.981097,40.423872],[80.931438,40.432573],[80.907868,40.420362],[80.740128,40.369357],[80.679485,40.381425],[80.605798,40.423262],[80.633717,40.465378],[80.683833,40.464616],[80.659347,40.484597],[80.673993,40.511585],[80.723422,40.488409],[80.729372,40.452411],[80.809924,40.454699],[80.827774,40.476513],[80.789786,40.479564],[80.780404,40.505944],[80.741272,40.533228],[80.696419,40.520121],[80.70214,40.546028],[80.670789,40.569031],[80.621588,40.556845],[80.592296,40.619884]]]]}},{"type":"Feature","properties":{"adcode":653000,"name":"克孜勒苏柯尔克孜自治州","center":[76.172825,39.713431],"centroid":[75.956625,39.672168],"childrenNum":4,"level":"city","parent":{"adcode":650000},"subFeatureIndex":8,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[78.36499,40.009709],[78.313272,40.066049],[78.241187,40.060831],[78.161322,40.071573],[78.09267,40.060831],[78.03134,40.093818],[78.055369,40.140892],[78.055826,40.202483],[78.082143,40.231574],[78.091068,40.274882],[78.124707,40.287119],[78.15583,40.331155],[78.158576,40.387228],[78.205259,40.420362],[78.303661,40.455462],[78.373915,40.494966],[78.47163,40.52637],[78.523577,40.552579],[78.585593,40.637841],[78.605044,40.696699],[78.574151,40.700195],[78.570489,40.766137],[78.725643,40.822909],[78.748298,40.81866],[78.79727,40.861286],[78.861803,40.891609],[78.848531,40.915553],[78.875534,40.985216],[78.826333,40.994751],[78.762486,41.086097],[78.733881,41.161467],[78.711913,41.185616],[78.565912,41.288147],[78.5071,41.310442],[78.391765,41.408266],[78.323799,41.3842],[78.232263,41.39849],[78.166128,41.3842],[78.164297,41.345224],[78.137065,41.280011],[78.129055,41.228156],[78.097018,41.22514],[77.973444,41.173392],[77.904792,41.185163],[77.834537,41.151956],[77.807763,41.123415],[77.829503,41.059493],[77.780531,41.023046],[77.737509,41.032273],[77.684876,41.007765],[77.65444,41.016087],[77.591509,40.99233],[77.540248,41.006403],[77.476402,40.999594],[77.473885,41.022743],[77.41553,41.038928],[77.363126,41.040742],[77.296304,41.005042],[77.25168,41.025163],[77.169298,41.009127],[77.111172,41.035903],[77.091492,41.062668],[77.023297,41.059341],[77.002244,41.073401],[76.940915,41.028794],[76.885764,41.027432],[76.853497,40.976437],[76.761961,40.954028],[76.741823,40.912068],[76.731525,40.819116],[76.693309,40.779499],[76.646626,40.760062],[76.675917,40.694267],[76.654864,40.65275],[76.657381,40.620341],[76.618707,40.609077],[76.55692,40.542676],[76.539528,40.464005],[76.509092,40.42952],[76.470647,40.422651],[76.442042,40.391505],[76.390324,40.377606],[76.382086,40.390894],[76.333343,40.343688],[76.327622,40.391352],[76.283227,40.415171],[76.279794,40.439288],[76.213888,40.394864],[76.173383,40.382035],[76.144091,40.393337],[76.048894,40.388756],[76.048436,40.356982],[75.98642,40.381883],[75.932185,40.339561],[75.921429,40.291248],[75.831037,40.327333],[75.785956,40.301036],[75.709065,40.280848],[75.669934,40.363857],[75.68641,40.418072],[75.734467,40.467514],[75.646134,40.516615],[75.630802,40.549075],[75.63698,40.62445],[75.599451,40.659748],[75.568557,40.65701],[75.468096,40.599943],[75.432397,40.563395],[75.355506,40.537952],[75.292118,40.483682],[75.268776,40.483682],[75.242459,40.448901],[75.135362,40.463395],[75.102866,40.439898],[75.021857,40.467209],[74.963274,40.464616],[74.891875,40.507621],[74.844505,40.52134],[74.819333,40.505791],[74.814756,40.460954],[74.795076,40.443255],[74.908352,40.33895],[74.863041,40.326416],[74.811781,40.34705],[74.698047,40.344452],[74.701022,40.317091],[74.663263,40.271363],[74.618411,40.279777],[74.577448,40.260347],[74.547241,40.219174],[74.476758,40.175065],[74.433278,40.131694],[74.356617,40.089216],[74.316799,40.106548],[74.280642,40.098112],[74.26325,40.125102],[74.126632,40.104554],[74.089102,40.079704],[74.023425,40.085074],[74.003058,40.045023],[73.943331,40.016005],[73.980403,40.004794],[73.911064,39.934721],[73.907174,39.873811],[73.845387,39.831172],[73.841725,39.756297],[73.905572,39.742114],[73.924337,39.721914],[73.953628,39.600278],[73.916327,39.586527],[73.868042,39.482917],[73.745383,39.462022],[73.646982,39.474405],[73.610596,39.465892],[73.592518,39.412312],[73.506474,39.380547],[73.554073,39.349854],[73.554988,39.29603],[73.539427,39.27244],[73.58016,39.237506],[73.63943,39.22042],[73.657737,39.166186],[73.688631,39.154992],[73.719753,39.108176],[73.72044,39.071759],[73.742866,39.029404],[73.820214,39.041553],[73.846302,38.972061],[73.826393,38.916855],[73.767581,38.941033],[73.742408,38.933858],[73.709227,38.89345],[73.699386,38.857703],[73.729365,38.83709],[73.770785,38.77115],[73.757054,38.719543],[73.808772,38.634231],[73.799161,38.611046],[73.852252,38.584249],[73.899164,38.57892],[73.926168,38.535958],[74.011754,38.524978],[74.034409,38.541604],[74.090704,38.542231],[74.068735,38.58566],[74.118394,38.614493],[74.148143,38.676821],[74.22961,38.656156],[74.377899,38.654903],[74.455934,38.632978],[74.506508,38.637677],[74.546783,38.607599],[74.613376,38.593183],[74.640379,38.599608],[74.717727,38.542231],[74.784778,38.538154],[74.821621,38.491087],[74.862812,38.484024],[74.868305,38.403932],[74.789583,38.324695],[74.806746,38.285516],[74.896223,38.267414],[74.945653,38.273869],[74.982725,38.243009],[75.042681,38.266155],[75.108587,38.276387],[75.136277,38.234977],[75.192114,38.198902],[75.278158,38.203786],[75.368322,38.12433],[75.399215,38.106031],[75.385942,38.088673],[75.389604,38.035155],[75.421184,37.974485],[75.410428,37.922624],[75.462146,37.936858],[75.561463,37.919302],[75.666959,37.875473],[75.728746,37.903008],[75.747053,37.888451],[75.781379,37.909811],[75.78321,37.939704],[75.880467,37.92642],[75.886417,37.876581],[75.851175,37.859961],[75.858498,37.829719],[75.793507,37.734476],[75.805865,37.65213],[75.868567,37.674669],[75.940881,37.732415],[76.0299,37.732256],[76.100383,37.770464],[76.162856,37.780449],[76.208167,37.813405],[76.264462,37.731463],[76.292151,37.734159],[76.327164,37.815622],[76.382543,37.826868],[76.384374,37.867401],[76.410233,37.876898],[76.436092,37.856003],[76.482089,37.849987],[76.492387,37.86566],[76.469274,37.925787],[76.509779,37.974485],[76.510923,38.01399],[76.540215,38.060735],[76.539299,38.129851],[76.6004,38.219541],[76.602688,38.399532],[76.597654,38.42467],[76.547309,38.457337],[76.455544,38.497835],[76.383688,38.485123],[76.344098,38.500503],[76.401995,38.540192],[76.403139,38.606189],[76.339292,38.606346],[76.288948,38.629689],[76.243179,38.612926],[76.149584,38.609323],[76.16217,38.646917],[76.035392,38.730024],[76.033104,38.753639],[75.977495,38.759268],[75.975665,38.79819],[75.938821,38.805378],[75.908157,38.875345],[75.829893,38.920444],[75.759181,38.947115],[75.861244,38.997778],[75.927608,39.039528],[75.940194,39.007127],[76.063768,39.008062],[76.141116,39.039684],[76.131505,39.077518],[76.050953,39.155925],[76.047521,39.180642],[76.145922,39.202243],[76.157135,39.229895],[76.049351,39.23968],[76.006558,39.263436],[75.952552,39.273682],[75.882298,39.269025],[75.835614,39.217624],[75.839733,39.188879],[75.770166,39.189967],[75.747053,39.15126],[75.707006,39.12731],[75.771996,39.095728],[75.757579,38.997934],[75.662839,38.955691],[75.565582,38.971282],[75.552309,38.986245],[75.586407,39.050273],[75.587322,39.100396],[75.60746,39.142241],[75.671078,39.221197],[75.683435,39.270111],[75.736755,39.296806],[75.691445,39.303943],[75.642244,39.284701],[75.635379,39.258468],[75.580686,39.211876],[75.573134,39.241543],[75.512491,39.227566],[75.472215,39.170072],[75.350014,39.144574],[75.305619,39.334192],[75.299898,39.407819],[75.320723,39.461557],[75.357108,39.470381],[75.389375,39.505972],[75.357566,39.557161],[75.365118,39.591781],[75.341318,39.623294],[75.36077,39.654022],[75.433999,39.652787],[75.466265,39.67918],[75.533316,39.655257],[75.551623,39.668223],[75.646821,39.653404],[75.701742,39.615881],[75.701285,39.594871],[75.855523,39.585754],[75.930125,39.599815],[75.985047,39.589926],[75.976122,39.611556],[76.126471,39.624221],[76.15027,39.6131],[76.215947,39.625302],[76.29627,39.591008],[76.447763,39.575864],[76.506346,39.591935],[76.55303,39.588999],[76.59834,39.6131],[76.595594,39.629935],[76.637014,39.651089],[76.743883,39.735176],[76.786447,39.753985],[76.82924,39.794977],[76.838165,39.82686],[77.022611,39.844413],[77.054648,39.862576],[77.211404,39.849339],[77.302941,39.864731],[77.511872,39.878427],[77.529264,39.925804],[77.603866,39.936413],[77.765428,39.970074],[77.798152,39.986822],[77.940948,39.97453],[78.017839,39.984517],[78.074134,39.970996],[78.208921,39.99865],[78.301144,40.011705],[78.36499,40.009709]]]]}},{"type":"Feature","properties":{"adcode":653100,"name":"喀什地区","center":[75.989138,39.467664],"centroid":[77.133824,38.111752],"childrenNum":12,"level":"city","parent":{"adcode":650000},"subFeatureIndex":9,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[74.806746,38.285516],[74.793245,38.270878],[74.817044,38.215445],[74.804687,38.167064],[74.821621,38.103033],[74.879289,38.021256],[74.925744,38.017307],[74.911327,37.967056],[74.919107,37.90807],[74.937186,37.875948],[74.917505,37.845079],[74.98959,37.797879],[75.006524,37.77094],[74.922998,37.71719],[74.920938,37.684667],[74.892104,37.668162],[74.930778,37.571759],[75.035358,37.500845],[75.078609,37.511026],[75.129641,37.459156],[75.153211,37.4141],[75.12392,37.381763],[75.138794,37.367741],[75.12575,37.322311],[75.078609,37.318165],[75.017966,37.293763],[74.927117,37.277651],[74.911098,37.233602],[74.816129,37.216519],[74.800339,37.247969],[74.753655,37.281161],[74.727339,37.282915],[74.665781,37.235837],[74.64221,37.261375],[74.598959,37.258343],[74.578592,37.231367],[74.544953,37.249246],[74.511084,37.239988],[74.477216,37.199431],[74.487971,37.162049],[74.465087,37.146867],[74.496439,37.115855],[74.498956,37.072352],[74.530078,37.08211],[74.568066,37.032666],[74.617038,37.04371],[74.632599,37.066592],[74.709032,37.08451],[74.739238,37.028024],[74.792558,37.027544],[74.806746,37.054272],[74.847022,37.056992],[74.842674,37.0205],[74.893935,36.939611],[74.938559,36.943297],[74.927346,36.977904],[75.005609,36.994561],[75.032383,37.016818],[75.063277,37.006251],[75.171976,37.013936],[75.168315,36.991838],[75.244748,36.963326],[75.288685,36.97454],[75.413632,36.954674],[75.396469,36.904185],[75.430108,36.873394],[75.425761,36.778859],[75.458485,36.721022],[75.504939,36.74368],[75.536977,36.730182],[75.537435,36.773077],[75.588695,36.762797],[75.634006,36.771632],[75.723711,36.750588],[75.871542,36.666518],[75.946831,36.590567],[75.924404,36.566414],[75.991455,36.507127],[76.034934,36.409237],[75.989624,36.34014],[75.999006,36.312193],[76.055301,36.252712],[76.061022,36.225219],[76.011593,36.229101],[76.016398,36.165509],[75.967884,36.15871],[75.936304,36.134747],[75.949577,36.070269],[75.968571,36.042063],[76.014568,36.018065],[76.097408,36.022605],[76.117088,35.975075],[76.164687,35.908842],[76.147066,35.833451],[76.22144,35.823372],[76.228762,35.837027],[76.298788,35.841579],[76.365838,35.824185],[76.369728,35.863356],[76.431744,35.851818],[76.482089,35.889189],[76.515271,35.880904],[76.548911,35.919235],[76.597425,35.895686],[76.587585,35.840278],[76.566302,35.819307],[76.593534,35.77198],[76.69308,35.747574],[76.698572,35.722346],[76.751663,35.680499],[76.761275,35.655902],[76.836792,35.662093],[76.917802,35.608478],[76.966774,35.591685],[76.998125,35.611086],[77.064489,35.595761],[77.093323,35.56967],[77.195843,35.519257],[77.307746,35.54047],[77.38006,35.477141],[77.451916,35.460484],[77.518737,35.482039],[77.578236,35.475671],[77.639565,35.454931],[77.657415,35.477467],[77.690597,35.448234],[77.728127,35.457871],[77.757647,35.497222],[77.797236,35.491345],[77.816459,35.518604],[77.781675,35.554011],[77.814399,35.602609],[77.844149,35.612716],[77.851929,35.687014],[77.821722,35.714858],[77.826299,35.748225],[77.851701,35.748225],[77.835224,35.804836],[77.878704,35.811828],[77.866804,35.880904],[77.844835,35.912577],[77.887857,35.908355],[77.923785,35.930764],[77.872983,35.994707],[77.800669,36.027308],[77.742544,36.039145],[77.732246,36.100247],[77.791287,36.112234],[77.790829,36.131508],[77.854675,36.182504],[77.910055,36.198525],[77.810967,36.294579],[77.724465,36.28262],[77.610045,36.35968],[77.624462,36.387772],[77.579151,36.448924],[77.484869,36.493104],[77.42537,36.492137],[77.40775,36.545959],[77.503634,36.56126],[77.534756,36.610849],[77.582126,36.610366],[77.576405,36.633701],[77.623089,36.643193],[77.64849,36.669252],[77.61691,36.699964],[77.542308,36.746732],[77.49265,36.792991],[77.505693,36.842911],[77.528806,36.865052],[77.518966,36.930315],[77.608214,36.935284],[77.642311,36.975981],[77.651236,37.056512],[77.681214,37.128485],[77.664967,37.14463],[77.642769,37.266481],[77.600205,37.297591],[77.64254,37.350369],[77.639794,37.376505],[77.667713,37.444035],[77.664051,37.581611],[77.699979,37.588762],[77.741399,37.637365],[77.752155,37.678954],[77.806161,37.727023],[77.878246,37.811662],[78.006397,37.96342],[78.245078,38.188343],[78.506871,38.422471],[79.003227,38.667116],[79.238704,38.794283],[79.285387,38.807253],[79.333902,38.802253],[79.390425,38.830218],[79.566633,38.784437],[79.599814,38.829905],[79.616062,38.919196],[79.733686,39.4775],[79.190647,39.72068],[79.117647,39.715436],[79.092246,39.681032],[79.003684,39.65927],[79.000252,39.624993],[78.915581,39.611247],[78.84075,39.6131],[78.796584,39.653404],[78.708709,39.650471],[78.705276,39.689982],[78.673467,39.700936],[78.657449,39.736409],[78.757223,39.796672],[78.777819,39.825012],[78.776675,39.758147],[78.809856,39.74381],[78.782853,39.688593],[78.806424,39.657264],[78.840521,39.711271],[78.883772,39.704176],[78.870728,39.762154],[78.904368,39.781418],[78.993387,39.781418],[79.004829,39.800677],[78.942584,39.809765],[78.906885,39.831326],[78.932057,39.859806],[78.989496,39.868271],[78.942813,39.908118],[78.989725,39.929494],[79.001625,39.970996],[79.039155,39.981291],[79.015355,40.022147],[79.045562,40.036887],[79.214218,40.059603],[79.145108,40.256522],[79.003913,40.219786],[78.903681,40.257134],[78.807339,40.22591],[78.759969,40.187014],[78.605959,40.131694],[78.59795,40.107621],[78.550122,40.088295],[78.543486,40.061445],[78.442338,40.02614],[78.36499,40.009709],[78.301144,40.011705],[78.208921,39.99865],[78.074134,39.970996],[78.017839,39.984517],[77.940948,39.97453],[77.798152,39.986822],[77.765428,39.970074],[77.603866,39.936413],[77.529264,39.925804],[77.511872,39.878427],[77.302941,39.864731],[77.211404,39.849339],[77.054648,39.862576],[77.022611,39.844413],[76.838165,39.82686],[76.82924,39.794977],[76.786447,39.753985],[76.743883,39.735176],[76.637014,39.651089],[76.595594,39.629935],[76.59834,39.6131],[76.55303,39.588999],[76.506346,39.591935],[76.447763,39.575864],[76.29627,39.591008],[76.215947,39.625302],[76.15027,39.6131],[76.126471,39.624221],[75.976122,39.611556],[75.985047,39.589926],[75.930125,39.599815],[75.855523,39.585754],[75.701285,39.594871],[75.701742,39.615881],[75.646821,39.653404],[75.551623,39.668223],[75.533316,39.655257],[75.466265,39.67918],[75.433999,39.652787],[75.36077,39.654022],[75.341318,39.623294],[75.365118,39.591781],[75.357566,39.557161],[75.389375,39.505972],[75.357108,39.470381],[75.320723,39.461557],[75.299898,39.407819],[75.305619,39.334192],[75.350014,39.144574],[75.472215,39.170072],[75.512491,39.227566],[75.573134,39.241543],[75.580686,39.211876],[75.635379,39.258468],[75.642244,39.284701],[75.691445,39.303943],[75.736755,39.296806],[75.683435,39.270111],[75.671078,39.221197],[75.60746,39.142241],[75.587322,39.100396],[75.586407,39.050273],[75.552309,38.986245],[75.565582,38.971282],[75.662839,38.955691],[75.757579,38.997934],[75.771996,39.095728],[75.707006,39.12731],[75.747053,39.15126],[75.770166,39.189967],[75.839733,39.188879],[75.835614,39.217624],[75.882298,39.269025],[75.952552,39.273682],[76.006558,39.263436],[76.049351,39.23968],[76.157135,39.229895],[76.145922,39.202243],[76.047521,39.180642],[76.050953,39.155925],[76.131505,39.077518],[76.141116,39.039684],[76.063768,39.008062],[75.940194,39.007127],[75.927608,39.039528],[75.861244,38.997778],[75.759181,38.947115],[75.829893,38.920444],[75.908157,38.875345],[75.938821,38.805378],[75.975665,38.79819],[75.977495,38.759268],[76.033104,38.753639],[76.035392,38.730024],[76.16217,38.646917],[76.149584,38.609323],[76.243179,38.612926],[76.288948,38.629689],[76.339292,38.606346],[76.403139,38.606189],[76.401995,38.540192],[76.344098,38.500503],[76.383688,38.485123],[76.455544,38.497835],[76.547309,38.457337],[76.597654,38.42467],[76.602688,38.399532],[76.6004,38.219541],[76.539299,38.129851],[76.540215,38.060735],[76.510923,38.01399],[76.509779,37.974485],[76.469274,37.925787],[76.492387,37.86566],[76.482089,37.849987],[76.436092,37.856003],[76.410233,37.876898],[76.384374,37.867401],[76.382543,37.826868],[76.327164,37.815622],[76.292151,37.734159],[76.264462,37.731463],[76.208167,37.813405],[76.162856,37.780449],[76.100383,37.770464],[76.0299,37.732256],[75.940881,37.732415],[75.868567,37.674669],[75.805865,37.65213],[75.793507,37.734476],[75.858498,37.829719],[75.851175,37.859961],[75.886417,37.876581],[75.880467,37.92642],[75.78321,37.939704],[75.781379,37.909811],[75.747053,37.888451],[75.728746,37.903008],[75.666959,37.875473],[75.561463,37.919302],[75.462146,37.936858],[75.410428,37.922624],[75.421184,37.974485],[75.389604,38.035155],[75.385942,38.088673],[75.399215,38.106031],[75.368322,38.12433],[75.278158,38.203786],[75.192114,38.198902],[75.136277,38.234977],[75.108587,38.276387],[75.042681,38.266155],[74.982725,38.243009],[74.945653,38.273869],[74.896223,38.267414],[74.806746,38.285516]]],[[[79.190647,39.72068],[79.733686,39.4775],[79.764351,39.622831],[79.788379,39.801909],[79.815382,39.882735],[79.846047,39.908887],[79.862981,39.957165],[79.837809,39.980523],[79.860006,40.013702],[79.841699,40.131388],[79.833461,40.131388],[79.731169,40.146716],[79.587228,40.175678],[79.497294,40.211824],[79.343055,40.241065],[79.238933,40.253002],[79.145108,40.256522],[79.214218,40.059603],[79.482648,40.097652],[79.573955,40.012012],[79.606222,39.913347],[79.55725,39.865039],[79.53551,39.862884],[79.406215,39.89212],[79.278522,39.877658],[79.298889,39.844566],[79.28882,39.814848],[79.325663,39.80345],[79.246484,39.784808],[79.240306,39.733017],[79.190647,39.72068]]]]}},{"type":"Feature","properties":{"adcode":653200,"name":"和田地区","center":[79.92533,37.110687],"centroid":[81.72906,37.578228],"childrenNum":8,"level":"city","parent":{"adcode":650000},"subFeatureIndex":10,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[80.416089,36.279064],[80.41792,36.278255],[80.81473,36.292479],[80.817018,36.293287],[80.81656,36.296034],[80.81862,36.298135],[81.007185,36.260473],[81.008787,36.259826],[81.031671,36.259341],[81.03373,36.275992],[81.031213,36.27874],[81.030984,36.280195],[81.033959,36.280033],[81.049978,36.315101],[81.047461,36.250771],[81.274928,36.142196],[81.275386,36.142196],[81.330079,36.405848],[81.330994,36.421177],[81.357082,36.443601],[81.394383,36.31914],[81.436261,36.256754],[81.442897,36.22813],[81.429396,36.157091],[81.473333,36.116932],[81.460518,36.057788],[81.493929,36.016605],[81.466468,35.95203],[81.42253,35.879767],[81.372414,35.83654],[81.371041,35.796867],[81.410402,35.76108],[81.399646,35.707368],[81.463493,35.650036],[81.56876,35.629178],[81.586152,35.570648],[81.58455,35.46277],[81.523907,35.312708],[81.494158,35.292253],[81.513151,35.234952],[81.674942,35.233478],[81.736729,35.262298],[81.804237,35.270647],[81.853895,35.258696],[81.92804,35.271138],[81.955272,35.307308],[81.991886,35.305836],[82.044291,35.33234],[82.054588,35.355237],[82.029416,35.429284],[82.044291,35.452971],[82.234457,35.520399],[82.272216,35.550259],[82.328053,35.559394],[82.350251,35.611086],[82.336062,35.65134],[82.392815,35.656228],[82.425081,35.712741],[82.468561,35.717462],[82.501972,35.701344],[82.546138,35.708508],[82.628521,35.692225],[82.73127,35.637815],[82.788709,35.684571],[82.873609,35.688805],[82.894663,35.673984],[82.961026,35.671541],[82.956221,35.636186],[82.981622,35.599837],[82.971782,35.548301],[82.999014,35.484488],[83.067666,35.462607],[83.089177,35.425526],[83.126707,35.398562],[83.178196,35.389572],[83.242272,35.419807],[83.280259,35.401177],[83.448915,35.382052],[83.502463,35.36047],[83.540222,35.364068],[83.541824,35.341663],[83.599263,35.351149],[83.622376,35.335448],[83.684621,35.362596],[83.785539,35.363087],[83.797439,35.354747],[83.885085,35.367338],[83.904765,35.401831],[84.005913,35.422421],[84.077082,35.39987],[84.096076,35.36276],[84.140929,35.378946],[84.161525,35.358999],[84.200656,35.381071],[84.332926,35.413924],[84.416224,35.46277],[84.453068,35.473385],[84.471375,35.526764],[84.448948,35.550422],[84.570005,35.588261],[84.604331,35.589239],[84.702733,35.617117],[84.729049,35.613368],[84.797015,35.646778],[84.986266,35.725113],[84.917614,35.77442],[84.914182,35.854418],[84.861319,35.945212],[84.873677,35.984486],[84.84347,36.09895],[84.775046,36.102353],[84.681222,36.142844],[84.673441,36.182828],[84.637284,36.192214],[84.618519,36.220042],[84.570463,36.225704],[84.537739,36.269364],[84.416682,36.276639],[84.410274,36.309931],[84.363362,36.311223],[84.346885,36.364524],[84.35581,36.397779],[84.308211,36.42263],[84.322857,36.478757],[84.341851,36.490525],[84.346428,36.545636],[84.302719,36.611171],[84.251917,36.643837],[84.201114,36.660728],[84.167932,36.69482],[84.084634,36.69498],[84.013693,36.739502],[83.991038,36.76858],[83.914148,36.766974],[83.833138,36.83232],[83.858311,36.867459],[83.82101,36.963326],[83.860828,37.070112],[83.855336,37.117773],[83.79126,37.250203],[83.862201,37.291211],[83.894467,37.349732],[83.975706,37.410437],[83.974104,37.481913],[83.987377,37.514525],[83.989894,37.612273],[83.963577,37.6534],[83.932455,37.78552],[83.938405,37.832252],[83.885543,37.947294],[83.819179,38.048104],[83.747781,38.115339],[83.648921,38.187713],[83.502692,38.281581],[83.38667,38.388217],[83.387814,38.98344],[83.395137,39.321629],[83.414817,39.483227],[83.151879,39.484465],[82.585041,39.484],[82.101272,39.485393],[81.955958,39.483691],[81.438092,39.484929],[81.062335,39.483381],[80.726855,39.477346],[80.162305,39.464034],[79.764351,39.622831],[79.733686,39.4775],[79.616062,38.919196],[79.599814,38.829905],[79.566633,38.784437],[79.390425,38.830218],[79.333902,38.802253],[79.285387,38.807253],[79.238704,38.794283],[79.003227,38.667116],[78.506871,38.422471],[78.245078,38.188343],[78.006397,37.96342],[77.878246,37.811662],[78.350344,37.68546],[78.350344,37.731146],[78.54463,37.791066],[78.543028,37.574301],[79.197513,37.206299],[79.211243,37.231367],[79.256325,37.236316],[79.249917,37.414896],[79.377152,37.416489],[79.370974,37.385428],[79.33825,37.371406],[79.36571,37.354354],[79.367083,37.325021],[79.632768,37.474275],[79.661601,37.554116],[79.699131,37.561269],[79.694326,37.517546],[79.783116,37.580499],[79.818128,37.574937],[79.818586,37.537742],[79.883577,37.471411],[79.901655,37.508322],[79.960239,37.563812],[80.026831,37.581135],[80.097085,37.637206],[80.089762,37.655464],[80.131411,37.69863],[80.162991,37.7045],[80.198462,37.745893],[80.193885,37.764758],[80.26986,37.801998],[80.306474,37.89478],[80.352471,37.930057],[80.385196,37.934169],[80.433252,37.99977],[80.444923,38.032944],[80.504879,38.039261],[80.559801,38.08457],[80.581083,38.069575],[80.525475,37.979859],[80.477418,37.966266],[80.495726,37.937016],[80.455907,37.862652],[80.486572,37.804692],[80.435541,37.606714],[80.011041,37.40104],[79.990217,37.39419],[79.97763,37.335544],[79.930718,37.262173],[79.937812,37.251959],[80.019508,37.252916],[80.061615,37.290094],[80.103264,37.288659],[80.113104,37.226737],[80.016991,37.15358],[80.04285,37.13408],[80.01127,37.124009],[79.977859,37.052672],[79.949025,37.04355],[79.93438,36.980627],[79.901655,36.949386],[79.891357,36.904345],[79.973054,36.828629],[80.047427,36.823332],[80.087932,36.808404],[80.125461,36.765689],[80.104866,36.717325],[80.233703,36.584127],[80.241484,36.526465],[80.288625,36.532587],[80.318374,36.47005],[80.302355,36.461987],[80.317001,36.394067],[80.291142,36.386642],[80.244916,36.304114],[80.416089,36.279064]]],[[[79.883577,37.471411],[79.889298,37.454381],[79.811034,37.364554],[79.806686,37.29791],[79.776022,37.28467],[79.765037,37.28132],[79.589745,37.322789],[79.587686,37.325021],[79.584024,37.330761],[79.581965,37.333153],[79.580363,37.340008],[79.572354,37.38256],[79.618122,37.392438],[79.643294,37.424292],[79.632768,37.474275],[79.367083,37.325021],[79.374406,37.174033],[79.254494,37.214283],[79.251061,37.197036],[79.197513,37.206299],[78.543028,37.574301],[78.521746,37.555706],[78.488793,37.568739],[78.491081,37.616879],[78.441881,37.642128],[78.414191,37.621167],[78.330664,37.603537],[78.359956,37.653876],[78.350344,37.68546],[77.878246,37.811662],[77.806161,37.727023],[77.752155,37.678954],[77.741399,37.637365],[77.699979,37.588762],[77.664051,37.581611],[77.667713,37.444035],[77.639794,37.376505],[77.64254,37.350369],[77.600205,37.297591],[77.642769,37.266481],[77.664967,37.14463],[77.681214,37.128485],[77.651236,37.056512],[77.642311,36.975981],[77.608214,36.935284],[77.518966,36.930315],[77.528806,36.865052],[77.505693,36.842911],[77.49265,36.792991],[77.542308,36.746732],[77.61691,36.699964],[77.64849,36.669252],[77.623089,36.643193],[77.576405,36.633701],[77.582126,36.610366],[77.534756,36.610849],[77.503634,36.56126],[77.40775,36.545959],[77.42537,36.492137],[77.484869,36.493104],[77.579151,36.448924],[77.624462,36.387772],[77.610045,36.35968],[77.724465,36.28262],[77.810967,36.294579],[77.910055,36.198525],[77.854675,36.182504],[77.790829,36.131508],[77.791287,36.112234],[77.732246,36.100247],[77.742544,36.039145],[77.800669,36.027308],[77.872983,35.994707],[77.923785,35.930764],[77.887857,35.908355],[77.844835,35.912577],[77.866804,35.880904],[77.878704,35.811828],[77.835224,35.804836],[77.851701,35.748225],[77.826299,35.748225],[77.821722,35.714858],[77.851929,35.687014],[77.844149,35.612716],[77.814399,35.602609],[77.781675,35.554011],[77.816459,35.518604],[77.915089,35.464893],[77.917607,35.491019],[77.951475,35.47861],[78.010058,35.491508],[78.035917,35.467833],[78.048504,35.491345],[78.140497,35.494773],[78.107087,35.437289],[78.013262,35.365866],[78.021271,35.315162],[78.016923,35.228237],[78.060174,35.180232],[78.062692,35.114651],[78.07871,35.099888],[78.124707,35.108254],[78.150795,35.069534],[78.122877,35.03687],[78.160635,34.991052],[78.198852,34.977745],[78.181918,34.936991],[78.209607,34.889308],[78.237526,34.8824],[78.229974,34.774263],[78.21304,34.717916],[78.259952,34.710169],[78.280777,34.623094],[78.345996,34.604117],[78.427693,34.594049],[78.433871,34.548645],[78.492912,34.578367],[78.558132,34.56037],[78.563166,34.512965],[78.583991,34.506356],[78.61763,34.536258],[78.70848,34.522052],[78.758596,34.481567],[78.742806,34.454457],[78.855853,34.411789],[78.892468,34.355858],[78.958603,34.38631],[78.974393,34.361651],[79.039612,34.334502],[79.048995,34.348409],[79.010779,34.399878],[79.052199,34.427172],[79.078287,34.411624],[79.161356,34.441394],[79.22955,34.413939],[79.274174,34.436102],[79.326808,34.443048],[79.362964,34.427999],[79.435049,34.447678],[79.504617,34.454787],[79.54535,34.476278],[79.581278,34.45611],[79.675561,34.45115],[79.699818,34.477931],[79.801194,34.478923],[79.860922,34.528164],[79.843759,34.557398],[79.885865,34.642892],[79.866872,34.671426],[79.907147,34.683793],[79.899138,34.733572],[79.946279,34.822835],[79.926828,34.849332],[79.995938,34.856078],[80.003489,34.8949],[80.036671,34.903122],[80.042621,34.98021],[80.03095,35.03884],[80.07832,35.07659],[80.118139,35.066088],[80.236449,35.148268],[80.223176,35.177282],[80.257731,35.203337],[80.362769,35.208907],[80.268029,35.295853],[80.304415,35.379764],[80.374669,35.388101],[80.419979,35.442353],[80.444237,35.417192],[80.51655,35.392187],[80.568039,35.39137],[80.599848,35.409675],[80.656372,35.393985],[80.691156,35.364395],[80.689325,35.339046],[80.760037,35.33463],[80.844479,35.345425],[80.894366,35.323997],[80.924573,35.330704],[80.963705,35.311072],[81.026178,35.31189],[81.031671,35.380581],[81.054555,35.402321],[81.099179,35.407551],[81.142429,35.365212],[81.191859,35.365212],[81.219549,35.319089],[81.266232,35.322688],[81.285226,35.345425],[81.314289,35.337247],[81.363947,35.354583],[81.385458,35.335448],[81.441295,35.333485],[81.494158,35.292253],[81.523907,35.312708],[81.58455,35.46277],[81.586152,35.570648],[81.56876,35.629178],[81.463493,35.650036],[81.399646,35.707368],[81.410402,35.76108],[81.371041,35.796867],[81.372414,35.83654],[81.42253,35.879767],[81.466468,35.95203],[81.493929,36.016605],[81.460518,36.057788],[81.473333,36.116932],[81.429396,36.157091],[81.442897,36.22813],[81.436261,36.256754],[81.394383,36.31914],[81.357082,36.443601],[81.330994,36.421177],[81.330079,36.405848],[81.275386,36.142196],[81.274928,36.142196],[81.047461,36.250771],[81.031671,36.259341],[81.008787,36.259826],[81.007185,36.260473],[80.81862,36.298135],[80.81656,36.296034],[80.817018,36.293287],[80.81473,36.292479],[80.41792,36.278255],[80.416089,36.279064],[80.244916,36.304114],[80.291142,36.386642],[80.317001,36.394067],[80.302355,36.461987],[80.318374,36.47005],[80.288625,36.532587],[80.241484,36.526465],[80.233703,36.584127],[80.104866,36.717325],[80.125461,36.765689],[80.087932,36.808404],[80.047427,36.823332],[79.973054,36.828629],[79.891357,36.904345],[79.901655,36.949386],[79.93438,36.980627],[79.949025,37.04355],[79.977859,37.052672],[80.01127,37.124009],[80.04285,37.13408],[80.016991,37.15358],[80.113104,37.226737],[80.103264,37.288659],[80.061615,37.290094],[80.019508,37.252916],[79.937812,37.251959],[79.930718,37.262173],[79.97763,37.335544],[79.990217,37.39419],[80.011041,37.40104],[80.435541,37.606714],[80.486572,37.804692],[80.455907,37.862652],[80.495726,37.937016],[80.477418,37.966266],[80.525475,37.979859],[80.581083,38.069575],[80.559801,38.08457],[80.504879,38.039261],[80.444923,38.032944],[80.433252,37.99977],[80.385196,37.934169],[80.352471,37.930057],[80.306474,37.89478],[80.26986,37.801998],[80.193885,37.764758],[80.198462,37.745893],[80.162991,37.7045],[80.131411,37.69863],[80.089762,37.655464],[80.097085,37.637206],[80.026831,37.581135],[79.960239,37.563812],[79.901655,37.508322],[79.883577,37.471411]]],[[[79.709887,37.379533],[79.728652,37.383197],[79.751307,37.376505],[79.811034,37.364554],[79.889298,37.454381],[79.883577,37.471411],[79.818586,37.537742],[79.783802,37.537265],[79.783116,37.580499],[79.694326,37.517546],[79.686774,37.447537],[79.643294,37.424292],[79.618122,37.392438],[79.610341,37.373797],[79.680824,37.375071],[79.702335,37.376505],[79.704166,37.377461],[79.709887,37.379533]]],[[[79.776022,37.28467],[79.806686,37.29791],[79.811034,37.364554],[79.751307,37.376505],[79.728652,37.383197],[79.709887,37.379533],[79.704166,37.377461],[79.702335,37.376505],[79.680824,37.375071],[79.610341,37.373797],[79.580363,37.340008],[79.581965,37.333153],[79.584024,37.330761],[79.587686,37.325021],[79.589745,37.322789],[79.765037,37.28132],[79.776022,37.28467]]],[[[81.031213,36.27874],[81.03373,36.275992],[81.033959,36.280033],[81.030984,36.280195],[81.031213,36.27874]]]]}},{"type":"Feature","properties":{"adcode":654000,"name":"伊犁哈萨克自治州","center":[81.317946,43.92186],"centroid":[82.213264,43.349079],"childrenNum":11,"level":"city","parent":{"adcode":650000},"subFeatureIndex":11,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.950567,43.48427],[84.899078,43.521502],[84.895188,43.577162],[84.84942,43.570044],[84.821043,43.581229],[84.786717,43.641913],[84.708454,43.63161],[84.597695,43.669476],[84.634767,43.719638],[84.5533,43.750931],[84.504557,43.750207],[84.492199,43.734707],[84.44071,43.738474],[84.395171,43.724709],[84.36382,43.743399],[84.339563,43.726158],[84.287845,43.730795],[84.281437,43.765848],[84.253747,43.785248],[84.22949,43.774246],[84.084405,43.825477],[84.114841,43.854546],[84.088753,43.855992],[84.064267,43.885769],[84.029941,43.879844],[83.983944,43.910042],[83.939549,43.901663],[83.886229,43.952785],[83.804533,43.939648],[83.738398,43.9473],[83.68668,43.981648],[83.621003,43.965631],[83.571802,44.010353],[83.499946,44.001988],[83.502692,44.022321],[83.468824,44.036882],[83.429921,44.006171],[83.399485,44.014823],[83.310466,44.008334],[83.263554,44.041206],[83.238381,44.043512],[83.243416,44.073195],[83.126707,44.092928],[82.945923,44.083566],[82.899697,44.053312],[82.781158,44.085871],[82.705411,44.071178],[82.672916,44.114237],[82.57337,44.13669],[82.5379,44.156402],[82.444991,44.182434],[82.402197,44.215927],[82.36032,44.265343],[82.283658,44.249115],[82.167636,44.263476],[82.082736,44.291757],[82.032391,44.285442],[81.834901,44.327484],[81.777691,44.352006],[81.751603,44.347131],[81.713845,44.365769],[81.700114,44.394287],[81.650913,44.38655],[81.618647,44.427374],[81.591415,44.41649],[81.459603,44.450996],[81.425734,44.440546],[81.358455,44.44255],[81.363947,44.405175],[81.334884,44.380388],[81.333054,44.348135],[81.401477,44.284867],[81.363947,44.253424],[81.370355,44.239778],[81.325044,44.226417],[81.290947,44.233601],[81.241975,44.206154],[81.208564,44.144892],[81.205589,44.098256],[81.143345,44.052015],[81.125495,44.055185],[81.11268,43.99694],[81.079269,43.96592],[81.076295,43.96058],[81.082931,43.930984],[81.071031,43.907731],[80.978122,43.908742],[80.9351,43.929685],[80.905579,43.946722],[80.804661,43.930407],[80.793905,43.906431],[80.873771,43.91452],[80.917021,43.889382],[80.985674,43.893139],[81.014508,43.873773],[81.072175,43.895595],[81.125953,43.870593],[81.039909,43.849052],[80.862328,43.867702],[80.764156,43.854257],[80.739899,43.888659],[80.71999,43.890971],[80.672391,43.844713],[80.727084,43.811443],[80.775369,43.80334],[80.756833,43.784959],[80.782463,43.696882],[80.707632,43.673827],[80.632344,43.663384],[80.755002,43.494162],[80.760952,43.446432],[80.73578,43.389632],[80.68635,43.333653],[80.692758,43.32038],[80.776971,43.307979],[80.76919,43.265359],[80.788642,43.242285],[80.804432,43.178421],[80.794592,43.13732],[80.752714,43.148147],[80.732576,43.130882],[80.665754,43.147562],[80.593441,43.133516],[80.556368,43.104391],[80.482453,43.069539],[80.416776,43.056794],[80.378559,43.031443],[80.392519,43.002122],[80.487259,42.948869],[80.591381,42.923179],[80.603052,42.894394],[80.505795,42.882495],[80.427074,42.857071],[80.425929,42.842518],[80.356133,42.828256],[80.320663,42.838549],[80.260249,42.824873],[80.258876,42.790746],[80.226151,42.713006],[80.228211,42.692966],[80.178324,42.667907],[80.163907,42.62794],[80.221575,42.533302],[80.265283,42.502266],[80.210361,42.469588],[80.206013,42.431565],[80.239882,42.389224],[80.228669,42.359895],[80.284048,42.32062],[80.324324,42.315134],[80.372381,42.326698],[80.415403,42.304754],[80.471469,42.321806],[80.531883,42.360932],[80.592296,42.366117],[80.62914,42.353375],[80.657287,42.366117],[80.761639,42.361525],[80.803974,42.339742],[80.898028,42.369228],[80.963018,42.361673],[80.985216,42.380634],[81.025263,42.342854],[81.048147,42.284732],[81.098263,42.291703],[81.160508,42.259954],[81.152498,42.323585],[81.195521,42.343595],[81.271267,42.343595],[81.285455,42.332479],[81.318637,42.357821],[81.352734,42.332331],[81.386602,42.354413],[81.478825,42.360636],[81.50949,42.352042],[81.582032,42.374117],[81.630775,42.373821],[81.66144,42.392186],[81.672196,42.369969],[81.751832,42.365525],[81.805152,42.405957],[81.820256,42.3833],[81.865795,42.384041],[81.867397,42.411138],[81.959848,42.402255],[81.984563,42.425793],[82.065344,42.420316],[82.07793,42.43852],[82.133538,42.440444],[82.142692,42.489256],[82.189147,42.467221],[82.230109,42.494578],[82.295329,42.48275],[82.366498,42.50404],[82.363752,42.538768],[82.407232,42.55162],[82.585499,42.543939],[82.62074,42.558562],[82.638132,42.597689],[82.621198,42.621005],[82.634242,42.651982],[82.599229,42.719635],[82.507006,42.799427],[82.480003,42.800603],[82.470392,42.843253],[82.512727,42.858541],[82.532637,42.901739],[82.576803,42.88558],[82.649345,42.88367],[82.653236,42.934337],[82.712505,42.951657],[82.789396,42.933897],[82.82418,42.954886],[82.82418,42.980269],[82.858963,42.971026],[82.892603,42.992296],[82.941575,42.987309],[83.013889,43.007107],[83.037688,42.996402],[83.135632,42.992149],[83.159889,43.006374],[83.2663,43.017957],[83.325112,43.047416],[83.361726,43.028218],[83.407037,43.052105],[83.504752,43.058845],[83.565852,43.07569],[83.56631,43.092385],[83.627639,43.08067],[83.679815,43.09751],[83.713226,43.137467],[83.758078,43.149317],[83.801558,43.133516],[83.912546,43.128102],[83.96312,43.156192],[84.043214,43.132199],[84.038866,43.146245],[84.104314,43.145514],[84.22949,43.171256],[84.279149,43.174912],[84.363133,43.15941],[84.359014,43.144197],[84.413707,43.102341],[84.423318,43.16175],[84.504328,43.164383],[84.540714,43.152974],[84.574124,43.168332],[84.653761,43.175351],[84.602501,43.228553],[84.564742,43.231037],[84.581447,43.266965],[84.538425,43.262877],[84.532246,43.292802],[84.552842,43.331757],[84.623554,43.338028],[84.676187,43.37229],[84.692893,43.40187],[84.633165,43.432747],[84.661541,43.491253],[84.716005,43.453128],[84.786717,43.465936],[84.834316,43.43595],[84.92425,43.425175],[84.950567,43.48427]]],[[[81.079269,43.96592],[81.11268,43.99694],[81.125495,44.055185],[81.143345,44.052015],[81.205589,44.098256],[81.208564,44.144892],[81.241975,44.206154],[81.290947,44.233601],[81.325044,44.226417],[81.370355,44.239778],[81.363947,44.253424],[81.401477,44.284867],[81.333054,44.348135],[81.334884,44.380388],[81.363947,44.405175],[81.358455,44.44255],[81.211311,44.462875],[81.112222,44.506792],[81.048376,44.50336],[80.99826,44.535527],[80.890018,44.52981],[80.873771,44.563677],[80.843564,44.568391],[80.755002,44.61023],[80.707632,44.601807],[80.66072,44.637202],[80.691842,44.674144],[80.638293,44.710635],[80.636005,44.73115],[80.590008,44.723743],[80.482911,44.739412],[80.397324,44.771733],[80.348581,44.805175],[80.311051,44.811576],[80.262766,44.843573],[80.227753,44.825088],[80.187935,44.825799],[80.178781,44.796923],[80.220888,44.733287],[80.314942,44.704649],[80.413114,44.610944],[80.350641,44.48448],[80.382907,44.401164],[80.413114,44.264625],[80.400986,44.19868],[80.406936,44.149784],[80.39412,44.127192],[80.440804,44.083854],[80.521356,44.07017],[80.531196,44.029674],[80.586347,44.017707],[80.553851,44.101424],[80.566895,44.17323],[80.637607,44.180852],[80.701911,44.133093],[80.673764,44.100272],[80.699394,44.067577],[80.679256,44.062534],[80.741729,44.016842],[80.725482,43.969816],[80.736237,43.921164],[80.71999,43.890971],[80.739899,43.888659],[80.793905,43.906431],[80.804661,43.930407],[80.905579,43.946722],[80.9351,43.929685],[80.987047,43.990016],[81.079269,43.96592]]],[[[85.113273,44.34369],[85.177348,44.324902],[85.212819,44.479187],[85.254696,44.476754],[85.229753,44.550675],[85.238678,44.598809],[85.202978,44.636061],[85.06842,44.626358],[85.010295,44.574819],[84.853768,44.552104],[84.86109,44.495637],[84.798159,44.438971],[84.77825,44.390848],[84.974595,44.384687],[85.113273,44.34369]]],[[[80.624792,43.754407],[80.669873,43.753683],[80.660949,43.778734],[80.576735,43.783945],[80.624792,43.754407]]]]}},{"type":"Feature","properties":{"adcode":654200,"name":"塔城地区","center":[82.985732,46.746301],"centroid":[84.155013,45.399091],"childrenNum":7,"level":"city","parent":{"adcode":650000},"subFeatureIndex":12,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.661541,45.102872],[84.668864,45.158607],[84.633394,45.185888],[84.58877,45.241401],[84.579388,45.31068],[84.623325,45.343808],[84.651701,45.395646],[84.710742,45.451797],[84.739576,45.520819],[84.783513,45.597613],[84.80594,45.608275],[84.772071,45.648658],[84.791981,45.663794],[84.847589,45.631414],[84.910291,45.648938],[84.956746,45.707777],[85.023796,45.721218],[85.059953,45.713098],[85.129978,45.74543],[85.193825,45.802491],[85.22838,45.850136],[85.258358,45.925364],[85.288565,45.967608],[85.259044,45.978199],[85.293142,45.993246],[85.263392,46.053114],[85.282844,46.090811],[85.380101,46.143628],[85.296345,46.164602],[85.264765,46.182235],[85.077574,46.21263],[84.969332,46.275309],[84.919674,46.320195],[84.900222,46.356741],[84.901366,46.402942],[84.881,46.431832],[84.893815,46.493571],[84.814865,46.547241],[84.779394,46.554412],[84.710742,46.599068],[84.686256,46.636253],[84.722642,46.685381],[84.725617,46.716046],[84.764291,46.760432],[84.761316,46.794075],[84.819899,46.81425],[84.821959,46.832086],[84.881,46.855949],[84.943702,46.861982],[84.86704,46.927476],[84.84942,46.956909],[84.795413,46.972509],[84.748043,47.009847],[84.668635,46.994805],[84.56314,46.99166],[84.506616,46.973056],[84.425378,47.00889],[84.3716,46.993301],[84.336588,47.005335],[84.289218,46.994805],[84.195164,47.003557],[84.150311,46.977297],[84.086465,46.965257],[84.002709,46.990566],[83.951449,46.987283],[83.932913,46.970046],[83.885772,46.981948],[83.766546,47.027071],[83.699266,47.015589],[83.700639,47.032128],[83.57615,47.059181],[83.463332,47.132074],[83.418937,47.11884],[83.370422,47.178569],[83.332435,47.167801],[83.306347,47.179659],[83.257833,47.173253],[83.222134,47.186882],[83.20703,47.21372],[83.154854,47.236052],[83.1084,47.222164],[83.02739,47.215491],[83.031738,47.16821],[82.98803,47.058771],[82.937913,47.014085],[82.923496,46.931995],[82.876355,46.823855],[82.878415,46.797232],[82.829672,46.772655],[82.788938,46.677815],[82.774292,46.60017],[82.727151,46.495503],[82.608841,46.295124],[82.51822,46.153769],[82.461467,45.980011],[82.401282,45.972207],[82.342699,45.935126],[82.336062,45.882249],[82.349564,45.823035],[82.340182,45.772569],[82.290065,45.716458],[82.288464,45.655385],[82.266724,45.620196],[82.282056,45.538939],[82.447966,45.461361],[82.546825,45.42591],[82.60106,45.346203],[82.582753,45.219089],[82.683214,45.153799],[82.757816,45.152102],[82.855531,45.100891],[83.002675,45.050766],[83.09444,45.028947],[83.263554,44.998329],[83.391476,44.980887],[83.474087,44.976064],[83.513448,44.939316],[83.573862,44.931225],[83.600178,44.894163],[83.666313,44.888339],[83.701784,44.853951],[83.730389,44.801049],[83.795837,44.756785],[83.794464,44.719469],[83.75968,44.633207],[83.745492,44.552962],[83.791947,44.520375],[83.79332,44.466739],[83.752815,44.46173],[83.63931,44.474751],[83.602924,44.462875],[83.517567,44.467597],[83.531526,44.414915],[83.489877,44.367346],[83.486216,44.317442],[83.439761,44.282571],[83.448915,44.254285],[83.412071,44.168916],[83.445482,44.121723],[83.448457,44.076508],[83.468824,44.036882],[83.502692,44.022321],[83.499946,44.001988],[83.571802,44.010353],[83.621003,43.965631],[83.68668,43.981648],[83.738398,43.9473],[83.804533,43.939648],[83.886229,43.952785],[83.939549,43.901663],[83.983944,43.910042],[84.029941,43.879844],[84.064267,43.885769],[84.088753,43.855992],[84.114841,43.854546],[84.084405,43.825477],[84.22949,43.774246],[84.253747,43.785248],[84.281437,43.765848],[84.287845,43.730795],[84.339563,43.726158],[84.36382,43.743399],[84.395171,43.724709],[84.44071,43.738474],[84.492199,43.734707],[84.504557,43.750207],[84.5533,43.750931],[84.634767,43.719638],[84.597695,43.669476],[84.708454,43.63161],[84.786717,43.641913],[84.821043,43.581229],[84.84942,43.570044],[84.895188,43.577162],[84.899078,43.521502],[84.950567,43.48427],[84.979859,43.47976],[85.020364,43.51365],[85.056292,43.563942],[85.156981,43.546795],[85.170483,43.510742],[85.241881,43.52092],[85.286734,43.502307],[85.31511,43.529207],[85.328154,43.486743],[85.434108,43.478887],[85.483537,43.498235],[85.519694,43.536185],[85.5975,43.530806],[85.579879,43.539528],[85.665008,43.622901],[85.697274,43.619272],[85.719701,43.638575],[85.719701,43.678758],[85.739152,43.731809],[85.779199,43.763676],[85.767757,43.791183],[85.786293,43.839507],[85.883779,43.920586],[85.91925,43.934306],[85.965018,43.931706],[85.955407,43.967074],[85.967535,44.003575],[86.038018,44.062102],[86.096144,44.125897],[86.065937,44.160286],[85.985842,44.157265],[85.954262,44.309551],[85.904833,44.332647],[85.912156,44.426515],[85.981037,44.407037],[86.011015,44.411334],[86.043281,44.452141],[86.111018,44.459011],[86.122689,44.448992],[86.130927,44.463447],[86.084015,44.490345],[86.06525,44.564105],[86.068225,44.601807],[86.01788,44.603378],[85.988588,44.637773],[85.955635,44.638629],[85.906892,44.736563],[85.942134,44.759633],[85.891331,44.813141],[85.868447,44.86589],[85.781488,44.922849],[85.668898,44.9193],[85.670729,45.278097],[85.666838,45.331123],[85.291769,45.332391],[85.245772,45.329008],[85.239593,45.29305],[85.201834,45.244224],[85.205953,45.207365],[85.250348,45.158607],[85.238449,45.080223],[85.258358,45.031639],[85.240737,45.019735],[85.171627,45.022711],[85.156066,44.970958],[85.051486,44.931793],[85.027229,44.886208],[85.021965,44.814421],[85.047367,44.770167],[85.010295,44.755219],[85.04668,44.740266],[85.052859,44.698093],[85.025398,44.68669],[85.018304,44.61965],[85.06842,44.626358],[85.202978,44.636061],[85.238678,44.598809],[85.229753,44.550675],[85.254696,44.476754],[85.212819,44.479187],[85.177348,44.324902],[85.113273,44.34369],[85.108467,44.309551],[85.065445,44.317299],[84.996106,44.310699],[84.969103,44.297354],[84.939354,44.252275],[84.917385,44.17927],[84.830426,44.160142],[84.797244,44.161436],[84.737974,44.126185],[84.792209,44.224262],[84.798159,44.258737],[84.779166,44.343546],[84.77825,44.390848],[84.798159,44.438971],[84.86109,44.495637],[84.853768,44.552104],[84.880084,44.626929],[84.8453,44.663164],[84.80205,44.683411],[84.782598,44.669153],[84.708454,44.733857],[84.677331,44.739839],[84.626071,44.791658],[84.652388,44.791231],[84.648726,44.866316],[84.634996,44.867453],[84.635682,44.930231],[84.610052,44.995351],[84.558334,44.991239],[84.528127,44.97039],[84.516456,44.988829],[84.544604,45.009954],[84.538654,45.055582],[84.558334,45.084187],[84.540256,45.094804],[84.541171,45.152668],[84.65582,45.152244],[84.661541,45.102872]]],[[[85.245772,45.329008],[85.291769,45.332391],[85.666838,45.331123],[86.487003,45.332532],[87.336918,45.330559],[87.339435,45.957852],[87.336002,46.005085],[87.300761,46.060489],[87.037136,46.503509],[87.201673,46.715771],[87.203732,46.849505],[87.068488,46.932543],[87.029585,46.970867],[87.037365,47.11884],[86.581057,47.051941],[86.49364,47.064235],[86.492724,47.08977],[86.377618,47.087312],[86.197749,47.041557],[86.082642,47.025568],[86.005752,47.06642],[85.953347,47.078028],[85.797735,47.053853],[85.679882,47.051531],[85.540061,47.057405],[85.441202,47.063415],[85.326095,47.044836],[85.276436,47.068878],[85.213963,47.041147],[85.175518,46.998087],[85.111442,46.973193],[85.081922,46.939799],[84.987182,46.918164],[84.980088,46.883092],[84.943702,46.861982],[84.881,46.855949],[84.821959,46.832086],[84.819899,46.81425],[84.761316,46.794075],[84.764291,46.760432],[84.725617,46.716046],[84.722642,46.685381],[84.686256,46.636253],[84.710742,46.599068],[84.779394,46.554412],[84.814865,46.547241],[84.893815,46.493571],[84.881,46.431832],[84.901366,46.402942],[84.900222,46.356741],[84.919674,46.320195],[84.969332,46.275309],[85.077574,46.21263],[85.264765,46.182235],[85.296345,46.164602],[85.380101,46.143628],[85.419462,46.128066],[85.437998,46.150296],[85.557453,46.198059],[85.648302,46.211936],[85.679882,46.190842],[85.791557,46.192924],[85.813754,46.178209],[85.903002,46.181819],[85.993165,46.123897],[86.024288,46.068001],[85.962501,46.044764],[85.95472,46.001325],[85.931836,45.975273],[85.880347,45.952973],[85.886297,45.938751],[85.839613,45.921877],[85.814212,45.895369],[85.642353,45.78921],[85.621299,45.763058],[85.59155,45.654404],[85.596813,45.641929],[85.547384,45.593123],[85.491775,45.51267],[85.434336,45.459814],[85.388111,45.436182],[85.28353,45.421406],[85.239593,45.375508],[85.245772,45.329008]]]]}},{"type":"Feature","properties":{"adcode":654300,"name":"阿勒泰地区","center":[88.13963,47.848393],"centroid":[87.048189,48.013014],"childrenNum":7,"level":"city","parent":{"adcode":650000},"subFeatureIndex":13,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[88.43009,47.258239],[88.390271,47.265043],[88.307202,47.3155],[88.316585,47.455331],[88.345876,47.48664],[88.352284,47.523889],[88.405833,47.557863],[88.422996,47.612231],[88.46167,47.682069],[88.511786,47.713243],[88.531237,47.748982],[88.525059,47.776478],[88.624833,47.779712],[88.562588,47.800458],[88.57815,47.829811],[88.544968,47.850806],[88.563961,47.881476],[88.497598,47.912799],[88.433522,47.911321],[88.386381,47.943432],[88.491877,48.001155],[88.468993,48.054391],[88.474027,48.093512],[88.584328,48.162035],[88.64131,48.181959],[88.598288,48.227262],[88.575175,48.277595],[88.606068,48.337876],[88.573344,48.369722],[88.535585,48.369056],[88.503776,48.412994],[88.438099,48.393559],[88.36098,48.433353],[88.363039,48.460485],[88.257544,48.497702],[88.196672,48.493982],[88.151819,48.526261],[88.13008,48.521613],[88.101017,48.548034],[88.041289,48.5483],[87.973095,48.576034],[87.961653,48.599377],[88.02733,48.627348],[88.026644,48.653185],[88.089575,48.694893],[88.090719,48.719768],[88.061885,48.714344],[88.029161,48.750185],[87.961424,48.773447],[87.938998,48.757852],[87.872176,48.799473],[87.826408,48.800926],[87.828925,48.825617],[87.780869,48.872194],[87.742423,48.881293],[87.759815,48.925974],[87.814508,48.945336],[87.876524,48.949155],[87.871947,48.963638],[87.911766,48.979959],[87.884076,48.993906],[87.88316,49.023762],[87.835333,49.054257],[87.858217,49.07357],[87.867142,49.10876],[87.845631,49.146023],[87.820687,49.148253],[87.820916,49.173822],[87.700546,49.175788],[87.685442,49.159924],[87.563012,49.142482],[87.517473,49.145499],[87.495504,49.131987],[87.511523,49.101671],[87.436692,49.075277],[87.388865,49.097995],[87.30488,49.112304],[87.238745,49.114535],[87.211742,49.140645],[87.112654,49.155597],[87.088397,49.133693],[87.002124,49.142613],[86.953838,49.1312],[86.881982,49.129494],[86.847199,49.101015],[86.836214,49.051103],[86.772368,49.027707],[86.73255,48.995354],[86.730032,48.955475],[86.75818,48.894873],[86.782894,48.886172],[86.822484,48.84581],[86.818365,48.830369],[86.764358,48.803699],[86.754289,48.780979],[86.781064,48.732069],[86.702343,48.66537],[86.693647,48.643779],[86.642615,48.629601],[86.594559,48.576697],[86.585634,48.542194],[86.41263,48.481091],[86.371439,48.493052],[86.3021,48.490793],[86.270978,48.452906],[86.226125,48.432422],[86.053808,48.441069],[85.916504,48.437876],[85.838698,48.42883],[85.758604,48.403943],[85.71192,48.361462],[85.694986,48.301476],[85.661804,48.243422],[85.633885,48.232871],[85.622215,48.202945],[85.592236,48.196396],[85.55608,48.139962],[85.55196,48.081591],[85.531822,48.046349],[85.546926,48.008265],[85.617638,47.550691],[85.610086,47.511295],[85.652193,47.455195],[85.684917,47.428886],[85.701393,47.38424],[85.675992,47.321617],[85.701165,47.288441],[85.6824,47.222709],[85.582854,47.142849],[85.546926,47.096732],[85.540061,47.057405],[85.679882,47.051531],[85.797735,47.053853],[85.953347,47.078028],[86.005752,47.06642],[86.082642,47.025568],[86.197749,47.041557],[86.377618,47.087312],[86.492724,47.08977],[86.49364,47.064235],[86.581057,47.051941],[87.037365,47.11884],[87.016312,47.284633],[87.017914,47.3034],[87.151786,47.344175],[87.252933,47.362649],[87.312203,47.38519],[87.385661,47.399307],[87.431658,47.435397],[87.540357,47.4297],[87.554774,47.42129],[87.579489,47.406229],[87.556147,47.356673],[87.771715,47.357081],[87.753637,47.380167],[87.803066,47.382339],[87.831671,47.357216],[87.853411,47.367267],[87.873091,47.346213],[87.828696,47.351919],[87.862565,47.317539],[87.906731,47.341322],[87.98591,47.316859],[88.038772,47.312237],[88.098042,47.28096],[88.262121,47.238503],[88.312237,47.258103],[88.339698,47.239728],[88.43009,47.258239]]],[[[88.64131,48.181959],[88.584328,48.162035],[88.474027,48.093512],[88.468993,48.054391],[88.491877,48.001155],[88.386381,47.943432],[88.433522,47.911321],[88.497598,47.912799],[88.563961,47.881476],[88.544968,47.850806],[88.57815,47.829811],[88.562588,47.800458],[88.624833,47.779712],[88.525059,47.776478],[88.531237,47.748982],[88.511786,47.713243],[88.46167,47.682069],[88.422996,47.612231],[88.405833,47.557863],[88.352284,47.523889],[88.345876,47.48664],[88.316585,47.455331],[88.307202,47.3155],[88.390271,47.265043],[88.43009,47.258239],[88.428717,47.234691],[88.343359,47.232512],[88.342673,47.174344],[88.273563,47.132892],[88.176763,47.114883],[88.077904,47.128663],[88.05502,47.147486],[88.005361,47.145713],[87.91085,47.172572],[87.886364,47.161121],[87.79437,47.184156],[87.74311,47.204866],[87.66805,47.267492],[87.595508,47.289121],[87.527542,47.338604],[87.556147,47.356673],[87.579489,47.406229],[87.554774,47.42129],[87.490241,47.400664],[87.481316,47.411114],[87.540357,47.4297],[87.431658,47.435397],[87.385661,47.399307],[87.312203,47.38519],[87.252933,47.362649],[87.151786,47.344175],[87.017914,47.3034],[87.016312,47.284633],[87.037365,47.11884],[87.029585,46.970867],[87.068488,46.932543],[87.203732,46.849505],[87.201673,46.715771],[87.037136,46.503509],[87.300761,46.060489],[87.336002,46.005085],[87.339435,45.957852],[87.336918,45.330559],[87.336231,45.001874],[88.004446,45.002015],[90.23816,45.001732],[90.22237,45.064364],[90.251204,45.087727],[90.292166,45.177267],[90.353267,45.23067],[90.379583,45.276968],[90.481646,45.397335],[90.494919,45.42028],[90.671355,45.487654],[90.670211,45.547926],[90.714835,45.728916],[90.799964,45.83505],[90.85008,45.887972],[91.028347,46.023049],[91.014845,46.066471],[91.021481,46.121118],[90.984638,46.160574],[90.948024,46.219151],[90.955575,46.233855],[90.900425,46.312301],[90.983494,46.374866],[90.996309,46.419393],[91.025601,46.443854],[91.037958,46.500886],[91.079149,46.558824],[91.067936,46.579225],[91.01782,46.582257],[91.036356,46.670386],[91.053977,46.717421],[91.019422,46.766201],[90.94276,46.825775],[90.957864,46.879528],[90.929945,46.893095],[90.922165,46.938704],[90.901569,46.960741],[90.830857,46.995899],[90.76724,46.99248],[90.69218,47.080622],[90.653735,47.111608],[90.579819,47.198191],[90.561512,47.207046],[90.521465,47.284633],[90.488283,47.317267],[90.526499,47.378945],[90.507734,47.399986],[90.468602,47.404872],[90.458991,47.438923],[90.474323,47.46238],[90.468145,47.497614],[90.398348,47.547714],[90.376151,47.603039],[90.346173,47.637367],[90.384847,47.644257],[90.331527,47.681529],[90.21642,47.705418],[90.192621,47.722416],[90.134953,47.723226],[90.076141,47.777421],[90.070648,47.820522],[90.086667,47.865605],[89.960576,47.885779],[89.958059,47.842867],[89.933344,47.835734],[89.762171,47.835734],[89.735397,47.897476],[89.650955,47.91374],[89.645463,47.947864],[89.603356,47.963172],[89.599466,48.015643],[89.568801,48.037769],[89.498089,48.028383],[89.408612,48.034953],[89.38138,48.046215],[89.359869,48.026372],[89.308609,48.021946],[89.282064,47.994044],[89.23149,47.980221],[89.15643,47.996861],[89.078395,47.986931],[89.044756,48.009875],[89.027364,48.050906],[88.953906,48.090833],[88.930564,48.119486],[88.824382,48.106768],[88.797379,48.133941],[88.721404,48.160564],[88.700808,48.181024],[88.64131,48.181959]]]]}},{"type":"Feature","properties":{"adcode":659001,"name":"石河子市","center":[86.041075,44.305886],"centroid":[86.038213,44.306831],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":14,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[86.122689,44.448992],[86.111018,44.459011],[86.043281,44.452141],[86.011015,44.411334],[85.981037,44.407037],[85.912156,44.426515],[85.904833,44.332647],[85.954262,44.309551],[85.985842,44.157265],[86.065937,44.160286],[86.096144,44.125897],[86.128868,44.211472],[86.123833,44.266204],[86.141683,44.32734],[86.127037,44.374225],[86.122689,44.448992]]]]}},{"type":"Feature","properties":{"adcode":659002,"name":"阿拉尔市","center":[81.285884,40.541914],"centroid":[81.316958,40.6005],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":15,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[81.884102,40.941004],[81.863506,40.944033],[81.457085,40.804699],[81.385687,40.825033],[81.32596,40.805154],[81.32985,40.762947],[81.140828,40.698979],[80.990479,40.702476],[80.867363,40.658987],[80.791846,40.703236],[80.725939,40.701412],[80.683375,40.666744],[80.592296,40.619884],[80.621588,40.556845],[80.670789,40.569031],[80.70214,40.546028],[80.696419,40.520121],[80.741272,40.533228],[80.780404,40.505944],[80.789786,40.479564],[80.827774,40.476513],[80.809924,40.454699],[80.729372,40.452411],[80.723422,40.488409],[80.673993,40.511585],[80.659347,40.484597],[80.683833,40.464616],[80.633717,40.465378],[80.605798,40.423262],[80.679485,40.381425],[80.740128,40.369357],[80.907868,40.420362],[80.931438,40.432573],[80.981097,40.423872],[81.003065,40.396849],[81.210395,40.397307],[81.281107,40.43593],[81.377449,40.43944],[81.760299,40.437914],[81.880441,40.467667],[81.978613,40.468429],[81.944745,40.494356],[81.822544,40.685144],[81.743365,40.733326],[81.812704,40.813197],[81.84314,40.886152],[81.884102,40.941004]]]]}},{"type":"Feature","properties":{"adcode":659003,"name":"图木舒克市","center":[79.077978,39.867316],"centroid":[79.163596,39.870411],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":16,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.190647,39.72068],[79.240306,39.733017],[79.246484,39.784808],[79.325663,39.80345],[79.28882,39.814848],[79.298889,39.844566],[79.278522,39.877658],[79.406215,39.89212],[79.53551,39.862884],[79.55725,39.865039],[79.606222,39.913347],[79.573955,40.012012],[79.482648,40.097652],[79.214218,40.059603],[79.045562,40.036887],[79.015355,40.022147],[79.039155,39.981291],[79.001625,39.970996],[78.989725,39.929494],[78.942813,39.908118],[78.989496,39.868271],[78.932057,39.859806],[78.906885,39.831326],[78.942584,39.809765],[79.004829,39.800677],[78.993387,39.781418],[78.904368,39.781418],[78.870728,39.762154],[78.883772,39.704176],[78.840521,39.711271],[78.806424,39.657264],[78.782853,39.688593],[78.809856,39.74381],[78.776675,39.758147],[78.777819,39.825012],[78.757223,39.796672],[78.657449,39.736409],[78.673467,39.700936],[78.705276,39.689982],[78.708709,39.650471],[78.796584,39.653404],[78.84075,39.6131],[78.915581,39.611247],[79.000252,39.624993],[79.003684,39.65927],[79.092246,39.681032],[79.117647,39.715436],[79.190647,39.72068]]]]}},{"type":"Feature","properties":{"adcode":659004,"name":"五家渠市","center":[87.526884,44.167401],"centroid":[87.557631,44.362095],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":17,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.504658,44.066424],[87.492529,44.007757],[87.508319,44.021456],[87.527542,44.093648],[87.576743,44.116541],[87.564614,44.170929],[87.584066,44.239347],[87.640132,44.226561],[87.652489,44.196236],[87.691163,44.221963],[87.712216,44.262902],[87.716107,44.356881],[87.692765,44.370212],[87.693452,44.416633],[87.663702,44.417063],[87.652718,44.450423],[87.598711,44.477756],[87.59116,44.533383],[87.554774,44.580532],[87.501912,44.594812],[87.514498,44.548818],[87.370557,44.566963],[87.406943,44.529381],[87.449279,44.443552],[87.430056,44.408469],[87.423877,44.351433],[87.489783,44.303525],[87.471934,44.283145],[87.523423,44.227279],[87.506489,44.167765],[87.521592,44.150935],[87.493674,44.107615],[87.504658,44.066424]]]]}},{"type":"Feature","properties":{"adcode":659005,"name":"北屯市","center":[87.824932,47.353177],"centroid":[87.95973,47.244003],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":18,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[87.556147,47.356673],[87.527542,47.338604],[87.595508,47.289121],[87.66805,47.267492],[87.74311,47.204866],[87.79437,47.184156],[87.886364,47.161121],[87.91085,47.172572],[88.005361,47.145713],[88.05502,47.147486],[88.077904,47.128663],[88.176763,47.114883],[88.273563,47.132892],[88.342673,47.174344],[88.343359,47.232512],[88.428717,47.234691],[88.43009,47.258239],[88.339698,47.239728],[88.312237,47.258103],[88.262121,47.238503],[88.098042,47.28096],[88.038772,47.312237],[87.98591,47.316859],[87.906731,47.341322],[87.862565,47.317539],[87.828696,47.351919],[87.873091,47.346213],[87.853411,47.367267],[87.831671,47.357216],[87.803066,47.382339],[87.753637,47.380167],[87.771715,47.357081],[87.556147,47.356673]]],[[[87.540357,47.4297],[87.481316,47.411114],[87.490241,47.400664],[87.554774,47.42129],[87.540357,47.4297]]]]}},{"type":"Feature","properties":{"adcode":659006,"name":"铁门关市","center":[85.501218,41.827251],"centroid":[85.590071,41.800499],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":19,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[85.512142,41.914581],[85.498412,41.866369],[85.367973,41.826488],[85.357675,41.747399],[85.491089,41.754579],[85.526101,41.740218],[85.705513,41.745903],[85.703682,41.684237],[85.726795,41.661472],[85.785836,41.664468],[85.773021,41.72705],[85.73961,41.756374],[85.792701,41.82589],[85.754484,41.852779],[85.512142,41.914581]]],[[[86.099576,41.798392],[85.894993,41.821856],[85.876685,41.778957],[85.888585,41.763853],[86.091109,41.771181],[86.099576,41.798392]]],[[[85.437311,41.932036],[85.443948,41.93845],[85.408706,41.94203],[85.437311,41.932036]]]]}},{"type":"Feature","properties":{"adcode":659007,"name":"双河市","center":[82.353656,44.840524],"centroid":[82.468534,44.833549],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":20,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[82.206996,44.821248],[82.268097,44.832625],[82.312721,44.80361],[82.347047,44.799769],[82.499912,44.740836],[82.542934,44.740124],[82.543163,44.709067],[82.596483,44.722888],[82.666737,44.770025],[82.674518,44.792797],[82.735847,44.827364],[82.738822,44.858641],[82.679552,44.871432],[82.656439,44.944425],[82.539502,44.902685],[82.49648,44.903395],[82.49648,44.884219],[82.446364,44.883509],[82.3562,44.901833],[82.278395,44.860631],[82.223244,44.889192],[82.145667,44.89672],[82.138344,44.88493],[82.07999,44.895584],[82.088915,44.879247],[82.162372,44.864326],[82.138115,44.843005],[82.100814,44.857504],[82.083422,44.837602],[82.122096,44.806313],[82.150015,44.833905],[82.206996,44.821248]]],[[[82.20036,44.984291],[82.133767,45.037165],[82.058936,45.041274],[81.940397,45.010238],[81.993946,44.961169],[82.045892,44.972802],[82.063971,44.933638],[82.130564,44.925121],[82.200589,44.91788],[82.211115,44.94329],[82.20036,44.984291]]],[[[82.23583,44.6817],[82.239263,44.724028],[82.192579,44.752229],[82.172213,44.713627],[82.126216,44.680702],[82.084338,44.666444],[82.080905,44.64405],[82.128962,44.637773],[82.156651,44.669581],[82.19235,44.662308],[82.23583,44.6817]]],[[[82.393959,44.669724],[82.347276,44.691252],[82.358947,44.66844],[82.393959,44.669724]]],[[[82.454144,45.068895],[82.295786,45.106693],[82.272902,45.091407],[82.287319,45.050624],[82.275191,45.03008],[82.438812,45.006977],[82.454144,45.068895]]]]}},{"type":"Feature","properties":{"adcode":659008,"name":"可克达拉市","center":[80.63579,43.6832],"centroid":[80.603017,43.96732],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":21,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[80.440804,44.083854],[80.458654,44.047259],[80.454763,43.985688],[80.484741,43.957837],[80.475359,43.939215],[80.512202,43.904119],[80.522042,43.816652],[80.587491,43.725724],[80.624792,43.754407],[80.576735,43.783945],[80.660949,43.778734],[80.672391,43.844713],[80.71999,43.890971],[80.736237,43.921164],[80.725482,43.969816],[80.741729,44.016842],[80.679256,44.062534],[80.699394,44.067577],[80.673764,44.100272],[80.701911,44.133093],[80.637607,44.180852],[80.566895,44.17323],[80.553851,44.101424],[80.586347,44.017707],[80.531196,44.029674],[80.521356,44.07017],[80.440804,44.083854]]],[[[80.739899,43.888659],[80.764156,43.854257],[80.862328,43.867702],[81.039909,43.849052],[81.125953,43.870593],[81.072175,43.895595],[81.014508,43.873773],[80.985674,43.893139],[80.917021,43.889382],[80.873771,43.91452],[80.793905,43.906431],[80.739899,43.888659]]],[[[80.9351,43.929685],[80.978122,43.908742],[81.071031,43.907731],[81.082931,43.930984],[81.05547,43.944124],[81.057987,43.95062],[81.076295,43.96058],[81.079269,43.96592],[80.987047,43.990016],[80.9351,43.929685]]],[[[80.624792,43.754407],[80.587491,43.725724],[80.632344,43.663384],[80.707632,43.673827],[80.782463,43.696882],[80.756833,43.784959],[80.775369,43.80334],[80.727084,43.811443],[80.672391,43.844713],[80.660949,43.778734],[80.669873,43.753683],[80.624792,43.754407]]],[[[81.05547,43.944124],[81.082931,43.930984],[81.076295,43.96058],[81.057987,43.95062],[81.05547,43.944124]]]]}},{"type":"Feature","properties":{"adcode":659009,"name":"昆玉市","center":[79.287372,37.207994],"centroid":[79.593726,37.372468],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":22,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[79.618122,37.392438],[79.572354,37.38256],[79.580363,37.340008],[79.610341,37.373797],[79.618122,37.392438]]],[[[79.694326,37.517546],[79.699131,37.561269],[79.661601,37.554116],[79.632768,37.474275],[79.643294,37.424292],[79.686774,37.447537],[79.694326,37.517546]]],[[[78.543028,37.574301],[78.54463,37.791066],[78.350344,37.731146],[78.350344,37.68546],[78.359956,37.653876],[78.330664,37.603537],[78.414191,37.621167],[78.441881,37.642128],[78.491081,37.616879],[78.488793,37.568739],[78.521746,37.555706],[78.543028,37.574301]]],[[[79.367083,37.325021],[79.36571,37.354354],[79.33825,37.371406],[79.370974,37.385428],[79.377152,37.416489],[79.249917,37.414896],[79.256325,37.236316],[79.211243,37.231367],[79.197513,37.206299],[79.251061,37.197036],[79.254494,37.214283],[79.374406,37.174033],[79.367083,37.325021]]],[[[81.047461,36.250771],[81.049978,36.315101],[81.033959,36.280033],[81.03373,36.275992],[81.031671,36.259341],[81.047461,36.250771]]],[[[79.783116,37.580499],[79.783802,37.537265],[79.818586,37.537742],[79.818128,37.574937],[79.783116,37.580499]]]]}},{"type":"Feature","properties":{"adcode":659010,"name":"胡杨河市","center":[84.8275959,44.69288853],"centroid":[84.786397,44.84257],"childrenNum":0,"level":"city","parent":{"adcode":650000},"subFeatureIndex":23,"acroutes":[100000,650000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[84.853768,44.552104],[85.010295,44.574819],[85.06842,44.626358],[85.018304,44.61965],[85.025398,44.68669],[85.052859,44.698093],[85.04668,44.740266],[85.010295,44.755219],[84.954,44.799911],[84.898163,44.802899],[84.84942,44.826511],[84.917156,44.836891],[84.917156,44.888481],[84.861548,44.899419],[84.805253,45.025687],[84.706394,45.067196],[84.657422,45.063514],[84.661541,45.102872],[84.65582,45.152244],[84.541171,45.152668],[84.540256,45.094804],[84.558334,45.084187],[84.538654,45.055582],[84.544604,45.009954],[84.516456,44.988829],[84.528127,44.97039],[84.558334,44.991239],[84.610052,44.995351],[84.635682,44.930231],[84.634996,44.867453],[84.648726,44.866316],[84.652388,44.791231],[84.626071,44.791658],[84.677331,44.739839],[84.708454,44.733857],[84.782598,44.669153],[84.80205,44.683411],[84.8453,44.663164],[84.880084,44.626929],[84.853768,44.552104]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/710000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/710000.json new file mode 100644 index 0000000..8abdb85 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/710000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":710000,"name":"台湾省","center":[121.509062,25.044332],"centroid":[120.971485,23.749452],"childrenNum":0,"level":"province","acroutes":[100000],"parent":{"adcode":100000}},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.443558,22.441245],[120.517584,22.408536],[120.569903,22.361728],[120.640505,22.241347],[120.659209,22.15432],[120.662001,22.066983],[120.651464,22.033165],[120.667691,21.983168],[120.70157,21.927065],[120.743246,21.915569],[120.78155,21.923957],[120.85468,21.883333],[120.87291,21.897387],[120.866482,21.98436],[120.907315,22.033208],[120.904154,22.119757],[120.914955,22.302718],[120.981658,22.528305],[121.015009,22.584168],[121.033292,22.650725],[121.078498,22.669656],[121.170544,22.723133],[121.210481,22.770665],[121.237931,22.836327],[121.324708,22.945666],[121.354687,23.01006],[121.370388,23.084347],[121.409535,23.102669],[121.430294,23.137196],[121.415015,23.195973],[121.440358,23.272096],[121.479558,23.3223],[121.497788,23.419789],[121.521497,23.483198],[121.523078,23.538708],[121.587778,23.76102],[121.621604,23.92075],[121.659381,24.006893],[121.639992,24.064276],[121.643838,24.097713],[121.678085,24.133906],[121.689044,24.174401],[121.809172,24.339055],[121.826717,24.423579],[121.867498,24.478978],[121.885464,24.529677],[121.892524,24.617912],[121.862598,24.671515],[121.837993,24.76015],[121.845053,24.836269],[121.932883,24.938645],[122.012178,25.001469],[121.980776,25.03079],[121.947425,25.031955],[121.917077,25.137908],[121.842155,25.135332],[121.782407,25.160425],[121.750531,25.160716],[121.707327,25.191493],[121.700319,25.226913],[121.655324,25.241859],[121.623026,25.294694],[121.584986,25.308926],[121.535038,25.307515],[121.444415,25.270624],[121.413487,25.238912],[121.371864,25.159885],[121.319281,25.140691],[121.209322,25.127104],[121.133135,25.078728],[121.102102,25.075153],[121.024704,25.040479],[121.009688,24.993649],[120.960899,24.940227],[120.908475,24.852012],[120.892299,24.767526],[120.823753,24.688321],[120.762371,24.658335],[120.688661,24.600678],[120.64277,24.490172],[120.589187,24.432354],[120.546299,24.370413],[120.521009,24.312038],[120.470534,24.24259],[120.451461,24.182691],[120.392029,24.11824],[120.316158,23.984881],[120.278276,23.927798],[120.245768,23.840553],[120.175377,23.807385],[120.102773,23.700981],[120.094817,23.587466],[120.121741,23.504664],[120.107831,23.341264],[120.081434,23.29191],[120.018947,23.073115],[120.029537,23.048623],[120.131382,23.002118],[120.149138,22.896715],[120.200403,22.721101],[120.274272,22.560181],[120.297191,22.531315],[120.443558,22.441245]]],[[[124.542984,25.903911],[124.586346,25.913777],[124.572805,25.93974],[124.541825,25.931031],[124.542984,25.903911]]],[[[123.445286,25.725966],[123.472104,25.713024],[123.508933,25.723237],[123.514834,25.751226],[123.483063,25.768587],[123.444496,25.746514],[123.445286,25.725966]]],[[[119.64597,23.55091],[119.701081,23.550657],[119.678057,23.600041],[119.610089,23.603953],[119.594388,23.577245],[119.566306,23.584732],[119.562565,23.530377],[119.573788,23.505885],[119.609141,23.503864],[119.64597,23.55091]]],[[[123.667207,25.914066],[123.707092,25.916873],[123.678008,25.938667],[123.667207,25.914066]]],[[[119.506031,23.625567],[119.505241,23.575814],[119.472416,23.557136],[119.523207,23.563699],[119.525578,23.624895],[119.506031,23.625567]]],[[[119.49739,23.386683],[119.495125,23.350156],[119.516885,23.349903],[119.49739,23.386683]]],[[[119.557454,23.666474],[119.604083,23.616989],[119.615516,23.660925],[119.586485,23.675974],[119.557454,23.666474]]],[[[121.46823,22.676644],[121.476502,22.64166],[121.513541,22.631833],[121.5147,22.67639],[121.46823,22.676644]]],[[[121.510538,22.087185],[121.507693,22.048523],[121.534089,22.022146],[121.594522,21.995382],[121.604586,22.022699],[121.575028,22.037122],[121.575607,22.084421],[121.510538,22.087185]]],[[[122.097533,25.500168],[122.093581,25.47183],[122.124825,25.475932],[122.097533,25.500168]]],[[[119.421467,23.216684],[119.421309,23.18935],[119.453396,23.217697],[119.421467,23.216684]]],[[[120.355042,22.327259],[120.395454,22.342287],[120.383072,22.355573],[120.355042,22.327259]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/810000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/810000.json new file mode 100644 index 0000000..66928b7 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/810000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":810001,"name":"中西区","center":[114.1543731,22.28198083],"centroid":[114.152342,22.274164],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":0,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.172841,22.252307],[114.173394,22.254814],[114.173783,22.259053],[114.173947,22.264623],[114.173674,22.271928],[114.172945,22.287709],[114.156253,22.293144],[114.154437,22.293107],[114.143819,22.292886],[114.142052,22.2918],[114.138905,22.290416],[114.136075,22.289245],[114.134587,22.287803],[114.13093,22.284631],[114.129223,22.283725],[114.126824,22.282765],[114.123842,22.281324],[114.121971,22.27967],[114.12089,22.277698],[114.120622,22.274893],[114.12041,22.27388],[114.120452,22.272255],[114.121728,22.269217],[114.122487,22.268343],[114.128294,22.267821],[114.129946,22.267902],[114.132011,22.268846],[114.13356,22.269319],[114.135322,22.26965],[114.136931,22.269732],[114.138717,22.269646],[114.140351,22.269282],[114.142216,22.268221],[114.144135,22.266436],[114.146225,22.264174],[114.15341,22.255574],[114.154285,22.253761],[114.154674,22.252478],[114.154905,22.250861],[114.155907,22.250302],[114.158458,22.250412],[114.160851,22.250849],[114.162461,22.251323],[114.163463,22.251768],[114.164356,22.252405],[114.164933,22.252462],[114.165941,22.25207],[114.167186,22.251935],[114.170649,22.252511],[114.172841,22.252307]]],[[[114.116352,22.28007],[114.118065,22.280683],[114.119377,22.280691],[114.120531,22.28143],[114.12058,22.28201],[114.120215,22.282659],[114.118782,22.283623],[114.11781,22.283741],[114.116923,22.283549],[114.116152,22.282912],[114.115787,22.282144],[114.115739,22.281009],[114.115969,22.280295],[114.116352,22.28007]]],[[[114.12211,22.281953],[114.122772,22.282402],[114.122451,22.283623],[114.122025,22.283827],[114.121078,22.283394],[114.121078,22.282835],[114.12211,22.281953]]]]}},{"type":"Feature","properties":{"adcode":810002,"name":"湾仔区","center":[114.1829153,22.27638889],"centroid":[114.189433,22.266406],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":1,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.186277,22.286391],[114.181886,22.284798],[114.172945,22.287709],[114.173674,22.271928],[114.173947,22.264623],[114.173783,22.259053],[114.173394,22.254814],[114.172841,22.252307],[114.17942,22.251298],[114.184048,22.250902],[114.186848,22.250996],[114.19161,22.250698],[114.193341,22.250694],[114.200163,22.251421],[114.203704,22.252058],[114.204494,22.252295],[114.204743,22.256558],[114.205283,22.261242],[114.208314,22.261614],[114.210713,22.262104],[114.212511,22.262778],[114.214479,22.264027],[114.216326,22.265812],[114.214826,22.268895],[114.213866,22.270454],[114.212663,22.271708],[114.211406,22.269821],[114.210531,22.268858],[114.209723,22.268409],[114.207743,22.268176],[114.206553,22.268421],[114.205344,22.269205],[114.204281,22.270622],[114.202106,22.275411],[114.200867,22.276849],[114.199725,22.277261],[114.198158,22.277008],[114.195644,22.275808],[114.194969,22.27582],[114.19404,22.276922],[114.193427,22.27731],[114.192449,22.277147],[114.192023,22.277784],[114.191137,22.280225],[114.190736,22.28054],[114.189065,22.279568],[114.187966,22.27927],[114.187498,22.279486],[114.187037,22.28065],[114.186277,22.286391]]]]}},{"type":"Feature","properties":{"adcode":810003,"name":"东区","center":[114.2260031,22.27969306],"centroid":[114.227107,22.270314],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":2,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.204494,22.252295],[114.207154,22.253095],[114.209638,22.253434],[114.210835,22.253287],[114.213119,22.252564],[114.214461,22.252511],[114.216022,22.253058],[114.217225,22.253303],[114.2185,22.253365],[114.219539,22.253115],[114.224295,22.251261],[114.225929,22.25089],[114.232416,22.250432],[114.233886,22.250012],[114.236225,22.249105],[114.236844,22.249003],[114.238089,22.249289],[114.239474,22.249955],[114.240434,22.250204],[114.242627,22.250077],[114.24632,22.249195],[114.248166,22.248946],[114.249339,22.248497],[114.249806,22.248084],[114.25418,22.242223],[114.255686,22.240831],[114.255577,22.242219],[114.256858,22.243902],[114.25763,22.244462],[114.259665,22.245344],[114.260807,22.246361],[114.261615,22.248203],[114.261912,22.250008],[114.261821,22.251155],[114.262094,22.253267],[114.261936,22.254545],[114.261536,22.255615],[114.261505,22.257003],[114.26255,22.257644],[114.263084,22.258661],[114.262763,22.259486],[114.261372,22.260797],[114.255844,22.265562],[114.254058,22.267216],[114.251866,22.270022],[114.249521,22.272696],[114.24861,22.274632],[114.24847,22.275836],[114.248689,22.277355],[114.249497,22.279809],[114.225036,22.291666],[114.215555,22.296271],[114.1967,22.289906],[114.186277,22.286391],[114.187037,22.28065],[114.187498,22.279486],[114.187966,22.27927],[114.189065,22.279568],[114.190736,22.28054],[114.191137,22.280225],[114.192023,22.277784],[114.192449,22.277147],[114.193427,22.27731],[114.19404,22.276922],[114.194969,22.27582],[114.195644,22.275808],[114.198158,22.277008],[114.199725,22.277261],[114.200867,22.276849],[114.202106,22.275411],[114.204281,22.270622],[114.205344,22.269205],[114.206553,22.268421],[114.207743,22.268176],[114.209723,22.268409],[114.210531,22.268858],[114.211406,22.269821],[114.212663,22.271708],[114.213866,22.270454],[114.214826,22.268895],[114.216326,22.265812],[114.214479,22.264027],[114.212511,22.262778],[114.210713,22.262104],[114.208314,22.261614],[114.205283,22.261242],[114.204743,22.256558],[114.204494,22.252295]]]]}},{"type":"Feature","properties":{"adcode":810004,"name":"南区","center":[114.1600117,22.24589667],"centroid":[114.206983,22.23293],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":3,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.122487,22.268343],[114.123829,22.266796],[114.128033,22.26241],[114.137211,22.248415],[114.138535,22.246524],[114.139774,22.245442],[114.142082,22.244245],[114.144846,22.24313],[114.146346,22.242354],[114.147385,22.241354],[114.149966,22.238082],[114.151436,22.236624],[114.153532,22.235137],[114.155469,22.234169],[114.157498,22.232834],[114.161574,22.231049],[114.162351,22.230591],[114.162941,22.22986],[114.16503,22.226727],[114.166093,22.225972],[114.167296,22.225996],[114.170205,22.227548],[114.170819,22.227785],[114.171809,22.227732],[114.17405,22.227005],[114.175836,22.226229],[114.177081,22.225825],[114.178308,22.225637],[114.179322,22.225792],[114.180039,22.226327],[114.180628,22.227209],[114.181029,22.228328],[114.1814,22.230371],[114.182281,22.233679],[114.184334,22.238352],[114.184886,22.239258],[114.18598,22.239552],[114.18745,22.239524],[114.188786,22.239119],[114.189478,22.238466],[114.193633,22.234043],[114.194672,22.233181],[114.19534,22.233017],[114.196877,22.233038],[114.199701,22.232842],[114.20043,22.232107],[114.201341,22.229762],[114.201141,22.227945],[114.200315,22.226666],[114.200315,22.225857],[114.20077,22.223786],[114.200369,22.222651],[114.199337,22.222414],[114.197982,22.222728],[114.196391,22.222569],[114.195486,22.221683],[114.19571,22.220952],[114.196488,22.220049],[114.198966,22.218636],[114.201815,22.217214],[114.202993,22.216168],[114.203339,22.215155],[114.203285,22.214301],[114.201529,22.211801],[114.200916,22.210527],[114.201001,22.208987],[114.201353,22.207757],[114.201882,22.207226],[114.202714,22.206916],[114.204202,22.20683],[114.207276,22.207308],[114.209912,22.209195],[114.211011,22.209853],[114.211928,22.209939],[114.212633,22.209673],[114.215318,22.193418],[114.216059,22.192147],[114.217638,22.190954],[114.219266,22.190688],[114.222904,22.191081],[114.225723,22.191693],[114.227429,22.192261],[114.228529,22.192792],[114.229403,22.193622],[114.229804,22.194594],[114.229628,22.196261],[114.22763,22.19977],[114.225917,22.202205],[114.225401,22.204179],[114.225261,22.205723],[114.225765,22.207222],[114.226682,22.208227],[114.229804,22.210294],[114.235168,22.213064],[114.238296,22.213868],[114.240264,22.213149],[114.244741,22.206916],[114.245439,22.205024],[114.246933,22.203925],[114.249485,22.203133],[114.252339,22.202769],[114.259574,22.202344],[114.260302,22.202344],[114.261116,22.203235],[114.262283,22.203292],[114.262635,22.202912],[114.262878,22.20194],[114.264269,22.201621],[114.264676,22.20091],[114.265611,22.200792],[114.266012,22.201115],[114.266024,22.202169],[114.265362,22.202998],[114.265526,22.203553],[114.266401,22.204722],[114.266613,22.2058],[114.266231,22.206605],[114.265107,22.207165],[114.264609,22.208713],[114.264093,22.208954],[114.262513,22.209142],[114.261615,22.210127],[114.261372,22.212373],[114.260946,22.213145],[114.260752,22.214698],[114.260892,22.216953],[114.26057,22.218766],[114.259981,22.220425],[114.258839,22.222508],[114.257976,22.223443],[114.257855,22.224383],[114.258213,22.224738],[114.259446,22.224852],[114.261153,22.224632],[114.261584,22.224893],[114.261602,22.225792],[114.262343,22.2262],[114.263765,22.225959],[114.264688,22.2262],[114.265423,22.227303],[114.26518,22.228508],[114.264038,22.228753],[114.262343,22.228365],[114.260983,22.228324],[114.260242,22.228541],[114.259798,22.229039],[114.259768,22.229627],[114.260327,22.231923],[114.260381,22.232993],[114.259288,22.234966],[114.257551,22.237024],[114.256731,22.239254],[114.255686,22.240831],[114.25418,22.242223],[114.249806,22.248084],[114.249339,22.248497],[114.248166,22.248946],[114.24632,22.249195],[114.242627,22.250077],[114.240434,22.250204],[114.239474,22.249955],[114.238089,22.249289],[114.236844,22.249003],[114.236225,22.249105],[114.233886,22.250012],[114.232416,22.250432],[114.225929,22.25089],[114.224295,22.251261],[114.219539,22.253115],[114.2185,22.253365],[114.217225,22.253303],[114.216022,22.253058],[114.214461,22.252511],[114.213119,22.252564],[114.210835,22.253287],[114.209638,22.253434],[114.207154,22.253095],[114.204494,22.252295],[114.203704,22.252058],[114.200163,22.251421],[114.193341,22.250694],[114.19161,22.250698],[114.186848,22.250996],[114.184048,22.250902],[114.17942,22.251298],[114.172841,22.252307],[114.170649,22.252511],[114.167186,22.251935],[114.165941,22.25207],[114.164933,22.252462],[114.164356,22.252405],[114.163463,22.251768],[114.162461,22.251323],[114.160851,22.250849],[114.158458,22.250412],[114.155907,22.250302],[114.154905,22.250861],[114.154674,22.252478],[114.154285,22.253761],[114.15341,22.255574],[114.146225,22.264174],[114.144135,22.266436],[114.142216,22.268221],[114.140351,22.269282],[114.138717,22.269646],[114.136931,22.269732],[114.135322,22.26965],[114.13356,22.269319],[114.132011,22.268846],[114.129946,22.267902],[114.128294,22.267821],[114.122487,22.268343]]],[[[114.189399,22.229141],[114.190517,22.229456],[114.19127,22.230559],[114.192357,22.230301],[114.19322,22.230461],[114.194629,22.231637],[114.194696,22.232891],[114.193433,22.23363],[114.191556,22.233083],[114.190189,22.233218],[114.189017,22.233745],[114.18765,22.233773],[114.186745,22.232593],[114.186672,22.231576],[114.187662,22.230673],[114.188379,22.229378],[114.189399,22.229141]]],[[[114.144336,22.24012],[114.146067,22.240631],[114.146431,22.241235],[114.145502,22.241309],[114.142653,22.24088],[114.142744,22.240516],[114.144336,22.24012]]],[[[114.18991,22.210658],[114.190578,22.210703],[114.191908,22.211528],[114.193044,22.212002],[114.193408,22.212414],[114.193068,22.213799],[114.192576,22.214195],[114.19107,22.214575],[114.190049,22.21502],[114.189278,22.21509],[114.188106,22.214571],[114.188021,22.213877],[114.188634,22.212136],[114.189369,22.210968],[114.18991,22.210658]]],[[[114.228565,22.203292],[114.228814,22.203946],[114.22763,22.204865],[114.226579,22.204991],[114.226379,22.20426],[114.227636,22.203431],[114.228565,22.203292]]],[[[114.2634,22.222038],[114.264032,22.222161],[114.264366,22.222753],[114.263838,22.223815],[114.261906,22.224142],[114.260381,22.223995],[114.260096,22.223729],[114.260217,22.222978],[114.260709,22.22263],[114.2621,22.222222],[114.2634,22.222038]]]]}},{"type":"Feature","properties":{"adcode":810005,"name":"油尖旺区","center":[114.1733317,22.31170389],"centroid":[114.172222,22.303469],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":4,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.154358,22.311514],[114.154437,22.293107],[114.156253,22.293144],[114.172945,22.287709],[114.181886,22.284798],[114.186277,22.286391],[114.1967,22.289906],[114.19387,22.297618],[114.193311,22.298957],[114.192564,22.300215],[114.191033,22.301566],[114.187024,22.304334],[114.186053,22.305199],[114.182912,22.308665],[114.181303,22.310812],[114.179602,22.313649],[114.178114,22.316825],[114.177889,22.317576],[114.177798,22.319221],[114.178326,22.321372],[114.179456,22.323781],[114.178812,22.323924],[114.175089,22.323822],[114.168717,22.323524],[114.167599,22.323217],[114.166318,22.32243],[114.164046,22.322299],[114.163026,22.32187],[114.16079,22.323409],[114.1581,22.320899],[114.157219,22.320405],[114.156125,22.320119],[114.154188,22.319874],[114.154358,22.311514]]]]}},{"type":"Feature","properties":{"adcode":810006,"name":"深水埗区","center":[114.1632417,22.33385417],"centroid":[114.156935,22.328966],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":5,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.154358,22.311514],[114.154188,22.319874],[114.156125,22.320119],[114.157219,22.320405],[114.1581,22.320899],[114.16079,22.323409],[114.163026,22.32187],[114.164046,22.322299],[114.166318,22.32243],[114.167599,22.323217],[114.168717,22.323524],[114.175089,22.323822],[114.178812,22.323924],[114.179456,22.323781],[114.181278,22.326826],[114.181734,22.328091],[114.181989,22.329887],[114.181789,22.331581],[114.181527,22.332626],[114.178982,22.338878],[114.178758,22.339923],[114.179165,22.340911],[114.179098,22.341552],[114.177822,22.344392],[114.17668,22.34416],[114.172896,22.344278],[114.170728,22.344184],[114.166864,22.343437],[114.16172,22.343698],[114.15991,22.343731],[114.157522,22.3434],[114.153732,22.342266],[114.152414,22.341658],[114.151703,22.340621],[114.151527,22.33994],[114.151442,22.337948],[114.150774,22.337511],[114.150124,22.337678],[114.149389,22.338348],[114.148436,22.338617],[114.145927,22.338478],[114.142932,22.339042],[114.14139,22.338862],[114.139555,22.337568],[114.138444,22.337132],[114.136336,22.337336],[114.135419,22.336862],[114.13503,22.335303],[114.13548,22.333364],[114.136087,22.33225],[114.136755,22.331466],[114.137733,22.330964],[114.139373,22.330515],[114.14538,22.329005],[114.146413,22.328303],[114.146413,22.327858],[114.14572,22.32683],[114.137697,22.322323],[114.132467,22.319523],[114.131562,22.318458],[114.131622,22.317617],[114.132102,22.316817],[114.133469,22.315131],[114.133754,22.313858],[114.133797,22.31191],[114.134004,22.311376],[114.135358,22.310923],[114.154358,22.311514]]]]}},{"type":"Feature","properties":{"adcode":810007,"name":"九龙城区","center":[114.1928467,22.31251],"centroid":[114.197767,22.314545],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":6,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.184315,22.345976],[114.183544,22.345874],[114.1816,22.346155],[114.180076,22.345882],[114.177822,22.344392],[114.179098,22.341552],[114.179165,22.340911],[114.178758,22.339923],[114.178982,22.338878],[114.181527,22.332626],[114.181789,22.331581],[114.181989,22.329887],[114.181734,22.328091],[114.181278,22.326826],[114.179456,22.323781],[114.178326,22.321372],[114.177798,22.319221],[114.177889,22.317576],[114.178114,22.316825],[114.179602,22.313649],[114.181303,22.310812],[114.182912,22.308665],[114.186053,22.305199],[114.187024,22.304334],[114.191033,22.301566],[114.192564,22.300215],[114.193311,22.298957],[114.19387,22.297618],[114.1967,22.289906],[114.215555,22.296271],[114.225036,22.291666],[114.223578,22.300492],[114.212924,22.309886],[114.21516,22.312784],[114.210543,22.317527],[114.208964,22.318642],[114.207288,22.319197],[114.206504,22.319927],[114.20637,22.321393],[114.207045,22.322936],[114.209505,22.32543],[114.208168,22.332217],[114.208193,22.332524],[114.206674,22.332258],[114.202902,22.330907],[114.201712,22.330307],[114.199501,22.328356],[114.198996,22.328152],[114.198334,22.328483],[114.197114,22.330483],[114.196737,22.330707],[114.195121,22.330875],[114.194575,22.331115],[114.193639,22.332699],[114.191647,22.334866],[114.190037,22.336221],[114.189849,22.338074],[114.189582,22.338621],[114.187018,22.339866],[114.186757,22.340197],[114.186271,22.343298],[114.18584,22.344029],[114.184315,22.345976]]]]}},{"type":"Feature","properties":{"adcode":810008,"name":"黄大仙区","center":[114.2038856,22.33632056],"centroid":[114.20974,22.341657],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":7,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.208193,22.332524],[114.209341,22.33225],[114.211315,22.331107],[114.212542,22.331062],[114.215038,22.331817],[114.215992,22.331801],[114.216994,22.331283],[114.217638,22.330458],[114.218579,22.329662],[114.219484,22.329675],[114.223925,22.330589],[114.229215,22.330813],[114.232325,22.331307],[114.231542,22.331605],[114.230637,22.332989],[114.227648,22.345249],[114.22712,22.348261],[114.227089,22.350436],[114.227429,22.352693],[114.228322,22.354566],[114.225662,22.354611],[114.222485,22.35428],[114.218592,22.35353],[114.216727,22.353309],[114.212493,22.353142],[114.211357,22.353366],[114.209134,22.354317],[114.208545,22.354178],[114.206128,22.352203],[114.205295,22.352318],[114.203461,22.353326],[114.202264,22.353591],[114.201068,22.353387],[114.201001,22.352815],[114.201778,22.351518],[114.201633,22.350571],[114.200758,22.350208],[114.190827,22.348437],[114.187772,22.347359],[114.184801,22.346041],[114.184315,22.345976],[114.18584,22.344029],[114.186271,22.343298],[114.186757,22.340197],[114.187018,22.339866],[114.189582,22.338621],[114.189849,22.338074],[114.190037,22.336221],[114.191647,22.334866],[114.193639,22.332699],[114.194575,22.331115],[114.195121,22.330875],[114.196737,22.330707],[114.197114,22.330483],[114.198334,22.328483],[114.198996,22.328152],[114.199501,22.328356],[114.201712,22.330307],[114.202902,22.330907],[114.206674,22.332258],[114.208193,22.332524]]]]}},{"type":"Feature","properties":{"adcode":810009,"name":"观塘区","center":[114.2140542,22.32083778],"centroid":[114.230773,22.309542],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":8,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.208193,22.332524],[114.208168,22.332217],[114.209505,22.32543],[114.207045,22.322936],[114.20637,22.321393],[114.206504,22.319927],[114.207288,22.319197],[114.208964,22.318642],[114.210543,22.317527],[114.21516,22.312784],[114.212924,22.309886],[114.223578,22.300492],[114.225036,22.291666],[114.249497,22.279809],[114.2498,22.280907],[114.249582,22.281924],[114.24915,22.282557],[114.248501,22.28299],[114.246715,22.283729],[114.246217,22.284313],[114.245846,22.285791],[114.246174,22.287473],[114.249254,22.294168],[114.250244,22.294948],[114.252005,22.295397],[114.252661,22.296014],[114.252831,22.29663],[114.252661,22.297532],[114.251513,22.299668],[114.249916,22.301599],[114.248355,22.303076],[114.245154,22.305705],[114.24485,22.306452],[114.244911,22.308359],[114.245214,22.309449],[114.246757,22.311637],[114.248683,22.315045],[114.248999,22.315772],[114.24909,22.316715],[114.248816,22.317103],[114.24813,22.317033],[114.24629,22.315923],[114.245409,22.315715],[114.244886,22.316482],[114.244929,22.320825],[114.244747,22.32116],[114.244176,22.32083],[114.243817,22.318642],[114.243101,22.318417],[114.241376,22.319797],[114.23897,22.320078],[114.238442,22.320691],[114.234949,22.33145],[114.232325,22.331307],[114.229215,22.330813],[114.223925,22.330589],[114.219484,22.329675],[114.218579,22.329662],[114.217638,22.330458],[114.216994,22.331283],[114.215992,22.331801],[114.215038,22.331817],[114.212542,22.331062],[114.211315,22.331107],[114.209341,22.33225],[114.208193,22.332524]]]]}},{"type":"Feature","properties":{"adcode":810010,"name":"荃湾区","center":[114.1210792,22.36830667],"centroid":[114.086798,22.365421],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":9,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.149322,22.374512],[114.154036,22.375336],[114.156617,22.376226],[114.158172,22.377115],[114.163153,22.381065],[114.164453,22.38277],[114.165218,22.384774],[114.16551,22.386446],[114.165978,22.387197],[114.166779,22.387336],[114.172562,22.387964],[114.173406,22.388103],[114.174184,22.388923],[114.173734,22.392464],[114.17357,22.395532],[114.17368,22.397792],[114.173977,22.399648],[114.173746,22.40135],[114.173358,22.402912],[114.172106,22.407028],[114.172003,22.408338],[114.172167,22.409786],[114.172902,22.412041],[114.168261,22.411629],[114.163615,22.411287],[114.161598,22.411238],[114.157073,22.411266],[114.153993,22.410924],[114.153368,22.411148],[114.152669,22.414766],[114.152317,22.415211],[114.151564,22.415435],[114.150756,22.415378],[114.148193,22.414607],[114.146917,22.414579],[114.144579,22.415223],[114.141323,22.415537],[114.130183,22.414685],[114.12926,22.413808],[114.128677,22.412666],[114.128427,22.411299],[114.127802,22.410757],[114.124048,22.410083],[114.122366,22.409618],[114.121047,22.408917],[114.115945,22.405131],[114.11388,22.404128],[114.112483,22.40374],[114.111323,22.40374],[114.108869,22.40416],[114.107648,22.404103],[114.106087,22.403434],[114.099345,22.396964],[114.098112,22.396242],[114.097055,22.395936],[114.096156,22.396018],[114.095299,22.396381],[114.094242,22.39716],[114.092681,22.39758],[114.091145,22.397523],[114.090033,22.397213],[114.088861,22.396348],[114.085623,22.393586],[114.084651,22.39297],[114.080491,22.39113],[114.079039,22.390122],[114.077982,22.38887],[114.077034,22.388645],[114.076123,22.38907],[114.074872,22.388919],[114.073882,22.388205],[114.072145,22.386018],[114.071258,22.384896],[114.070796,22.383031],[114.071088,22.380747],[114.065791,22.380975],[114.063835,22.380999],[114.062044,22.380836],[114.059116,22.380355],[114.056789,22.380685],[114.05504,22.380514],[114.054093,22.379731],[114.053868,22.379204],[114.053935,22.377976],[114.054943,22.376156],[114.054858,22.375377],[114.054147,22.375222],[114.049361,22.376801],[114.046008,22.377323],[114.044781,22.377266],[114.043718,22.377013],[114.042546,22.375834],[114.041963,22.374581],[114.041118,22.374133],[114.038118,22.37412],[114.037559,22.37399],[114.036939,22.373125],[114.0368,22.371954],[114.037261,22.37077],[114.039551,22.369648],[114.040219,22.366939],[114.041228,22.365547],[114.042108,22.36509],[114.045571,22.364152],[114.045892,22.36358],[114.041385,22.361716],[114.039551,22.360569],[114.03714,22.358239],[114.036271,22.357627],[114.033532,22.356113],[114.032888,22.355611],[114.032189,22.354048],[114.031637,22.349473],[114.025951,22.34782],[114.026164,22.347388],[114.026316,22.345147],[114.025647,22.343045],[114.022708,22.337862],[114.018802,22.334789],[114.015753,22.332062],[113.986008,22.315523],[114.060744,22.312539],[114.060659,22.31338],[114.061084,22.314596],[114.063477,22.317495],[114.068124,22.324879],[114.070061,22.327075],[114.074799,22.329189],[114.07834,22.329613],[114.081292,22.329654],[114.08261,22.329377],[114.07848,22.358067],[114.088302,22.362532],[114.114998,22.36407],[114.115119,22.357239],[114.118065,22.357802],[114.119201,22.358198],[114.120829,22.359165],[114.124668,22.360977],[114.125251,22.361463],[114.12618,22.362626],[114.126399,22.36376],[114.128233,22.36698],[114.128579,22.368134],[114.1283,22.369934],[114.127607,22.371146],[114.126599,22.372023],[114.126453,22.372696],[114.1268,22.373137],[114.132722,22.375316],[114.135528,22.376442],[114.138966,22.377919],[114.14125,22.378486],[114.14309,22.378453],[114.143564,22.377931],[114.143886,22.374863],[114.144068,22.374263],[114.144785,22.373704],[114.145848,22.373712],[114.149322,22.374512]]]]}},{"type":"Feature","properties":{"adcode":810011,"name":"屯门区","center":[113.9765742,22.39384417],"centroid":[113.979886,22.388499],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":10,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.072145,22.386018],[114.071908,22.390424],[114.062475,22.390453],[114.062262,22.390649],[114.062159,22.396829],[114.062293,22.39707],[114.064637,22.39716],[114.064759,22.399632],[114.0644,22.400089],[114.057573,22.400056],[114.057275,22.39993],[114.057215,22.396348],[114.056935,22.39612],[114.014258,22.396385],[114.013754,22.39676],[114.013803,22.406392],[114.013426,22.406726],[114.0083,22.406902],[114.00796,22.40711],[114.008391,22.414673],[114.008008,22.414962],[113.998776,22.415676],[113.996431,22.415758],[113.996048,22.415872],[113.991499,22.41898],[113.990187,22.419661],[113.991967,22.422598],[113.99255,22.423883],[113.992714,22.425135],[113.991602,22.425302],[113.986737,22.423809],[113.985425,22.423638],[113.980031,22.424792],[113.977796,22.425123],[113.972548,22.425372],[113.971539,22.425596],[113.970367,22.426147],[113.969644,22.42693],[113.968915,22.42737],[113.967798,22.427648],[113.957575,22.427733],[113.955789,22.427648],[113.954805,22.427281],[113.954277,22.426669],[113.953104,22.423797],[113.951853,22.42148],[113.950086,22.419021],[113.948421,22.416871],[113.945396,22.414057],[113.944655,22.413783],[113.943398,22.414203],[113.943143,22.414766],[113.942025,22.418894],[113.941582,22.419706],[113.940543,22.420342],[113.931043,22.422198],[113.930029,22.421892],[113.921361,22.419641],[113.918324,22.418229],[113.910009,22.40875],[113.906012,22.404397],[113.905222,22.402724],[113.905392,22.402019],[113.912116,22.40002],[113.914236,22.398963],[113.915639,22.39747],[113.91669,22.395312],[113.917966,22.390257],[113.918895,22.388188],[113.919946,22.38643],[113.920833,22.38091],[113.920602,22.377699],[113.919508,22.375585],[113.91819,22.3733],[113.918275,22.371452],[113.920037,22.367869],[113.923815,22.365233],[113.93077,22.361018],[113.941393,22.355272],[113.943532,22.354982],[113.947625,22.354799],[113.951908,22.355068],[113.957065,22.352587],[113.959257,22.35326],[113.956403,22.35939],[113.958705,22.361373],[113.96043,22.36265],[113.967743,22.365482],[113.970203,22.366196],[113.974224,22.36638],[113.979928,22.366086],[113.985176,22.364499],[113.988091,22.363172],[113.999839,22.358096],[114.002268,22.357533],[114.016245,22.35566],[114.018759,22.354827],[114.020916,22.353628],[114.023224,22.351718],[114.024943,22.349873],[114.025951,22.34782],[114.031637,22.349473],[114.032189,22.354048],[114.032888,22.355611],[114.033532,22.356113],[114.036271,22.357627],[114.03714,22.358239],[114.039551,22.360569],[114.041385,22.361716],[114.045892,22.36358],[114.045571,22.364152],[114.042108,22.36509],[114.041228,22.365547],[114.040219,22.366939],[114.039551,22.369648],[114.037261,22.37077],[114.0368,22.371954],[114.036939,22.373125],[114.037559,22.37399],[114.038118,22.37412],[114.041118,22.374133],[114.041963,22.374581],[114.042546,22.375834],[114.043718,22.377013],[114.044781,22.377266],[114.046008,22.377323],[114.049361,22.376801],[114.054147,22.375222],[114.054858,22.375377],[114.054943,22.376156],[114.053935,22.377976],[114.053868,22.379204],[114.054093,22.379731],[114.05504,22.380514],[114.056789,22.380685],[114.059116,22.380355],[114.062044,22.380836],[114.063835,22.380999],[114.065791,22.380975],[114.071088,22.380747],[114.070796,22.383031],[114.071258,22.384896],[114.072145,22.386018]]],[[[113.886666,22.36689],[113.887814,22.367024],[113.888719,22.368098],[113.888555,22.369171],[113.889691,22.370554],[113.889472,22.371027],[113.888433,22.371117],[113.88833,22.372223],[113.889551,22.373329],[113.889016,22.374116],[113.889721,22.374814],[113.890286,22.375785],[113.890341,22.376756],[113.88983,22.377319],[113.888634,22.37778],[113.887036,22.37807],[113.885591,22.37807],[113.884637,22.379196],[113.883525,22.379437],[113.882626,22.379335],[113.882019,22.378996],[113.881673,22.378127],[113.881655,22.377225],[113.88208,22.376556],[113.884279,22.375752],[113.88573,22.374851],[113.886222,22.37359],[113.886277,22.372039],[113.885111,22.367775],[113.885396,22.36718],[113.886666,22.36689]]],[[[113.895121,22.339091],[113.895698,22.339535],[113.89585,22.34027],[113.895668,22.341156],[113.896694,22.342788],[113.89639,22.343388],[113.89571,22.343817],[113.893323,22.34369],[113.893165,22.343368],[113.893779,22.342152],[113.893936,22.341278],[113.893718,22.339952],[113.894441,22.339764],[113.895121,22.339091]]],[[[113.879966,22.352228],[113.880397,22.352383],[113.880349,22.353697],[113.879,22.354346],[113.878648,22.354007],[113.879304,22.352644],[113.879966,22.352228]]],[[[113.971655,22.325752],[113.972286,22.325969],[113.97409,22.328026],[113.974175,22.328618],[113.971715,22.329438],[113.971108,22.330491],[113.971472,22.331062],[113.970829,22.331254],[113.970003,22.330634],[113.969583,22.327426],[113.969924,22.32636],[113.970634,22.325862],[113.971655,22.325752]]],[[[113.985801,22.330728],[113.986409,22.331075],[113.987854,22.333483],[113.989021,22.336046],[113.988863,22.33727],[113.988298,22.337858],[113.987453,22.337687],[113.985765,22.335703],[113.984945,22.333095],[113.984878,22.331536],[113.985157,22.330793],[113.985801,22.330728]]],[[[113.983815,22.323389],[113.984356,22.323915],[113.983967,22.324605],[113.983353,22.324601],[113.98325,22.324071],[113.983815,22.323389]]],[[[113.891701,22.347792],[113.892552,22.348208],[113.893651,22.349612],[113.893493,22.350575],[113.893007,22.350889],[113.892132,22.350954],[113.89124,22.35055],[113.890341,22.349551],[113.890304,22.348526],[113.890796,22.347894],[113.891701,22.347792]]]]}},{"type":"Feature","properties":{"adcode":810012,"name":"元朗区","center":[114.0324381,22.44142833],"centroid":[114.047174,22.445964],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":11,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.12926,22.413808],[114.129667,22.414889],[114.129715,22.416341],[114.129065,22.41805],[114.128203,22.418898],[114.123908,22.422361],[114.121685,22.424315],[114.119796,22.426546],[114.118296,22.42872],[114.115891,22.432681],[114.11501,22.435136],[114.114894,22.436502],[114.115174,22.438117],[114.116006,22.439904],[114.120914,22.447538],[114.129041,22.459597],[114.126478,22.459511],[114.124248,22.460184],[114.12225,22.461803],[114.119936,22.464551],[114.118551,22.465138],[114.116711,22.465024],[114.115149,22.464694],[114.112811,22.463911],[114.111414,22.463581],[114.108012,22.463356],[114.10551,22.462969],[114.10045,22.461737],[114.095062,22.460037],[114.093641,22.459678],[114.092608,22.459788],[114.092274,22.460763],[114.092651,22.472347],[114.092918,22.473852],[114.094534,22.476947],[114.094631,22.477468],[114.094674,22.483605],[114.094394,22.485235],[114.093283,22.486662],[114.090908,22.489149],[114.090604,22.490295],[114.091357,22.493809],[114.091132,22.496455],[114.090968,22.496887],[114.089741,22.498501],[114.089492,22.499353],[114.089492,22.500442],[114.089778,22.501404],[114.091898,22.505264],[114.092098,22.505892],[114.091983,22.506883],[114.090598,22.509818],[114.090094,22.511489],[114.089754,22.513246],[114.089523,22.517008],[114.089389,22.517974],[114.08764,22.515899],[114.086395,22.51486],[114.084293,22.513389],[114.083036,22.5127],[114.081578,22.512427],[114.080296,22.512997],[114.079203,22.514395],[114.078328,22.515035],[114.077004,22.515484],[114.075182,22.514999],[114.073432,22.514656],[114.070948,22.51431],[114.069126,22.51378],[114.066793,22.512268],[114.064601,22.510547],[114.06409,22.509952],[114.062979,22.507824],[114.062633,22.506365],[114.062323,22.502827],[114.061357,22.50162],[114.059978,22.500727],[114.058302,22.500006],[114.057075,22.499623],[114.055951,22.4995],[114.054712,22.49961],[114.053795,22.499888],[114.051584,22.50089],[114.050588,22.501196],[114.048431,22.50151],[114.046014,22.502183],[114.042108,22.502794],[114.03697,22.503365],[114.031873,22.504139],[114.030604,22.503781],[114.029164,22.503059],[114.028757,22.502619],[114.028423,22.501449],[114.028496,22.500756],[114.029055,22.49937],[114.030124,22.497845],[114.032025,22.495591],[114.032724,22.494347],[114.032967,22.493418],[114.032584,22.492138],[114.030124,22.489594],[114.029049,22.48899],[114.026461,22.488073],[114.026206,22.487735],[114.026206,22.486622],[114.027038,22.484979],[114.027184,22.484265],[114.027057,22.483352],[114.026103,22.481362],[114.024985,22.480526],[114.022884,22.480323],[114.021213,22.480559],[114.020576,22.48113],[114.019106,22.483923],[114.016202,22.48729],[114.014319,22.488554],[114.004303,22.490776],[114.000956,22.490943],[113.999802,22.490238],[113.999189,22.487241],[113.998654,22.482222],[113.99654,22.479797],[113.990891,22.475736],[113.985959,22.471144],[113.981634,22.46418],[113.977668,22.456828],[113.975372,22.455323],[113.969116,22.453549],[113.963643,22.451425],[113.961359,22.450275],[113.957739,22.447979],[113.953335,22.443219],[113.948664,22.434895],[113.944752,22.428981],[113.94222,22.426196],[113.940634,22.425315],[113.938879,22.424564],[113.931043,22.422198],[113.940543,22.420342],[113.941582,22.419706],[113.942025,22.418894],[113.943143,22.414766],[113.943398,22.414203],[113.944655,22.413783],[113.945396,22.414057],[113.948421,22.416871],[113.950086,22.419021],[113.951853,22.42148],[113.953104,22.423797],[113.954277,22.426669],[113.954805,22.427281],[113.955789,22.427648],[113.957575,22.427733],[113.967798,22.427648],[113.968915,22.42737],[113.969644,22.42693],[113.970367,22.426147],[113.971539,22.425596],[113.972548,22.425372],[113.977796,22.425123],[113.980031,22.424792],[113.985425,22.423638],[113.986737,22.423809],[113.991602,22.425302],[113.992714,22.425135],[113.99255,22.423883],[113.991967,22.422598],[113.990187,22.419661],[113.991499,22.41898],[113.996048,22.415872],[113.996431,22.415758],[113.998776,22.415676],[114.008008,22.414962],[114.008391,22.414673],[114.00796,22.40711],[114.0083,22.406902],[114.013426,22.406726],[114.013803,22.406392],[114.013754,22.39676],[114.014258,22.396385],[114.056935,22.39612],[114.057215,22.396348],[114.057275,22.39993],[114.057573,22.400056],[114.0644,22.400089],[114.064759,22.399632],[114.064637,22.39716],[114.062293,22.39707],[114.062159,22.396829],[114.062262,22.390649],[114.062475,22.390453],[114.071908,22.390424],[114.072145,22.386018],[114.073882,22.388205],[114.074872,22.388919],[114.076123,22.38907],[114.077034,22.388645],[114.077982,22.38887],[114.079039,22.390122],[114.080491,22.39113],[114.084651,22.39297],[114.085623,22.393586],[114.088861,22.396348],[114.090033,22.397213],[114.091145,22.397523],[114.092681,22.39758],[114.094242,22.39716],[114.095299,22.396381],[114.096156,22.396018],[114.097055,22.395936],[114.098112,22.396242],[114.099345,22.396964],[114.106087,22.403434],[114.107648,22.404103],[114.108869,22.40416],[114.111323,22.40374],[114.112483,22.40374],[114.11388,22.404128],[114.115945,22.405131],[114.121047,22.408917],[114.122366,22.409618],[114.124048,22.410083],[114.127802,22.410757],[114.128427,22.411299],[114.128677,22.412666],[114.12926,22.413808]]]]}},{"type":"Feature","properties":{"adcode":810013,"name":"北区","center":[114.1473639,22.49610389],"centroid":[114.182122,22.510784],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":12,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.341981,22.507841],[114.341878,22.508142],[114.340438,22.5091],[114.339229,22.509418],[114.336873,22.509573],[114.335585,22.509121],[114.332275,22.507266],[114.327434,22.504359],[114.324585,22.50323],[114.322022,22.502615],[114.31964,22.502154],[114.314477,22.500409],[114.313439,22.499998],[114.311459,22.498872],[114.309296,22.49745],[114.308592,22.497356],[114.306599,22.499105],[114.305196,22.500128],[114.303204,22.500821],[114.302196,22.501942],[114.301455,22.502488],[114.299754,22.503031],[114.298843,22.503679],[114.298667,22.505338],[114.298138,22.505876],[114.297197,22.506275],[114.296286,22.506406],[114.293643,22.505582],[114.293127,22.505794],[114.292507,22.506972],[114.291238,22.506728],[114.290041,22.506712],[114.290017,22.507046],[114.290716,22.507568],[114.290795,22.508289],[114.28927,22.508974],[114.288444,22.508558],[114.28715,22.508729],[114.284672,22.50864],[114.284077,22.508456],[114.283208,22.50875],[114.283159,22.510026],[114.284641,22.512092],[114.285358,22.514872],[114.285723,22.515268],[114.286895,22.515247],[114.286968,22.51713],[114.287229,22.517746],[114.288468,22.518626],[114.290813,22.521064],[114.291044,22.521692],[114.2917,22.52203],[114.290977,22.522825],[114.289148,22.522731],[114.288371,22.522099],[114.287897,22.522046],[114.2876,22.522596],[114.287016,22.522543],[114.285255,22.521231],[114.28483,22.520444],[114.283639,22.521052],[114.283803,22.521903],[114.285474,22.524557],[114.286682,22.525727],[114.286652,22.526236],[114.285753,22.527076],[114.284623,22.527125],[114.281598,22.526493],[114.280462,22.526546],[114.279497,22.527492],[114.279029,22.52772],[114.278002,22.527406],[114.278166,22.526322],[114.278914,22.525405],[114.278841,22.524716],[114.277492,22.523644],[114.276563,22.523522],[114.272603,22.52481],[114.270756,22.524598],[114.269985,22.524162],[114.268642,22.524121],[114.268284,22.525017],[114.269122,22.528188],[114.270191,22.529326],[114.27236,22.530463],[114.273313,22.531384],[114.273283,22.532888],[114.272171,22.534624],[114.271351,22.53493],[114.269316,22.534742],[114.268879,22.53517],[114.268618,22.536637],[114.26815,22.537554],[114.267458,22.538288],[114.266571,22.538606],[114.265229,22.538406],[114.264518,22.538528],[114.263898,22.540012],[114.263734,22.541516],[114.262556,22.542021],[114.262677,22.542946],[114.265277,22.54491],[114.265696,22.546174],[114.265253,22.546785],[114.264609,22.546785],[114.263601,22.546447],[114.261949,22.547343],[114.260339,22.547331],[114.259464,22.547156],[114.259154,22.546818],[114.259173,22.545807],[114.258802,22.545681],[114.257703,22.546039],[114.256622,22.545998],[114.255595,22.546426],[114.255006,22.546259],[114.254483,22.545428],[114.253955,22.545216],[114.252801,22.545566],[114.252455,22.545937],[114.25223,22.547087],[114.251683,22.54749],[114.249661,22.54782],[114.248579,22.547812],[114.247583,22.54758],[114.24652,22.546989],[114.245482,22.545892],[114.243574,22.54284],[114.242645,22.540933],[114.241892,22.539926],[114.237488,22.532342],[114.236765,22.531979],[114.233996,22.532354],[114.233212,22.53202],[114.232781,22.531152],[114.232696,22.529065],[114.232149,22.527972],[114.230922,22.527891],[114.229276,22.526693],[114.228723,22.526823],[114.227891,22.528176],[114.226773,22.528853],[114.226038,22.528853],[114.224988,22.528066],[114.224714,22.526766],[114.223117,22.525588],[114.221841,22.525698],[114.220359,22.525299],[114.219011,22.524076],[114.218403,22.523835],[114.217158,22.523746],[114.215166,22.52384],[114.214382,22.524284],[114.214321,22.525372],[114.214558,22.526395],[114.215682,22.529713],[114.217857,22.530817],[114.218458,22.531355],[114.220013,22.533348],[114.221064,22.535317],[114.222315,22.536572],[114.223827,22.538496],[114.225316,22.539229],[114.231566,22.539584],[114.232562,22.540044],[114.231268,22.540831],[114.230509,22.543044],[114.230965,22.543745],[114.230764,22.545941],[114.229537,22.547099],[114.228997,22.547987],[114.228152,22.548016],[114.227824,22.548346],[114.226306,22.548961],[114.225759,22.550281],[114.224678,22.551023],[114.223287,22.552763],[114.222704,22.553057],[114.221926,22.552881],[114.221641,22.55227],[114.220711,22.551936],[114.218598,22.551724],[114.217504,22.551948],[114.215913,22.55366],[114.215324,22.553949],[114.21451,22.553978],[114.212621,22.553623],[114.210835,22.553831],[114.207294,22.553521],[114.206808,22.553582],[114.206158,22.554589],[114.205216,22.55465],[114.203558,22.55401],[114.202519,22.553982],[114.201353,22.554255],[114.200521,22.553138],[114.199385,22.55282],[114.197229,22.553008],[114.196822,22.552885],[114.19551,22.551814],[114.194137,22.551643],[114.193111,22.552616],[114.192467,22.552625],[114.191714,22.551973],[114.191149,22.551985],[114.189138,22.552417],[114.1868,22.552674],[114.186204,22.552013],[114.185919,22.551317],[114.184492,22.55214],[114.182712,22.5528],[114.182572,22.55533],[114.182323,22.556777],[114.180944,22.557266],[114.179742,22.557246],[114.178235,22.556842],[114.175508,22.556899],[114.174785,22.557437],[114.173965,22.558378],[114.172319,22.558464],[114.171578,22.557873],[114.170582,22.55672],[114.169525,22.556341],[114.168189,22.556573],[114.167411,22.558268],[114.166676,22.559092],[114.165589,22.558892],[114.164435,22.557572],[114.16342,22.556178],[114.162236,22.554051],[114.161076,22.552625],[114.159928,22.55203],[114.157674,22.552074],[114.156879,22.551622],[114.156781,22.549821],[114.156581,22.548598],[114.156022,22.548146],[114.155075,22.548008],[114.154607,22.545929],[114.154832,22.54447],[114.155828,22.544213],[114.155828,22.544967],[114.156417,22.545297],[114.156721,22.544984],[114.156508,22.543696],[114.155299,22.543329],[114.153477,22.541304],[114.153222,22.540692],[114.153544,22.539547],[114.153137,22.539115],[114.150495,22.53852],[114.149735,22.538508],[114.149164,22.539303],[114.146935,22.539437],[114.146401,22.540036],[114.144913,22.540171],[114.143886,22.540627],[114.143024,22.540778],[114.142058,22.540595],[114.140242,22.539242],[114.139403,22.53881],[114.138353,22.538765],[114.136761,22.539156],[114.135893,22.53916],[114.135103,22.538846],[114.134222,22.537746],[114.133378,22.537102],[114.132661,22.536894],[114.131058,22.53711],[114.130481,22.537004],[114.128737,22.53612],[114.127565,22.53537],[114.125062,22.532211],[114.122074,22.531494],[114.121503,22.531066],[114.121211,22.52968],[114.120695,22.528637],[114.120227,22.528233],[114.118751,22.527479],[114.117275,22.526937],[114.115635,22.52732],[114.115034,22.52772],[114.114591,22.528608],[114.11484,22.532802],[114.114627,22.533483],[114.113771,22.533841],[114.11337,22.533581],[114.113054,22.532566],[114.11221,22.531685],[114.110922,22.531718],[114.109586,22.532264],[114.107909,22.532325],[114.103918,22.531335],[114.10195,22.531241],[114.101294,22.531437],[114.100152,22.532191],[114.098409,22.533813],[114.097249,22.534404],[114.09587,22.534278],[114.094109,22.533572],[114.0929,22.532545],[114.091248,22.530067],[114.090355,22.529317],[114.088259,22.52871],[114.085684,22.528417],[114.08402,22.527553],[114.08357,22.526896],[114.083485,22.526114],[114.084287,22.525054],[114.085951,22.523876],[114.088174,22.522931],[114.089377,22.522124],[114.090343,22.52099],[114.0903,22.519429],[114.089389,22.517974],[114.089523,22.517008],[114.089754,22.513246],[114.090094,22.511489],[114.090598,22.509818],[114.091983,22.506883],[114.092098,22.505892],[114.091898,22.505264],[114.089778,22.501404],[114.089492,22.500442],[114.089492,22.499353],[114.089741,22.498501],[114.090968,22.496887],[114.091132,22.496455],[114.091357,22.493809],[114.090604,22.490295],[114.090908,22.489149],[114.093283,22.486662],[114.094394,22.485235],[114.094674,22.483605],[114.094631,22.477468],[114.094534,22.476947],[114.092918,22.473852],[114.092651,22.472347],[114.092274,22.460763],[114.092608,22.459788],[114.093641,22.459678],[114.095062,22.460037],[114.10045,22.461737],[114.10551,22.462969],[114.108012,22.463356],[114.111414,22.463581],[114.112811,22.463911],[114.115149,22.464694],[114.116711,22.465024],[114.118551,22.465138],[114.119936,22.464551],[114.12225,22.461803],[114.124248,22.460184],[114.126478,22.459511],[114.129041,22.459597],[114.129703,22.459621],[114.132042,22.460343],[114.135777,22.462178],[114.140782,22.46524],[114.148065,22.470305],[114.152627,22.471467],[114.15341,22.471964],[114.153908,22.473081],[114.15403,22.474786],[114.153842,22.475373],[114.152882,22.476922],[114.152973,22.477452],[114.153939,22.477709],[114.158069,22.477966],[114.160553,22.478325],[114.160985,22.477852],[114.161112,22.476718],[114.160888,22.47534],[114.161222,22.474349],[114.162406,22.474211],[114.164362,22.475136],[114.164957,22.475124],[114.167035,22.474423],[114.167818,22.474504],[114.16845,22.475254],[114.16862,22.476873],[114.169288,22.478602],[114.171062,22.481721],[114.172507,22.483393],[114.173625,22.484502],[114.175125,22.485505],[114.177409,22.486393],[114.17996,22.487001],[114.184461,22.487384],[114.191137,22.487425],[114.192084,22.487201],[114.194028,22.486332],[114.195704,22.485941],[114.200041,22.48599],[114.201827,22.485761],[114.204099,22.484811],[114.205484,22.48453],[114.208442,22.48497],[114.214552,22.484738],[114.216113,22.484514],[114.217395,22.484065],[114.219624,22.482781],[114.220517,22.48261],[114.221349,22.483225],[114.221738,22.484673],[114.222351,22.485623],[114.225358,22.488155],[114.226634,22.489606],[114.227751,22.49133],[114.229361,22.494396],[114.229865,22.495008],[114.230807,22.495676],[114.232204,22.496402],[114.233151,22.497181],[114.234597,22.4993],[114.236383,22.501306],[114.236826,22.502142],[114.237543,22.504205],[114.238047,22.505264],[114.2386,22.505819],[114.240221,22.506096],[114.241333,22.505595],[114.242177,22.504812],[114.243058,22.503418],[114.243787,22.502582],[114.244783,22.502195],[114.246739,22.502024],[114.247577,22.501689],[114.2483,22.501131],[114.253032,22.495583],[114.254648,22.494523],[114.256433,22.494078],[114.25899,22.493911],[114.261839,22.494025],[114.266468,22.494527],[114.267749,22.494804],[114.26925,22.495309],[114.271206,22.495701],[114.280469,22.496683],[114.2837,22.496687],[114.287436,22.496357],[114.290728,22.495521],[114.304073,22.489687],[114.306132,22.489076],[114.307699,22.48897],[114.309879,22.489141],[114.311939,22.4897],[114.314678,22.490821],[114.319701,22.493116],[114.321038,22.494233],[114.321493,22.494959],[114.322101,22.496467],[114.322714,22.497193],[114.323613,22.497861],[114.326844,22.499427],[114.329031,22.500662],[114.332275,22.501559],[114.33383,22.502456],[114.341981,22.507841]]],[[[114.30383,22.501388],[114.304534,22.501473],[114.307176,22.502839],[114.307948,22.503124],[114.309333,22.504205],[114.309618,22.504682],[114.309618,22.506006],[114.310748,22.506716],[114.311459,22.506646],[114.313955,22.505114],[114.315492,22.505203],[114.315875,22.505648],[114.316676,22.507576],[114.317016,22.507914],[114.318377,22.507922],[114.32091,22.508742],[114.321633,22.509239],[114.322362,22.510193],[114.323686,22.511167],[114.32399,22.512194],[114.324433,22.512602],[114.32645,22.513397],[114.32645,22.514477],[114.32402,22.516397],[114.322939,22.516258],[114.322173,22.51583],[114.321457,22.516446],[114.32153,22.516874],[114.322125,22.517192],[114.322234,22.51797],[114.320327,22.52086],[114.318019,22.522005],[114.314471,22.523599],[114.313688,22.52346],[114.313001,22.522291],[114.313348,22.521639],[114.314028,22.521109],[114.314149,22.520595],[114.313706,22.518883],[114.313736,22.518264],[114.314301,22.516548],[114.314253,22.515647],[114.313749,22.514346],[114.312534,22.513364],[114.312376,22.512153],[114.312017,22.511811],[114.311374,22.512003],[114.310499,22.511636],[114.310469,22.510323],[114.310238,22.510123],[114.309314,22.510282],[114.308792,22.510115],[114.308482,22.509341],[114.309454,22.508615],[114.309029,22.507869],[114.307766,22.50793],[114.307535,22.508473],[114.30762,22.509577],[114.307237,22.510062],[114.306739,22.510005],[114.306593,22.51078],[114.304777,22.510629],[114.304145,22.509308],[114.302979,22.509712],[114.302651,22.510433],[114.302013,22.510478],[114.301424,22.509581],[114.300337,22.509655],[114.299875,22.510662],[114.299207,22.510437],[114.299365,22.509288],[114.299894,22.507955],[114.301266,22.507751],[114.30236,22.506862],[114.302317,22.505941],[114.301455,22.505925],[114.301552,22.504669],[114.300799,22.504482],[114.300762,22.503748],[114.302524,22.501946],[114.30383,22.501388]]],[[[114.309187,22.528841],[114.309661,22.529211],[114.310183,22.530381],[114.31076,22.532823],[114.310098,22.533996],[114.309333,22.534172],[114.308045,22.533589],[114.307255,22.533764],[114.305378,22.535496],[114.303319,22.537114],[114.302773,22.537738],[114.302475,22.540415],[114.301862,22.540847],[114.300932,22.541137],[114.299845,22.541145],[114.29925,22.54145],[114.299268,22.54317],[114.299833,22.544209],[114.300525,22.544951],[114.302129,22.545081],[114.303623,22.544764],[114.305154,22.543643],[114.306933,22.542001],[114.307838,22.541357],[114.308768,22.541471],[114.31028,22.542294],[114.31121,22.543802],[114.311629,22.543981],[114.313123,22.543969],[114.313463,22.544711],[114.313141,22.545493],[114.313463,22.545799],[114.315547,22.544279],[114.316719,22.544213],[114.317855,22.544923],[114.319215,22.545489],[114.320096,22.546451],[114.320886,22.546712],[114.322058,22.546748],[114.322319,22.547372],[114.321894,22.547869],[114.321062,22.548215],[114.319355,22.548505],[114.317812,22.547946],[114.316573,22.548806],[114.31534,22.548668],[114.312862,22.548105],[114.312248,22.548113],[114.309618,22.549409],[114.308683,22.54813],[114.303896,22.548439],[114.29849,22.549034],[114.298114,22.549132],[114.297932,22.55],[114.298618,22.550852],[114.298551,22.551708],[114.297543,22.552396],[114.296462,22.552718],[114.295247,22.552629],[114.29433,22.551773],[114.293698,22.551492],[114.292781,22.550489],[114.292775,22.54978],[114.293467,22.548391],[114.295083,22.547327],[114.29569,22.54661],[114.295727,22.545591],[114.292386,22.545424],[114.291432,22.545216],[114.291001,22.544845],[114.291013,22.5439],[114.29351,22.541744],[114.297786,22.537864],[114.298691,22.536727],[114.298509,22.536275],[114.29733,22.536148],[114.29727,22.53722],[114.297014,22.537668],[114.29597,22.53744],[114.295186,22.536295],[114.293145,22.536332],[114.292094,22.535586],[114.292161,22.534229],[114.291505,22.532957],[114.290236,22.531563],[114.290157,22.530728],[114.29091,22.529843],[114.291451,22.529896],[114.293091,22.531037],[114.293576,22.531119],[114.294749,22.530638],[114.295532,22.530687],[114.296213,22.53109],[114.298102,22.531156],[114.299116,22.530565],[114.301527,22.531963],[114.303161,22.532496],[114.303708,22.532961],[114.304103,22.533699],[114.304868,22.533446],[114.303981,22.530247],[114.304121,22.529586],[114.304753,22.529395],[114.306308,22.529672],[114.307334,22.529513],[114.308507,22.528906],[114.309187,22.528841]]],[[[114.32399,22.519821],[114.325241,22.520298],[114.326128,22.521891],[114.326158,22.523163],[114.3258,22.524064],[114.325526,22.525417],[114.325405,22.528066],[114.326729,22.529517],[114.327051,22.531001],[114.326771,22.532541],[114.326024,22.534004],[114.325065,22.535313],[114.32385,22.535431],[114.32286,22.534864],[114.32238,22.53363],[114.322483,22.530589],[114.322623,22.529101],[114.322094,22.528042],[114.321226,22.527597],[114.319653,22.527667],[114.318025,22.529696],[114.317053,22.531478],[114.31531,22.532712],[114.314216,22.532835],[114.313263,22.532109],[114.312273,22.530695],[114.312115,22.529419],[114.312522,22.526151],[114.313087,22.525429],[114.316008,22.524585],[114.317636,22.523632],[114.320382,22.521696],[114.322216,22.521361],[114.322781,22.521007],[114.323103,22.520216],[114.32399,22.519821]]],[[[114.275281,22.546687],[114.275931,22.547062],[114.276077,22.548199],[114.275791,22.548566],[114.27383,22.550196],[114.272803,22.551288],[114.272177,22.550925],[114.273429,22.548411],[114.274826,22.547987],[114.274874,22.546903],[114.275281,22.546687]]],[[[114.280505,22.52891],[114.281185,22.529114],[114.282327,22.530296],[114.282376,22.530752],[114.281738,22.53116],[114.280967,22.530984],[114.280456,22.531828],[114.279697,22.532305],[114.279229,22.532268],[114.279047,22.531637],[114.27957,22.530988],[114.279649,22.529326],[114.280505,22.52891]]],[[[114.264135,22.541691],[114.265781,22.541886],[114.267112,22.542795],[114.267251,22.543366],[114.266711,22.544063],[114.265921,22.544006],[114.264846,22.543272],[114.263728,22.543166],[114.263303,22.542587],[114.263303,22.54198],[114.264135,22.541691]]],[[[114.291572,22.515989],[114.293479,22.516323],[114.293996,22.516548],[114.293917,22.517457],[114.292769,22.517999],[114.291712,22.517669],[114.291238,22.517807],[114.290977,22.518594],[114.289774,22.518394],[114.289495,22.51788],[114.290181,22.516385],[114.290867,22.516026],[114.291572,22.515989]]],[[[114.265642,22.548219],[114.2662,22.548427],[114.267482,22.548439],[114.267239,22.549255],[114.266468,22.549279],[114.265295,22.54899],[114.265192,22.548464],[114.265642,22.548219]]],[[[114.293109,22.529754],[114.293728,22.530177],[114.292969,22.530234],[114.293109,22.529754]]],[[[114.231991,22.528535],[114.232459,22.529517],[114.232034,22.529456],[114.231706,22.528686],[114.231991,22.528535]]],[[[114.216113,22.524202],[114.216539,22.52472],[114.215937,22.525547],[114.21499,22.525095],[114.215154,22.524467],[114.216113,22.524202]]],[[[114.31062,22.534082],[114.312212,22.534754],[114.314477,22.536629],[114.314951,22.537591],[114.314891,22.538353],[114.314125,22.53918],[114.312965,22.539547],[114.311951,22.539466],[114.311112,22.539111],[114.309934,22.538247],[114.309539,22.536947],[114.309618,22.535292],[114.309873,22.534461],[114.31062,22.534082]]],[[[114.308877,22.49802],[114.309758,22.498383],[114.30963,22.499007],[114.308999,22.498783],[114.308549,22.498273],[114.308877,22.49802]]],[[[114.26023,22.547523],[114.261001,22.548382],[114.260521,22.548717],[114.26023,22.547523]]],[[[114.336041,22.536707],[114.336314,22.536886],[114.33663,22.538638],[114.335968,22.539816],[114.335154,22.540004],[114.334431,22.539865],[114.333854,22.539286],[114.333848,22.53874],[114.334577,22.537774],[114.335628,22.536808],[114.336041,22.536707]]],[[[114.270799,22.538744],[114.270878,22.539559],[114.269784,22.539612],[114.269784,22.539229],[114.270799,22.538744]]],[[[114.285455,22.529293],[114.285856,22.529896],[114.285437,22.530226],[114.284587,22.530088],[114.284587,22.529448],[114.285455,22.529293]]],[[[114.269644,22.54932],[114.270003,22.549695],[114.269377,22.549809],[114.269644,22.54932]]],[[[114.277189,22.532574],[114.277365,22.533157],[114.276806,22.533169],[114.277189,22.532574]]],[[[114.277547,22.529444],[114.277917,22.529794],[114.277899,22.530471],[114.277292,22.530483],[114.277164,22.529656],[114.277547,22.529444]]],[[[114.29255,22.523114],[114.293133,22.52355],[114.292301,22.523742],[114.29255,22.523114]]],[[[114.295569,22.506712],[114.296018,22.507295],[114.295557,22.507449],[114.295569,22.506712]]],[[[114.272396,22.535162],[114.272633,22.535451],[114.272092,22.535953],[114.271855,22.535541],[114.272396,22.535162]]],[[[114.289167,22.522869],[114.289367,22.523375],[114.288766,22.523167],[114.289167,22.522869]]]]}},{"type":"Feature","properties":{"adcode":810014,"name":"大埔区","center":[114.1717431,22.44565306],"centroid":[114.205562,22.458868],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":13,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.341981,22.507841],[114.33383,22.502456],[114.332275,22.501559],[114.329031,22.500662],[114.326844,22.499427],[114.323613,22.497861],[114.322714,22.497193],[114.322101,22.496467],[114.321493,22.494959],[114.321038,22.494233],[114.319701,22.493116],[114.314678,22.490821],[114.311939,22.4897],[114.309879,22.489141],[114.307699,22.48897],[114.306132,22.489076],[114.304073,22.489687],[114.290728,22.495521],[114.287436,22.496357],[114.2837,22.496687],[114.280469,22.496683],[114.271206,22.495701],[114.26925,22.495309],[114.267749,22.494804],[114.266468,22.494527],[114.261839,22.494025],[114.25899,22.493911],[114.256433,22.494078],[114.254648,22.494523],[114.253032,22.495583],[114.2483,22.501131],[114.247577,22.501689],[114.246739,22.502024],[114.244783,22.502195],[114.243787,22.502582],[114.243058,22.503418],[114.242177,22.504812],[114.241333,22.505595],[114.240221,22.506096],[114.2386,22.505819],[114.238047,22.505264],[114.237543,22.504205],[114.236826,22.502142],[114.236383,22.501306],[114.234597,22.4993],[114.233151,22.497181],[114.232204,22.496402],[114.230807,22.495676],[114.229865,22.495008],[114.229361,22.494396],[114.227751,22.49133],[114.226634,22.489606],[114.225358,22.488155],[114.222351,22.485623],[114.221738,22.484673],[114.221349,22.483225],[114.220517,22.48261],[114.219624,22.482781],[114.217395,22.484065],[114.216113,22.484514],[114.214552,22.484738],[114.208442,22.48497],[114.205484,22.48453],[114.204099,22.484811],[114.201827,22.485761],[114.200041,22.48599],[114.195704,22.485941],[114.194028,22.486332],[114.192084,22.487201],[114.191137,22.487425],[114.184461,22.487384],[114.17996,22.487001],[114.177409,22.486393],[114.175125,22.485505],[114.173625,22.484502],[114.172507,22.483393],[114.171062,22.481721],[114.169288,22.478602],[114.16862,22.476873],[114.16845,22.475254],[114.167818,22.474504],[114.167035,22.474423],[114.164957,22.475124],[114.164362,22.475136],[114.162406,22.474211],[114.161222,22.474349],[114.160888,22.47534],[114.161112,22.476718],[114.160985,22.477852],[114.160553,22.478325],[114.158069,22.477966],[114.153939,22.477709],[114.152973,22.477452],[114.152882,22.476922],[114.153842,22.475373],[114.15403,22.474786],[114.153908,22.473081],[114.15341,22.471964],[114.152627,22.471467],[114.148065,22.470305],[114.140782,22.46524],[114.135777,22.462178],[114.132042,22.460343],[114.129703,22.459621],[114.129041,22.459597],[114.120914,22.447538],[114.116006,22.439904],[114.115174,22.438117],[114.114894,22.436502],[114.11501,22.435136],[114.115891,22.432681],[114.118296,22.42872],[114.119796,22.426546],[114.121685,22.424315],[114.123908,22.422361],[114.128203,22.418898],[114.129065,22.41805],[114.129715,22.416341],[114.129667,22.414889],[114.12926,22.413808],[114.130183,22.414685],[114.141323,22.415537],[114.144579,22.415223],[114.146917,22.414579],[114.148193,22.414607],[114.150756,22.415378],[114.151564,22.415435],[114.152317,22.415211],[114.152669,22.414766],[114.153368,22.411148],[114.153993,22.410924],[114.157073,22.411266],[114.161598,22.411238],[114.163615,22.411287],[114.168261,22.411629],[114.172902,22.412041],[114.17699,22.41238],[114.177628,22.412796],[114.178108,22.413881],[114.179942,22.414187],[114.179942,22.415187],[114.180434,22.415688],[114.186581,22.41608],[114.190529,22.416394],[114.190979,22.416643],[114.191033,22.417385],[114.191647,22.417858],[114.200734,22.41847],[114.202374,22.418633],[114.203236,22.418935],[114.20388,22.419494],[114.204293,22.420191],[114.205544,22.423842],[114.206134,22.425094],[114.207057,22.426387],[114.208618,22.427725],[114.214419,22.431608],[114.212724,22.432799],[114.205301,22.437175],[114.204105,22.438195],[114.20323,22.440413],[114.203182,22.442073],[114.204566,22.447477],[114.205441,22.449504],[114.207105,22.451119],[114.208897,22.451763],[114.210744,22.451669],[114.212256,22.451111],[114.212864,22.450328],[114.212864,22.449447],[114.212311,22.44797],[114.212007,22.445838],[114.212493,22.445214],[114.213672,22.444908],[114.216296,22.4447],[114.218658,22.444679],[114.218743,22.44408],[114.219995,22.443868],[114.221361,22.444006],[114.222807,22.444826],[114.226215,22.445544],[114.227199,22.445589],[114.22927,22.44536],[114.230649,22.445593],[114.232283,22.44627],[114.234676,22.447469],[114.23597,22.448382],[114.237992,22.450421],[114.238861,22.451686],[114.239815,22.45421],[114.239547,22.455144],[114.238654,22.455845],[114.237446,22.456449],[114.235733,22.4564],[114.234014,22.455633],[114.233382,22.455111],[114.232283,22.453614],[114.231177,22.451159],[114.230564,22.450132],[114.229179,22.448872],[114.228517,22.448492],[114.227733,22.448386],[114.22585,22.448635],[114.224107,22.449206],[114.22189,22.450238],[114.221872,22.451094],[114.22226,22.452738],[114.2226,22.452974],[114.224811,22.452758],[114.22534,22.453117],[114.225079,22.453769],[114.224204,22.454185],[114.223111,22.454279],[114.221732,22.45496],[114.221009,22.454821],[114.220857,22.454185],[114.220402,22.454446],[114.219952,22.455327],[114.219333,22.455719],[114.217863,22.455837],[114.215275,22.456636],[114.21482,22.456975],[114.21451,22.458051],[114.214571,22.458965],[114.215482,22.460959],[114.215585,22.463234],[114.215919,22.463907],[114.216848,22.464571],[114.218573,22.465562],[114.219685,22.465721],[114.221319,22.464567],[114.222151,22.464359],[114.225425,22.464502],[114.229239,22.464971],[114.230029,22.465285],[114.231299,22.466231],[114.232198,22.466578],[114.234093,22.466574],[114.234372,22.466227],[114.234481,22.46511],[114.235192,22.464392],[114.236996,22.46356],[114.246016,22.454043],[114.246429,22.453117],[114.246569,22.449377],[114.246891,22.447762],[114.247723,22.446376],[114.24915,22.445405],[114.251088,22.445128],[114.253165,22.445499],[114.255243,22.446653],[114.259015,22.448549],[114.26026,22.448876],[114.262611,22.449761],[114.265708,22.452579],[114.266723,22.454397],[114.268588,22.457468],[114.270064,22.458887],[114.272226,22.460143],[114.276763,22.462031],[114.279661,22.463503],[114.280699,22.464359],[114.281282,22.465668],[114.282005,22.466203],[114.284332,22.466419],[114.285565,22.466741],[114.28845,22.467972],[114.293157,22.470317],[114.295028,22.470561],[114.295806,22.47099],[114.29634,22.471658],[114.300112,22.473693],[114.301874,22.474765],[114.303799,22.475291],[114.30875,22.476951],[114.311823,22.478667],[114.313779,22.480037],[114.31517,22.48188],[114.315225,22.483576],[114.315789,22.484033],[114.317016,22.483764],[114.318298,22.48433],[114.321457,22.486316],[114.323145,22.488081],[114.324184,22.488697],[114.325447,22.489765],[114.32716,22.491697],[114.330829,22.496353],[114.333022,22.497556],[114.334625,22.498656],[114.340991,22.503304],[114.342279,22.504857],[114.342497,22.505472],[114.342333,22.506805],[114.341981,22.507841]]],[[[114.25571,22.434683],[114.255874,22.430939],[114.255777,22.427032],[114.255316,22.425535],[114.253645,22.422137],[114.253724,22.420901],[114.25517,22.418935],[114.255437,22.417883],[114.254362,22.407677],[114.254241,22.405878],[114.254344,22.404617],[114.254751,22.402887],[114.255419,22.401827],[114.257484,22.399098],[114.258043,22.397425],[114.25777,22.39348],[114.257964,22.392256],[114.258353,22.391489],[114.259707,22.389763],[114.259956,22.388784],[114.259428,22.385051],[114.259568,22.383248],[114.263024,22.386332],[114.264141,22.386948],[114.265921,22.387617],[114.268041,22.387899],[114.278021,22.388853],[114.278914,22.389074],[114.279582,22.38969],[114.281197,22.394149],[114.281981,22.394932],[114.282649,22.39521],[114.283712,22.395324],[114.288286,22.394798],[114.289015,22.394855],[114.289689,22.395414],[114.292034,22.401329],[114.292362,22.402553],[114.292422,22.403781],[114.291918,22.406902],[114.292034,22.408631],[114.292477,22.410079],[114.293309,22.41114],[114.294652,22.411923],[114.296601,22.412152],[114.299061,22.412099],[114.304528,22.411772],[114.305536,22.411997],[114.306545,22.412609],[114.307328,22.413392],[114.307772,22.414228],[114.307996,22.415178],[114.307608,22.419751],[114.307717,22.421533],[114.308045,22.422704],[114.309333,22.423491],[114.31028,22.423601],[114.31989,22.422366],[114.322058,22.421754],[114.323297,22.420975],[114.32597,22.41836],[114.327816,22.417026],[114.329547,22.416137],[114.333004,22.414693],[114.335354,22.413975],[114.336691,22.413808],[114.338203,22.413979],[114.339989,22.414705],[114.3439,22.416749],[114.345516,22.41681],[114.346245,22.416418],[114.352107,22.411413],[114.354506,22.409965],[114.358806,22.408525],[114.359699,22.408023],[114.360143,22.407359],[114.360203,22.405796],[114.360701,22.405405],[114.362718,22.4058],[114.36595,22.407367],[114.367122,22.408313],[114.367905,22.409321],[114.368634,22.410659],[114.370025,22.415676],[114.370584,22.416794],[114.371817,22.418523],[114.372145,22.419584],[114.372206,22.420922],[114.372036,22.432044],[114.371538,22.433855],[114.369776,22.436502],[114.369521,22.437114],[114.369217,22.440291],[114.373901,22.441086],[114.37333,22.442571],[114.373354,22.443423],[114.374022,22.444545],[114.375735,22.446604],[114.376172,22.447832],[114.37633,22.449867],[114.376057,22.452191],[114.375449,22.453765],[114.374271,22.455392],[114.371331,22.457248],[114.368889,22.45839],[114.365761,22.459617],[114.364771,22.459825],[114.363921,22.459535],[114.363787,22.458973],[114.364079,22.457582],[114.363465,22.455217],[114.363441,22.454283],[114.364109,22.452493],[114.363945,22.451237],[114.362633,22.451102],[114.361643,22.450646],[114.361139,22.449659],[114.360252,22.449202],[114.35846,22.449439],[114.356802,22.448717],[114.356267,22.447991],[114.356182,22.446551],[114.357014,22.444373],[114.356942,22.442289],[114.357148,22.441755],[114.358138,22.441649],[114.358563,22.441143],[114.357926,22.437697],[114.357288,22.43649],[114.356298,22.435315],[114.355654,22.435205],[114.354816,22.435446],[114.352872,22.437636],[114.351827,22.438007],[114.350734,22.438003],[114.348322,22.437546],[114.347247,22.437705],[114.347035,22.43877],[114.347594,22.440829],[114.347654,22.442167],[114.347436,22.444329],[114.347223,22.444838],[114.346099,22.446249],[114.345407,22.447958],[114.345273,22.449683],[114.345832,22.454014],[114.346099,22.454972],[114.347114,22.455939],[114.348377,22.456261],[114.350546,22.456612],[114.352252,22.457285],[114.353492,22.458916],[114.353813,22.459931],[114.353516,22.461317],[114.351937,22.465338],[114.35108,22.46734],[114.350491,22.472229],[114.347891,22.476963],[114.346962,22.477497],[114.34613,22.477579],[114.344362,22.476877],[114.343961,22.4764],[114.343238,22.474125],[114.342844,22.473697],[114.341823,22.473212],[114.341368,22.472254],[114.342084,22.469489],[114.342169,22.467405],[114.34203,22.466145],[114.341635,22.465611],[114.340292,22.464731],[114.340001,22.463552],[114.339418,22.462912],[114.338634,22.462561],[114.337614,22.462504],[114.336684,22.462932],[114.336575,22.464506],[114.337504,22.466932],[114.337565,22.467622],[114.33728,22.468861],[114.336782,22.470223],[114.336101,22.471324],[114.335324,22.471903],[114.334625,22.472046],[114.333338,22.471577],[114.332068,22.470598],[114.3314,22.470358],[114.330452,22.4705],[114.329717,22.471287],[114.329377,22.472857],[114.329608,22.475409],[114.32942,22.47629],[114.328897,22.477342],[114.327749,22.478451],[114.325739,22.47883],[114.324299,22.478529],[114.321724,22.477456],[114.317824,22.475153],[114.315273,22.47205],[114.314581,22.471405],[114.311477,22.469664],[114.310031,22.468539],[114.309065,22.467149],[114.307845,22.464796],[114.305409,22.460877],[114.304467,22.458606],[114.304224,22.457456],[114.303587,22.456705],[114.302651,22.456493],[114.299438,22.45686],[114.296474,22.456522],[114.295885,22.456118],[114.295162,22.454304],[114.294652,22.452591],[114.293479,22.452057],[114.29128,22.452322],[114.290454,22.451947],[114.289167,22.450609],[114.287703,22.449671],[114.283985,22.44658],[114.282194,22.444924],[114.281125,22.443187],[114.280535,22.441984],[114.280323,22.440609],[114.280456,22.439271],[114.280238,22.437428],[114.279065,22.43585],[114.277626,22.435262],[114.276047,22.435393],[114.27471,22.43574],[114.273186,22.436302],[114.271959,22.436592],[114.270386,22.43678],[114.265818,22.436058],[114.258401,22.435124],[114.25571,22.434683]]],[[[114.366138,22.462121],[114.368094,22.463099],[114.369296,22.465216],[114.369132,22.467467],[114.36943,22.468152],[114.371872,22.470011],[114.372394,22.471968],[114.372333,22.473925],[114.371483,22.475259],[114.370341,22.475976],[114.369132,22.476461],[114.368804,22.476983],[114.369102,22.478643],[114.369879,22.479984],[114.369752,22.481611],[114.368841,22.482716],[114.367869,22.483009],[114.366848,22.48294],[114.365482,22.483755],[114.364467,22.483947],[114.363429,22.483719],[114.362384,22.482936],[114.361011,22.480816],[114.360452,22.480294],[114.358497,22.479246],[114.358011,22.478239],[114.358235,22.477615],[114.359906,22.476641],[114.36058,22.475764],[114.360914,22.474655],[114.360689,22.473513],[114.361692,22.472441],[114.36205,22.469444],[114.362706,22.468502],[114.362973,22.467589],[114.362572,22.465077],[114.362512,22.463809],[114.363034,22.462896],[114.364431,22.462149],[114.366138,22.462121]]],[[[114.226318,22.436747],[114.226069,22.435699],[114.226111,22.434973],[114.226597,22.434887],[114.226974,22.435972],[114.227454,22.436637],[114.227071,22.438468],[114.226506,22.438268],[114.226318,22.436747]]],[[[114.362894,22.492982],[114.363981,22.493434],[114.365372,22.493361],[114.365834,22.493715],[114.366223,22.494678],[114.36666,22.496826],[114.36711,22.497813],[114.367857,22.498828],[114.369873,22.500846],[114.370414,22.501922],[114.369916,22.502472],[114.368841,22.501861],[114.368009,22.501783],[114.36533,22.502464],[114.364042,22.502448],[114.362384,22.501791],[114.361382,22.500907],[114.36109,22.499773],[114.361011,22.498607],[114.359705,22.498143],[114.359475,22.497666],[114.359766,22.497038],[114.361503,22.494845],[114.362299,22.493177],[114.362894,22.492982]]],[[[114.224459,22.457986],[114.224708,22.457488],[114.225735,22.45695],[114.227022,22.457072],[114.227539,22.457419],[114.227521,22.458883],[114.227715,22.460017],[114.227302,22.460706],[114.226123,22.45976],[114.224241,22.459666],[114.224155,22.459148],[114.224459,22.457986]]],[[[114.442532,22.534265],[114.445132,22.53506],[114.446614,22.536755],[114.447264,22.538524],[114.446577,22.539686],[114.444846,22.540411],[114.442101,22.540415],[114.44012,22.540741],[114.438353,22.542551],[114.436512,22.544654],[114.436081,22.5474],[114.436367,22.549784],[114.436263,22.550978],[114.435498,22.551883],[114.434016,22.55192],[114.42991,22.550118],[114.42861,22.54835],[114.428142,22.54542],[114.428646,22.5439],[114.429691,22.539816],[114.431064,22.537717],[114.433731,22.536413],[114.438894,22.534379],[114.442532,22.534265]]],[[[114.335968,22.473815],[114.336375,22.473885],[114.336751,22.474582],[114.337019,22.477146],[114.336271,22.478125],[114.335767,22.478149],[114.335342,22.477248],[114.335354,22.475148],[114.334686,22.474802],[114.334704,22.474476],[114.335968,22.473815]]],[[[114.262617,22.443199],[114.262896,22.443664],[114.262356,22.444194],[114.262617,22.443199]]],[[[114.295763,22.460233],[114.296067,22.46053],[114.295617,22.461424],[114.295283,22.460771],[114.295763,22.460233]]],[[[114.377023,22.479739],[114.37763,22.47976],[114.377691,22.480318],[114.375316,22.481684],[114.374836,22.481493],[114.374806,22.480734],[114.375243,22.480412],[114.377023,22.479739]]],[[[114.336435,22.471666],[114.336879,22.471715],[114.33728,22.472294],[114.337006,22.47289],[114.336314,22.473053],[114.335919,22.472514],[114.336083,22.471805],[114.336435,22.471666]]],[[[114.338877,22.476408],[114.339393,22.477187],[114.339078,22.477758],[114.338367,22.477872],[114.337893,22.477318],[114.338009,22.476963],[114.338877,22.476408]]],[[[114.433597,22.461958],[114.433797,22.462496],[114.433439,22.463291],[114.432619,22.464376],[114.432018,22.464384],[114.432078,22.463532],[114.43254,22.4627],[114.433597,22.461958]]]]}},{"type":"Feature","properties":{"adcode":810015,"name":"西贡区","center":[114.264645,22.31421306],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":14,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.373901,22.441086],[114.369217,22.440291],[114.369521,22.437114],[114.369776,22.436502],[114.371538,22.433855],[114.372036,22.432044],[114.372206,22.420922],[114.372145,22.419584],[114.371817,22.418523],[114.370584,22.416794],[114.370025,22.415676],[114.368634,22.410659],[114.367905,22.409321],[114.367122,22.408313],[114.36595,22.407367],[114.362718,22.4058],[114.360701,22.405405],[114.360203,22.405796],[114.360143,22.407359],[114.359699,22.408023],[114.358806,22.408525],[114.354506,22.409965],[114.352107,22.411413],[114.346245,22.416418],[114.345516,22.41681],[114.3439,22.416749],[114.339989,22.414705],[114.338203,22.413979],[114.336691,22.413808],[114.335354,22.413975],[114.333004,22.414693],[114.329547,22.416137],[114.327816,22.417026],[114.32597,22.41836],[114.323297,22.420975],[114.322058,22.421754],[114.31989,22.422366],[114.31028,22.423601],[114.309333,22.423491],[114.308045,22.422704],[114.307717,22.421533],[114.307608,22.419751],[114.307996,22.415178],[114.307772,22.414228],[114.307328,22.413392],[114.306545,22.412609],[114.305536,22.411997],[114.304528,22.411772],[114.299061,22.412099],[114.296601,22.412152],[114.294652,22.411923],[114.293309,22.41114],[114.292477,22.410079],[114.292034,22.408631],[114.291918,22.406902],[114.292422,22.403781],[114.292362,22.402553],[114.292034,22.401329],[114.289689,22.395414],[114.289015,22.394855],[114.288286,22.394798],[114.283712,22.395324],[114.282649,22.39521],[114.281981,22.394932],[114.281197,22.394149],[114.279582,22.38969],[114.278914,22.389074],[114.278021,22.388853],[114.268041,22.387899],[114.265921,22.387617],[114.264141,22.386948],[114.263024,22.386332],[114.259568,22.383248],[114.259817,22.381954],[114.260685,22.379363],[114.260618,22.378645],[114.259914,22.378103],[114.251695,22.376817],[114.250967,22.375928],[114.250827,22.373267],[114.25062,22.372162],[114.250177,22.371105],[114.249478,22.370113],[114.248324,22.36895],[114.244735,22.365943],[114.24078,22.363156],[114.238551,22.361846],[114.236377,22.360912],[114.234488,22.360385],[114.2317,22.360067],[114.229968,22.360096],[114.2293,22.359598],[114.228559,22.357786],[114.228632,22.356447],[114.22944,22.354999],[114.229337,22.354635],[114.228322,22.354566],[114.227429,22.352693],[114.227089,22.350436],[114.22712,22.348261],[114.227648,22.345249],[114.230637,22.332989],[114.231542,22.331605],[114.232325,22.331307],[114.234949,22.33145],[114.238442,22.320691],[114.23897,22.320078],[114.241376,22.319797],[114.243101,22.318417],[114.243817,22.318642],[114.244176,22.32083],[114.244747,22.32116],[114.244929,22.320825],[114.244886,22.316482],[114.245409,22.315715],[114.24629,22.315923],[114.24813,22.317033],[114.248816,22.317103],[114.24909,22.316715],[114.248999,22.315772],[114.248683,22.315045],[114.246757,22.311637],[114.245214,22.309449],[114.244911,22.308359],[114.24485,22.306452],[114.245154,22.305705],[114.248355,22.303076],[114.249916,22.301599],[114.251513,22.299668],[114.252661,22.297532],[114.252831,22.29663],[114.252661,22.296014],[114.252005,22.295397],[114.250244,22.294948],[114.249254,22.294168],[114.246174,22.287473],[114.245846,22.285791],[114.246217,22.284313],[114.246715,22.283729],[114.248501,22.28299],[114.24915,22.282557],[114.249582,22.281924],[114.2498,22.280907],[114.250371,22.282977],[114.252005,22.285035],[114.256324,22.289735],[114.261481,22.294266],[114.262289,22.294585],[114.263807,22.294638],[114.26501,22.294397],[114.26648,22.293654],[114.267391,22.29296],[114.268241,22.29189],[114.269013,22.290355],[114.269499,22.287897],[114.270695,22.286403],[114.270537,22.285709],[114.269547,22.28421],[114.268187,22.281859],[114.267391,22.280029],[114.266929,22.278],[114.266796,22.27573],[114.267014,22.27386],[114.267865,22.270773],[114.268405,22.270189],[114.269444,22.269625],[114.270963,22.269213],[114.271789,22.268466],[114.272299,22.266465],[114.276283,22.259694],[114.276763,22.25927],[114.278422,22.258763],[114.280207,22.258657],[114.28144,22.258927],[114.282619,22.259543],[114.283184,22.260315],[114.28353,22.261626],[114.284356,22.263161],[114.285407,22.264468],[114.287211,22.265195],[114.287539,22.265799],[114.287539,22.26718],[114.287861,22.267645],[114.288984,22.267731],[114.292058,22.267192],[114.292665,22.266951],[114.293795,22.265497],[114.295283,22.263284],[114.297543,22.261704],[114.299268,22.260372],[114.300513,22.259719],[114.301163,22.258477],[114.302821,22.257073],[114.303854,22.256791],[114.304978,22.257114],[114.305822,22.257755],[114.306466,22.258894],[114.306569,22.260287],[114.307195,22.260968],[114.309715,22.260936],[114.311167,22.261483],[114.312303,22.262569],[114.313044,22.264248],[114.313044,22.266061],[114.311957,22.268049],[114.309072,22.270401],[114.308871,22.270867],[114.308762,22.272994],[114.308901,22.274342],[114.309327,22.276632],[114.308829,22.277955],[114.307359,22.278898],[114.306472,22.279074],[114.304814,22.279058],[114.303963,22.279188],[114.303483,22.279617],[114.303374,22.280605],[114.303775,22.281483],[114.304607,22.282259],[114.308185,22.283949],[114.309102,22.284794],[114.309794,22.285917],[114.310809,22.287064],[114.311987,22.287685],[114.314769,22.28862],[114.315522,22.288971],[114.316427,22.289694],[114.317393,22.291457],[114.317758,22.294589],[114.317618,22.295895],[114.316409,22.297728],[114.315534,22.300019],[114.3137,22.301052],[114.311343,22.303709],[114.310894,22.304734],[114.31076,22.306089],[114.310475,22.307036],[114.309345,22.307718],[114.308561,22.308906],[114.306101,22.308473],[114.304188,22.308837],[114.301564,22.308526],[114.299802,22.308951],[114.298436,22.310298],[114.297093,22.312482],[114.296049,22.31507],[114.295387,22.316029],[114.295338,22.318282],[114.29498,22.319013],[114.293686,22.320417],[114.290892,22.321736],[114.288833,22.322054],[114.286852,22.322185],[114.284635,22.322609],[114.283299,22.323115],[114.281507,22.324209],[114.280377,22.325328],[114.279284,22.326875],[114.278397,22.328691],[114.27629,22.336372],[114.27536,22.341111],[114.274716,22.343674],[114.274504,22.345894],[114.275172,22.346694],[114.276909,22.346804],[114.278002,22.346404],[114.280305,22.346188],[114.2811,22.346461],[114.281793,22.347343],[114.282789,22.349747],[114.28407,22.351163],[114.284392,22.35242],[114.284289,22.354023],[114.28469,22.356321],[114.284228,22.357921],[114.281513,22.359908],[114.28025,22.362075],[114.279685,22.364021],[114.279478,22.367575],[114.279855,22.368938],[114.281161,22.372933],[114.281131,22.374026],[114.281295,22.375842],[114.282042,22.37809],[114.282522,22.379078],[114.283882,22.380416],[114.283967,22.381016],[114.283086,22.383578],[114.282929,22.385316],[114.28319,22.386703],[114.284156,22.388148],[114.285146,22.388898],[114.286986,22.389678],[114.288663,22.389963],[114.290035,22.389767],[114.291074,22.389416],[114.292167,22.388674],[114.294822,22.385369],[114.29603,22.38457],[114.297069,22.384251],[114.30044,22.384361],[114.301212,22.384231],[114.301807,22.383509],[114.301892,22.382032],[114.302256,22.381261],[114.303404,22.380999],[114.303994,22.381057],[114.305233,22.381722],[114.30584,22.381869],[114.307122,22.38175],[114.308586,22.381077],[114.310651,22.381093],[114.31186,22.381628],[114.313967,22.381367],[114.315383,22.381681],[114.315729,22.382444],[114.315358,22.383427],[114.314271,22.384423],[114.314192,22.384863],[114.314763,22.386634],[114.315219,22.38727],[114.314921,22.387989],[114.315759,22.388543],[114.318608,22.389151],[114.320527,22.389176],[114.321517,22.388605],[114.322204,22.386781],[114.322362,22.38583],[114.323832,22.385312],[114.323929,22.384557],[114.323151,22.38237],[114.32238,22.380881],[114.322319,22.379527],[114.323048,22.378796],[114.324008,22.378592],[114.325666,22.379045],[114.326753,22.378649],[114.328387,22.377376],[114.330349,22.376124],[114.332396,22.375287],[114.336478,22.373859],[114.337626,22.373594],[114.338306,22.372566],[114.338428,22.371713],[114.338306,22.369069],[114.337668,22.36722],[114.336113,22.365335],[114.33488,22.36245],[114.334801,22.361405],[114.335044,22.3599],[114.335524,22.358937],[114.336861,22.357174],[114.338689,22.355578],[114.340633,22.354407],[114.341252,22.353819],[114.341331,22.353391],[114.340584,22.351856],[114.340505,22.350812],[114.34138,22.3486],[114.345504,22.343531],[114.346336,22.34329],[114.347673,22.343188],[114.348985,22.343323],[114.350108,22.343645],[114.351129,22.344155],[114.352866,22.345853],[114.35464,22.347877],[114.355059,22.348065],[114.355891,22.347816],[114.355818,22.347229],[114.355302,22.346384],[114.355405,22.345237],[114.356049,22.344384],[114.356905,22.341984],[114.357288,22.34025],[114.35829,22.339299],[114.358843,22.335797],[114.359389,22.333715],[114.359924,22.332981],[114.361279,22.332348],[114.36273,22.332458],[114.363757,22.332973],[114.364449,22.334046],[114.365257,22.336585],[114.365877,22.337438],[114.366733,22.337976],[114.367237,22.339258],[114.367055,22.340139],[114.366016,22.341348],[114.365676,22.342001],[114.3655,22.343188],[114.365518,22.345217],[114.365275,22.346751],[114.365494,22.347686],[114.365816,22.347898],[114.3668,22.347755],[114.367656,22.347057],[114.369315,22.346176],[114.370542,22.34611],[114.370766,22.346767],[114.37121,22.34698],[114.37209,22.346755],[114.372704,22.347555],[114.372133,22.349367],[114.372431,22.349832],[114.372965,22.349836],[114.375862,22.348698],[114.376512,22.348832],[114.378893,22.350114],[114.379732,22.350877],[114.379707,22.352448],[114.380473,22.35286],[114.380977,22.353823],[114.382532,22.354334],[114.383388,22.355015],[114.384451,22.354942],[114.384573,22.355252],[114.383698,22.356268],[114.382599,22.35666],[114.381517,22.356819],[114.381299,22.357423],[114.382344,22.359402],[114.383382,22.359753],[114.385132,22.359953],[114.386006,22.360475],[114.386395,22.361136],[114.386632,22.362593],[114.386577,22.364368],[114.387051,22.365596],[114.387944,22.365719],[114.388733,22.365278],[114.390167,22.363662],[114.391248,22.36283],[114.392275,22.362262],[114.393441,22.361952],[114.394419,22.36194],[114.395178,22.362262],[114.396557,22.363838],[114.396903,22.365021],[114.39694,22.366106],[114.396618,22.367579],[114.396114,22.368661],[114.394631,22.371284],[114.394692,22.372007],[114.395184,22.372541],[114.396593,22.373557],[114.397486,22.375295],[114.397389,22.376389],[114.396484,22.380269],[114.396393,22.38111],[114.396599,22.384749],[114.39649,22.385337],[114.395075,22.38714],[114.393568,22.388409],[114.392226,22.389245],[114.39174,22.389363],[114.390404,22.389176],[114.389748,22.389306],[114.387962,22.391032],[114.386,22.393982],[114.384366,22.39512],[114.38156,22.396519],[114.380946,22.39696],[114.380369,22.398057],[114.380503,22.399077],[114.380977,22.40024],[114.382173,22.404976],[114.382842,22.405564],[114.384075,22.405821],[114.384925,22.406636],[114.384725,22.408994],[114.384822,22.409835],[114.385611,22.411397],[114.386583,22.412817],[114.388175,22.414297],[114.390228,22.415582],[114.391783,22.416092],[114.39352,22.416198],[114.394777,22.41601],[114.395925,22.415505],[114.396861,22.414652],[114.398434,22.412327],[114.400493,22.409455],[114.401477,22.408656],[114.403008,22.407856],[114.404818,22.407587],[114.407302,22.407664],[114.409228,22.407934],[114.410321,22.408227],[114.411311,22.408978],[114.41176,22.409671],[114.411924,22.41063],[114.411578,22.411997],[114.410054,22.414934],[114.408371,22.417671],[114.40602,22.419567],[114.405413,22.420746],[114.405437,22.421945],[114.405735,22.42363],[114.405498,22.424385],[114.404629,22.426],[114.404198,22.428439],[114.404198,22.429267],[114.404787,22.430894],[114.405862,22.431959],[114.406142,22.433137],[114.405784,22.433974],[114.404927,22.434214],[114.402358,22.433953],[114.401708,22.434288],[114.400845,22.435907],[114.400086,22.436588],[114.399157,22.436649],[114.397942,22.436217],[114.397687,22.436425],[114.39776,22.438105],[114.397359,22.438811],[114.396004,22.438737],[114.395451,22.437893],[114.394583,22.437391],[114.392809,22.437391],[114.391479,22.437081],[114.387039,22.435315],[114.38518,22.435197],[114.384482,22.435356],[114.382744,22.436315],[114.381627,22.436604],[114.377472,22.436282],[114.376379,22.436359],[114.375735,22.436735],[114.375285,22.437428],[114.373901,22.441086]]],[[[114.295702,22.254704],[114.293321,22.25234],[114.292289,22.251633],[114.291675,22.251776],[114.29108,22.252446],[114.29057,22.25263],[114.289659,22.252429],[114.287114,22.250657],[114.285036,22.24808],[114.284617,22.246749],[114.285115,22.245013],[114.28503,22.243878],[114.284362,22.242881],[114.284769,22.241721],[114.287843,22.239748],[114.289452,22.239197],[114.290716,22.239087],[114.292088,22.238666],[114.292234,22.237955],[114.291536,22.237359],[114.291177,22.23673],[114.291305,22.235521],[114.292289,22.234717],[114.293698,22.234614],[114.294342,22.234958],[114.295052,22.236011],[114.294967,22.237902],[114.295338,22.238401],[114.297276,22.238985],[114.298211,22.238989],[114.298569,22.238646],[114.300191,22.238323],[114.30061,22.238446],[114.301151,22.23934],[114.301193,22.240451],[114.301594,22.241631],[114.301467,22.242995],[114.301005,22.243943],[114.301558,22.244707],[114.303222,22.244568],[114.30341,22.244927],[114.303253,22.246348],[114.303362,22.24748],[114.302803,22.247831],[114.301606,22.247958],[114.301309,22.248484],[114.301552,22.249166],[114.300714,22.249975],[114.300695,22.250518],[114.301278,22.250633],[114.301382,22.251498],[114.302347,22.251372],[114.302706,22.252184],[114.302347,22.253038],[114.301552,22.253446],[114.301351,22.253916],[114.300683,22.2543],[114.301297,22.25501],[114.301285,22.25599],[114.2999,22.256346],[114.298648,22.255603],[114.296942,22.255259],[114.295702,22.254704]]],[[[114.327604,22.339278],[114.328697,22.339499],[114.32973,22.340841],[114.330003,22.342245],[114.329687,22.343298],[114.32914,22.344045],[114.329256,22.344417],[114.331181,22.344992],[114.33154,22.345914],[114.331139,22.346837],[114.331455,22.347384],[114.33239,22.347784],[114.332682,22.348771],[114.331843,22.350701],[114.331916,22.351481],[114.333076,22.353326],[114.33284,22.354048],[114.332044,22.354905],[114.32914,22.356917],[114.327446,22.357704],[114.325605,22.358227],[114.324767,22.358312],[114.324639,22.358818],[114.32487,22.360116],[114.324311,22.361434],[114.324542,22.361761],[114.325575,22.361895],[114.326067,22.362291],[114.325733,22.364421],[114.324743,22.366886],[114.323364,22.368465],[114.322671,22.368816],[114.322501,22.369428],[114.322726,22.371688],[114.322022,22.373117],[114.322817,22.374961],[114.322368,22.376234],[114.321335,22.376821],[114.319883,22.376932],[114.31698,22.378221],[114.314878,22.377756],[114.312194,22.378588],[114.311289,22.378409],[114.310438,22.377727],[114.309181,22.377748],[114.307778,22.378192],[114.306253,22.378192],[114.305336,22.377903],[114.305002,22.377352],[114.304959,22.375948],[114.305075,22.373557],[114.305682,22.372549],[114.307419,22.372047],[114.308209,22.371015],[114.308986,22.370403],[114.309157,22.369897],[114.308829,22.368885],[114.308768,22.367967],[114.307687,22.368053],[114.306873,22.367461],[114.306958,22.366865],[114.307486,22.366208],[114.306539,22.365568],[114.306587,22.365066],[114.307316,22.364233],[114.308209,22.363838],[114.309114,22.363842],[114.309229,22.365025],[114.309971,22.365049],[114.310165,22.363797],[114.309776,22.36336],[114.308914,22.362985],[114.30878,22.362511],[114.309794,22.361699],[114.310165,22.360055],[114.310147,22.359067],[114.309788,22.357574],[114.309746,22.35639],[114.310651,22.35457],[114.310475,22.354129],[114.308294,22.352481],[114.307462,22.351118],[114.307486,22.349494],[114.307905,22.347869],[114.311283,22.342992],[114.313943,22.340911],[114.316233,22.340037],[114.317594,22.340282],[114.318614,22.341576],[114.319507,22.341645],[114.320631,22.340878],[114.322325,22.340246],[114.324785,22.339678],[114.327604,22.339278]]],[[[114.365488,22.314449],[114.365682,22.313119],[114.366235,22.312388],[114.366557,22.311037],[114.366982,22.310363],[114.368088,22.309192],[114.368993,22.308837],[114.3696,22.308073],[114.369776,22.307028],[114.369509,22.305816],[114.369618,22.305195],[114.370633,22.304273],[114.37209,22.303774],[114.372801,22.30413],[114.372607,22.306106],[114.373123,22.307493],[114.374617,22.307816],[114.375759,22.307832],[114.375862,22.308543],[114.375079,22.308918],[114.374812,22.309628],[114.373463,22.310853],[114.373737,22.311874],[114.374429,22.311894],[114.374593,22.313033],[114.373846,22.313707],[114.373275,22.315503],[114.372886,22.316299],[114.370803,22.31756],[114.371495,22.318254],[114.370906,22.318678],[114.369412,22.318393],[114.368586,22.318454],[114.366575,22.318238],[114.365682,22.317793],[114.365221,22.316972],[114.365202,22.315923],[114.365488,22.314449]]],[[[114.297549,22.326544],[114.29702,22.325503],[114.297209,22.324503],[114.298873,22.322283],[114.30044,22.320038],[114.30386,22.319099],[114.305767,22.319217],[114.306581,22.318785],[114.307037,22.319217],[114.306429,22.320238],[114.30632,22.32105],[114.307189,22.32203],[114.307018,22.322952],[114.306168,22.323915],[114.305354,22.324536],[114.304279,22.325854],[114.303538,22.326989],[114.302086,22.327324],[114.299796,22.329793],[114.299177,22.330095],[114.298399,22.329585],[114.297986,22.327393],[114.297549,22.326544]]],[[[114.301133,22.350236],[114.302396,22.350526],[114.303119,22.351383],[114.303082,22.353158],[114.30208,22.355472],[114.30188,22.35859],[114.301394,22.359594],[114.30171,22.360279],[114.302918,22.361569],[114.302943,22.363172],[114.30191,22.364001],[114.301169,22.364339],[114.300884,22.365286],[114.299966,22.3658],[114.299335,22.3668],[114.299183,22.368367],[114.298527,22.369256],[114.298618,22.370346],[114.29925,22.370403],[114.300799,22.369779],[114.301534,22.370007],[114.301746,22.370807],[114.301333,22.371692],[114.299365,22.373206],[114.298278,22.373149],[114.295611,22.371542],[114.29515,22.370256],[114.295186,22.36911],[114.294664,22.367592],[114.293637,22.366192],[114.291766,22.365098],[114.291517,22.364527],[114.291803,22.363984],[114.292665,22.363499],[114.293947,22.361867],[114.29518,22.361214],[114.295806,22.360557],[114.296443,22.359443],[114.297045,22.354811],[114.297616,22.354264],[114.298928,22.35424],[114.29976,22.354011],[114.299936,22.353407],[114.29945,22.351865],[114.29945,22.350836],[114.299851,22.350465],[114.301133,22.350236]]],[[[114.331862,22.32263],[114.332645,22.322809],[114.333277,22.323307],[114.333471,22.324111],[114.334297,22.324895],[114.335293,22.325115],[114.335889,22.325638],[114.33612,22.328111],[114.336472,22.330262],[114.336101,22.33076],[114.334322,22.332193],[114.333034,22.333058],[114.332627,22.334793],[114.331965,22.335401],[114.3316,22.33714],[114.331096,22.337985],[114.330313,22.338417],[114.328442,22.338956],[114.326984,22.339148],[114.325466,22.338801],[114.323917,22.338189],[114.322307,22.338119],[114.321566,22.337687],[114.321044,22.336727],[114.320375,22.336054],[114.320205,22.335466],[114.320527,22.334426],[114.321305,22.333099],[114.322173,22.331973],[114.32187,22.330646],[114.322173,22.329887],[114.323504,22.329046],[114.323595,22.32876],[114.323072,22.327111],[114.323376,22.326111],[114.32433,22.32492],[114.324852,22.323789],[114.325417,22.323446],[114.32679,22.323426],[114.328515,22.323862],[114.329663,22.323907],[114.331011,22.322715],[114.331862,22.32263]]],[[[114.354014,22.250404],[114.354712,22.250669],[114.354743,22.251633],[114.356352,22.250996],[114.357494,22.251114],[114.357677,22.251653],[114.357203,22.252736],[114.358005,22.253365],[114.35826,22.253863],[114.35815,22.255223],[114.357573,22.255925],[114.357379,22.256991],[114.357543,22.258041],[114.357264,22.258596],[114.356529,22.258829],[114.355903,22.258494],[114.355751,22.257865],[114.355866,22.256301],[114.355198,22.255276],[114.353686,22.255696],[114.352896,22.255594],[114.352781,22.254071],[114.353121,22.25334],[114.353018,22.251515],[114.353206,22.250914],[114.354014,22.250404]]],[[[114.371173,22.325434],[114.371829,22.325895],[114.371951,22.326862],[114.373062,22.326903],[114.373591,22.327638],[114.373445,22.328328],[114.372273,22.328956],[114.371841,22.329732],[114.371696,22.331095],[114.372898,22.332589],[114.373384,22.334287],[114.373026,22.336319],[114.37223,22.337283],[114.370863,22.337638],[114.369788,22.337278],[114.369205,22.336148],[114.368464,22.336544],[114.366976,22.336666],[114.36584,22.336332],[114.365318,22.335638],[114.36536,22.333915],[114.364874,22.332552],[114.365336,22.331107],[114.364607,22.328442],[114.364771,22.327499],[114.365585,22.326805],[114.367249,22.327062],[114.367918,22.326854],[114.370183,22.325471],[114.371173,22.325434]]],[[[114.353643,22.309592],[114.354409,22.310269],[114.354512,22.312825],[114.354913,22.313413],[114.356358,22.313147],[114.357209,22.313351],[114.35832,22.313923],[114.359219,22.315168],[114.359675,22.31696],[114.359177,22.318968],[114.359347,22.319556],[114.359936,22.319997],[114.361497,22.320523],[114.362433,22.321617],[114.362852,22.323209],[114.362457,22.324234],[114.361145,22.324695],[114.359724,22.324471],[114.358958,22.323597],[114.358308,22.322262],[114.357604,22.321981],[114.355769,22.322915],[114.354585,22.322781],[114.352987,22.321099],[114.352003,22.318193],[114.350448,22.315066],[114.350339,22.313515],[114.351408,22.310461],[114.352435,22.309677],[114.353643,22.309592]]],[[[114.332852,22.36254],[114.333738,22.362923],[114.333994,22.36334],[114.334097,22.36662],[114.33488,22.368314],[114.33454,22.370876],[114.334139,22.371366],[114.331017,22.373263],[114.327561,22.374716],[114.32603,22.374545],[114.32521,22.373651],[114.325101,22.370138],[114.32549,22.369432],[114.327014,22.36802],[114.327932,22.367763],[114.328557,22.368024],[114.329438,22.369501],[114.329481,22.370958],[114.32976,22.371023],[114.330319,22.37033],[114.330361,22.369811],[114.3301,22.367445],[114.330197,22.36671],[114.331315,22.364899],[114.331758,22.362997],[114.332852,22.36254]]],[[[114.351937,22.260078],[114.352714,22.260168],[114.353826,22.261087],[114.35419,22.261838],[114.354117,22.2629],[114.35467,22.264072],[114.35552,22.265183],[114.355466,22.266085],[114.356273,22.267106],[114.356188,22.267653],[114.355684,22.268147],[114.354567,22.268592],[114.353783,22.268466],[114.353382,22.268082],[114.353546,22.267139],[114.353206,22.266538],[114.351214,22.265428],[114.350837,22.26475],[114.351019,22.263451],[114.350643,22.262279],[114.350594,22.260789],[114.350989,22.260315],[114.351937,22.260078]]],[[[114.38286,22.324956],[114.383297,22.325536],[114.383042,22.326111],[114.382356,22.326666],[114.380782,22.327083],[114.380139,22.328071],[114.378474,22.328132],[114.378177,22.329079],[114.377345,22.329564],[114.376093,22.328756],[114.375808,22.327434],[114.376312,22.326238],[114.377302,22.325487],[114.378523,22.325181],[114.379568,22.325262],[114.380254,22.325054],[114.381007,22.325295],[114.38286,22.324956]]],[[[114.320424,22.381118],[114.321675,22.381563],[114.322902,22.383072],[114.323504,22.384243],[114.323188,22.385316],[114.321031,22.385381],[114.320145,22.384455],[114.319841,22.383664],[114.319683,22.382481],[114.319981,22.381477],[114.320424,22.381118]]],[[[114.286889,22.375626],[114.287739,22.376254],[114.287836,22.377368],[114.285862,22.37911],[114.284714,22.379416],[114.284168,22.379294],[114.283906,22.378547],[114.284344,22.377878],[114.28438,22.37705],[114.28534,22.377331],[114.285723,22.376083],[114.28616,22.375695],[114.286889,22.375626]]],[[[114.324998,22.323303],[114.324676,22.323009],[114.325417,22.322801],[114.324998,22.323303]]],[[[114.29043,22.37057],[114.291335,22.370905],[114.291542,22.372374],[114.291864,22.372757],[114.293236,22.373378],[114.293218,22.373982],[114.292489,22.37401],[114.291985,22.373622],[114.291232,22.373496],[114.29026,22.372598],[114.289258,22.372288],[114.289173,22.37108],[114.29043,22.37057]]],[[[114.284514,22.262929],[114.285073,22.262957],[114.284781,22.263533],[114.284514,22.262929]]],[[[114.356079,22.268196],[114.356352,22.268641],[114.355156,22.269397],[114.355283,22.268535],[114.356079,22.268196]]],[[[114.323127,22.296863],[114.323698,22.297524],[114.322921,22.297545],[114.322641,22.297018],[114.323127,22.296863]]],[[[114.399946,22.444985],[114.401094,22.445324],[114.401143,22.445976],[114.400317,22.445878],[114.399928,22.446735],[114.399606,22.4468],[114.399102,22.446205],[114.399096,22.445401],[114.399946,22.444985]]],[[[114.371058,22.319674],[114.370371,22.320144],[114.370153,22.319776],[114.370857,22.319131],[114.371428,22.318927],[114.371058,22.319674]]],[[[114.305968,22.369697],[114.3068,22.369869],[114.30728,22.370293],[114.307425,22.371027],[114.306891,22.372047],[114.305628,22.372402],[114.30502,22.372872],[114.304291,22.372753],[114.304237,22.372337],[114.304716,22.371427],[114.304814,22.370489],[114.305227,22.369901],[114.305968,22.369697]]],[[[114.375425,22.328785],[114.375911,22.328809],[114.376913,22.329552],[114.376877,22.330809],[114.375893,22.331924],[114.375267,22.332262],[114.37455,22.332181],[114.374077,22.331417],[114.374714,22.330438],[114.374654,22.329197],[114.375425,22.328785]]],[[[114.338901,22.331373],[114.340268,22.33152],[114.340548,22.33254],[114.340068,22.333042],[114.340025,22.333813],[114.339564,22.33456],[114.338434,22.334466],[114.338051,22.33416],[114.337614,22.332507],[114.338075,22.331569],[114.338901,22.331373]]],[[[114.373694,22.323344],[114.374259,22.32343],[114.374241,22.324083],[114.373445,22.324262],[114.37254,22.324168],[114.372503,22.323724],[114.373694,22.323344]]],[[[114.31664,22.298622],[114.317065,22.299031],[114.316367,22.299966],[114.31582,22.299635],[114.31602,22.29899],[114.31664,22.298622]]],[[[114.325192,22.297626],[114.326182,22.297651],[114.325459,22.298843],[114.324597,22.298953],[114.323965,22.29812],[114.325192,22.297626]]],[[[114.318626,22.386034],[114.318833,22.386544],[114.318286,22.387458],[114.31766,22.387201],[114.317806,22.386475],[114.318626,22.386034]]],[[[114.319598,22.380832],[114.319853,22.381142],[114.319519,22.382126],[114.318948,22.381697],[114.319161,22.380955],[114.319598,22.380832]]],[[[114.300282,22.367184],[114.301333,22.367669],[114.301449,22.36844],[114.300483,22.368804],[114.299796,22.369326],[114.299153,22.368824],[114.299881,22.367424],[114.300282,22.367184]]],[[[114.370839,22.34489],[114.37107,22.345282],[114.370299,22.345388],[114.370839,22.34489]]],[[[114.293923,22.375197],[114.294366,22.375434],[114.294682,22.376116],[114.294135,22.376964],[114.292969,22.377588],[114.292198,22.377393],[114.292137,22.37696],[114.293595,22.375275],[114.293923,22.375197]]],[[[114.396921,22.359688],[114.397365,22.359765],[114.397426,22.360928],[114.397085,22.361985],[114.39632,22.362507],[114.395512,22.362246],[114.395403,22.361495],[114.39632,22.35992],[114.396921,22.359688]]],[[[114.291596,22.3595],[114.292003,22.359753],[114.292325,22.361059],[114.292088,22.361581],[114.291438,22.361463],[114.290855,22.360528],[114.291019,22.359826],[114.291596,22.3595]]],[[[114.37333,22.322515],[114.37401,22.32267],[114.373913,22.323164],[114.372619,22.323581],[114.372346,22.323156],[114.372667,22.322581],[114.37333,22.322515]]],[[[114.332123,22.319719],[114.332335,22.320385],[114.331582,22.320389],[114.331528,22.319985],[114.332123,22.319719]]],[[[114.329869,22.36356],[114.330313,22.364123],[114.330045,22.364699],[114.328648,22.364768],[114.328278,22.364339],[114.328618,22.363862],[114.329869,22.36356]]],[[[114.331801,22.360667],[114.331637,22.36021],[114.332202,22.360287],[114.331801,22.360667]]],[[[114.380005,22.335772],[114.380643,22.335997],[114.380461,22.336462],[114.379319,22.336548],[114.379306,22.336013],[114.380005,22.335772]]],[[[114.319349,22.271144],[114.320418,22.271336],[114.32094,22.271904],[114.320922,22.273419],[114.320345,22.274852],[114.319076,22.275236],[114.318122,22.274815],[114.317053,22.273917],[114.316792,22.273072],[114.317035,22.27241],[114.318262,22.271394],[114.319349,22.271144]]],[[[114.351918,22.250735],[114.35238,22.250767],[114.352435,22.25156],[114.352076,22.252139],[114.351068,22.252797],[114.350157,22.252503],[114.350145,22.251408],[114.350625,22.251012],[114.351918,22.250735]]],[[[114.406676,22.432448],[114.407332,22.432921],[114.406986,22.433606],[114.406531,22.433427],[114.406421,22.432554],[114.406676,22.432448]]],[[[114.391321,22.398343],[114.391989,22.398596],[114.391868,22.399522],[114.390531,22.399477],[114.390568,22.398763],[114.391321,22.398343]]],[[[114.289379,22.386544],[114.289732,22.387254],[114.288632,22.387519],[114.288529,22.386826],[114.289379,22.386544]]],[[[114.37455,22.341425],[114.375304,22.341943],[114.37514,22.342894],[114.374787,22.343127],[114.373876,22.342874],[114.37353,22.34196],[114.37455,22.341425]]],[[[114.371817,22.322548],[114.372285,22.323426],[114.371914,22.323613],[114.371416,22.323262],[114.371817,22.322548]]],[[[114.323662,22.308151],[114.324226,22.30853],[114.323977,22.309408],[114.32323,22.310045],[114.322896,22.309698],[114.322981,22.308783],[114.323662,22.308151]]],[[[114.316239,22.300288],[114.316427,22.301211],[114.316105,22.301701],[114.315601,22.301766],[114.315595,22.300766],[114.316239,22.300288]]],[[[114.372066,22.263578],[114.372352,22.264329],[114.371769,22.264636],[114.371313,22.264366],[114.371392,22.263794],[114.372066,22.263578]]],[[[114.375249,22.261781],[114.375619,22.261879],[114.375583,22.262663],[114.37497,22.263504],[114.374204,22.26368],[114.373961,22.263121],[114.374733,22.261981],[114.375249,22.261781]]],[[[114.406585,22.430556],[114.407114,22.430796],[114.406907,22.431331],[114.406379,22.431078],[114.406585,22.430556]]],[[[114.390914,22.399705],[114.391764,22.400113],[114.391704,22.400884],[114.391333,22.401366],[114.390246,22.401447],[114.389827,22.400309],[114.389979,22.399897],[114.390914,22.399705]]],[[[114.287193,22.382836],[114.287521,22.383448],[114.286792,22.383578],[114.286688,22.383068],[114.287193,22.382836]]],[[[114.304249,22.376458],[114.304437,22.377201],[114.303751,22.377254],[114.304249,22.376458]]],[[[114.295326,22.372288],[114.295672,22.372558],[114.295368,22.373214],[114.294749,22.373427],[114.294123,22.373125],[114.294305,22.372541],[114.295326,22.372288]]],[[[114.306411,22.368016],[114.3068,22.368616],[114.306496,22.369061],[114.305688,22.369154],[114.305561,22.368187],[114.306411,22.368016]]],[[[114.350284,22.259723],[114.350582,22.260217],[114.349768,22.260421],[114.349701,22.259915],[114.350284,22.259723]]],[[[114.356577,22.339135],[114.357239,22.339393],[114.357166,22.340082],[114.356541,22.340086],[114.356322,22.339299],[114.356577,22.339135]]]]}},{"type":"Feature","properties":{"adcode":810016,"name":"沙田区","center":[114.1953653,22.37953167],"centroid":[114.207032,22.386019],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":15,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.214419,22.431608],[114.208618,22.427725],[114.207057,22.426387],[114.206134,22.425094],[114.205544,22.423842],[114.204293,22.420191],[114.20388,22.419494],[114.203236,22.418935],[114.202374,22.418633],[114.200734,22.41847],[114.191647,22.417858],[114.191033,22.417385],[114.190979,22.416643],[114.190529,22.416394],[114.186581,22.41608],[114.180434,22.415688],[114.179942,22.415187],[114.179942,22.414187],[114.178108,22.413881],[114.177628,22.412796],[114.17699,22.41238],[114.172902,22.412041],[114.172167,22.409786],[114.172003,22.408338],[114.172106,22.407028],[114.173358,22.402912],[114.173746,22.40135],[114.173977,22.399648],[114.17368,22.397792],[114.17357,22.395532],[114.173734,22.392464],[114.174184,22.388923],[114.173406,22.388103],[114.172562,22.387964],[114.166779,22.387336],[114.165978,22.387197],[114.16551,22.386446],[114.165218,22.384774],[114.164453,22.38277],[114.163153,22.381065],[114.158172,22.377115],[114.156617,22.376226],[114.154036,22.375336],[114.149322,22.374512],[114.149766,22.372978],[114.14979,22.37228],[114.149322,22.371191],[114.148259,22.369803],[114.14784,22.368938],[114.147676,22.36802],[114.147707,22.365245],[114.147931,22.363319],[114.14832,22.362177],[114.149462,22.35939],[114.14965,22.358329],[114.149322,22.356684],[114.148849,22.355933],[114.147148,22.353999],[114.146674,22.352966],[114.146534,22.351967],[114.146571,22.350489],[114.147124,22.346527],[114.147512,22.34491],[114.147956,22.343992],[114.149401,22.342539],[114.151072,22.34145],[114.151703,22.340621],[114.152414,22.341658],[114.153732,22.342266],[114.157522,22.3434],[114.15991,22.343731],[114.16172,22.343698],[114.166864,22.343437],[114.170728,22.344184],[114.172896,22.344278],[114.17668,22.34416],[114.177822,22.344392],[114.180076,22.345882],[114.1816,22.346155],[114.183544,22.345874],[114.184315,22.345976],[114.184801,22.346041],[114.187772,22.347359],[114.190827,22.348437],[114.200758,22.350208],[114.201633,22.350571],[114.201778,22.351518],[114.201001,22.352815],[114.201068,22.353387],[114.202264,22.353591],[114.203461,22.353326],[114.205295,22.352318],[114.206128,22.352203],[114.208545,22.354178],[114.209134,22.354317],[114.211357,22.353366],[114.212493,22.353142],[114.216727,22.353309],[114.218592,22.35353],[114.222485,22.35428],[114.225662,22.354611],[114.228322,22.354566],[114.229337,22.354635],[114.22944,22.354999],[114.228632,22.356447],[114.228559,22.357786],[114.2293,22.359598],[114.229968,22.360096],[114.2317,22.360067],[114.234488,22.360385],[114.236377,22.360912],[114.238551,22.361846],[114.24078,22.363156],[114.244735,22.365943],[114.248324,22.36895],[114.249478,22.370113],[114.250177,22.371105],[114.25062,22.372162],[114.250827,22.373267],[114.250967,22.375928],[114.251695,22.376817],[114.259914,22.378103],[114.260618,22.378645],[114.260685,22.379363],[114.259817,22.381954],[114.259568,22.383248],[114.259428,22.385051],[114.259956,22.388784],[114.259707,22.389763],[114.258353,22.391489],[114.257964,22.392256],[114.25777,22.39348],[114.258043,22.397425],[114.257484,22.399098],[114.255419,22.401827],[114.254751,22.402887],[114.254344,22.404617],[114.254241,22.405878],[114.254362,22.407677],[114.255437,22.417883],[114.25517,22.418935],[114.253724,22.420901],[114.253645,22.422137],[114.255316,22.425535],[114.255777,22.427032],[114.255874,22.430939],[114.25571,22.434683],[114.254866,22.434549],[114.253348,22.434777],[114.251641,22.435381],[114.247583,22.435793],[114.24536,22.435842],[114.24287,22.435426],[114.241722,22.43492],[114.240707,22.43381],[114.240938,22.431502],[114.240665,22.430531],[114.239644,22.429104],[114.238162,22.428227],[114.235769,22.427464],[114.234245,22.427419],[114.232173,22.427513],[114.229221,22.427195],[114.227332,22.426734],[114.224332,22.426644],[114.221938,22.426877],[114.220001,22.427619],[114.21793,22.429144],[114.214419,22.431608]]]]}},{"type":"Feature","properties":{"adcode":810017,"name":"葵青区","center":[114.1393194,22.36387667],"centroid":[114.118692,22.34175],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":16,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.08261,22.329377],[114.085089,22.328862],[114.089808,22.325577],[114.093222,22.322119],[114.094157,22.321348],[114.095524,22.320997],[114.106281,22.321736],[114.112149,22.321732],[114.1188,22.321393],[114.120993,22.320919],[114.122821,22.319295],[114.124303,22.317466],[114.125712,22.315266],[114.127024,22.312886],[114.129199,22.310596],[114.133147,22.308722],[114.139282,22.306281],[114.143862,22.303338],[114.145994,22.300664],[114.146261,22.298043],[114.145623,22.295324],[114.144129,22.293078],[114.143819,22.292886],[114.154437,22.293107],[114.154358,22.311514],[114.135358,22.310923],[114.134004,22.311376],[114.133797,22.31191],[114.133754,22.313858],[114.133469,22.315131],[114.132102,22.316817],[114.131622,22.317617],[114.131562,22.318458],[114.132467,22.319523],[114.137697,22.322323],[114.14572,22.32683],[114.146413,22.327858],[114.146413,22.328303],[114.14538,22.329005],[114.139373,22.330515],[114.137733,22.330964],[114.136755,22.331466],[114.136087,22.33225],[114.13548,22.333364],[114.13503,22.335303],[114.135419,22.336862],[114.136336,22.337336],[114.138444,22.337132],[114.139555,22.337568],[114.14139,22.338862],[114.142932,22.339042],[114.145927,22.338478],[114.148436,22.338617],[114.149389,22.338348],[114.150124,22.337678],[114.150774,22.337511],[114.151442,22.337948],[114.151527,22.33994],[114.151703,22.340621],[114.151072,22.34145],[114.149401,22.342539],[114.147956,22.343992],[114.147512,22.34491],[114.147124,22.346527],[114.146571,22.350489],[114.146534,22.351967],[114.146674,22.352966],[114.147148,22.353999],[114.148849,22.355933],[114.149322,22.356684],[114.14965,22.358329],[114.149462,22.35939],[114.14832,22.362177],[114.147931,22.363319],[114.147707,22.365245],[114.147676,22.36802],[114.14784,22.368938],[114.148259,22.369803],[114.149322,22.371191],[114.14979,22.37228],[114.149766,22.372978],[114.149322,22.374512],[114.145848,22.373712],[114.144785,22.373704],[114.144068,22.374263],[114.143886,22.374863],[114.143564,22.377931],[114.14309,22.378453],[114.14125,22.378486],[114.138966,22.377919],[114.135528,22.376442],[114.132722,22.375316],[114.1268,22.373137],[114.126453,22.372696],[114.126599,22.372023],[114.127607,22.371146],[114.1283,22.369934],[114.128579,22.368134],[114.128233,22.36698],[114.126399,22.36376],[114.12618,22.362626],[114.125251,22.361463],[114.124668,22.360977],[114.120829,22.359165],[114.119201,22.358198],[114.118065,22.357802],[114.115119,22.357239],[114.114998,22.36407],[114.088302,22.362532],[114.07848,22.358067],[114.08261,22.329377]]]]}},{"type":"Feature","properties":{"adcode":810018,"name":"离岛区","center":[113.94612,22.28640778],"centroid":[113.944813,22.260175],"childrenNum":0,"level":"district","parent":{"adcode":810000},"subFeatureIndex":17,"acroutes":[100000,810000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.060744,22.312539],[113.986008,22.315523],[113.955285,22.298447],[113.952315,22.298794],[113.949776,22.302195],[113.949861,22.304468],[113.952479,22.30593],[113.963321,22.305754],[113.968496,22.310706],[113.970191,22.318025],[113.969523,22.321238],[113.965417,22.322932],[113.949788,22.321307],[113.9416,22.318915],[113.939887,22.321364],[113.939164,22.321789],[113.938253,22.321866],[113.898097,22.308841],[113.897253,22.308008],[113.896779,22.306424],[113.896949,22.305412],[113.897393,22.304795],[113.89967,22.303076],[113.899081,22.301219],[113.898504,22.300198],[113.895425,22.294177],[113.895078,22.292241],[113.895862,22.290216],[113.897715,22.287313],[113.8978,22.283618],[113.897059,22.281953],[113.890498,22.275056],[113.889928,22.274068],[113.889381,22.271369],[113.888931,22.270806],[113.88666,22.270405],[113.884922,22.269209],[113.884181,22.268939],[113.882948,22.268862],[113.881752,22.268462],[113.880282,22.267661],[113.878174,22.267425],[113.876121,22.267453],[113.874815,22.267053],[113.874171,22.266628],[113.87354,22.265799],[113.872525,22.263557],[113.871547,22.260842],[113.870484,22.259266],[113.869482,22.257489],[113.86885,22.257011],[113.868322,22.256999],[113.867058,22.25862],[113.864787,22.258861],[113.863724,22.258718],[113.862126,22.258159],[113.860462,22.257158],[113.858609,22.255839],[113.856459,22.254827],[113.855931,22.254377],[113.855633,22.253683],[113.855609,22.252748],[113.856089,22.250931],[113.856824,22.249183],[113.857097,22.248983],[113.858366,22.248917],[113.859891,22.249334],[113.862236,22.25031],[113.864028,22.250163],[113.864428,22.24933],[113.864167,22.24759],[113.863548,22.245213],[113.862667,22.244119],[113.861391,22.243588],[113.857765,22.242579],[113.854752,22.241835],[113.85307,22.240908],[113.852754,22.24048],[113.852468,22.239279],[113.852645,22.23682],[113.852517,22.234749],[113.851685,22.234137],[113.850118,22.234247],[113.84897,22.234169],[113.847822,22.233687],[113.845295,22.231637],[113.843454,22.229235],[113.84295,22.226633],[113.842975,22.224256],[113.843479,22.219742],[113.844165,22.21654],[113.844803,22.215139],[113.847202,22.212381],[113.847233,22.211826],[113.846066,22.209322],[113.845878,22.20801],[113.846042,22.205874],[113.846716,22.203982],[113.847597,22.202839],[113.849772,22.201339],[113.850786,22.200273],[113.85081,22.199574],[113.848824,22.192829],[113.848867,22.191906],[113.849395,22.191203],[113.850488,22.191068],[113.852547,22.191461],[113.853823,22.192118],[113.855894,22.19229],[113.857382,22.192772],[113.859235,22.194235],[113.860189,22.195444],[113.861045,22.19678],[113.862649,22.197887],[113.864538,22.19872],[113.866682,22.199154],[113.868401,22.198933],[113.869361,22.198492],[113.870903,22.198136],[113.872434,22.198177],[113.876698,22.199889],[113.882711,22.20406],[113.886313,22.205992],[113.887364,22.206891],[113.88881,22.209354],[113.890268,22.214146],[113.891671,22.215204],[113.892819,22.215727],[113.894969,22.216164],[113.896986,22.216344],[113.898395,22.216254],[113.899178,22.215813],[113.899537,22.2152],[113.900023,22.211724],[113.904682,22.207169],[113.909249,22.203611],[113.910166,22.203169],[113.913823,22.202818],[113.917522,22.202777],[113.920158,22.202953],[113.924119,22.20379],[113.929658,22.20417],[113.93278,22.204219],[113.935562,22.204967],[113.936741,22.205894],[113.937761,22.208047],[113.938162,22.211528],[113.937761,22.213415],[113.937057,22.214559],[113.937585,22.215396],[113.945172,22.21712],[113.947771,22.218403],[113.949794,22.219943],[113.952035,22.2225],[113.954246,22.225298],[113.95557,22.225959],[113.957897,22.226184],[113.962003,22.226192],[113.966188,22.226776],[113.969802,22.228194],[113.973683,22.230093],[113.975664,22.230804],[113.978531,22.230853],[113.980341,22.230591],[113.981088,22.230158],[113.981215,22.229231],[113.979982,22.22703],[113.978931,22.224607],[113.978701,22.223112],[113.979017,22.220825],[113.981574,22.216262],[113.985844,22.211193],[113.991711,22.206593],[113.993607,22.206115],[113.995417,22.205988],[113.996522,22.206299],[113.998138,22.207161],[114.003283,22.210796],[114.004443,22.211172],[114.009253,22.211944],[114.009764,22.212365],[114.011082,22.214534],[114.013068,22.215739],[114.015734,22.216707],[114.016299,22.217087],[114.016731,22.217888],[114.017192,22.219681],[114.017617,22.220429],[114.018444,22.220992],[114.019172,22.221168],[114.02128,22.220568],[114.021626,22.220735],[114.022853,22.222263],[114.023673,22.222749],[114.02436,22.223586],[114.024663,22.225678],[114.024998,22.22627],[114.026115,22.227258],[114.026461,22.228729],[114.025666,22.229889],[114.023212,22.230779],[114.021256,22.230857],[114.020132,22.231625],[114.018122,22.232156],[114.017429,22.232899],[114.017217,22.233875],[114.016627,22.234811],[114.016087,22.235207],[114.015182,22.235231],[114.012655,22.234582],[114.011428,22.234606],[114.010517,22.234868],[114.009873,22.235374],[114.008282,22.237171],[114.007662,22.237567],[114.005815,22.238066],[114.005159,22.238568],[114.004667,22.239426],[114.004443,22.2407],[114.004929,22.242109],[114.005487,22.242971],[114.006957,22.24438],[114.008282,22.245091],[114.011173,22.245875],[114.012643,22.24674],[114.015054,22.247835],[114.017393,22.248799],[114.017939,22.250077],[114.017775,22.251253],[114.017308,22.252331],[114.016548,22.253426],[114.013852,22.255782],[114.011987,22.258249],[114.011416,22.258821],[114.008846,22.260625],[114.007954,22.261589],[114.007158,22.262974],[114.006484,22.263476],[114.004759,22.264329],[114.004425,22.264881],[114.004625,22.266461],[114.005591,22.26816],[114.006386,22.268711],[114.007291,22.269021],[114.008178,22.26889],[114.010997,22.266351],[114.012758,22.265779],[114.014228,22.265011],[114.015516,22.263598],[114.016312,22.263243],[114.020551,22.261969],[114.021839,22.261973],[114.025131,22.262569],[114.028502,22.262475],[114.029201,22.262557],[114.029808,22.263766],[114.029729,22.26604],[114.029559,22.266943],[114.02815,22.27183],[114.027646,22.272864],[114.027555,22.274534],[114.027889,22.274999],[114.028891,22.275403],[114.029359,22.276118],[114.028818,22.277963],[114.028672,22.279907],[114.029274,22.282716],[114.029195,22.2837],[114.028873,22.28408],[114.027391,22.284427],[114.02702,22.284933],[114.02699,22.286321],[114.027585,22.287342],[114.031066,22.288097],[114.032189,22.288632],[114.033258,22.289494],[114.034169,22.291404],[114.034011,22.292711],[114.033307,22.295716],[114.033556,22.298186],[114.034066,22.299606],[114.035056,22.300917],[114.036386,22.302015],[114.03765,22.302472],[114.03966,22.302582],[114.043888,22.302219],[114.045947,22.302386],[114.04766,22.302738],[114.052938,22.303513],[114.054998,22.304264],[114.056947,22.305256],[114.059365,22.306869],[114.060537,22.308049],[114.060926,22.309147],[114.061005,22.310518],[114.060744,22.312539]]],[[[114.036137,22.207091],[114.034759,22.208766],[114.034564,22.210053],[114.03491,22.211299],[114.035967,22.212549],[114.03847,22.21306],[114.041161,22.214199],[114.041313,22.214861],[114.040845,22.21529],[114.039837,22.215555],[114.038312,22.215359],[114.037565,22.215551],[114.037486,22.216021],[114.040104,22.217312],[114.041003,22.21864],[114.040924,22.219922],[114.040183,22.220817],[114.03929,22.22105],[114.038269,22.220694],[114.037255,22.219681],[114.036514,22.219485],[114.034989,22.21971],[114.033119,22.219514],[114.031521,22.218962],[114.030659,22.218104],[114.030191,22.21627],[114.030349,22.215686],[114.031205,22.215184],[114.031132,22.214093],[114.030075,22.213431],[114.029875,22.212222],[114.028976,22.211323],[114.027725,22.211552],[114.027142,22.211393],[114.026795,22.210809],[114.02688,22.210253],[114.0277,22.209636],[114.028466,22.20855],[114.028745,22.208443],[114.031284,22.208815],[114.031801,22.208635],[114.033009,22.207463],[114.033392,22.206389],[114.033313,22.205106],[114.032432,22.203382],[114.031843,22.203092],[114.030282,22.202892],[114.028685,22.202843],[114.027907,22.20254],[114.027318,22.201829],[114.026067,22.199076],[114.025186,22.198847],[114.024086,22.199084],[114.023096,22.198884],[114.022064,22.198332],[114.022258,22.197425],[114.022878,22.196821],[114.022981,22.195473],[114.023212,22.195003],[114.024469,22.194623],[114.026279,22.194929],[114.026771,22.194639],[114.026091,22.193814],[114.026297,22.193172],[114.02736,22.193254],[114.028041,22.193822],[114.029328,22.1941],[114.030598,22.195035],[114.031551,22.196637],[114.032104,22.196833],[114.033313,22.196833],[114.033283,22.197989],[114.033817,22.198283],[114.034825,22.199562],[114.03573,22.199836],[114.036842,22.199399],[114.037346,22.199403],[114.037322,22.200183],[114.037765,22.200436],[114.038731,22.200261],[114.040043,22.19859],[114.04045,22.197899],[114.041167,22.19765],[114.041713,22.198116],[114.041877,22.199309],[114.042339,22.19995],[114.044046,22.200371],[114.044416,22.201057],[114.044459,22.201972],[114.044751,22.202422],[114.046063,22.202716],[114.046141,22.203435],[114.044829,22.204309],[114.044574,22.205576],[114.043244,22.206037],[114.041707,22.205764],[114.040766,22.204906],[114.039697,22.204763],[114.036137,22.207091]]],[[[114.142489,22.213783],[114.142386,22.216127],[114.141256,22.218329],[114.140272,22.219195],[114.138936,22.219412],[114.137684,22.219024],[114.136864,22.217819],[114.136433,22.216564],[114.135704,22.21618],[114.133287,22.217345],[114.13243,22.21817],[114.131264,22.219763],[114.131404,22.220457],[114.13195,22.220719],[114.132078,22.221336],[114.131471,22.222103],[114.131525,22.223304],[114.131003,22.224044],[114.126569,22.226723],[114.125919,22.22763],[114.12587,22.229141],[114.126308,22.230395],[114.127857,22.231988],[114.128506,22.233973],[114.128336,22.23557],[114.127389,22.236653],[114.125919,22.236996],[114.124716,22.237086],[114.123811,22.238597],[114.123246,22.238813],[114.122086,22.238164],[114.121436,22.236526],[114.120148,22.235966],[114.118114,22.235664],[114.116911,22.234888],[114.112465,22.233381],[114.11091,22.232213],[114.110393,22.23131],[114.110521,22.230273],[114.111693,22.229452],[114.114147,22.228717],[114.11484,22.228243],[114.114664,22.227205],[114.113115,22.225825],[114.112896,22.224959],[114.113285,22.224399],[114.115484,22.223664],[114.115484,22.222974],[114.113929,22.222675],[114.111997,22.221593],[114.106409,22.217839],[114.10568,22.216936],[114.105419,22.21598],[114.105419,22.215004],[114.106925,22.209269],[114.107338,22.208541],[114.108668,22.208072],[114.113175,22.208202],[114.114214,22.208979],[114.116711,22.210012],[114.119213,22.211479],[114.119899,22.213292],[114.119814,22.216054],[114.121029,22.216315],[114.1231,22.214931],[114.124734,22.21156],[114.124479,22.207847],[114.123781,22.204567],[114.124218,22.202928],[114.125506,22.201633],[114.125421,22.199472],[114.124473,22.189977],[114.122924,22.187734],[114.11965,22.185839],[114.118436,22.183853],[114.118436,22.180225],[114.120416,22.177806],[114.12516,22.176596],[114.127838,22.176678],[114.129126,22.175726],[114.131197,22.174949],[114.133098,22.175207],[114.135334,22.178222],[114.136372,22.179085],[114.137144,22.178909],[114.140078,22.175285],[114.141627,22.174504],[114.143352,22.174847],[114.143777,22.176228],[114.143777,22.178729],[114.142489,22.181839],[114.140588,22.184866],[114.140588,22.186419],[114.141195,22.186329],[114.143692,22.184515],[114.148776,22.17993],[114.152396,22.177855],[114.154722,22.177765],[114.15584,22.179056],[114.15533,22.181217],[114.150932,22.188388],[114.149292,22.192188],[114.148946,22.194092],[114.149814,22.195211],[114.156271,22.200812],[114.158342,22.200808],[114.161355,22.200114],[114.162995,22.200367],[114.164198,22.201662],[114.166439,22.20511],[114.166093,22.206666],[114.164107,22.208223],[114.160663,22.208055],[114.15878,22.207716],[114.158172,22.209011],[114.157304,22.209792],[114.154898,22.209706],[114.151801,22.208676],[114.149292,22.206781],[114.147743,22.206785],[114.14473,22.207308],[114.14094,22.206621],[114.137927,22.205245],[114.135334,22.203259],[114.134732,22.202054],[114.133955,22.201878],[114.132837,22.205077],[114.13336,22.205853],[114.134647,22.20663],[114.140169,22.210335],[114.141967,22.212402],[114.142489,22.213783]]],[[[113.994997,22.185732],[113.998296,22.187289],[113.999262,22.188237],[113.99948,22.189283],[113.999322,22.189765],[113.999839,22.190611],[113.999839,22.191289],[113.999085,22.192314],[113.99798,22.192486],[113.997233,22.191571],[113.996243,22.192327],[113.996473,22.193851],[113.997336,22.194255],[113.996887,22.195567],[113.997026,22.196318],[113.995763,22.197009],[113.995739,22.198377],[113.993837,22.199174],[113.99289,22.198917],[113.992319,22.19935],[113.991359,22.198296],[113.990175,22.197691],[113.989573,22.196388],[113.988717,22.195889],[113.987976,22.194762],[113.987757,22.193671],[113.98732,22.19258],[113.987277,22.19113],[113.988097,22.190108],[113.988844,22.189753],[113.989604,22.189728],[113.99009,22.188931],[113.990916,22.188633],[113.992246,22.18847],[113.992744,22.187604],[113.99422,22.186027],[113.994997,22.185732]]],[[[113.921397,22.174545],[113.921944,22.175178],[113.921537,22.175902],[113.921519,22.176588],[113.92206,22.177332],[113.922685,22.177397],[113.923785,22.17649],[113.923833,22.175673],[113.925753,22.176535],[113.925613,22.177074],[113.924514,22.17718],[113.924963,22.177896],[113.924896,22.178316],[113.923845,22.17917],[113.922327,22.179191],[113.92144,22.180339],[113.92045,22.180927],[113.91895,22.181074],[113.918245,22.180151],[113.917589,22.180159],[113.916684,22.180719],[113.916083,22.181892],[113.91505,22.183191],[113.914194,22.183583],[113.913197,22.184543],[113.911539,22.185095],[113.911059,22.184784],[113.910956,22.182692],[113.91047,22.181687],[113.910914,22.180335],[113.910725,22.178574],[113.910118,22.17763],[113.91027,22.176502],[113.912256,22.176216],[113.913805,22.177164],[113.913987,22.178063],[113.91522,22.178786],[113.916313,22.178917],[113.917668,22.178488],[113.917978,22.177377],[113.91765,22.176727],[113.917692,22.176032],[113.918227,22.175142],[113.91932,22.175816],[113.919679,22.176392],[113.920286,22.175832],[113.920432,22.174937],[113.921397,22.174545]]],[[[114.258122,22.169458],[114.25735,22.168649],[114.255941,22.166503],[114.25486,22.163467],[114.254957,22.162102],[114.255413,22.160978],[114.255941,22.160696],[114.257593,22.161224],[114.258158,22.161681],[114.258571,22.161624],[114.257861,22.160014],[114.257144,22.16021],[114.256622,22.159331],[114.256962,22.158551],[114.257581,22.15831],[114.259853,22.157889],[114.261864,22.157664],[114.262258,22.15688],[114.260892,22.154975],[114.25958,22.152858],[114.260017,22.15229],[114.262131,22.152392],[114.26368,22.152956],[114.265301,22.153909],[114.266814,22.155666],[114.267093,22.156549],[114.266777,22.158343],[114.268539,22.159609],[114.269669,22.161105],[114.270762,22.16097],[114.270543,22.159891],[114.271035,22.158976],[114.27174,22.158943],[114.27646,22.159193],[114.27929,22.159581],[114.279709,22.160251],[114.278713,22.163026],[114.278428,22.164856],[114.277267,22.166368],[114.276952,22.167071],[114.276988,22.167778],[114.277407,22.168481],[114.278397,22.169008],[114.278822,22.169854],[114.27861,22.170312],[114.277583,22.171121],[114.276915,22.173372],[114.27632,22.174357],[114.275579,22.174884],[114.273398,22.176008],[114.272797,22.176429],[114.271776,22.178047],[114.2703,22.178329],[114.269347,22.17801],[114.268399,22.17685],[114.268223,22.176073],[114.267591,22.175231],[114.266109,22.1747],[114.263716,22.174279],[114.262732,22.173854],[114.262064,22.173188],[114.260424,22.17249],[114.26006,22.17213],[114.259355,22.170757],[114.258122,22.169458]]],[[[113.907919,22.153467],[113.909371,22.153733],[113.910063,22.154321],[113.910652,22.155891],[113.911217,22.156173],[113.912329,22.155952],[113.914667,22.155997],[113.916095,22.155743],[113.918014,22.157223],[113.920061,22.156826],[113.920322,22.157313],[113.92011,22.158612],[113.91966,22.159883],[113.91881,22.160341],[113.918014,22.160333],[113.91816,22.16312],[113.918409,22.163393],[113.919715,22.163349],[113.920978,22.163618],[113.92223,22.164722],[113.92175,22.165416],[113.919581,22.166634],[113.918567,22.166189],[113.91632,22.167186],[113.915433,22.167124],[113.914443,22.166703],[113.914133,22.166315],[113.914072,22.165465],[113.913726,22.164305],[113.915208,22.162944],[113.915226,22.162588],[113.914339,22.161996],[113.913847,22.161027],[113.912056,22.16097],[113.911624,22.159801],[113.910549,22.159499],[113.909334,22.160664],[113.907123,22.160533],[113.905404,22.159528],[113.90425,22.158494],[113.903928,22.157721],[113.90405,22.156704],[113.904372,22.156054],[113.90719,22.154383],[113.907919,22.153467]]],[[[114.042041,22.25597],[114.037777,22.256399],[114.036368,22.255762],[114.034206,22.25646],[114.033106,22.256407],[114.032809,22.256044],[114.032621,22.254512],[114.031594,22.254414],[114.03123,22.253879],[114.031302,22.25332],[114.032323,22.251527],[114.032833,22.250971],[114.033787,22.250898],[114.036611,22.251078],[114.037844,22.250277],[114.038968,22.248946],[114.03963,22.247855],[114.039891,22.246785],[114.04062,22.246593],[114.041349,22.247472],[114.043001,22.247014],[114.043517,22.246504],[114.043542,22.246018],[114.043111,22.245458],[114.04308,22.244874],[114.044362,22.243445],[114.044805,22.242452],[114.045018,22.241023],[114.045467,22.240243],[114.047241,22.239275],[114.048292,22.23838],[114.049282,22.238262],[114.050242,22.238482],[114.050703,22.239769],[114.051554,22.240814],[114.05145,22.242032],[114.05238,22.242665],[114.052598,22.243633],[114.05046,22.246736],[114.049385,22.24761],[114.049336,22.248264],[114.050648,22.251233],[114.050703,22.253344],[114.050011,22.254631],[114.04783,22.255888],[114.046494,22.256101],[114.04503,22.255831],[114.044465,22.255562],[114.042041,22.25597]]],[[[114.046992,22.276861],[114.049762,22.277241],[114.051426,22.278253],[114.054603,22.27998],[114.054821,22.281156],[114.054311,22.281744],[114.052756,22.282108],[114.052137,22.282463],[114.051711,22.283116],[114.051554,22.284108],[114.050843,22.284517],[114.049367,22.284607],[114.048079,22.284472],[114.047253,22.283872],[114.046798,22.282973],[114.046233,22.282879],[114.045485,22.283961],[114.045674,22.284447],[114.047101,22.284827],[114.048,22.285835],[114.050339,22.286926],[114.051128,22.287844],[114.051292,22.288538],[114.050381,22.288796],[114.049555,22.290086],[114.044945,22.289306],[114.041896,22.288404],[114.037996,22.287795],[114.036927,22.28697],[114.036812,22.285995],[114.037711,22.285488],[114.039071,22.285546],[114.039916,22.285378],[114.040426,22.284905],[114.041379,22.281949],[114.041853,22.281503],[114.042868,22.281189],[114.042284,22.280046],[114.042096,22.279278],[114.0424,22.278384],[114.043196,22.277804],[114.044198,22.277714],[114.045856,22.276857],[114.046992,22.276861]]],[[[113.904293,22.168146],[113.905544,22.169004],[113.906048,22.168963],[113.906376,22.168334],[113.906777,22.168469],[113.90719,22.169748],[113.90688,22.170455],[113.906237,22.170475],[113.905605,22.169409],[113.90405,22.169372],[113.902871,22.16898],[113.903078,22.168579],[113.904293,22.168146]]],[[[114.249527,22.17537],[114.250013,22.175599],[114.250809,22.176429],[114.250772,22.178206],[114.251598,22.178464],[114.254982,22.177254],[114.255109,22.176343],[114.255747,22.176302],[114.259495,22.177826],[114.260491,22.178525],[114.261444,22.179755],[114.262064,22.181279],[114.262167,22.183248],[114.261639,22.185638],[114.260788,22.187105],[114.260005,22.187571],[114.258055,22.187612],[114.252716,22.186468],[114.249351,22.186108],[114.248276,22.185597],[114.248002,22.185091],[114.248586,22.18344],[114.248543,22.181998],[114.248148,22.180073],[114.248166,22.178672],[114.249102,22.177826],[114.249205,22.177401],[114.248841,22.175983],[114.249527,22.17537]]],[[[114.054937,22.254247],[114.056024,22.254283],[114.057871,22.25586],[114.058873,22.256125],[114.059845,22.256836],[114.060883,22.258984],[114.061637,22.260021],[114.061582,22.260854],[114.060823,22.261642],[114.060568,22.262365],[114.059632,22.262626],[114.058612,22.262606],[114.05719,22.262145],[114.056577,22.261765],[114.055326,22.26183],[114.054682,22.261565],[114.054178,22.260695],[114.052501,22.259788],[114.051973,22.259115],[114.052173,22.258281],[114.052058,22.257457],[114.051596,22.256783],[114.052155,22.255374],[114.053351,22.25508],[114.053534,22.254557],[114.054937,22.254247]]],[[[114.292125,22.177659],[114.292993,22.177851],[114.294008,22.178398],[114.294269,22.179379],[114.294232,22.180907],[114.29399,22.181753],[114.294044,22.182488],[114.294378,22.182827],[114.29467,22.184167],[114.294372,22.185434],[114.292951,22.18724],[114.292107,22.187653],[114.291347,22.18733],[114.290758,22.186484],[114.290515,22.185499],[114.290594,22.184556],[114.290078,22.184368],[114.288905,22.18478],[114.288213,22.184404],[114.28746,22.183497],[114.287247,22.182668],[114.288025,22.181557],[114.288249,22.179485],[114.288857,22.178541],[114.290381,22.177867],[114.292125,22.177659]]],[[[113.927484,22.151076],[113.928176,22.151702],[113.92848,22.152331],[113.928838,22.152311],[113.928298,22.153026],[113.92749,22.152654],[113.926961,22.151939],[113.927004,22.151211],[113.927484,22.151076]]],[[[113.930156,22.174533],[113.930946,22.17499],[113.93108,22.175861],[113.930746,22.176339],[113.929561,22.176702],[113.929081,22.177238],[113.928571,22.177266],[113.928273,22.176514],[113.929203,22.175534],[113.929786,22.174533],[113.930156,22.174533]]],[[[114.063483,22.284802],[114.064619,22.284958],[114.065949,22.285721],[114.065822,22.286219],[114.064838,22.286954],[114.063592,22.287236],[114.063204,22.286799],[114.06222,22.286897],[114.061794,22.286272],[114.062444,22.285795],[114.062554,22.28499],[114.063483,22.284802]]],[[[113.910118,22.170087],[113.910646,22.170688],[113.910221,22.171517],[113.909662,22.171897],[113.909031,22.17164],[113.908806,22.170618],[113.910118,22.170087]]],[[[114.309478,22.180768],[114.310056,22.181099],[114.311361,22.184041],[114.311386,22.185961],[114.310699,22.186133],[114.309964,22.185279],[114.309527,22.183575],[114.309667,22.18295],[114.308792,22.181385],[114.308822,22.181038],[114.309478,22.180768]]],[[[114.081037,22.27918],[114.084074,22.279258],[114.085004,22.279711],[114.085265,22.280254],[114.085174,22.280928],[114.084366,22.281536],[114.08439,22.282181],[114.085016,22.282438],[114.085265,22.283835],[114.084973,22.284451],[114.08439,22.284602],[114.081037,22.283618],[114.079154,22.282206],[114.078881,22.281373],[114.079094,22.280078],[114.079847,22.279303],[114.081037,22.27918]]],[[[113.929853,22.17336],[113.929543,22.174226],[113.929045,22.174071],[113.929853,22.17336]]],[[[113.841814,22.211863],[113.842622,22.211912],[113.843139,22.212332],[113.843679,22.213378],[113.843625,22.214604],[113.842215,22.214661],[113.841547,22.215053],[113.840168,22.21498],[113.839859,22.214534],[113.840089,22.21328],[113.84128,22.212071],[113.841814,22.211863]]],[[[114.255486,22.158731],[114.253985,22.157979],[114.25373,22.1569],[114.254617,22.15663],[114.256658,22.157537],[114.256707,22.158302],[114.255874,22.158972],[114.255486,22.158731]]],[[[114.13882,22.220224],[114.139628,22.220429],[114.140746,22.221107],[114.141396,22.22241],[114.141019,22.223456],[114.140351,22.223786],[114.139762,22.22375],[114.138134,22.222622],[114.137891,22.221577],[114.138243,22.220372],[114.13882,22.220224]]],[[[113.921446,22.159066],[113.921865,22.159258],[113.921725,22.160161],[113.921343,22.160263],[113.921051,22.159401],[113.921446,22.159066]]],[[[113.950377,22.211328],[113.951118,22.211479],[113.951562,22.212096],[113.950802,22.212406],[113.950177,22.211822],[113.950377,22.211328]]],[[[114.307608,22.178194],[114.308841,22.178827],[114.309478,22.180098],[114.309381,22.180556],[114.308816,22.180936],[114.30816,22.180793],[114.306861,22.179742],[114.306848,22.178582],[114.307608,22.178194]]],[[[114.294779,22.185083],[114.295466,22.185589],[114.295708,22.186488],[114.295387,22.187461],[114.294949,22.187489],[114.294269,22.186427],[114.294779,22.185083]]],[[[114.241953,22.171869],[114.242621,22.172281],[114.242171,22.172935],[114.241363,22.173041],[114.241035,22.172343],[114.241953,22.171869]]],[[[113.912232,22.170177],[113.912068,22.170753],[113.91163,22.170528],[113.912232,22.170177]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/820000.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/820000.json new file mode 100644 index 0000000..04df109 --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/820000.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":820001,"name":"花地玛堂区","center":[113.5528956,22.20787],"centroid":[113.561427,22.201995],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":0,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.540624,22.201871],[113.544801,22.202859],[113.547856,22.203799],[113.547893,22.203796],[113.548935,22.204118],[113.548947,22.204136],[113.550298,22.204553],[113.550558,22.204553],[113.550862,22.204447],[113.554611,22.201432],[113.55462,22.201399],[113.555433,22.200742],[113.555796,22.200429],[113.555852,22.200424],[113.557631,22.198945],[113.557831,22.198878],[113.558317,22.198833],[113.558679,22.198708],[113.559087,22.198448],[113.559382,22.198211],[113.559632,22.197815],[113.559718,22.197413],[113.559753,22.196629],[113.559753,22.195816],[113.559666,22.195555],[113.559538,22.195372],[113.559596,22.195368],[113.560671,22.194629],[113.560667,22.194582],[113.561481,22.194029],[113.561519,22.194054],[113.582019,22.182646],[113.575698,22.194265],[113.575472,22.199781],[113.573697,22.205587],[113.567629,22.209102],[113.567336,22.209241],[113.55711,22.213036],[113.556008,22.212463],[113.555864,22.212561],[113.555807,22.212703],[113.555932,22.214074],[113.555089,22.213974],[113.55474,22.213773],[113.554289,22.213656],[113.553843,22.213659],[113.553427,22.213776],[113.552808,22.213703],[113.552722,22.213604],[113.552132,22.213827],[113.550576,22.213861],[113.550287,22.213973],[113.549457,22.214005],[113.548496,22.213368],[113.54757,22.211492],[113.547515,22.211343],[113.547122,22.210753],[113.547063,22.210731],[113.546825,22.210294],[113.546644,22.210384],[113.54644,22.210146],[113.546291,22.210083],[113.546011,22.210094],[113.543261,22.210709],[113.541458,22.210708],[113.540832,22.210632],[113.540566,22.210549],[113.540073,22.210601],[113.538217,22.209386],[113.5391,22.206724],[113.539782,22.204445],[113.540515,22.203771],[113.540624,22.201871]]],[[[113.586501,22.201059],[113.576151,22.201038],[113.576045,22.20007],[113.576045,22.194495],[113.57635,22.193843],[113.577001,22.193432],[113.583971,22.193289],[113.586193,22.194792],[113.586499,22.195613],[113.586501,22.201059]]]]}},{"type":"Feature","properties":{"adcode":820002,"name":"花王堂区","center":[113.5489608,22.1992075],"centroid":[113.546753,22.198828],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":1,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.53954,22.194664],[113.540439,22.194489],[113.542568,22.194084],[113.542809,22.194007],[113.544126,22.193404],[113.545017,22.192899],[113.545848,22.19224],[113.545951,22.192252],[113.546852,22.192922],[113.547129,22.193039],[113.547173,22.193356],[113.548246,22.193533],[113.548575,22.193276],[113.548731,22.193482],[113.548748,22.193801],[113.548645,22.194912],[113.548722,22.195229],[113.548825,22.195338],[113.55049,22.196665],[113.550536,22.196663],[113.551511,22.197419],[113.551504,22.19745],[113.553139,22.198685],[113.55448,22.199812],[113.555433,22.200742],[113.55462,22.201399],[113.554611,22.201432],[113.550862,22.204447],[113.550558,22.204553],[113.550298,22.204553],[113.548947,22.204136],[113.548935,22.204118],[113.547893,22.203796],[113.547856,22.203799],[113.544801,22.202859],[113.540624,22.201871],[113.540764,22.199383],[113.53954,22.194664]]]]}},{"type":"Feature","properties":{"adcode":820003,"name":"望德堂区","center":[113.5501828,22.19372083],"centroid":[113.554545,22.195889],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":2,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.559538,22.195372],[113.559666,22.195555],[113.559753,22.195816],[113.559753,22.196629],[113.559718,22.197413],[113.559632,22.197815],[113.559382,22.198211],[113.559087,22.198448],[113.558679,22.198708],[113.558317,22.198833],[113.557831,22.198878],[113.557631,22.198945],[113.555852,22.200424],[113.555796,22.200429],[113.555433,22.200742],[113.55448,22.199812],[113.553139,22.198685],[113.551504,22.19745],[113.551511,22.197419],[113.550536,22.196663],[113.55049,22.196665],[113.548825,22.195338],[113.548722,22.195229],[113.548645,22.194912],[113.548748,22.193801],[113.548731,22.193482],[113.548575,22.193276],[113.549882,22.192716],[113.550012,22.192702],[113.550782,22.192859],[113.551241,22.192898],[113.5519,22.192896],[113.55299,22.192841],[113.553484,22.192765],[113.554297,22.192585],[113.555613,22.192221],[113.556316,22.191999],[113.556973,22.193012],[113.557198,22.193303],[113.558913,22.194906],[113.559538,22.195372]]]]}},{"type":"Feature","properties":{"adcode":820004,"name":"大堂区","center":[113.5536475,22.18853944],"centroid":[113.557955,22.17835],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":3,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.540985,22.161571],[113.544576,22.162559],[113.544681,22.162679],[113.544778,22.162616],[113.559694,22.166727],[113.586631,22.174165],[113.582019,22.182646],[113.561519,22.194054],[113.561481,22.194029],[113.560667,22.194582],[113.560671,22.194629],[113.559596,22.195368],[113.559538,22.195372],[113.558913,22.194906],[113.557198,22.193303],[113.556973,22.193012],[113.556316,22.191999],[113.555613,22.192221],[113.554297,22.192585],[113.553484,22.192765],[113.55299,22.192841],[113.5519,22.192896],[113.551241,22.192898],[113.550782,22.192859],[113.550012,22.192702],[113.549882,22.192716],[113.548575,22.193276],[113.548246,22.193533],[113.547173,22.193356],[113.547129,22.193039],[113.546852,22.192922],[113.545951,22.192252],[113.545848,22.19224],[113.545017,22.192899],[113.544126,22.193404],[113.542809,22.194007],[113.542568,22.194084],[113.540439,22.194489],[113.543813,22.191402],[113.544904,22.190468],[113.545826,22.189594],[113.545858,22.189537],[113.545467,22.189246],[113.544628,22.188373],[113.544516,22.188227],[113.544307,22.187732],[113.544108,22.187427],[113.543528,22.18665],[113.54332,22.186298],[113.543,22.185487],[113.542792,22.184526],[113.54274,22.184083],[113.542723,22.183006],[113.542693,22.182878],[113.542541,22.182834],[113.541053,22.182558],[113.540784,22.182467],[113.540612,22.182325],[113.540524,22.182133],[113.540334,22.181321],[113.540213,22.181147],[113.539972,22.180985],[113.539123,22.180548],[113.539001,22.180295],[113.539053,22.179656],[113.53895,22.179145],[113.538724,22.17867],[113.538499,22.178441],[113.538066,22.178252],[113.537686,22.17819],[113.537253,22.178242],[113.535557,22.178775],[113.535064,22.178014],[113.533314,22.179271],[113.53456,22.174104],[113.535723,22.172545],[113.537107,22.170402],[113.537273,22.16918],[113.540985,22.161571]]]]}},{"type":"Feature","properties":{"adcode":820005,"name":"风顺堂区","center":[113.5419278,22.18736806],"centroid":[113.539116,22.185895],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":4,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.533314,22.179271],[113.535064,22.178014],[113.535557,22.178775],[113.537253,22.178242],[113.537686,22.17819],[113.538066,22.178252],[113.538499,22.178441],[113.538724,22.17867],[113.53895,22.179145],[113.539053,22.179656],[113.539001,22.180295],[113.539123,22.180548],[113.539972,22.180985],[113.540213,22.181147],[113.540334,22.181321],[113.540524,22.182133],[113.540612,22.182325],[113.540784,22.182467],[113.541053,22.182558],[113.542541,22.182834],[113.542693,22.182878],[113.542723,22.183006],[113.54274,22.184083],[113.542792,22.184526],[113.543,22.185487],[113.54332,22.186298],[113.543528,22.18665],[113.544108,22.187427],[113.544307,22.187732],[113.544516,22.188227],[113.544628,22.188373],[113.545467,22.189246],[113.545858,22.189537],[113.545826,22.189594],[113.544904,22.190468],[113.543813,22.191402],[113.540439,22.194489],[113.53954,22.194664],[113.538742,22.191586],[113.534366,22.185627],[113.535335,22.185013],[113.534311,22.183656],[113.533508,22.181603],[113.533314,22.179271]]]]}},{"type":"Feature","properties":{"adcode":820006,"name":"嘉模堂区","center":[113.5587044,22.15375944],"centroid":[113.573356,22.157677],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":5,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.549079,22.149234],[113.551557,22.149168],[113.554042,22.149194],[113.556269,22.149081],[113.556753,22.148961],[113.55948,22.147904],[113.559811,22.147805],[113.560165,22.147866],[113.560659,22.148274],[113.560936,22.148388],[113.561672,22.148306],[113.562044,22.14832],[113.562382,22.148377],[113.563032,22.148573],[113.563335,22.148727],[113.5635,22.148868],[113.563725,22.149183],[113.563855,22.149476],[113.563968,22.149999],[113.564036,22.150455],[113.564201,22.150787],[113.564357,22.150883],[113.565528,22.151392],[113.565881,22.151391],[113.566428,22.15116],[113.566713,22.150915],[113.566852,22.150494],[113.567061,22.150276],[113.567987,22.149961],[113.568195,22.149819],[113.56835,22.149605],[113.568611,22.149024],[113.568663,22.148702],[113.568636,22.148547],[113.568481,22.148172],[113.568489,22.147816],[113.568777,22.147547],[113.569179,22.147555],[113.56939,22.147639],[113.571235,22.148645],[113.571358,22.148748],[113.571377,22.14902],[113.571106,22.149549],[113.571106,22.149712],[113.571227,22.149876],[113.571513,22.150105],[113.571981,22.150426],[113.573593,22.151359],[113.573965,22.151521],[113.574199,22.151531],[113.574502,22.151311],[113.575022,22.15065],[113.57531,22.15041],[113.575724,22.150234],[113.589178,22.144281],[113.601946,22.138113],[113.593091,22.162285],[113.586631,22.174165],[113.559694,22.166727],[113.544778,22.162616],[113.544681,22.162679],[113.544576,22.162559],[113.540985,22.161571],[113.544638,22.154083],[113.549079,22.149234]]]]}},{"type":"Feature","properties":{"adcode":820007,"name":"路凼填海区","center":[113.5695992,22.13663],"centroid":[113.56766,22.139899],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":6,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.553916,22.125215],[113.563949,22.127289],[113.56407,22.127443],[113.564391,22.128296],[113.564529,22.128445],[113.564798,22.128485],[113.567266,22.128386],[113.567631,22.128485],[113.567856,22.128712],[113.56789,22.128884],[113.568003,22.131993],[113.568107,22.132223],[113.568324,22.132349],[113.568618,22.132386],[113.571408,22.132305],[113.572257,22.132331],[113.573184,22.13248],[113.574068,22.132806],[113.574848,22.133293],[113.575827,22.134051],[113.57659,22.134553],[113.577257,22.134855],[113.57802,22.135011],[113.579329,22.135134],[113.580612,22.135239],[113.581374,22.135379],[113.582312,22.135821],[113.583056,22.136473],[113.584062,22.137923],[113.589178,22.144281],[113.575724,22.150234],[113.57531,22.15041],[113.575022,22.15065],[113.574502,22.151311],[113.574199,22.151531],[113.573965,22.151521],[113.573593,22.151359],[113.571981,22.150426],[113.571513,22.150105],[113.571227,22.149876],[113.571106,22.149712],[113.571106,22.149549],[113.571377,22.14902],[113.571358,22.148748],[113.571235,22.148645],[113.56939,22.147639],[113.569179,22.147555],[113.568777,22.147547],[113.568489,22.147816],[113.568481,22.148172],[113.568636,22.148547],[113.568663,22.148702],[113.568611,22.149024],[113.56835,22.149605],[113.568195,22.149819],[113.567987,22.149961],[113.567061,22.150276],[113.566852,22.150494],[113.566713,22.150915],[113.566428,22.15116],[113.565881,22.151391],[113.565528,22.151392],[113.564357,22.150883],[113.564201,22.150787],[113.564036,22.150455],[113.563968,22.149999],[113.563855,22.149476],[113.563725,22.149183],[113.5635,22.148868],[113.563335,22.148727],[113.563032,22.148573],[113.562382,22.148377],[113.562044,22.14832],[113.561672,22.148306],[113.560936,22.148388],[113.560659,22.148274],[113.560165,22.147866],[113.559811,22.147805],[113.55948,22.147904],[113.556753,22.148961],[113.556269,22.149081],[113.554042,22.149194],[113.551557,22.149168],[113.549079,22.149234],[113.550344,22.14785],[113.554638,22.142429],[113.553916,22.125215]]]]}},{"type":"Feature","properties":{"adcode":820008,"name":"圣方济各堂区","center":[113.5599542,22.12348639],"centroid":[113.577403,22.123389],"childrenNum":0,"level":"district","parent":{"adcode":820000},"subFeatureIndex":7,"acroutes":[100000,820000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.553916,22.125215],[113.553389,22.112664],[113.554447,22.107312],[113.559643,22.106216],[113.561045,22.106214],[113.576328,22.108147],[113.578953,22.108929],[113.580194,22.109694],[113.597564,22.125115],[113.603681,22.132371],[113.603873,22.132864],[113.601946,22.138113],[113.589178,22.144281],[113.584062,22.137923],[113.583056,22.136473],[113.582312,22.135821],[113.581374,22.135379],[113.580612,22.135239],[113.579329,22.135134],[113.57802,22.135011],[113.577257,22.134855],[113.57659,22.134553],[113.575827,22.134051],[113.574848,22.133293],[113.574068,22.132806],[113.573184,22.13248],[113.572257,22.132331],[113.571408,22.132305],[113.568618,22.132386],[113.568324,22.132349],[113.568107,22.132223],[113.568003,22.131993],[113.56789,22.128884],[113.567856,22.128712],[113.567631,22.128485],[113.567266,22.128386],[113.564798,22.128485],[113.564529,22.128445],[113.564391,22.128296],[113.56407,22.127443],[113.563949,22.127289],[113.553916,22.125215]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/china.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/china.json new file mode 100644 index 0000000..4f1250c --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/china.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"adcode":110000,"name":"北京市","center":[116.405285,39.904989],"centroid":[116.41995,40.18994],"childrenNum":16,"level":"province","parent":{"adcode":100000},"subFeatureIndex":0,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.348611,40.581141],[117.389879,40.561593],[117.429915,40.576141],[117.412669,40.605226],[117.467487,40.649738],[117.467487,40.649738],[117.501364,40.636569],[117.514914,40.660181],[117.493973,40.675161],[117.408973,40.686961],[117.342451,40.673799],[117.319662,40.657911],[117.278394,40.664267],[117.208177,40.694675],[117.117018,40.70012],[117.11209,40.707379],[117.012308,40.693767],[116.964881,40.709647],[116.926692,40.745022],[116.924229,40.773581],[116.848468,40.839264],[116.81336,40.848319],[116.759773,40.889954],[116.713577,40.909858],[116.722201,40.927495],[116.677853,40.970888],[116.698795,41.021477],[116.688324,41.044501],[116.647672,41.059394],[116.615643,41.053076],[116.623034,41.021026],[116.598397,40.974503],[116.5676,40.992574],[116.519557,40.98128],[116.519557,40.98128],[116.455499,40.980828],[116.447492,40.953715],[116.477057,40.899907],[116.398216,40.90624],[116.370499,40.94377],[116.339702,40.929303],[116.334159,40.90443],[116.438253,40.81934],[116.46597,40.774487],[116.453651,40.765876],[116.316912,40.772221],[116.311369,40.754996],[116.273181,40.762703],[116.247311,40.791707],[116.22021,40.744115],[116.204812,40.740035],[116.171551,40.695582],[116.162928,40.662451],[116.133979,40.666536],[116.09887,40.630665],[116.005247,40.583868],[115.982457,40.578868],[115.971986,40.6025],[115.907929,40.617493],[115.885139,40.595229],[115.827857,40.587504],[115.819849,40.55932],[115.784741,40.55841],[115.755176,40.540221],[115.736082,40.503372],[115.781045,40.49336],[115.771806,40.443734],[115.864197,40.359422],[115.917784,40.354405],[115.95166,40.281852],[115.968907,40.264045],[115.89869,40.234354],[115.870356,40.185909],[115.855574,40.188652],[115.847567,40.147036],[115.806299,40.15344],[115.773654,40.176307],[115.75456,40.145663],[115.75456,40.145663],[115.599959,40.119583],[115.59072,40.096239],[115.527278,40.076092],[115.485394,40.040364],[115.454597,40.029825],[115.450286,39.992697],[115.428728,39.984443],[115.426264,39.950502],[115.481083,39.935819],[115.522967,39.899099],[115.515575,39.892212],[115.515575,39.892212],[115.526046,39.87568],[115.514344,39.837549],[115.567314,39.816407],[115.552532,39.794799],[115.50572,39.784222],[115.483547,39.798477],[115.483547,39.798477],[115.443511,39.785601],[115.439815,39.752022],[115.486626,39.741899],[115.491554,39.670074],[115.478619,39.650723],[115.478619,39.650723],[115.522351,39.640124],[115.518039,39.597252],[115.545756,39.618922],[115.587024,39.589873],[115.633836,39.599557],[115.633836,39.599557],[115.667712,39.615234],[115.698509,39.577881],[115.698509,39.577881],[115.699125,39.570039],[115.699125,39.570039],[115.716988,39.56035],[115.716988,39.56035],[115.718835,39.553891],[115.718835,39.553891],[115.720683,39.551122],[115.720683,39.551122],[115.722531,39.5442],[115.721299,39.543738],[115.722531,39.5442],[115.722531,39.543738],[115.721299,39.543738],[115.722531,39.543738],[115.724995,39.5442],[115.724995,39.5442],[115.738545,39.540046],[115.738545,39.539585],[115.738545,39.540046],[115.738545,39.539585],[115.752712,39.515581],[115.806299,39.510041],[115.806299,39.510041],[115.821081,39.522968],[115.821081,39.522968],[115.828473,39.541431],[115.867893,39.546507],[115.867893,39.546507],[115.91532,39.582955],[115.91532,39.582955],[115.910393,39.600479],[115.910393,39.600479],[115.957204,39.560812],[115.978146,39.595868],[115.995392,39.576958],[116.026189,39.587567],[116.036044,39.571884],[116.09887,39.575113],[116.130283,39.567732],[116.151841,39.583416],[116.198652,39.589412],[116.240536,39.564041],[116.257782,39.500344],[116.307057,39.488337],[116.337854,39.455536],[116.361876,39.455074],[116.361876,39.455074],[116.434557,39.442597],[116.454883,39.453226],[116.444412,39.482332],[116.411767,39.482794],[116.401912,39.528046],[116.443796,39.510041],[116.437637,39.526661],[116.478289,39.535431],[116.473361,39.552968],[116.50847,39.551122],[116.524484,39.596329],[116.592237,39.621227],[116.592237,39.621227],[116.620571,39.601863],[116.664918,39.605552],[116.723432,39.59264],[116.724048,39.59264],[116.723432,39.59264],[116.724048,39.59264],[116.726512,39.595407],[116.726512,39.595407],[116.709266,39.618],[116.748686,39.619844],[116.79057,39.595868],[116.812128,39.615695],[116.8497,39.66777],[116.906366,39.677444],[116.90575,39.688037],[116.889736,39.687576],[116.887272,39.72533],[116.916837,39.731314],[116.902055,39.763523],[116.949482,39.778703],[116.918069,39.84628],[116.907598,39.832494],[116.865714,39.843982],[116.812128,39.889916],[116.78441,39.891294],[116.782563,39.947749],[116.757925,39.967934],[116.781331,40.034866],[116.820135,40.02845],[116.831222,40.051359],[116.867562,40.041739],[116.927924,40.055024],[116.945171,40.04128],[117.025243,40.030283],[117.051728,40.059605],[117.105315,40.074261],[117.105315,40.074261],[117.140423,40.064185],[117.159517,40.077008],[117.204481,40.069681],[117.210024,40.082045],[117.224191,40.094865],[117.224191,40.094865],[117.254988,40.114548],[117.254988,40.114548],[117.254988,40.114548],[117.274082,40.105852],[117.307343,40.136971],[117.349227,40.136513],[117.367089,40.172649],[117.367089,40.173106],[117.367089,40.173106],[117.367089,40.172649],[117.383719,40.188195],[117.389879,40.227958],[117.351075,40.229786],[117.331365,40.289613],[117.295024,40.2782],[117.271618,40.325211],[117.271618,40.325211],[117.243285,40.369453],[117.226039,40.368997],[117.234046,40.417312],[117.263611,40.442367],[117.208793,40.501552],[117.262995,40.512927],[117.247597,40.539766],[117.269771,40.560684],[117.348611,40.581141],[117.348611,40.581141]]]]}},{"type":"Feature","properties":{"adcode":120000,"name":"天津市","center":[117.190182,39.125596],"centroid":[117.347043,39.288036],"childrenNum":16,"level":"province","parent":{"adcode":100000},"subFeatureIndex":1,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.765602,39.400527],[117.846906,39.407926],[117.871543,39.411625],[117.870311,39.455074],[117.899877,39.474479],[117.912195,39.517428],[117.912195,39.517428],[117.904804,39.533585],[117.933753,39.574191],[117.868464,39.59679],[117.829659,39.589873],[117.766834,39.598635],[117.753899,39.579726],[117.753899,39.579726],[117.745276,39.547892],[117.715711,39.529892],[117.707088,39.576036],[117.684914,39.58895],[117.654117,39.575113],[117.637486,39.603246],[117.66274,39.636437],[117.668899,39.666849],[117.627015,39.703693],[117.57774,39.726711],[117.595603,39.74604],[117.56111,39.754782],[117.546327,39.775943],[117.561726,39.799856],[117.529081,39.859144],[117.529081,39.859144],[117.508139,39.901854],[117.508139,39.901854],[117.512451,39.90874],[117.512451,39.90874],[117.513067,39.910576],[117.513067,39.910576],[117.514914,39.946832],[117.534625,39.954631],[117.546327,39.999116],[117.594987,39.994531],[117.594987,39.994531],[117.614697,39.97252],[117.671363,39.973896],[117.691073,39.984902],[117.756363,39.965181],[117.781616,39.966558],[117.781616,39.966558],[117.795167,39.996823],[117.795167,39.996823],[117.793319,40.005534],[117.793319,40.005534],[117.768681,40.022034],[117.768681,40.022034],[117.744044,40.018368],[117.74774,40.047236],[117.776073,40.059605],[117.752667,40.081588],[117.71879,40.082045],[117.71879,40.082045],[117.675059,40.082045],[117.655965,40.109514],[117.655965,40.109514],[117.654117,40.114548],[117.654117,40.114548],[117.651653,40.122786],[117.651653,40.122786],[117.613465,40.158014],[117.613465,40.158014],[117.609769,40.160301],[117.609769,40.160301],[117.576508,40.178593],[117.571581,40.219276],[117.548791,40.232527],[117.505059,40.227044],[117.450241,40.252627],[117.415748,40.248973],[117.389879,40.227958],[117.383719,40.188195],[117.367089,40.172649],[117.367089,40.173106],[117.367089,40.173106],[117.367089,40.172649],[117.349227,40.136513],[117.307343,40.136971],[117.274082,40.105852],[117.254988,40.114548],[117.254988,40.114548],[117.254988,40.114548],[117.224191,40.094865],[117.224191,40.094865],[117.210024,40.082045],[117.192162,40.066475],[117.198322,39.992697],[117.150894,39.944996],[117.162597,39.876598],[117.162597,39.876598],[117.227887,39.852712],[117.247597,39.860981],[117.251908,39.834332],[117.192162,39.832953],[117.156438,39.817326],[117.15767,39.796638],[117.205713,39.763984],[117.161981,39.748801],[117.165061,39.718886],[117.165061,39.718886],[117.177996,39.645194],[117.152742,39.623532],[117.10901,39.625375],[117.10901,39.625375],[117.016004,39.653949],[116.983359,39.638742],[116.983359,39.638742],[116.964265,39.64335],[116.948866,39.680668],[116.948866,39.680668],[116.944555,39.695405],[116.944555,39.695405],[116.932236,39.706456],[116.932236,39.706456],[116.90575,39.688037],[116.906366,39.677444],[116.8497,39.66777],[116.812128,39.615695],[116.808432,39.576497],[116.78749,39.554352],[116.819519,39.528507],[116.820751,39.482332],[116.785026,39.465702],[116.832454,39.435664],[116.876185,39.43474],[116.839845,39.413474],[116.840461,39.378326],[116.818287,39.3737],[116.829374,39.338994],[116.870642,39.357506],[116.889736,39.338068],[116.87249,39.291304],[116.881729,39.225966],[116.881729,39.225966],[116.855859,39.215766],[116.870026,39.153607],[116.909446,39.150822],[116.912526,39.110898],[116.91191,39.111362],[116.91191,39.111362],[116.912526,39.110898],[116.871874,39.054688],[116.812744,39.05097],[116.812744,39.05097],[116.783179,39.05097],[116.783179,39.05097],[116.754229,39.034701],[116.754229,39.034701],[116.754845,39.003084],[116.72836,38.975174],[116.708034,38.931892],[116.722201,38.896968],[116.723432,38.852706],[116.75115,38.831264],[116.737599,38.784629],[116.746222,38.754299],[116.794265,38.744498],[116.794265,38.744498],[116.858939,38.741231],[116.877417,38.680522],[116.948866,38.689398],[116.950714,38.689398],[116.95133,38.689398],[116.950714,38.689398],[116.948866,38.689398],[116.95133,38.689398],[117.038793,38.688464],[117.068358,38.680522],[117.055424,38.639398],[117.070822,38.608072],[117.109626,38.584685],[117.150894,38.617892],[117.183539,38.61836],[117.183539,38.61836],[117.213104,38.639866],[117.213104,38.639866],[117.258684,38.608072],[117.258684,38.608072],[117.238358,38.580943],[117.25314,38.556143],[117.368937,38.564566],[117.432379,38.601524],[117.47919,38.616489],[117.55803,38.613683],[117.639334,38.626776],[117.65658,38.66043],[117.729261,38.680055],[117.740964,38.700141],[117.740964,38.753833],[117.671363,38.772032],[117.646725,38.788827],[117.64611,38.828933],[117.752051,38.847579],[117.778536,38.869016],[117.847522,38.855502],[117.875855,38.920252],[117.898029,38.948649],[117.855529,38.957492],[117.837667,39.057011],[117.871543,39.122506],[117.96455,39.172631],[117.977485,39.206028],[118.032919,39.219939],[118.034767,39.218548],[118.064948,39.231065],[118.064948,39.256094],[118.036615,39.264898],[118.024296,39.289451],[118.024296,39.289451],[117.982412,39.298714],[117.982412,39.298714],[117.979333,39.300566],[117.979333,39.300566],[117.973173,39.312143],[117.973173,39.312143],[117.965782,39.314921],[117.965782,39.314921],[117.919587,39.318162],[117.919587,39.318162],[117.88879,39.332051],[117.854913,39.328348],[117.854297,39.328348],[117.854913,39.328348],[117.854297,39.328348],[117.850601,39.363984],[117.850601,39.363984],[117.810565,39.354729],[117.805022,39.373237],[117.784696,39.376938],[117.74466,39.354729],[117.670747,39.357969],[117.669515,39.322792],[117.594987,39.349176],[117.536472,39.338068],[117.521074,39.357043],[117.570965,39.404689],[117.601146,39.419485],[117.614081,39.407001],[117.668899,39.412087],[117.673211,39.386652],[117.699696,39.407463],[117.765602,39.400527]]],[[[117.805022,39.373237],[117.852449,39.380639],[117.846906,39.407926],[117.765602,39.400527],[117.784696,39.376938],[117.805022,39.373237]]]]}},{"type":"Feature","properties":{"adcode":130000,"name":"河北省","center":[114.502461,38.045474],"childrenNum":11,"level":"province","parent":{"adcode":100000},"subFeatureIndex":2,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.467487,40.649738],[117.412669,40.605226],[117.429915,40.576141],[117.389879,40.561593],[117.348611,40.581141],[117.348611,40.581141],[117.269771,40.560684],[117.247597,40.539766],[117.262995,40.512927],[117.208793,40.501552],[117.263611,40.442367],[117.234046,40.417312],[117.226039,40.368997],[117.243285,40.369453],[117.271618,40.325211],[117.271618,40.325211],[117.295024,40.2782],[117.331365,40.289613],[117.351075,40.229786],[117.389879,40.227958],[117.415748,40.248973],[117.450241,40.252627],[117.505059,40.227044],[117.548791,40.232527],[117.571581,40.219276],[117.576508,40.178593],[117.609769,40.160301],[117.609769,40.160301],[117.613465,40.158014],[117.613465,40.158014],[117.651653,40.122786],[117.651653,40.122786],[117.654117,40.114548],[117.654117,40.114548],[117.655965,40.109514],[117.655965,40.109514],[117.675059,40.082045],[117.71879,40.082045],[117.71879,40.082045],[117.752667,40.081588],[117.776073,40.059605],[117.74774,40.047236],[117.744044,40.018368],[117.768681,40.022034],[117.768681,40.022034],[117.793319,40.005534],[117.793319,40.005534],[117.795167,39.996823],[117.795167,39.996823],[117.781616,39.966558],[117.781616,39.966558],[117.756363,39.965181],[117.691073,39.984902],[117.671363,39.973896],[117.614697,39.97252],[117.594987,39.994531],[117.594987,39.994531],[117.546327,39.999116],[117.534625,39.954631],[117.514914,39.946832],[117.513067,39.910576],[117.513067,39.910576],[117.512451,39.90874],[117.512451,39.90874],[117.508139,39.901854],[117.508139,39.901854],[117.529081,39.859144],[117.529081,39.859144],[117.561726,39.799856],[117.546327,39.775943],[117.56111,39.754782],[117.595603,39.74604],[117.57774,39.726711],[117.627015,39.703693],[117.668899,39.666849],[117.66274,39.636437],[117.637486,39.603246],[117.654117,39.575113],[117.684914,39.58895],[117.707088,39.576036],[117.715711,39.529892],[117.745276,39.547892],[117.753899,39.579726],[117.753899,39.579726],[117.766834,39.598635],[117.829659,39.589873],[117.868464,39.59679],[117.933753,39.574191],[117.904804,39.533585],[117.912195,39.517428],[117.912195,39.517428],[117.899877,39.474479],[117.870311,39.455074],[117.871543,39.411625],[117.846906,39.407926],[117.852449,39.380639],[117.805022,39.373237],[117.810565,39.354729],[117.850601,39.363984],[117.850601,39.363984],[117.854297,39.328348],[117.854913,39.328348],[117.854297,39.328348],[117.854913,39.328348],[117.88879,39.332051],[117.919587,39.318162],[117.919587,39.318162],[117.965782,39.314921],[117.965782,39.314921],[117.973173,39.312143],[117.973173,39.312143],[117.979333,39.300566],[117.979333,39.300566],[117.982412,39.298714],[117.982412,39.298714],[118.024296,39.289451],[118.024296,39.289451],[118.036615,39.264898],[118.064948,39.256094],[118.064948,39.231065],[118.034767,39.218548],[118.026144,39.201854],[118.070492,39.213911],[118.077883,39.201854],[118.12531,39.182838],[118.162883,39.136433],[118.1906,39.080708],[118.225092,39.034701],[118.319331,39.009594],[118.366143,39.016104],[118.377845,38.971917],[118.491178,38.909077],[118.539837,38.910008],[118.604511,38.971452],[118.570634,38.999363],[118.533062,39.090928],[118.588497,39.107648],[118.578642,39.130863],[118.637156,39.157319],[118.76096,39.133648],[118.814546,39.138754],[118.857662,39.162888],[118.897082,39.151286],[118.920488,39.171703],[118.951285,39.178662],[118.896466,39.139683],[118.890307,39.118792],[118.926031,39.123435],[118.97777,39.163352],[119.023966,39.187012],[119.038132,39.211593],[119.096031,39.24219],[119.121284,39.281576],[119.185342,39.342234],[119.272805,39.363521],[119.317153,39.4107],[119.316537,39.437051],[119.269726,39.498497],[119.366428,39.734996],[119.474217,39.813189],[119.536427,39.809052],[119.520413,39.840306],[119.540739,39.888079],[119.588166,39.910576],[119.620195,39.904609],[119.642369,39.925264],[119.681789,39.922511],[119.726137,39.940867],[119.787115,39.950502],[119.820375,39.979399],[119.842549,39.956007],[119.872114,39.960594],[119.854252,39.98857],[119.845629,40.000949],[119.845629,40.000949],[119.854252,40.033033],[119.81668,40.050443],[119.81668,40.050443],[119.787115,40.041739],[119.787115,40.041739],[119.783419,40.046778],[119.783419,40.046778],[119.772332,40.08113],[119.736608,40.104936],[119.760629,40.136056],[119.745847,40.207851],[119.716898,40.195966],[119.671934,40.23938],[119.639289,40.231613],[119.639289,40.231613],[119.651608,40.271808],[119.598021,40.334335],[119.586934,40.375381],[119.604797,40.455119],[119.553674,40.502007],[119.572152,40.523846],[119.559217,40.547952],[119.503783,40.553864],[119.477913,40.533399],[119.429254,40.540221],[119.30237,40.530215],[119.256175,40.543404],[119.22045,40.569322],[119.230921,40.603863],[119.177951,40.609315],[119.162552,40.600228],[119.14469,40.632482],[119.184726,40.680153],[119.165632,40.69286],[119.115125,40.666536],[119.054763,40.664721],[119.028277,40.692406],[119.011031,40.687414],[118.96114,40.72008],[118.950053,40.747743],[118.895234,40.75409],[118.907553,40.775394],[118.878604,40.783098],[118.845959,40.822057],[118.873061,40.847866],[118.90201,40.960946],[118.916792,40.969984],[118.977154,40.959138],[118.977154,40.959138],[119.00056,40.967273],[119.013495,41.007479],[118.951901,41.018317],[118.937118,41.052625],[118.964836,41.079246],[119.037516,41.067516],[119.080632,41.095936],[119.081248,41.131555],[119.126212,41.138767],[119.189038,41.198234],[119.169943,41.222996],[119.204436,41.222546],[119.209364,41.244599],[119.2494,41.279689],[119.239545,41.31431],[119.211827,41.308016],[119.197661,41.282837],[119.168712,41.294978],[119.092951,41.293629],[118.980234,41.305769],[118.949437,41.317906],[118.890923,41.300823],[118.844727,41.342622],[118.843496,41.374516],[118.770199,41.352956],[118.741866,41.324198],[118.677192,41.35026],[118.629765,41.346666],[118.528135,41.355202],[118.412338,41.331838],[118.380309,41.312062],[118.348896,41.342622],[118.361215,41.384844],[118.348896,41.428384],[118.327338,41.450816],[118.271904,41.471446],[118.315636,41.512688],[118.302701,41.55256],[118.215237,41.59554],[118.206614,41.650566],[118.159187,41.67605],[118.155491,41.712694],[118.132702,41.733241],[118.140093,41.784134],[118.178281,41.814917],[118.236179,41.80778],[118.247266,41.773869],[118.29223,41.772976],[118.335346,41.845241],[118.340273,41.87243],[118.268824,41.930336],[118.306396,41.940131],[118.313788,41.98819],[118.291614,42.007759],[118.239875,42.024655],[118.286686,42.033991],[118.296541,42.057545],[118.27252,42.083312],[118.239259,42.092639],[118.212774,42.081091],[118.220165,42.058434],[118.194296,42.031324],[118.116687,42.037102],[118.155491,42.081091],[118.097593,42.105072],[118.089586,42.12283],[118.106216,42.172082],[118.033535,42.199132],[117.977485,42.229716],[117.974405,42.25054],[118.047702,42.280656],[118.060021,42.298364],[118.008898,42.346595],[118.024296,42.385064],[117.997811,42.416884],[117.874007,42.510038],[117.856761,42.539148],[117.797631,42.585431],[117.801326,42.612744],[117.779768,42.61847],[117.708935,42.588515],[117.667051,42.582347],[117.60053,42.603054],[117.537088,42.603054],[117.530313,42.590278],[117.475494,42.602613],[117.435458,42.585431],[117.434226,42.557224],[117.387415,42.517537],[117.387415,42.517537],[117.410205,42.519743],[117.413284,42.471645],[117.390495,42.461933],[117.332596,42.46105],[117.332596,42.46105],[117.275314,42.481797],[117.275314,42.481797],[117.188467,42.468114],[117.188467,42.468114],[117.135496,42.468996],[117.09546,42.484004],[117.080061,42.463699],[117.080061,42.463699],[117.01662,42.456193],[117.01662,42.456193],[117.009228,42.44957],[117.009228,42.44957],[117.005533,42.43367],[117.005533,42.43367],[116.99075,42.425719],[116.99075,42.425719],[116.974736,42.426603],[116.974736,42.426603],[116.97104,42.427486],[116.97104,42.427486],[116.944555,42.415116],[116.944555,42.415116],[116.936547,42.410256],[116.936547,42.410256],[116.921765,42.403628],[116.921765,42.403628],[116.910062,42.395231],[116.910062,42.395231],[116.910678,42.394789],[116.910678,42.394789],[116.886656,42.366496],[116.897743,42.297479],[116.918685,42.229716],[116.903287,42.190708],[116.789338,42.200462],[116.825062,42.155669],[116.850316,42.156556],[116.890352,42.092639],[116.879881,42.018431],[116.796113,41.977958],[116.748686,41.984186],[116.727744,41.951259],[116.66923,41.947698],[116.639049,41.929891],[116.597165,41.935679],[116.553433,41.928555],[116.510933,41.974399],[116.4826,41.975734],[116.453651,41.945917],[116.393289,41.942802],[116.414231,41.982407],[116.373579,42.009983],[116.310137,41.997086],[116.298434,41.96817],[116.223906,41.932562],[116.212819,41.885352],[116.194341,41.861734],[116.122892,41.861734],[116.106877,41.831419],[116.129051,41.805996],[116.09887,41.776547],[116.034196,41.782795],[116.007095,41.79752],[116.007095,41.797966],[116.007095,41.79752],[116.007095,41.797966],[115.994776,41.828743],[115.954124,41.874213],[115.916552,41.945027],[115.85311,41.927665],[115.834632,41.93835],[115.811226,41.912525],[115.726227,41.870202],[115.688038,41.867528],[115.654162,41.829189],[115.57409,41.80555],[115.519887,41.76762],[115.488474,41.760924],[115.42996,41.728775],[115.346808,41.712247],[115.319091,41.691693],[115.360975,41.661297],[115.345576,41.635807],[115.377605,41.603148],[115.310468,41.592854],[115.290142,41.622835],[115.26612,41.616124],[115.256881,41.580768],[115.20391,41.571367],[115.195287,41.602253],[115.0992,41.62373],[115.056085,41.602253],[115.016049,41.615229],[114.860832,41.60091],[114.895325,41.636255],[114.902716,41.695715],[114.89594,41.76762],[114.868839,41.813579],[114.922426,41.825175],[114.939056,41.846132],[114.923658,41.871093],[114.915035,41.960605],[114.9021,42.015763],[114.860832,42.054879],[114.86268,42.097967],[114.825723,42.139695],[114.79431,42.149457],[114.789383,42.130819],[114.75489,42.115727],[114.675434,42.12061],[114.647717,42.109512],[114.560254,42.132595],[114.510978,42.110844],[114.502355,42.06732],[114.480181,42.064654],[114.467863,42.025989],[114.511594,41.981962],[114.478334,41.951704],[114.419203,41.942356],[114.352066,41.953484],[114.343443,41.926774],[114.282465,41.863517],[114.200545,41.789934],[114.215328,41.75646],[114.206704,41.7386],[114.237501,41.698843],[114.215328,41.68499],[114.259059,41.623282],[114.226414,41.616572],[114.221487,41.582111],[114.230726,41.513584],[114.101379,41.537779],[114.032394,41.529715],[113.976959,41.505966],[113.953553,41.483553],[113.933227,41.487139],[113.919677,41.454404],[113.877793,41.431076],[113.871017,41.413126],[113.94493,41.392477],[113.92522,41.325546],[113.899351,41.316108],[113.914749,41.294529],[113.95109,41.282837],[113.971416,41.239649],[113.992357,41.269794],[114.016379,41.231999],[113.996669,41.19238],[113.960945,41.171211],[113.920293,41.172112],[113.877793,41.115777],[113.819279,41.09774],[113.868554,41.06887],[113.973263,40.983087],[113.994821,40.938798],[114.057647,40.925234],[114.041633,40.917546],[114.055183,40.867782],[114.073661,40.857372],[114.044712,40.830661],[114.080437,40.790348],[114.104458,40.797597],[114.103227,40.770861],[114.134639,40.737314],[114.162357,40.71373],[114.183299,40.67153],[114.236269,40.607043],[114.283081,40.590685],[114.273842,40.552954],[114.293552,40.55159],[114.282465,40.494725],[114.267066,40.474242],[114.299711,40.44009],[114.286161,40.425057],[114.31203,40.372645],[114.381015,40.36307],[114.390254,40.351213],[114.438914,40.371733],[114.481413,40.34802],[114.530688,40.345283],[114.510978,40.302851],[114.46971,40.268155],[114.406269,40.246232],[114.362537,40.249886],[114.292936,40.230242],[114.255364,40.236182],[114.235654,40.198252],[114.180219,40.191395],[114.135871,40.175392],[114.097683,40.193681],[114.073046,40.168533],[114.073046,40.168533],[114.101995,40.099901],[114.086596,40.071513],[114.045944,40.056856],[114.018227,40.103563],[113.989278,40.11226],[113.959097,40.033491],[113.910438,40.015618],[114.029314,39.985819],[114.028082,39.959218],[114.047176,39.916085],[114.067502,39.922511],[114.17406,39.897722],[114.212248,39.918839],[114.229494,39.899558],[114.204241,39.885324],[114.215943,39.8619],[114.286776,39.871087],[114.285545,39.858225],[114.395182,39.867412],[114.406885,39.833413],[114.390254,39.819165],[114.41674,39.775943],[114.409964,39.761683],[114.408117,39.652106],[114.431522,39.613851],[114.49558,39.608318],[114.51529,39.564964],[114.568877,39.573729],[114.532536,39.486027],[114.501739,39.476789],[114.496812,39.438437],[114.469095,39.400989],[114.466631,39.329736],[114.430906,39.307513],[114.437066,39.259337],[114.416124,39.242654],[114.47587,39.21623],[114.443841,39.174023],[114.388406,39.176807],[114.360689,39.134112],[114.369928,39.107648],[114.345907,39.075133],[114.252284,39.073739],[114.180835,39.049111],[114.157429,39.061194],[114.10877,39.052364],[114.082901,39.09325],[114.082901,39.09325],[114.064422,39.094179],[114.050872,39.135969],[114.006524,39.122971],[113.994821,39.095572],[113.961561,39.100681],[113.930148,39.063517],[113.898119,39.067699],[113.80696,38.989595],[113.776779,38.986804],[113.76754,38.959819],[113.776163,38.885788],[113.795257,38.860628],[113.855619,38.828933],[113.836525,38.795824],[113.839605,38.7585],[113.802648,38.763166],[113.775547,38.709949],[113.720728,38.713218],[113.70225,38.651551],[113.612939,38.645942],[113.603084,38.587024],[113.561816,38.558483],[113.546417,38.492936],[113.583374,38.459671],[113.537794,38.417952],[113.525475,38.383245],[113.557504,38.343359],[113.54457,38.270569],[113.570439,38.237202],[113.598772,38.22733],[113.64312,38.232031],[113.678844,38.20523],[113.711489,38.213695],[113.720728,38.174656],[113.797105,38.162894],[113.831597,38.16854],[113.811271,38.117707],[113.876561,38.055059],[113.872249,37.990471],[113.901198,37.984811],[113.936307,37.922993],[113.959097,37.906468],[113.976959,37.816696],[114.006524,37.813386],[114.044712,37.761834],[113.996669,37.730128],[113.993589,37.706932],[114.068118,37.721608],[114.12848,37.698409],[114.139567,37.675676],[114.115545,37.619761],[114.118625,37.59084],[114.036705,37.494037],[114.014531,37.42468],[113.973879,37.40329],[113.962792,37.355734],[113.90243,37.310052],[113.886416,37.239095],[113.853155,37.215269],[113.832213,37.167594],[113.773083,37.151855],[113.773699,37.107004],[113.758301,37.075497],[113.788482,37.059739],[113.771851,37.016745],[113.791561,36.98759],[113.76138,36.956034],[113.792793,36.894796],[113.773083,36.85506],[113.731815,36.858891],[113.731815,36.878521],[113.696707,36.882351],[113.676381,36.855539],[113.680692,36.789907],[113.600004,36.752995],[113.549497,36.752515],[113.535946,36.732373],[113.499606,36.740527],[113.465113,36.707908],[113.506997,36.705029],[113.476816,36.655114],[113.486671,36.635427],[113.54457,36.62342],[113.539642,36.594116],[113.569823,36.585947],[113.588917,36.547974],[113.559968,36.528741],[113.554425,36.494589],[113.587069,36.460904],[113.635729,36.451277],[113.670221,36.425278],[113.708409,36.423352],[113.731199,36.363135],[113.755221,36.366026],[113.813119,36.332285],[113.856851,36.329392],[113.84946,36.347711],[113.882104,36.353977],[113.911054,36.314927],[113.962792,36.353977],[113.981887,36.31782],[114.002828,36.334214],[114.056415,36.329392],[114.04348,36.303353],[114.080437,36.269585],[114.129096,36.280199],[114.175907,36.264759],[114.170364,36.245938],[114.170364,36.245938],[114.203009,36.245456],[114.2104,36.272962],[114.241197,36.251247],[114.257827,36.263794],[114.299095,36.245938],[114.345291,36.255591],[114.356378,36.230492],[114.408117,36.224699],[114.417356,36.205868],[114.466015,36.197658],[114.480181,36.177855],[114.533152,36.171575],[114.586739,36.141133],[114.588587,36.118414],[114.640326,36.137266],[114.720398,36.140166],[114.734564,36.15563],[114.771521,36.124699],[114.857752,36.127599],[114.858368,36.144516],[114.912571,36.140649],[114.926737,36.089403],[114.914419,36.052155],[114.998186,36.069572],[115.04623,36.112613],[115.048693,36.161912],[115.06286,36.178338],[115.104744,36.172058],[115.12507,36.209731],[115.1842,36.193312],[115.201446,36.210214],[115.201446,36.210214],[115.202678,36.209248],[115.202678,36.209248],[115.202678,36.208765],[115.202678,36.208765],[115.242098,36.19138],[115.279055,36.13775],[115.30246,36.127599],[115.312931,36.088436],[115.365902,36.099074],[115.376989,36.128083],[115.450902,36.152248],[115.465068,36.170125],[115.483547,36.148865],[115.474923,36.248352],[115.466916,36.258969],[115.466916,36.258969],[115.462605,36.276339],[115.417025,36.292742],[115.423185,36.32216],[115.366518,36.30914],[115.368982,36.342409],[115.340033,36.398307],[115.297533,36.413239],[115.317243,36.454166],[115.291374,36.460423],[115.272895,36.497476],[115.33141,36.550378],[115.355431,36.627262],[115.365902,36.621979],[115.420105,36.686795],[115.451518,36.702151],[115.479851,36.760187],[115.524815,36.763543],[115.683727,36.808117],[115.71206,36.883308],[115.75764,36.902453],[115.79706,36.968945],[115.776734,36.992848],[115.85619,37.060694],[115.888219,37.112254],[115.879596,37.150901],[115.91224,37.177132],[115.909777,37.20669],[115.969523,37.239572],[115.975682,37.337179],[116.024341,37.360015],[116.085935,37.373809],[116.106261,37.368577],[116.169087,37.384271],[116.193109,37.365723],[116.236224,37.361442],[116.2855,37.404241],[116.226369,37.428007],[116.243,37.447965],[116.224522,37.479791],[116.240536,37.489764],[116.240536,37.489764],[116.27626,37.466967],[116.290427,37.484065],[116.278724,37.524895],[116.295355,37.554316],[116.336007,37.581355],[116.36742,37.566177],[116.379738,37.522047],[116.38097,37.522522],[116.379738,37.522047],[116.38097,37.522522],[116.433941,37.473142],[116.448108,37.503059],[116.4826,37.521573],[116.575607,37.610754],[116.604556,37.624975],[116.66307,37.686096],[116.679085,37.728708],[116.724664,37.744327],[116.753613,37.77035],[116.753613,37.793054],[116.804736,37.848837],[116.837997,37.835132],[116.919301,37.846002],[117.027091,37.832296],[117.074518,37.848837],[117.150278,37.839385],[117.185387,37.849783],[117.271618,37.839858],[117.320278,37.861596],[117.400966,37.844584],[117.438538,37.854035],[117.481038,37.914967],[117.513067,37.94329],[117.524154,37.989527],[117.557414,38.046105],[117.557414,38.046105],[117.586979,38.071551],[117.704624,38.076262],[117.746508,38.12524],[117.771145,38.134655],[117.766834,38.158658],[117.789007,38.180772],[117.808718,38.22827],[117.848754,38.255062],[117.895565,38.301572],[117.948536,38.346644],[117.957775,38.376208],[117.937449,38.387936],[117.84629,38.368232],[117.781,38.373862],[117.730493,38.424985],[117.72495,38.457328],[117.678754,38.477008],[117.644878,38.52759],[117.68553,38.539293],[117.638102,38.54491],[117.639334,38.626776],[117.55803,38.613683],[117.47919,38.616489],[117.432379,38.601524],[117.368937,38.564566],[117.25314,38.556143],[117.238358,38.580943],[117.258684,38.608072],[117.258684,38.608072],[117.213104,38.639866],[117.213104,38.639866],[117.183539,38.61836],[117.183539,38.61836],[117.150894,38.617892],[117.109626,38.584685],[117.070822,38.608072],[117.055424,38.639398],[117.068358,38.680522],[117.038793,38.688464],[116.95133,38.689398],[116.948866,38.689398],[116.950714,38.689398],[116.95133,38.689398],[116.950714,38.689398],[116.948866,38.689398],[116.877417,38.680522],[116.858939,38.741231],[116.794265,38.744498],[116.794265,38.744498],[116.746222,38.754299],[116.737599,38.784629],[116.75115,38.831264],[116.723432,38.852706],[116.722201,38.896968],[116.708034,38.931892],[116.72836,38.975174],[116.754845,39.003084],[116.754229,39.034701],[116.754229,39.034701],[116.783179,39.05097],[116.783179,39.05097],[116.812744,39.05097],[116.812744,39.05097],[116.871874,39.054688],[116.912526,39.110898],[116.91191,39.111362],[116.91191,39.111362],[116.912526,39.110898],[116.909446,39.150822],[116.870026,39.153607],[116.855859,39.215766],[116.881729,39.225966],[116.881729,39.225966],[116.87249,39.291304],[116.889736,39.338068],[116.870642,39.357506],[116.829374,39.338994],[116.818287,39.3737],[116.840461,39.378326],[116.839845,39.413474],[116.876185,39.43474],[116.832454,39.435664],[116.785026,39.465702],[116.820751,39.482332],[116.819519,39.528507],[116.78749,39.554352],[116.808432,39.576497],[116.812128,39.615695],[116.79057,39.595868],[116.748686,39.619844],[116.709266,39.618],[116.726512,39.595407],[116.726512,39.595407],[116.724048,39.59264],[116.723432,39.59264],[116.724048,39.59264],[116.723432,39.59264],[116.664918,39.605552],[116.620571,39.601863],[116.592237,39.621227],[116.592237,39.621227],[116.524484,39.596329],[116.50847,39.551122],[116.473361,39.552968],[116.478289,39.535431],[116.437637,39.526661],[116.443796,39.510041],[116.401912,39.528046],[116.411767,39.482794],[116.444412,39.482332],[116.454883,39.453226],[116.434557,39.442597],[116.361876,39.455074],[116.361876,39.455074],[116.337854,39.455536],[116.307057,39.488337],[116.257782,39.500344],[116.240536,39.564041],[116.198652,39.589412],[116.151841,39.583416],[116.130283,39.567732],[116.09887,39.575113],[116.036044,39.571884],[116.026189,39.587567],[115.995392,39.576958],[115.978146,39.595868],[115.957204,39.560812],[115.910393,39.600479],[115.910393,39.600479],[115.91532,39.582955],[115.91532,39.582955],[115.867893,39.546507],[115.867893,39.546507],[115.828473,39.541431],[115.821081,39.522968],[115.821081,39.522968],[115.806299,39.510041],[115.806299,39.510041],[115.752712,39.515581],[115.738545,39.539585],[115.738545,39.540046],[115.738545,39.539585],[115.738545,39.540046],[115.724995,39.5442],[115.724995,39.5442],[115.722531,39.543738],[115.721299,39.543738],[115.722531,39.543738],[115.722531,39.5442],[115.721299,39.543738],[115.722531,39.5442],[115.720683,39.551122],[115.720683,39.551122],[115.718835,39.553891],[115.718835,39.553891],[115.716988,39.56035],[115.716988,39.56035],[115.699125,39.570039],[115.699125,39.570039],[115.698509,39.577881],[115.698509,39.577881],[115.667712,39.615234],[115.633836,39.599557],[115.633836,39.599557],[115.587024,39.589873],[115.545756,39.618922],[115.518039,39.597252],[115.522351,39.640124],[115.478619,39.650723],[115.478619,39.650723],[115.491554,39.670074],[115.486626,39.741899],[115.439815,39.752022],[115.443511,39.785601],[115.483547,39.798477],[115.483547,39.798477],[115.50572,39.784222],[115.552532,39.794799],[115.567314,39.816407],[115.514344,39.837549],[115.526046,39.87568],[115.515575,39.892212],[115.515575,39.892212],[115.522967,39.899099],[115.481083,39.935819],[115.426264,39.950502],[115.428728,39.984443],[115.450286,39.992697],[115.454597,40.029825],[115.485394,40.040364],[115.527278,40.076092],[115.59072,40.096239],[115.599959,40.119583],[115.75456,40.145663],[115.75456,40.145663],[115.773654,40.176307],[115.806299,40.15344],[115.847567,40.147036],[115.855574,40.188652],[115.870356,40.185909],[115.89869,40.234354],[115.968907,40.264045],[115.95166,40.281852],[115.917784,40.354405],[115.864197,40.359422],[115.771806,40.443734],[115.781045,40.49336],[115.736082,40.503372],[115.755176,40.540221],[115.784741,40.55841],[115.819849,40.55932],[115.827857,40.587504],[115.885139,40.595229],[115.907929,40.617493],[115.971986,40.6025],[115.982457,40.578868],[116.005247,40.583868],[116.09887,40.630665],[116.133979,40.666536],[116.162928,40.662451],[116.171551,40.695582],[116.204812,40.740035],[116.22021,40.744115],[116.247311,40.791707],[116.273181,40.762703],[116.311369,40.754996],[116.316912,40.772221],[116.453651,40.765876],[116.46597,40.774487],[116.438253,40.81934],[116.334159,40.90443],[116.339702,40.929303],[116.370499,40.94377],[116.398216,40.90624],[116.477057,40.899907],[116.447492,40.953715],[116.455499,40.980828],[116.519557,40.98128],[116.519557,40.98128],[116.5676,40.992574],[116.598397,40.974503],[116.623034,41.021026],[116.615643,41.053076],[116.647672,41.059394],[116.688324,41.044501],[116.698795,41.021477],[116.677853,40.970888],[116.722201,40.927495],[116.713577,40.909858],[116.759773,40.889954],[116.81336,40.848319],[116.848468,40.839264],[116.924229,40.773581],[116.926692,40.745022],[116.964881,40.709647],[117.012308,40.693767],[117.11209,40.707379],[117.117018,40.70012],[117.208177,40.694675],[117.278394,40.664267],[117.319662,40.657911],[117.342451,40.673799],[117.408973,40.686961],[117.493973,40.675161],[117.514914,40.660181],[117.501364,40.636569],[117.467487,40.649738],[117.467487,40.649738]]],[[[117.210024,40.082045],[117.204481,40.069681],[117.159517,40.077008],[117.140423,40.064185],[117.105315,40.074261],[117.105315,40.074261],[117.051728,40.059605],[117.025243,40.030283],[116.945171,40.04128],[116.927924,40.055024],[116.867562,40.041739],[116.831222,40.051359],[116.820135,40.02845],[116.781331,40.034866],[116.757925,39.967934],[116.782563,39.947749],[116.78441,39.891294],[116.812128,39.889916],[116.865714,39.843982],[116.907598,39.832494],[116.918069,39.84628],[116.949482,39.778703],[116.902055,39.763523],[116.916837,39.731314],[116.887272,39.72533],[116.889736,39.687576],[116.90575,39.688037],[116.932236,39.706456],[116.932236,39.706456],[116.944555,39.695405],[116.944555,39.695405],[116.948866,39.680668],[116.948866,39.680668],[116.964265,39.64335],[116.983359,39.638742],[116.983359,39.638742],[117.016004,39.653949],[117.10901,39.625375],[117.10901,39.625375],[117.152742,39.623532],[117.177996,39.645194],[117.165061,39.718886],[117.165061,39.718886],[117.161981,39.748801],[117.205713,39.763984],[117.15767,39.796638],[117.156438,39.817326],[117.192162,39.832953],[117.251908,39.834332],[117.247597,39.860981],[117.227887,39.852712],[117.162597,39.876598],[117.162597,39.876598],[117.150894,39.944996],[117.198322,39.992697],[117.192162,40.066475],[117.210024,40.082045]]],[[[117.784696,39.376938],[117.765602,39.400527],[117.699696,39.407463],[117.673211,39.386652],[117.668899,39.412087],[117.614081,39.407001],[117.601146,39.419485],[117.570965,39.404689],[117.521074,39.357043],[117.536472,39.338068],[117.594987,39.349176],[117.669515,39.322792],[117.670747,39.357969],[117.74466,39.354729],[117.784696,39.376938]]],[[[118.869365,39.142932],[118.82009,39.108576],[118.857662,39.098824],[118.869365,39.142932]]]]}},{"type":"Feature","properties":{"adcode":140000,"name":"山西省","center":[112.549248,37.857014],"centroid":[112.304436,37.618179],"childrenNum":11,"level":"province","parent":{"adcode":100000},"subFeatureIndex":3,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.379257,34.600612],[110.424837,34.588295],[110.488279,34.610956],[110.533242,34.583368],[110.610851,34.607508],[110.710017,34.605045],[110.749437,34.65232],[110.791937,34.649858],[110.824582,34.615881],[110.883712,34.64395],[110.903422,34.669056],[110.920052,34.730068],[110.976103,34.706456],[111.035233,34.740887],[111.118385,34.756623],[111.148566,34.807742],[111.232949,34.789559],[111.255123,34.819535],[111.29208,34.806759],[111.345666,34.831816],[111.389398,34.815113],[111.439289,34.838202],[111.502731,34.829851],[111.543999,34.853428],[111.570484,34.843114],[111.592042,34.881416],[111.617911,34.894671],[111.646861,34.938836],[111.681969,34.9511],[111.664107,34.984449],[111.740483,35.00455],[111.807005,35.032977],[111.810084,35.062374],[111.933272,35.083435],[111.97762,35.067272],[112.018888,35.068742],[112.039214,35.045717],[112.062004,35.056005],[112.05646,35.098615],[112.066315,35.153437],[112.03983,35.194039],[112.078634,35.219467],[112.058924,35.280069],[112.13838,35.271275],[112.21722,35.253195],[112.242474,35.234622],[112.304684,35.251728],[112.288053,35.219956],[112.36751,35.219956],[112.390915,35.239021],[112.513487,35.218489],[112.637291,35.225822],[112.628052,35.263457],[112.720443,35.206265],[112.772798,35.207732],[112.822073,35.258082],[112.884283,35.243909],[112.934174,35.262968],[112.936022,35.284466],[112.992072,35.29619],[112.985913,35.33965],[112.996384,35.362104],[113.067217,35.353806],[113.126347,35.332327],[113.149137,35.350878],[113.165151,35.412845],[113.185477,35.409431],[113.189789,35.44893],[113.243375,35.449418],[113.304353,35.426989],[113.31236,35.481101],[113.348085,35.468429],[113.391817,35.506925],[113.439244,35.507412],[113.49899,35.532254],[113.513773,35.57364],[113.55812,35.621816],[113.547649,35.656835],[113.578446,35.633491],[113.625258,35.632518],[113.622794,35.674825],[113.592613,35.691838],[113.587685,35.736542],[113.604932,35.797727],[113.582758,35.818111],[113.660982,35.837035],[113.637576,35.870019],[113.654207,35.931586],[113.648663,35.994073],[113.678844,35.985841],[113.694859,36.026991],[113.660366,36.034735],[113.68562,36.056026],[113.671453,36.115514],[113.655439,36.125182],[113.712721,36.129533],[113.705946,36.148865],[113.651127,36.174473],[113.697939,36.181719],[113.681924,36.216491],[113.716417,36.262347],[113.712105,36.303353],[113.736127,36.324571],[113.731199,36.363135],[113.708409,36.423352],[113.670221,36.425278],[113.635729,36.451277],[113.587069,36.460904],[113.554425,36.494589],[113.559968,36.528741],[113.588917,36.547974],[113.569823,36.585947],[113.539642,36.594116],[113.54457,36.62342],[113.486671,36.635427],[113.476816,36.655114],[113.506997,36.705029],[113.465113,36.707908],[113.499606,36.740527],[113.535946,36.732373],[113.549497,36.752515],[113.600004,36.752995],[113.680692,36.789907],[113.676381,36.855539],[113.696707,36.882351],[113.731815,36.878521],[113.731815,36.858891],[113.773083,36.85506],[113.792793,36.894796],[113.76138,36.956034],[113.791561,36.98759],[113.771851,37.016745],[113.788482,37.059739],[113.758301,37.075497],[113.773699,37.107004],[113.773083,37.151855],[113.832213,37.167594],[113.853155,37.215269],[113.886416,37.239095],[113.90243,37.310052],[113.962792,37.355734],[113.973879,37.40329],[114.014531,37.42468],[114.036705,37.494037],[114.118625,37.59084],[114.115545,37.619761],[114.139567,37.675676],[114.12848,37.698409],[114.068118,37.721608],[113.993589,37.706932],[113.996669,37.730128],[114.044712,37.761834],[114.006524,37.813386],[113.976959,37.816696],[113.959097,37.906468],[113.936307,37.922993],[113.901198,37.984811],[113.872249,37.990471],[113.876561,38.055059],[113.811271,38.117707],[113.831597,38.16854],[113.797105,38.162894],[113.720728,38.174656],[113.711489,38.213695],[113.678844,38.20523],[113.64312,38.232031],[113.598772,38.22733],[113.570439,38.237202],[113.54457,38.270569],[113.557504,38.343359],[113.525475,38.383245],[113.537794,38.417952],[113.583374,38.459671],[113.546417,38.492936],[113.561816,38.558483],[113.603084,38.587024],[113.612939,38.645942],[113.70225,38.651551],[113.720728,38.713218],[113.775547,38.709949],[113.802648,38.763166],[113.839605,38.7585],[113.836525,38.795824],[113.855619,38.828933],[113.795257,38.860628],[113.776163,38.885788],[113.76754,38.959819],[113.776779,38.986804],[113.80696,38.989595],[113.898119,39.067699],[113.930148,39.063517],[113.961561,39.100681],[113.994821,39.095572],[114.006524,39.122971],[114.050872,39.135969],[114.064422,39.094179],[114.082901,39.09325],[114.082901,39.09325],[114.10877,39.052364],[114.157429,39.061194],[114.180835,39.049111],[114.252284,39.073739],[114.345907,39.075133],[114.369928,39.107648],[114.360689,39.134112],[114.388406,39.176807],[114.443841,39.174023],[114.47587,39.21623],[114.416124,39.242654],[114.437066,39.259337],[114.430906,39.307513],[114.466631,39.329736],[114.469095,39.400989],[114.496812,39.438437],[114.501739,39.476789],[114.532536,39.486027],[114.568877,39.573729],[114.51529,39.564964],[114.49558,39.608318],[114.431522,39.613851],[114.408117,39.652106],[114.409964,39.761683],[114.41674,39.775943],[114.390254,39.819165],[114.406885,39.833413],[114.395182,39.867412],[114.285545,39.858225],[114.286776,39.871087],[114.215943,39.8619],[114.204241,39.885324],[114.229494,39.899558],[114.212248,39.918839],[114.17406,39.897722],[114.067502,39.922511],[114.047176,39.916085],[114.028082,39.959218],[114.029314,39.985819],[113.910438,40.015618],[113.959097,40.033491],[113.989278,40.11226],[114.018227,40.103563],[114.045944,40.056856],[114.086596,40.071513],[114.101995,40.099901],[114.073046,40.168533],[114.073046,40.168533],[114.097683,40.193681],[114.135871,40.175392],[114.180219,40.191395],[114.235654,40.198252],[114.255364,40.236182],[114.292936,40.230242],[114.362537,40.249886],[114.406269,40.246232],[114.46971,40.268155],[114.510978,40.302851],[114.530688,40.345283],[114.481413,40.34802],[114.438914,40.371733],[114.390254,40.351213],[114.381015,40.36307],[114.31203,40.372645],[114.286161,40.425057],[114.299711,40.44009],[114.267066,40.474242],[114.282465,40.494725],[114.293552,40.55159],[114.273842,40.552954],[114.283081,40.590685],[114.236269,40.607043],[114.183299,40.67153],[114.162357,40.71373],[114.134639,40.737314],[114.084748,40.729605],[114.063806,40.706925],[114.07243,40.679246],[114.041633,40.608861],[114.076741,40.575686],[114.080437,40.547952],[114.061959,40.52885],[114.011452,40.515657],[113.948626,40.514747],[113.890112,40.466503],[113.850691,40.460583],[113.794641,40.517932],[113.763228,40.473787],[113.688699,40.448288],[113.559968,40.348476],[113.500222,40.334335],[113.387505,40.319279],[113.316672,40.319736],[113.27602,40.388601],[113.251382,40.413211],[113.083231,40.374925],[113.03334,40.368997],[112.898449,40.329317],[112.848558,40.206937],[112.744464,40.167161],[112.712436,40.178593],[112.6299,40.235725],[112.511639,40.269068],[112.456205,40.300112],[112.418017,40.295091],[112.349031,40.257194],[112.310227,40.256281],[112.299756,40.21105],[112.232619,40.169905],[112.232003,40.133311],[112.183344,40.083877],[112.182112,40.061437],[112.142076,40.027076],[112.133453,40.001866],[112.07617,39.919298],[112.042294,39.886243],[112.012729,39.827438],[111.970229,39.796638],[111.959758,39.692642],[111.925265,39.66731],[111.9382,39.623071],[111.87907,39.606013],[111.842729,39.620305],[111.783599,39.58895],[111.722621,39.606013],[111.659179,39.641507],[111.625303,39.633672],[111.525521,39.662242],[111.497187,39.661781],[111.445448,39.640124],[111.460847,39.606935],[111.441137,39.59679],[111.422043,39.539123],[111.431282,39.508656],[111.372152,39.479099],[111.358601,39.432428],[111.337043,39.420872],[111.171971,39.423183],[111.143022,39.407926],[111.125776,39.366297],[111.159037,39.362596],[111.155341,39.338531],[111.186138,39.35149],[111.179363,39.326959],[111.202152,39.305197],[111.247732,39.302419],[111.213239,39.257021],[111.219399,39.244044],[111.163348,39.152678],[111.173819,39.135041],[111.147334,39.100681],[111.138095,39.064447],[111.094363,39.030053],[111.038313,39.020289],[110.998276,38.998433],[110.980414,38.970056],[111.009979,38.932823],[111.016755,38.889981],[110.995813,38.868084],[111.009363,38.847579],[110.965016,38.755699],[110.915125,38.704345],[110.916357,38.673981],[110.880632,38.626776],[110.898494,38.587024],[110.920052,38.581878],[110.907733,38.521035],[110.870777,38.510265],[110.874473,38.453579],[110.840596,38.439986],[110.796864,38.453579],[110.77777,38.440924],[110.746973,38.366355],[110.701394,38.353215],[110.661358,38.308617],[110.601612,38.308147],[110.57759,38.297345],[110.565887,38.215105],[110.528315,38.211814],[110.509221,38.192061],[110.519692,38.130889],[110.501829,38.097929],[110.507989,38.013107],[110.528315,37.990471],[110.522771,37.955088],[110.59422,37.922049],[110.680452,37.790216],[110.735886,37.77035],[110.750669,37.736281],[110.716792,37.728708],[110.706321,37.705511],[110.775306,37.680886],[110.793169,37.650567],[110.763604,37.639668],[110.771611,37.594634],[110.795017,37.558586],[110.770995,37.538184],[110.759292,37.474567],[110.740198,37.44939],[110.644111,37.435135],[110.630561,37.372858],[110.641648,37.360015],[110.695234,37.34955],[110.678604,37.317668],[110.690307,37.287201],[110.661974,37.281963],[110.651503,37.256722],[110.590525,37.187145],[110.53509,37.138021],[110.535706,37.115118],[110.49567,37.086956],[110.460561,37.044932],[110.417446,37.027257],[110.426685,37.008621],[110.382953,37.022001],[110.381721,37.002408],[110.424221,36.963685],[110.408823,36.892403],[110.376178,36.882351],[110.424221,36.855539],[110.406975,36.824886],[110.423605,36.818179],[110.407591,36.776007],[110.447011,36.737649],[110.438388,36.685835],[110.402663,36.697352],[110.394656,36.676716],[110.426685,36.657514],[110.447627,36.621018],[110.496902,36.582102],[110.488895,36.556628],[110.503677,36.488335],[110.47288,36.453203],[110.489511,36.430094],[110.487047,36.393972],[110.459946,36.327946],[110.474112,36.306729],[110.474112,36.248352],[110.45625,36.22663],[110.447011,36.164328],[110.467953,36.074893],[110.491974,36.034735],[110.49259,35.994073],[110.516612,35.971796],[110.502445,35.947575],[110.516612,35.918501],[110.511684,35.879718],[110.549257,35.877778],[110.550489,35.838005],[110.571431,35.800639],[110.57759,35.701559],[110.609619,35.632031],[110.589293,35.602355],[110.567735,35.539559],[110.531394,35.511309],[110.477808,35.413821],[110.45009,35.327933],[110.374946,35.251728],[110.378642,35.210666],[110.364475,35.197952],[110.373714,35.134351],[110.320743,35.00504],[110.262229,34.944233],[110.230816,34.880925],[110.246831,34.789068],[110.243135,34.725641],[110.229584,34.692679],[110.269004,34.629671],[110.29549,34.610956],[110.379257,34.600612]]]]}},{"type":"Feature","properties":{"adcode":150000,"name":"内蒙古自治区","center":[111.670801,40.818311],"centroid":[114.077429,44.331087],"childrenNum":12,"level":"province","parent":{"adcode":100000},"subFeatureIndex":4,"acroutes":[100000]},"geometry":{"type":"Polygon","coordinates":[[[97.172903,42.795257],[97.371235,42.457076],[97.500582,42.243894],[97.653335,41.986856],[97.84674,41.656379],[97.613915,41.477276],[97.629314,41.440498],[97.903407,41.168057],[97.971776,41.09774],[98.142391,41.001607],[98.184891,40.988056],[98.25018,40.93925],[98.333332,40.918903],[98.344419,40.568413],[98.627751,40.677884],[98.569853,40.746836],[98.668403,40.773128],[98.689345,40.691952],[98.72199,40.657911],[98.762642,40.639748],[98.802678,40.607043],[98.80699,40.660181],[98.790975,40.705564],[98.984996,40.782644],[99.041662,40.693767],[99.102025,40.676522],[99.12543,40.715091],[99.172858,40.747289],[99.174705,40.858278],[99.565827,40.846961],[99.673,40.93292],[99.985897,40.909858],[100.057346,40.908049],[100.107853,40.875475],[100.224882,40.727337],[100.237201,40.716905],[100.242744,40.618855],[100.169447,40.541131],[100.169447,40.277743],[100.007455,40.20008],[99.955716,40.150695],[99.927383,40.063727],[99.841152,40.013326],[99.751225,40.006909],[99.714268,39.972061],[99.533182,39.891753],[99.491298,39.884406],[99.459885,39.898181],[99.440791,39.885783],[99.469124,39.875221],[99.672384,39.888079],[99.822058,39.860063],[99.904593,39.785601],[99.958796,39.769504],[100.040716,39.757083],[100.128179,39.702312],[100.250135,39.685274],[100.314193,39.606935],[100.301258,39.572345],[100.326512,39.509118],[100.44354,39.485565],[100.500823,39.481408],[100.498975,39.400527],[100.606764,39.387577],[100.707778,39.404689],[100.842053,39.405614],[100.842669,39.199999],[100.864227,39.106719],[100.829118,39.075133],[100.835278,39.025869],[100.875314,39.002619],[100.901799,39.030053],[100.961545,39.005874],[100.969553,38.946788],[101.117378,38.975174],[101.228863,39.020754],[101.198682,38.943064],[101.237486,38.907214],[101.24303,38.860628],[101.33542,38.847113],[101.34158,38.822406],[101.307087,38.80282],[101.331109,38.777164],[101.412413,38.764099],[101.562702,38.713218],[101.601506,38.65529],[101.672955,38.6908],[101.777049,38.66043],[101.873751,38.733761],[101.941505,38.808883],[102.075164,38.891378],[102.045599,38.904885],[101.955055,38.985874],[101.926106,39.000758],[101.833715,39.08907],[101.902701,39.111827],[102.012338,39.127149],[102.050526,39.141075],[102.276576,39.188868],[102.3548,39.231993],[102.45335,39.255167],[102.579002,39.183301],[102.616574,39.171703],[102.883892,39.120649],[103.007696,39.099753],[103.133347,39.192579],[103.188166,39.215302],[103.259615,39.263971],[103.344615,39.331588],[103.428998,39.353341],[103.595302,39.386652],[103.728961,39.430117],[103.85338,39.461543],[103.955626,39.456923],[104.089901,39.419947],[104.073271,39.351953],[104.047401,39.297788],[104.171205,39.160567],[104.207546,39.083495],[104.190915,39.042139],[104.196459,38.9882],[104.173053,38.94446],[104.044322,38.895105],[104.011677,38.85923],[103.85954,38.64454],[103.416063,38.404821],[103.465339,38.353215],[103.507838,38.280905],[103.53494,38.156776],[103.368636,38.08898],[103.362477,38.037621],[103.40744,37.860651],[103.627947,37.797783],[103.683381,37.777919],[103.841062,37.64725],[103.874938,37.604117],[103.935916,37.572818],[104.089285,37.465067],[104.183524,37.406618],[104.237727,37.411847],[104.287002,37.428007],[104.322726,37.44844],[104.407726,37.464592],[104.419429,37.511604],[104.433595,37.515402],[104.623305,37.522522],[104.805007,37.539133],[104.866601,37.566651],[105.027977,37.580881],[105.111128,37.633981],[105.187505,37.657674],[105.221998,37.677097],[105.315004,37.702197],[105.4037,37.710246],[105.467141,37.695094],[105.598952,37.699356],[105.616199,37.722555],[105.622358,37.777919],[105.677177,37.771769],[105.760944,37.799674],[105.80406,37.862068],[105.799749,37.939986],[105.840401,38.004147],[105.780655,38.084741],[105.76772,38.121474],[105.775111,38.186887],[105.802828,38.220277],[105.842248,38.240962],[105.86627,38.296406],[105.821307,38.366824],[105.835473,38.387467],[105.827466,38.432486],[105.850872,38.443736],[105.836705,38.476071],[105.863806,38.53508],[105.856415,38.569714],[105.874277,38.593105],[105.852719,38.641735],[105.894603,38.696405],[105.88598,38.716953],[105.908154,38.737496],[105.909386,38.791159],[105.992538,38.857366],[105.97098,38.909077],[106.021487,38.953769],[106.060907,38.96866],[106.087392,39.006339],[106.078153,39.026333],[106.096631,39.084889],[106.145907,39.153142],[106.170544,39.163352],[106.192718,39.142932],[106.251232,39.131327],[106.285109,39.146181],[106.29558,39.167992],[106.280181,39.262118],[106.402753,39.291767],[106.511774,39.272311],[106.525325,39.308439],[106.556122,39.322329],[106.602318,39.37555],[106.643586,39.357969],[106.683622,39.357506],[106.751375,39.381564],[106.781556,39.371849],[106.806809,39.318625],[106.806193,39.277407],[106.790795,39.241263],[106.795723,39.214375],[106.825288,39.19397],[106.859164,39.107648],[106.878874,39.091392],[106.933693,39.076527],[106.96757,39.054688],[106.971881,39.026333],[106.954019,38.941202],[106.837606,38.847579],[106.756302,38.748699],[106.709491,38.718821],[106.66268,38.601524],[106.647897,38.470917],[106.599854,38.389812],[106.482209,38.319417],[106.555506,38.263521],[106.627571,38.232501],[106.654672,38.22921],[106.737824,38.197706],[106.779092,38.171833],[106.858548,38.156306],[106.942316,38.132302],[107.010069,38.120532],[107.051337,38.122886],[107.071047,38.138892],[107.119091,38.134185],[107.138801,38.161011],[107.19054,38.153953],[107.240431,38.111586],[107.33159,38.086625],[107.3938,38.014993],[107.440611,37.995659],[107.411662,37.948009],[107.448618,37.933378],[107.49235,37.944706],[107.560719,37.893717],[107.65003,37.86443],[107.684523,37.888522],[107.732566,37.84931],[107.842819,37.828987],[107.884703,37.808186],[107.982022,37.787378],[107.993109,37.735335],[108.025753,37.696041],[108.012819,37.66857],[108.025137,37.649619],[108.055318,37.652462],[108.134159,37.622131],[108.193905,37.638246],[108.205608,37.655779],[108.24626,37.665728],[108.293071,37.656726],[108.301078,37.640616],[108.422418,37.648672],[108.485244,37.678044],[108.532671,37.690832],[108.628142,37.651988],[108.699591,37.669518],[108.720533,37.683728],[108.777815,37.683728],[108.791982,37.700303],[108.784591,37.764673],[108.799989,37.784068],[108.791982,37.872934],[108.798141,37.93385],[108.82709,37.989056],[108.797525,38.04799],[108.830786,38.049875],[108.883141,38.01405],[108.893612,37.978207],[108.93488,37.922521],[108.9743,37.931962],[108.982923,37.964053],[109.018648,37.971602],[109.037742,38.021593],[109.06977,38.023008],[109.050676,38.055059],[109.069155,38.091336],[108.964445,38.154894],[108.938575,38.207582],[108.976148,38.245192],[108.961981,38.26493],[109.007561,38.359316],[109.051292,38.385122],[109.054372,38.433892],[109.128901,38.480288],[109.175712,38.518694],[109.196654,38.552867],[109.276726,38.623035],[109.331545,38.597783],[109.367269,38.627711],[109.329081,38.66043],[109.338936,38.701542],[109.404226,38.720689],[109.444262,38.782763],[109.511399,38.833595],[109.549587,38.805618],[109.624116,38.85457],[109.672159,38.928167],[109.685094,38.968195],[109.665384,38.981687],[109.72513,39.018429],[109.762086,39.057476],[109.793499,39.074204],[109.851397,39.122971],[109.890818,39.103932],[109.92223,39.107183],[109.893897,39.141075],[109.961035,39.191651],[109.871723,39.243581],[109.90252,39.271848],[109.962267,39.212056],[110.041107,39.21623],[110.109476,39.249606],[110.217881,39.281113],[110.184005,39.355192],[110.161831,39.387115],[110.136577,39.39174],[110.12549,39.432891],[110.152592,39.45415],[110.243751,39.423645],[110.257917,39.407001],[110.385417,39.310291],[110.429764,39.341308],[110.434692,39.381101],[110.482735,39.360745],[110.524003,39.382952],[110.559728,39.351027],[110.566503,39.320014],[110.596684,39.282966],[110.626249,39.266751],[110.702626,39.273701],[110.731575,39.30705],[110.73835,39.348713],[110.782698,39.38804],[110.869545,39.494341],[110.891103,39.509118],[110.958856,39.519275],[111.017371,39.552045],[111.101138,39.559428],[111.136863,39.587106],[111.154725,39.569116],[111.148566,39.531277],[111.10545,39.497573],[111.10545,39.472631],[111.058639,39.447681],[111.064182,39.400989],[111.098059,39.401914],[111.087588,39.376013],[111.125776,39.366297],[111.143022,39.407926],[111.171971,39.423183],[111.337043,39.420872],[111.358601,39.432428],[111.372152,39.479099],[111.431282,39.508656],[111.422043,39.539123],[111.441137,39.59679],[111.460847,39.606935],[111.445448,39.640124],[111.497187,39.661781],[111.525521,39.662242],[111.625303,39.633672],[111.659179,39.641507],[111.722621,39.606013],[111.783599,39.58895],[111.842729,39.620305],[111.87907,39.606013],[111.9382,39.623071],[111.925265,39.66731],[111.959758,39.692642],[111.970229,39.796638],[112.012729,39.827438],[112.042294,39.886243],[112.07617,39.919298],[112.133453,40.001866],[112.142076,40.027076],[112.182112,40.061437],[112.183344,40.083877],[112.232003,40.133311],[112.232619,40.169905],[112.299756,40.21105],[112.310227,40.256281],[112.349031,40.257194],[112.418017,40.295091],[112.456205,40.300112],[112.511639,40.269068],[112.6299,40.235725],[112.712436,40.178593],[112.744464,40.167161],[112.848558,40.206937],[112.898449,40.329317],[113.03334,40.368997],[113.083231,40.374925],[113.251382,40.413211],[113.27602,40.388601],[113.316672,40.319736],[113.387505,40.319279],[113.500222,40.334335],[113.559968,40.348476],[113.688699,40.448288],[113.763228,40.473787],[113.794641,40.517932],[113.850691,40.460583],[113.890112,40.466503],[113.948626,40.514747],[114.011452,40.515657],[114.061959,40.52885],[114.080437,40.547952],[114.076741,40.575686],[114.041633,40.608861],[114.07243,40.679246],[114.063806,40.706925],[114.084748,40.729605],[114.134639,40.737314],[114.103227,40.770861],[114.104458,40.797597],[114.080437,40.790348],[114.044712,40.830661],[114.073661,40.857372],[114.055183,40.867782],[114.041633,40.917546],[114.057647,40.925234],[113.994821,40.938798],[113.973263,40.983087],[113.868554,41.06887],[113.819279,41.09774],[113.877793,41.115777],[113.920293,41.172112],[113.960945,41.171211],[113.996669,41.19238],[114.016379,41.231999],[113.992357,41.269794],[113.971416,41.239649],[113.95109,41.282837],[113.914749,41.294529],[113.899351,41.316108],[113.92522,41.325546],[113.94493,41.392477],[113.871017,41.413126],[113.877793,41.431076],[113.919677,41.454404],[113.933227,41.487139],[113.953553,41.483553],[113.976959,41.505966],[114.032394,41.529715],[114.101379,41.537779],[114.230726,41.513584],[114.221487,41.582111],[114.226414,41.616572],[114.259059,41.623282],[114.215328,41.68499],[114.237501,41.698843],[114.206704,41.7386],[114.215328,41.75646],[114.200545,41.789934],[114.282465,41.863517],[114.343443,41.926774],[114.352066,41.953484],[114.419203,41.942356],[114.478334,41.951704],[114.511594,41.981962],[114.467863,42.025989],[114.480181,42.064654],[114.502355,42.06732],[114.510978,42.110844],[114.560254,42.132595],[114.647717,42.109512],[114.675434,42.12061],[114.75489,42.115727],[114.789383,42.130819],[114.79431,42.149457],[114.825723,42.139695],[114.86268,42.097967],[114.860832,42.054879],[114.9021,42.015763],[114.915035,41.960605],[114.923658,41.871093],[114.939056,41.846132],[114.922426,41.825175],[114.868839,41.813579],[114.89594,41.76762],[114.902716,41.695715],[114.895325,41.636255],[114.860832,41.60091],[115.016049,41.615229],[115.056085,41.602253],[115.0992,41.62373],[115.195287,41.602253],[115.20391,41.571367],[115.256881,41.580768],[115.26612,41.616124],[115.290142,41.622835],[115.310468,41.592854],[115.377605,41.603148],[115.345576,41.635807],[115.360975,41.661297],[115.319091,41.691693],[115.346808,41.712247],[115.42996,41.728775],[115.488474,41.760924],[115.519887,41.76762],[115.57409,41.80555],[115.654162,41.829189],[115.688038,41.867528],[115.726227,41.870202],[115.811226,41.912525],[115.834632,41.93835],[115.85311,41.927665],[115.916552,41.945027],[115.954124,41.874213],[115.994776,41.828743],[116.007095,41.797966],[116.007095,41.79752],[116.034196,41.782795],[116.09887,41.776547],[116.129051,41.805996],[116.106877,41.831419],[116.122892,41.861734],[116.194341,41.861734],[116.212819,41.885352],[116.223906,41.932562],[116.298434,41.96817],[116.310137,41.997086],[116.373579,42.009983],[116.414231,41.982407],[116.393289,41.942802],[116.453651,41.945917],[116.4826,41.975734],[116.510933,41.974399],[116.553433,41.928555],[116.597165,41.935679],[116.639049,41.929891],[116.66923,41.947698],[116.727744,41.951259],[116.748686,41.984186],[116.796113,41.977958],[116.879881,42.018431],[116.890352,42.092639],[116.850316,42.156556],[116.825062,42.155669],[116.789338,42.200462],[116.903287,42.190708],[116.918685,42.229716],[116.897743,42.297479],[116.886656,42.366496],[116.910678,42.394789],[116.910062,42.395231],[116.921765,42.403628],[116.936547,42.410256],[116.944555,42.415116],[116.97104,42.427486],[116.974736,42.426603],[116.99075,42.425719],[117.005533,42.43367],[117.009228,42.44957],[117.01662,42.456193],[117.080061,42.463699],[117.09546,42.484004],[117.135496,42.468996],[117.188467,42.468114],[117.275314,42.481797],[117.332596,42.46105],[117.390495,42.461933],[117.413284,42.471645],[117.410205,42.519743],[117.387415,42.517537],[117.434226,42.557224],[117.435458,42.585431],[117.475494,42.602613],[117.530313,42.590278],[117.537088,42.603054],[117.60053,42.603054],[117.667051,42.582347],[117.708935,42.588515],[117.779768,42.61847],[117.801326,42.612744],[117.797631,42.585431],[117.856761,42.539148],[117.874007,42.510038],[117.997811,42.416884],[118.024296,42.385064],[118.008898,42.346595],[118.060021,42.298364],[118.047702,42.280656],[117.974405,42.25054],[117.977485,42.229716],[118.033535,42.199132],[118.106216,42.172082],[118.089586,42.12283],[118.097593,42.105072],[118.155491,42.081091],[118.116687,42.037102],[118.194296,42.031324],[118.220165,42.058434],[118.212774,42.081091],[118.239259,42.092639],[118.27252,42.083312],[118.296541,42.057545],[118.286686,42.033991],[118.239875,42.024655],[118.291614,42.007759],[118.313788,41.98819],[118.306396,41.940131],[118.268824,41.930336],[118.340273,41.87243],[118.335346,41.845241],[118.29223,41.772976],[118.247266,41.773869],[118.236179,41.80778],[118.178281,41.814917],[118.140093,41.784134],[118.132702,41.733241],[118.155491,41.712694],[118.159187,41.67605],[118.206614,41.650566],[118.215237,41.59554],[118.302701,41.55256],[118.315636,41.512688],[118.271904,41.471446],[118.327338,41.450816],[118.348896,41.428384],[118.361215,41.384844],[118.348896,41.342622],[118.380309,41.312062],[118.412338,41.331838],[118.528135,41.355202],[118.629765,41.346666],[118.677192,41.35026],[118.741866,41.324198],[118.770199,41.352956],[118.843496,41.374516],[118.844727,41.342622],[118.890923,41.300823],[118.949437,41.317906],[118.980234,41.305769],[119.092951,41.293629],[119.168712,41.294978],[119.197661,41.282837],[119.211827,41.308016],[119.239545,41.31431],[119.296211,41.325097],[119.330704,41.385293],[119.309762,41.405944],[119.376283,41.422102],[119.378131,41.459787],[119.401537,41.472343],[119.406464,41.503276],[119.361501,41.545841],[119.362116,41.566442],[119.420015,41.567785],[119.415703,41.590169],[119.342406,41.617914],[119.307914,41.657273],[119.299907,41.705545],[119.319001,41.727435],[119.317769,41.764049],[119.292515,41.790827],[119.312841,41.80555],[119.334399,41.871539],[119.323312,41.889807],[119.340559,41.926774],[119.323928,41.937014],[119.324544,41.969505],[119.375667,42.023322],[119.384906,42.08953],[119.352261,42.118391],[119.314689,42.119723],[119.30853,42.147239],[119.286972,42.154781],[119.277733,42.185387],[119.237697,42.200905],[119.274037,42.239021],[119.280197,42.260728],[119.34795,42.300578],[119.432949,42.317396],[119.482841,42.347037],[119.502551,42.388159],[119.540123,42.363401],[119.572152,42.359421],[119.571536,42.335536],[119.539507,42.297922],[119.557985,42.289068],[119.609108,42.276671],[119.617115,42.252755],[119.679941,42.240793],[119.744615,42.211545],[119.841933,42.215534],[119.854868,42.170308],[119.837622,42.135257],[119.845629,42.097079],[119.87581,42.077982],[119.897368,42.030879],[119.921389,42.014429],[119.924469,41.98908],[119.950954,41.974399],[119.954034,41.923212],[119.989759,41.899163],[120.023019,41.816701],[120.041498,41.818932],[120.050737,41.776101],[120.024867,41.737707],[120.035954,41.708226],[120.096316,41.697056],[120.1382,41.729221],[120.127113,41.77253],[120.183164,41.826513],[120.188707,41.848361],[120.215808,41.853265],[120.251533,41.884016],[120.286641,41.880005],[120.290337,41.897381],[120.260156,41.904062],[120.271859,41.925439],[120.318054,41.93746],[120.309431,41.951704],[120.373489,41.994862],[120.399358,41.984631],[120.456641,42.016208],[120.450481,42.057101],[120.493597,42.073539],[120.466496,42.105516],[120.56751,42.152119],[120.58414,42.167203],[120.624792,42.154338],[120.72211,42.203565],[120.745516,42.223512],[120.79048,42.218636],[120.820661,42.227943],[120.8299,42.252755],[120.883487,42.242565],[120.883487,42.269585],[120.933994,42.27977],[120.992508,42.264714],[121.028848,42.242565],[121.070732,42.254083],[121.087978,42.278885],[121.120623,42.280656],[121.133558,42.300135],[121.184681,42.333324],[121.218558,42.371802],[121.285079,42.387717],[121.314644,42.42837],[121.304789,42.435879],[121.386093,42.474294],[121.434752,42.475176],[121.4791,42.49636],[121.506201,42.482239],[121.570875,42.487093],[121.607831,42.516214],[121.604136,42.495037],[121.66573,42.437204],[121.69899,42.438529],[121.747649,42.484887],[121.803084,42.514891],[121.817867,42.504303],[121.831417,42.533856],[121.844352,42.522389],[121.889931,42.556784],[121.921344,42.605697],[121.915801,42.656332],[121.94167,42.666014],[121.939207,42.688453],[122.018663,42.69901],[122.062394,42.723635],[122.072865,42.710444],[122.160945,42.684934],[122.204676,42.685374],[122.204676,42.732867],[122.261343,42.695931],[122.324785,42.684934],[122.338951,42.669975],[122.396234,42.684054],[122.396234,42.707366],[122.460907,42.755282],[122.439349,42.770221],[122.371596,42.776371],[122.35127,42.830378],[122.436886,42.843105],[122.556378,42.827745],[122.576088,42.819405],[122.580399,42.789987],[122.624747,42.773296],[122.653696,42.78252],[122.733152,42.786034],[122.73808,42.77066],[122.786123,42.757479],[122.848949,42.712203],[122.883442,42.751766],[122.887137,42.770221],[122.925941,42.772417],[122.945651,42.753524],[122.980144,42.777689],[123.058368,42.768903],[123.118114,42.801405],[123.227752,42.831695],[123.169853,42.859777],[123.188947,42.895739],[123.18402,42.925983],[123.259165,42.993431],[123.323222,43.000872],[123.434707,43.027565],[123.474743,43.042438],[123.536337,43.007],[123.572678,43.003498],[123.580685,43.036314],[123.631192,43.088346],[123.636119,43.141644],[123.666916,43.179623],[123.645974,43.208855],[123.676771,43.223684],[123.664453,43.264663],[123.698329,43.272071],[123.703873,43.37047],[123.608402,43.366119],[123.54496,43.415262],[123.519707,43.402219],[123.486446,43.44525],[123.442098,43.437863],[123.419925,43.410046],[123.382968,43.469143],[123.36449,43.483475],[123.315831,43.492159],[123.329998,43.519071],[123.304744,43.550742],[123.360179,43.567223],[123.452569,43.545971],[123.461193,43.568523],[123.434091,43.575461],[123.421157,43.598435],[123.5117,43.592801],[123.510468,43.624867],[123.536953,43.633964],[123.518475,43.682024],[123.520323,43.708419],[123.48275,43.737396],[123.498149,43.771114],[123.461809,43.822518],[123.467968,43.853599],[123.397135,43.954929],[123.37065,43.970006],[123.400831,43.979481],[123.365722,44.013922],[123.331229,44.028984],[123.32815,44.084035],[123.350939,44.092633],[123.362642,44.133452],[123.386664,44.161794],[123.323838,44.179823],[123.286882,44.211574],[123.277027,44.25274],[123.196955,44.34483],[123.128585,44.367081],[123.114419,44.40258],[123.142136,44.428228],[123.125506,44.455147],[123.137209,44.486322],[123.12489,44.5098],[123.06576,44.505959],[123.025108,44.493153],[122.85634,44.398304],[122.76087,44.369648],[122.702971,44.319145],[122.675254,44.285738],[122.641993,44.283595],[122.515726,44.251025],[122.483081,44.236877],[122.319241,44.233018],[122.271198,44.255741],[122.291524,44.310152],[122.294604,44.41113],[122.28598,44.477783],[122.228082,44.480345],[122.224386,44.526016],[122.196053,44.559712],[122.13138,44.577619],[122.113517,44.615546],[122.103046,44.67388],[122.117213,44.701961],[122.161561,44.728328],[122.152322,44.744057],[122.10243,44.736406],[122.110438,44.767856],[122.142467,44.753833],[122.168952,44.770405],[122.099967,44.7823],[122.098119,44.81882],[122.04946,44.912985],[122.079025,44.914256],[122.087032,44.95281],[122.074713,45.006573],[122.098735,45.02138],[122.119677,45.068739],[122.109822,45.142236],[122.143082,45.183167],[122.192358,45.180636],[122.22993,45.206784],[122.239169,45.276313],[122.147394,45.295682],[122.146778,45.374352],[122.180039,45.409655],[122.168336,45.439897],[122.064242,45.472641],[122.002648,45.507882],[121.993409,45.552741],[121.966308,45.596308],[121.995873,45.59882],[122.003264,45.623102],[121.970004,45.692956],[121.934279,45.71051],[121.867142,45.719703],[121.812323,45.704659],[121.811091,45.687103],[121.713773,45.701734],[121.666345,45.727641],[121.644172,45.752284],[121.657106,45.770238],[121.697142,45.76314],[121.754425,45.794862],[121.766744,45.830318],[121.769823,45.84366],[121.817251,45.875336],[121.805548,45.900746],[121.821562,45.918235],[121.809243,45.961102],[121.761816,45.998947],[121.819098,46.023054],[121.843736,46.024301],[121.864062,46.002272],[121.923808,46.004767],[121.92812,45.988552],[122.040221,45.959022],[122.085184,45.912406],[122.091344,45.882002],[122.200981,45.857],[122.236705,45.831569],[122.253952,45.7982],[122.301379,45.813218],[122.337719,45.859917],[122.372828,45.856166],[122.362357,45.917403],[122.446125,45.916986],[122.496016,45.85825],[122.504639,45.786933],[122.522501,45.786933],[122.556378,45.82156],[122.603189,45.778169],[122.640761,45.771072],[122.650001,45.731401],[122.671558,45.70048],[122.741775,45.705077],[122.751015,45.735996],[122.792283,45.766063],[122.752246,45.834905],[122.772572,45.856583],[122.80029,45.856583],[122.828623,45.912406],[122.792898,46.073313],[123.04605,46.099878],[123.070071,46.123527],[123.112571,46.130163],[123.102716,46.172037],[123.127354,46.174523],[123.128585,46.210565],[123.178476,46.248239],[123.142136,46.298293],[123.089781,46.347888],[123.011557,46.434984],[123.010325,46.524823],[123.002318,46.574624],[123.052825,46.579972],[123.04605,46.617803],[123.077462,46.622324],[123.098404,46.603002],[123.18094,46.614103],[123.228368,46.588198],[123.279491,46.616981],[123.276411,46.660947],[123.318295,46.662179],[123.366338,46.677784],[123.474743,46.686817],[123.603475,46.68928],[123.631808,46.728675],[123.629344,46.813524],[123.580069,46.827447],[123.625648,46.847508],[123.599163,46.868378],[123.605322,46.891286],[123.576989,46.891286],[123.575757,46.845461],[123.562823,46.82581],[123.506772,46.827038],[123.483366,46.84587],[123.52833,46.944836],[123.487678,46.959951],[123.42362,46.934212],[123.337389,46.988943],[123.301664,46.999965],[123.304128,46.964852],[123.360179,46.970978],[123.404526,46.935438],[123.40699,46.906416],[123.374345,46.837683],[123.341084,46.826628],[123.295505,46.865105],[123.221592,46.850373],[123.22344,46.821305],[123.198802,46.803283],[123.163694,46.74016],[123.103332,46.734828],[123.076846,46.745082],[123.026339,46.718829],[123.00355,46.730726],[122.996774,46.761483],[122.906847,46.80738],[122.893913,46.895376],[122.895144,46.960359],[122.83971,46.937072],[122.791051,46.941567],[122.798442,46.9575],[122.77442,46.973837],[122.778116,47.002822],[122.845869,47.046881],[122.852645,47.072158],[122.821232,47.065636],[122.710363,47.093349],[122.679566,47.094164],[122.615508,47.124306],[122.582863,47.158092],[122.531124,47.198771],[122.498479,47.255262],[122.462755,47.27841],[122.441197,47.310476],[122.418407,47.350632],[122.507103,47.401291],[122.543443,47.495589],[122.59395,47.54732],[122.765181,47.614333],[122.848949,47.67441],[122.926557,47.697777],[123.041122,47.746492],[123.161846,47.781892],[123.214201,47.824502],[123.256085,47.876711],[123.300432,47.953723],[123.537569,48.021816],[123.579453,48.045427],[123.705105,48.152142],[123.746373,48.197638],[123.862785,48.271782],[124.019234,48.39313],[124.07898,48.43603],[124.136878,48.463023],[124.25945,48.536385],[124.314269,48.503881],[124.302566,48.456673],[124.330283,48.435633],[124.309957,48.413393],[124.331515,48.380015],[124.317964,48.35099],[124.353689,48.315978],[124.365392,48.283731],[124.422058,48.245884],[124.412819,48.219175],[124.418978,48.181679],[124.475029,48.173698],[124.471333,48.133373],[124.430065,48.12099],[124.415899,48.08782],[124.46579,48.098213],[124.478108,48.123387],[124.505826,48.124985],[124.529847,48.146951],[124.512601,48.164518],[124.547094,48.200829],[124.579122,48.262221],[124.558796,48.268197],[124.579738,48.297269],[124.540934,48.335476],[124.547094,48.35775],[124.51876,48.378027],[124.52492,48.426897],[124.507674,48.445558],[124.555717,48.467784],[124.533543,48.515379],[124.548941,48.535593],[124.520608,48.556195],[124.579122,48.596582],[124.601912,48.632587],[124.624702,48.701755],[124.612383,48.747945],[124.656115,48.783842],[124.644412,48.80789],[124.654267,48.83429],[124.697383,48.841775],[124.715861,48.885475],[124.709086,48.920487],[124.744194,48.920487],[124.756513,48.967262],[124.808252,49.020666],[124.828578,49.077933],[124.809484,49.115943],[124.847672,49.129651],[124.860607,49.166448],[124.906802,49.184054],[124.983179,49.162535],[125.039845,49.17623],[125.034302,49.157056],[125.117453,49.126127],[125.158721,49.144921],[125.187671,49.186792],[125.219699,49.189139],[125.227707,49.248947],[125.214772,49.277066],[125.261583,49.322336],[125.256656,49.359769],[125.277598,49.379644],[125.25604,49.395227],[125.256656,49.437275],[125.270822,49.454395],[125.228323,49.487063],[125.211076,49.539908],[125.233866,49.536801],[125.23017,49.595411],[125.205533,49.593859],[125.16796,49.629923],[125.15441,49.616741],[125.127308,49.655113],[125.132236,49.672157],[125.164881,49.669446],[125.189518,49.652401],[125.185207,49.634574],[125.219699,49.669058],[125.225243,49.726349],[125.204301,49.734086],[125.221547,49.754969],[125.222779,49.799026],[125.177815,49.829533],[125.239409,49.844587],[125.225243,49.867351],[125.245569,49.87198],[125.212924,49.907452],[125.225859,49.922481],[125.199373,49.935194],[125.190134,49.959841],[125.231402,49.957531],[125.241873,49.987938],[125.278214,49.996402],[125.297924,50.014481],[125.283757,50.036012],[125.25296,50.041393],[125.289916,50.057917],[125.315786,50.04562],[125.328105,50.065985],[125.283757,50.070211],[125.287453,50.093636],[125.258504,50.103618],[125.27883,50.127411],[125.311474,50.140453],[125.376148,50.137385],[125.335496,50.161161],[125.382923,50.172278],[125.39093,50.199868],[125.417416,50.195654],[125.448829,50.216338],[125.442053,50.260357],[125.466075,50.266861],[125.463611,50.295925],[125.530749,50.331085],[125.520278,50.3498],[125.546763,50.358965],[125.522126,50.404759],[125.536292,50.420014],[125.567089,50.402852],[125.583104,50.409717],[125.562162,50.438314],[125.580024,50.449366],[125.627451,50.443268],[125.654553,50.471082],[125.699516,50.487078],[125.740784,50.523237],[125.754335,50.506874],[125.770349,50.531227],[125.794987,50.532748],[125.829479,50.56165],[125.807921,50.60383],[125.814697,50.62092],[125.793139,50.643316],[125.804226,50.658874],[125.789443,50.679735],[125.825784,50.70362],[125.78082,50.725598],[125.795603,50.738856],[125.758646,50.746809],[125.804226,50.773309],[125.828863,50.756654],[125.846726,50.769524],[125.836255,50.793363],[125.890457,50.805845],[125.878138,50.816812],[125.913247,50.825885],[125.939732,50.85423],[125.961906,50.901054],[125.997631,50.872738],[125.996399,50.906715],[126.02042,50.927466],[126.042594,50.92558],[126.068464,50.967434],[126.041978,50.981753],[126.033971,51.011132],[126.059225,51.043503],[125.976073,51.084498],[125.993935,51.119072],[125.970529,51.123955],[125.946508,51.108176],[125.909551,51.138977],[125.864588,51.146487],[125.850421,51.21364],[125.819008,51.227134],[125.761726,51.226385],[125.76111,51.261976],[125.740784,51.27583],[125.700132,51.327465],[125.626219,51.380163],[125.623756,51.387633],[125.62314,51.398089],[125.600966,51.410409],[125.60035,51.413396],[125.595422,51.416755],[125.559082,51.461521],[125.528285,51.488359],[125.424807,51.562827],[125.38046,51.585516],[125.35151,51.623801],[125.316402,51.610052],[125.289301,51.633831],[125.228938,51.640517],[125.214772,51.627888],[125.175968,51.639403],[125.130388,51.635317],[125.12854,51.659083],[125.098975,51.658341],[125.060171,51.59667],[125.073106,51.553526],[125.047236,51.529704],[125.004737,51.529332],[124.983795,51.508478],[124.928976,51.498419],[124.917889,51.474196],[124.942527,51.447349],[124.885244,51.40817],[124.864302,51.37979],[124.783614,51.392115],[124.76452,51.38726],[124.752817,51.35812],[124.693687,51.3327],[124.62655,51.327465],[124.58713,51.363725],[124.555717,51.375307],[124.490427,51.380537],[124.478108,51.36223],[124.443616,51.35812],[124.426985,51.331953],[124.430065,51.301281],[124.406659,51.272086],[124.339522,51.293422],[124.297638,51.298661],[124.271769,51.308389],[124.239124,51.344664],[124.192313,51.33943],[124.128255,51.347281],[124.090067,51.3413],[124.071588,51.320734],[123.994596,51.322604],[123.939777,51.313253],[123.926227,51.300532],[123.887423,51.320734],[123.842459,51.367462],[123.794416,51.361109],[123.711264,51.398089],[123.660141,51.342795],[123.661989,51.319237],[123.582533,51.306893],[123.582533,51.294545],[123.46304,51.286686],[123.440251,51.270963],[123.414381,51.278825],[123.376809,51.266844],[123.339853,51.27246],[123.294273,51.254111],[123.231447,51.268716],[123.231447,51.279199],[123.127969,51.297913],[123.069455,51.321108],[123.002934,51.31213],[122.965977,51.345786],[122.965977,51.386886],[122.946267,51.405183],[122.903768,51.415262],[122.900072,51.445112],[122.871123,51.455181],[122.854492,51.477551],[122.880362,51.511085],[122.858804,51.524864],[122.880362,51.537894],[122.874202,51.561339],[122.832935,51.581797],[122.85634,51.606707],[122.820616,51.633088],[122.816304,51.655371],[122.778732,51.698048],[122.749167,51.746613],[122.771957,51.779579],[122.732536,51.832495],[122.725761,51.87833],[122.706051,51.890151],[122.729457,51.919321],[122.726377,51.978709],[122.683877,51.974654],[122.664783,51.99861],[122.650616,52.058997],[122.625363,52.067459],[122.643841,52.111585],[122.629059,52.13657],[122.690653,52.140243],[122.73808,52.153464],[122.769493,52.179893],[122.766413,52.232705],[122.787355,52.252494],[122.76087,52.26678],[122.710979,52.256157],[122.67895,52.276667],[122.585943,52.266413],[122.560689,52.282526],[122.478153,52.29607],[122.484313,52.341432],[122.447356,52.394052],[122.419023,52.375057],[122.378987,52.395512],[122.367284,52.413768],[122.342031,52.414133],[122.326016,52.459374],[122.310618,52.475416],[122.207756,52.469218],[122.178191,52.48963],[122.168952,52.513674],[122.140003,52.510032],[122.142467,52.495096],[122.107358,52.452445],[122.080873,52.440407],[122.091344,52.427272],[122.040837,52.413038],[122.035909,52.377615],[121.976779,52.343626],[121.94783,52.298266],[121.901018,52.280695],[121.841272,52.282526],[121.769207,52.308147],[121.714389,52.318025],[121.715621,52.342894],[121.658338,52.3904],[121.678664,52.419973],[121.63986,52.44442],[121.590585,52.443326],[121.565331,52.460468],[121.519136,52.456821],[121.495114,52.484892],[121.474172,52.482706],[121.416274,52.499468],[121.411963,52.52205],[121.353448,52.534793],[121.323883,52.573727],[121.280151,52.586819],[121.225333,52.577364],[121.182217,52.59918],[121.237036,52.619167],[121.29247,52.651855],[121.309717,52.676173],[121.373158,52.683067],[121.455078,52.73528],[121.476636,52.772225],[121.511129,52.779104],[121.537614,52.801542],[121.591201,52.824693],[121.620766,52.853251],[121.604136,52.872401],[121.610295,52.892264],[121.66265,52.912478],[121.677432,52.948192],[121.715621,52.997926],[121.785838,53.018451],[121.817867,53.061631],[121.775367,53.089674],[121.784606,53.104408],[121.753193,53.147501],[121.722396,53.145706],[121.665114,53.170467],[121.660186,53.195213],[121.67928,53.199515],[121.679896,53.240722],[121.642324,53.262564],[121.615222,53.258984],[121.575802,53.29155],[121.504969,53.323018],[121.499426,53.337314],[121.416274,53.319443],[121.336818,53.325877],[121.308485,53.301565],[121.227797,53.280459],[121.155732,53.285468],[121.129246,53.277238],[121.098449,53.306929],[121.055334,53.29155],[120.950624,53.29763],[120.936457,53.28833],[120.882871,53.294411],[120.867472,53.278669],[120.820661,53.269007],[120.838523,53.239648],[120.821893,53.241797],[120.736277,53.204892],[120.690698,53.174771],[120.687002,53.142476],[120.659901,53.137091],[120.643886,53.106923],[120.562582,53.082845],[120.529321,53.045803],[120.452945,53.01017],[120.411061,52.957927],[120.363018,52.94134],[120.350699,52.906343],[120.295265,52.891542],[120.297112,52.869872],[120.222584,52.84277],[120.181316,52.806969],[120.14128,52.813119],[120.101244,52.788877],[120.031642,52.773674],[120.071063,52.70628],[120.035338,52.646409],[120.049505,52.598453],[120.07599,52.586092],[120.125265,52.586819],[120.194866,52.578819],[120.289721,52.623527],[120.396895,52.616261],[120.462184,52.64532],[120.483742,52.630066],[120.56135,52.595544],[120.605082,52.589364],[120.62664,52.570818],[120.658669,52.56718],[120.690698,52.547532],[120.734429,52.536977],[120.687002,52.511489],[120.706712,52.492909],[120.68269,52.464479],[120.688234,52.427637],[120.64943,52.3904],[120.653741,52.371038],[120.62356,52.361172],[120.627256,52.323878],[120.653741,52.302658],[120.695625,52.290214],[120.715951,52.261286],[120.755371,52.258355],[120.745516,52.20594],[120.786784,52.15787],[120.760299,52.136937],[120.76769,52.10938],[120.753523,52.085483],[120.717183,52.072978],[120.690698,52.047221],[120.691929,52.026973],[120.717799,52.015556],[120.704864,51.983501],[120.66298,51.958061],[120.656821,51.926333],[120.548416,51.907877],[120.549032,51.882394],[120.481278,51.885719],[120.480046,51.855049],[120.40059,51.833605],[120.40675,51.81659],[120.363634,51.789945],[120.317438,51.785873],[120.294649,51.752171],[120.226279,51.717703],[120.172693,51.679868],[120.087077,51.678013],[120.100628,51.649058],[120.05936,51.634203],[120.035954,51.583657],[120.052584,51.560967],[120.017476,51.52114],[119.985447,51.505125],[119.982367,51.482396],[120.002693,51.459283],[119.982983,51.445112],[119.97128,51.40033],[119.910918,51.390994],[119.914614,51.374187],[119.946643,51.360736],[119.883817,51.336813],[119.885049,51.302777],[119.811136,51.281071],[119.828383,51.263099],[119.797586,51.243622],[119.821607,51.21439],[119.784035,51.22601],[119.760629,51.212516],[119.788346,51.174636],[119.771716,51.124331],[119.752622,51.117193],[119.764325,51.092017],[119.719361,51.075099],[119.726753,51.051028],[119.678093,51.016404],[119.630666,51.00925],[119.598637,50.984767],[119.569688,50.933879],[119.491464,50.87878],[119.498855,50.827776],[119.515485,50.814165],[119.496391,50.771795],[119.506862,50.763846],[119.450196,50.695281],[119.430486,50.684286],[119.385522,50.682769],[119.394145,50.667219],[119.361501,50.632689],[119.298059,50.616743],[119.281428,50.601551],[119.295595,50.573814],[119.264182,50.536933],[119.262334,50.490124],[119.250631,50.448604],[119.22353,50.441363],[119.217371,50.414675],[119.165016,50.422683],[119.125596,50.389118],[119.176719,50.378814],[119.155777,50.364691],[119.188422,50.347509],[119.232153,50.365455],[119.259871,50.345218],[119.277117,50.366218],[119.322696,50.352474],[119.358421,50.358965],[119.381827,50.324208],[119.35103,50.303953],[119.339943,50.244668],[119.319001,50.220933],[119.358421,50.197953],[119.339327,50.192206],[119.350414,50.166145],[119.309762,50.161161],[119.290052,50.121655],[119.236465,50.075204],[119.190269,50.087877],[119.193965,50.069826],[119.163168,50.027554],[119.12498,50.019095],[119.090487,49.985629],[118.982082,49.979087],[118.964836,49.988708],[118.791757,49.955606],[118.761576,49.959456],[118.739402,49.946364],[118.672264,49.955991],[118.605127,49.926719],[118.574946,49.931342],[118.531214,49.887791],[118.485019,49.866194],[118.483787,49.830691],[118.443751,49.835709],[118.385853,49.827217],[118.398787,49.802502],[118.384005,49.783958],[118.315636,49.766953],[118.284223,49.743755],[118.220781,49.729831],[118.211542,49.690744],[118.156723,49.660149],[118.129622,49.669446],[118.082811,49.616741],[118.011362,49.614803],[117.995963,49.623332],[117.950999,49.596187],[117.866,49.591532],[117.849369,49.551557],[117.809333,49.521263],[117.638102,49.574847],[117.485349,49.633024],[117.278394,49.636512],[117.068974,49.695389],[116.736367,49.847674],[116.717889,49.847288],[116.428397,49.430659],[116.048363,48.873274],[116.077928,48.822471],[116.069305,48.811437],[115.83032,48.560156],[115.799523,48.514982],[115.822929,48.259432],[115.81061,48.257042],[115.529126,48.155336],[115.545141,48.134971],[115.539597,48.104607],[115.580249,47.921649],[115.939342,47.683275],[115.968291,47.689721],[116.111189,47.811642],[116.130283,47.823296],[116.26579,47.876711],[116.453035,47.837358],[116.669846,47.890758],[116.791186,47.89758],[116.879265,47.893968],[117.094844,47.8241],[117.384335,47.641356],[117.493357,47.758563],[117.519226,47.761782],[117.529081,47.782697],[117.813645,48.016212],[117.886942,48.025418],[117.96147,48.011007],[118.052014,48.01421],[118.107448,48.031021],[118.124694,48.047427],[118.150564,48.036224],[118.238643,48.041826],[118.238027,48.031422],[118.284839,48.011007],[118.351976,48.006203],[118.37415,48.016612],[118.422193,48.01461],[118.441903,47.995791],[118.568171,47.992187],[118.773278,47.771034],[119.134219,47.664335],[119.152081,47.540453],[119.205052,47.520249],[119.365812,47.47739],[119.32208,47.42721],[119.365812,47.423161],[119.386138,47.397645],[119.437877,47.378602],[119.450812,47.353065],[119.559217,47.303172],[119.56784,47.248357],[119.627586,47.247544],[119.716282,47.195518],[119.763093,47.13082],[119.806825,47.055037],[119.79081,47.04525],[119.795122,47.013024],[119.845013,46.964852],[119.859795,46.917046],[119.926933,46.903963],[119.920157,46.853238],[119.936172,46.790173],[119.917078,46.758203],[119.93494,46.712674],[119.911534,46.669572],[119.859179,46.669572],[119.804361,46.68189],[119.8136,46.66834],[119.783419,46.626023],[119.739687,46.615336],[119.677477,46.584908],[119.682405,46.605058],[119.656535,46.625612],[119.598637,46.618214],[119.557985,46.633832],[119.491464,46.629311],[119.431718,46.638763],[119.374435,46.603414],[119.357805,46.619447],[119.325776,46.608759],[119.26295,46.649034],[119.20074,46.648213],[119.152081,46.658072],[119.123132,46.642872],[119.073857,46.676552],[119.011647,46.745902],[118.951285,46.722111],[118.912481,46.733188],[118.914329,46.77501],[118.845343,46.771731],[118.788061,46.717598],[118.788061,46.687227],[118.677192,46.6979],[118.639004,46.721291],[118.586033,46.692975],[118.446831,46.704467],[118.41049,46.728265],[118.316252,46.73934],[118.274984,46.715957],[118.238643,46.709392],[118.192448,46.682711],[118.124078,46.678195],[118.04647,46.631366],[117.992883,46.631366],[117.982412,46.614925],[117.914659,46.607936],[117.868464,46.575447],[117.870927,46.549935],[117.813645,46.530588],[117.769913,46.537586],[117.748355,46.521941],[117.704008,46.516587],[117.641182,46.558166],[117.622704,46.596012],[117.596218,46.603414],[117.49582,46.600535],[117.42006,46.582029],[117.447777,46.528117],[117.392343,46.463023],[117.375712,46.416421],[117.383719,46.394962],[117.372017,46.36028],[117.247597,46.366888],[117.097308,46.356976],[116.876801,46.375559],[116.834302,46.384229],[116.81336,46.355737],[116.745606,46.327642],[116.673541,46.325163],[116.585462,46.292504],[116.573143,46.258998],[116.536187,46.23251],[116.439484,46.137628],[116.414231,46.133896],[116.271949,45.966926],[116.243,45.876169],[116.288579,45.839074],[116.278108,45.831152],[116.286731,45.775247],[116.260862,45.776082],[116.22329,45.747273],[116.217746,45.72221],[116.17463,45.688775],[116.1155,45.679577],[116.035428,45.685013],[116.026805,45.661177],[115.936878,45.632727],[115.864197,45.572853],[115.699741,45.45963],[115.586408,45.440317],[115.36467,45.392427],[115.178041,45.396209],[114.983404,45.379397],[114.920578,45.386122],[114.745035,45.438217],[114.600906,45.403773],[114.551014,45.387383],[114.539928,45.325985],[114.519602,45.283893],[114.459855,45.21353],[114.409348,45.179371],[114.347139,45.119436],[114.313262,45.107189],[114.19069,45.036607],[114.158045,44.994301],[114.116777,44.957045],[114.065038,44.931206],[113.907358,44.915104],[113.861778,44.863377],[113.798953,44.849377],[113.712105,44.788247],[113.631417,44.745333],[113.540874,44.759358],[113.503918,44.777628],[113.11526,44.799714],[113.037652,44.822641],[112.937869,44.840042],[112.850406,44.840466],[112.712436,44.879494],[112.599719,44.930783],[112.540589,45.001072],[112.438959,45.071697],[112.396459,45.064512],[112.113743,45.072965],[112.071243,45.096206],[112.002874,45.090713],[111.903707,45.052252],[111.764505,44.969325],[111.69244,44.859983],[111.624687,44.778477],[111.585267,44.705789],[111.560629,44.647062],[111.569868,44.57634],[111.530448,44.55033],[111.514434,44.507666],[111.478709,44.488884],[111.427586,44.394455],[111.415883,44.35724],[111.428818,44.319573],[111.507042,44.294305],[111.534144,44.26217],[111.541535,44.206855],[111.559397,44.171238],[111.662875,44.061247],[111.702295,44.034147],[111.773128,44.010479],[111.870447,43.940279],[111.959758,43.823382],[111.970845,43.748205],[111.951135,43.693275],[111.891388,43.6738],[111.79407,43.672068],[111.606209,43.513863],[111.564325,43.490422],[111.456535,43.494329],[111.400485,43.472618],[111.354289,43.436125],[111.183674,43.396132],[111.151029,43.38004],[111.069725,43.357852],[111.02045,43.329998],[110.82027,43.149067],[110.769763,43.099272],[110.736502,43.089657],[110.687227,43.036314],[110.689691,43.02144],[110.631177,42.936061],[110.469801,42.839156],[110.437156,42.781203],[110.34846,42.742098],[110.139657,42.674815],[110.108244,42.642687],[109.906216,42.635643],[109.733753,42.579262],[109.683862,42.558988],[109.544044,42.472528],[109.486761,42.458842],[109.291509,42.435879],[109.026039,42.458401],[108.983539,42.449128],[108.845569,42.395673],[108.798757,42.415116],[108.705134,42.413349],[108.532671,42.442945],[108.298614,42.438529],[108.238252,42.460167],[108.089195,42.436321],[108.022058,42.433229],[107.986949,42.413349],[107.939522,42.403628],[107.736262,42.415116],[107.57427,42.412907],[107.501589,42.456635],[107.46648,42.458842],[107.303872,42.412465],[107.271844,42.364285],[107.051337,42.319166],[106.785867,42.291281],[106.612789,42.241679],[106.372572,42.161436],[106.344855,42.149457],[106.01348,42.032213],[105.74185,41.949033],[105.589713,41.888471],[105.385221,41.797073],[105.291599,41.749763],[105.230621,41.751103],[105.009498,41.583007],[104.923267,41.654143],[104.803775,41.652355],[104.68921,41.6452],[104.524138,41.661745],[104.530298,41.875104],[104.418813,41.860397],[104.30856,41.840782],[104.080046,41.805104],[103.868779,41.802427],[103.454868,41.877332],[103.418527,41.882233],[103.20726,41.96283],[103.021862,42.028212],[102.712045,42.153007],[102.621502,42.154338],[102.540814,42.162323],[102.449039,42.144133],[102.093642,42.223512],[102.070236,42.232374],[101.877447,42.432345],[101.803534,42.503861],[101.770274,42.509597],[101.557775,42.529887],[101.291689,42.586312],[100.862995,42.671295],[100.826655,42.675255],[100.32528,42.690213],[100.272309,42.636523],[100.004376,42.648849],[99.969267,42.647969],[99.51224,42.568244],[98.962822,42.607018],[98.546447,42.638284],[98.195362,42.653251],[97.831958,42.706047],[97.28254,42.782081],[97.172903,42.795257]]]}},{"type":"Feature","properties":{"adcode":210000,"name":"辽宁省","center":[123.429096,41.796767],"centroid":[122.604994,41.299712],"childrenNum":14,"level":"province","parent":{"adcode":100000},"subFeatureIndex":5,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.534489,39.788361],[123.546808,39.756163],[123.579453,39.781002],[123.612714,39.775023],[123.642279,39.796178],[123.645358,39.823761],[123.674924,39.826979],[123.687858,39.808132],[123.795032,39.822842],[123.812278,39.831115],[123.95148,39.817786],[124.002603,39.800316],[124.103001,39.823302],[124.099306,39.777323],[124.151045,39.74558],[124.173218,39.841225],[124.214486,39.865116],[124.215102,39.883487],[124.21695,39.894049],[124.218182,39.895885],[124.219414,39.899099],[124.241588,39.928477],[124.286551,39.931689],[124.288399,39.962888],[124.349377,39.989029],[124.372167,40.021576],[124.336442,40.049985],[124.346913,40.079756],[124.428217,40.144291],[124.457782,40.177679],[124.490427,40.18408],[124.513833,40.218362],[124.515065,40.22019],[124.62655,40.291896],[124.722636,40.321561],[124.739267,40.371733],[124.834121,40.423235],[124.913578,40.481981],[124.945606,40.45603],[124.985642,40.475153],[125.044157,40.466503],[125.042925,40.483802],[125.004737,40.496091],[125.015823,40.533853],[125.076801,40.562048],[125.113758,40.569322],[125.181511,40.611132],[125.262815,40.620218],[125.279445,40.655187],[125.305315,40.661089],[125.329337,40.643835],[125.375532,40.658365],[125.422343,40.635661],[125.418648,40.673345],[125.453756,40.676522],[125.459916,40.707379],[125.49564,40.728697],[125.544915,40.729605],[125.551075,40.761796],[125.585567,40.788535],[125.61698,40.763609],[125.685349,40.769048],[125.67611,40.788082],[125.641002,40.798503],[125.648393,40.826133],[125.707523,40.866877],[125.687813,40.897645],[125.652089,40.91619],[125.584335,40.891764],[125.589263,40.931112],[125.635458,40.94151],[125.650241,40.970888],[125.674879,40.974503],[125.684118,41.021929],[125.726617,41.055332],[125.739552,41.08917],[125.712451,41.095485],[125.734009,41.125695],[125.759878,41.132908],[125.791291,41.167607],[125.73832,41.178418],[125.758646,41.232449],[125.749407,41.245499],[125.695205,41.244599],[125.685349,41.273842],[125.646545,41.264396],[125.642234,41.296327],[125.62006,41.318355],[125.637306,41.34442],[125.610205,41.365084],[125.589879,41.359245],[125.581256,41.396517],[125.547995,41.401006],[125.534444,41.428833],[125.533212,41.479069],[125.493176,41.509103],[125.507343,41.534195],[125.479626,41.544946],[125.450061,41.597777],[125.461148,41.642516],[125.446981,41.67605],[125.412488,41.691246],[125.344119,41.672474],[125.317018,41.676944],[125.332416,41.711354],[125.336112,41.768067],[125.336112,41.768067],[125.323177,41.771191],[125.323177,41.771191],[125.319482,41.776993],[125.319482,41.776993],[125.294844,41.822945],[125.307779,41.924548],[125.35151,41.92811],[125.291764,41.958825],[125.29854,41.974399],[125.369989,42.002868],[125.363213,42.017097],[125.416184,42.063766],[125.414336,42.101964],[125.446365,42.098411],[125.490097,42.136145],[125.458068,42.160105],[125.458068,42.160105],[125.41372,42.156112],[125.368141,42.182726],[125.357054,42.145464],[125.305931,42.146351],[125.312706,42.197359],[125.280677,42.175187],[125.312706,42.219966],[125.27575,42.231045],[125.27575,42.266928],[125.299156,42.289953],[125.264047,42.312528],[125.224011,42.30102],[125.175352,42.308102],[125.167345,42.351903],[125.203685,42.366938],[125.185823,42.38197],[125.186439,42.427928],[125.140243,42.44692],[125.150098,42.458842],[125.105135,42.490624],[125.068794,42.499449],[125.090968,42.515773],[125.066946,42.534738],[125.089736,42.567803],[125.082961,42.591159],[125.097127,42.622433],[125.038613,42.615387],[125.010896,42.63212],[125.014592,42.666014],[124.99057,42.677455],[124.968396,42.722756],[124.996729,42.745174],[124.975171,42.802722],[124.92836,42.819844],[124.897563,42.787791],[124.874157,42.789987],[124.856911,42.824234],[124.84952,42.882585],[124.87231,42.962344],[124.869846,42.988178],[124.840897,43.032377],[124.88894,43.074796],[124.882781,43.13422],[124.785462,43.117185],[124.755281,43.074359],[124.719557,43.069987],[124.686912,43.051185],[124.677673,43.002185],[124.658579,42.972854],[124.635173,42.972854],[124.632093,42.949642],[124.607456,42.937376],[124.586514,42.905384],[124.466406,42.847054],[124.435609,42.880831],[124.371551,42.880831],[124.38079,42.912835],[124.431913,42.930803],[124.442384,42.958841],[124.42329,42.975482],[124.369703,42.972854],[124.333363,42.997371],[124.425754,43.076107],[124.366007,43.121554],[124.273617,43.17875],[124.287167,43.207983],[124.27608,43.233278],[124.228653,43.235022],[124.215102,43.255947],[124.168291,43.244177],[124.114088,43.247229],[124.117168,43.2773],[124.099306,43.292983],[124.032784,43.280786],[123.964415,43.34088],[123.896046,43.361333],[123.881263,43.392218],[123.881263,43.392218],[123.852314,43.406133],[123.857858,43.459153],[123.857858,43.459153],[123.79688,43.489988],[123.747604,43.472184],[123.749452,43.439167],[123.710032,43.417001],[123.703873,43.37047],[123.698329,43.272071],[123.664453,43.264663],[123.676771,43.223684],[123.645974,43.208855],[123.666916,43.179623],[123.636119,43.141644],[123.631192,43.088346],[123.580685,43.036314],[123.572678,43.003498],[123.536337,43.007],[123.474743,43.042438],[123.434707,43.027565],[123.323222,43.000872],[123.259165,42.993431],[123.18402,42.925983],[123.188947,42.895739],[123.169853,42.859777],[123.227752,42.831695],[123.118114,42.801405],[123.058368,42.768903],[122.980144,42.777689],[122.945651,42.753524],[122.925941,42.772417],[122.887137,42.770221],[122.883442,42.751766],[122.883442,42.751766],[122.848949,42.712203],[122.848949,42.712203],[122.786123,42.757479],[122.73808,42.77066],[122.733152,42.786034],[122.653696,42.78252],[122.624747,42.773296],[122.580399,42.789987],[122.576088,42.819405],[122.556378,42.827745],[122.436886,42.843105],[122.35127,42.830378],[122.371596,42.776371],[122.439349,42.770221],[122.460907,42.755282],[122.396234,42.707366],[122.396234,42.684054],[122.338951,42.669975],[122.324785,42.684934],[122.261343,42.695931],[122.204676,42.732867],[122.204676,42.685374],[122.160945,42.684934],[122.072865,42.710444],[122.062394,42.723635],[122.018663,42.69901],[121.939207,42.688453],[121.94167,42.666014],[121.915801,42.656332],[121.921344,42.605697],[121.889931,42.556784],[121.844352,42.522389],[121.831417,42.533856],[121.817867,42.504303],[121.803084,42.514891],[121.747649,42.484887],[121.69899,42.438529],[121.66573,42.437204],[121.604136,42.495037],[121.607831,42.516214],[121.570875,42.487093],[121.506201,42.482239],[121.4791,42.49636],[121.434752,42.475176],[121.386093,42.474294],[121.304789,42.435879],[121.314644,42.42837],[121.285079,42.387717],[121.218558,42.371802],[121.184681,42.333324],[121.133558,42.300135],[121.120623,42.280656],[121.087978,42.278885],[121.070732,42.254083],[121.028848,42.242565],[120.992508,42.264714],[120.933994,42.27977],[120.883487,42.269585],[120.883487,42.269585],[120.883487,42.242565],[120.8299,42.252755],[120.820661,42.227943],[120.79048,42.218636],[120.745516,42.223512],[120.72211,42.203565],[120.624792,42.154338],[120.58414,42.167203],[120.56751,42.152119],[120.466496,42.105516],[120.493597,42.073539],[120.450481,42.057101],[120.456641,42.016208],[120.399358,41.984631],[120.373489,41.994862],[120.309431,41.951704],[120.318054,41.93746],[120.271859,41.925439],[120.260156,41.904062],[120.290337,41.897381],[120.286641,41.880005],[120.251533,41.884016],[120.215808,41.853265],[120.188707,41.848361],[120.183164,41.826513],[120.127113,41.77253],[120.1382,41.729221],[120.096316,41.697056],[120.035954,41.708226],[120.024867,41.737707],[120.050737,41.776101],[120.041498,41.818932],[120.023019,41.816701],[119.989759,41.899163],[119.954034,41.923212],[119.950954,41.974399],[119.924469,41.98908],[119.921389,42.014429],[119.897368,42.030879],[119.87581,42.077982],[119.845629,42.097079],[119.837622,42.135257],[119.854868,42.170308],[119.841933,42.215534],[119.744615,42.211545],[119.679941,42.240793],[119.617115,42.252755],[119.609108,42.276671],[119.557985,42.289068],[119.557985,42.289068],[119.539507,42.297922],[119.571536,42.335536],[119.572152,42.359421],[119.540123,42.363401],[119.502551,42.388159],[119.482841,42.347037],[119.432949,42.317396],[119.34795,42.300578],[119.280197,42.260728],[119.274037,42.239021],[119.237697,42.200905],[119.277733,42.185387],[119.286972,42.154781],[119.30853,42.147239],[119.314689,42.119723],[119.352261,42.118391],[119.384906,42.08953],[119.375667,42.023322],[119.324544,41.969505],[119.323928,41.937014],[119.340559,41.926774],[119.323312,41.889807],[119.334399,41.871539],[119.312841,41.80555],[119.292515,41.790827],[119.317769,41.764049],[119.319001,41.727435],[119.299907,41.705545],[119.307914,41.657273],[119.342406,41.617914],[119.415703,41.590169],[119.420015,41.567785],[119.362116,41.566442],[119.361501,41.545841],[119.406464,41.503276],[119.401537,41.472343],[119.378131,41.459787],[119.376283,41.422102],[119.309762,41.405944],[119.330704,41.385293],[119.296211,41.325097],[119.239545,41.31431],[119.2494,41.279689],[119.209364,41.244599],[119.204436,41.222546],[119.169943,41.222996],[119.189038,41.198234],[119.126212,41.138767],[119.081248,41.131555],[119.080632,41.095936],[119.037516,41.067516],[118.964836,41.079246],[118.937118,41.052625],[118.951901,41.018317],[119.013495,41.007479],[119.00056,40.967273],[118.977154,40.959138],[118.977154,40.959138],[118.916792,40.969984],[118.90201,40.960946],[118.873061,40.847866],[118.845959,40.822057],[118.878604,40.783098],[118.907553,40.775394],[118.895234,40.75409],[118.950053,40.747743],[118.96114,40.72008],[119.011031,40.687414],[119.028277,40.692406],[119.054763,40.664721],[119.115125,40.666536],[119.165632,40.69286],[119.184726,40.680153],[119.14469,40.632482],[119.162552,40.600228],[119.177951,40.609315],[119.230921,40.603863],[119.22045,40.569322],[119.256175,40.543404],[119.30237,40.530215],[119.429254,40.540221],[119.477913,40.533399],[119.503783,40.553864],[119.559217,40.547952],[119.572152,40.523846],[119.553674,40.502007],[119.604797,40.455119],[119.586934,40.375381],[119.598021,40.334335],[119.651608,40.271808],[119.639289,40.231613],[119.639289,40.231613],[119.671934,40.23938],[119.716898,40.195966],[119.745847,40.207851],[119.760629,40.136056],[119.736608,40.104936],[119.772332,40.08113],[119.783419,40.046778],[119.783419,40.046778],[119.787115,40.041739],[119.787115,40.041739],[119.81668,40.050443],[119.81668,40.050443],[119.854252,40.033033],[119.845629,40.000949],[119.845629,40.000949],[119.854252,39.98857],[119.91831,39.989946],[119.941715,40.009659],[119.947259,40.040364],[120.092005,40.077466],[120.134504,40.074719],[120.161606,40.096239],[120.273091,40.127362],[120.371641,40.174478],[120.451097,40.177679],[120.491749,40.20008],[120.523778,40.256737],[120.52193,40.304676],[120.537329,40.325211],[120.602618,40.36079],[120.596459,40.399084],[120.617401,40.41959],[120.616169,40.444645],[120.619249,40.460128],[120.666676,40.467413],[120.693777,40.505647],[120.72211,40.515657],[120.72827,40.539311],[120.822509,40.59432],[120.837291,40.644289],[120.8299,40.671076],[120.861313,40.684692],[120.939537,40.686507],[120.983269,40.712822],[121.032544,40.709193],[121.028848,40.746382],[120.991276,40.744115],[120.980189,40.766329],[120.994356,40.790801],[120.971566,40.805751],[121.00729,40.807563],[121.010986,40.784457],[121.086747,40.79805],[121.076892,40.815716],[121.096602,40.839717],[121.126167,40.86914],[121.177906,40.873665],[121.23642,40.851035],[121.290622,40.851488],[121.439064,40.830208],[121.440296,40.88181],[121.499426,40.880001],[121.526527,40.85194],[121.55486,40.849677],[121.553013,40.817528],[121.576418,40.837906],[121.626309,40.844244],[121.682976,40.829755],[121.732251,40.846961],[121.735331,40.862351],[121.778446,40.886787],[121.816019,40.894931],[121.84312,40.831567],[121.883772,40.802127],[121.934279,40.79805],[121.936127,40.711462],[121.951525,40.680607],[122.025438,40.674253],[122.06609,40.64883],[122.122141,40.657457],[122.148626,40.671983],[122.133843,40.614313],[122.150474,40.588413],[122.245944,40.519752],[122.231162,40.505192],[122.265038,40.48016],[122.221923,40.481071],[122.240401,40.461039],[122.250872,40.445555],[122.229314,40.424146],[122.186814,40.422779],[122.198517,40.382219],[122.152322,40.357597],[122.135691,40.374925],[122.111054,40.348932],[122.138155,40.338897],[122.110438,40.315629],[122.079641,40.332967],[122.040221,40.322017],[122.039605,40.260391],[122.02667,40.244862],[121.940438,40.242121],[121.950293,40.204194],[121.98109,40.173106],[122.003264,40.172191],[121.995257,40.128277],[121.956453,40.133311],[121.910257,40.072887],[121.824642,40.025701],[121.796309,39.999116],[121.779062,39.942702],[121.76428,39.933525],[121.699606,39.937196],[121.626925,39.882569],[121.572107,39.865116],[121.541926,39.874302],[121.530223,39.851334],[121.472325,39.802155],[121.487107,39.760303],[121.45939,39.747881],[121.502506,39.703233],[121.482796,39.659478],[121.451999,39.658095],[121.450151,39.624914],[121.325731,39.601402],[121.299246,39.606013],[121.263521,39.589873],[121.226565,39.554814],[121.224717,39.519275],[121.268449,39.482794],[121.286927,39.507271],[121.301709,39.476327],[121.245659,39.456923],[121.270296,39.434277],[121.246891,39.421334],[121.245659,39.389427],[121.270296,39.374162],[121.307869,39.391277],[121.324499,39.371386],[121.35468,39.377863],[121.432904,39.357506],[121.435984,39.329736],[121.466781,39.320014],[121.474788,39.296398],[121.508665,39.29223],[121.51544,39.286672],[121.562252,39.322792],[121.621382,39.326033],[121.72486,39.364447],[121.711925,39.33992],[121.7187,39.320477],[121.667577,39.310754],[121.672505,39.275554],[121.623846,39.285745],[121.589353,39.263044],[121.631237,39.22643],[121.591201,39.228748],[121.586889,39.193506],[121.604136,39.166136],[121.639244,39.166136],[121.68236,39.117863],[121.631853,39.077921],[121.605983,39.080708],[121.642324,39.11972],[121.590585,39.154999],[121.562252,39.127149],[121.599208,39.098824],[121.581962,39.075598],[121.508049,39.034237],[121.431057,39.027263],[121.370695,39.060264],[121.317108,39.012384],[121.341129,38.980757],[121.275224,38.971917],[121.204391,38.941202],[121.180369,38.959819],[121.128014,38.958888],[121.08921,38.922115],[121.094138,38.894173],[121.129862,38.879266],[121.110768,38.862026],[121.12863,38.799089],[121.112,38.776231],[121.13787,38.723023],[121.198848,38.721623],[121.259825,38.786495],[121.280767,38.786961],[121.288775,38.78976],[121.315876,38.793958],[121.359608,38.822406],[121.399028,38.812613],[121.509897,38.817743],[121.564715,38.874607],[121.618302,38.862492],[121.675585,38.86156],[121.708845,38.872744],[121.719316,38.920252],[121.655874,38.946788],[121.618918,38.950046],[121.66265,38.966333],[121.671273,39.010059],[121.73841,38.998898],[121.756889,39.025869],[121.790149,39.022614],[121.804932,38.970986],[121.863446,38.942598],[121.920728,38.969591],[121.905946,38.997503],[121.852975,39.035631],[121.8887,39.027263],[121.929352,39.024939],[121.907178,39.055617],[121.923192,39.053758],[121.963228,39.030053],[122.013735,39.073275],[122.061778,39.060264],[122.071634,39.074204],[122.048228,39.101146],[122.088264,39.112291],[122.127684,39.144788],[122.167104,39.158711],[122.123988,39.172631],[122.117213,39.213911],[122.160329,39.238019],[122.242865,39.267678],[122.274893,39.322329],[122.30877,39.346399],[122.366053,39.370461],[122.412864,39.411625],[122.455364,39.408388],[122.467682,39.403301],[122.51203,39.413474],[122.532972,39.419947],[122.581631,39.464316],[122.637066,39.488799],[122.649385,39.516505],[122.682645,39.514658],[122.808913,39.559889],[122.847101,39.581571],[122.860652,39.604629],[122.941956,39.604629],[122.972753,39.594946],[122.978912,39.616156],[123.021412,39.64335],[123.010941,39.655331],[123.103332,39.676983],[123.146448,39.647037],[123.166774,39.674219],[123.212969,39.665928],[123.215433,39.696786],[123.253005,39.689879],[123.286882,39.704154],[123.270251,39.714743],[123.274563,39.753862],[123.350939,39.750641],[123.388512,39.74742],[123.392823,39.723949],[123.477823,39.74696],[123.521555,39.772724],[123.534489,39.788361]]],[[[122.63953,39.286209],[122.593334,39.278334],[122.539131,39.308439],[122.50895,39.290377],[122.57732,39.269994],[122.67895,39.268605],[122.673406,39.269531],[122.662935,39.273701],[122.655544,39.277407],[122.640761,39.288061],[122.63953,39.286209]]],[[[122.318625,39.170775],[122.345111,39.144788],[122.366053,39.174951],[122.398697,39.16196],[122.383299,39.190723],[122.393154,39.213448],[122.343263,39.203246],[122.322321,39.177271],[122.322937,39.174487],[122.319241,39.172167],[122.318625,39.170775]]],[[[122.691884,39.23292],[122.696812,39.206492],[122.751631,39.229675],[122.740544,39.248679],[122.635834,39.241727],[122.628443,39.231993],[122.690037,39.234774],[122.691268,39.23431],[122.691884,39.23292]]],[[[122.738696,39.034701],[122.704819,39.044463],[122.733152,39.014244],[122.75779,39.009594],[122.739312,39.036561],[122.738696,39.034701]]],[[[123.022644,39.546507],[122.96105,39.551122],[122.945035,39.520198],[122.995542,39.495264],[123.036194,39.533123],[123.022644,39.546507]]],[[[122.503407,39.241263],[122.502175,39.224112],[122.547755,39.229211],[122.503407,39.241263]]],[[[120.786784,40.473787],[120.83298,40.491995],[120.8299,40.516112],[120.805262,40.525666],[120.774465,40.48016],[120.786784,40.473787]]],[[[123.086702,39.426881],[123.090397,39.450915],[123.054057,39.457847],[123.086702,39.426881]]],[[[123.160614,39.025404],[123.205578,39.057011],[123.20065,39.077921],[123.145832,39.091857],[123.143984,39.038885],[123.160614,39.025404]]],[[[123.716807,39.74512],[123.756843,39.754322],[123.719887,39.763063],[123.716807,39.74512]]]]}},{"type":"Feature","properties":{"adcode":220000,"name":"吉林省","center":[125.3245,43.886841],"centroid":[126.171208,43.703954],"childrenNum":9,"level":"province","parent":{"adcode":100000},"subFeatureIndex":6,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[129.601492,42.415116],[129.601492,42.422627],[129.591021,42.447803],[129.627361,42.462816],[129.651999,42.426603],[129.704354,42.427045],[129.748701,42.471204],[129.738846,42.500332],[129.749933,42.546644],[129.746237,42.58455],[129.786889,42.615387],[129.754245,42.645768],[129.796744,42.681854],[129.767179,42.707806],[129.78381,42.762752],[129.810911,42.795257],[129.816454,42.851003],[129.835549,42.866796],[129.846636,42.918533],[129.874969,42.923792],[129.856491,42.951833],[129.868193,42.97373],[129.903918,42.968475],[129.897143,43.001748],[129.954425,43.010938],[129.963664,42.978547],[130.002468,42.981174],[130.027106,42.9676],[130.072685,42.971541],[130.10841,42.989929],[130.144134,42.976357],[130.120729,42.954461],[130.127504,42.932556],[130.10225,42.922916],[130.136127,42.90363],[130.17062,42.912397],[130.21004,42.902315],[130.258083,42.90626],[130.277793,42.892232],[130.258083,42.860655],[130.245148,42.799209],[130.242069,42.738582],[130.257467,42.710884],[130.290112,42.702968],[130.333228,42.64973],[130.373264,42.630799],[130.388046,42.603054],[130.420691,42.617148],[130.44656,42.607459],[130.423771,42.574855],[130.435474,42.553257],[130.476125,42.570007],[130.459495,42.588075],[130.482285,42.626837],[130.522937,42.622433],[130.520473,42.593362],[130.558661,42.495919],[130.585763,42.485328],[130.581451,42.435437],[130.645509,42.426603],[130.600545,42.450453],[130.599929,42.486211],[130.565437,42.506509],[130.570364,42.557224],[130.622719,42.573092],[130.633806,42.603494],[130.592538,42.671295],[130.521089,42.702089],[130.464423,42.688453],[130.425003,42.706926],[130.40714,42.731548],[130.46627,42.772417],[130.532792,42.787352],[130.562357,42.815015],[130.603625,42.819405],[130.665835,42.847932],[130.708335,42.846615],[130.719422,42.831695],[130.75453,42.845738],[130.784095,42.842227],[130.801957,42.879515],[130.845073,42.881269],[130.890653,42.852758],[130.912826,42.870744],[130.949783,42.876884],[130.981812,42.857145],[131.043406,42.862848],[131.017536,42.915027],[131.034167,42.929051],[131.114855,42.915027],[131.145652,42.9365],[131.151195,42.968475],[131.115471,42.975482],[131.11855,43.007875],[131.102536,43.021002],[131.120398,43.068238],[131.171521,43.06955],[131.173985,43.111506],[131.207861,43.1316],[131.218948,43.191405],[131.201086,43.203185],[131.206014,43.237202],[131.255289,43.265099],[131.269455,43.297775],[131.275615,43.369165],[131.314419,43.392653],[131.295941,43.441774],[131.314419,43.461325],[131.31873,43.499539],[131.304564,43.502144],[131.294093,43.470012],[131.234963,43.475224],[131.201086,43.442209],[131.175217,43.444816],[131.142572,43.425695],[131.026775,43.508655],[130.959638,43.48608],[130.907283,43.434387],[130.864167,43.437863],[130.841378,43.454374],[130.822899,43.503446],[130.776704,43.52341],[130.727429,43.560284],[130.671378,43.565054],[130.665835,43.583698],[130.623335,43.589767],[130.630726,43.622268],[130.57098,43.626167],[130.57098,43.626167],[130.501995,43.636563],[130.488444,43.65605],[130.437937,43.646091],[130.412684,43.652586],[130.394206,43.703227],[130.423155,43.745179],[130.382503,43.777164],[130.381887,43.817768],[130.362793,43.844967],[130.386198,43.85403],[130.368336,43.894151],[130.381887,43.910106],[130.338155,43.963975],[130.364025,43.992399],[130.365256,44.044042],[130.319061,44.03974],[130.307358,44.002731],[130.27225,43.981634],[130.262395,43.949328],[130.208192,43.948466],[130.153373,43.915711],[130.143518,43.878624],[130.116417,43.878192],[130.110873,43.852735],[130.079461,43.835039],[130.027722,43.851872],[130.009243,43.889407],[130.022794,43.917866],[130.017867,43.961821],[129.979062,44.015644],[129.951345,44.027263],[129.907614,44.023821],[129.881128,44.000148],[129.868193,44.012631],[129.802904,43.964837],[129.780114,43.892857],[129.739462,43.895876],[129.743158,43.876035],[129.699426,43.8838],[129.650767,43.873016],[129.529427,43.870427],[129.467833,43.874741],[129.449971,43.850578],[129.417942,43.843672],[129.406855,43.819496],[129.348341,43.798333],[129.30892,43.812155],[129.289826,43.797038],[129.254718,43.819496],[129.211602,43.784509],[129.232544,43.709284],[129.214066,43.695006],[129.217146,43.648689],[129.232544,43.635263],[129.23008,43.593234],[129.169102,43.561585],[129.145081,43.570258],[129.093958,43.547706],[129.037907,43.540332],[129.013886,43.522976],[128.962763,43.53903],[128.949828,43.553779],[128.878379,43.539898],[128.834647,43.587599],[128.821097,43.637429],[128.78722,43.686784],[128.768126,43.732207],[128.729322,43.736964],[128.760119,43.755554],[128.739177,43.806972],[128.719467,43.816905],[128.760734,43.857482],[128.729938,43.889838],[128.696061,43.903207],[128.636315,43.891132],[128.64001,43.948035],[128.610445,43.960529],[128.584576,43.990246],[128.574721,44.047914],[128.529141,44.112401],[128.471859,44.157501],[128.450301,44.203423],[128.471859,44.247596],[128.453997,44.257884],[128.472475,44.320001],[128.446605,44.339694],[128.475555,44.346114],[128.481714,44.375637],[128.457076,44.409848],[128.463236,44.431647],[128.427511,44.473512],[128.397946,44.483761],[128.372693,44.514495],[128.295084,44.480772],[128.293237,44.467961],[128.228563,44.445748],[128.211317,44.431647],[128.172512,44.34697],[128.137404,44.357668],[128.094904,44.354673],[128.074578,44.370075],[128.049941,44.349965],[128.065339,44.307155],[128.101679,44.293449],[128.064107,44.251454],[128.104143,44.230017],[128.09244,44.181539],[128.060411,44.168663],[128.088129,44.158359],[128.091208,44.133022],[128.042549,44.103807],[127.950158,44.088334],[127.912586,44.064687],[127.862695,44.062967],[127.846065,44.081886],[127.808492,44.086615],[127.783239,44.071997],[127.729036,44.09908],[127.735811,44.11412],[127.712406,44.199133],[127.681609,44.166946],[127.641573,44.193555],[127.626174,44.187977],[127.59045,44.227872],[127.623711,44.278025],[127.579363,44.310581],[127.486356,44.410275],[127.50853,44.437202],[127.463566,44.484615],[127.465414,44.516628],[127.485124,44.528576],[127.536247,44.522176],[127.570124,44.55033],[127.557189,44.575488],[127.392733,44.632158],[127.275705,44.640249],[127.261538,44.61299],[127.214111,44.624917],[127.228893,44.642804],[127.182082,44.644507],[127.138966,44.607451],[127.094619,44.615972],[127.089691,44.593816],[127.049655,44.566961],[127.041648,44.591258],[127.044112,44.653874],[127.030561,44.673454],[127.041032,44.712169],[126.9973,44.764882],[126.984366,44.823914],[126.999764,44.87398],[127.021938,44.898997],[127.073061,44.907051],[127.092771,44.94688],[127.050271,45.004034],[127.018242,45.024341],[126.984981,45.067893],[126.970815,45.070852],[126.96404,45.132104],[126.85625,45.145613],[126.792808,45.135481],[126.787265,45.159118],[126.732446,45.187385],[126.685635,45.187807],[126.640055,45.214373],[126.644983,45.225334],[126.569222,45.252725],[126.540273,45.23882],[126.519331,45.248091],[126.402919,45.222805],[126.356107,45.185698],[126.293282,45.180214],[126.285274,45.162494],[126.235383,45.140125],[126.225528,45.154054],[126.166398,45.13337],[126.142992,45.147723],[126.091869,45.149411],[126.047522,45.170933],[125.998247,45.162072],[125.992703,45.192447],[125.957595,45.201303],[125.915095,45.196664],[125.849805,45.23882],[125.823936,45.237978],[125.815929,45.264942],[125.761726,45.291472],[125.726001,45.336503],[125.695205,45.352066],[125.712451,45.389485],[125.711835,45.477677],[125.687813,45.514173],[125.660096,45.507043],[125.61698,45.517947],[125.583104,45.491942],[125.497488,45.469283],[125.480242,45.486488],[125.424807,45.485649],[125.434662,45.462988],[125.398322,45.416797],[125.361981,45.392847],[125.319482,45.422678],[125.301619,45.402092],[125.248649,45.417637],[125.189518,45.39915],[125.137779,45.409655],[125.097127,45.38276],[125.06633,45.39915],[125.08912,45.420998],[125.0497,45.428558],[125.025678,45.493201],[124.961005,45.495299],[124.936983,45.53388],[124.911114,45.535976],[124.884628,45.495299],[124.886476,45.442836],[124.839665,45.455852],[124.792853,45.436958],[124.776223,45.468024],[124.729412,45.444096],[124.690607,45.452493],[124.625318,45.437377],[124.575427,45.451234],[124.579738,45.424358],[124.544014,45.411756],[124.507058,45.424778],[124.480572,45.456271],[124.398652,45.440737],[124.374015,45.45795],[124.352457,45.496557],[124.369087,45.512915],[124.348761,45.546874],[124.287783,45.539329],[124.264377,45.555256],[124.273001,45.584163],[124.238508,45.591702],[124.226805,45.633564],[124.162132,45.616404],[124.128255,45.641933],[124.147349,45.665359],[124.122096,45.669123],[124.13503,45.690448],[124.10177,45.700898],[124.098074,45.722628],[124.054342,45.751449],[124.014922,45.749779],[124.001987,45.770655],[124.064197,45.802372],[124.03648,45.83824],[124.067277,45.840325],[124.061118,45.886168],[123.996444,45.906993],[123.968727,45.936551],[123.973654,45.973997],[124.011842,45.981899],[123.989053,46.011833],[124.040176,46.01973],[124.034016,46.045074],[124.009995,46.057534],[124.015538,46.088257],[123.99398,46.101123],[124.01677,46.118549],[123.991516,46.143019],[124.001987,46.166649],[123.971806,46.170379],[123.956408,46.206009],[123.979814,46.228784],[123.952096,46.256516],[123.960103,46.288369],[123.936082,46.286715],[123.917604,46.25693],[123.896046,46.303668],[123.84985,46.302428],[123.775938,46.263136],[123.726047,46.255688],[123.673692,46.258585],[123.604706,46.251964],[123.569598,46.223816],[123.569598,46.223816],[123.499381,46.259826],[123.452569,46.233338],[123.430396,46.243687],[123.357099,46.232096],[123.357099,46.232096],[123.320758,46.254447],[123.286266,46.250308],[123.248078,46.273065],[123.178476,46.248239],[123.128585,46.210565],[123.127354,46.174523],[123.102716,46.172037],[123.112571,46.130163],[123.070071,46.123527],[123.04605,46.099878],[122.792898,46.073313],[122.828623,45.912406],[122.80029,45.856583],[122.772572,45.856583],[122.752246,45.834905],[122.792283,45.766063],[122.751015,45.735996],[122.741775,45.705077],[122.671558,45.70048],[122.650001,45.731401],[122.640761,45.771072],[122.603189,45.778169],[122.556378,45.82156],[122.522501,45.786933],[122.504639,45.786933],[122.496016,45.85825],[122.446125,45.916986],[122.362357,45.917403],[122.372828,45.856166],[122.337719,45.859917],[122.301379,45.813218],[122.253952,45.7982],[122.236705,45.831569],[122.200981,45.857],[122.091344,45.882002],[122.085184,45.912406],[122.040221,45.959022],[121.92812,45.988552],[121.923808,46.004767],[121.864062,46.002272],[121.843736,46.024301],[121.819098,46.023054],[121.761816,45.998947],[121.809243,45.961102],[121.821562,45.918235],[121.805548,45.900746],[121.817251,45.875336],[121.769823,45.84366],[121.766744,45.830318],[121.766744,45.830318],[121.754425,45.794862],[121.697142,45.76314],[121.657106,45.770238],[121.644172,45.752284],[121.666345,45.727641],[121.713773,45.701734],[121.811091,45.687103],[121.812323,45.704659],[121.867142,45.719703],[121.934279,45.71051],[121.970004,45.692956],[122.003264,45.623102],[121.995873,45.59882],[121.966308,45.596308],[121.993409,45.552741],[122.002648,45.507882],[122.064242,45.472641],[122.168336,45.439897],[122.180039,45.409655],[122.146778,45.374352],[122.147394,45.295682],[122.239169,45.276313],[122.22993,45.206784],[122.192358,45.180636],[122.143082,45.183167],[122.109822,45.142236],[122.119677,45.068739],[122.098735,45.02138],[122.074713,45.006573],[122.087032,44.95281],[122.079025,44.914256],[122.04946,44.912985],[122.098119,44.81882],[122.099967,44.7823],[122.168952,44.770405],[122.142467,44.753833],[122.110438,44.767856],[122.10243,44.736406],[122.152322,44.744057],[122.161561,44.728328],[122.117213,44.701961],[122.103046,44.67388],[122.113517,44.615546],[122.13138,44.577619],[122.196053,44.559712],[122.224386,44.526016],[122.228082,44.480345],[122.28598,44.477783],[122.294604,44.41113],[122.291524,44.310152],[122.271198,44.255741],[122.319241,44.233018],[122.483081,44.236877],[122.515726,44.251025],[122.641993,44.283595],[122.675254,44.285738],[122.702971,44.319145],[122.76087,44.369648],[122.85634,44.398304],[123.025108,44.493153],[123.06576,44.505959],[123.12489,44.5098],[123.137209,44.486322],[123.125506,44.455147],[123.142136,44.428228],[123.114419,44.40258],[123.128585,44.367081],[123.196955,44.34483],[123.277027,44.25274],[123.286882,44.211574],[123.323838,44.179823],[123.386664,44.161794],[123.362642,44.133452],[123.350939,44.092633],[123.32815,44.084035],[123.331229,44.028984],[123.365722,44.013922],[123.400831,43.979481],[123.37065,43.970006],[123.397135,43.954929],[123.467968,43.853599],[123.461809,43.822518],[123.498149,43.771114],[123.48275,43.737396],[123.520323,43.708419],[123.518475,43.682024],[123.536953,43.633964],[123.510468,43.624867],[123.5117,43.592801],[123.421157,43.598435],[123.434091,43.575461],[123.461193,43.568523],[123.452569,43.545971],[123.452569,43.545971],[123.360179,43.567223],[123.304744,43.550742],[123.329998,43.519071],[123.315831,43.492159],[123.36449,43.483475],[123.382968,43.469143],[123.419925,43.410046],[123.442098,43.437863],[123.486446,43.44525],[123.519707,43.402219],[123.54496,43.415262],[123.608402,43.366119],[123.703873,43.37047],[123.710032,43.417001],[123.749452,43.439167],[123.747604,43.472184],[123.79688,43.489988],[123.857858,43.459153],[123.857858,43.459153],[123.852314,43.406133],[123.881263,43.392218],[123.881263,43.392218],[123.896046,43.361333],[123.964415,43.34088],[124.032784,43.280786],[124.099306,43.292983],[124.117168,43.2773],[124.114088,43.247229],[124.168291,43.244177],[124.215102,43.255947],[124.228653,43.235022],[124.27608,43.233278],[124.287167,43.207983],[124.273617,43.17875],[124.366007,43.121554],[124.425754,43.076107],[124.333363,42.997371],[124.369703,42.972854],[124.42329,42.975482],[124.442384,42.958841],[124.431913,42.930803],[124.38079,42.912835],[124.371551,42.880831],[124.435609,42.880831],[124.466406,42.847054],[124.586514,42.905384],[124.607456,42.937376],[124.632093,42.949642],[124.635173,42.972854],[124.658579,42.972854],[124.677673,43.002185],[124.686912,43.051185],[124.719557,43.069987],[124.755281,43.074359],[124.785462,43.117185],[124.882781,43.13422],[124.88894,43.074796],[124.840897,43.032377],[124.869846,42.988178],[124.87231,42.962344],[124.84952,42.882585],[124.856911,42.824234],[124.874157,42.789987],[124.897563,42.787791],[124.92836,42.819844],[124.975171,42.802722],[124.996729,42.745174],[124.968396,42.722756],[124.99057,42.677455],[125.014592,42.666014],[125.010896,42.63212],[125.038613,42.615387],[125.097127,42.622433],[125.082961,42.591159],[125.089736,42.567803],[125.066946,42.534738],[125.090968,42.515773],[125.068794,42.499449],[125.105135,42.490624],[125.150098,42.458842],[125.140243,42.44692],[125.186439,42.427928],[125.185823,42.38197],[125.203685,42.366938],[125.167345,42.351903],[125.175352,42.308102],[125.224011,42.30102],[125.264047,42.312528],[125.299156,42.289953],[125.27575,42.266928],[125.27575,42.231045],[125.312706,42.219966],[125.280677,42.175187],[125.312706,42.197359],[125.305931,42.146351],[125.357054,42.145464],[125.368141,42.182726],[125.41372,42.156112],[125.458068,42.160105],[125.458068,42.160105],[125.490097,42.136145],[125.446365,42.098411],[125.414336,42.101964],[125.416184,42.063766],[125.363213,42.017097],[125.369989,42.002868],[125.29854,41.974399],[125.291764,41.958825],[125.35151,41.92811],[125.307779,41.924548],[125.294844,41.822945],[125.319482,41.776993],[125.319482,41.776993],[125.323177,41.771191],[125.323177,41.771191],[125.336112,41.768067],[125.336112,41.768067],[125.332416,41.711354],[125.317018,41.676944],[125.344119,41.672474],[125.412488,41.691246],[125.446981,41.67605],[125.461148,41.642516],[125.450061,41.597777],[125.479626,41.544946],[125.507343,41.534195],[125.493176,41.509103],[125.533212,41.479069],[125.534444,41.428833],[125.547995,41.401006],[125.581256,41.396517],[125.589879,41.359245],[125.610205,41.365084],[125.637306,41.34442],[125.62006,41.318355],[125.642234,41.296327],[125.646545,41.264396],[125.685349,41.273842],[125.695205,41.244599],[125.749407,41.245499],[125.758646,41.232449],[125.73832,41.178418],[125.791291,41.167607],[125.759878,41.132908],[125.734009,41.125695],[125.712451,41.095485],[125.739552,41.08917],[125.726617,41.055332],[125.684118,41.021929],[125.674879,40.974503],[125.650241,40.970888],[125.635458,40.94151],[125.589263,40.931112],[125.584335,40.891764],[125.652089,40.91619],[125.687813,40.897645],[125.707523,40.866877],[125.778356,40.897645],[125.817161,40.866877],[125.860892,40.888597],[125.875059,40.908501],[125.921254,40.882715],[125.959442,40.88181],[126.008102,40.936537],[126.041362,40.928851],[126.051833,40.96185],[126.08263,40.976762],[126.066,40.997542],[126.1085,41.011995],[126.099877,41.036376],[126.133753,41.063906],[126.124514,41.092327],[126.16763,41.094583],[126.187956,41.113072],[126.188572,41.114875],[126.295129,41.171661],[126.332086,41.236949],[126.35426,41.244599],[126.373354,41.289133],[126.437411,41.353405],[126.497158,41.374965],[126.524259,41.349362],[126.539041,41.366881],[126.497158,41.406842],[126.559983,41.548081],[126.582773,41.563307],[126.564295,41.608965],[126.592628,41.624624],[126.608027,41.669345],[126.644983,41.661297],[126.688099,41.674262],[126.724439,41.710907],[126.690562,41.728328],[126.694874,41.751103],[126.723207,41.753335],[126.8002,41.702865],[126.809439,41.749317],[126.848243,41.734134],[126.85625,41.760031],[126.887047,41.791719],[126.931395,41.812687],[126.952953,41.804212],[126.940018,41.773423],[126.979438,41.776993],[127.005923,41.749317],[127.050887,41.744852],[127.057662,41.703758],[127.037952,41.676944],[127.103242,41.647883],[127.093387,41.629993],[127.127263,41.622388],[127.135887,41.600463],[127.178386,41.600015],[127.125416,41.566442],[127.11864,41.540018],[127.164836,41.542706],[127.188241,41.527475],[127.241212,41.520754],[127.28864,41.501932],[127.253531,41.486691],[127.296031,41.486243],[127.360704,41.466065],[127.360088,41.479518],[127.405668,41.478621],[127.419835,41.460235],[127.459255,41.461581],[127.465414,41.479069],[127.526392,41.467859],[127.547334,41.477276],[127.563964,41.432871],[127.618783,41.432871],[127.636645,41.413575],[127.684073,41.422999],[127.780159,41.427038],[127.854688,41.420755],[127.86947,41.4037],[127.882405,41.448124],[127.909506,41.42973],[127.93168,41.444984],[127.970484,41.438704],[127.991426,41.421204],[128.000049,41.442741],[128.040085,41.393375],[128.110919,41.393375],[128.090593,41.374516],[128.114614,41.364186],[128.169433,41.404149],[128.203925,41.410882],[128.243345,41.477276],[128.238418,41.497898],[128.301244,41.540018],[128.317874,41.575844],[128.30186,41.627756],[128.248889,41.681414],[128.208853,41.688565],[128.163889,41.721628],[128.147875,41.78101],[128.112766,41.793504],[128.104143,41.843457],[128.115846,41.896935],[128.106607,41.949923],[128.033926,42.000199],[128.090593,42.022877],[128.294468,42.026434],[128.405338,42.018876],[128.466316,42.020654],[128.49896,42.000644],[128.598127,42.007315],[128.60675,42.02999],[128.637547,42.035324],[128.658489,42.018876],[128.70222,42.02021],[128.737945,42.050435],[128.779213,42.033546],[128.795227,42.042436],[128.898089,42.016653],[128.952908,42.025545],[128.954755,42.083756],[128.971386,42.097079],[129.008958,42.09175],[129.039139,42.107736],[129.048378,42.137476],[129.113668,42.140583],[129.166639,42.188047],[129.215914,42.208442],[129.209138,42.237692],[129.181421,42.242122],[129.183269,42.262056],[129.215914,42.265157],[129.231312,42.283755],[129.208522,42.293052],[129.260261,42.335536],[129.231312,42.356325],[129.240551,42.376223],[129.326167,42.389927],[129.30892,42.403628],[129.331094,42.429695],[129.356348,42.427045],[129.342181,42.441179],[129.368051,42.459284],[129.366203,42.428811],[129.392688,42.42837],[129.400695,42.449128],[129.452434,42.441179],[129.49863,42.412023],[129.546057,42.361632],[129.578086,42.380202],[129.569463,42.399208],[129.601492,42.415116]]]]}},{"type":"Feature","properties":{"adcode":230000,"name":"黑龙江省","center":[126.642464,45.756967],"centroid":[127.693027,48.040465],"childrenNum":13,"level":"province","parent":{"adcode":100000},"subFeatureIndex":7,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[123.569598,46.223816],[123.604706,46.251964],[123.673692,46.258585],[123.726047,46.255688],[123.775938,46.263136],[123.84985,46.302428],[123.896046,46.303668],[123.917604,46.25693],[123.936082,46.286715],[123.960103,46.288369],[123.952096,46.256516],[123.979814,46.228784],[123.956408,46.206009],[123.971806,46.170379],[124.001987,46.166649],[123.991516,46.143019],[124.01677,46.118549],[123.99398,46.101123],[124.015538,46.088257],[124.009995,46.057534],[124.034016,46.045074],[124.040176,46.01973],[123.989053,46.011833],[124.011842,45.981899],[123.973654,45.973997],[123.968727,45.936551],[123.996444,45.906993],[124.061118,45.886168],[124.067277,45.840325],[124.03648,45.83824],[124.064197,45.802372],[124.001987,45.770655],[124.014922,45.749779],[124.054342,45.751449],[124.098074,45.722628],[124.10177,45.700898],[124.13503,45.690448],[124.122096,45.669123],[124.147349,45.665359],[124.128255,45.641933],[124.162132,45.616404],[124.226805,45.633564],[124.238508,45.591702],[124.273001,45.584163],[124.264377,45.555256],[124.287783,45.539329],[124.348761,45.546874],[124.369087,45.512915],[124.352457,45.496557],[124.374015,45.45795],[124.398652,45.440737],[124.480572,45.456271],[124.507058,45.424778],[124.544014,45.411756],[124.579738,45.424358],[124.575427,45.451234],[124.625318,45.437377],[124.690607,45.452493],[124.729412,45.444096],[124.776223,45.468024],[124.792853,45.436958],[124.839665,45.455852],[124.886476,45.442836],[124.884628,45.495299],[124.911114,45.535976],[124.936983,45.53388],[124.961005,45.495299],[125.025678,45.493201],[125.0497,45.428558],[125.08912,45.420998],[125.06633,45.39915],[125.097127,45.38276],[125.137779,45.409655],[125.189518,45.39915],[125.248649,45.417637],[125.301619,45.402092],[125.319482,45.422678],[125.361981,45.392847],[125.398322,45.416797],[125.434662,45.462988],[125.424807,45.485649],[125.480242,45.486488],[125.497488,45.469283],[125.583104,45.491942],[125.61698,45.517947],[125.660096,45.507043],[125.687813,45.514173],[125.711835,45.477677],[125.712451,45.389485],[125.695205,45.352066],[125.726001,45.336503],[125.761726,45.291472],[125.815929,45.264942],[125.823936,45.237978],[125.849805,45.23882],[125.915095,45.196664],[125.957595,45.201303],[125.992703,45.192447],[125.998247,45.162072],[126.047522,45.170933],[126.091869,45.149411],[126.142992,45.147723],[126.166398,45.13337],[126.225528,45.154054],[126.235383,45.140125],[126.285274,45.162494],[126.293282,45.180214],[126.356107,45.185698],[126.402919,45.222805],[126.519331,45.248091],[126.540273,45.23882],[126.569222,45.252725],[126.644983,45.225334],[126.640055,45.214373],[126.685635,45.187807],[126.732446,45.187385],[126.787265,45.159118],[126.792808,45.135481],[126.85625,45.145613],[126.96404,45.132104],[126.970815,45.070852],[126.984981,45.067893],[127.018242,45.024341],[127.050271,45.004034],[127.092771,44.94688],[127.073061,44.907051],[127.021938,44.898997],[126.999764,44.87398],[126.984366,44.823914],[126.9973,44.764882],[127.041032,44.712169],[127.030561,44.673454],[127.044112,44.653874],[127.041648,44.591258],[127.049655,44.566961],[127.089691,44.593816],[127.094619,44.615972],[127.138966,44.607451],[127.182082,44.644507],[127.228893,44.642804],[127.214111,44.624917],[127.261538,44.61299],[127.275705,44.640249],[127.392733,44.632158],[127.557189,44.575488],[127.570124,44.55033],[127.536247,44.522176],[127.485124,44.528576],[127.465414,44.516628],[127.463566,44.484615],[127.50853,44.437202],[127.486356,44.410275],[127.579363,44.310581],[127.623711,44.278025],[127.59045,44.227872],[127.626174,44.187977],[127.641573,44.193555],[127.681609,44.166946],[127.712406,44.199133],[127.735811,44.11412],[127.729036,44.09908],[127.783239,44.071997],[127.808492,44.086615],[127.846065,44.081886],[127.862695,44.062967],[127.912586,44.064687],[127.950158,44.088334],[128.042549,44.103807],[128.091208,44.133022],[128.088129,44.158359],[128.060411,44.168663],[128.09244,44.181539],[128.104143,44.230017],[128.064107,44.251454],[128.101679,44.293449],[128.065339,44.307155],[128.049941,44.349965],[128.074578,44.370075],[128.094904,44.354673],[128.137404,44.357668],[128.172512,44.34697],[128.211317,44.431647],[128.228563,44.445748],[128.293237,44.467961],[128.295084,44.480772],[128.372693,44.514495],[128.397946,44.483761],[128.427511,44.473512],[128.463236,44.431647],[128.457076,44.409848],[128.481714,44.375637],[128.475555,44.346114],[128.446605,44.339694],[128.472475,44.320001],[128.453997,44.257884],[128.471859,44.247596],[128.450301,44.203423],[128.471859,44.157501],[128.529141,44.112401],[128.574721,44.047914],[128.584576,43.990246],[128.610445,43.960529],[128.64001,43.948035],[128.636315,43.891132],[128.696061,43.903207],[128.729938,43.889838],[128.760734,43.857482],[128.719467,43.816905],[128.739177,43.806972],[128.760119,43.755554],[128.729322,43.736964],[128.768126,43.732207],[128.78722,43.686784],[128.821097,43.637429],[128.834647,43.587599],[128.878379,43.539898],[128.949828,43.553779],[128.962763,43.53903],[129.013886,43.522976],[129.037907,43.540332],[129.093958,43.547706],[129.145081,43.570258],[129.169102,43.561585],[129.23008,43.593234],[129.232544,43.635263],[129.217146,43.648689],[129.214066,43.695006],[129.232544,43.709284],[129.211602,43.784509],[129.254718,43.819496],[129.289826,43.797038],[129.30892,43.812155],[129.348341,43.798333],[129.406855,43.819496],[129.417942,43.843672],[129.449971,43.850578],[129.467833,43.874741],[129.529427,43.870427],[129.650767,43.873016],[129.699426,43.8838],[129.743158,43.876035],[129.739462,43.895876],[129.780114,43.892857],[129.802904,43.964837],[129.868193,44.012631],[129.881128,44.000148],[129.907614,44.023821],[129.951345,44.027263],[129.979062,44.015644],[130.017867,43.961821],[130.022794,43.917866],[130.009243,43.889407],[130.027722,43.851872],[130.079461,43.835039],[130.110873,43.852735],[130.116417,43.878192],[130.143518,43.878624],[130.153373,43.915711],[130.208192,43.948466],[130.262395,43.949328],[130.27225,43.981634],[130.307358,44.002731],[130.319061,44.03974],[130.365256,44.044042],[130.364025,43.992399],[130.338155,43.963975],[130.381887,43.910106],[130.368336,43.894151],[130.386198,43.85403],[130.362793,43.844967],[130.381887,43.817768],[130.382503,43.777164],[130.423155,43.745179],[130.394206,43.703227],[130.412684,43.652586],[130.437937,43.646091],[130.488444,43.65605],[130.501995,43.636563],[130.57098,43.626167],[130.57098,43.626167],[130.630726,43.622268],[130.623335,43.589767],[130.665835,43.583698],[130.671378,43.565054],[130.727429,43.560284],[130.776704,43.52341],[130.822899,43.503446],[130.841378,43.454374],[130.864167,43.437863],[130.907283,43.434387],[130.959638,43.48608],[131.026775,43.508655],[131.142572,43.425695],[131.175217,43.444816],[131.201086,43.442209],[131.234963,43.475224],[131.294093,43.470012],[131.304564,43.502144],[131.276847,43.495632],[131.20047,43.532089],[131.222028,43.593234],[131.216485,43.613169],[131.239274,43.670337],[131.221412,43.682024],[131.215869,43.72745],[131.232499,43.742585],[131.213405,43.801357],[131.2171,43.836334],[131.254057,43.893289],[131.26268,43.948897],[131.245434,43.95579],[131.26576,44.034578],[131.28239,44.035868],[131.287318,44.03802],[131.293477,44.043182],[131.310723,44.046623],[131.111775,44.710042],[131.090833,44.717272],[131.093297,44.746183],[131.069275,44.759783],[131.064348,44.786973],[131.016304,44.789521],[131.015688,44.814999],[130.972573,44.820094],[130.965181,44.85065],[131.07913,44.881614],[131.10192,44.898997],[131.090217,44.924427],[131.16105,44.948151],[131.20355,44.932901],[131.207861,44.913833],[131.263296,44.929935],[131.274999,44.919766],[131.313803,44.950692],[131.313803,44.965938],[131.355071,44.990068],[131.380324,44.978216],[131.409889,44.985836],[131.464708,44.963397],[131.501664,44.977793],[131.484418,44.99557],[131.529382,45.012073],[131.566338,45.045487],[131.63286,45.075078],[131.695685,45.132104],[131.687678,45.1511],[131.650722,45.159962],[131.681519,45.215217],[131.721555,45.234606],[131.759127,45.213952],[131.79362,45.211844],[131.788692,45.245984],[131.825649,45.291472],[131.82996,45.311677],[131.887858,45.342393],[131.917423,45.339448],[131.93159,45.287683],[131.976554,45.277156],[132.003655,45.25441],[132.17427,45.216903],[132.394161,45.16376],[132.76434,45.081417],[132.867202,45.061976],[132.916477,45.031109],[132.954049,45.023072],[132.98731,45.043373],[133.035969,45.054366],[133.070462,45.097051],[133.089556,45.097473],[133.107418,45.124504],[133.139447,45.127459],[133.129592,45.211422],[133.095715,45.246827],[133.110498,45.266627],[133.097563,45.284735],[133.128976,45.336924],[133.119121,45.352908],[133.144991,45.367205],[133.143759,45.430658],[133.164701,45.437377],[133.170244,45.465506],[133.203505,45.516689],[133.246005,45.517528],[133.333468,45.562379],[133.342707,45.554836],[133.393214,45.580393],[133.423395,45.584163],[133.412924,45.618079],[133.471438,45.631053],[133.448649,45.647372],[133.485605,45.658667],[133.484989,45.691702],[133.445569,45.705077],[133.454192,45.731819],[133.486837,45.740173],[133.469591,45.777751],[133.505315,45.785681],[133.469591,45.799451],[133.467743,45.834905],[133.494228,45.840325],[133.491764,45.867002],[133.51209,45.887001],[133.55459,45.893249],[133.583539,45.868669],[133.618032,45.903662],[133.614952,45.942794],[133.676546,45.94321],[133.681474,45.986473],[133.740604,46.048812],[133.745531,46.075389],[133.690713,46.133896],[133.706111,46.163333],[133.764626,46.17328],[133.794807,46.193583],[133.814517,46.230854],[133.849625,46.203939],[133.87919,46.233752],[133.867487,46.250722],[133.909987,46.254447],[133.91861,46.280924],[133.908139,46.308216],[133.922922,46.330948],[133.869335,46.338386],[133.876726,46.362345],[133.940784,46.38134],[133.948791,46.401153],[133.902596,46.446119],[133.852089,46.450242],[133.849625,46.475389],[133.890893,46.525235],[133.919842,46.596012],[134.011001,46.637941],[134.030711,46.708981],[134.033175,46.759023],[134.052885,46.779928],[134.025168,46.810657],[134.041182,46.848326],[134.042414,46.886787],[134.076291,46.938298],[134.063972,46.979962],[134.10216,47.005678],[134.118175,47.061968],[134.142812,47.093349],[134.222268,47.105164],[134.232739,47.134892],[134.230276,47.182097],[134.210566,47.210155],[134.156979,47.248357],[134.177305,47.326299],[134.203174,47.347389],[134.263536,47.371307],[134.266616,47.391974],[134.307268,47.428829],[134.339297,47.439759],[134.490202,47.446235],[134.522847,47.468086],[134.568426,47.478199],[134.576434,47.519036],[134.627556,47.546512],[134.678064,47.588507],[134.689766,47.63813],[134.779694,47.7159],[134.772918,47.763391],[134.678679,47.819278],[134.670056,47.864667],[134.677448,47.884738],[134.658969,47.901191],[134.607846,47.909214],[134.599839,47.947711],[134.55426,47.982173],[134.551796,48.032622],[134.632484,48.099412],[134.67252,48.170505],[134.679295,48.256245],[134.77107,48.288908],[134.864077,48.332293],[135.009439,48.365703],[135.090743,48.403461],[135.09567,48.437618],[135.068569,48.459451],[135.035924,48.440795],[134.996504,48.439603],[134.927519,48.451513],[134.886867,48.437618],[134.848679,48.393925],[134.820961,48.37604],[134.764295,48.370076],[134.704549,48.405448],[134.640491,48.409818],[134.578281,48.405448],[134.501905,48.418954],[134.438463,48.405448],[134.369478,48.382797],[134.20379,48.3824],[134.150819,48.346217],[134.116327,48.333089],[134.0689,48.338659],[134.029479,48.327519],[133.995603,48.303639],[133.940784,48.302047],[133.876111,48.282536],[133.824372,48.277359],[133.791111,48.261026],[133.740604,48.254651],[133.693177,48.186866],[133.667307,48.183275],[133.59709,48.194846],[133.573068,48.182078],[133.545967,48.121389],[133.451728,48.112999],[133.407997,48.124585],[133.302055,48.103009],[133.239845,48.126583],[133.182563,48.135769],[133.130208,48.134971],[133.053216,48.110202],[133.02673,48.085421],[133.016259,48.054228],[132.992238,48.035424],[132.883216,48.002599],[132.819159,47.936887],[132.769268,47.93849],[132.723072,47.962941],[132.691043,47.962941],[132.661478,47.944905],[132.662094,47.922451],[132.687348,47.88514],[132.662094,47.854227],[132.621442,47.82852],[132.599268,47.792347],[132.6005,47.740858],[132.558,47.718316],[132.469305,47.726368],[132.371987,47.765402],[132.325175,47.762184],[132.288835,47.742065],[132.272205,47.718718],[132.242639,47.70986],[132.19706,47.714289],[132.157024,47.70543],[132.086191,47.703013],[132.000575,47.712276],[131.976554,47.673201],[131.900793,47.685692],[131.825649,47.677231],[131.741881,47.706638],[131.690142,47.707041],[131.641483,47.663932],[131.59036,47.660707],[131.568186,47.682469],[131.559563,47.724757],[131.543548,47.736028],[131.456085,47.747297],[131.359998,47.730796],[131.273767,47.738846],[131.236811,47.733211],[131.183224,47.702611],[131.115471,47.689721],[131.029855,47.694555],[130.983659,47.713081],[130.966413,47.733211],[130.961486,47.828118],[130.891269,47.927263],[130.870943,47.943301],[130.770544,47.998194],[130.737284,48.034223],[130.699711,48.044227],[130.666451,48.105007],[130.673842,48.12818],[130.765617,48.18926],[130.769313,48.231136],[130.787791,48.256643],[130.817972,48.265409],[130.845073,48.296473],[130.81982,48.341444],[130.785327,48.357353],[130.747755,48.404256],[130.745907,48.449131],[130.776704,48.480084],[130.767465,48.507846],[130.711414,48.511414],[130.647357,48.484844],[130.620871,48.49595],[130.615944,48.575601],[130.605473,48.594207],[130.538335,48.612016],[130.538951,48.635751],[130.576524,48.688719],[130.622103,48.783842],[130.689856,48.849651],[130.680617,48.881146],[130.609168,48.881146],[130.559277,48.861071],[130.501995,48.865795],[130.471198,48.905541],[130.412068,48.905148],[130.279641,48.866976],[130.237757,48.868551],[130.219895,48.893739],[130.113337,48.956653],[130.059135,48.979047],[130.020946,49.021058],[129.937179,49.040285],[129.9187,49.060681],[129.934715,49.078717],[129.913157,49.1085],[129.866962,49.113985],[129.855259,49.133567],[129.864498,49.158621],[129.847867,49.181316],[129.784426,49.184054],[129.753629,49.208692],[129.761636,49.25754],[129.730223,49.288387],[129.696962,49.298535],[129.604571,49.279018],[129.562687,49.299706],[129.546057,49.395227],[129.51834,49.423652],[129.448739,49.441167],[129.390224,49.432605],[129.374826,49.414309],[129.379138,49.367175],[129.358196,49.355871],[129.320623,49.3586],[129.266421,49.396006],[129.215298,49.399122],[129.180805,49.386657],[129.143849,49.357431],[129.084719,49.359769],[129.061929,49.374189],[129.013886,49.457119],[128.932582,49.46801],[128.871604,49.492506],[128.792147,49.473065],[128.76135,49.482009],[128.763198,49.515824],[128.813089,49.558157],[128.802618,49.58222],[128.744104,49.595023],[128.715155,49.564756],[128.656025,49.577564],[128.619684,49.593471],[128.537764,49.604332],[128.500192,49.593859],[128.389939,49.58998],[128.343128,49.544956],[128.287077,49.566309],[128.243345,49.563203],[128.185447,49.53952],[128.122005,49.55311],[128.070882,49.556604],[128.001281,49.592307],[127.949542,49.596187],[127.897804,49.579116],[127.815268,49.593859],[127.782007,49.630698],[127.705015,49.665185],[127.677913,49.697712],[127.674833,49.764247],[127.653892,49.780094],[127.583059,49.786277],[127.531936,49.826059],[127.529472,49.864265],[127.547334,49.928645],[127.543638,49.944438],[127.495595,49.994479],[127.501755,50.056764],[127.58737,50.137768],[127.60708,50.178794],[127.603385,50.239309],[127.44632,50.270686],[127.371791,50.29669],[127.332371,50.340634],[127.369944,50.403996],[127.3644,50.438314],[127.30527,50.45432],[127.293567,50.46575],[127.323132,50.52552],[127.36132,50.547582],[127.370559,50.581415],[127.294799,50.663426],[127.28864,50.699451],[127.305886,50.733932],[127.295415,50.755139],[127.236285,50.781256],[127.143894,50.910111],[127.113713,50.93765],[127.052119,50.962911],[126.985597,51.029202],[126.922772,51.061937],[126.917844,51.138977],[126.899982,51.200518],[126.926467,51.246244],[126.976358,51.291551],[126.98375,51.318863],[126.970815,51.332327],[126.887047,51.321856],[126.877808,51.300906],[126.908605,51.283691],[126.92154,51.259729],[126.908605,51.246619],[126.863025,51.248492],[126.820526,51.281071],[126.813134,51.311756],[126.837156,51.345038],[126.904293,51.340552],[126.930163,51.359241],[126.908605,51.407423],[126.835308,51.413769],[126.791577,51.432428],[126.784185,51.448095],[126.812518,51.493948],[126.843931,51.521885],[126.837156,51.536033],[126.69549,51.57845],[126.67886,51.602246],[126.741069,51.642374],[126.723823,51.679126],[126.734294,51.711399],[126.724439,51.7266],[126.6727,51.73179],[126.658534,51.762544],[126.622809,51.777357],[126.580925,51.824728],[126.555056,51.874266],[126.510092,51.922274],[126.462665,51.948471],[126.468208,51.982395],[126.447882,52.009294],[126.450962,52.027709],[126.487918,52.041699],[126.514404,52.037282],[126.563679,52.119302],[126.556288,52.136203],[126.499005,52.16044],[126.457121,52.165212],[126.403535,52.185031],[126.34502,52.192002],[126.306832,52.205574],[126.312992,52.235271],[126.357955,52.264216],[126.401071,52.279597],[126.436795,52.277034],[126.4331,52.298632],[126.327774,52.310342],[126.320999,52.342163],[126.348716,52.357882],[126.353644,52.389304],[126.326542,52.424353],[126.268644,52.475051],[126.205202,52.466302],[126.192883,52.492181],[126.213209,52.525327],[126.147304,52.573],[126.066616,52.603905],[126.055529,52.582455],[126.030891,52.576273],[125.989008,52.603178],[125.968682,52.630429],[125.971145,52.654033],[125.995783,52.675085],[126.061688,52.673271],[126.072775,52.691048],[126.044442,52.739628],[126.112195,52.757016],[126.116507,52.768243],[126.052449,52.800095],[126.02042,52.795753],[125.985312,52.758465],[125.966834,52.759914],[125.937269,52.786705],[125.923718,52.815651],[125.855349,52.866259],[125.854117,52.891542],[125.827631,52.899123],[125.772197,52.89804],[125.751255,52.88143],[125.722306,52.880347],[125.678574,52.86084],[125.666871,52.869872],[125.665023,52.913561],[125.737088,52.943504],[125.742632,52.993964],[125.684118,53.00801],[125.643466,53.039686],[125.640386,53.06199],[125.613901,53.083564],[125.588647,53.081047],[125.530749,53.0512],[125.504263,53.061271],[125.503647,53.095424],[125.452524,53.107641],[125.343503,53.14463],[125.315786,53.144989],[125.252344,53.18051],[125.195062,53.198439],[125.142091,53.204175],[125.038613,53.202741],[124.970244,53.194137],[124.887708,53.164368],[124.909266,53.118059],[124.87231,53.099018],[124.832889,53.145347],[124.787926,53.140681],[124.734339,53.146783],[124.712165,53.162574],[124.720789,53.192344],[124.678905,53.207043],[124.590209,53.208476],[124.563108,53.201666],[124.496587,53.207759],[124.487348,53.217436],[124.435609,53.223886],[124.412203,53.248601],[124.375863,53.258984],[124.327819,53.331954],[124.239124,53.379817],[124.19416,53.37339],[124.125791,53.348033],[124.058038,53.404085],[124.01369,53.403371],[123.985973,53.434401],[123.865249,53.489627],[123.797495,53.489983],[123.746373,53.500308],[123.698329,53.498528],[123.668764,53.533756],[123.620721,53.550115],[123.58746,53.546915],[123.569598,53.505291],[123.53141,53.507071],[123.557895,53.531978],[123.546808,53.551537],[123.517243,53.558292],[123.490758,53.542648],[123.510468,53.509206],[123.499381,53.497816],[123.47228,53.509206],[123.454417,53.536602],[123.394055,53.538024],[123.309672,53.56078],[123.274563,53.563269],[123.231447,53.549404],[123.179092,53.509918],[123.137209,53.498172],[123.093477,53.508138],[123.052209,53.506715],[122.943804,53.483929],[122.894528,53.462914],[122.826775,53.457213],[122.763949,53.463626],[122.673406,53.459351],[122.608117,53.465408],[122.5379,53.453293],[122.496016,53.458638],[122.435038,53.444739],[122.37406,53.47467],[122.350038,53.505647],[122.266886,53.470039],[122.227466,53.461845],[122.161561,53.468614],[122.111054,53.426913],[122.077177,53.422277],[122.026054,53.428339],[121.875765,53.426556],[121.816019,53.41336],[121.754425,53.389454],[121.697758,53.392666],[121.589969,53.350891],[121.499426,53.337314],[121.504969,53.323018],[121.575802,53.29155],[121.615222,53.258984],[121.642324,53.262564],[121.679896,53.240722],[121.67928,53.199515],[121.660186,53.195213],[121.665114,53.170467],[121.722396,53.145706],[121.753193,53.147501],[121.784606,53.104408],[121.775367,53.089674],[121.817867,53.061631],[121.785838,53.018451],[121.715621,52.997926],[121.677432,52.948192],[121.66265,52.912478],[121.610295,52.892264],[121.604136,52.872401],[121.620766,52.853251],[121.591201,52.824693],[121.537614,52.801542],[121.511129,52.779104],[121.476636,52.772225],[121.455078,52.73528],[121.373158,52.683067],[121.309717,52.676173],[121.29247,52.651855],[121.237036,52.619167],[121.182217,52.59918],[121.225333,52.577364],[121.280151,52.586819],[121.323883,52.573727],[121.353448,52.534793],[121.411963,52.52205],[121.416274,52.499468],[121.474172,52.482706],[121.495114,52.484892],[121.519136,52.456821],[121.565331,52.460468],[121.590585,52.443326],[121.63986,52.44442],[121.678664,52.419973],[121.658338,52.3904],[121.715621,52.342894],[121.714389,52.318025],[121.769207,52.308147],[121.841272,52.282526],[121.901018,52.280695],[121.94783,52.298266],[121.976779,52.343626],[122.035909,52.377615],[122.040837,52.413038],[122.091344,52.427272],[122.080873,52.440407],[122.107358,52.452445],[122.142467,52.495096],[122.140003,52.510032],[122.168952,52.513674],[122.178191,52.48963],[122.207756,52.469218],[122.310618,52.475416],[122.326016,52.459374],[122.342031,52.414133],[122.367284,52.413768],[122.378987,52.395512],[122.419023,52.375057],[122.447356,52.394052],[122.484313,52.341432],[122.478153,52.29607],[122.560689,52.282526],[122.585943,52.266413],[122.67895,52.276667],[122.710979,52.256157],[122.76087,52.26678],[122.787355,52.252494],[122.766413,52.232705],[122.769493,52.179893],[122.73808,52.153464],[122.690653,52.140243],[122.629059,52.13657],[122.643841,52.111585],[122.625363,52.067459],[122.650616,52.058997],[122.664783,51.99861],[122.683877,51.974654],[122.726377,51.978709],[122.729457,51.919321],[122.706051,51.890151],[122.725761,51.87833],[122.732536,51.832495],[122.771957,51.779579],[122.749167,51.746613],[122.778732,51.698048],[122.816304,51.655371],[122.820616,51.633088],[122.85634,51.606707],[122.832935,51.581797],[122.874202,51.561339],[122.880362,51.537894],[122.858804,51.524864],[122.880362,51.511085],[122.854492,51.477551],[122.871123,51.455181],[122.900072,51.445112],[122.903768,51.415262],[122.946267,51.405183],[122.965977,51.386886],[122.965977,51.345786],[123.002934,51.31213],[123.069455,51.321108],[123.127969,51.297913],[123.231447,51.279199],[123.231447,51.268716],[123.294273,51.254111],[123.339853,51.27246],[123.376809,51.266844],[123.414381,51.278825],[123.440251,51.270963],[123.46304,51.286686],[123.582533,51.294545],[123.582533,51.306893],[123.661989,51.319237],[123.660141,51.342795],[123.711264,51.398089],[123.794416,51.361109],[123.842459,51.367462],[123.887423,51.320734],[123.926227,51.300532],[123.939777,51.313253],[123.994596,51.322604],[124.071588,51.320734],[124.090067,51.3413],[124.128255,51.347281],[124.192313,51.33943],[124.239124,51.344664],[124.271769,51.308389],[124.297638,51.298661],[124.339522,51.293422],[124.406659,51.272086],[124.430065,51.301281],[124.426985,51.331953],[124.443616,51.35812],[124.478108,51.36223],[124.490427,51.380537],[124.555717,51.375307],[124.58713,51.363725],[124.62655,51.327465],[124.693687,51.3327],[124.752817,51.35812],[124.76452,51.38726],[124.783614,51.392115],[124.864302,51.37979],[124.885244,51.40817],[124.942527,51.447349],[124.917889,51.474196],[124.928976,51.498419],[124.983795,51.508478],[125.004737,51.529332],[125.047236,51.529704],[125.073106,51.553526],[125.060171,51.59667],[125.098975,51.658341],[125.12854,51.659083],[125.130388,51.635317],[125.175968,51.639403],[125.214772,51.627888],[125.228938,51.640517],[125.289301,51.633831],[125.316402,51.610052],[125.35151,51.623801],[125.38046,51.585516],[125.424807,51.562827],[125.528285,51.488359],[125.559082,51.461521],[125.559082,51.461521],[125.595422,51.416755],[125.595422,51.416755],[125.60035,51.413396],[125.60035,51.413396],[125.600966,51.410409],[125.600966,51.410409],[125.62314,51.398089],[125.62314,51.398089],[125.623756,51.387633],[125.623756,51.387633],[125.626219,51.380163],[125.626219,51.380163],[125.700132,51.327465],[125.700132,51.327465],[125.740784,51.27583],[125.740784,51.27583],[125.76111,51.261976],[125.76111,51.261976],[125.761726,51.226385],[125.819008,51.227134],[125.850421,51.21364],[125.864588,51.146487],[125.909551,51.138977],[125.946508,51.108176],[125.970529,51.123955],[125.993935,51.119072],[125.976073,51.084498],[126.059225,51.043503],[126.033971,51.011132],[126.041978,50.981753],[126.068464,50.967434],[126.042594,50.92558],[126.02042,50.927466],[125.996399,50.906715],[125.997631,50.872738],[125.961906,50.901054],[125.939732,50.85423],[125.913247,50.825885],[125.878138,50.816812],[125.890457,50.805845],[125.836255,50.793363],[125.846726,50.769524],[125.828863,50.756654],[125.804226,50.773309],[125.758646,50.746809],[125.795603,50.738856],[125.78082,50.725598],[125.825784,50.70362],[125.789443,50.679735],[125.804226,50.658874],[125.793139,50.643316],[125.814697,50.62092],[125.807921,50.60383],[125.829479,50.56165],[125.794987,50.532748],[125.770349,50.531227],[125.754335,50.506874],[125.740784,50.523237],[125.699516,50.487078],[125.654553,50.471082],[125.627451,50.443268],[125.580024,50.449366],[125.562162,50.438314],[125.583104,50.409717],[125.567089,50.402852],[125.536292,50.420014],[125.522126,50.404759],[125.546763,50.358965],[125.520278,50.3498],[125.530749,50.331085],[125.463611,50.295925],[125.466075,50.266861],[125.442053,50.260357],[125.448829,50.216338],[125.417416,50.195654],[125.39093,50.199868],[125.382923,50.172278],[125.335496,50.161161],[125.376148,50.137385],[125.311474,50.140453],[125.27883,50.127411],[125.258504,50.103618],[125.287453,50.093636],[125.283757,50.070211],[125.328105,50.065985],[125.315786,50.04562],[125.289916,50.057917],[125.25296,50.041393],[125.283757,50.036012],[125.297924,50.014481],[125.278214,49.996402],[125.241873,49.987938],[125.231402,49.957531],[125.190134,49.959841],[125.199373,49.935194],[125.225859,49.922481],[125.212924,49.907452],[125.245569,49.87198],[125.225243,49.867351],[125.239409,49.844587],[125.177815,49.829533],[125.222779,49.799026],[125.221547,49.754969],[125.204301,49.734086],[125.225243,49.726349],[125.219699,49.669058],[125.185207,49.634574],[125.189518,49.652401],[125.164881,49.669446],[125.132236,49.672157],[125.127308,49.655113],[125.15441,49.616741],[125.16796,49.629923],[125.205533,49.593859],[125.23017,49.595411],[125.233866,49.536801],[125.211076,49.539908],[125.228323,49.487063],[125.270822,49.454395],[125.256656,49.437275],[125.25604,49.395227],[125.277598,49.379644],[125.256656,49.359769],[125.261583,49.322336],[125.214772,49.277066],[125.227707,49.248947],[125.219699,49.189139],[125.187671,49.186792],[125.158721,49.144921],[125.117453,49.126127],[125.034302,49.157056],[125.039845,49.17623],[124.983179,49.162535],[124.906802,49.184054],[124.860607,49.166448],[124.847672,49.129651],[124.809484,49.115943],[124.828578,49.077933],[124.808252,49.020666],[124.756513,48.967262],[124.744194,48.920487],[124.709086,48.920487],[124.715861,48.885475],[124.697383,48.841775],[124.654267,48.83429],[124.644412,48.80789],[124.656115,48.783842],[124.612383,48.747945],[124.624702,48.701755],[124.601912,48.632587],[124.579122,48.596582],[124.520608,48.556195],[124.548941,48.535593],[124.533543,48.515379],[124.555717,48.467784],[124.507674,48.445558],[124.52492,48.426897],[124.51876,48.378027],[124.547094,48.35775],[124.540934,48.335476],[124.579738,48.297269],[124.558796,48.268197],[124.579122,48.262221],[124.547094,48.200829],[124.512601,48.164518],[124.529847,48.146951],[124.505826,48.124985],[124.478108,48.123387],[124.46579,48.098213],[124.415899,48.08782],[124.430065,48.12099],[124.471333,48.133373],[124.475029,48.173698],[124.418978,48.181679],[124.412819,48.219175],[124.422058,48.245884],[124.365392,48.283731],[124.353689,48.315978],[124.317964,48.35099],[124.331515,48.380015],[124.309957,48.413393],[124.330283,48.435633],[124.302566,48.456673],[124.314269,48.503881],[124.25945,48.536385],[124.25945,48.536385],[124.136878,48.463023],[124.07898,48.43603],[124.019234,48.39313],[123.862785,48.271782],[123.746373,48.197638],[123.705105,48.152142],[123.579453,48.045427],[123.537569,48.021816],[123.300432,47.953723],[123.256085,47.876711],[123.214201,47.824502],[123.161846,47.781892],[123.041122,47.746492],[122.926557,47.697777],[122.848949,47.67441],[122.765181,47.614333],[122.59395,47.54732],[122.543443,47.495589],[122.507103,47.401291],[122.418407,47.350632],[122.441197,47.310476],[122.441197,47.310476],[122.462755,47.27841],[122.498479,47.255262],[122.531124,47.198771],[122.582863,47.158092],[122.582863,47.158092],[122.615508,47.124306],[122.679566,47.094164],[122.710363,47.093349],[122.710363,47.093349],[122.821232,47.065636],[122.852645,47.072158],[122.845869,47.046881],[122.778116,47.002822],[122.77442,46.973837],[122.798442,46.9575],[122.791051,46.941567],[122.83971,46.937072],[122.895144,46.960359],[122.893913,46.895376],[122.906847,46.80738],[122.996774,46.761483],[123.00355,46.730726],[123.026339,46.718829],[123.076846,46.745082],[123.103332,46.734828],[123.163694,46.74016],[123.198802,46.803283],[123.22344,46.821305],[123.221592,46.850373],[123.295505,46.865105],[123.341084,46.826628],[123.374345,46.837683],[123.40699,46.906416],[123.404526,46.935438],[123.360179,46.970978],[123.304128,46.964852],[123.301664,46.999965],[123.337389,46.988943],[123.42362,46.934212],[123.487678,46.959951],[123.52833,46.944836],[123.483366,46.84587],[123.506772,46.827038],[123.562823,46.82581],[123.575757,46.845461],[123.576989,46.891286],[123.605322,46.891286],[123.599163,46.868378],[123.625648,46.847508],[123.580069,46.827447],[123.629344,46.813524],[123.631808,46.728675],[123.603475,46.68928],[123.474743,46.686817],[123.366338,46.677784],[123.318295,46.662179],[123.276411,46.660947],[123.279491,46.616981],[123.228368,46.588198],[123.18094,46.614103],[123.098404,46.603002],[123.077462,46.622324],[123.04605,46.617803],[123.052825,46.579972],[123.002318,46.574624],[123.010325,46.524823],[123.011557,46.434984],[123.089781,46.347888],[123.142136,46.298293],[123.178476,46.248239],[123.248078,46.273065],[123.286266,46.250308],[123.320758,46.254447],[123.357099,46.232096],[123.357099,46.232096],[123.430396,46.243687],[123.452569,46.233338],[123.499381,46.259826],[123.569598,46.223816],[123.569598,46.223816]]]]}},{"type":"Feature","properties":{"adcode":310000,"name":"上海市","center":[121.472644,31.231706],"centroid":[121.438737,31.072559],"childrenNum":16,"level":"province","parent":{"adcode":100000},"subFeatureIndex":8,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.901349,31.017327],[120.940153,31.010146],[120.949392,31.030148],[120.989428,31.01425],[121.000515,30.938309],[120.993124,30.889532],[121.020225,30.872069],[120.991892,30.837133],[121.038087,30.814007],[121.060261,30.845354],[121.097833,30.857171],[121.13787,30.826342],[121.123087,30.77905],[121.174826,30.771851],[121.21671,30.785734],[121.232108,30.755909],[121.272144,30.723504],[121.274608,30.677191],[121.362071,30.679764],[121.426129,30.730192],[121.517288,30.775451],[121.601056,30.805269],[121.681128,30.818633],[121.904714,30.814007],[121.943518,30.776993],[121.970004,30.789333],[121.954605,30.825828],[121.994025,30.862823],[121.990945,30.96859],[121.977395,31.016301],[121.946598,31.066039],[121.809859,31.196669],[121.722396,31.3036],[121.599208,31.37465],[121.520984,31.394575],[121.404571,31.479337],[121.343593,31.511996],[121.301093,31.49873],[121.301093,31.49873],[121.247507,31.476785],[121.241963,31.493117],[121.174826,31.44922],[121.143413,31.392021],[121.113848,31.37465],[121.130478,31.343987],[121.142797,31.275472],[121.090442,31.291838],[121.060261,31.245289],[121.076892,31.158267],[121.018377,31.134194],[120.930298,31.141365],[120.881023,31.134706],[120.859465,31.100379],[120.890878,31.094229],[120.901349,31.017327]]],[[[121.974931,31.61704],[121.715005,31.673592],[121.64294,31.697527],[121.599824,31.703128],[121.49881,31.753012],[121.431673,31.769295],[121.384861,31.833382],[121.323267,31.868458],[121.265369,31.863883],[121.200079,31.834907],[121.118775,31.759119],[121.145261,31.75403],[121.289391,31.61653],[121.371926,31.553314],[121.395332,31.585437],[121.434136,31.590535],[121.547469,31.531382],[121.625693,31.501792],[121.682976,31.491075],[121.819098,31.437987],[121.890547,31.428795],[121.981706,31.464024],[121.995873,31.493117],[121.974931,31.61704]]],[[[121.795693,31.330186],[121.792613,31.363408],[121.742106,31.407345],[121.585657,31.454836],[121.567179,31.48342],[121.520984,31.494137],[121.509897,31.4824],[121.572107,31.435944],[121.727939,31.35472],[121.76428,31.31536],[121.785222,31.31127],[121.795693,31.330186]]],[[[121.801852,31.356765],[121.8037,31.328652],[121.840656,31.295418],[121.932431,31.283144],[122.016199,31.282121],[122.097503,31.255522],[122.122756,31.307179],[122.116597,31.320984],[122.040837,31.324051],[121.951525,31.337343],[121.845584,31.37465],[121.792613,31.377715],[121.801852,31.356765]]],[[[121.626925,31.445135],[121.631853,31.456878],[121.579498,31.479848],[121.626925,31.445135]]],[[[121.943518,31.215608],[121.959533,31.159291],[121.995873,31.160828],[122.008808,31.221238],[121.950909,31.228915],[121.943518,31.215608]]],[[[121.88254,31.240684],[121.909026,31.195133],[121.923808,31.234032],[121.88254,31.240684]]]]}},{"type":"Feature","properties":{"adcode":320000,"name":"江苏省","center":[118.767413,32.041544],"centroid":[119.486506,32.983991],"childrenNum":13,"level":"province","parent":{"adcode":100000},"subFeatureIndex":9,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[117.311654,34.561686],[117.27285,34.556757],[117.303647,34.542463],[117.267923,34.532603],[117.27285,34.499565],[117.252524,34.48674],[117.248213,34.451216],[117.166293,34.434435],[117.139191,34.526687],[117.15151,34.559222],[117.104083,34.648874],[117.073286,34.639026],[117.061583,34.675947],[117.070206,34.713835],[117.022163,34.759081],[116.969192,34.771864],[116.95133,34.81069],[116.979047,34.815113],[116.966113,34.844588],[116.929156,34.843114],[116.922381,34.894671],[116.858323,34.928533],[116.821983,34.929515],[116.815823,34.965324],[116.789338,34.975133],[116.781331,34.916757],[116.677853,34.939327],[116.622418,34.939818],[116.613795,34.922645],[116.557745,34.908905],[116.445028,34.895652],[116.408071,34.850972],[116.403144,34.756131],[116.369267,34.749247],[116.363724,34.715311],[116.392057,34.710391],[116.374195,34.640011],[116.430245,34.650843],[116.432709,34.630163],[116.477057,34.614896],[116.490607,34.573513],[116.594085,34.511894],[116.592237,34.493646],[116.662454,34.472927],[116.722816,34.472434],[116.773939,34.453683],[116.782563,34.429993],[116.828142,34.389012],[116.909446,34.408271],[116.969192,34.389012],[116.960569,34.363821],[116.983359,34.348011],[116.969192,34.283753],[117.051112,34.221425],[117.025243,34.167469],[117.046801,34.151622],[117.123793,34.128342],[117.130568,34.101586],[117.192162,34.068873],[117.257452,34.065899],[117.277162,34.078787],[117.311654,34.067882],[117.357234,34.088205],[117.404045,34.03218],[117.435458,34.028212],[117.514914,34.060941],[117.543248,34.038627],[117.569117,33.985051],[117.612849,34.000433],[117.629479,34.028708],[117.671363,33.992494],[117.672595,33.934916],[117.715095,33.879287],[117.753899,33.891211],[117.759442,33.874318],[117.739732,33.758467],[117.72495,33.74951],[117.750203,33.710688],[117.791471,33.733585],[117.843826,33.736074],[117.901724,33.720146],[117.972557,33.74951],[118.019985,33.738562],[118.065564,33.76593],[118.117919,33.766427],[118.161035,33.735576],[118.16781,33.663381],[118.112376,33.617045],[118.117919,33.594615],[118.107448,33.475391],[118.050782,33.491863],[118.027376,33.455421],[118.016905,33.402978],[118.029224,33.374995],[117.992883,33.333005],[117.974405,33.279487],[117.939297,33.262475],[117.942376,33.224936],[117.977485,33.226437],[117.988572,33.180869],[118.037231,33.152314],[118.038463,33.134776],[118.149332,33.169348],[118.178281,33.217926],[118.217085,33.191888],[118.219549,33.114227],[118.243571,33.027967],[118.244803,32.998359],[118.26944,32.969242],[118.303933,32.96874],[118.291614,32.946143],[118.252194,32.936601],[118.2331,32.914498],[118.250346,32.848157],[118.301469,32.846145],[118.300237,32.783275],[118.334114,32.761637],[118.363063,32.770695],[118.375382,32.718849],[118.411106,32.715828],[118.450526,32.743518],[118.483787,32.721367],[118.560163,32.729926],[118.572482,32.719856],[118.642699,32.744525],[118.707373,32.72036],[118.756648,32.737477],[118.73817,32.772708],[118.743097,32.853184],[118.743097,32.853184],[118.810235,32.853687],[118.821322,32.920527],[118.846575,32.922034],[118.849039,32.956689],[118.89585,32.957694],[118.89585,32.957694],[118.892771,32.941121],[118.934039,32.93861],[118.993169,32.958196],[119.020886,32.955685],[119.054763,32.8748],[119.113277,32.823014],[119.184726,32.825529],[119.211827,32.708275],[119.208748,32.641276],[119.230921,32.607001],[119.22045,32.576748],[119.152697,32.557582],[119.168096,32.536394],[119.142226,32.499556],[119.084944,32.452602],[119.041212,32.515201],[118.975923,32.505108],[118.922336,32.557078],[118.92172,32.557078],[118.922336,32.557078],[118.92172,32.557078],[118.890923,32.553042],[118.908169,32.59238],[118.84288,32.56767],[118.820706,32.60448],[118.784981,32.582295],[118.757264,32.603976],[118.73509,32.58885],[118.719076,32.614059],[118.719076,32.614059],[118.688895,32.588346],[118.658714,32.594397],[118.632844,32.578261],[118.59712,32.600951],[118.568787,32.585825],[118.564475,32.562122],[118.608823,32.536899],[118.592192,32.481383],[118.628533,32.467751],[118.691359,32.472295],[118.685199,32.403604],[118.703061,32.328792],[118.657482,32.30148],[118.674728,32.250375],[118.643931,32.209875],[118.510888,32.194176],[118.49549,32.165304],[118.501033,32.121726],[118.433896,32.086746],[118.394476,32.076098],[118.389548,31.985281],[118.363679,31.930443],[118.472084,31.879639],[118.466541,31.857784],[118.504729,31.841516],[118.481939,31.778453],[118.533678,31.76726],[118.521975,31.743343],[118.5577,31.73011],[118.571866,31.746397],[118.641467,31.75861],[118.653786,31.73011],[118.697518,31.709747],[118.643315,31.671555],[118.643315,31.649651],[118.736322,31.633347],[118.748025,31.675629],[118.773894,31.682759],[118.802844,31.619078],[118.858894,31.623665],[118.881684,31.564023],[118.885995,31.519139],[118.883532,31.500261],[118.852119,31.393553],[118.824401,31.375672],[118.767735,31.363919],[118.745561,31.372606],[118.720924,31.322518],[118.726467,31.282121],[118.756648,31.279564],[118.794836,31.229426],[118.870597,31.242219],[118.984546,31.237102],[119.014727,31.241707],[119.10527,31.235055],[119.107118,31.250917],[119.158241,31.294907],[119.197661,31.295418],[119.198277,31.270357],[119.266646,31.250405],[119.294363,31.263195],[119.338095,31.259103],[119.350414,31.301043],[119.374435,31.258591],[119.360269,31.213049],[119.391682,31.174142],[119.439109,31.177214],[119.461283,31.156219],[119.532732,31.159291],[119.599869,31.10909],[119.623891,31.130096],[119.678093,31.167997],[119.705811,31.152634],[119.715666,31.169533],[119.779723,31.17875],[119.809904,31.148536],[119.827151,31.174142],[119.878274,31.160828],[119.921389,31.170045],[119.946027,31.106016],[119.988527,31.059375],[120.001461,31.027071],[120.052584,31.00553],[120.111099,30.955761],[120.149903,30.937283],[120.223816,30.926502],[120.316206,30.933689],[120.371025,30.948575],[120.35809,30.886964],[120.42338,30.902884],[120.435083,30.920855],[120.441858,30.860768],[120.460336,30.839702],[120.489285,30.763624],[120.504684,30.757967],[120.563814,30.835592],[120.589684,30.854089],[120.654973,30.846896],[120.68269,30.882342],[120.713487,30.88491],[120.709176,30.933176],[120.684538,30.955247],[120.698089,30.970643],[120.746132,30.962432],[120.770154,30.996809],[120.820661,31.006556],[120.865624,30.989627],[120.901349,31.017327],[120.890878,31.094229],[120.859465,31.100379],[120.881023,31.134706],[120.930298,31.141365],[121.018377,31.134194],[121.076892,31.158267],[121.060261,31.245289],[121.090442,31.291838],[121.142797,31.275472],[121.130478,31.343987],[121.113848,31.37465],[121.143413,31.392021],[121.174826,31.44922],[121.241963,31.493117],[121.247507,31.476785],[121.301093,31.49873],[121.301093,31.49873],[121.343593,31.511996],[121.371926,31.553314],[121.289391,31.61653],[121.145261,31.75403],[121.118775,31.759119],[121.200079,31.834907],[121.265369,31.863883],[121.323267,31.868458],[121.384861,31.833382],[121.431673,31.769295],[121.49881,31.753012],[121.599824,31.703128],[121.64294,31.697527],[121.715005,31.673592],[121.974931,31.61704],[121.970004,31.718911],[121.889315,31.866425],[121.856055,31.955328],[121.772287,32.032984],[121.759352,32.059362],[121.525295,32.136423],[121.542542,32.152132],[121.458774,32.177462],[121.499426,32.211394],[121.493882,32.263533],[121.450151,32.282256],[121.425513,32.430885],[121.390405,32.460682],[121.352216,32.474315],[121.269681,32.483402],[121.153268,32.52933],[121.121855,32.569183],[121.076892,32.576243],[121.020225,32.605489],[120.961711,32.612042],[120.979573,32.636236],[120.963559,32.68259],[120.916131,32.701225],[120.953088,32.714318],[120.972182,32.761134],[120.981421,32.85972],[120.957399,32.893395],[120.932762,33.005887],[120.917979,33.02596],[120.871784,33.047032],[120.874247,33.093672],[120.843451,33.209915],[120.819429,33.237951],[120.833595,33.274984],[120.813885,33.303499],[120.769538,33.307],[120.741205,33.337505],[120.717183,33.436945],[120.680227,33.520306],[120.622944,33.615051],[120.611241,33.627012],[120.583524,33.668362],[120.534249,33.782346],[120.48559,33.859411],[120.367329,34.091674],[120.347619,34.179352],[120.314359,34.255563],[120.311895,34.306991],[120.103707,34.391481],[119.962657,34.459112],[119.811752,34.485754],[119.781571,34.515839],[119.641137,34.569078],[119.610956,34.592729],[119.569072,34.615389],[119.465594,34.672994],[119.525956,34.73351],[119.456971,34.748264],[119.381827,34.752198],[119.494543,34.754656],[119.497007,34.754164],[119.439725,34.785136],[119.440957,34.769406],[119.378747,34.764489],[119.312841,34.774813],[119.272189,34.797914],[119.238313,34.799388],[119.217371,34.827886],[119.202588,34.890253],[119.214907,34.925589],[119.211211,34.981507],[119.238313,35.048657],[119.285124,35.068252],[119.291899,35.028567],[119.307298,35.032977],[119.292515,35.068742],[119.306066,35.076578],[119.286972,35.115261],[119.250016,35.124562],[119.217371,35.106939],[119.137915,35.096167],[119.114509,35.055026],[119.027045,35.055516],[118.942662,35.040817],[118.928495,35.051106],[118.86259,35.025626],[118.860742,34.944233],[118.805307,34.87307],[118.80038,34.843114],[118.772047,34.794474],[118.739402,34.792508],[118.719076,34.745313],[118.764039,34.740396],[118.783749,34.723181],[118.739402,34.693663],[118.690127,34.678408],[118.664257,34.693663],[118.607591,34.694155],[118.601431,34.714327],[118.545997,34.705964],[118.460997,34.656258],[118.473932,34.623269],[118.439439,34.626223],[118.424657,34.595193],[118.439439,34.507949],[118.416034,34.473914],[118.404947,34.427525],[118.379693,34.415183],[118.290382,34.424563],[118.277447,34.404814],[118.220165,34.405802],[118.217701,34.379134],[118.179513,34.379628],[118.177665,34.45319],[118.132702,34.483287],[118.16473,34.50499],[118.185056,34.543942],[118.079115,34.569571],[118.114839,34.614404],[118.084042,34.655766],[118.053861,34.650843],[117.951615,34.678408],[117.909732,34.670533],[117.902956,34.644443],[117.793935,34.651827],[117.791471,34.583368],[117.801942,34.518798],[117.684298,34.547392],[117.659044,34.501044],[117.609769,34.490686],[117.592523,34.462566],[117.53832,34.467006],[117.465023,34.484767],[117.402813,34.550843],[117.402813,34.569571],[117.370785,34.584846],[117.325205,34.573021],[117.325205,34.573021],[117.32151,34.566614],[117.32151,34.566614],[117.311654,34.561686],[117.311654,34.561686]]]]}},{"type":"Feature","properties":{"adcode":330000,"name":"浙江省","center":[120.153576,30.287459],"centroid":[120.109913,29.181466],"childrenNum":11,"level":"province","parent":{"adcode":100000},"subFeatureIndex":10,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.433896,28.288335],[118.444367,28.253548],[118.490562,28.238259],[118.493026,28.262509],[118.588497,28.282538],[118.595272,28.258292],[118.651322,28.277267],[118.674728,28.27147],[118.699366,28.309939],[118.719692,28.312047],[118.756032,28.252493],[118.802228,28.240368],[118.804075,28.207675],[118.771431,28.188687],[118.805923,28.154923],[118.802228,28.117453],[118.767735,28.10584],[118.719076,28.063601],[118.733858,28.027684],[118.730163,27.970615],[118.753568,27.947885],[118.818242,27.916689],[118.829329,27.847921],[118.873677,27.733563],[118.879836,27.667859],[118.913713,27.619616],[118.909401,27.568168],[118.869365,27.540047],[118.907553,27.460952],[118.955597,27.4498],[118.986393,27.47582],[118.983314,27.498649],[119.020886,27.498118],[119.03998,27.478475],[119.092335,27.466262],[119.129907,27.475289],[119.121284,27.438115],[119.14777,27.424836],[119.224146,27.416868],[119.26911,27.42218],[119.285124,27.457766],[119.334399,27.480067],[119.360269,27.524657],[119.416935,27.539517],[119.438493,27.508734],[119.466826,27.526249],[119.501935,27.610601],[119.501319,27.649837],[119.541971,27.666799],[119.606028,27.674749],[119.644217,27.663619],[119.626354,27.620676],[119.630666,27.582491],[119.675014,27.574534],[119.659615,27.540578],[119.690412,27.537394],[119.70889,27.514042],[119.703347,27.446613],[119.685485,27.438646],[119.711354,27.403054],[119.750774,27.373829],[119.739687,27.362668],[119.782187,27.330241],[119.768636,27.307909],[119.843165,27.300464],[119.938636,27.329709],[119.960194,27.365857],[120.008237,27.375423],[120.026099,27.344063],[120.052584,27.338747],[120.096316,27.390302],[120.136968,27.402523],[120.134504,27.420055],[120.221352,27.420055],[120.26262,27.432804],[120.273091,27.38924],[120.340844,27.399867],[120.343924,27.363199],[120.430155,27.258976],[120.401822,27.250996],[120.404286,27.204166],[120.461568,27.142407],[120.492365,27.136016],[120.545952,27.156785],[120.574901,27.234501],[120.554575,27.25206],[120.580444,27.321203],[120.665444,27.357884],[120.673451,27.420055],[120.703016,27.478475],[120.637111,27.561271],[120.634647,27.577186],[120.685154,27.622797],[120.709176,27.682699],[120.771386,27.734623],[120.777545,27.774873],[120.809574,27.775402],[120.840371,27.758986],[120.910588,27.864852],[120.942001,27.896592],[120.97403,27.887071],[121.027616,27.832574],[121.070116,27.834162],[121.107688,27.81352],[121.152036,27.815638],[121.134174,27.787051],[121.13479,27.787051],[121.149572,27.801345],[121.149572,27.801875],[121.153268,27.809815],[121.152652,27.810344],[121.192072,27.822518],[121.193304,27.872259],[121.162507,27.879136],[121.162507,27.90717],[121.099681,27.895005],[121.05595,27.900294],[120.991892,27.95],[121.015298,27.981714],[121.059029,28.096338],[121.108304,28.139092],[121.121239,28.12537],[121.140949,28.031382],[121.176058,28.022401],[121.261057,28.034551],[121.299862,28.067297],[121.328195,28.134343],[121.373774,28.133287],[121.402107,28.197127],[121.45631,28.250385],[121.488955,28.301509],[121.538846,28.299401],[121.571491,28.279376],[121.580114,28.240368],[121.627541,28.251966],[121.669425,28.33312],[121.660186,28.355768],[121.634317,28.347868],[121.658954,28.392628],[121.692831,28.407368],[121.671273,28.472621],[121.646019,28.511544],[121.634317,28.562542],[121.596128,28.575156],[121.557324,28.645033],[121.540694,28.655537],[121.646019,28.682842],[121.689135,28.719062],[121.704534,28.804577],[121.687287,28.863294],[121.774751,28.863818],[121.772287,28.898404],[121.743338,28.954451],[121.711309,28.985865],[121.712541,29.028783],[121.658954,29.058606],[121.660186,29.118226],[121.616454,29.143318],[121.608447,29.168927],[121.715621,29.125022],[121.750113,29.136523],[121.767975,29.166837],[121.780294,29.10986],[121.811091,29.10986],[121.85975,29.086328],[121.884388,29.105677],[121.966308,29.052852],[121.970004,29.092604],[121.988482,29.110906],[121.986634,29.154817],[121.948446,29.193485],[121.971851,29.193485],[121.966924,29.249894],[122.002032,29.260336],[122.000185,29.278608],[121.94475,29.28435],[121.958301,29.334448],[121.936127,29.348012],[121.937975,29.384],[121.975547,29.411113],[121.993409,29.45229],[121.973083,29.477821],[121.968772,29.515846],[121.995257,29.545007],[122.000185,29.582486],[121.966308,29.636078],[121.909641,29.650122],[121.872685,29.632437],[121.833265,29.653242],[121.937359,29.748373],[122.003264,29.762401],[122.043916,29.822647],[122.10243,29.859504],[122.143082,29.877668],[122.140003,29.901535],[122.00696,29.891678],[122.00388,29.92021],[121.971235,29.955476],[121.919497,29.920729],[121.835113,29.958068],[121.78399,29.99332],[121.721164,29.992802],[121.699606,30.007832],[121.652795,30.071037],[121.635548,30.070002],[121.561636,30.184395],[121.497578,30.258861],[121.395332,30.338435],[121.371926,30.37097],[121.328195,30.397299],[121.225333,30.404526],[121.183449,30.434458],[121.092906,30.515952],[121.058413,30.563888],[121.148956,30.599953],[121.188992,30.632916],[121.239499,30.648878],[121.274608,30.677191],[121.272144,30.723504],[121.232108,30.755909],[121.21671,30.785734],[121.174826,30.771851],[121.123087,30.77905],[121.13787,30.826342],[121.097833,30.857171],[121.060261,30.845354],[121.038087,30.814007],[120.991892,30.837133],[121.020225,30.872069],[120.993124,30.889532],[121.000515,30.938309],[120.989428,31.01425],[120.949392,31.030148],[120.940153,31.010146],[120.901349,31.017327],[120.865624,30.989627],[120.820661,31.006556],[120.770154,30.996809],[120.746132,30.962432],[120.698089,30.970643],[120.684538,30.955247],[120.709176,30.933176],[120.713487,30.88491],[120.68269,30.882342],[120.654973,30.846896],[120.589684,30.854089],[120.563814,30.835592],[120.504684,30.757967],[120.489285,30.763624],[120.460336,30.839702],[120.441858,30.860768],[120.435083,30.920855],[120.42338,30.902884],[120.35809,30.886964],[120.371025,30.948575],[120.316206,30.933689],[120.223816,30.926502],[120.149903,30.937283],[120.111099,30.955761],[120.052584,31.00553],[120.001461,31.027071],[119.988527,31.059375],[119.946027,31.106016],[119.921389,31.170045],[119.878274,31.160828],[119.827151,31.174142],[119.809904,31.148536],[119.779723,31.17875],[119.715666,31.169533],[119.705811,31.152634],[119.678093,31.167997],[119.623891,31.130096],[119.649144,31.104991],[119.629434,31.085517],[119.633746,31.019379],[119.580159,30.967051],[119.582007,30.932149],[119.563529,30.919315],[119.557369,30.874124],[119.575847,30.829939],[119.55429,30.825828],[119.527188,30.77905],[119.479761,30.772365],[119.482841,30.704467],[119.444652,30.650422],[119.408312,30.645274],[119.39045,30.685941],[119.343022,30.664322],[119.323312,30.630341],[119.238929,30.609225],[119.265414,30.574709],[119.237081,30.546881],[119.272189,30.510281],[119.326392,30.532964],[119.336247,30.508734],[119.335015,30.448389],[119.36766,30.38491],[119.402768,30.374584],[119.349182,30.349281],[119.326392,30.372002],[119.277117,30.341018],[119.246936,30.341018],[119.236465,30.297106],[119.201356,30.290905],[119.126828,30.304856],[119.091719,30.323972],[119.06277,30.304856],[118.988857,30.332237],[118.954365,30.360126],[118.880452,30.31519],[118.877988,30.282637],[118.905089,30.216464],[118.929727,30.2025],[118.852735,30.166805],[118.852119,30.149729],[118.895234,30.148694],[118.873677,30.11505],[118.878604,30.064822],[118.902626,30.029078],[118.894619,29.937845],[118.838568,29.934733],[118.841032,29.891159],[118.740634,29.814859],[118.744945,29.73902],[118.700598,29.706277],[118.647011,29.64336],[118.61991,29.654282],[118.573714,29.638159],[118.532446,29.588731],[118.500417,29.57572],[118.496106,29.519492],[118.381541,29.504909],[118.347664,29.474174],[118.329802,29.495012],[118.306396,29.479384],[118.316252,29.422581],[118.248498,29.431443],[118.193064,29.395472],[118.205382,29.343839],[118.166578,29.314099],[118.178281,29.297921],[118.138861,29.283828],[118.077883,29.290614],[118.073571,29.216993],[118.042159,29.210202],[118.027992,29.167882],[118.045238,29.149068],[118.037847,29.102017],[118.076035,29.074822],[118.066796,29.053898],[118.097593,28.998952],[118.115455,29.009944],[118.115455,29.009944],[118.133933,28.983771],[118.165346,28.986912],[118.227556,28.942406],[118.195527,28.904167],[118.270056,28.918836],[118.300237,28.826075],[118.364295,28.813491],[118.403099,28.702791],[118.428352,28.681267],[118.428352,28.617193],[118.428352,28.617193],[118.412338,28.55676],[118.4302,28.515225],[118.414802,28.497344],[118.474548,28.478934],[118.456686,28.424738],[118.432048,28.402104],[118.455454,28.384204],[118.480091,28.327325],[118.433896,28.288335]]],[[[122.163408,29.988137],[122.239785,29.962735],[122.279205,29.937326],[122.322321,29.940438],[122.341415,29.976733],[122.343879,30.020269],[122.310002,30.039958],[122.290908,30.074663],[122.301379,30.086574],[122.293988,30.100554],[122.152938,30.113497],[122.095655,30.158008],[122.048844,30.147141],[121.955221,30.183878],[121.934895,30.161631],[121.983554,30.100554],[121.989714,30.077252],[121.978011,30.059125],[122.027902,29.991247],[122.106742,30.005759],[122.118445,29.986582],[122.163408,29.988137]]],[[[122.213915,30.186464],[122.178807,30.199396],[122.152938,30.19112],[122.143698,30.163183],[122.168336,30.138343],[122.213915,30.186464]]],[[[122.229314,29.711995],[122.210836,29.700559],[122.269966,29.685482],[122.231162,29.710435],[122.229314,29.711995]]],[[[122.427646,30.738422],[122.427031,30.697777],[122.532972,30.696748],[122.528045,30.725047],[122.475074,30.714243],[122.445509,30.745109],[122.427646,30.738422]]],[[[122.162793,30.329654],[122.058083,30.291938],[122.154169,30.244903],[122.231778,30.234562],[122.247176,30.30124],[122.228082,30.329654],[122.191126,30.329654],[122.176343,30.351863],[122.162793,30.329654]]],[[[122.317393,30.249556],[122.277973,30.242835],[122.358661,30.236113],[122.365437,30.255242],[122.417175,30.238699],[122.40732,30.272817],[122.333408,30.272817],[122.317393,30.249556]]],[[[122.026054,29.178333],[122.013119,29.151681],[122.056851,29.158476],[122.075945,29.176243],[122.036525,29.20759],[122.026054,29.178333]]],[[[122.372212,29.893234],[122.386379,29.834069],[122.415944,29.828877],[122.401777,29.869884],[122.433806,29.883376],[122.43319,29.919173],[122.411632,29.951846],[122.398081,29.9394],[122.351886,29.959105],[122.330944,29.937845],[122.338951,29.911911],[122.353734,29.89946],[122.362973,29.894272],[122.372212,29.893234]]],[[[122.43011,30.408655],[122.432574,30.445294],[122.37406,30.461802],[122.277973,30.471603],[122.281669,30.418461],[122.318625,30.407106],[122.352502,30.422074],[122.43011,30.408655]]],[[[121.837577,28.770484],[121.86283,28.782024],[121.861598,28.814016],[121.837577,28.770484]]],[[[122.265038,29.84549],[122.221307,29.832512],[122.248408,29.804473],[122.310002,29.766557],[122.325401,29.781621],[122.299531,29.819532],[122.319241,29.829397],[122.265038,29.84549]]],[[[121.790765,29.082144],[121.832649,29.050236],[121.84312,29.082144],[121.82033,29.099402],[121.790765,29.082144]]],[[[121.201311,27.623328],[121.197616,27.618025],[121.198848,27.616964],[121.203775,27.625979],[121.201311,27.623328]]],[[[121.943518,30.776993],[121.968156,30.688514],[121.997105,30.658659],[122.087032,30.602014],[122.133227,30.595317],[122.075329,30.647848],[122.011271,30.66947],[121.992793,30.695204],[121.987866,30.753338],[121.970004,30.789333],[121.943518,30.776993]]],[[[121.889315,28.471569],[121.918881,28.497344],[121.881924,28.502603],[121.889315,28.471569]]],[[[122.182503,29.650642],[122.211452,29.692241],[122.200365,29.712515],[122.146778,29.749412],[122.13138,29.788893],[122.083952,29.78318],[122.047612,29.719791],[122.074097,29.701599],[122.095655,29.716673],[122.138155,29.662083],[122.182503,29.650642]]],[[[122.461523,29.944068],[122.459675,29.944586],[122.460291,29.947179],[122.451668,29.943031],[122.451052,29.940956],[122.450436,29.940956],[122.449204,29.9394],[122.4529,29.936807],[122.452284,29.935252],[122.45598,29.926435],[122.457827,29.927472],[122.462755,29.927991],[122.467067,29.928509],[122.459059,29.938882],[122.461523,29.944068]]],[[[122.570544,30.644244],[122.559457,30.679764],[122.546523,30.651967],[122.570544,30.644244]]],[[[121.869605,28.423685],[121.910873,28.44],[121.889931,28.45105],[121.869605,28.423685]]],[[[122.065474,30.179739],[122.055619,30.200431],[122.017431,30.186464],[122.025438,30.161631],[122.065474,30.179739]]],[[[122.391306,29.970512],[122.411632,30.025969],[122.378371,30.023896],[122.3679,29.980361],[122.391306,29.970512]]],[[[121.850511,29.977251],[121.874533,29.964809],[121.933047,29.994875],[121.924424,30.052391],[121.88562,30.094859],[121.848663,30.101072],[121.84004,30.047211],[121.844968,29.982953],[121.850511,29.977251]]],[[[121.066421,27.478475],[121.066421,27.461483],[121.107073,27.443958],[121.067036,27.478475],[121.066421,27.478475]]],[[[121.952141,29.187738],[121.979243,29.160043],[121.976779,29.191918],[121.952141,29.187738]]],[[[122.038373,29.759284],[122.011271,29.746294],[122.02975,29.716673],[122.038373,29.759284]]],[[[121.940438,30.114533],[121.910257,30.089163],[121.945982,30.064304],[121.962612,30.106249],[121.940438,30.114533]]],[[[121.957685,30.287804],[122.0008,30.308473],[121.989098,30.339985],[121.94167,30.33327],[121.921344,30.30744],[121.957685,30.287804]]],[[[122.192974,29.965327],[122.163408,29.988137],[122.152322,29.97103],[122.154169,29.97103],[122.155401,29.970512],[122.18435,29.955476],[122.192974,29.965327]]],[[[122.287828,29.723949],[122.301379,29.748373],[122.258263,29.753569],[122.241633,29.784738],[122.2133,29.771752],[122.251488,29.731225],[122.287828,29.723949]]],[[[121.134174,27.787051],[121.134174,27.785992],[121.13479,27.787051],[121.134174,27.787051]]],[[[122.760254,30.141966],[122.784275,30.130062],[122.781196,30.13265],[122.778116,30.13679],[122.770725,30.138861],[122.763333,30.141966],[122.762101,30.142484],[122.760254,30.141966]]],[[[122.264423,30.269716],[122.253952,30.237147],[122.315545,30.250073],[122.300147,30.271266],[122.264423,30.269716]]],[[[122.282901,29.860542],[122.30877,29.849642],[122.343263,29.860542],[122.343263,29.882857],[122.301379,29.883895],[122.282901,29.860542]]],[[[122.781196,30.694175],[122.799674,30.716301],[122.778732,30.729677],[122.757174,30.713728],[122.781196,30.694175]]],[[[121.098449,27.937311],[121.152652,27.961629],[121.120623,27.986471],[121.0695,27.984357],[121.038087,27.948942],[121.098449,27.937311]]],[[[121.185913,27.963215],[121.237652,27.988056],[121.197616,28.000739],[121.17113,27.978543],[121.185913,27.963215]]],[[[122.454132,29.956513],[122.447972,29.955994],[122.445509,29.952365],[122.446741,29.951327],[122.447972,29.947698],[122.459059,29.950809],[122.458443,29.951846],[122.455364,29.955994],[122.454132,29.956513]]],[[[122.836014,30.698806],[122.831087,30.728648],[122.807681,30.714243],[122.836014,30.698806]]],[[[122.200365,29.969475],[122.233626,29.946661],[122.273662,29.93214],[122.239785,29.960142],[122.200365,29.969475]]],[[[122.029134,29.954957],[122.043916,29.930584],[122.058699,29.955994],[122.029134,29.954957]]],[[[121.044247,27.979072],[121.089826,27.998625],[121.073812,28.007608],[121.044247,27.979072]]],[[[122.471378,29.927472],[122.470762,29.925916],[122.473226,29.925397],[122.47261,29.927472],[122.471378,29.927472]]],[[[122.152322,29.97103],[122.155401,29.970512],[122.154169,29.97103],[122.152322,29.97103]]]]}},{"type":"Feature","properties":{"adcode":340000,"name":"安徽省","center":[117.283042,31.86119],"centroid":[117.226884,31.849254],"childrenNum":16,"level":"province","parent":{"adcode":100000},"subFeatureIndex":11,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.599629,34.014324],[116.641512,33.978103],[116.64336,33.896675],[116.631042,33.887733],[116.566984,33.9081],[116.558361,33.881274],[116.486296,33.869846],[116.437637,33.846489],[116.437021,33.801246],[116.408071,33.805721],[116.393905,33.782843],[116.316912,33.771402],[116.263326,33.730101],[116.230065,33.735078],[116.155536,33.709693],[116.132747,33.751501],[116.100102,33.782843],[116.074232,33.781351],[116.055754,33.804727],[116.05945,33.860902],[115.982457,33.917039],[116.00032,33.965199],[115.95782,34.007875],[115.904233,34.009859],[115.876516,34.028708],[115.877132,34.002913],[115.85003,34.004898],[115.846335,34.028708],[115.809378,34.062428],[115.768726,34.061932],[115.736082,34.076805],[115.705901,34.059949],[115.658473,34.061437],[115.642459,34.03218],[115.60735,34.030196],[115.579017,33.974133],[115.577785,33.950307],[115.547604,33.874815],[115.631988,33.869846],[115.614126,33.775879],[115.576553,33.787817],[115.563003,33.772895],[115.601807,33.718653],[115.601191,33.658898],[115.639995,33.585143],[115.564851,33.576169],[115.511264,33.55323],[115.463837,33.567193],[115.422569,33.557219],[115.394851,33.506335],[115.366518,33.5233],[115.345576,33.502842],[115.345576,33.449928],[115.324634,33.457418],[115.315395,33.431451],[115.328946,33.403477],[115.313547,33.376994],[115.341881,33.370997],[115.365286,33.336005],[115.361591,33.298497],[115.335105,33.297997],[115.340033,33.260973],[115.300613,33.204407],[115.303692,33.149809],[115.289526,33.131769],[115.245178,33.135778],[115.194671,33.120743],[115.168186,33.088658],[115.041302,33.086653],[114.990795,33.102195],[114.966158,33.147304],[114.932897,33.153817],[114.902716,33.129764],[114.897172,33.086653],[114.913187,33.083143],[114.925506,33.016928],[114.891629,33.020441],[114.883006,32.990328],[114.916266,32.971251],[114.943368,32.935094],[115.009273,32.940117],[115.035143,32.932582],[115.029599,32.906962],[115.139237,32.897917],[115.155867,32.864747],[115.197135,32.856201],[115.189744,32.812452],[115.211301,32.785791],[115.189744,32.770695],[115.179273,32.726402],[115.182968,32.666973],[115.20083,32.591876],[115.24333,32.593388],[115.267352,32.578261],[115.30554,32.583303],[115.304924,32.553042],[115.411482,32.575235],[115.409018,32.549007],[115.497713,32.492489],[115.5088,32.468761],[115.510648,32.468761],[115.510648,32.468256],[115.510648,32.467751],[115.509416,32.466741],[115.522967,32.441997],[115.57101,32.419266],[115.604271,32.425833],[115.626445,32.40512],[115.657857,32.428864],[115.667712,32.409667],[115.704669,32.495013],[115.742241,32.476335],[115.771806,32.505108],[115.789052,32.468761],[115.861117,32.537403],[115.891298,32.576243],[115.910393,32.567165],[115.8759,32.542448],[115.845719,32.501575],[115.883291,32.487946],[115.865429,32.458662],[115.899306,32.390971],[115.912856,32.227596],[115.941805,32.166318],[115.922095,32.049725],[115.928871,32.003046],[115.909161,31.94314],[115.920248,31.920285],[115.894994,31.8649],[115.893762,31.832365],[115.914704,31.814567],[115.886371,31.776418],[115.851878,31.786593],[115.808147,31.770313],[115.808147,31.770313],[115.767495,31.78761],[115.731154,31.76726],[115.676336,31.778453],[115.553764,31.69549],[115.534054,31.698545],[115.495249,31.673083],[115.476771,31.643028],[115.485394,31.608885],[115.439815,31.588496],[115.415793,31.525771],[115.371446,31.495668],[115.389924,31.450241],[115.373909,31.405813],[115.393004,31.389977],[115.372062,31.349098],[115.40717,31.337854],[115.443511,31.344498],[115.473076,31.265242],[115.507568,31.267799],[115.539597,31.231985],[115.540213,31.194621],[115.585793,31.143926],[115.603655,31.17363],[115.655394,31.211002],[115.700973,31.201276],[115.778582,31.112164],[115.797676,31.128047],[115.837712,31.127022],[115.867277,31.147512],[115.887603,31.10909],[115.939958,31.071678],[115.938726,31.04707],[116.006479,31.034764],[116.015102,31.011685],[116.058834,31.012711],[116.071769,30.956787],[116.03974,30.957813],[115.976298,30.931636],[115.932566,30.889532],[115.865429,30.864364],[115.848799,30.828397],[115.863581,30.815549],[115.851262,30.756938],[115.782893,30.751795],[115.762567,30.685426],[115.81369,30.637035],[115.819234,30.597893],[115.848799,30.602014],[115.876516,30.582438],[115.887603,30.542758],[115.910393,30.519046],[115.894994,30.452517],[115.921479,30.416397],[115.885139,30.379747],[115.91532,30.337919],[115.903001,30.31364],[115.985537,30.290905],[115.997856,30.252657],[116.065609,30.204569],[116.055754,30.180774],[116.088399,30.110391],[116.078544,30.062233],[116.091479,30.036331],[116.073616,29.969993],[116.128435,29.897904],[116.13521,29.819532],[116.172783,29.828358],[116.227601,29.816936],[116.250391,29.785777],[116.280572,29.788893],[116.342782,29.835626],[116.467818,29.896347],[116.525716,29.897385],[116.552201,29.909836],[116.585462,30.045657],[116.620571,30.073109],[116.666766,30.076734],[116.720353,30.053945],[116.747454,30.057053],[116.783794,30.030632],[116.802889,29.99643],[116.830606,30.004723],[116.83307,29.95755],[116.868794,29.980361],[116.900207,29.949253],[116.882961,29.893753],[116.780715,29.792529],[116.762237,29.802396],[116.673541,29.709916],[116.698795,29.707836],[116.70557,29.69692],[116.706802,29.6964],[116.704954,29.688602],[116.680317,29.681323],[116.651983,29.637118],[116.716657,29.590813],[116.721585,29.564789],[116.760389,29.599139],[116.780715,29.569994],[116.849084,29.57624],[116.873722,29.609546],[116.939627,29.648561],[116.974736,29.657403],[116.996294,29.683403],[117.041873,29.680803],[117.112706,29.711995],[117.108395,29.75201],[117.136728,29.775388],[117.123177,29.798761],[117.073286,29.831992],[117.127489,29.86158],[117.129952,29.89946],[117.171836,29.920729],[117.2168,29.926953],[117.246365,29.915023],[117.261763,29.880781],[117.25314,29.834588],[117.29256,29.822647],[117.338756,29.848085],[117.359082,29.812782],[117.382487,29.840818],[117.415132,29.85068],[117.408973,29.802396],[117.455168,29.749412],[117.453936,29.688082],[117.490277,29.660003],[117.530313,29.654282],[117.523538,29.630356],[117.543248,29.588731],[117.608537,29.591333],[117.647957,29.614749],[117.678754,29.595496],[117.690457,29.555939],[117.729877,29.550213],[117.795167,29.570515],[117.872775,29.54761],[117.933753,29.549172],[118.00397,29.578322],[118.042774,29.566351],[118.050782,29.542924],[118.095129,29.534072],[118.143788,29.489803],[118.127774,29.47209],[118.136397,29.418932],[118.193064,29.395472],[118.248498,29.431443],[118.316252,29.422581],[118.306396,29.479384],[118.329802,29.495012],[118.347664,29.474174],[118.381541,29.504909],[118.496106,29.519492],[118.500417,29.57572],[118.532446,29.588731],[118.573714,29.638159],[118.61991,29.654282],[118.647011,29.64336],[118.700598,29.706277],[118.744945,29.73902],[118.740634,29.814859],[118.841032,29.891159],[118.838568,29.934733],[118.894619,29.937845],[118.902626,30.029078],[118.878604,30.064822],[118.873677,30.11505],[118.895234,30.148694],[118.852119,30.149729],[118.852735,30.166805],[118.929727,30.2025],[118.905089,30.216464],[118.877988,30.282637],[118.880452,30.31519],[118.954365,30.360126],[118.988857,30.332237],[119.06277,30.304856],[119.091719,30.323972],[119.126828,30.304856],[119.201356,30.290905],[119.236465,30.297106],[119.246936,30.341018],[119.277117,30.341018],[119.326392,30.372002],[119.349182,30.349281],[119.402768,30.374584],[119.36766,30.38491],[119.335015,30.448389],[119.336247,30.508734],[119.326392,30.532964],[119.272189,30.510281],[119.237081,30.546881],[119.265414,30.574709],[119.238929,30.609225],[119.323312,30.630341],[119.343022,30.664322],[119.39045,30.685941],[119.408312,30.645274],[119.444652,30.650422],[119.482841,30.704467],[119.479761,30.772365],[119.527188,30.77905],[119.55429,30.825828],[119.575847,30.829939],[119.557369,30.874124],[119.563529,30.919315],[119.582007,30.932149],[119.580159,30.967051],[119.633746,31.019379],[119.629434,31.085517],[119.649144,31.104991],[119.623891,31.130096],[119.599869,31.10909],[119.532732,31.159291],[119.461283,31.156219],[119.439109,31.177214],[119.391682,31.174142],[119.360269,31.213049],[119.374435,31.258591],[119.350414,31.301043],[119.338095,31.259103],[119.294363,31.263195],[119.266646,31.250405],[119.198277,31.270357],[119.197661,31.295418],[119.158241,31.294907],[119.107118,31.250917],[119.10527,31.235055],[119.014727,31.241707],[118.984546,31.237102],[118.870597,31.242219],[118.794836,31.229426],[118.756648,31.279564],[118.726467,31.282121],[118.720924,31.322518],[118.745561,31.372606],[118.767735,31.363919],[118.824401,31.375672],[118.852119,31.393553],[118.883532,31.500261],[118.857046,31.506384],[118.865669,31.519139],[118.885995,31.519139],[118.881684,31.564023],[118.858894,31.623665],[118.802844,31.619078],[118.773894,31.682759],[118.748025,31.675629],[118.736322,31.633347],[118.643315,31.649651],[118.643315,31.671555],[118.697518,31.709747],[118.653786,31.73011],[118.641467,31.75861],[118.571866,31.746397],[118.5577,31.73011],[118.521975,31.743343],[118.533678,31.76726],[118.481939,31.778453],[118.504729,31.841516],[118.466541,31.857784],[118.472084,31.879639],[118.363679,31.930443],[118.389548,31.985281],[118.394476,32.076098],[118.433896,32.086746],[118.501033,32.121726],[118.49549,32.165304],[118.510888,32.194176],[118.643931,32.209875],[118.674728,32.250375],[118.657482,32.30148],[118.703061,32.328792],[118.685199,32.403604],[118.691359,32.472295],[118.628533,32.467751],[118.592192,32.481383],[118.608823,32.536899],[118.564475,32.562122],[118.568787,32.585825],[118.59712,32.600951],[118.632844,32.578261],[118.658714,32.594397],[118.688895,32.588346],[118.719076,32.614059],[118.719076,32.614059],[118.73509,32.58885],[118.757264,32.603976],[118.784981,32.582295],[118.820706,32.60448],[118.84288,32.56767],[118.908169,32.59238],[118.890923,32.553042],[118.92172,32.557078],[118.922336,32.557078],[118.92172,32.557078],[118.922336,32.557078],[118.975923,32.505108],[119.041212,32.515201],[119.084944,32.452602],[119.142226,32.499556],[119.168096,32.536394],[119.152697,32.557582],[119.22045,32.576748],[119.230921,32.607001],[119.208748,32.641276],[119.211827,32.708275],[119.184726,32.825529],[119.113277,32.823014],[119.054763,32.8748],[119.020886,32.955685],[118.993169,32.958196],[118.934039,32.93861],[118.892771,32.941121],[118.89585,32.957694],[118.89585,32.957694],[118.849039,32.956689],[118.846575,32.922034],[118.821322,32.920527],[118.810235,32.853687],[118.743097,32.853184],[118.743097,32.853184],[118.73817,32.772708],[118.756648,32.737477],[118.707373,32.72036],[118.642699,32.744525],[118.572482,32.719856],[118.560163,32.729926],[118.483787,32.721367],[118.450526,32.743518],[118.411106,32.715828],[118.375382,32.718849],[118.363063,32.770695],[118.334114,32.761637],[118.300237,32.783275],[118.301469,32.846145],[118.250346,32.848157],[118.2331,32.914498],[118.252194,32.936601],[118.291614,32.946143],[118.303933,32.96874],[118.26944,32.969242],[118.244803,32.998359],[118.243571,33.027967],[118.219549,33.114227],[118.217085,33.191888],[118.178281,33.217926],[118.149332,33.169348],[118.038463,33.134776],[118.037231,33.152314],[117.988572,33.180869],[117.977485,33.226437],[117.942376,33.224936],[117.939297,33.262475],[117.974405,33.279487],[117.992883,33.333005],[118.029224,33.374995],[118.016905,33.402978],[118.027376,33.455421],[118.050782,33.491863],[118.107448,33.475391],[118.117919,33.594615],[118.112376,33.617045],[118.16781,33.663381],[118.161035,33.735576],[118.117919,33.766427],[118.065564,33.76593],[118.019985,33.738562],[117.972557,33.74951],[117.901724,33.720146],[117.843826,33.736074],[117.791471,33.733585],[117.750203,33.710688],[117.72495,33.74951],[117.739732,33.758467],[117.759442,33.874318],[117.753899,33.891211],[117.715095,33.879287],[117.672595,33.934916],[117.671363,33.992494],[117.629479,34.028708],[117.612849,34.000433],[117.569117,33.985051],[117.543248,34.038627],[117.514914,34.060941],[117.435458,34.028212],[117.404045,34.03218],[117.357234,34.088205],[117.311654,34.067882],[117.277162,34.078787],[117.257452,34.065899],[117.192162,34.068873],[117.130568,34.101586],[117.123793,34.128342],[117.046801,34.151622],[117.025243,34.167469],[117.051112,34.221425],[116.969192,34.283753],[116.983359,34.348011],[116.960569,34.363821],[116.969192,34.389012],[116.909446,34.408271],[116.828142,34.389012],[116.782563,34.429993],[116.773939,34.453683],[116.722816,34.472434],[116.662454,34.472927],[116.592237,34.493646],[116.594085,34.511894],[116.490607,34.573513],[116.477057,34.614896],[116.432709,34.630163],[116.430245,34.650843],[116.374195,34.640011],[116.334159,34.620806],[116.32492,34.601104],[116.286116,34.608986],[116.247927,34.551829],[116.196804,34.575977],[116.191261,34.535561],[116.204196,34.508442],[116.178326,34.496112],[116.162312,34.459605],[116.178942,34.430487],[116.215898,34.403333],[116.213435,34.382098],[116.255934,34.376665],[116.301514,34.342082],[116.357564,34.319843],[116.372347,34.26595],[116.409303,34.273863],[116.409303,34.273863],[116.456731,34.268917],[116.516477,34.296114],[116.562056,34.285731],[116.582382,34.266444],[116.545426,34.241711],[116.542962,34.203608],[116.565752,34.16945],[116.536187,34.151127],[116.52818,34.122892],[116.576223,34.068873],[116.576223,34.068873],[116.599629,34.014324],[116.599629,34.014324]]],[[[118.865669,31.519139],[118.857046,31.506384],[118.883532,31.500261],[118.885995,31.519139],[118.865669,31.519139]]],[[[116.698795,29.707836],[116.673541,29.709916],[116.653831,29.694841],[116.680317,29.681323],[116.704954,29.688602],[116.706802,29.6964],[116.70557,29.69692],[116.698795,29.707836]]],[[[115.5088,32.468761],[115.509416,32.466741],[115.510648,32.467751],[115.510648,32.468256],[115.510648,32.468761],[115.5088,32.468761]]]]}},{"type":"Feature","properties":{"adcode":350000,"name":"福建省","center":[119.306239,26.075302],"centroid":[118.006468,26.069925],"childrenNum":9,"level":"province","parent":{"adcode":100000},"subFeatureIndex":12,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[119.004872,24.970009],[118.989473,24.973807],[119.023966,25.04377],[119.016575,25.058409],[118.974691,25.024792],[118.945126,25.028588],[118.892155,25.092558],[118.974691,25.115319],[118.951901,25.15162],[118.985162,25.168954],[118.985162,25.19495],[118.942046,25.211195],[118.940198,25.21715],[118.943278,25.221482],[118.903242,25.239347],[118.900162,25.242595],[118.919256,25.248008],[118.91556,25.256668],[118.918024,25.25721],[118.956212,25.272905],[118.996864,25.266411],[118.975307,25.237723],[118.990089,25.20199],[119.055379,25.219316],[119.074473,25.211195],[119.054147,25.168412],[119.032589,25.17437],[119.028893,25.139702],[119.06585,25.102855],[119.075705,25.099604],[119.134219,25.106107],[119.107118,25.075214],[119.119436,25.012861],[119.146538,25.056782],[119.165632,25.145661],[119.137299,25.15487],[119.108349,25.193867],[119.131755,25.223106],[119.190269,25.175995],[119.231537,25.188993],[119.26911,25.159746],[119.314689,25.190076],[119.294979,25.237182],[119.331935,25.230685],[119.380595,25.250173],[119.333167,25.287516],[119.299291,25.328634],[119.247552,25.333502],[119.240776,25.316733],[119.218603,25.368115],[119.14469,25.388121],[119.151465,25.426503],[119.191501,25.424341],[119.232153,25.442176],[119.219834,25.468654],[119.256175,25.488643],[119.275269,25.476758],[119.26295,25.428124],[119.288204,25.410827],[119.353493,25.411908],[119.343638,25.472436],[119.359037,25.521592],[119.400921,25.493505],[119.45266,25.493505],[119.438493,25.412449],[119.463131,25.448661],[119.491464,25.443257],[119.48592,25.418935],[119.507478,25.396231],[119.486536,25.369737],[119.548746,25.365952],[119.578927,25.400556],[119.555521,25.429205],[119.577695,25.445959],[119.59063,25.398394],[119.582623,25.374063],[119.597405,25.334584],[119.649144,25.342697],[119.665159,25.3719],[119.656535,25.396772],[119.670086,25.435691],[119.622659,25.434069],[119.675014,25.468113],[119.682405,25.445959],[119.688564,25.441095],[119.773564,25.395691],[119.764325,25.433529],[119.804977,25.457847],[119.866571,25.455145],[119.864107,25.469734],[119.862875,25.474597],[119.811136,25.507009],[119.81668,25.532393],[119.861027,25.531313],[119.883817,25.546432],[119.831462,25.579905],[119.843165,25.597717],[119.790194,25.614447],[119.785883,25.66786],[119.700267,25.616606],[119.683637,25.592859],[119.716898,25.551292],[119.715666,25.51187],[119.680557,25.497827],[119.675014,25.475137],[119.634362,25.475137],[119.611572,25.519972],[119.616499,25.556691],[119.586934,25.59232],[119.534579,25.585303],[119.541355,25.6247],[119.478529,25.631715],[119.472986,25.662466],[119.543819,25.684581],[119.602949,25.68512],[119.602949,25.714779],[119.626354,25.723406],[119.628202,25.87212],[119.638057,25.889888],[119.69534,25.904424],[119.723673,26.011503],[119.700267,26.032477],[119.668854,26.026024],[119.654688,26.090002],[119.618963,26.11956],[119.604181,26.168985],[119.664543,26.202282],[119.676246,26.262943],[119.7711,26.285481],[119.802513,26.268846],[119.806825,26.307479],[119.845013,26.323036],[119.862875,26.307479],[119.904143,26.308552],[119.95465,26.352534],[119.946027,26.374519],[119.893672,26.355752],[119.835774,26.434019],[119.83639,26.454381],[119.788346,26.583435],[119.740303,26.610727],[119.670086,26.618218],[119.605412,26.595744],[119.577695,26.622498],[119.619579,26.649246],[119.637441,26.703256],[119.664543,26.726243],[119.711354,26.686681],[119.833926,26.690959],[119.864107,26.671174],[119.873962,26.642827],[119.908455,26.661547],[119.899216,26.693098],[119.938636,26.747088],[119.942947,26.784492],[120.052584,26.786629],[120.061824,26.768997],[119.99407,26.720363],[119.969433,26.686681],[119.972512,26.654594],[119.949107,26.624638],[119.901679,26.624638],[119.851788,26.595209],[119.828383,26.524013],[119.867187,26.509019],[119.947875,26.56042],[119.93802,26.576478],[119.967585,26.597885],[120.007621,26.595744],[120.063671,26.627848],[120.093852,26.613938],[120.1382,26.638012],[120.110483,26.692563],[120.162222,26.717691],[120.151135,26.750829],[120.106787,26.752966],[120.136352,26.797847],[120.103707,26.794642],[120.102476,26.82669],[120.073526,26.823485],[120.054432,26.863533],[120.117874,26.882751],[120.126497,26.920644],[120.130193,26.917976],[120.1807,26.920644],[120.233055,26.907837],[120.25954,26.982526],[120.279866,26.987326],[120.275554,27.027315],[120.29588,27.035845],[120.282946,27.089671],[120.391967,27.081146],[120.403054,27.10086],[120.461568,27.142407],[120.404286,27.204166],[120.401822,27.250996],[120.430155,27.258976],[120.343924,27.363199],[120.340844,27.399867],[120.273091,27.38924],[120.26262,27.432804],[120.221352,27.420055],[120.134504,27.420055],[120.136968,27.402523],[120.096316,27.390302],[120.052584,27.338747],[120.026099,27.344063],[120.008237,27.375423],[119.960194,27.365857],[119.938636,27.329709],[119.843165,27.300464],[119.768636,27.307909],[119.782187,27.330241],[119.739687,27.362668],[119.750774,27.373829],[119.711354,27.403054],[119.685485,27.438646],[119.703347,27.446613],[119.70889,27.514042],[119.690412,27.537394],[119.659615,27.540578],[119.675014,27.574534],[119.630666,27.582491],[119.626354,27.620676],[119.644217,27.663619],[119.606028,27.674749],[119.541971,27.666799],[119.501319,27.649837],[119.501935,27.610601],[119.466826,27.526249],[119.438493,27.508734],[119.416935,27.539517],[119.360269,27.524657],[119.334399,27.480067],[119.285124,27.457766],[119.26911,27.42218],[119.224146,27.416868],[119.14777,27.424836],[119.121284,27.438115],[119.129907,27.475289],[119.092335,27.466262],[119.03998,27.478475],[119.020886,27.498118],[118.983314,27.498649],[118.986393,27.47582],[118.955597,27.4498],[118.907553,27.460952],[118.869365,27.540047],[118.909401,27.568168],[118.913713,27.619616],[118.879836,27.667859],[118.873677,27.733563],[118.829329,27.847921],[118.818242,27.916689],[118.753568,27.947885],[118.730163,27.970615],[118.733858,28.027684],[118.719076,28.063601],[118.767735,28.10584],[118.802228,28.117453],[118.805923,28.154923],[118.771431,28.188687],[118.804075,28.207675],[118.802228,28.240368],[118.756032,28.252493],[118.719692,28.312047],[118.699366,28.309939],[118.674728,28.27147],[118.651322,28.277267],[118.595272,28.258292],[118.588497,28.282538],[118.493026,28.262509],[118.490562,28.238259],[118.444367,28.253548],[118.433896,28.288335],[118.424041,28.291497],[118.314404,28.221913],[118.339041,28.193962],[118.375382,28.186577],[118.361215,28.155978],[118.356288,28.091586],[118.242339,28.075746],[118.199839,28.049869],[118.153644,28.062016],[118.120999,28.041946],[118.129006,28.017118],[118.094513,28.003909],[118.096977,27.970615],[117.999043,27.991227],[117.965166,27.962687],[117.942992,27.974315],[117.910963,27.949471],[117.856145,27.94577],[117.78716,27.896063],[117.788392,27.855858],[117.740348,27.800286],[117.704624,27.834162],[117.68245,27.823577],[117.649805,27.851625],[117.609769,27.863265],[117.556182,27.966387],[117.52169,27.982243],[117.477958,27.930966],[117.453936,27.939955],[117.407741,27.893948],[117.366473,27.88231],[117.341836,27.855858],[117.334444,27.8876],[117.280242,27.871201],[117.276546,27.847921],[117.303031,27.833103],[117.296256,27.764282],[117.245133,27.71926],[117.205097,27.714492],[117.204481,27.683759],[117.174916,27.677399],[117.114554,27.692238],[117.096076,27.667329],[117.11209,27.645596],[117.094228,27.627569],[117.065279,27.665739],[117.040641,27.669979],[117.003685,27.625449],[117.024627,27.592569],[117.01662,27.563393],[117.054808,27.5427],[117.076982,27.566046],[117.103467,27.533149],[117.110242,27.458828],[117.133032,27.42218],[117.107163,27.393491],[117.104699,27.330773],[117.140423,27.322798],[117.136728,27.303123],[117.171836,27.29036],[117.149662,27.241419],[117.044953,27.146667],[117.05296,27.100327],[116.967344,27.061962],[116.936547,27.019319],[116.910062,27.034779],[116.851548,27.009188],[116.817671,27.018252],[116.679085,26.978259],[116.632889,26.933984],[116.602092,26.888623],[116.548506,26.84004],[116.543578,26.803723],[116.557745,26.773806],[116.515245,26.720898],[116.520172,26.684543],[116.566368,26.650315],[116.553433,26.575942],[116.539267,26.559349],[116.597165,26.512768],[116.610716,26.476882],[116.638433,26.477418],[116.608252,26.429732],[116.601476,26.372911],[116.553433,26.365404],[116.553433,26.400253],[116.519557,26.410437],[116.499846,26.361651],[116.459194,26.345026],[116.437021,26.308016],[116.412999,26.297822],[116.385282,26.238253],[116.400064,26.202819],[116.392057,26.171133],[116.435789,26.159854],[116.476441,26.172745],[116.489375,26.113649],[116.384666,26.030864],[116.360028,25.991601],[116.369883,25.963088],[116.326152,25.956631],[116.303362,25.924341],[116.258398,25.902809],[116.225138,25.908731],[116.17771,25.894195],[116.132131,25.860273],[116.131515,25.824185],[116.18079,25.778926],[116.129667,25.758985],[116.106877,25.701299],[116.067457,25.703995],[116.068689,25.646282],[116.041588,25.62416],[116.063145,25.56317],[116.040356,25.548052],[116.03666,25.514571],[116.005247,25.490264],[116.023109,25.435691],[115.992928,25.374063],[116.008327,25.319437],[115.987385,25.290221],[115.949813,25.292386],[115.930719,25.236099],[115.855574,25.20957],[115.860501,25.165704],[115.888219,25.128866],[115.880212,25.092016],[115.908545,25.084428],[115.928255,25.050276],[115.873436,25.019911],[115.925175,24.960786],[115.870356,24.959701],[115.89253,24.936911],[115.907929,24.923343],[115.985537,24.899461],[116.015102,24.905975],[116.068073,24.850053],[116.153073,24.846795],[116.191877,24.877203],[116.221442,24.829959],[116.251007,24.82507],[116.244232,24.793563],[116.297202,24.801712],[116.345862,24.828872],[116.363724,24.87123],[116.395137,24.877746],[116.417927,24.840821],[116.381586,24.82507],[116.375427,24.803885],[116.419158,24.767482],[116.416079,24.744113],[116.44626,24.714216],[116.485064,24.720196],[116.517709,24.652225],[116.506622,24.621218],[116.530027,24.604895],[116.570679,24.621762],[116.600861,24.654401],[116.623034,24.64189],[116.667382,24.658752],[116.777635,24.679418],[116.815207,24.654944],[116.761005,24.583128],[116.759157,24.545572],[116.796729,24.502014],[116.83307,24.496568],[116.860787,24.460075],[116.839229,24.442097],[116.903903,24.369614],[116.895895,24.350533],[116.919301,24.321087],[116.914374,24.287817],[116.938395,24.28127],[116.933468,24.220157],[116.956257,24.216883],[116.998757,24.179217],[116.9347,24.126794],[116.930388,24.064514],[116.953178,24.008218],[116.981511,23.999471],[116.976583,23.931659],[116.955642,23.922359],[116.981511,23.855602],[117.012308,23.855054],[117.019083,23.801952],[117.048032,23.758687],[117.055424,23.694038],[117.123793,23.647448],[117.147199,23.654027],[117.192778,23.629356],[117.192778,23.5619],[117.291328,23.571225],[117.302415,23.550379],[117.387415,23.555317],[117.463791,23.584937],[117.454552,23.628259],[117.493357,23.642514],[117.501364,23.70445],[117.54448,23.715956],[117.601762,23.70171],[117.660276,23.789357],[117.651653,23.815093],[117.671979,23.878041],[117.691073,23.888985],[117.762522,23.886796],[117.792703,23.906494],[117.807486,23.947521],[117.864768,24.004938],[117.910347,24.012045],[117.927594,24.039922],[117.936217,24.100029],[118.000275,24.152462],[118.019369,24.197232],[118.074803,24.225615],[118.115455,24.229435],[118.158571,24.269814],[118.112376,24.357075],[118.081579,24.35653],[118.088354,24.408858],[118.048934,24.418122],[118.084042,24.528695],[118.121615,24.570067],[118.150564,24.583673],[118.169042,24.559725],[118.242955,24.51236],[118.375382,24.536317],[118.363679,24.567889],[118.444367,24.614689],[118.512736,24.60816],[118.557084,24.572788],[118.558316,24.51236],[118.614366,24.521617],[118.680272,24.58204],[118.687047,24.63373],[118.661178,24.622306],[118.652554,24.653857],[118.670417,24.679962],[118.703677,24.665278],[118.778822,24.743569],[118.786213,24.77672],[118.650707,24.808774],[118.647627,24.843536],[118.702445,24.865258],[118.69875,24.848967],[118.748641,24.84245],[118.807771,24.870687],[118.834256,24.854397],[118.864437,24.887518],[118.933423,24.870687],[118.988857,24.878831],[118.987009,24.898375],[118.932807,24.906518],[118.91864,24.932569],[118.945741,24.954275],[119.014111,24.941252],[119.032589,24.961328],[119.032589,24.961871],[119.007335,24.963499],[119.004872,24.970009]]],[[[118.412338,24.514538],[118.374766,24.458986],[118.318715,24.486765],[118.298389,24.477506],[118.31194,24.424661],[118.282375,24.413218],[118.329802,24.382152],[118.353208,24.415398],[118.405563,24.427931],[118.457918,24.412128],[118.477012,24.437738],[118.451758,24.506915],[118.412338,24.514538]]],[[[119.471138,25.197116],[119.507478,25.183036],[119.52534,25.157579],[119.549362,25.161912],[119.566608,25.210112],[119.540739,25.20199],[119.501319,25.21715],[119.473601,25.259916],[119.44342,25.238806],[119.444036,25.20199],[119.471138,25.197116]]],[[[119.580159,25.627398],[119.611572,25.669479],[119.580775,25.650059],[119.580159,25.627398]]],[[[119.976824,26.191005],[120.016244,26.217316],[119.998998,26.235569],[119.970665,26.217852],[119.976824,26.191005]]],[[[118.230636,24.401228],[118.273752,24.441007],[118.233716,24.445911],[118.230636,24.401228]]],[[[119.906607,26.68989],[119.926933,26.664756],[119.950954,26.692563],[119.906607,26.68989]]],[[[118.204151,24.504737],[118.191832,24.536861],[118.14502,24.560814],[118.093281,24.540672],[118.068644,24.463344],[118.084042,24.435559],[118.143173,24.420847],[118.19368,24.463344],[118.204151,24.504737]]],[[[119.929397,26.134067],[119.960194,26.146961],[119.919542,26.172208],[119.929397,26.134067]]],[[[119.642985,26.129231],[119.665159,26.155556],[119.62697,26.173282],[119.606028,26.15287],[119.642985,26.129231]]],[[[120.034106,26.488667],[120.066751,26.498308],[120.071679,26.521336],[120.035954,26.515981],[120.034106,26.488667]]],[[[119.662079,25.646822],[119.673782,25.632794],[119.718745,25.634952],[119.716898,25.664624],[119.662079,25.646822]]],[[[119.760629,26.613402],[119.776644,26.600025],[119.818527,26.616613],[119.796354,26.630523],[119.760629,26.613402]]],[[[120.135736,26.550784],[120.167149,26.571661],[120.153598,26.604841],[120.117874,26.568984],[120.135736,26.550784]]],[[[120.360554,26.916909],[120.394431,26.933984],[120.363018,26.967592],[120.327909,26.963858],[120.319286,26.944654],[120.360554,26.916909]]],[[[120.150519,26.798916],[120.140048,26.795176],[120.163454,26.798381],[120.161606,26.803189],[120.150519,26.798916]]],[[[119.668238,26.628383],[119.720593,26.635873],[119.758781,26.659408],[119.748926,26.681334],[119.712586,26.6685],[119.673782,26.680799],[119.651608,26.657269],[119.668238,26.628383]]]]}},{"type":"Feature","properties":{"adcode":360000,"name":"江西省","center":[115.892151,28.676493],"centroid":[115.732975,27.636112],"childrenNum":11,"level":"province","parent":{"adcode":100000},"subFeatureIndex":13,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[118.193064,29.395472],[118.136397,29.418932],[118.127774,29.47209],[118.143788,29.489803],[118.095129,29.534072],[118.050782,29.542924],[118.042774,29.566351],[118.00397,29.578322],[117.933753,29.549172],[117.872775,29.54761],[117.795167,29.570515],[117.729877,29.550213],[117.690457,29.555939],[117.678754,29.595496],[117.647957,29.614749],[117.608537,29.591333],[117.543248,29.588731],[117.523538,29.630356],[117.530313,29.654282],[117.490277,29.660003],[117.453936,29.688082],[117.455168,29.749412],[117.408973,29.802396],[117.415132,29.85068],[117.382487,29.840818],[117.359082,29.812782],[117.338756,29.848085],[117.29256,29.822647],[117.25314,29.834588],[117.261763,29.880781],[117.246365,29.915023],[117.2168,29.926953],[117.171836,29.920729],[117.129952,29.89946],[117.127489,29.86158],[117.073286,29.831992],[117.123177,29.798761],[117.136728,29.775388],[117.108395,29.75201],[117.112706,29.711995],[117.041873,29.680803],[116.996294,29.683403],[116.974736,29.657403],[116.939627,29.648561],[116.873722,29.609546],[116.849084,29.57624],[116.780715,29.569994],[116.760389,29.599139],[116.721585,29.564789],[116.716657,29.590813],[116.651983,29.637118],[116.680317,29.681323],[116.653831,29.694841],[116.673541,29.709916],[116.762237,29.802396],[116.780715,29.792529],[116.882961,29.893753],[116.900207,29.949253],[116.868794,29.980361],[116.83307,29.95755],[116.830606,30.004723],[116.802889,29.99643],[116.783794,30.030632],[116.747454,30.057053],[116.720353,30.053945],[116.666766,30.076734],[116.620571,30.073109],[116.585462,30.045657],[116.552201,29.909836],[116.525716,29.897385],[116.467818,29.896347],[116.342782,29.835626],[116.280572,29.788893],[116.250391,29.785777],[116.227601,29.816936],[116.172783,29.828358],[116.13521,29.819532],[116.087167,29.795125],[116.049595,29.761881],[115.965827,29.724469],[115.909777,29.723949],[115.837096,29.748373],[115.762567,29.793048],[115.706517,29.837703],[115.667712,29.850161],[115.611662,29.841337],[115.51188,29.840299],[115.479235,29.811224],[115.470612,29.739539],[115.412714,29.688602],[115.355431,29.649602],[115.304924,29.637118],[115.28583,29.618391],[115.250722,29.660003],[115.176809,29.654803],[115.113367,29.684963],[115.117679,29.655843],[115.143548,29.645961],[115.120142,29.597578],[115.157099,29.584568],[115.154019,29.510117],[115.086266,29.525741],[115.087498,29.560104],[115.033295,29.546568],[115.00065,29.572076],[114.947679,29.542924],[114.966773,29.522096],[114.940288,29.493971],[114.900868,29.505951],[114.860216,29.476258],[114.888549,29.436134],[114.918114,29.454374],[114.90518,29.473132],[114.935977,29.486678],[114.947063,29.465317],[114.931049,29.422581],[114.895325,29.397557],[114.866375,29.404335],[114.812173,29.383478],[114.784455,29.386086],[114.759818,29.363139],[114.740724,29.386607],[114.67297,29.395993],[114.621847,29.379828],[114.589819,29.352707],[114.519602,29.325578],[114.466015,29.324013],[114.440145,29.341752],[114.376088,29.322969],[114.341595,29.327665],[114.307102,29.365225],[114.259059,29.343839],[114.252284,29.23475],[114.169748,29.216993],[114.063191,29.204978],[114.034857,29.152204],[113.98743,29.126068],[113.952321,29.092604],[113.94185,29.047097],[113.961561,28.999476],[113.955401,28.978536],[113.973879,28.937692],[114.008988,28.955498],[114.005292,28.917788],[114.028082,28.891069],[114.060111,28.902596],[114.056415,28.872204],[114.076741,28.834464],[114.124784,28.843376],[114.153734,28.829221],[114.137719,28.779926],[114.157429,28.761566],[114.122321,28.623497],[114.132176,28.607211],[114.08598,28.558337],[114.138335,28.533629],[114.15435,28.507337],[114.218407,28.48472],[114.217175,28.466308],[114.172212,28.432632],[114.214712,28.403157],[114.252284,28.395787],[114.2529,28.319423],[114.198081,28.29097],[114.182067,28.249858],[114.143879,28.246694],[114.109386,28.205038],[114.107538,28.182885],[114.068734,28.171806],[114.012068,28.174972],[113.992357,28.161255],[114.025002,28.080499],[114.047176,28.057263],[114.025618,28.031382],[113.970184,28.041418],[113.966488,28.017646],[113.936307,28.018703],[113.914133,27.991227],[113.864242,28.004966],[113.845148,27.971672],[113.822974,27.982243],[113.752141,27.93361],[113.72812,27.874904],[113.756453,27.860091],[113.763228,27.799228],[113.69917,27.740979],[113.696707,27.71979],[113.652359,27.663619],[113.607395,27.625449],[113.608627,27.585143],[113.579062,27.545354],[113.583374,27.524657],[113.627105,27.49971],[113.591381,27.467855],[113.59754,27.428554],[113.632033,27.40518],[113.605548,27.38924],[113.616635,27.345658],[113.657902,27.347253],[113.699786,27.331836],[113.72812,27.350442],[113.872865,27.384988],[113.872865,27.346721],[113.854387,27.30525],[113.872865,27.289828],[113.846996,27.222262],[113.779242,27.137081],[113.771851,27.096598],[113.803264,27.099261],[113.824206,27.036378],[113.86301,27.018252],[113.892575,26.964925],[113.927068,26.948922],[113.890112,26.895562],[113.877177,26.859262],[113.835909,26.806394],[113.853771,26.769532],[113.860546,26.664221],[113.912901,26.613938],[113.996669,26.615543],[114.019459,26.587182],[114.10877,26.56952],[114.07243,26.480096],[114.110002,26.482775],[114.090292,26.455988],[114.085364,26.406149],[114.062575,26.406149],[114.030546,26.376664],[114.047792,26.337518],[114.021307,26.288701],[114.029314,26.266163],[113.978807,26.237716],[113.972647,26.20604],[113.949242,26.192616],[113.962792,26.150722],[114.013299,26.184023],[114.088444,26.168448],[114.102611,26.187783],[114.181451,26.214631],[114.216559,26.203355],[114.237501,26.152333],[114.188842,26.121172],[114.10569,26.097526],[114.121089,26.085702],[114.087828,26.06635],[114.044096,26.076564],[114.008372,26.015806],[114.028082,25.98138],[114.028082,25.893119],[113.971416,25.836036],[113.961561,25.77731],[113.920293,25.741197],[113.913517,25.701299],[113.957249,25.611749],[113.983118,25.599336],[113.986198,25.529153],[113.962792,25.528072],[113.94493,25.441635],[114.003444,25.442716],[113.983118,25.415152],[114.050256,25.36433],[114.029314,25.328093],[114.017611,25.273987],[114.039785,25.250714],[114.055799,25.277775],[114.083517,25.275611],[114.115545,25.302125],[114.190074,25.316733],[114.204857,25.29942],[114.260291,25.291845],[114.2954,25.299961],[114.31511,25.33837],[114.382863,25.317274],[114.43029,25.343779],[114.438914,25.376226],[114.477718,25.37136],[114.541159,25.416773],[114.599674,25.385959],[114.63663,25.324306],[114.714238,25.315651],[114.743188,25.274528],[114.73518,25.225813],[114.693912,25.213902],[114.685905,25.173287],[114.73518,25.155954],[114.735796,25.121822],[114.664963,25.10123],[114.640326,25.074129],[114.604601,25.083886],[114.561485,25.077382],[114.532536,25.022623],[114.506051,24.999844],[114.45616,24.99659],[114.454928,24.977062],[114.395798,24.951019],[114.403189,24.877746],[114.378551,24.861457],[114.342211,24.807145],[114.336052,24.749004],[114.281849,24.724001],[114.27261,24.700624],[114.169132,24.689749],[114.19069,24.656576],[114.258443,24.641346],[114.289856,24.619042],[114.300943,24.578775],[114.363769,24.582584],[114.391486,24.563535],[114.403189,24.497657],[114.429058,24.48622],[114.534384,24.559181],[114.589819,24.537406],[114.627391,24.576598],[114.664963,24.583673],[114.704999,24.525973],[114.73826,24.565168],[114.729637,24.608704],[114.781376,24.613057],[114.827571,24.588026],[114.846665,24.602719],[114.868839,24.562446],[114.893477,24.582584],[114.909491,24.661471],[114.940288,24.650049],[115.00373,24.679418],[115.024672,24.669085],[115.057317,24.703343],[115.083802,24.699537],[115.104744,24.667997],[115.1842,24.711498],[115.258729,24.728894],[115.269816,24.749548],[115.306772,24.758787],[115.358511,24.735416],[115.372678,24.774546],[115.412714,24.79302],[115.476771,24.762591],[115.522967,24.702799],[115.555611,24.683768],[115.569778,24.622306],[115.605503,24.62557],[115.671408,24.604895],[115.68927,24.545027],[115.752712,24.546116],[115.785357,24.567345],[115.843871,24.562446],[115.840791,24.584217],[115.797676,24.628834],[115.780429,24.663103],[115.801371,24.705517],[115.769342,24.708236],[115.756408,24.749004],[115.776734,24.774546],[115.764415,24.791933],[115.790284,24.856027],[115.807531,24.862543],[115.824161,24.909232],[115.863581,24.891318],[115.861733,24.863629],[115.907313,24.879917],[115.885139,24.898918],[115.89253,24.936911],[115.870356,24.959701],[115.925175,24.960786],[115.873436,25.019911],[115.928255,25.050276],[115.908545,25.084428],[115.880212,25.092016],[115.888219,25.128866],[115.860501,25.165704],[115.855574,25.20957],[115.930719,25.236099],[115.949813,25.292386],[115.987385,25.290221],[116.008327,25.319437],[115.992928,25.374063],[116.023109,25.435691],[116.005247,25.490264],[116.03666,25.514571],[116.040356,25.548052],[116.063145,25.56317],[116.041588,25.62416],[116.068689,25.646282],[116.067457,25.703995],[116.106877,25.701299],[116.129667,25.758985],[116.18079,25.778926],[116.131515,25.824185],[116.132131,25.860273],[116.17771,25.894195],[116.225138,25.908731],[116.258398,25.902809],[116.303362,25.924341],[116.326152,25.956631],[116.369883,25.963088],[116.360028,25.991601],[116.384666,26.030864],[116.489375,26.113649],[116.476441,26.172745],[116.435789,26.159854],[116.392057,26.171133],[116.400064,26.202819],[116.385282,26.238253],[116.412999,26.297822],[116.437021,26.308016],[116.459194,26.345026],[116.499846,26.361651],[116.519557,26.410437],[116.553433,26.400253],[116.553433,26.365404],[116.601476,26.372911],[116.608252,26.429732],[116.638433,26.477418],[116.610716,26.476882],[116.597165,26.512768],[116.539267,26.559349],[116.553433,26.575942],[116.566368,26.650315],[116.520172,26.684543],[116.515245,26.720898],[116.557745,26.773806],[116.543578,26.803723],[116.548506,26.84004],[116.602092,26.888623],[116.632889,26.933984],[116.679085,26.978259],[116.817671,27.018252],[116.851548,27.009188],[116.910062,27.034779],[116.936547,27.019319],[116.967344,27.061962],[117.05296,27.100327],[117.044953,27.146667],[117.149662,27.241419],[117.171836,27.29036],[117.136728,27.303123],[117.140423,27.322798],[117.104699,27.330773],[117.107163,27.393491],[117.133032,27.42218],[117.110242,27.458828],[117.103467,27.533149],[117.076982,27.566046],[117.054808,27.5427],[117.01662,27.563393],[117.024627,27.592569],[117.003685,27.625449],[117.040641,27.669979],[117.065279,27.665739],[117.094228,27.627569],[117.11209,27.645596],[117.096076,27.667329],[117.114554,27.692238],[117.174916,27.677399],[117.204481,27.683759],[117.205097,27.714492],[117.245133,27.71926],[117.296256,27.764282],[117.303031,27.833103],[117.276546,27.847921],[117.280242,27.871201],[117.334444,27.8876],[117.341836,27.855858],[117.366473,27.88231],[117.407741,27.893948],[117.453936,27.939955],[117.477958,27.930966],[117.52169,27.982243],[117.556182,27.966387],[117.609769,27.863265],[117.649805,27.851625],[117.68245,27.823577],[117.704624,27.834162],[117.740348,27.800286],[117.788392,27.855858],[117.78716,27.896063],[117.856145,27.94577],[117.910963,27.949471],[117.942992,27.974315],[117.965166,27.962687],[117.999043,27.991227],[118.096977,27.970615],[118.094513,28.003909],[118.129006,28.017118],[118.120999,28.041946],[118.153644,28.062016],[118.199839,28.049869],[118.242339,28.075746],[118.356288,28.091586],[118.361215,28.155978],[118.375382,28.186577],[118.339041,28.193962],[118.314404,28.221913],[118.424041,28.291497],[118.433896,28.288335],[118.480091,28.327325],[118.455454,28.384204],[118.432048,28.402104],[118.456686,28.424738],[118.474548,28.478934],[118.414802,28.497344],[118.4302,28.515225],[118.412338,28.55676],[118.428352,28.617193],[118.428352,28.617193],[118.428352,28.681267],[118.403099,28.702791],[118.364295,28.813491],[118.300237,28.826075],[118.270056,28.918836],[118.195527,28.904167],[118.227556,28.942406],[118.165346,28.986912],[118.133933,28.983771],[118.115455,29.009944],[118.115455,29.009944],[118.097593,28.998952],[118.066796,29.053898],[118.076035,29.074822],[118.037847,29.102017],[118.045238,29.149068],[118.027992,29.167882],[118.042159,29.210202],[118.073571,29.216993],[118.077883,29.290614],[118.138861,29.283828],[118.178281,29.297921],[118.166578,29.314099],[118.205382,29.343839],[118.193064,29.395472]]]]}},{"type":"Feature","properties":{"adcode":370000,"name":"山东省","center":[117.000923,36.675807],"centroid":[118.187759,36.376092],"childrenNum":16,"level":"province","parent":{"adcode":100000},"subFeatureIndex":14,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[116.374195,34.640011],[116.392057,34.710391],[116.363724,34.715311],[116.369267,34.749247],[116.403144,34.756131],[116.408071,34.850972],[116.445028,34.895652],[116.557745,34.908905],[116.613795,34.922645],[116.622418,34.939818],[116.677853,34.939327],[116.781331,34.916757],[116.789338,34.975133],[116.815823,34.965324],[116.821983,34.929515],[116.858323,34.928533],[116.922381,34.894671],[116.929156,34.843114],[116.966113,34.844588],[116.979047,34.815113],[116.95133,34.81069],[116.969192,34.771864],[117.022163,34.759081],[117.070206,34.713835],[117.061583,34.675947],[117.073286,34.639026],[117.104083,34.648874],[117.15151,34.559222],[117.139191,34.526687],[117.166293,34.434435],[117.248213,34.451216],[117.252524,34.48674],[117.27285,34.499565],[117.267923,34.532603],[117.303647,34.542463],[117.27285,34.556757],[117.311654,34.561686],[117.311654,34.561686],[117.32151,34.566614],[117.32151,34.566614],[117.325205,34.573021],[117.325205,34.573021],[117.370785,34.584846],[117.402813,34.569571],[117.402813,34.550843],[117.465023,34.484767],[117.53832,34.467006],[117.592523,34.462566],[117.609769,34.490686],[117.659044,34.501044],[117.684298,34.547392],[117.801942,34.518798],[117.791471,34.583368],[117.793935,34.651827],[117.902956,34.644443],[117.909732,34.670533],[117.951615,34.678408],[118.053861,34.650843],[118.084042,34.655766],[118.114839,34.614404],[118.079115,34.569571],[118.185056,34.543942],[118.16473,34.50499],[118.132702,34.483287],[118.177665,34.45319],[118.179513,34.379628],[118.217701,34.379134],[118.220165,34.405802],[118.277447,34.404814],[118.290382,34.424563],[118.379693,34.415183],[118.404947,34.427525],[118.416034,34.473914],[118.439439,34.507949],[118.424657,34.595193],[118.439439,34.626223],[118.473932,34.623269],[118.460997,34.656258],[118.545997,34.705964],[118.601431,34.714327],[118.607591,34.694155],[118.664257,34.693663],[118.690127,34.678408],[118.739402,34.693663],[118.783749,34.723181],[118.764039,34.740396],[118.719076,34.745313],[118.739402,34.792508],[118.772047,34.794474],[118.80038,34.843114],[118.805307,34.87307],[118.860742,34.944233],[118.86259,35.025626],[118.928495,35.051106],[118.942662,35.040817],[119.027045,35.055516],[119.114509,35.055026],[119.137915,35.096167],[119.217371,35.106939],[119.250016,35.124562],[119.286972,35.115261],[119.306066,35.076578],[119.354109,35.080007],[119.373819,35.078538],[119.428022,35.121136],[119.397841,35.137777],[119.411392,35.231689],[119.450812,35.285443],[119.493312,35.318655],[119.538275,35.296678],[119.543819,35.347949],[119.590014,35.37284],[119.579543,35.406504],[119.618963,35.459655],[119.663311,35.562931],[119.662079,35.589215],[119.718129,35.615492],[119.75139,35.617924],[119.772332,35.578995],[119.780339,35.584835],[119.792658,35.615492],[119.824071,35.646136],[119.83023,35.620357],[119.868419,35.60868],[119.925085,35.637382],[119.91215,35.660725],[119.950339,35.729741],[119.920157,35.739943],[119.926317,35.759856],[119.958346,35.760342],[120.01378,35.714193],[120.049505,35.786562],[120.032258,35.812288],[120.064287,35.873414],[120.112331,35.885052],[120.125265,35.906868],[120.152983,35.907353],[120.207801,35.947575],[120.169613,35.888446],[120.202258,35.89184],[120.209033,35.917531],[120.265699,35.966468],[120.30512,35.971796],[120.316206,36.002304],[120.289721,36.017311],[120.285409,36.01247],[120.249069,35.992136],[120.257076,36.025055],[120.198562,35.995525],[120.234902,36.030863],[120.239214,36.062316],[120.181316,36.066669],[120.152367,36.095206],[120.116642,36.102943],[120.108635,36.127599],[120.142512,36.143549],[120.140664,36.173507],[120.181316,36.203936],[120.22012,36.209248],[120.224432,36.19138],[120.260772,36.198624],[120.263236,36.182202],[120.310047,36.185101],[120.297112,36.225664],[120.319902,36.232423],[120.362402,36.196209],[120.35809,36.174956],[120.286025,36.047317],[120.337764,36.055058],[120.429539,36.056994],[120.468959,36.087952],[120.546568,36.091821],[120.546568,36.107778],[120.593995,36.100525],[120.615553,36.120348],[120.64327,36.114547],[120.672835,36.130016],[120.712255,36.126632],[120.696857,36.15563],[120.696857,36.203936],[120.680843,36.238698],[120.686386,36.279234],[120.657437,36.276339],[120.66298,36.331803],[120.744284,36.327946],[120.694393,36.390118],[120.759683,36.46283],[120.828668,36.46668],[120.837291,36.459942],[120.858849,36.424797],[120.848994,36.403124],[120.871784,36.36699],[120.911204,36.412276],[120.917979,36.417573],[120.90874,36.450315],[120.938305,36.447908],[120.965407,36.466199],[120.95432,36.507578],[120.983269,36.546051],[120.962327,36.562877],[120.909972,36.568645],[120.884718,36.601323],[120.847146,36.618617],[120.882255,36.627262],[120.926602,36.611892],[120.955551,36.575855],[121.028848,36.572971],[121.078123,36.607568],[121.161275,36.651273],[121.251818,36.671436],[121.29863,36.702151],[121.31218,36.702151],[121.35776,36.713186],[121.400876,36.701191],[121.3941,36.738129],[121.454462,36.752515],[121.496962,36.795179],[121.506817,36.803805],[121.565331,36.830635],[121.548701,36.807638],[121.485259,36.786073],[121.532071,36.73621],[121.575186,36.740047],[121.556092,36.764502],[121.651563,36.723739],[121.631853,36.80093],[121.6762,36.819137],[121.726092,36.826323],[121.762432,36.84644],[121.767975,36.874691],[121.927504,36.932597],[121.965076,36.938337],[122.008808,36.96225],[122.042684,36.871819],[122.051923,36.904846],[122.093191,36.913938],[122.115981,36.94025],[122.124604,36.944077],[122.141235,36.938337],[122.119677,36.891924],[122.175727,36.894317],[122.188662,36.866073],[122.174495,36.842609],[122.220691,36.848835],[122.275509,36.83734],[122.280437,36.835904],[122.344495,36.828239],[122.378371,36.844525],[122.383915,36.865595],[122.415944,36.85937],[122.454748,36.879],[122.452284,36.88618],[122.434422,36.914416],[122.483081,36.913938],[122.48924,36.886659],[122.532356,36.901496],[122.55761,36.968467],[122.544675,37.004797],[122.583479,37.037289],[122.575472,37.054485],[122.494168,37.033945],[122.467067,37.037289],[122.478769,37.058784],[122.484313,37.128956],[122.533588,37.153286],[122.581015,37.147562],[122.573624,37.176178],[122.624131,37.190959],[122.592718,37.261485],[122.567465,37.25958],[122.573624,37.296247],[122.611196,37.339558],[122.607501,37.364296],[122.650616,37.388551],[122.6925,37.373809],[122.714058,37.392355],[122.701739,37.418501],[122.67587,37.413273],[122.641377,37.428482],[122.553914,37.407093],[122.4954,37.413748],[122.487393,37.43466],[122.41656,37.414699],[122.337103,37.414223],[122.281053,37.430858],[122.287212,37.445114],[122.25272,37.467917],[122.194205,37.456041],[122.166488,37.438937],[122.131996,37.49926],[122.163408,37.519199],[122.150474,37.557163],[122.08888,37.554316],[122.075329,37.540556],[122.017431,37.531065],[121.997721,37.494512],[121.923808,37.473142],[121.772903,37.466492],[121.66573,37.473617],[121.635548,37.494037],[121.575802,37.460317],[121.571491,37.441313],[121.477252,37.475992],[121.460006,37.522522],[121.400876,37.557638],[121.395948,37.589891],[121.435368,37.592737],[121.391021,37.625449],[121.349137,37.635403],[121.358376,37.597479],[121.304789,37.582778],[121.217326,37.582778],[121.17421,37.597479],[121.148956,37.626397],[121.161891,37.646302],[121.142797,37.661464],[121.160043,37.698882],[121.136022,37.723501],[121.037471,37.718767],[120.994356,37.759468],[120.943233,37.785486],[120.940769,37.819533],[120.874863,37.833241],[120.845298,37.826623],[120.839139,37.82426],[120.733197,37.833714],[120.656821,37.793054],[120.634031,37.796364],[120.590915,37.7642],[120.517619,37.750005],[120.454793,37.757576],[120.367945,37.697935],[120.227511,37.693673],[120.22012,37.671886],[120.269395,37.658622],[120.272475,37.636824],[120.215192,37.621183],[120.208417,37.588469],[120.246605,37.556689],[120.222584,37.532963],[120.144359,37.481691],[120.086461,37.465067],[120.064903,37.448915],[120.010085,37.442263],[119.949723,37.419927],[119.926933,37.386649],[119.843781,37.376662],[119.837006,37.346695],[119.883201,37.311004],[119.89244,37.263866],[119.865339,37.233854],[119.83023,37.225754],[119.808057,37.196203],[119.740303,37.133727],[119.687332,37.143746],[119.678709,37.158056],[119.576463,37.127524],[119.489616,37.134681],[119.428022,37.125616],[119.361501,37.125616],[119.327624,37.115595],[119.301138,37.139452],[119.298675,37.197156],[119.2069,37.223371],[119.190885,37.25958],[119.204436,37.280058],[119.136683,37.230995],[119.12806,37.254816],[119.091103,37.257674],[119.084328,37.239572],[119.054147,37.254816],[119.03998,37.30434],[119.001176,37.31862],[118.942662,37.497361],[118.939582,37.527268],[118.988857,37.620709],[119.023966,37.642037],[119.153313,37.655305],[119.236465,37.651988],[119.262334,37.660517],[119.280197,37.692726],[119.309146,37.805349],[119.291899,37.869627],[119.24016,37.878131],[119.212443,37.838913],[119.16132,37.81906],[119.12806,37.847892],[119.110813,37.921577],[119.001792,37.99613],[118.974075,38.094162],[118.908169,38.139362],[118.811467,38.157717],[118.703677,38.151129],[118.626069,38.138421],[118.607591,38.129006],[118.597736,38.079088],[118.552156,38.05553],[118.534294,38.063541],[118.517048,38.088509],[118.504729,38.11394],[118.44991,38.124299],[118.431432,38.106406],[118.404331,38.121003],[118.331034,38.12524],[118.217085,38.146893],[118.177665,38.186417],[118.112376,38.210403],[118.045238,38.214165],[118.018753,38.202409],[117.896797,38.279495],[117.895565,38.301572],[117.848754,38.255062],[117.808718,38.22827],[117.789007,38.180772],[117.766834,38.158658],[117.771145,38.134655],[117.746508,38.12524],[117.704624,38.076262],[117.586979,38.071551],[117.557414,38.046105],[117.557414,38.046105],[117.524154,37.989527],[117.513067,37.94329],[117.481038,37.914967],[117.438538,37.854035],[117.400966,37.844584],[117.320278,37.861596],[117.271618,37.839858],[117.185387,37.849783],[117.150278,37.839385],[117.074518,37.848837],[117.027091,37.832296],[116.919301,37.846002],[116.837997,37.835132],[116.804736,37.848837],[116.753613,37.793054],[116.753613,37.77035],[116.724664,37.744327],[116.679085,37.728708],[116.66307,37.686096],[116.604556,37.624975],[116.575607,37.610754],[116.4826,37.521573],[116.448108,37.503059],[116.433941,37.473142],[116.38097,37.522522],[116.379738,37.522047],[116.38097,37.522522],[116.379738,37.522047],[116.36742,37.566177],[116.336007,37.581355],[116.295355,37.554316],[116.278724,37.524895],[116.290427,37.484065],[116.27626,37.466967],[116.240536,37.489764],[116.240536,37.489764],[116.224522,37.479791],[116.243,37.447965],[116.226369,37.428007],[116.2855,37.404241],[116.236224,37.361442],[116.193109,37.365723],[116.169087,37.384271],[116.106261,37.368577],[116.085935,37.373809],[116.024341,37.360015],[115.975682,37.337179],[115.969523,37.239572],[115.909777,37.20669],[115.91224,37.177132],[115.879596,37.150901],[115.888219,37.112254],[115.85619,37.060694],[115.776734,36.992848],[115.79706,36.968945],[115.75764,36.902453],[115.71206,36.883308],[115.683727,36.808117],[115.524815,36.763543],[115.479851,36.760187],[115.451518,36.702151],[115.420105,36.686795],[115.365902,36.621979],[115.355431,36.627262],[115.33141,36.550378],[115.272895,36.497476],[115.291374,36.460423],[115.317243,36.454166],[115.297533,36.413239],[115.340033,36.398307],[115.368982,36.342409],[115.366518,36.30914],[115.423185,36.32216],[115.417025,36.292742],[115.462605,36.276339],[115.466916,36.258969],[115.466916,36.258969],[115.474923,36.248352],[115.483547,36.148865],[115.484163,36.125666],[115.449054,36.047317],[115.447822,36.01247],[115.362822,35.971796],[115.353583,35.938854],[115.364054,35.894264],[115.335105,35.796756],[115.363438,35.779765],[115.407786,35.80889],[115.460141,35.867594],[115.487858,35.880688],[115.495249,35.896203],[115.505104,35.899112],[115.513112,35.890385],[115.583945,35.921893],[115.648618,35.922863],[115.699125,35.966468],[115.774886,35.974702],[115.779813,35.993588],[115.817386,36.012954],[115.859886,36.003756],[115.89869,36.026507],[115.989849,36.045381],[116.057602,36.104877],[116.099486,36.112129],[116.063145,36.028927],[116.048979,35.970343],[115.984921,35.974218],[115.911624,35.960171],[115.907929,35.92674],[115.873436,35.918985],[115.882675,35.879718],[115.859886,35.857894],[115.81677,35.844312],[115.773654,35.854014],[115.73485,35.833154],[115.696046,35.788989],[115.693582,35.754028],[115.622749,35.739457],[115.52851,35.733628],[115.48601,35.710306],[115.383148,35.568772],[115.34496,35.55368],[115.356047,35.490359],[115.307388,35.480126],[115.237171,35.423087],[115.172497,35.426501],[115.126302,35.41821],[115.117679,35.400163],[115.091809,35.416259],[115.073947,35.374304],[115.04315,35.376744],[114.957534,35.261014],[114.929201,35.244886],[114.932281,35.198441],[114.861448,35.182301],[114.841738,35.15099],[114.883006,35.098615],[114.835578,35.076578],[114.818948,35.051596],[114.852209,35.041797],[114.824492,35.012393],[114.880542,35.00357],[114.923658,34.968757],[114.950759,34.989843],[115.008041,34.988372],[115.028983,34.9717],[115.075179,35.000628],[115.12815,35.00455],[115.157099,34.957968],[115.219309,34.96042],[115.205142,34.914303],[115.251953,34.906451],[115.239019,34.87798],[115.256265,34.845079],[115.317243,34.859321],[115.42688,34.805285],[115.449054,34.74433],[115.433655,34.725149],[115.461373,34.637057],[115.515575,34.582383],[115.553148,34.568586],[115.622749,34.574499],[115.685575,34.556265],[115.697278,34.594207],[115.787821,34.580905],[115.827241,34.558236],[115.838328,34.5676],[115.984305,34.589281],[115.991081,34.615389],[116.037276,34.593222],[116.101334,34.60603],[116.134594,34.559715],[116.156768,34.5538],[116.196804,34.575977],[116.247927,34.551829],[116.286116,34.608986],[116.32492,34.601104],[116.334159,34.620806],[116.374195,34.640011]]],[[[120.729502,37.947065],[120.721495,37.917328],[120.76461,37.895134],[120.76461,37.923937],[120.729502,37.947065]]],[[[120.692545,37.983867],[120.732581,37.961694],[120.724574,37.987641],[120.692545,37.983867]]],[[[120.990044,36.413239],[120.978341,36.428649],[120.950624,36.414684],[120.990044,36.413239]]],[[[120.750444,38.150188],[120.7874,38.158658],[120.742436,38.199116],[120.750444,38.150188]]],[[[120.918595,38.345236],[120.914899,38.373393],[120.895189,38.36307],[120.918595,38.345236]]],[[[120.159142,35.765198],[120.169613,35.740428],[120.193019,35.756942],[120.172077,35.785591],[120.159142,35.765198]]],[[[120.62664,37.94565],[120.631567,37.981037],[120.602002,37.978678],[120.62664,37.94565]]],[[[120.802183,38.284193],[120.848378,38.305799],[120.816349,38.318008],[120.802183,38.284193]]],[[[121.489571,37.577086],[121.489571,37.577561],[121.489571,37.578509],[121.488955,37.578035],[121.489571,37.577086]]],[[[121.485875,37.578509],[121.487723,37.578035],[121.487723,37.578509],[121.485875,37.578509]]],[[[121.487723,37.578509],[121.487723,37.577561],[121.488955,37.578035],[121.488955,37.578509],[121.488339,37.578509],[121.487723,37.578509]]],[[[115.495249,35.896203],[115.487858,35.880688],[115.513112,35.890385],[115.505104,35.899112],[115.495249,35.896203]]]]}},{"type":"Feature","properties":{"adcode":410000,"name":"河南省","center":[113.665412,34.757975],"centroid":[113.619717,33.902648],"childrenNum":18,"level":"province","parent":{"adcode":100000},"subFeatureIndex":15,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.716747,32.357612],[112.735841,32.356095],[112.776493,32.358623],[112.860877,32.396024],[112.888594,32.37682],[112.912,32.390971],[112.992072,32.378336],[113.000695,32.41674],[113.025949,32.425328],[113.078919,32.394508],[113.107869,32.398551],[113.118956,32.375809],[113.155912,32.380863],[113.158992,32.410677],[113.211962,32.431895],[113.2366,32.407141],[113.333918,32.336377],[113.317904,32.327275],[113.353628,32.294904],[113.376418,32.298445],[113.428773,32.270618],[113.511925,32.316654],[113.624642,32.36115],[113.650511,32.412698],[113.700402,32.420782],[113.735511,32.410677],[113.76754,32.370249],[113.753989,32.328286],[113.768772,32.30148],[113.768156,32.284279],[113.758301,32.27669],[113.749061,32.272642],[113.73859,32.255942],[113.752757,32.215951],[113.782322,32.184553],[113.750293,32.11615],[113.722576,32.12426],[113.728735,32.083197],[113.791561,32.036028],[113.757685,31.98985],[113.817431,31.964467],[113.805728,31.929428],[113.832213,31.918761],[113.830981,31.87913],[113.854387,31.843042],[113.893807,31.847109],[113.914749,31.877098],[113.957865,31.852701],[113.952321,31.793714],[113.988662,31.749959],[114.017611,31.770822],[114.086596,31.782014],[114.121705,31.809482],[114.134024,31.843042],[114.191922,31.852192],[114.235654,31.833382],[114.292936,31.752503],[114.350218,31.755557],[114.403189,31.746906],[114.443841,31.728074],[114.530688,31.742834],[114.549783,31.766751],[114.586123,31.762172],[114.57134,31.660858],[114.547935,31.623665],[114.560869,31.560963],[114.572572,31.553824],[114.61692,31.585437],[114.641558,31.582378],[114.696376,31.525771],[114.778912,31.520669],[114.789383,31.480358],[114.830035,31.45892],[114.870071,31.479337],[114.884238,31.469129],[114.962462,31.494648],[114.995107,31.471171],[115.022824,31.527811],[115.096121,31.508425],[115.114599,31.530362],[115.106592,31.567592],[115.12507,31.599201],[115.16449,31.604808],[115.212533,31.555354],[115.235939,31.555354],[115.218077,31.515057],[115.211301,31.442072],[115.252569,31.421646],[115.250722,31.392021],[115.301229,31.383846],[115.338801,31.40428],[115.373909,31.405813],[115.389924,31.450241],[115.371446,31.495668],[115.415793,31.525771],[115.439815,31.588496],[115.485394,31.608885],[115.476771,31.643028],[115.495249,31.673083],[115.534054,31.698545],[115.553764,31.69549],[115.676336,31.778453],[115.731154,31.76726],[115.767495,31.78761],[115.808147,31.770313],[115.808147,31.770313],[115.851878,31.786593],[115.886371,31.776418],[115.914704,31.814567],[115.893762,31.832365],[115.894994,31.8649],[115.920248,31.920285],[115.909161,31.94314],[115.928871,32.003046],[115.922095,32.049725],[115.941805,32.166318],[115.912856,32.227596],[115.899306,32.390971],[115.865429,32.458662],[115.883291,32.487946],[115.845719,32.501575],[115.8759,32.542448],[115.910393,32.567165],[115.891298,32.576243],[115.861117,32.537403],[115.789052,32.468761],[115.771806,32.505108],[115.742241,32.476335],[115.704669,32.495013],[115.667712,32.409667],[115.657857,32.428864],[115.626445,32.40512],[115.604271,32.425833],[115.57101,32.419266],[115.522967,32.441997],[115.509416,32.466741],[115.5088,32.468761],[115.497713,32.492489],[115.409018,32.549007],[115.411482,32.575235],[115.304924,32.553042],[115.30554,32.583303],[115.267352,32.578261],[115.24333,32.593388],[115.20083,32.591876],[115.182968,32.666973],[115.179273,32.726402],[115.189744,32.770695],[115.211301,32.785791],[115.189744,32.812452],[115.197135,32.856201],[115.155867,32.864747],[115.139237,32.897917],[115.029599,32.906962],[115.035143,32.932582],[115.009273,32.940117],[114.943368,32.935094],[114.916266,32.971251],[114.883006,32.990328],[114.891629,33.020441],[114.925506,33.016928],[114.913187,33.083143],[114.897172,33.086653],[114.902716,33.129764],[114.932897,33.153817],[114.966158,33.147304],[114.990795,33.102195],[115.041302,33.086653],[115.168186,33.088658],[115.194671,33.120743],[115.245178,33.135778],[115.289526,33.131769],[115.303692,33.149809],[115.300613,33.204407],[115.340033,33.260973],[115.335105,33.297997],[115.361591,33.298497],[115.365286,33.336005],[115.341881,33.370997],[115.313547,33.376994],[115.328946,33.403477],[115.315395,33.431451],[115.324634,33.457418],[115.345576,33.449928],[115.345576,33.502842],[115.366518,33.5233],[115.394851,33.506335],[115.422569,33.557219],[115.463837,33.567193],[115.511264,33.55323],[115.564851,33.576169],[115.639995,33.585143],[115.601191,33.658898],[115.601807,33.718653],[115.563003,33.772895],[115.576553,33.787817],[115.614126,33.775879],[115.631988,33.869846],[115.547604,33.874815],[115.577785,33.950307],[115.579017,33.974133],[115.60735,34.030196],[115.642459,34.03218],[115.658473,34.061437],[115.705901,34.059949],[115.736082,34.076805],[115.768726,34.061932],[115.809378,34.062428],[115.846335,34.028708],[115.85003,34.004898],[115.877132,34.002913],[115.876516,34.028708],[115.904233,34.009859],[115.95782,34.007875],[116.00032,33.965199],[115.982457,33.917039],[116.05945,33.860902],[116.055754,33.804727],[116.074232,33.781351],[116.100102,33.782843],[116.132747,33.751501],[116.155536,33.709693],[116.230065,33.735078],[116.263326,33.730101],[116.316912,33.771402],[116.393905,33.782843],[116.408071,33.805721],[116.437021,33.801246],[116.437637,33.846489],[116.486296,33.869846],[116.558361,33.881274],[116.566984,33.9081],[116.631042,33.887733],[116.64336,33.896675],[116.641512,33.978103],[116.599629,34.014324],[116.599629,34.014324],[116.576223,34.068873],[116.576223,34.068873],[116.52818,34.122892],[116.536187,34.151127],[116.565752,34.16945],[116.542962,34.203608],[116.545426,34.241711],[116.582382,34.266444],[116.562056,34.285731],[116.516477,34.296114],[116.456731,34.268917],[116.409303,34.273863],[116.409303,34.273863],[116.372347,34.26595],[116.357564,34.319843],[116.301514,34.342082],[116.255934,34.376665],[116.213435,34.382098],[116.215898,34.403333],[116.178942,34.430487],[116.162312,34.459605],[116.178326,34.496112],[116.204196,34.508442],[116.191261,34.535561],[116.196804,34.575977],[116.156768,34.5538],[116.134594,34.559715],[116.101334,34.60603],[116.037276,34.593222],[115.991081,34.615389],[115.984305,34.589281],[115.838328,34.5676],[115.827241,34.558236],[115.787821,34.580905],[115.697278,34.594207],[115.685575,34.556265],[115.622749,34.574499],[115.553148,34.568586],[115.515575,34.582383],[115.461373,34.637057],[115.433655,34.725149],[115.449054,34.74433],[115.42688,34.805285],[115.317243,34.859321],[115.256265,34.845079],[115.239019,34.87798],[115.251953,34.906451],[115.205142,34.914303],[115.219309,34.96042],[115.157099,34.957968],[115.12815,35.00455],[115.075179,35.000628],[115.028983,34.9717],[115.008041,34.988372],[114.950759,34.989843],[114.923658,34.968757],[114.880542,35.00357],[114.824492,35.012393],[114.852209,35.041797],[114.818948,35.051596],[114.835578,35.076578],[114.883006,35.098615],[114.841738,35.15099],[114.861448,35.182301],[114.932281,35.198441],[114.929201,35.244886],[114.957534,35.261014],[115.04315,35.376744],[115.073947,35.374304],[115.091809,35.416259],[115.117679,35.400163],[115.126302,35.41821],[115.172497,35.426501],[115.237171,35.423087],[115.307388,35.480126],[115.356047,35.490359],[115.34496,35.55368],[115.383148,35.568772],[115.48601,35.710306],[115.52851,35.733628],[115.622749,35.739457],[115.693582,35.754028],[115.696046,35.788989],[115.73485,35.833154],[115.773654,35.854014],[115.81677,35.844312],[115.859886,35.857894],[115.882675,35.879718],[115.873436,35.918985],[115.907929,35.92674],[115.911624,35.960171],[115.984921,35.974218],[116.048979,35.970343],[116.063145,36.028927],[116.099486,36.112129],[116.057602,36.104877],[115.989849,36.045381],[115.89869,36.026507],[115.859886,36.003756],[115.817386,36.012954],[115.779813,35.993588],[115.774886,35.974702],[115.699125,35.966468],[115.648618,35.922863],[115.583945,35.921893],[115.513112,35.890385],[115.487858,35.880688],[115.460141,35.867594],[115.407786,35.80889],[115.363438,35.779765],[115.335105,35.796756],[115.364054,35.894264],[115.353583,35.938854],[115.362822,35.971796],[115.447822,36.01247],[115.449054,36.047317],[115.484163,36.125666],[115.483547,36.148865],[115.465068,36.170125],[115.450902,36.152248],[115.376989,36.128083],[115.365902,36.099074],[115.312931,36.088436],[115.30246,36.127599],[115.279055,36.13775],[115.242098,36.19138],[115.202678,36.208765],[115.202678,36.208765],[115.202678,36.209248],[115.202678,36.209248],[115.201446,36.210214],[115.201446,36.210214],[115.1842,36.193312],[115.12507,36.209731],[115.104744,36.172058],[115.06286,36.178338],[115.048693,36.161912],[115.04623,36.112613],[114.998186,36.069572],[114.914419,36.052155],[114.926737,36.089403],[114.912571,36.140649],[114.858368,36.144516],[114.857752,36.127599],[114.771521,36.124699],[114.734564,36.15563],[114.720398,36.140166],[114.640326,36.137266],[114.588587,36.118414],[114.586739,36.141133],[114.533152,36.171575],[114.480181,36.177855],[114.466015,36.197658],[114.417356,36.205868],[114.408117,36.224699],[114.356378,36.230492],[114.345291,36.255591],[114.299095,36.245938],[114.257827,36.263794],[114.241197,36.251247],[114.2104,36.272962],[114.203009,36.245456],[114.170364,36.245938],[114.170364,36.245938],[114.175907,36.264759],[114.129096,36.280199],[114.080437,36.269585],[114.04348,36.303353],[114.056415,36.329392],[114.002828,36.334214],[113.981887,36.31782],[113.962792,36.353977],[113.911054,36.314927],[113.882104,36.353977],[113.84946,36.347711],[113.856851,36.329392],[113.813119,36.332285],[113.755221,36.366026],[113.731199,36.363135],[113.736127,36.324571],[113.712105,36.303353],[113.716417,36.262347],[113.681924,36.216491],[113.697939,36.181719],[113.651127,36.174473],[113.705946,36.148865],[113.712721,36.129533],[113.655439,36.125182],[113.671453,36.115514],[113.68562,36.056026],[113.660366,36.034735],[113.694859,36.026991],[113.678844,35.985841],[113.648663,35.994073],[113.654207,35.931586],[113.637576,35.870019],[113.660982,35.837035],[113.582758,35.818111],[113.604932,35.797727],[113.587685,35.736542],[113.592613,35.691838],[113.622794,35.674825],[113.625258,35.632518],[113.578446,35.633491],[113.547649,35.656835],[113.55812,35.621816],[113.513773,35.57364],[113.49899,35.532254],[113.439244,35.507412],[113.391817,35.506925],[113.348085,35.468429],[113.31236,35.481101],[113.304353,35.426989],[113.243375,35.449418],[113.189789,35.44893],[113.185477,35.409431],[113.165151,35.412845],[113.149137,35.350878],[113.126347,35.332327],[113.067217,35.353806],[112.996384,35.362104],[112.985913,35.33965],[112.992072,35.29619],[112.936022,35.284466],[112.934174,35.262968],[112.884283,35.243909],[112.822073,35.258082],[112.772798,35.207732],[112.720443,35.206265],[112.628052,35.263457],[112.637291,35.225822],[112.513487,35.218489],[112.390915,35.239021],[112.36751,35.219956],[112.288053,35.219956],[112.304684,35.251728],[112.242474,35.234622],[112.21722,35.253195],[112.13838,35.271275],[112.058924,35.280069],[112.078634,35.219467],[112.03983,35.194039],[112.066315,35.153437],[112.05646,35.098615],[112.062004,35.056005],[112.039214,35.045717],[112.018888,35.068742],[111.97762,35.067272],[111.933272,35.083435],[111.810084,35.062374],[111.807005,35.032977],[111.740483,35.00455],[111.664107,34.984449],[111.681969,34.9511],[111.646861,34.938836],[111.617911,34.894671],[111.592042,34.881416],[111.570484,34.843114],[111.543999,34.853428],[111.502731,34.829851],[111.439289,34.838202],[111.389398,34.815113],[111.345666,34.831816],[111.29208,34.806759],[111.255123,34.819535],[111.232949,34.789559],[111.148566,34.807742],[111.118385,34.756623],[111.035233,34.740887],[110.976103,34.706456],[110.920052,34.730068],[110.903422,34.669056],[110.883712,34.64395],[110.824582,34.615881],[110.791937,34.649858],[110.749437,34.65232],[110.710017,34.605045],[110.610851,34.607508],[110.533242,34.583368],[110.488279,34.610956],[110.424837,34.588295],[110.379257,34.600612],[110.366939,34.566614],[110.404511,34.557743],[110.372482,34.544435],[110.360779,34.516825],[110.403279,34.433448],[110.403279,34.433448],[110.473496,34.393457],[110.503677,34.33714],[110.451938,34.292653],[110.428533,34.288203],[110.43962,34.243196],[110.507989,34.217466],[110.55172,34.213012],[110.55788,34.193214],[110.621938,34.177372],[110.642264,34.161032],[110.61393,34.113478],[110.591757,34.101586],[110.587445,34.023252],[110.620706,34.035652],[110.671213,33.966192],[110.665669,33.937895],[110.627481,33.925482],[110.628713,33.910086],[110.587445,33.887733],[110.612083,33.852453],[110.66259,33.85295],[110.712481,33.833564],[110.74143,33.798759],[110.782082,33.796272],[110.81719,33.751003],[110.831973,33.713675],[110.823966,33.685793],[110.878784,33.634486],[110.966864,33.609071],[111.00382,33.578662],[111.002588,33.535772],[111.02661,33.478386],[111.02661,33.467903],[110.996429,33.435946],[111.025994,33.375495],[111.025994,33.330504],[110.984726,33.255469],[111.046936,33.202905],[111.045704,33.169849],[111.08882,33.181871],[111.12824,33.15532],[111.146102,33.12375],[111.179363,33.115229],[111.192913,33.071609],[111.152877,33.039507],[111.221862,33.042517],[111.258819,33.006389],[111.273601,32.971753],[111.242804,32.930573],[111.255123,32.883846],[111.276065,32.903445],[111.293311,32.859217],[111.380159,32.829049],[111.41342,32.757108],[111.475629,32.760127],[111.458383,32.726402],[111.513202,32.674026],[111.530448,32.628172],[111.577875,32.593388],[111.640701,32.634724],[111.646245,32.605993],[111.713382,32.606497],[111.808853,32.536899],[111.858128,32.528826],[111.890157,32.503089],[111.948671,32.51722],[111.975772,32.471791],[112.014576,32.450077],[112.063851,32.474315],[112.081098,32.425833],[112.155626,32.377326],[112.150083,32.411688],[112.172873,32.385412],[112.206133,32.392992],[112.328089,32.321712],[112.360118,32.3657],[112.390915,32.37126],[112.448814,32.34295],[112.477147,32.380863],[112.530733,32.37682],[112.545516,32.404109],[112.589248,32.381369],[112.612037,32.386928],[112.645298,32.368227],[112.716747,32.357612]]],[[[113.768156,32.284279],[113.768772,32.30148],[113.749061,32.272642],[113.758301,32.27669],[113.768156,32.284279]]]]}},{"type":"Feature","properties":{"adcode":420000,"name":"湖北省","center":[114.298572,30.584355],"centroid":[112.271301,30.987527],"childrenNum":17,"level":"province","parent":{"adcode":100000},"subFeatureIndex":16,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[111.045704,33.169849],[111.034001,33.177864],[111.035849,33.187881],[111.046936,33.202905],[110.984726,33.255469],[110.960704,33.253967],[110.9219,33.203907],[110.865234,33.213921],[110.828893,33.201403],[110.824582,33.158327],[110.753133,33.15031],[110.702626,33.097182],[110.650887,33.157324],[110.623785,33.143796],[110.59422,33.168346],[110.57759,33.250464],[110.54125,33.255469],[110.471032,33.171352],[110.398352,33.176862],[110.398352,33.176862],[110.372482,33.186379],[110.33799,33.160331],[110.285635,33.171352],[110.218497,33.163336],[110.164911,33.209415],[110.031252,33.191888],[109.999223,33.212419],[109.973353,33.203907],[109.916687,33.229942],[109.852013,33.247961],[109.813209,33.236449],[109.732521,33.231443],[109.693101,33.254468],[109.649985,33.251465],[109.619804,33.275484],[109.60687,33.235949],[109.514479,33.237951],[109.498464,33.207412],[109.438718,33.152314],[109.468283,33.140288],[109.522486,33.138785],[109.576073,33.110216],[109.688174,33.116733],[109.704188,33.101694],[109.794731,33.067095],[109.785492,32.987316],[109.76455,32.909474],[109.789804,32.882339],[109.847702,32.893395],[109.856941,32.910479],[109.907448,32.903947],[109.927158,32.887364],[109.988752,32.886359],[110.051578,32.851676],[110.105164,32.832569],[110.142121,32.802895],[110.127338,32.77774],[110.159367,32.767173],[110.156903,32.683093],[110.206179,32.633212],[110.153824,32.593388],[110.124259,32.616579],[110.090382,32.617083],[110.084223,32.580782],[110.017701,32.546989],[109.97089,32.577756],[109.910528,32.592884],[109.816905,32.577252],[109.746072,32.594901],[109.726978,32.608513],[109.631507,32.599943],[109.619804,32.56767],[109.637051,32.540935],[109.575457,32.506622],[109.526797,32.43341],[109.529877,32.405625],[109.502776,32.38895],[109.513247,32.342444],[109.495385,32.300468],[109.528645,32.270112],[109.550203,32.225065],[109.592703,32.219495],[109.604406,32.199241],[109.58716,32.161251],[109.621652,32.106519],[109.590855,32.047696],[109.590855,32.012688],[109.631507,31.962436],[109.62042,31.928412],[109.584696,31.900472],[109.60379,31.885737],[109.633971,31.824738],[109.633971,31.804396],[109.592087,31.789136],[109.585928,31.726546],[109.622268,31.711783],[109.683246,31.719929],[109.731289,31.700582],[109.737449,31.628761],[109.76455,31.602769],[109.745456,31.598182],[109.727594,31.548214],[109.837847,31.555354],[109.894513,31.519139],[109.969658,31.508935],[109.94502,31.47066],[109.98752,31.474744],[110.036795,31.436966],[110.054042,31.410921],[110.118715,31.409899],[110.161831,31.314338],[110.155671,31.279564],[110.180309,31.179774],[110.200019,31.158779],[110.180309,31.121899],[110.147048,31.116776],[110.119947,31.088592],[110.120563,31.0322],[110.140273,31.030661],[110.140889,30.987062],[110.172918,30.978853],[110.153824,30.953708],[110.151976,30.911613],[110.082375,30.799614],[110.048498,30.800642],[110.019549,30.829425],[110.008462,30.883369],[109.943788,30.878746],[109.894513,30.899803],[109.828608,30.864364],[109.780564,30.848437],[109.701724,30.783677],[109.656761,30.760538],[109.661072,30.738936],[109.625348,30.702923],[109.590855,30.69366],[109.574225,30.646818],[109.543428,30.63961],[109.535421,30.664837],[109.435638,30.595832],[109.418392,30.559766],[109.35495,30.487076],[109.337088,30.521623],[109.36111,30.551004],[109.314298,30.599953],[109.299516,30.630341],[109.245313,30.580892],[109.191726,30.545851],[109.191726,30.545851],[109.143683,30.521108],[109.103647,30.565949],[109.09256,30.578831],[109.106111,30.61077],[109.111654,30.646303],[109.071002,30.640125],[109.042669,30.655571],[109.006329,30.626736],[108.971836,30.627766],[108.893612,30.565434],[108.838793,30.503062],[108.808612,30.491202],[108.789518,30.513374],[108.743939,30.494812],[108.698975,30.54482],[108.688504,30.58759],[108.642925,30.578831],[108.6497,30.53915],[108.56778,30.468508],[108.556077,30.487592],[108.512961,30.501515],[108.472925,30.487076],[108.42673,30.492233],[108.411331,30.438586],[108.430425,30.416397],[108.402092,30.376649],[108.431041,30.354446],[108.460606,30.35961],[108.501258,30.314673],[108.524048,30.309506],[108.54499,30.269716],[108.581947,30.255759],[108.551766,30.1637],[108.56778,30.157491],[108.546222,30.104178],[108.513577,30.057571],[108.532055,30.051873],[108.536367,29.983472],[108.517889,29.9394],[108.516041,29.885451],[108.467998,29.864175],[108.433505,29.880262],[108.371295,29.841337],[108.424266,29.815897],[108.422418,29.772791],[108.442744,29.778505],[108.437201,29.741098],[108.460606,29.741098],[108.504338,29.707836],[108.504954,29.728626],[108.548686,29.749412],[108.52528,29.770713],[108.556077,29.818493],[108.601041,29.863656],[108.658939,29.854833],[108.680497,29.800319],[108.676801,29.749412],[108.690968,29.689642],[108.752562,29.649082],[108.786438,29.691721],[108.797525,29.660003],[108.781511,29.635558],[108.844337,29.658443],[108.888068,29.628795],[108.870206,29.596537],[108.901003,29.604863],[108.913322,29.574679],[108.878213,29.539279],[108.888684,29.502305],[108.866511,29.470527],[108.884373,29.440824],[108.927488,29.435612],[108.934264,29.399643],[108.919481,29.3261],[108.983539,29.332883],[108.999553,29.36366],[109.034662,29.360531],[109.060531,29.403292],[109.11227,29.361053],[109.106727,29.288526],[109.141835,29.270256],[109.110422,29.21647],[109.139372,29.168927],[109.162777,29.180946],[109.215748,29.145409],[109.232378,29.119271],[109.274262,29.121885],[109.261328,29.161089],[109.275494,29.202366],[109.257632,29.222738],[109.312451,29.25146],[109.352487,29.284872],[109.343863,29.369398],[109.391291,29.372005],[109.368501,29.413719],[109.418392,29.453332],[109.415928,29.497617],[109.436254,29.488761],[109.433791,29.530948],[109.458428,29.513242],[109.467051,29.560104],[109.488609,29.553336],[109.516326,29.626194],[109.558826,29.606944],[109.578536,29.629836],[109.651833,29.625674],[109.664768,29.599659],[109.717739,29.615269],[109.701108,29.636078],[109.714659,29.673524],[109.760238,29.689122],[109.755311,29.733304],[109.779333,29.757725],[109.869876,29.774869],[109.908064,29.763959],[109.941325,29.774349],[110.02386,29.769674],[110.113788,29.789932],[110.160599,29.753569],[110.219729,29.746814],[110.289946,29.6964],[110.302265,29.661563],[110.339221,29.668324],[110.372482,29.633477],[110.447011,29.664684],[110.467337,29.713034],[110.507373,29.692241],[110.562807,29.712515],[110.642879,29.775907],[110.60038,29.839779],[110.549873,29.848085],[110.538786,29.895828],[110.49875,29.91243],[110.517228,29.961179],[110.557264,29.988137],[110.491358,30.019751],[110.497518,30.055499],[110.531394,30.061197],[110.600996,30.054463],[110.650887,30.07777],[110.712481,30.033223],[110.756212,30.054463],[110.746973,30.112979],[110.851067,30.126439],[110.924364,30.111426],[110.929907,30.063268],[111.031537,30.048765],[111.242188,30.040476],[111.266826,30.01146],[111.3315,29.970512],[111.342587,29.944586],[111.382623,29.95029],[111.394325,29.912948],[111.436825,29.930065],[111.475629,29.918654],[111.527368,29.925916],[111.553854,29.894272],[111.669034,29.888565],[111.669034,29.888565],[111.705375,29.890121],[111.723853,29.909317],[111.723853,29.909317],[111.75773,29.92021],[111.8107,29.901017],[111.861207,29.856909],[111.899396,29.855871],[111.899396,29.855871],[111.925881,29.836665],[111.965917,29.832512],[111.95483,29.796683],[112.008417,29.778505],[112.07617,29.743696],[112.065699,29.681323],[112.089721,29.685482],[112.111279,29.659483],[112.178416,29.656883],[112.202438,29.633997],[112.244322,29.659483],[112.233851,29.61631],[112.303452,29.585609],[112.281278,29.536676],[112.291133,29.517409],[112.333017,29.545007],[112.368741,29.541362],[112.424792,29.598619],[112.439574,29.633997],[112.499321,29.629316],[112.54182,29.60122],[112.572001,29.624113],[112.640371,29.607985],[112.650842,29.592374],[112.693957,29.601741],[112.714283,29.648561],[112.733378,29.645441],[112.788812,29.681323],[112.79374,29.735902],[112.861493,29.78318],[112.894138,29.783699],[112.902145,29.79149],[112.929246,29.77383],[112.923703,29.766557],[112.926782,29.692241],[112.944645,29.682883],[112.974826,29.732784],[113.025949,29.772791],[113.005007,29.693801],[112.915696,29.620992],[112.912,29.606944],[112.950188,29.473132],[113.034572,29.523658],[113.057362,29.522616],[113.078304,29.438218],[113.099861,29.459585],[113.145441,29.449163],[113.181781,29.485636],[113.222433,29.543965],[113.277252,29.594976],[113.37765,29.703158],[113.571671,29.849123],[113.575367,29.809147],[113.550729,29.768115],[113.558736,29.727067],[113.540258,29.699519],[113.547033,29.675603],[113.606164,29.666764],[113.663446,29.684443],[113.680692,29.64336],[113.704098,29.634518],[113.73859,29.579363],[113.710257,29.555419],[113.630801,29.523137],[113.677613,29.513763],[113.755221,29.446557],[113.731199,29.393907],[113.674533,29.388172],[113.660982,29.333405],[113.632033,29.316186],[113.609859,29.25146],[113.651743,29.225872],[113.693011,29.226394],[113.691779,29.19662],[113.66283,29.16945],[113.690547,29.114566],[113.696091,29.077437],[113.722576,29.104631],[113.749677,29.060699],[113.775547,29.095219],[113.816199,29.105154],[113.852539,29.058606],[113.882104,29.065407],[113.876561,29.038202],[113.898119,29.029307],[113.94185,29.047097],[113.952321,29.092604],[113.98743,29.126068],[114.034857,29.152204],[114.063191,29.204978],[114.169748,29.216993],[114.252284,29.23475],[114.259059,29.343839],[114.307102,29.365225],[114.341595,29.327665],[114.376088,29.322969],[114.440145,29.341752],[114.466015,29.324013],[114.519602,29.325578],[114.589819,29.352707],[114.621847,29.379828],[114.67297,29.395993],[114.740724,29.386607],[114.759818,29.363139],[114.784455,29.386086],[114.812173,29.383478],[114.866375,29.404335],[114.895325,29.397557],[114.931049,29.422581],[114.947063,29.465317],[114.935977,29.486678],[114.90518,29.473132],[114.918114,29.454374],[114.888549,29.436134],[114.860216,29.476258],[114.900868,29.505951],[114.940288,29.493971],[114.966773,29.522096],[114.947679,29.542924],[115.00065,29.572076],[115.033295,29.546568],[115.087498,29.560104],[115.086266,29.525741],[115.154019,29.510117],[115.157099,29.584568],[115.120142,29.597578],[115.143548,29.645961],[115.117679,29.655843],[115.113367,29.684963],[115.176809,29.654803],[115.250722,29.660003],[115.28583,29.618391],[115.304924,29.637118],[115.355431,29.649602],[115.412714,29.688602],[115.470612,29.739539],[115.479235,29.811224],[115.51188,29.840299],[115.611662,29.841337],[115.667712,29.850161],[115.706517,29.837703],[115.762567,29.793048],[115.837096,29.748373],[115.909777,29.723949],[115.965827,29.724469],[116.049595,29.761881],[116.087167,29.795125],[116.13521,29.819532],[116.128435,29.897904],[116.073616,29.969993],[116.091479,30.036331],[116.078544,30.062233],[116.088399,30.110391],[116.055754,30.180774],[116.065609,30.204569],[115.997856,30.252657],[115.985537,30.290905],[115.903001,30.31364],[115.91532,30.337919],[115.885139,30.379747],[115.921479,30.416397],[115.894994,30.452517],[115.910393,30.519046],[115.887603,30.542758],[115.876516,30.582438],[115.848799,30.602014],[115.819234,30.597893],[115.81369,30.637035],[115.762567,30.685426],[115.782893,30.751795],[115.851262,30.756938],[115.863581,30.815549],[115.848799,30.828397],[115.865429,30.864364],[115.932566,30.889532],[115.976298,30.931636],[116.03974,30.957813],[116.071769,30.956787],[116.058834,31.012711],[116.015102,31.011685],[116.006479,31.034764],[115.938726,31.04707],[115.939958,31.071678],[115.887603,31.10909],[115.867277,31.147512],[115.837712,31.127022],[115.797676,31.128047],[115.778582,31.112164],[115.700973,31.201276],[115.655394,31.211002],[115.603655,31.17363],[115.585793,31.143926],[115.540213,31.194621],[115.539597,31.231985],[115.507568,31.267799],[115.473076,31.265242],[115.443511,31.344498],[115.40717,31.337854],[115.372062,31.349098],[115.393004,31.389977],[115.373909,31.405813],[115.338801,31.40428],[115.301229,31.383846],[115.250722,31.392021],[115.252569,31.421646],[115.211301,31.442072],[115.218077,31.515057],[115.235939,31.555354],[115.212533,31.555354],[115.16449,31.604808],[115.12507,31.599201],[115.106592,31.567592],[115.114599,31.530362],[115.096121,31.508425],[115.022824,31.527811],[114.995107,31.471171],[114.962462,31.494648],[114.884238,31.469129],[114.870071,31.479337],[114.830035,31.45892],[114.789383,31.480358],[114.778912,31.520669],[114.696376,31.525771],[114.641558,31.582378],[114.61692,31.585437],[114.572572,31.553824],[114.560869,31.560963],[114.547935,31.623665],[114.57134,31.660858],[114.586123,31.762172],[114.549783,31.766751],[114.530688,31.742834],[114.443841,31.728074],[114.403189,31.746906],[114.350218,31.755557],[114.292936,31.752503],[114.235654,31.833382],[114.191922,31.852192],[114.134024,31.843042],[114.121705,31.809482],[114.086596,31.782014],[114.017611,31.770822],[113.988662,31.749959],[113.952321,31.793714],[113.957865,31.852701],[113.914749,31.877098],[113.893807,31.847109],[113.854387,31.843042],[113.830981,31.87913],[113.832213,31.918761],[113.805728,31.929428],[113.817431,31.964467],[113.757685,31.98985],[113.791561,32.036028],[113.728735,32.083197],[113.722576,32.12426],[113.750293,32.11615],[113.782322,32.184553],[113.752757,32.215951],[113.73859,32.255942],[113.749061,32.272642],[113.768772,32.30148],[113.753989,32.328286],[113.76754,32.370249],[113.735511,32.410677],[113.700402,32.420782],[113.650511,32.412698],[113.624642,32.36115],[113.511925,32.316654],[113.428773,32.270618],[113.376418,32.298445],[113.353628,32.294904],[113.317904,32.327275],[113.333918,32.336377],[113.2366,32.407141],[113.211962,32.431895],[113.158992,32.410677],[113.155912,32.380863],[113.118956,32.375809],[113.107869,32.398551],[113.078919,32.394508],[113.025949,32.425328],[113.000695,32.41674],[112.992072,32.378336],[112.912,32.390971],[112.888594,32.37682],[112.860877,32.396024],[112.776493,32.358623],[112.735841,32.356095],[112.733993,32.356601],[112.724138,32.358623],[112.716747,32.357612],[112.645298,32.368227],[112.612037,32.386928],[112.589248,32.381369],[112.545516,32.404109],[112.530733,32.37682],[112.477147,32.380863],[112.448814,32.34295],[112.390915,32.37126],[112.360118,32.3657],[112.328089,32.321712],[112.206133,32.392992],[112.172873,32.385412],[112.150083,32.411688],[112.155626,32.377326],[112.081098,32.425833],[112.063851,32.474315],[112.014576,32.450077],[111.975772,32.471791],[111.948671,32.51722],[111.890157,32.503089],[111.858128,32.528826],[111.808853,32.536899],[111.713382,32.606497],[111.646245,32.605993],[111.640701,32.634724],[111.577875,32.593388],[111.530448,32.628172],[111.513202,32.674026],[111.458383,32.726402],[111.475629,32.760127],[111.41342,32.757108],[111.380159,32.829049],[111.293311,32.859217],[111.276065,32.903445],[111.255123,32.883846],[111.242804,32.930573],[111.273601,32.971753],[111.258819,33.006389],[111.221862,33.042517],[111.152877,33.039507],[111.192913,33.071609],[111.179363,33.115229],[111.146102,33.12375],[111.12824,33.15532],[111.08882,33.181871],[111.045704,33.169849]]],[[[109.106111,30.570587],[109.101183,30.579346],[109.09872,30.579346],[109.106111,30.570587]]],[[[111.046936,33.202905],[111.035849,33.187881],[111.034001,33.177864],[111.045704,33.169849],[111.046936,33.202905]]],[[[112.716747,32.357612],[112.735841,32.356095],[112.733993,32.356601],[112.724138,32.358623],[112.716747,32.357612]]],[[[112.902145,29.79149],[112.894138,29.783699],[112.923703,29.766557],[112.929246,29.77383],[112.902145,29.79149]]]]}},{"type":"Feature","properties":{"adcode":430000,"name":"湖南省","center":[112.982279,28.19409],"centroid":[111.711649,27.629216],"childrenNum":14,"level":"province","parent":{"adcode":100000},"subFeatureIndex":17,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[112.024431,24.740308],[112.03367,24.771286],[112.124214,24.841364],[112.149467,24.837019],[112.167329,24.859828],[112.175337,24.927685],[112.119902,24.963499],[112.12175,24.989538],[112.155626,25.026419],[112.151931,25.055698],[112.177184,25.106649],[112.187039,25.182494],[112.246785,25.185202],[112.256025,25.159204],[112.302836,25.157037],[112.315771,25.175453],[112.365046,25.191701],[112.414937,25.14241],[112.44327,25.185744],[112.458053,25.152162],[112.562762,25.124531],[112.628052,25.140785],[112.660081,25.132658],[112.712436,25.083344],[112.714899,25.025876],[112.742001,24.99876],[112.743233,24.959701],[112.778341,24.947764],[112.780805,24.896747],[112.873812,24.896747],[112.904609,24.921715],[112.941565,24.915745],[112.994536,24.927142],[113.009934,24.977604],[112.979137,25.03401],[113.004391,25.089306],[112.96805,25.141869],[112.97421,25.168412],[113.034572,25.198199],[112.992688,25.247467],[112.958195,25.254503],[112.897833,25.238264],[112.867036,25.249632],[112.854718,25.337829],[112.891058,25.339993],[112.924319,25.296714],[112.93479,25.325929],[112.969898,25.350269],[113.013014,25.352432],[113.078304,25.382174],[113.096782,25.412449],[113.131274,25.414611],[113.11834,25.445418],[113.176854,25.471355],[113.226129,25.50971],[113.248919,25.514031],[113.311129,25.490264],[113.314208,25.442716],[113.341926,25.448661],[113.373338,25.402719],[113.407215,25.401637],[113.449715,25.359463],[113.479896,25.375145],[113.535946,25.368656],[113.579062,25.34432],[113.584606,25.306453],[113.611707,25.327552],[113.680076,25.334584],[113.686852,25.351891],[113.753373,25.362707],[113.76446,25.333502],[113.814967,25.328634],[113.839605,25.363248],[113.877177,25.380552],[113.887032,25.436772],[113.94493,25.441635],[113.962792,25.528072],[113.986198,25.529153],[113.983118,25.599336],[113.957249,25.611749],[113.913517,25.701299],[113.920293,25.741197],[113.961561,25.77731],[113.971416,25.836036],[114.028082,25.893119],[114.028082,25.98138],[114.008372,26.015806],[114.044096,26.076564],[114.087828,26.06635],[114.121089,26.085702],[114.10569,26.097526],[114.188842,26.121172],[114.237501,26.152333],[114.216559,26.203355],[114.181451,26.214631],[114.102611,26.187783],[114.088444,26.168448],[114.013299,26.184023],[113.962792,26.150722],[113.949242,26.192616],[113.972647,26.20604],[113.978807,26.237716],[114.029314,26.266163],[114.021307,26.288701],[114.047792,26.337518],[114.030546,26.376664],[114.062575,26.406149],[114.085364,26.406149],[114.090292,26.455988],[114.110002,26.482775],[114.07243,26.480096],[114.10877,26.56952],[114.019459,26.587182],[113.996669,26.615543],[113.912901,26.613938],[113.860546,26.664221],[113.853771,26.769532],[113.835909,26.806394],[113.877177,26.859262],[113.890112,26.895562],[113.927068,26.948922],[113.892575,26.964925],[113.86301,27.018252],[113.824206,27.036378],[113.803264,27.099261],[113.771851,27.096598],[113.779242,27.137081],[113.846996,27.222262],[113.872865,27.289828],[113.854387,27.30525],[113.872865,27.346721],[113.872865,27.384988],[113.72812,27.350442],[113.699786,27.331836],[113.657902,27.347253],[113.616635,27.345658],[113.605548,27.38924],[113.632033,27.40518],[113.59754,27.428554],[113.591381,27.467855],[113.627105,27.49971],[113.583374,27.524657],[113.579062,27.545354],[113.608627,27.585143],[113.607395,27.625449],[113.652359,27.663619],[113.696707,27.71979],[113.69917,27.740979],[113.763228,27.799228],[113.756453,27.860091],[113.72812,27.874904],[113.752141,27.93361],[113.822974,27.982243],[113.845148,27.971672],[113.864242,28.004966],[113.914133,27.991227],[113.936307,28.018703],[113.966488,28.017646],[113.970184,28.041418],[114.025618,28.031382],[114.047176,28.057263],[114.025002,28.080499],[113.992357,28.161255],[114.012068,28.174972],[114.068734,28.171806],[114.107538,28.182885],[114.109386,28.205038],[114.143879,28.246694],[114.182067,28.249858],[114.198081,28.29097],[114.2529,28.319423],[114.252284,28.395787],[114.214712,28.403157],[114.172212,28.432632],[114.217175,28.466308],[114.218407,28.48472],[114.15435,28.507337],[114.138335,28.533629],[114.08598,28.558337],[114.132176,28.607211],[114.122321,28.623497],[114.157429,28.761566],[114.137719,28.779926],[114.153734,28.829221],[114.124784,28.843376],[114.076741,28.834464],[114.056415,28.872204],[114.060111,28.902596],[114.028082,28.891069],[114.005292,28.917788],[114.008988,28.955498],[113.973879,28.937692],[113.955401,28.978536],[113.961561,28.999476],[113.94185,29.047097],[113.898119,29.029307],[113.876561,29.038202],[113.882104,29.065407],[113.852539,29.058606],[113.816199,29.105154],[113.775547,29.095219],[113.749677,29.060699],[113.722576,29.104631],[113.696091,29.077437],[113.690547,29.114566],[113.66283,29.16945],[113.691779,29.19662],[113.693011,29.226394],[113.651743,29.225872],[113.609859,29.25146],[113.632033,29.316186],[113.660982,29.333405],[113.674533,29.388172],[113.731199,29.393907],[113.755221,29.446557],[113.677613,29.513763],[113.630801,29.523137],[113.710257,29.555419],[113.73859,29.579363],[113.704098,29.634518],[113.680692,29.64336],[113.663446,29.684443],[113.606164,29.666764],[113.547033,29.675603],[113.540258,29.699519],[113.558736,29.727067],[113.550729,29.768115],[113.575367,29.809147],[113.571671,29.849123],[113.37765,29.703158],[113.277252,29.594976],[113.222433,29.543965],[113.181781,29.485636],[113.145441,29.449163],[113.099861,29.459585],[113.078304,29.438218],[113.057362,29.522616],[113.034572,29.523658],[112.950188,29.473132],[112.912,29.606944],[112.915696,29.620992],[113.005007,29.693801],[113.025949,29.772791],[112.974826,29.732784],[112.944645,29.682883],[112.926782,29.692241],[112.923703,29.766557],[112.894138,29.783699],[112.861493,29.78318],[112.79374,29.735902],[112.788812,29.681323],[112.733378,29.645441],[112.714283,29.648561],[112.693957,29.601741],[112.650842,29.592374],[112.640371,29.607985],[112.572001,29.624113],[112.54182,29.60122],[112.499321,29.629316],[112.439574,29.633997],[112.424792,29.598619],[112.368741,29.541362],[112.333017,29.545007],[112.291133,29.517409],[112.281278,29.536676],[112.303452,29.585609],[112.233851,29.61631],[112.244322,29.659483],[112.202438,29.633997],[112.178416,29.656883],[112.111279,29.659483],[112.089721,29.685482],[112.065699,29.681323],[112.07617,29.743696],[112.008417,29.778505],[111.95483,29.796683],[111.965917,29.832512],[111.925881,29.836665],[111.899396,29.855871],[111.899396,29.855871],[111.861207,29.856909],[111.8107,29.901017],[111.75773,29.92021],[111.723853,29.909317],[111.723853,29.909317],[111.705375,29.890121],[111.669034,29.888565],[111.669034,29.888565],[111.553854,29.894272],[111.527368,29.925916],[111.475629,29.918654],[111.436825,29.930065],[111.394325,29.912948],[111.382623,29.95029],[111.342587,29.944586],[111.3315,29.970512],[111.266826,30.01146],[111.242188,30.040476],[111.031537,30.048765],[110.929907,30.063268],[110.924364,30.111426],[110.851067,30.126439],[110.746973,30.112979],[110.756212,30.054463],[110.712481,30.033223],[110.650887,30.07777],[110.600996,30.054463],[110.531394,30.061197],[110.497518,30.055499],[110.491358,30.019751],[110.557264,29.988137],[110.517228,29.961179],[110.49875,29.91243],[110.538786,29.895828],[110.549873,29.848085],[110.60038,29.839779],[110.642879,29.775907],[110.562807,29.712515],[110.507373,29.692241],[110.467337,29.713034],[110.447011,29.664684],[110.372482,29.633477],[110.339221,29.668324],[110.302265,29.661563],[110.289946,29.6964],[110.219729,29.746814],[110.160599,29.753569],[110.113788,29.789932],[110.02386,29.769674],[109.941325,29.774349],[109.908064,29.763959],[109.869876,29.774869],[109.779333,29.757725],[109.755311,29.733304],[109.760238,29.689122],[109.714659,29.673524],[109.701108,29.636078],[109.717739,29.615269],[109.664768,29.599659],[109.651833,29.625674],[109.578536,29.629836],[109.558826,29.606944],[109.516326,29.626194],[109.488609,29.553336],[109.467051,29.560104],[109.458428,29.513242],[109.433791,29.530948],[109.436254,29.488761],[109.415928,29.497617],[109.418392,29.453332],[109.368501,29.413719],[109.391291,29.372005],[109.343863,29.369398],[109.352487,29.284872],[109.312451,29.25146],[109.257632,29.222738],[109.275494,29.202366],[109.261328,29.161089],[109.274262,29.121885],[109.232378,29.119271],[109.240386,29.086328],[109.312451,29.066453],[109.319842,29.042388],[109.294588,29.015177],[109.292741,28.987436],[109.261328,28.952356],[109.235458,28.882161],[109.246545,28.80143],[109.241002,28.776779],[109.2989,28.7474],[109.294588,28.722211],[109.252704,28.691767],[109.271183,28.671816],[109.192958,28.636104],[109.201581,28.597753],[109.235458,28.61982],[109.252089,28.606685],[109.306907,28.62087],[109.319842,28.579886],[109.273646,28.53836],[109.274262,28.494714],[109.260712,28.46473],[109.264407,28.392628],[109.289045,28.373673],[109.268719,28.33786],[109.275494,28.313101],[109.317994,28.277795],[109.33524,28.293605],[109.388211,28.268307],[109.367885,28.254602],[109.340168,28.19027],[109.33832,28.141731],[109.314298,28.103729],[109.298284,28.036136],[109.335856,28.063073],[109.378972,28.034551],[109.362342,28.007608],[109.319842,27.988585],[109.30198,27.956343],[109.32169,27.868027],[109.346943,27.838396],[109.332777,27.782815],[109.37774,27.736741],[109.366653,27.721909],[109.414081,27.725087],[109.470747,27.680049],[109.45658,27.673689],[109.470131,27.62863],[109.451037,27.586204],[109.461508,27.567637],[109.404841,27.55066],[109.303211,27.47582],[109.300132,27.423774],[109.245313,27.41793],[109.202197,27.450331],[109.167089,27.41793],[109.141835,27.448207],[109.142451,27.418461],[109.103647,27.336621],[109.044517,27.331304],[109.053756,27.293551],[108.983539,27.26802],[108.963213,27.235565],[108.907778,27.204699],[108.926873,27.160512],[108.878829,27.106187],[108.79075,27.084343],[108.877597,27.01612],[108.942887,27.017186],[108.942887,27.017186],[108.940423,27.044907],[109.007561,27.08008],[109.032814,27.104056],[109.128901,27.122701],[109.101183,27.06889],[109.165857,27.066758],[109.21698,27.114711],[109.239154,27.14933],[109.264407,27.131755],[109.33524,27.139212],[109.358646,27.153058],[109.415312,27.154123],[109.441182,27.117907],[109.472595,27.134951],[109.454733,27.069423],[109.486761,27.053968],[109.497848,27.079548],[109.520022,27.058764],[109.555131,26.946788],[109.436254,26.892359],[109.452885,26.861932],[109.486761,26.895562],[109.509551,26.877947],[109.513247,26.84004],[109.497232,26.815474],[109.522486,26.749226],[109.528645,26.743881],[109.554515,26.73533],[109.597015,26.756173],[109.568065,26.726243],[109.528645,26.743881],[109.52187,26.749226],[109.486761,26.759913],[109.447957,26.759913],[109.407305,26.719829],[109.35495,26.693098],[109.283501,26.698445],[109.306291,26.661012],[109.334008,26.646036],[109.35495,26.658873],[109.390675,26.598955],[109.407305,26.533116],[109.381436,26.518659],[109.385747,26.493487],[109.362342,26.472061],[109.38082,26.454381],[109.319842,26.418477],[109.29582,26.350389],[109.271183,26.327863],[109.285965,26.295676],[109.325385,26.29031],[109.351255,26.264016],[109.369733,26.277432],[109.442414,26.289774],[109.467051,26.313917],[109.439334,26.238789],[109.47629,26.148035],[109.513863,26.128157],[109.502776,26.096451],[109.449805,26.101826],[109.452885,26.055598],[109.48245,26.029788],[109.513247,25.998056],[109.560058,26.021184],[109.588391,26.019571],[109.635203,26.047533],[109.649369,26.016882],[109.730057,25.989988],[109.710963,25.954478],[109.693717,25.959321],[109.67955,25.921649],[109.685094,25.880197],[109.768246,25.890427],[109.779333,25.866196],[109.811361,25.877504],[109.826144,25.911422],[109.806434,25.973848],[109.782412,25.996981],[109.814441,26.041081],[109.864332,26.027637],[109.898825,26.095377],[109.904368,26.135679],[109.970274,26.195301],[110.03002,26.166299],[110.099005,26.168985],[110.100853,26.132455],[110.065128,26.050221],[110.100853,26.020108],[110.168606,26.028713],[110.181541,26.060437],[110.24991,26.010965],[110.257301,25.961473],[110.325671,25.975462],[110.373098,26.088927],[110.437772,26.153945],[110.477808,26.179727],[110.495054,26.166299],[110.546793,26.233421],[110.552952,26.283335],[110.584365,26.296749],[110.612083,26.333764],[110.643495,26.308552],[110.673676,26.317135],[110.721104,26.294066],[110.742046,26.313917],[110.73527,26.270993],[110.759292,26.248451],[110.836284,26.255966],[110.939762,26.286554],[110.926212,26.320354],[110.944074,26.326791],[110.94469,26.373447],[110.974255,26.385778],[111.008747,26.35897],[111.008132,26.336982],[111.090667,26.308016],[111.208928,26.30426],[111.204616,26.276359],[111.228022,26.261333],[111.277913,26.272066],[111.293311,26.222148],[111.271754,26.217316],[111.274833,26.183486],[111.258203,26.151796],[111.26621,26.095914],[111.244652,26.078177],[111.267442,26.058824],[111.235413,26.048071],[111.189834,25.953402],[111.230486,25.916267],[111.251428,25.864581],[111.29208,25.854349],[111.297007,25.874274],[111.346282,25.906577],[111.376463,25.906039],[111.383239,25.881812],[111.460231,25.885042],[111.4861,25.859196],[111.43313,25.84627],[111.442369,25.77192],[111.399869,25.744431],[111.30871,25.720171],[111.309942,25.645203],[111.343202,25.602574],[111.324724,25.564249],[111.32842,25.521592],[111.279145,25.42326],[111.210776,25.363248],[111.184906,25.367034],[111.138711,25.303748],[111.103602,25.285351],[111.112841,25.21715],[110.998892,25.161371],[110.98411,25.101772],[110.951465,25.04377],[110.968711,24.975434],[111.009363,24.921172],[111.100522,24.945593],[111.101754,25.035095],[111.139943,25.042144],[111.200921,25.074672],[111.221862,25.106649],[111.274833,25.151078],[111.321645,25.105023],[111.36784,25.108817],[111.375231,25.128324],[111.435593,25.093642],[111.416499,25.047566],[111.467622,25.02208],[111.460231,24.992793],[111.43313,24.979774],[111.434977,24.951562],[111.470086,24.92877],[111.447296,24.892947],[111.449144,24.857113],[111.479325,24.797366],[111.461463,24.728894],[111.431282,24.687574],[111.451608,24.665822],[111.499035,24.667997],[111.526752,24.637538],[111.570484,24.64461],[111.588962,24.690837],[111.641933,24.684856],[111.637621,24.715303],[111.666571,24.760961],[111.708455,24.788673],[111.783599,24.785957],[111.814396,24.770199],[111.868599,24.771829],[111.875374,24.756613],[111.929577,24.75607],[111.951135,24.769655],[112.024431,24.740308]]],[[[109.528645,26.743881],[109.522486,26.749226],[109.52187,26.749226],[109.528645,26.743881]]]]}},{"type":"Feature","properties":{"adcode":440000,"name":"广东省","center":[113.280637,23.125178],"centroid":[113.429919,23.334643],"childrenNum":21,"level":"province","parent":{"adcode":100000},"subFeatureIndex":18,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.558736,22.212244],[113.594461,22.228864],[113.595693,22.304186],[113.617866,22.315259],[113.604932,22.339617],[113.627721,22.349027],[113.669605,22.416539],[113.66591,22.438667],[113.624642,22.443092],[113.608627,22.408793],[113.573519,22.41156],[113.631417,22.475723],[113.668373,22.4807],[113.691779,22.514981],[113.740438,22.534329],[113.717033,22.645391],[113.678228,22.726007],[113.733663,22.736494],[113.758301,22.683496],[113.765692,22.665825],[113.803264,22.593463],[113.856851,22.539857],[113.869786,22.459685],[113.893807,22.442539],[113.952937,22.486783],[113.954785,22.491206],[113.976343,22.510558],[114.031778,22.503923],[114.082285,22.512216],[114.095219,22.534329],[114.156813,22.543726],[114.166052,22.559201],[114.222719,22.553122],[114.232574,22.539857],[114.294784,22.563623],[114.321885,22.587385],[114.381631,22.60175],[114.427211,22.589042],[114.472174,22.522168],[114.476486,22.459132],[114.506667,22.438667],[114.549167,22.465769],[114.611377,22.481806],[114.628623,22.513875],[114.614456,22.545384],[114.568261,22.560859],[114.559022,22.583517],[114.603369,22.638763],[114.579964,22.661407],[114.51529,22.655332],[114.567029,22.685705],[114.591666,22.690122],[114.601521,22.730975],[114.689601,22.7674],[114.709927,22.787817],[114.749963,22.764089],[114.73518,22.724351],[114.728405,22.651466],[114.743803,22.632687],[114.746267,22.581859],[114.866375,22.591805],[114.88547,22.538751],[114.922426,22.549253],[114.927969,22.621639],[114.945216,22.645391],[115.039454,22.713862],[115.02344,22.726007],[115.053621,22.747533],[115.076411,22.788368],[115.154635,22.80161],[115.190975,22.77347],[115.190359,22.818711],[115.236555,22.82533],[115.230396,22.776781],[115.319091,22.783402],[115.338185,22.776781],[115.349272,22.712206],[115.381301,22.684048],[115.430576,22.684048],[115.471844,22.697852],[115.575322,22.650914],[115.565467,22.684048],[115.609198,22.753052],[115.541445,22.755259],[115.570394,22.786713],[115.583945,22.82864],[115.654162,22.865591],[115.696046,22.84298],[115.760103,22.834707],[115.788437,22.809885],[115.796444,22.739254],[115.829089,22.734838],[115.883291,22.78561],[115.931334,22.802713],[115.965211,22.800506],[115.99724,22.826985],[116.05637,22.844635],[116.104413,22.816505],[116.14137,22.835259],[116.239304,22.921275],[116.259014,22.932298],[116.302746,22.951588],[116.382818,22.91907],[116.449955,22.936707],[116.50539,22.930645],[116.544194,22.996769],[116.576839,23.014397],[116.557129,23.056253],[116.566368,23.088738],[116.550969,23.109656],[116.566368,23.134424],[116.665534,23.158086],[116.701259,23.198248],[116.74499,23.215299],[116.806584,23.200998],[116.821367,23.240597],[116.798577,23.244996],[116.782563,23.313714],[116.871874,23.4159],[116.871258,23.416449],[116.874338,23.447199],[116.874953,23.447748],[116.895895,23.476295],[116.888504,23.501543],[116.92854,23.530079],[116.963649,23.507031],[117.01046,23.502641],[117.044953,23.539955],[117.085605,23.536663],[117.192778,23.5619],[117.192778,23.629356],[117.147199,23.654027],[117.123793,23.647448],[117.055424,23.694038],[117.048032,23.758687],[117.019083,23.801952],[117.012308,23.855054],[116.981511,23.855602],[116.955642,23.922359],[116.976583,23.931659],[116.981511,23.999471],[116.953178,24.008218],[116.930388,24.064514],[116.9347,24.126794],[116.998757,24.179217],[116.956257,24.216883],[116.933468,24.220157],[116.938395,24.28127],[116.914374,24.287817],[116.919301,24.321087],[116.895895,24.350533],[116.903903,24.369614],[116.839229,24.442097],[116.860787,24.460075],[116.83307,24.496568],[116.796729,24.502014],[116.759157,24.545572],[116.761005,24.583128],[116.815207,24.654944],[116.777635,24.679418],[116.667382,24.658752],[116.623034,24.64189],[116.600861,24.654401],[116.570679,24.621762],[116.530027,24.604895],[116.506622,24.621218],[116.517709,24.652225],[116.485064,24.720196],[116.44626,24.714216],[116.416079,24.744113],[116.419158,24.767482],[116.375427,24.803885],[116.381586,24.82507],[116.417927,24.840821],[116.395137,24.877746],[116.363724,24.87123],[116.345862,24.828872],[116.297202,24.801712],[116.244232,24.793563],[116.251007,24.82507],[116.221442,24.829959],[116.191877,24.877203],[116.153073,24.846795],[116.068073,24.850053],[116.015102,24.905975],[115.985537,24.899461],[115.907929,24.923343],[115.89253,24.936911],[115.885139,24.898918],[115.907313,24.879917],[115.861733,24.863629],[115.863581,24.891318],[115.824161,24.909232],[115.807531,24.862543],[115.790284,24.856027],[115.764415,24.791933],[115.776734,24.774546],[115.756408,24.749004],[115.769342,24.708236],[115.801371,24.705517],[115.780429,24.663103],[115.797676,24.628834],[115.840791,24.584217],[115.843871,24.562446],[115.785357,24.567345],[115.752712,24.546116],[115.68927,24.545027],[115.671408,24.604895],[115.605503,24.62557],[115.569778,24.622306],[115.555611,24.683768],[115.522967,24.702799],[115.476771,24.762591],[115.412714,24.79302],[115.372678,24.774546],[115.358511,24.735416],[115.306772,24.758787],[115.269816,24.749548],[115.258729,24.728894],[115.1842,24.711498],[115.104744,24.667997],[115.083802,24.699537],[115.057317,24.703343],[115.024672,24.669085],[115.00373,24.679418],[114.940288,24.650049],[114.909491,24.661471],[114.893477,24.582584],[114.868839,24.562446],[114.846665,24.602719],[114.827571,24.588026],[114.781376,24.613057],[114.729637,24.608704],[114.73826,24.565168],[114.704999,24.525973],[114.664963,24.583673],[114.627391,24.576598],[114.589819,24.537406],[114.534384,24.559181],[114.429058,24.48622],[114.403189,24.497657],[114.391486,24.563535],[114.363769,24.582584],[114.300943,24.578775],[114.289856,24.619042],[114.258443,24.641346],[114.19069,24.656576],[114.169132,24.689749],[114.27261,24.700624],[114.281849,24.724001],[114.336052,24.749004],[114.342211,24.807145],[114.378551,24.861457],[114.403189,24.877746],[114.395798,24.951019],[114.454928,24.977062],[114.45616,24.99659],[114.506051,24.999844],[114.532536,25.022623],[114.561485,25.077382],[114.604601,25.083886],[114.640326,25.074129],[114.664963,25.10123],[114.735796,25.121822],[114.73518,25.155954],[114.685905,25.173287],[114.693912,25.213902],[114.73518,25.225813],[114.743188,25.274528],[114.714238,25.315651],[114.63663,25.324306],[114.599674,25.385959],[114.541159,25.416773],[114.477718,25.37136],[114.438914,25.376226],[114.43029,25.343779],[114.382863,25.317274],[114.31511,25.33837],[114.2954,25.299961],[114.260291,25.291845],[114.204857,25.29942],[114.190074,25.316733],[114.115545,25.302125],[114.083517,25.275611],[114.055799,25.277775],[114.039785,25.250714],[114.017611,25.273987],[114.029314,25.328093],[114.050256,25.36433],[113.983118,25.415152],[114.003444,25.442716],[113.94493,25.441635],[113.887032,25.436772],[113.877177,25.380552],[113.839605,25.363248],[113.814967,25.328634],[113.76446,25.333502],[113.753373,25.362707],[113.686852,25.351891],[113.680076,25.334584],[113.611707,25.327552],[113.584606,25.306453],[113.579062,25.34432],[113.535946,25.368656],[113.479896,25.375145],[113.449715,25.359463],[113.407215,25.401637],[113.373338,25.402719],[113.341926,25.448661],[113.314208,25.442716],[113.311129,25.490264],[113.248919,25.514031],[113.226129,25.50971],[113.176854,25.471355],[113.11834,25.445418],[113.131274,25.414611],[113.096782,25.412449],[113.078304,25.382174],[113.013014,25.352432],[112.969898,25.350269],[112.93479,25.325929],[112.924319,25.296714],[112.891058,25.339993],[112.854718,25.337829],[112.867036,25.249632],[112.897833,25.238264],[112.958195,25.254503],[112.992688,25.247467],[113.034572,25.198199],[112.97421,25.168412],[112.96805,25.141869],[113.004391,25.089306],[112.979137,25.03401],[113.009934,24.977604],[112.994536,24.927142],[112.941565,24.915745],[112.904609,24.921715],[112.873812,24.896747],[112.780805,24.896747],[112.778341,24.947764],[112.743233,24.959701],[112.742001,24.99876],[112.714899,25.025876],[112.712436,25.083344],[112.660081,25.132658],[112.628052,25.140785],[112.562762,25.124531],[112.458053,25.152162],[112.44327,25.185744],[112.414937,25.14241],[112.365046,25.191701],[112.315771,25.175453],[112.302836,25.157037],[112.256025,25.159204],[112.246785,25.185202],[112.187039,25.182494],[112.177184,25.106649],[112.151931,25.055698],[112.155626,25.026419],[112.12175,24.989538],[112.119902,24.963499],[112.175337,24.927685],[112.167329,24.859828],[112.149467,24.837019],[112.124214,24.841364],[112.03367,24.771286],[112.024431,24.740308],[111.961606,24.721283],[111.939432,24.686487],[111.953598,24.64733],[111.927729,24.629378],[111.936968,24.595645],[111.972077,24.578775],[112.007185,24.534684],[112.009649,24.503103],[111.985011,24.467701],[112.025047,24.438828],[112.057692,24.387057],[112.05954,24.339628],[112.026279,24.294908],[111.990555,24.279634],[111.986243,24.25672],[111.958526,24.263813],[111.912946,24.221795],[111.877222,24.227252],[111.871062,24.176487],[111.886461,24.163929],[111.878454,24.109862],[111.92157,24.012045],[111.940664,23.987989],[111.911714,23.943693],[111.854432,23.947521],[111.845809,23.904305],[111.812548,23.887343],[111.824867,23.832612],[111.8107,23.80688],[111.722621,23.823305],[111.683201,23.822758],[111.683201,23.822758],[111.654868,23.833159],[111.627766,23.78881],[111.621607,23.725819],[111.666571,23.718696],[111.614832,23.65896],[111.615448,23.639225],[111.555702,23.64087],[111.487332,23.626615],[111.479941,23.532822],[111.428818,23.466414],[111.399869,23.469159],[111.383239,23.399423],[111.389398,23.375804],[111.363528,23.340641],[111.376463,23.30437],[111.353058,23.284582],[111.36476,23.240047],[111.388782,23.210349],[111.38447,23.16744],[111.365992,23.14488],[111.377695,23.082132],[111.402333,23.066165],[111.43313,23.073322],[111.433746,23.036428],[111.389398,23.005583],[111.403565,22.99126],[111.362913,22.967568],[111.374615,22.938361],[111.358601,22.889301],[111.218167,22.748085],[111.185522,22.735942],[111.118385,22.744773],[111.058023,22.729871],[111.089435,22.695643],[111.055559,22.648705],[110.997045,22.631582],[110.958856,22.636553],[110.950233,22.61059],[110.896031,22.613352],[110.897878,22.591805],[110.812263,22.576333],[110.778386,22.585174],[110.749437,22.556991],[110.762988,22.518298],[110.740198,22.498947],[110.74143,22.464109],[110.688459,22.477935],[110.712481,22.440879],[110.711249,22.369506],[110.74143,22.361757],[110.749437,22.329653],[110.787009,22.28259],[110.759292,22.274837],[110.725415,22.29588],[110.687843,22.249914],[110.646575,22.220554],[110.678604,22.172901],[110.629329,22.149068],[110.598532,22.162924],[110.602843,22.18343],[110.55788,22.196175],[110.505525,22.14297],[110.456866,22.189526],[110.414366,22.208365],[110.378026,22.164587],[110.34846,22.195621],[110.326287,22.152393],[110.364475,22.125785],[110.35154,22.097508],[110.359547,22.015973],[110.352772,21.97602],[110.374946,21.967695],[110.374946,21.967695],[110.378642,21.939942],[110.378642,21.939942],[110.391576,21.89386],[110.337374,21.887751],[110.290562,21.917736],[110.283787,21.892194],[110.224041,21.882198],[110.224041,21.882198],[110.212338,21.886085],[110.212338,21.886085],[110.196323,21.899968],[110.12857,21.902744],[110.101469,21.86998],[110.050962,21.857205],[109.999839,21.881643],[109.94502,21.84443],[109.940093,21.769419],[109.916071,21.668787],[109.888354,21.652101],[109.888354,21.652101],[109.839695,21.636525],[109.786108,21.637638],[109.778101,21.670455],[109.742992,21.616497],[109.754695,21.556396],[109.788572,21.490702],[109.785492,21.45673],[109.819369,21.445033],[109.894513,21.442248],[109.904368,21.429992],[109.868644,21.365913],[109.770709,21.359783],[109.757775,21.346963],[109.763934,21.226514],[109.674623,21.136671],[109.674007,21.067997],[109.655529,20.929435],[109.664768,20.862343],[109.711579,20.774519],[109.730057,20.719673],[109.74484,20.621124],[109.793499,20.615522],[109.813825,20.574627],[109.811977,20.541566],[109.839695,20.489439],[109.888354,20.475423],[109.895745,20.42776],[109.864948,20.40196],[109.861252,20.376717],[109.916071,20.316677],[109.909296,20.236961],[109.929006,20.211691],[109.993679,20.254368],[110.082375,20.258859],[110.118099,20.219553],[110.168606,20.219553],[110.220345,20.25156],[110.296722,20.249314],[110.349076,20.258859],[110.384185,20.293103],[110.425453,20.291419],[110.452554,20.311064],[110.491358,20.373912],[110.54125,20.42047],[110.550489,20.47262],[110.499982,20.572386],[110.487047,20.640167],[110.466105,20.680485],[110.411286,20.670966],[110.392192,20.682724],[110.407591,20.731987],[110.393424,20.816479],[110.350924,20.84165],[110.327519,20.847802],[110.269004,20.839972],[110.209874,20.860106],[110.184005,20.891979],[110.180925,20.98197],[110.204947,21.003202],[110.208642,21.050684],[110.241903,21.016051],[110.24991,21.045098],[110.296722,21.093684],[110.39096,21.124949],[110.422373,21.190807],[110.451322,21.186343],[110.501213,21.217588],[110.534474,21.204198],[110.626249,21.215915],[110.65951,21.239902],[110.713097,21.3124],[110.768531,21.364799],[110.796248,21.37483],[110.888639,21.367585],[110.929291,21.375945],[111.034617,21.438906],[111.103602,21.455616],[111.171355,21.458401],[111.28284,21.485691],[111.276065,21.443362],[111.250196,21.45116],[111.257587,21.41495],[111.28592,21.41885],[111.353058,21.464528],[111.382623,21.495714],[111.444217,21.514088],[111.494724,21.501282],[111.521825,21.517429],[111.560629,21.50518],[111.609904,21.530234],[111.650556,21.512418],[111.677658,21.529677],[111.693672,21.590345],[111.736788,21.609821],[111.794686,21.61149],[111.832258,21.578659],[111.810084,21.555283],[111.887693,21.578659],[111.941896,21.607039],[111.972692,21.603144],[112.026895,21.633744],[111.997946,21.657107],[111.954214,21.667674],[111.956062,21.710494],[112.036134,21.761637],[112.136532,21.793871],[112.192583,21.789425],[112.196894,21.736624],[112.236315,21.727173],[112.238778,21.702153],[112.353343,21.707157],[112.415553,21.734956],[112.427256,21.789981],[112.445734,21.803317],[112.497473,21.785535],[112.535661,21.753856],[112.647146,21.758302],[112.68595,21.810541],[112.792508,21.921067],[112.841167,21.920512],[112.893522,21.84443],[112.929862,21.838875],[112.989608,21.869424],[113.047507,21.956595],[113.053666,22.012089],[113.032108,22.04593],[113.045659,22.088636],[113.086927,22.12634],[113.091854,22.065344],[113.142977,22.012089],[113.1516,21.979905],[113.235368,21.887751],[113.266781,21.871646],[113.319752,21.909407],[113.330223,21.96159],[113.442324,22.009315],[113.45957,22.043711],[113.527939,22.073663],[113.567359,22.075327],[113.554425,22.107489],[113.554425,22.142416],[113.534715,22.174009],[113.53841,22.209473],[113.558736,22.212244]]],[[[117.024627,23.437865],[116.982743,23.460924],[116.944555,23.440061],[116.951946,23.419744],[117.027091,23.41535],[117.050496,23.400522],[117.081909,23.409309],[117.124409,23.389537],[117.142887,23.400522],[117.142887,23.459826],[117.129336,23.483431],[117.093612,23.459277],[117.058503,23.47355],[117.029554,23.443356],[117.024627,23.437865]]],[[[112.853486,21.740515],[112.876275,21.772753],[112.840551,21.776644],[112.782653,21.739959],[112.724138,21.719945],[112.70566,21.679354],[112.734609,21.666562],[112.780189,21.671568],[112.730914,21.613715],[112.775261,21.564189],[112.817145,21.590345],[112.798667,21.610933],[112.821457,21.655994],[112.804826,21.686583],[112.83316,21.736624],[112.853486,21.740515]]],[[[112.530733,21.583667],[112.563378,21.591458],[112.571385,21.619835],[112.621277,21.606482],[112.665624,21.642644],[112.639139,21.67268],[112.66624,21.683803],[112.663776,21.714386],[112.592327,21.693256],[112.560299,21.666562],[112.57077,21.645982],[112.535045,21.628737],[112.530733,21.583667]]],[[[114.231342,22.016528],[114.311414,22.041493],[114.302791,22.050368],[114.239965,22.03539],[114.231342,22.016528]]],[[[110.43346,21.171276],[110.489511,21.138904],[110.508605,21.140579],[110.544945,21.083633],[110.582517,21.094801],[110.632409,21.210893],[110.589293,21.194713],[110.525235,21.190249],[110.499366,21.213125],[110.445163,21.184669],[110.431612,21.180763],[110.43346,21.171276]]],[[[112.435263,21.663781],[112.456205,21.648763],[112.458669,21.68992],[112.435263,21.663781]]],[[[110.517844,21.079166],[110.459946,21.062971],[110.398352,21.096476],[110.352772,21.079724],[110.305961,21.0881],[110.27578,21.033369],[110.211106,20.986999],[110.201251,20.938378],[110.309656,20.963529],[110.347845,20.984763],[110.407591,20.990351],[110.47288,20.983087],[110.511684,20.916578],[110.535706,20.922727],[110.539402,20.987557],[110.560344,21.061295],[110.517844,21.079166]]],[[[113.765076,21.962145],[113.774315,21.998218],[113.74167,21.991559],[113.765076,21.962145]]],[[[113.723192,21.922177],[113.742902,21.950489],[113.71888,21.951599],[113.723192,21.922177]]],[[[113.142977,21.831653],[113.162071,21.853873],[113.203955,21.861093],[113.167615,21.876644],[113.136818,21.868869],[113.142977,21.831653]]],[[[113.819894,22.396068],[113.813735,22.419858],[113.786634,22.413773],[113.819894,22.396068]]],[[[114.190074,21.986564],[114.229494,21.995443],[114.180835,22.00987],[114.190074,21.986564]]],[[[114.153734,21.97491],[114.171596,22.000437],[114.124169,21.985455],[114.153734,21.97491]]],[[[116.769628,20.771721],[116.761005,20.750456],[116.87249,20.738143],[116.889736,20.683284],[116.849084,20.628405],[116.749302,20.600958],[116.796113,20.582471],[116.862635,20.588633],[116.905135,20.619443],[116.934084,20.676565],[116.925461,20.726949],[116.88604,20.775638],[116.820135,20.780674],[116.769628,20.771721]]],[[[113.025333,21.847762],[113.045659,21.882753],[113.007471,21.869424],[113.025333,21.847762]]],[[[110.405127,20.678245],[110.437772,20.677685],[110.414366,20.710157],[110.405127,20.678245]]],[[[110.644727,20.935584],[110.584365,20.948998],[110.548641,20.908752],[110.562807,20.861224],[110.611467,20.860106],[110.646575,20.917137],[110.644727,20.935584]]],[[[110.556648,20.32734],[110.593604,20.360447],[110.586213,20.381205],[110.556648,20.32734]]],[[[115.943037,21.097592],[115.953508,21.064088],[115.989233,21.035603],[116.040356,21.02052],[116.067457,21.04063],[116.044051,21.110434],[116.024341,21.12439],[115.965211,21.123832],[115.943037,21.097592]]],[[[115.926407,20.981411],[115.939342,20.945644],[115.970139,20.919373],[115.999088,20.922727],[116.000936,20.948439],[115.954124,20.99985],[115.926407,20.981411]]],[[[115.834632,22.722695],[115.834632,22.722143],[115.835248,22.722695],[115.834632,22.722695]]],[[[115.834632,22.723247],[115.834632,22.722695],[115.835248,22.722695],[115.834632,22.723247]]]]}},{"type":"Feature","properties":{"adcode":450000,"name":"广西壮族自治区","center":[108.320004,22.82402],"centroid":[108.7944,23.833381],"childrenNum":14,"level":"province","parent":{"adcode":100000},"subFeatureIndex":19,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.48245,26.029788],[109.473211,26.006663],[109.408537,25.967392],[109.435022,25.93349],[109.396834,25.900117],[109.359262,25.836036],[109.339552,25.83442],[109.327849,25.76168],[109.340168,25.731493],[109.296436,25.71424],[109.207125,25.740119],[109.206509,25.788087],[109.147995,25.741736],[109.13198,25.762758],[109.143683,25.795092],[109.095024,25.80533],[109.077778,25.776771],[109.048213,25.790781],[108.989698,25.778926],[108.999553,25.765453],[108.963829,25.732572],[108.940423,25.740119],[108.896076,25.71424],[108.900387,25.682423],[108.953974,25.686738],[108.953974,25.686738],[109.007561,25.734728],[109.043285,25.738502],[109.07901,25.72071],[109.075314,25.693749],[109.030966,25.629556],[109.051908,25.566949],[109.088249,25.550752],[109.024807,25.51241],[108.949046,25.557231],[108.8893,25.543193],[108.890532,25.556151],[108.826474,25.550212],[108.814772,25.526992],[108.781511,25.554531],[108.799989,25.576666],[108.783975,25.628477],[108.724844,25.634952],[108.68912,25.623081],[108.68604,25.587462],[108.660787,25.584763],[108.658323,25.550212],[108.68912,25.533473],[108.634917,25.520512],[108.6072,25.491885],[108.600425,25.432448],[108.62999,25.335666],[108.625062,25.308076],[108.589338,25.335125],[108.585642,25.365952],[108.471693,25.458928],[108.418723,25.443257],[108.400244,25.491344],[108.359592,25.513491],[108.348506,25.536173],[108.308469,25.525912],[108.280752,25.48],[108.241332,25.46217],[108.251803,25.430286],[108.192673,25.458928],[108.162492,25.444878],[108.193289,25.405421],[108.142782,25.390825],[108.152021,25.324306],[108.143398,25.269658],[108.115065,25.210112],[108.080572,25.193867],[108.001732,25.196574],[107.928435,25.155954],[107.872384,25.141327],[107.839124,25.115861],[107.762747,25.125073],[107.789233,25.15487],[107.760283,25.188451],[107.762131,25.229061],[107.741805,25.24043],[107.700537,25.194408],[107.696226,25.219858],[107.661733,25.258833],[107.659885,25.316192],[107.632168,25.310241],[107.599523,25.250714],[107.576734,25.256668],[107.512676,25.209029],[107.472024,25.213902],[107.489886,25.276693],[107.481263,25.299961],[107.432604,25.289139],[107.409198,25.347024],[107.420901,25.392987],[107.375937,25.411908],[107.358691,25.393528],[107.318039,25.401637],[107.308184,25.432988],[107.336517,25.461089],[107.263836,25.543193],[107.232423,25.556691],[107.228728,25.604733],[107.205322,25.607971],[107.185612,25.578825],[107.064272,25.559391],[107.066736,25.50917],[107.015613,25.495666],[106.996519,25.442716],[106.963874,25.437852],[106.987896,25.358922],[107.012533,25.352973],[107.013765,25.275611],[106.975577,25.232851],[106.933077,25.250714],[106.904128,25.231768],[106.888113,25.181953],[106.853005,25.186827],[106.787715,25.17112],[106.764926,25.183036],[106.732281,25.162454],[106.691013,25.179245],[106.644817,25.164621],[106.63989,25.132658],[106.590615,25.08768],[106.551195,25.082802],[106.519782,25.054072],[106.450181,25.033468],[106.442173,25.019369],[106.332536,24.988454],[106.304819,24.973807],[106.253696,24.971094],[106.215508,24.981944],[106.191486,24.95319],[106.145291,24.954275],[106.197645,24.885889],[106.206269,24.851139],[106.173008,24.760417],[106.150218,24.762591],[106.113878,24.714216],[106.047356,24.684312],[106.024566,24.633186],[105.961741,24.677786],[105.942031,24.725088],[105.863806,24.729437],[105.827466,24.702799],[105.767104,24.719109],[105.70551,24.768569],[105.617431,24.78161],[105.607576,24.803885],[105.573083,24.797366],[105.497322,24.809318],[105.493011,24.833217],[105.457286,24.87123],[105.428337,24.930941],[105.365511,24.943423],[105.334099,24.9266],[105.267577,24.929313],[105.251563,24.967296],[105.212758,24.995505],[105.178266,24.985199],[105.157324,24.958616],[105.131454,24.959701],[105.09573,24.92877],[105.096346,24.928228],[105.082179,24.915745],[105.077868,24.918459],[105.039064,24.872859],[105.026745,24.815836],[105.03352,24.787586],[104.899245,24.752809],[104.865985,24.730524],[104.841963,24.676155],[104.771746,24.659839],[104.729246,24.617953],[104.703377,24.645698],[104.628848,24.660927],[104.595587,24.709323],[104.529682,24.731611],[104.489646,24.653313],[104.520443,24.535228],[104.550008,24.518894],[104.575877,24.424661],[104.616529,24.421937],[104.63008,24.397958],[104.610986,24.377246],[104.641783,24.367979],[104.70892,24.321087],[104.721239,24.340173],[104.703377,24.419757],[104.715695,24.441552],[104.74834,24.435559],[104.765587,24.45953],[104.784681,24.443732],[104.83642,24.446456],[104.914028,24.426296],[104.930042,24.411038],[104.979933,24.412673],[105.042759,24.442097],[105.106817,24.414853],[105.111744,24.37234],[105.138846,24.376701],[105.188121,24.347261],[105.196744,24.326541],[105.164715,24.288362],[105.215222,24.214699],[105.24294,24.208695],[105.229389,24.165567],[105.182577,24.167205],[105.20044,24.105491],[105.260186,24.061236],[105.292831,24.074896],[105.273121,24.092927],[105.320548,24.116416],[105.334099,24.094566],[105.395692,24.065607],[105.406163,24.043748],[105.493011,24.016965],[105.533663,24.130071],[105.594641,24.137718],[105.628518,24.126794],[105.649459,24.032816],[105.704278,24.0667],[105.739387,24.059596],[105.765256,24.073804],[105.802212,24.051945],[105.796669,24.023524],[105.841633,24.03063],[105.859495,24.056864],[105.89214,24.040468],[105.908154,24.069432],[105.901995,24.099482],[105.919241,24.122425],[105.963589,24.110954],[105.998081,24.120786],[106.011632,24.099482],[106.04982,24.089649],[106.053516,24.051399],[106.096631,24.018058],[106.091088,23.998924],[106.128044,23.956819],[106.157609,23.891174],[106.192718,23.879135],[106.173008,23.861622],[106.192102,23.824947],[106.136667,23.795381],[106.157609,23.724175],[106.149602,23.665538],[106.120653,23.605229],[106.141595,23.569579],[106.08616,23.524043],[106.071994,23.495506],[106.039965,23.484529],[105.999929,23.447748],[105.986378,23.489469],[105.935871,23.508678],[105.913081,23.499348],[105.89214,23.52514],[105.852103,23.526786],[105.815763,23.507031],[105.805908,23.467512],[105.758481,23.459826],[105.699966,23.40162],[105.637757,23.404366],[105.694423,23.363168],[105.699966,23.327453],[105.649459,23.346136],[105.593409,23.312614],[105.560148,23.257093],[105.526272,23.234548],[105.542902,23.184495],[105.558916,23.177893],[105.574931,23.066165],[105.625438,23.064513],[105.648844,23.078828],[105.724604,23.06231],[105.74185,23.030921],[105.780039,23.022659],[105.805908,22.994565],[105.839169,22.987403],[105.879205,22.916865],[105.893987,22.936707],[105.959277,22.948832],[105.994385,22.93781],[106.019639,22.990709],[106.08616,22.996218],[106.106486,22.980792],[106.153914,22.988505],[106.206885,22.978588],[106.270326,22.907494],[106.258007,22.889852],[106.286957,22.867245],[106.366413,22.857871],[106.37134,22.878273],[106.41384,22.877171],[106.504383,22.91025],[106.525941,22.946628],[106.562282,22.923479],[106.606013,22.925684],[106.631267,22.88103],[106.657136,22.863385],[106.674998,22.891506],[106.716882,22.881582],[106.709491,22.866142],[106.774781,22.812643],[106.776012,22.813746],[106.778476,22.814298],[106.779092,22.813746],[106.779708,22.813195],[106.78094,22.813195],[106.784636,22.812643],[106.796338,22.812091],[106.801882,22.815401],[106.804346,22.816505],[106.808657,22.817608],[106.813585,22.817608],[106.838838,22.803265],[106.820976,22.768504],[106.768621,22.739254],[106.780324,22.708894],[106.756302,22.68957],[106.711955,22.575228],[106.650361,22.575228],[106.61402,22.602303],[106.585071,22.517192],[106.588151,22.472958],[106.560434,22.455813],[106.588767,22.374486],[106.562897,22.345706],[106.663296,22.33076],[106.670071,22.283144],[106.688549,22.260438],[106.7021,22.207257],[106.673151,22.182322],[106.706411,22.160707],[106.691629,22.13521],[106.71565,22.089745],[106.706411,22.021521],[106.683006,21.999882],[106.698404,21.959925],[106.73844,22.008205],[106.790179,22.004876],[106.802498,21.98157],[106.859164,21.986009],[106.926302,21.967695],[106.935541,21.933836],[106.974345,21.923288],[106.999598,21.947714],[107.05996,21.914959],[107.058729,21.887196],[107.018693,21.859427],[107.018077,21.81943],[107.093837,21.803317],[107.148656,21.758858],[107.194851,21.736624],[107.199163,21.718833],[107.242279,21.703265],[107.271844,21.727173],[107.310648,21.733844],[107.356843,21.667674],[107.363619,21.602031],[107.388256,21.594241],[107.431372,21.642088],[107.477567,21.659888],[107.500973,21.613715],[107.486806,21.59591],[107.547168,21.58645],[107.584741,21.614828],[107.603219,21.597579],[107.712856,21.616497],[107.807711,21.655438],[107.837892,21.640419],[107.863761,21.650988],[107.892095,21.622617],[107.893942,21.596466],[107.929051,21.585893],[107.958,21.534131],[108.034376,21.545821],[108.108289,21.508521],[108.193905,21.519656],[108.156332,21.55083],[108.205608,21.597579],[108.241332,21.599805],[108.249955,21.561406],[108.210535,21.505737],[108.230245,21.491259],[108.330027,21.540254],[108.397781,21.533017],[108.492635,21.554727],[108.591802,21.677129],[108.626294,21.67991],[108.658939,21.643757],[108.678033,21.659331],[108.735931,21.628181],[108.734084,21.626512],[108.745786,21.602587],[108.801837,21.626512],[108.83325,21.610933],[108.881293,21.627068],[108.937959,21.589789],[109.093792,21.579215],[109.09872,21.571424],[109.110422,21.568085],[109.138756,21.567528],[109.142451,21.511861],[109.074698,21.489589],[109.039589,21.457844],[109.046365,21.424421],[109.095024,21.419407],[109.138756,21.388762],[109.186183,21.390991],[109.245929,21.425536],[109.41716,21.438906],[109.484914,21.453388],[109.529877,21.437234],[109.540964,21.466199],[109.576689,21.493487],[109.604406,21.523553],[109.612413,21.556953],[109.654913,21.493487],[109.704188,21.462857],[109.785492,21.45673],[109.788572,21.490702],[109.754695,21.556396],[109.742992,21.616497],[109.778101,21.670455],[109.786108,21.637638],[109.839695,21.636525],[109.888354,21.652101],[109.888354,21.652101],[109.916071,21.668787],[109.940093,21.769419],[109.94502,21.84443],[109.999839,21.881643],[110.050962,21.857205],[110.101469,21.86998],[110.12857,21.902744],[110.196323,21.899968],[110.212338,21.886085],[110.212338,21.886085],[110.224041,21.882198],[110.224041,21.882198],[110.283787,21.892194],[110.290562,21.917736],[110.337374,21.887751],[110.391576,21.89386],[110.378642,21.939942],[110.378642,21.939942],[110.374946,21.967695],[110.374946,21.967695],[110.352772,21.97602],[110.359547,22.015973],[110.35154,22.097508],[110.364475,22.125785],[110.326287,22.152393],[110.34846,22.195621],[110.378026,22.164587],[110.414366,22.208365],[110.456866,22.189526],[110.505525,22.14297],[110.55788,22.196175],[110.602843,22.18343],[110.598532,22.162924],[110.629329,22.149068],[110.678604,22.172901],[110.646575,22.220554],[110.687843,22.249914],[110.725415,22.29588],[110.759292,22.274837],[110.787009,22.28259],[110.749437,22.329653],[110.74143,22.361757],[110.711249,22.369506],[110.712481,22.440879],[110.688459,22.477935],[110.74143,22.464109],[110.740198,22.498947],[110.762988,22.518298],[110.749437,22.556991],[110.778386,22.585174],[110.812263,22.576333],[110.897878,22.591805],[110.896031,22.613352],[110.950233,22.61059],[110.958856,22.636553],[110.997045,22.631582],[111.055559,22.648705],[111.089435,22.695643],[111.058023,22.729871],[111.118385,22.744773],[111.185522,22.735942],[111.218167,22.748085],[111.358601,22.889301],[111.374615,22.938361],[111.362913,22.967568],[111.403565,22.99126],[111.389398,23.005583],[111.433746,23.036428],[111.43313,23.073322],[111.402333,23.066165],[111.377695,23.082132],[111.365992,23.14488],[111.38447,23.16744],[111.388782,23.210349],[111.36476,23.240047],[111.353058,23.284582],[111.376463,23.30437],[111.363528,23.340641],[111.389398,23.375804],[111.383239,23.399423],[111.399869,23.469159],[111.428818,23.466414],[111.479941,23.532822],[111.487332,23.626615],[111.555702,23.64087],[111.615448,23.639225],[111.614832,23.65896],[111.666571,23.718696],[111.621607,23.725819],[111.627766,23.78881],[111.654868,23.833159],[111.683201,23.822758],[111.683201,23.822758],[111.722621,23.823305],[111.8107,23.80688],[111.824867,23.832612],[111.812548,23.887343],[111.845809,23.904305],[111.854432,23.947521],[111.911714,23.943693],[111.940664,23.987989],[111.92157,24.012045],[111.878454,24.109862],[111.886461,24.163929],[111.871062,24.176487],[111.877222,24.227252],[111.912946,24.221795],[111.958526,24.263813],[111.986243,24.25672],[111.990555,24.279634],[112.026279,24.294908],[112.05954,24.339628],[112.057692,24.387057],[112.025047,24.438828],[111.985011,24.467701],[112.009649,24.503103],[112.007185,24.534684],[111.972077,24.578775],[111.936968,24.595645],[111.927729,24.629378],[111.953598,24.64733],[111.939432,24.686487],[111.961606,24.721283],[112.024431,24.740308],[111.951135,24.769655],[111.929577,24.75607],[111.875374,24.756613],[111.868599,24.771829],[111.814396,24.770199],[111.783599,24.785957],[111.708455,24.788673],[111.666571,24.760961],[111.637621,24.715303],[111.641933,24.684856],[111.588962,24.690837],[111.570484,24.64461],[111.526752,24.637538],[111.499035,24.667997],[111.451608,24.665822],[111.431282,24.687574],[111.461463,24.728894],[111.479325,24.797366],[111.449144,24.857113],[111.447296,24.892947],[111.470086,24.92877],[111.434977,24.951562],[111.43313,24.979774],[111.460231,24.992793],[111.467622,25.02208],[111.416499,25.047566],[111.435593,25.093642],[111.375231,25.128324],[111.36784,25.108817],[111.321645,25.105023],[111.274833,25.151078],[111.221862,25.106649],[111.200921,25.074672],[111.139943,25.042144],[111.101754,25.035095],[111.100522,24.945593],[111.009363,24.921172],[110.968711,24.975434],[110.951465,25.04377],[110.98411,25.101772],[110.998892,25.161371],[111.112841,25.21715],[111.103602,25.285351],[111.138711,25.303748],[111.184906,25.367034],[111.210776,25.363248],[111.279145,25.42326],[111.32842,25.521592],[111.324724,25.564249],[111.343202,25.602574],[111.309942,25.645203],[111.30871,25.720171],[111.399869,25.744431],[111.442369,25.77192],[111.43313,25.84627],[111.4861,25.859196],[111.460231,25.885042],[111.383239,25.881812],[111.376463,25.906039],[111.346282,25.906577],[111.297007,25.874274],[111.29208,25.854349],[111.251428,25.864581],[111.230486,25.916267],[111.189834,25.953402],[111.235413,26.048071],[111.267442,26.058824],[111.244652,26.078177],[111.26621,26.095914],[111.258203,26.151796],[111.274833,26.183486],[111.271754,26.217316],[111.293311,26.222148],[111.277913,26.272066],[111.228022,26.261333],[111.204616,26.276359],[111.208928,26.30426],[111.090667,26.308016],[111.008132,26.336982],[111.008747,26.35897],[110.974255,26.385778],[110.94469,26.373447],[110.944074,26.326791],[110.926212,26.320354],[110.939762,26.286554],[110.836284,26.255966],[110.759292,26.248451],[110.73527,26.270993],[110.742046,26.313917],[110.721104,26.294066],[110.673676,26.317135],[110.643495,26.308552],[110.612083,26.333764],[110.584365,26.296749],[110.552952,26.283335],[110.546793,26.233421],[110.495054,26.166299],[110.477808,26.179727],[110.437772,26.153945],[110.373098,26.088927],[110.325671,25.975462],[110.257301,25.961473],[110.24991,26.010965],[110.181541,26.060437],[110.168606,26.028713],[110.100853,26.020108],[110.065128,26.050221],[110.100853,26.132455],[110.099005,26.168985],[110.03002,26.166299],[109.970274,26.195301],[109.904368,26.135679],[109.898825,26.095377],[109.864332,26.027637],[109.814441,26.041081],[109.782412,25.996981],[109.806434,25.973848],[109.826144,25.911422],[109.811361,25.877504],[109.779333,25.866196],[109.768246,25.890427],[109.685094,25.880197],[109.67955,25.921649],[109.693717,25.959321],[109.710963,25.954478],[109.730057,25.989988],[109.649369,26.016882],[109.635203,26.047533],[109.588391,26.019571],[109.560058,26.021184],[109.513247,25.998056],[109.48245,26.029788]]],[[[105.096346,24.928228],[105.09573,24.92877],[105.077868,24.918459],[105.082179,24.915745],[105.096346,24.928228]]],[[[109.088249,21.014934],[109.11227,21.02499],[109.117814,21.017727],[109.144299,21.041189],[109.138756,21.067439],[109.09256,21.057386],[109.088865,21.031134],[109.088249,21.014934]]]]}},{"type":"Feature","properties":{"adcode":460000,"name":"海南省","center":[110.33119,20.031971],"centroid":[109.754859,19.189767],"childrenNum":19,"level":"province","parent":{"adcode":100000},"subFeatureIndex":20,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.106396,20.026812],[110.042339,19.991384],[109.997375,19.980136],[109.965346,19.993634],[109.898825,19.994196],[109.855093,19.984073],[109.814441,19.993072],[109.76147,19.981261],[109.712195,20.017253],[109.657993,20.01163],[109.585312,19.98801],[109.526797,19.943573],[109.498464,19.873236],[109.411001,19.895184],[109.349407,19.898561],[109.300748,19.917693],[109.25948,19.898561],[109.255784,19.867045],[109.231147,19.863105],[109.159082,19.79048],[109.169553,19.736411],[109.147379,19.704863],[109.093792,19.68965],[109.048829,19.619764],[108.993394,19.587065],[108.92872,19.524468],[108.855424,19.469182],[108.806148,19.450561],[108.765496,19.400894],[108.694047,19.387346],[108.644772,19.349518],[108.609048,19.276661],[108.591186,19.141592],[108.598577,19.055633],[108.630606,19.003017],[108.637997,18.924346],[108.595497,18.872256],[108.593033,18.809386],[108.65278,18.740258],[108.663866,18.67337],[108.641077,18.565614],[108.644772,18.486738],[108.68912,18.447571],[108.776583,18.441894],[108.881293,18.416344],[108.905315,18.389087],[108.944735,18.314107],[109.006329,18.323198],[109.108575,18.323766],[109.138756,18.268081],[109.17448,18.260125],[109.287813,18.264671],[109.355566,18.215221],[109.441182,18.199303],[109.467051,18.173718],[109.527413,18.169169],[109.584696,18.143579],[109.661688,18.175424],[109.726362,18.177698],[109.749767,18.193618],[109.785492,18.339672],[109.919767,18.375457],[110.022629,18.360121],[110.070672,18.376025],[110.090382,18.399309],[110.116867,18.506602],[110.214186,18.578662],[110.246215,18.609859],[110.329366,18.642185],[110.367555,18.631977],[110.499366,18.651824],[110.499366,18.751592],[110.578206,18.784458],[110.590525,18.838841],[110.585597,18.88075],[110.619474,19.152334],[110.676756,19.286264],[110.706321,19.320153],[110.729727,19.378878],[110.787009,19.399765],[110.844292,19.449996],[110.888023,19.518827],[110.920668,19.552668],[111.008747,19.60398],[111.061718,19.612436],[111.071573,19.628784],[111.043856,19.763448],[111.013675,19.850159],[110.966248,20.018377],[110.940994,20.028499],[110.871393,20.01163],[110.808567,20.035808],[110.778386,20.068415],[110.744509,20.074036],[110.717408,20.148778],[110.687843,20.163947],[110.655814,20.134169],[110.562191,20.110006],[110.526467,20.07516],[110.495054,20.077408],[110.387265,20.113378],[110.318279,20.108882],[110.28933,20.056047],[110.243135,20.077408],[110.144585,20.074598],[110.106396,20.026812]]],[[[112.208597,3.876129],[112.241858,3.845677],[112.280046,3.86777],[112.260336,3.917925],[112.219068,3.908969],[112.208597,3.876129]]],[[[113.266165,8.125929],[113.311129,8.177469],[113.343157,8.193463],[113.288955,8.119412],[113.349933,8.172137],[113.386273,8.238479],[113.386273,8.289412],[113.354244,8.304217],[113.353628,8.237887],[113.293882,8.176284],[113.266165,8.125929]]],[[[111.99733,3.848065],[112.015192,3.823583],[112.064467,3.830152],[112.073707,3.865979],[112.03367,3.892251],[111.99733,3.848065]]],[[[111.463311,17.077491],[111.536607,17.104949],[111.4861,17.058039],[111.559397,17.087788],[111.542151,17.11982],[111.452224,17.092936],[111.463311,17.077491]]],[[[117.708319,15.182712],[117.712631,15.118592],[117.726798,15.105303],[117.827812,15.111659],[117.72495,15.131302],[117.720638,15.195418],[117.74466,15.217941],[117.784696,15.16885],[117.838899,15.15903],[117.782848,15.187333],[117.748355,15.230068],[117.715095,15.222561],[117.708319,15.182712]]],[[[112.241858,3.942404],[112.292365,3.946583],[112.288053,3.97345],[112.254177,3.97942],[112.241858,3.942404]]],[[[111.734324,16.19732],[111.779903,16.19732],[111.81686,16.224329],[111.813164,16.261676],[111.782367,16.273741],[111.716462,16.249036],[111.789758,16.250186],[111.790374,16.220307],[111.734324,16.19732]]],[[[111.649324,16.255931],[111.577875,16.208239],[111.56802,16.162834],[111.611136,16.156511],[111.690592,16.211112],[111.606825,16.177779],[111.598817,16.198469],[111.681353,16.262251],[111.649324,16.255931]]],[[[113.896887,7.607204],[113.919677,7.566865],[113.98743,7.536014],[114.058879,7.537794],[114.157429,7.561525],[114.289856,7.617288],[114.368696,7.638642],[114.407501,7.683126],[114.419819,7.765557],[114.464167,7.814771],[114.540543,7.862201],[114.555326,7.891249],[114.540543,7.945783],[114.511594,7.966527],[114.47279,7.968898],[114.414892,7.952895],[114.268298,7.870501],[114.211632,7.786904],[114.095219,7.721082],[114.029314,7.670078],[113.921524,7.639235],[113.896887,7.607204]]],[[[113.976959,8.872888],[114.013299,8.836817],[114.035473,8.783591],[114.060111,8.816119],[114.041017,8.843913],[113.989894,8.878801],[113.976959,8.872888]]],[[[113.956017,8.840365],[113.975111,8.793054],[114.012068,8.798376],[113.977575,8.841548],[113.956017,8.840365]]],[[[111.97454,16.323715],[112.002258,16.306484],[112.07617,16.323715],[112.074938,16.349558],[112.047221,16.360469],[112.002874,16.350707],[111.97454,16.323715]]],[[[111.739251,16.452898],[111.766969,16.470116],[111.786679,16.520039],[111.759577,16.545857],[111.765737,16.495366],[111.739251,16.452898]]],[[[112.216604,8.866383],[112.206133,8.88767],[112.180264,8.862244],[112.216604,8.866383]]],[[[113.792177,7.373422],[113.828518,7.362145],[113.829134,7.383511],[113.792177,7.373422]]],[[[114.194386,8.764664],[114.201161,8.727991],[114.248588,8.724442],[114.222103,8.784773],[114.194386,8.764664]]],[[[112.232619,16.996239],[112.207981,16.987081],[112.222764,16.960751],[112.292981,16.96762],[112.266496,16.993949],[112.232619,16.996239]]],[[[114.689601,10.345648],[114.702536,10.312677],[114.725941,10.319154],[114.747499,10.37214],[114.717318,10.380381],[114.689601,10.345648]]],[[[115.837712,9.709775],[115.861117,9.694438],[115.867277,9.650191],[115.901153,9.67084],[115.925791,9.781734],[115.901153,9.795888],[115.870972,9.778785],[115.837712,9.709775]]],[[[114.617536,9.965688],[114.642173,9.917351],[114.672355,9.927963],[114.685905,9.979245],[114.617536,9.965688]]],[[[113.769387,7.636862],[113.773699,7.601865],[113.814967,7.603051],[113.831597,7.644573],[113.769387,7.636862]]],[[[109.463972,7.344339],[109.463972,7.315254],[109.513247,7.320002],[109.571761,7.373422],[109.654297,7.479648],[109.709115,7.511095],[109.791651,7.524742],[109.938861,7.504569],[109.948716,7.522962],[109.904984,7.55144],[109.816289,7.572797],[109.72205,7.575763],[109.653065,7.559745],[109.536037,7.448792],[109.463972,7.344339]]],[[[116.273181,8.879392],[116.294123,8.858105],[116.332311,8.901269],[116.305826,8.917233],[116.273181,8.879392]]],[[[112.476531,16.001247],[112.570154,16.011027],[112.612037,16.039212],[112.588016,16.070844],[112.462364,16.043813],[112.448814,16.005274],[112.476531,16.001247]]],[[[112.537509,8.846278],[112.57077,8.815527],[112.639755,8.818484],[112.598487,8.859288],[112.537509,8.846278]]],[[[114.469095,10.836261],[114.475254,10.814512],[114.513442,10.848605],[114.565181,10.836261],[114.593514,10.856245],[114.587355,10.909138],[114.55471,10.900911],[114.469095,10.836261]]],[[[112.409393,16.294996],[112.383524,16.265698],[112.411241,16.2634],[112.475915,16.288677],[112.531349,16.285805],[112.536893,16.312228],[112.509176,16.317397],[112.409393,16.294996]]],[[[116.48876,10.395686],[116.461658,10.34918],[116.467202,10.309144],[116.511549,10.297957],[116.566368,10.304434],[116.644592,10.335051],[116.637817,10.365076],[116.514629,10.34918],[116.542346,10.41982],[116.526332,10.426883],[116.48876,10.395686]]],[[[112.349031,16.912088],[112.360734,16.925257],[112.334249,16.962469],[112.30222,16.963041],[112.349031,16.912088]]],[[[111.500267,16.45175],[111.49534,16.4374],[111.545847,16.43453],[111.538455,16.461507],[111.500267,16.45175]]],[[[115.500177,9.897897],[115.54822,9.869007],[115.585177,9.896128],[115.581481,9.917351],[115.518039,9.933857],[115.500177,9.897897]]],[[[114.669891,8.210048],[114.691449,8.18517],[114.74134,8.189316],[114.726557,8.21064],[114.669891,8.210048]]],[[[114.507899,8.120004],[114.530073,8.103415],[114.595978,8.120596],[114.624311,8.149626],[114.595978,8.15792],[114.507899,8.120004]]],[[[115.16757,8.386523],[115.18112,8.345668],[115.235939,8.321982],[115.285214,8.314876],[115.315395,8.356326],[115.299381,8.370537],[115.202678,8.395403],[115.16757,8.386523]]],[[[113.895039,8.00505],[113.904894,7.963564],[113.9708,7.944597],[113.969568,7.974825],[113.940003,8.018088],[113.895039,8.00505]]],[[[115.436119,9.393447],[115.450286,9.345028],[115.469996,9.3592],[115.456445,9.417064],[115.436119,9.393447]]],[[[116.457347,9.174326],[116.477057,9.137103],[116.500462,9.164282],[116.457347,9.174326]]],[[[113.638192,8.976942],[113.654823,8.962163],[113.730583,9.004133],[113.719496,9.020092],[113.644968,8.989355],[113.638192,8.976942]]],[[[114.696992,11.004322],[114.710543,11.001972],[114.793079,11.07657],[114.799854,11.10476],[114.766593,11.110045],[114.710543,11.039567],[114.696992,11.004322]]],[[[114.62,11.432264],[114.652644,11.436957],[114.661884,11.522584],[114.621232,11.518479],[114.62,11.432264]]],[[[114.910723,10.863298],[114.931049,10.841551],[114.959998,10.902087],[114.934129,10.902674],[114.910723,10.863298]]],[[[111.572948,16.470116],[111.578491,16.447158],[111.614216,16.44027],[111.592658,16.490775],[111.572948,16.470116]]],[[[113.939387,8.875253],[113.912285,8.888853],[113.893807,8.862836],[113.916597,8.837999],[113.939387,8.875253]]],[[[109.936397,7.848566],[109.936397,7.823665],[109.988136,7.8124],[110.050346,7.846194],[110.082991,7.896584],[110.078063,7.949339],[110.0331,7.944597],[109.953027,7.888878],[109.936397,7.848566]]],[[[116.727128,11.501473],[116.765316,11.430504],[116.772092,11.445755],[116.738215,11.514961],[116.727128,11.501473]]],[[[111.690592,16.587731],[111.724469,16.560198],[111.717078,16.59404],[111.690592,16.587731]]],[[[112.507328,16.466098],[112.586784,16.525777],[112.575081,16.537251],[112.499321,16.493645],[112.507328,16.466098]]],[[[111.761425,16.061642],[111.791606,16.028859],[111.828563,16.049565],[111.829795,16.070844],[111.761425,16.061642]]],[[[113.845764,10.018733],[113.865474,10.00341],[113.872249,10.123029],[113.856851,10.12185],[113.845764,10.018733]]],[[[114.791847,8.160882],[114.777064,8.114079],[114.812173,8.110524],[114.818332,8.141332],[114.791847,8.160882]]],[[[116.557129,9.745167],[116.566368,9.718623],[116.593469,9.723932],[116.557129,9.745167]]],[[[115.28275,10.191951],[115.288294,10.172513],[115.333257,10.200198],[115.28891,10.211388],[115.28275,10.191951]]],[[[116.832454,10.476908],[116.855243,10.468669],[116.868794,10.495739],[116.832454,10.476908]]],[[[114.703151,16.170307],[114.816484,16.198469],[114.802934,16.215135],[114.704383,16.199044],[114.703151,16.170307]]],[[[115.97753,9.321997],[115.926407,9.311366],[115.943037,9.269433],[115.976298,9.268252],[115.999088,9.293649],[115.97753,9.321997]]],[[[113.660366,9.231039],[113.676997,9.202683],[113.697323,9.225722],[113.660366,9.231039]]],[[[114.665579,7.590001],[114.671739,7.563898],[114.72163,7.59178],[114.703767,7.614915],[114.665579,7.590001]]],[[[114.493116,10.717504],[114.513442,10.722208],[114.562717,10.778064],[114.539312,10.793349],[114.493116,10.717504]]],[[[117.770529,10.773361],[117.798862,10.753371],[117.835819,10.803931],[117.831507,10.838612],[117.801942,10.839788],[117.775457,10.809222],[117.770529,10.773361]]],[[[114.242429,10.242014],[114.263371,10.239658],[114.326197,10.284414],[114.312646,10.300901],[114.265219,10.275581],[114.242429,10.242014]]],[[[114.688985,11.469217],[114.722246,11.429331],[114.737644,11.463938],[114.720398,11.49209],[114.688985,11.469217]]],[[[116.638433,10.503977],[116.653215,10.491031],[116.70865,10.492797],[116.699411,10.517511],[116.638433,10.503977]]],[[[110.459946,8.116449],[110.471032,8.072012],[110.554184,8.093935],[110.599764,8.156735],[110.568351,8.17273],[110.461793,8.128298],[110.459946,8.116449]]],[[[111.463311,8.52504],[111.497187,8.523857],[111.509506,8.550489],[111.463311,8.52504]]],[[[115.258113,8.509652],[115.271048,8.477098],[115.296301,8.510836],[115.258113,8.509652]]],[[[113.221817,8.073789],[113.235984,8.068456],[113.283411,8.111117],[113.269861,8.120004],[113.221817,8.073789]]],[[[114.074893,10.929118],[114.064422,10.904437],[114.110002,10.918541],[114.096451,10.947921],[114.074893,10.929118]]],[[[117.258068,10.320331],[117.299336,10.313855],[117.299952,10.343293],[117.274698,10.358011],[117.258068,10.320331]]],[[[114.212864,16.040937],[114.31203,16.034611],[114.306487,16.057616],[114.268914,16.059342],[114.212864,16.040937]]],[[[110.609003,8.010976],[110.642879,7.989049],[110.641648,8.031125],[110.622553,8.041199],[110.609003,8.010976]]],[[[115.509416,8.490712],[115.521735,8.460523],[115.55438,8.461115],[115.569162,8.49012],[115.558691,8.523265],[115.514344,8.519122],[115.509416,8.490712]]],[[[111.539071,7.54432],[111.542767,7.524742],[111.583419,7.543134],[111.612368,7.592374],[111.566788,7.606017],[111.539071,7.54432]]],[[[111.657947,8.672974],[111.665955,8.622683],[111.717694,8.6499],[111.697368,8.67889],[111.657947,8.672974]]],[[[110.460561,7.799948],[110.487663,7.783346],[110.511684,7.805878],[110.485199,7.827815],[110.460561,7.799948]]],[[[112.345952,8.926101],[112.392763,8.919598],[112.384756,8.946793],[112.345952,8.926101]]],[[[116.469665,9.810041],[116.47952,9.785272],[116.50847,9.79117],[116.490607,9.821246],[116.469665,9.810041]]],[[[111.925265,8.070827],[111.949287,8.05068],[111.994866,8.047125],[112.018888,8.065494],[112.013344,8.093342],[111.95483,8.106377],[111.925265,8.070827]]],[[[114.457392,15.599305],[114.466631,15.576823],[114.491884,15.59354],[114.457392,15.599305]]],[[[114.985252,11.078332],[115.013585,11.063062],[115.021592,11.085967],[114.985252,11.078332]]],[[[114.10569,16.004124],[114.110618,15.978235],[114.132176,16.007575],[114.10569,16.004124]]],[[[116.045283,10.095338],[116.067457,10.065876],[116.09579,10.09357],[116.070537,10.12892],[116.045283,10.095338]]],[[[117.266691,10.69163],[117.348611,10.672811],[117.404661,10.671047],[117.418212,10.702803],[117.369553,10.7422],[117.293176,10.735144],[117.266691,10.69163]]],[[[114.854057,7.244611],[114.819564,7.192957],[114.869455,7.198895],[114.854057,7.244611]]],[[[112.823305,8.910729],[112.859645,8.889444],[112.873196,8.908364],[112.823305,8.910729]]],[[[111.670266,7.651098],[111.707223,7.648725],[111.749722,7.703884],[111.726317,7.729977],[111.691208,7.711593],[111.670266,7.651098]]],[[[112.207981,8.835634],[112.235699,8.827355],[112.241242,8.852783],[112.207981,8.835634]]],[[[112.527654,5.79444],[112.531965,5.766455],[112.562762,5.75931],[112.562146,5.820637],[112.527654,5.79444]]],[[[114.599058,8.846278],[114.645869,8.844504],[114.68221,8.881166],[114.665579,8.900087],[114.61692,8.881166],[114.599058,8.846278]]],[[[114.868223,7.983715],[114.907643,7.951117],[114.914419,8.00742],[114.883006,8.011569],[114.868223,7.983715]]],[[[112.945261,8.410204],[112.985297,8.429149],[112.949572,8.432701],[112.945261,8.410204]]],[[[113.600004,6.961929],[113.580294,6.920344],[113.62341,6.942325],[113.600004,6.961929]]],[[[116.695099,16.345538],[116.708034,16.299591],[116.738831,16.303612],[116.747454,16.360469],[116.717889,16.373676],[116.695099,16.345538]]],[[[117.347995,10.090624],[117.354154,10.06293],[117.385567,10.063519],[117.373864,10.106532],[117.347995,10.090624]]],[[[112.993304,19.472003],[113.038883,19.480466],[113.048123,19.506417],[113.029028,19.52898],[112.993304,19.52616],[112.980369,19.496263],[112.993304,19.472003]]],[[[114.448153,16.034035],[114.485109,16.034611],[114.521449,16.056466],[114.465399,16.067393],[114.448153,16.034035]]],[[[113.832213,19.158552],[113.874097,19.151203],[113.914749,19.172119],[113.920293,19.223551],[113.875945,19.237113],[113.80696,19.222986],[113.799568,19.19925],[113.832213,19.158552]]],[[[112.650842,5.106941],[112.655769,5.055676],[112.682871,5.048522],[112.719211,5.075944],[112.678559,5.121247],[112.650842,5.106941]]],[[[111.638853,7.907254],[111.665339,7.887099],[111.712766,7.887099],[111.713382,7.927408],[111.651788,7.932743],[111.638853,7.907254]]],[[[112.244322,8.874662],[112.281278,8.855148],[112.288669,8.885896],[112.244322,8.874662]]],[[[112.89229,7.844416],[112.929862,7.827815],[112.93171,7.867537],[112.89229,7.844416]]],[[[112.583088,5.56159],[112.606494,5.51751],[112.614501,5.465683],[112.642834,5.489512],[112.616349,5.568737],[112.583088,5.56159]]],[[[112.523342,5.656289],[112.5449,5.616386],[112.565842,5.63068],[112.56153,5.677133],[112.528886,5.687257],[112.523342,5.656289]]],[[[115.361591,13.948985],[115.397315,13.92517],[115.438583,13.943757],[115.423185,13.977443],[115.377605,13.968732],[115.361591,13.948985]]],[[[113.596924,10.240836],[113.617866,10.22199],[113.638192,10.243192],[113.596924,10.240836]]],[[[113.860546,15.477068],[113.893807,15.463802],[113.890112,15.490909],[113.860546,15.477068]]],[[[112.907072,4.993079],[112.943413,4.991887],[112.952652,5.047926],[112.910768,5.038388],[112.907072,4.993079]]],[[[112.557219,5.109326],[112.568922,5.071771],[112.610806,5.091443],[112.601567,5.120055],[112.557219,5.109326]]],[[[112.350263,5.621747],[112.385988,5.615791],[112.385372,5.643187],[112.350263,5.621747]]],[[[112.226459,16.759147],[112.254177,16.751698],[112.262184,16.778057],[112.211061,16.795819],[112.226459,16.759147]]],[[[112.233851,15.69612],[112.25972,15.734718],[112.240626,15.741055],[112.20367,15.71398],[112.233851,15.69612]]],[[[112.612037,5.367973],[112.640371,5.347715],[112.685334,5.371548],[112.690878,5.406702],[112.62374,5.401935],[112.612037,5.367973]]],[[[112.472219,5.73966],[112.496857,5.736683],[112.498089,5.775387],[112.472219,5.73966]]],[[[113.217506,6.306249],[113.230441,6.285429],[113.243991,6.325878],[113.217506,6.306249]]],[[[116.152457,9.579384],[116.189413,9.565221],[116.187565,9.595317],[116.152457,9.579384]]],[[[114.948911,7.508722],[114.960614,7.484988],[115.012353,7.484988],[115.013585,7.525928],[114.948911,7.508722]]],[[[111.553854,7.807656],[111.585267,7.771487],[111.619759,7.840265],[111.603745,7.861608],[111.553854,7.807656]]],[[[113.938771,15.8355],[113.973263,15.805558],[113.9708,15.83953],[113.938771,15.8355]]],[[[114.926122,16.036911],[114.895325,16.036336],[114.910723,16.001823],[114.926122,16.036911]]],[[[116.749302,9.056736],[116.699411,9.049053],[116.70865,9.024229],[116.740679,9.028367],[116.749302,9.056736]]],[[[112.64653,16.385733],[112.681639,16.400661],[112.660081,16.426494],[112.64653,16.385733]]],[[[111.203384,19.92557],[111.203384,19.925007],[111.204,19.92557],[111.204,19.926132],[111.203384,19.92557]]],[[[115.758256,10.461018],[115.776118,10.434534],[115.801987,10.463372],[115.758256,10.461018]]],[[[117.21372,10.735144],[117.187235,10.741612],[117.206945,10.707507],[117.21372,10.735144]]],[[[112.671784,16.331755],[112.701349,16.331755],[112.677943,16.35932],[112.671784,16.331755]]],[[[115.782277,10.541046],[115.795212,10.499858],[115.805067,10.524571],[115.782277,10.541046]]],[[[112.512255,9.544566],[112.50856,9.525679],[112.568922,9.516826],[112.567074,9.554008],[112.512255,9.544566]]],[[[114.610145,15.649447],[114.581195,15.625242],[114.610761,15.615444],[114.610145,15.649447]]],[[[117.299336,11.077745],[117.264227,11.063062],[117.284553,11.02547],[117.304263,11.027232],[117.299336,11.077745]]],[[[117.691073,11.048965],[117.653501,11.046029],[117.655965,11.024882],[117.690457,11.016658],[117.691073,11.048965]]],[[[114.166668,9.38459],[114.175291,9.342075],[114.195617,9.350933],[114.194386,9.391676],[114.166668,9.38459]]],[[[114.714854,9.736909],[114.693296,9.741038],[114.680978,9.707416],[114.704999,9.700337],[114.714854,9.736909]]],[[[112.554139,5.97839],[112.553523,5.942676],[112.575697,5.971247],[112.554139,5.97839]]]]}},{"type":"Feature","properties":{"adcode":500000,"name":"重庆市","center":[106.504962,29.533155],"centroid":[107.8839,30.067297],"childrenNum":38,"level":"province","parent":{"adcode":100000},"subFeatureIndex":21,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.37442,28.525742],[106.403369,28.569901],[106.477282,28.530474],[106.504999,28.544669],[106.466811,28.586193],[106.49268,28.591448],[106.502535,28.661313],[106.528405,28.677591],[106.492064,28.742153],[106.461883,28.761041],[106.45326,28.817162],[106.474202,28.832891],[106.561666,28.756319],[106.56105,28.719062],[106.587535,28.691767],[106.6171,28.691242],[106.617716,28.66709],[106.651593,28.649235],[106.618332,28.645033],[106.63681,28.622972],[106.606629,28.593024],[106.615252,28.549401],[106.567825,28.523638],[106.564745,28.485247],[106.632499,28.503655],[106.697788,28.47683],[106.708259,28.450524],[106.747063,28.467361],[106.726121,28.51838],[106.73844,28.554657],[106.77786,28.563068],[106.756918,28.607211],[106.784636,28.626649],[106.807425,28.589346],[106.830831,28.623497],[106.866556,28.624548],[106.889345,28.695966],[106.86594,28.690192],[106.824056,28.756319],[106.845614,28.780975],[106.872099,28.777304],[106.923222,28.809821],[106.951555,28.766812],[106.988512,28.776254],[106.983584,28.851239],[107.019308,28.861722],[107.016229,28.882685],[107.14188,28.887925],[107.206554,28.868535],[107.194851,28.838134],[107.227496,28.836037],[107.210866,28.817686],[107.219489,28.772582],[107.24659,28.76209],[107.261373,28.792514],[107.327894,28.810869],[107.339597,28.845997],[107.383945,28.848618],[107.41351,28.911502],[107.441227,28.943977],[107.412894,28.960211],[107.396879,28.993718],[107.364235,29.00942],[107.395647,29.041341],[107.369778,29.091558],[107.412278,29.094696],[107.427676,29.128682],[107.408582,29.138091],[107.401807,29.184603],[107.441227,29.203934],[107.486806,29.174153],[107.570574,29.218037],[107.589052,29.150113],[107.605683,29.164747],[107.659885,29.162656],[107.700537,29.141228],[107.749197,29.199754],[107.810791,29.139137],[107.784921,29.048143],[107.823725,29.034016],[107.810175,28.984295],[107.867457,28.960211],[107.882855,29.00628],[107.908725,29.007327],[107.925971,29.032446],[108.026369,29.039772],[108.070717,29.086328],[108.150173,29.053375],[108.193289,29.072207],[108.256115,29.040295],[108.277673,29.091558],[108.306622,29.079006],[108.297999,29.045527],[108.319556,28.961258],[108.345426,28.943453],[108.357745,28.893165],[108.346658,28.859625],[108.352817,28.815589],[108.386078,28.803003],[108.385462,28.772058],[108.347274,28.736381],[108.332491,28.679166],[108.439049,28.634003],[108.501258,28.626649],[108.50249,28.63768],[108.575787,28.659738],[108.636149,28.621396],[108.604736,28.590922],[108.610896,28.539412],[108.573939,28.531],[108.586874,28.463678],[108.609664,28.43579],[108.609048,28.407368],[108.576403,28.38631],[108.580099,28.343128],[108.611512,28.324691],[108.667562,28.334173],[108.656475,28.359981],[108.697127,28.401051],[108.688504,28.422106],[108.640461,28.456838],[108.657091,28.47683],[108.700207,28.48209],[108.709446,28.501026],[108.746402,28.45105],[108.780279,28.42579],[108.759953,28.389995],[108.783359,28.380518],[108.761801,28.304143],[108.726692,28.282011],[108.738395,28.228241],[108.772888,28.212949],[108.821547,28.245113],[108.855424,28.199764],[108.89546,28.219804],[108.923793,28.217167],[108.929952,28.19027],[109.005713,28.162837],[109.026655,28.220331],[109.086401,28.184467],[109.101799,28.202401],[109.081473,28.247749],[109.117198,28.277795],[109.152306,28.349975],[109.153538,28.417369],[109.191726,28.471043],[109.23361,28.474726],[109.274262,28.494714],[109.273646,28.53836],[109.319842,28.579886],[109.306907,28.62087],[109.252089,28.606685],[109.235458,28.61982],[109.201581,28.597753],[109.192958,28.636104],[109.271183,28.671816],[109.252704,28.691767],[109.294588,28.722211],[109.2989,28.7474],[109.241002,28.776779],[109.246545,28.80143],[109.235458,28.882161],[109.261328,28.952356],[109.292741,28.987436],[109.294588,29.015177],[109.319842,29.042388],[109.312451,29.066453],[109.240386,29.086328],[109.232378,29.119271],[109.215748,29.145409],[109.162777,29.180946],[109.139372,29.168927],[109.110422,29.21647],[109.141835,29.270256],[109.106727,29.288526],[109.11227,29.361053],[109.060531,29.403292],[109.034662,29.360531],[108.999553,29.36366],[108.983539,29.332883],[108.919481,29.3261],[108.934264,29.399643],[108.927488,29.435612],[108.884373,29.440824],[108.866511,29.470527],[108.888684,29.502305],[108.878213,29.539279],[108.913322,29.574679],[108.901003,29.604863],[108.870206,29.596537],[108.888068,29.628795],[108.844337,29.658443],[108.781511,29.635558],[108.797525,29.660003],[108.786438,29.691721],[108.752562,29.649082],[108.690968,29.689642],[108.676801,29.749412],[108.680497,29.800319],[108.658939,29.854833],[108.601041,29.863656],[108.556077,29.818493],[108.52528,29.770713],[108.548686,29.749412],[108.504954,29.728626],[108.504338,29.707836],[108.460606,29.741098],[108.437201,29.741098],[108.442744,29.778505],[108.422418,29.772791],[108.424266,29.815897],[108.371295,29.841337],[108.433505,29.880262],[108.467998,29.864175],[108.516041,29.885451],[108.517889,29.9394],[108.536367,29.983472],[108.532055,30.051873],[108.513577,30.057571],[108.546222,30.104178],[108.56778,30.157491],[108.551766,30.1637],[108.581947,30.255759],[108.54499,30.269716],[108.524048,30.309506],[108.501258,30.314673],[108.460606,30.35961],[108.431041,30.354446],[108.402092,30.376649],[108.430425,30.416397],[108.411331,30.438586],[108.42673,30.492233],[108.472925,30.487076],[108.512961,30.501515],[108.556077,30.487592],[108.56778,30.468508],[108.6497,30.53915],[108.642925,30.578831],[108.688504,30.58759],[108.698975,30.54482],[108.743939,30.494812],[108.789518,30.513374],[108.808612,30.491202],[108.838793,30.503062],[108.893612,30.565434],[108.971836,30.627766],[109.006329,30.626736],[109.042669,30.655571],[109.071002,30.640125],[109.111654,30.646303],[109.106111,30.61077],[109.105495,30.585529],[109.102415,30.580377],[109.101183,30.579346],[109.106111,30.570587],[109.103647,30.565949],[109.143683,30.521108],[109.191726,30.545851],[109.191726,30.545851],[109.245313,30.580892],[109.299516,30.630341],[109.314298,30.599953],[109.36111,30.551004],[109.337088,30.521623],[109.35495,30.487076],[109.418392,30.559766],[109.435638,30.595832],[109.535421,30.664837],[109.543428,30.63961],[109.574225,30.646818],[109.590855,30.69366],[109.625348,30.702923],[109.661072,30.738936],[109.656761,30.760538],[109.701724,30.783677],[109.780564,30.848437],[109.828608,30.864364],[109.894513,30.899803],[109.943788,30.878746],[110.008462,30.883369],[110.019549,30.829425],[110.048498,30.800642],[110.082375,30.799614],[110.151976,30.911613],[110.153824,30.953708],[110.172918,30.978853],[110.140889,30.987062],[110.140273,31.030661],[110.120563,31.0322],[110.119947,31.088592],[110.147048,31.116776],[110.180309,31.121899],[110.200019,31.158779],[110.180309,31.179774],[110.155671,31.279564],[110.161831,31.314338],[110.118715,31.409899],[110.054042,31.410921],[110.036795,31.436966],[109.98752,31.474744],[109.94502,31.47066],[109.969658,31.508935],[109.894513,31.519139],[109.837847,31.555354],[109.727594,31.548214],[109.745456,31.598182],[109.76455,31.602769],[109.737449,31.628761],[109.731289,31.700582],[109.683246,31.719929],[109.622268,31.711783],[109.585928,31.726546],[109.549587,31.73011],[109.502776,31.716365],[109.446109,31.722983],[109.381436,31.705165],[109.281654,31.716874],[109.282885,31.743343],[109.253936,31.759628],[109.279806,31.776418],[109.27611,31.79931],[109.195422,31.817618],[109.191111,31.85575],[109.123357,31.892851],[109.085785,31.929428],[108.986619,31.980205],[108.902235,31.984774],[108.837561,32.039072],[108.78767,32.04871],[108.75133,32.076098],[108.734084,32.106519],[108.676801,32.10297],[108.585026,32.17189],[108.543758,32.177969],[108.509882,32.201266],[108.480317,32.182527],[108.399013,32.194176],[108.370063,32.172397],[108.379918,32.154158],[108.379918,32.154158],[108.379303,32.153652],[108.379303,32.153652],[108.399628,32.147065],[108.452599,32.090296],[108.42981,32.061391],[108.372527,32.077112],[108.344194,32.067477],[108.362056,32.035521],[108.329411,32.020299],[108.370063,31.988835],[108.351585,31.971575],[108.307238,31.997463],[108.259194,31.967006],[108.343578,31.860834],[108.386078,31.854226],[108.391005,31.829822],[108.429194,31.809482],[108.455063,31.814059],[108.462454,31.780488],[108.535135,31.757592],[108.50557,31.734182],[108.514809,31.693963],[108.546838,31.665442],[108.519121,31.665952],[108.468614,31.636404],[108.442744,31.633856],[108.390389,31.591555],[108.386078,31.544134],[108.339266,31.539033],[108.344194,31.512506],[108.254883,31.49873],[108.233941,31.506894],[108.191441,31.492096],[108.193289,31.467598],[108.224086,31.464024],[108.216079,31.41041],[108.153869,31.371073],[108.185898,31.336831],[108.095354,31.268311],[108.038688,31.252964],[108.031297,31.217144],[108.07626,31.231985],[108.089811,31.204859],[108.025753,31.116263],[108.009123,31.109602],[108.026985,31.061938],[108.060246,31.052197],[108.00358,31.025533],[107.983254,30.983983],[107.942602,30.989114],[107.948145,30.918802],[107.994956,30.908533],[107.956152,30.882855],[107.851443,30.792931],[107.788001,30.81966],[107.763979,30.817091],[107.760899,30.862823],[107.739957,30.884396],[107.693146,30.875665],[107.645103,30.821202],[107.57735,30.847924],[107.515756,30.854603],[107.483111,30.838675],[107.498509,30.809381],[107.454162,30.771851],[107.454162,30.771851],[107.424597,30.74048],[107.458473,30.704981],[107.477567,30.664837],[107.516987,30.644759],[107.485575,30.598408],[107.427676,30.547397],[107.443075,30.53348],[107.408582,30.521623],[107.368546,30.468508],[107.338981,30.386459],[107.288474,30.337402],[107.257677,30.267131],[107.221337,30.213878],[107.103076,30.090198],[107.080286,30.094341],[107.084598,30.063786],[107.058113,30.043066],[107.055649,30.040476],[107.054417,30.040994],[107.053801,30.043584],[107.02054,30.036849],[106.981736,30.08502],[106.976193,30.083467],[106.94478,30.037367],[106.913367,30.025451],[106.862244,30.033223],[106.83699,30.049801],[106.825904,30.03115],[106.825904,30.03115],[106.785252,30.01716],[106.732281,30.027005],[106.724274,30.058607],[106.699636,30.074145],[106.700252,30.111944],[106.672535,30.122297],[106.677462,30.156974],[106.631883,30.186464],[106.611557,30.235596],[106.612173,30.235596],[106.611557,30.235596],[106.612173,30.235596],[106.612173,30.235596],[106.612789,30.235596],[106.612789,30.235596],[106.642354,30.246454],[106.611557,30.292455],[106.560434,30.31519],[106.545035,30.296589],[106.49884,30.295556],[106.43971,30.308473],[106.428623,30.254725],[106.401521,30.242318],[106.349167,30.24542],[106.334384,30.225772],[106.306667,30.238182],[106.296196,30.205603],[106.264167,30.20974],[106.260471,30.19681],[106.232754,30.185947],[106.180399,30.233011],[106.168696,30.303823],[106.132356,30.323972],[106.132972,30.30279],[106.07261,30.333786],[106.031958,30.373551],[105.943263,30.372002],[105.900763,30.405042],[105.84656,30.410203],[105.825618,30.436006],[105.792357,30.427234],[105.760329,30.384393],[105.754785,30.342567],[105.714749,30.322939],[105.720292,30.252657],[105.720292,30.252657],[105.670401,30.254208],[105.624822,30.275918],[105.619894,30.234045],[105.662394,30.210258],[105.642684,30.186464],[105.56138,30.183878],[105.550909,30.179222],[105.536127,30.152834],[105.596489,30.159043],[105.574315,30.130579],[105.580474,30.129544],[105.582938,30.127474],[105.582938,30.12385],[105.642068,30.101072],[105.638988,30.076216],[105.676561,30.06793],[105.687032,30.038922],[105.719677,30.042548],[105.753553,30.018196],[105.723372,29.975177],[105.730763,29.95755],[105.70243,29.924879],[105.717213,29.893753],[105.738771,29.891159],[105.707974,29.840818],[105.610655,29.837184],[105.582938,29.819013],[105.574931,29.744216],[105.529351,29.707836],[105.481924,29.718232],[105.476996,29.674564],[105.419714,29.688082],[105.38091,29.628275],[105.347649,29.621512],[105.332867,29.592374],[105.296526,29.571035],[105.305149,29.53199],[105.337794,29.459064],[105.334099,29.441345],[105.387069,29.455416],[105.387069,29.455416],[105.399388,29.43874],[105.372903,29.421018],[105.426489,29.419454],[105.441888,29.400686],[105.418482,29.352185],[105.42033,29.31149],[105.465294,29.322969],[105.459134,29.288526],[105.513337,29.283306],[105.521344,29.264513],[105.557684,29.278608],[105.631597,29.280174],[105.647612,29.253027],[105.695039,29.287482],[105.712285,29.219082],[105.703662,29.176766],[105.728916,29.134432],[105.752321,29.129727],[105.728916,29.1062],[105.757865,29.069068],[105.74185,29.039249],[105.766488,29.013607],[105.762176,28.9911],[105.801596,28.958116],[105.797285,28.936121],[105.830546,28.944501],[105.852719,28.927217],[105.910002,28.920407],[105.969132,28.965971],[106.001161,28.973824],[106.040581,28.955498],[106.049204,28.906263],[106.070762,28.919884],[106.101559,28.898928],[106.14837,28.901548],[106.173008,28.920407],[106.206885,28.904691],[106.264783,28.845997],[106.245689,28.817686],[106.267863,28.779402],[106.274022,28.739004],[106.305435,28.704365],[106.304203,28.64976],[106.346703,28.583565],[106.33192,28.55308],[106.37442,28.525742]]],[[[109.105495,30.585529],[109.106111,30.61077],[109.09256,30.578831],[109.09872,30.579346],[109.101183,30.579346],[109.102415,30.580377],[109.105495,30.585529]]],[[[105.582938,30.12385],[105.582938,30.127474],[105.580474,30.129544],[105.574315,30.130579],[105.582938,30.12385]]],[[[109.09872,30.579346],[109.09256,30.578831],[109.103647,30.565949],[109.106111,30.570587],[109.09872,30.579346]]],[[[107.058113,30.043066],[107.053801,30.043584],[107.054417,30.040994],[107.055649,30.040476],[107.058113,30.043066]]]]}},{"type":"Feature","properties":{"adcode":510000,"name":"四川省","center":[104.065735,30.659462],"centroid":[102.693453,30.674545],"childrenNum":21,"level":"province","parent":{"adcode":100000},"subFeatureIndex":22,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[101.167885,27.198311],[101.170349,27.175421],[101.145095,27.103523],[101.157414,27.094999],[101.136472,27.023584],[101.228863,26.981992],[101.227015,26.959057],[101.264587,26.955323],[101.267667,26.903034],[101.311399,26.903034],[101.365602,26.883819],[101.399478,26.841642],[101.358826,26.771669],[101.387159,26.753501],[101.389623,26.723036],[101.435819,26.740675],[101.458608,26.731054],[101.445674,26.77434],[101.466,26.786629],[101.513427,26.768463],[101.453065,26.692563],[101.481398,26.673313],[101.461072,26.640687],[101.461688,26.606447],[101.402558,26.604841],[101.395783,26.591998],[101.422884,26.53151],[101.458608,26.49563],[101.506652,26.499915],[101.530057,26.467239],[101.565782,26.454381],[101.637847,26.388995],[101.635383,26.357361],[101.660636,26.346635],[101.64031,26.318745],[101.597195,26.303187],[101.586108,26.279579],[101.630455,26.224832],[101.690202,26.241473],[101.737013,26.219463],[101.773353,26.168448],[101.807846,26.156093],[101.796759,26.114723],[101.839875,26.082477],[101.835563,26.04592],[101.857737,26.049146],[101.899621,26.099139],[101.929186,26.105588],[101.954439,26.084627],[102.020961,26.096451],[102.080091,26.065275],[102.107808,26.068501],[102.152156,26.10935],[102.174946,26.146961],[102.242699,26.190468],[102.245163,26.212483],[102.349257,26.244694],[102.392372,26.296749],[102.440416,26.300505],[102.542046,26.338591],[102.570995,26.362723],[102.629509,26.336982],[102.638748,26.307479],[102.60056,26.250598],[102.659074,26.221611],[102.709581,26.210336],[102.739762,26.268846],[102.785342,26.298895],[102.833385,26.306406],[102.878964,26.364332],[102.893131,26.338591],[102.975667,26.340736],[102.998457,26.371839],[102.988602,26.413117],[102.989833,26.482775],[103.030485,26.485989],[103.052659,26.514374],[103.052659,26.555602],[103.035413,26.556673],[103.026174,26.664221],[103.005232,26.679195],[103.008312,26.710741],[102.983674,26.76686],[102.991681,26.775409],[102.966428,26.837904],[102.949181,26.843244],[102.896211,26.91264],[102.894979,27.001724],[102.870957,27.026782],[102.913457,27.133886],[102.904218,27.227584],[102.883276,27.258444],[102.883892,27.299401],[102.899906,27.317481],[102.941174,27.405711],[102.989833,27.367983],[103.055739,27.40943],[103.080992,27.396679],[103.141355,27.420586],[103.144434,27.450331],[103.19063,27.523596],[103.232514,27.56976],[103.2861,27.561802],[103.29226,27.632872],[103.349542,27.678459],[103.369868,27.708664],[103.393274,27.709194],[103.461027,27.779638],[103.487512,27.794992],[103.509686,27.843687],[103.502295,27.910343],[103.55465,27.978543],[103.515846,27.965329],[103.486281,28.033495],[103.459179,28.021345],[103.430846,28.044587],[103.470266,28.122204],[103.533092,28.168641],[103.573128,28.230877],[103.643961,28.260401],[103.692004,28.232459],[103.701859,28.198709],[103.740048,28.23615],[103.770845,28.233514],[103.828743,28.285173],[103.877402,28.316262],[103.85338,28.356822],[103.860156,28.383677],[103.828743,28.44],[103.829975,28.459995],[103.781931,28.525216],[103.802873,28.563068],[103.838598,28.587244],[103.833054,28.605109],[103.850917,28.66709],[103.887873,28.61982],[103.910047,28.631377],[103.953779,28.600906],[104.05972,28.6277],[104.09606,28.603533],[104.117618,28.634003],[104.170589,28.642932],[104.230951,28.635579],[104.252509,28.660788],[104.277147,28.631902],[104.314719,28.615617],[104.372617,28.649235],[104.425588,28.626649],[104.417581,28.598279],[104.375697,28.5946],[104.355987,28.555183],[104.323342,28.540989],[104.260516,28.536257],[104.267908,28.499448],[104.254357,28.403683],[104.282074,28.343128],[104.314103,28.306778],[104.343052,28.334173],[104.384936,28.329959],[104.392943,28.291497],[104.420045,28.269889],[104.44961,28.269889],[104.462544,28.241422],[104.442834,28.211366],[104.402182,28.202928],[104.406494,28.173389],[104.444682,28.16231],[104.448994,28.113758],[104.40095,28.091586],[104.373233,28.051454],[104.304248,28.050926],[104.30856,28.036136],[104.362762,28.012891],[104.40095,27.952114],[104.44961,27.927794],[104.508124,27.878078],[104.52537,27.889187],[104.573413,27.840512],[104.607906,27.857974],[104.63316,27.850567],[104.676275,27.880723],[104.743413,27.901881],[104.761891,27.884426],[104.796999,27.901352],[104.842579,27.900294],[104.888158,27.914574],[104.918339,27.938897],[104.903557,27.962158],[104.975006,28.020816],[104.980549,28.063073],[105.002107,28.064129],[105.061853,28.096866],[105.119752,28.07205],[105.168411,28.071522],[105.186889,28.054623],[105.167795,28.021345],[105.186273,27.995454],[105.218302,27.990698],[105.247867,28.009193],[105.270657,27.99704],[105.284823,27.935725],[105.233084,27.895534],[105.25957,27.827811],[105.313157,27.810874],[105.273736,27.794992],[105.293447,27.770637],[105.290367,27.712373],[105.308229,27.704955],[105.353809,27.748924],[105.44004,27.775402],[105.508409,27.769048],[105.560148,27.71979],[105.605112,27.715552],[105.62359,27.666269],[105.664242,27.683759],[105.720292,27.683759],[105.722756,27.706015],[105.76772,27.7182],[105.848408,27.707074],[105.868118,27.732504],[105.922937,27.746805],[105.92848,27.729855],[105.985146,27.749983],[106.023335,27.746805],[106.063987,27.776991],[106.120653,27.779638],[106.193334,27.75422],[106.242609,27.767459],[106.306667,27.808756],[106.337464,27.859033],[106.325145,27.898708],[106.304819,27.899237],[106.307899,27.936782],[106.328225,27.952643],[106.286341,28.007079],[106.246305,28.011835],[106.266631,28.066769],[106.206885,28.134343],[106.145291,28.162837],[106.093552,28.162837],[105.975907,28.107952],[105.943878,28.143314],[105.895219,28.119565],[105.860727,28.159672],[105.889676,28.237732],[105.848408,28.255656],[105.824386,28.306251],[105.78743,28.335753],[105.76464,28.308359],[105.76464,28.308359],[105.737539,28.30309],[105.730147,28.271997],[105.68888,28.284119],[105.639604,28.324164],[105.655003,28.362615],[105.643916,28.431053],[105.612503,28.438947],[105.62359,28.517854],[105.68272,28.534154],[105.693191,28.58882],[105.712901,28.586718],[105.74493,28.616668],[105.757249,28.590397],[105.78435,28.610889],[105.808372,28.599855],[105.884748,28.595126],[105.889676,28.670765],[105.937719,28.686517],[105.966668,28.761041],[106.001161,28.743727],[106.030726,28.694917],[106.085544,28.681792],[106.103407,28.636104],[106.14837,28.642932],[106.17116,28.629275],[106.184711,28.58882],[106.254928,28.539412],[106.2925,28.537309],[106.304819,28.505233],[106.349167,28.473674],[106.379348,28.479986],[106.37442,28.525742],[106.33192,28.55308],[106.346703,28.583565],[106.304203,28.64976],[106.305435,28.704365],[106.274022,28.739004],[106.267863,28.779402],[106.245689,28.817686],[106.264783,28.845997],[106.206885,28.904691],[106.173008,28.920407],[106.14837,28.901548],[106.101559,28.898928],[106.070762,28.919884],[106.049204,28.906263],[106.040581,28.955498],[106.001161,28.973824],[105.969132,28.965971],[105.910002,28.920407],[105.852719,28.927217],[105.830546,28.944501],[105.797285,28.936121],[105.801596,28.958116],[105.762176,28.9911],[105.766488,29.013607],[105.74185,29.039249],[105.757865,29.069068],[105.728916,29.1062],[105.752321,29.129727],[105.728916,29.134432],[105.703662,29.176766],[105.712285,29.219082],[105.695039,29.287482],[105.647612,29.253027],[105.631597,29.280174],[105.557684,29.278608],[105.521344,29.264513],[105.513337,29.283306],[105.459134,29.288526],[105.465294,29.322969],[105.42033,29.31149],[105.418482,29.352185],[105.441888,29.400686],[105.426489,29.419454],[105.372903,29.421018],[105.399388,29.43874],[105.387069,29.455416],[105.387069,29.455416],[105.334099,29.441345],[105.337794,29.459064],[105.305149,29.53199],[105.296526,29.571035],[105.332867,29.592374],[105.347649,29.621512],[105.38091,29.628275],[105.419714,29.688082],[105.476996,29.674564],[105.481924,29.718232],[105.529351,29.707836],[105.574931,29.744216],[105.582938,29.819013],[105.610655,29.837184],[105.707974,29.840818],[105.738771,29.891159],[105.717213,29.893753],[105.70243,29.924879],[105.730763,29.95755],[105.723372,29.975177],[105.753553,30.018196],[105.719677,30.042548],[105.687032,30.038922],[105.676561,30.06793],[105.638988,30.076216],[105.642068,30.101072],[105.582938,30.12385],[105.574315,30.130579],[105.596489,30.159043],[105.536127,30.152834],[105.550909,30.179222],[105.556453,30.187499],[105.558916,30.18543],[105.56138,30.183878],[105.642684,30.186464],[105.662394,30.210258],[105.619894,30.234045],[105.624822,30.275918],[105.670401,30.254208],[105.720292,30.252657],[105.720292,30.252657],[105.714749,30.322939],[105.754785,30.342567],[105.760329,30.384393],[105.792357,30.427234],[105.825618,30.436006],[105.84656,30.410203],[105.900763,30.405042],[105.943263,30.372002],[106.031958,30.373551],[106.07261,30.333786],[106.132972,30.30279],[106.132356,30.323972],[106.168696,30.303823],[106.180399,30.233011],[106.232754,30.185947],[106.260471,30.19681],[106.260471,30.204051],[106.260471,30.207672],[106.264167,30.20974],[106.296196,30.205603],[106.306667,30.238182],[106.334384,30.225772],[106.349167,30.24542],[106.401521,30.242318],[106.428623,30.254725],[106.43971,30.308473],[106.49884,30.295556],[106.545035,30.296589],[106.560434,30.31519],[106.611557,30.292455],[106.642354,30.246454],[106.612789,30.235596],[106.612789,30.235596],[106.612173,30.235596],[106.612173,30.235596],[106.611557,30.235596],[106.612173,30.235596],[106.611557,30.235596],[106.631883,30.186464],[106.677462,30.156974],[106.672535,30.122297],[106.700252,30.111944],[106.699636,30.074145],[106.724274,30.058607],[106.732281,30.027005],[106.785252,30.01716],[106.825904,30.03115],[106.825904,30.03115],[106.83699,30.049801],[106.862244,30.033223],[106.913367,30.025451],[106.94478,30.037367],[106.976193,30.083467],[106.975577,30.088127],[106.976809,30.088127],[106.977425,30.087609],[106.978656,30.087609],[106.979888,30.088127],[106.980504,30.087609],[106.981736,30.08502],[107.02054,30.036849],[107.053801,30.043584],[107.058113,30.043066],[107.084598,30.063786],[107.080286,30.094341],[107.103076,30.090198],[107.221337,30.213878],[107.257677,30.267131],[107.288474,30.337402],[107.338981,30.386459],[107.368546,30.468508],[107.408582,30.521623],[107.443075,30.53348],[107.427676,30.547397],[107.485575,30.598408],[107.516987,30.644759],[107.477567,30.664837],[107.458473,30.704981],[107.424597,30.74048],[107.454162,30.771851],[107.454162,30.771851],[107.498509,30.809381],[107.483111,30.838675],[107.515756,30.854603],[107.57735,30.847924],[107.645103,30.821202],[107.693146,30.875665],[107.739957,30.884396],[107.760899,30.862823],[107.763979,30.817091],[107.788001,30.81966],[107.851443,30.792931],[107.956152,30.882855],[107.994956,30.908533],[107.948145,30.918802],[107.942602,30.989114],[107.983254,30.983983],[108.00358,31.025533],[108.060246,31.052197],[108.026985,31.061938],[108.009123,31.109602],[108.025753,31.116263],[108.089811,31.204859],[108.07626,31.231985],[108.031297,31.217144],[108.038688,31.252964],[108.095354,31.268311],[108.185898,31.336831],[108.153869,31.371073],[108.216079,31.41041],[108.224086,31.464024],[108.193289,31.467598],[108.191441,31.492096],[108.233941,31.506894],[108.254883,31.49873],[108.344194,31.512506],[108.339266,31.539033],[108.386078,31.544134],[108.390389,31.591555],[108.442744,31.633856],[108.468614,31.636404],[108.519121,31.665952],[108.546838,31.665442],[108.514809,31.693963],[108.50557,31.734182],[108.535135,31.757592],[108.462454,31.780488],[108.455063,31.814059],[108.429194,31.809482],[108.391005,31.829822],[108.386078,31.854226],[108.343578,31.860834],[108.259194,31.967006],[108.307238,31.997463],[108.351585,31.971575],[108.370063,31.988835],[108.329411,32.020299],[108.362056,32.035521],[108.344194,32.067477],[108.372527,32.077112],[108.42981,32.061391],[108.452599,32.090296],[108.399628,32.147065],[108.379303,32.153652],[108.379303,32.153652],[108.379918,32.154158],[108.379918,32.154158],[108.370063,32.172397],[108.399013,32.194176],[108.480317,32.182527],[108.509882,32.201266],[108.507418,32.245819],[108.469846,32.270618],[108.414411,32.252399],[108.389773,32.263533],[108.310933,32.232152],[108.240716,32.274666],[108.179738,32.221521],[108.156948,32.239239],[108.143398,32.219495],[108.086731,32.233165],[108.018362,32.2119],[108.024521,32.177462],[107.979558,32.146051],[107.924739,32.197215],[107.890247,32.214432],[107.864377,32.201266],[107.812022,32.247844],[107.753508,32.338399],[107.707929,32.331826],[107.680827,32.397035],[107.648183,32.413709],[107.598291,32.411688],[107.527458,32.38238],[107.489886,32.425328],[107.456625,32.41775],[107.460937,32.453612],[107.438763,32.465732],[107.436299,32.529835],[107.382097,32.54043],[107.356843,32.506622],[107.313727,32.489965],[107.287858,32.457147],[107.263836,32.403099],[107.212097,32.428864],[107.189924,32.468256],[107.127098,32.482393],[107.080286,32.542448],[107.108004,32.600951],[107.098765,32.649338],[107.05996,32.686115],[107.066736,32.708779],[107.012533,32.721367],[106.912751,32.704247],[106.903512,32.721367],[106.854853,32.724388],[106.82344,32.705254],[106.793259,32.712807],[106.783404,32.735967],[106.733513,32.739491],[106.670071,32.694678],[106.626955,32.682086],[106.585687,32.68813],[106.517934,32.668485],[106.498224,32.649338],[106.451412,32.65992],[106.421231,32.616579],[106.389203,32.62666],[106.347935,32.671003],[106.301123,32.680071],[106.267863,32.673522],[106.254928,32.693671],[106.17424,32.6977],[106.120037,32.719856],[106.071378,32.758114],[106.07261,32.76365],[106.093552,32.82402],[106.071378,32.828546],[106.044277,32.864747],[106.011632,32.829552],[105.969132,32.849162],[105.93156,32.826032],[105.893371,32.838603],[105.849024,32.817985],[105.825002,32.824523],[105.822538,32.770192],[105.779423,32.750061],[105.768952,32.767676],[105.719061,32.759624],[105.677793,32.726402],[105.596489,32.69921],[105.585402,32.728919],[105.563844,32.724891],[105.555221,32.794343],[105.534279,32.790822],[105.524424,32.847654],[105.495475,32.873292],[105.49917,32.911986],[105.467757,32.930071],[105.414171,32.922034],[105.408011,32.885857],[105.38091,32.876307],[105.396308,32.85067],[105.396308,32.85067],[105.427721,32.784281],[105.454207,32.767173],[105.448663,32.732946],[105.368591,32.712807],[105.347033,32.68259],[105.297758,32.656897],[105.263265,32.652362],[105.219534,32.666469],[105.215222,32.63674],[105.185041,32.617587],[105.111128,32.593893],[105.0791,32.637244],[105.026745,32.650346],[104.925115,32.607505],[104.881999,32.600951],[104.845659,32.653873],[104.820405,32.662943],[104.795768,32.643292],[104.739717,32.635228],[104.696601,32.673522],[104.643015,32.661935],[104.592508,32.695685],[104.582653,32.722374],[104.526602,32.728416],[104.51182,32.753585],[104.458849,32.748551],[104.363994,32.822511],[104.294393,32.835586],[104.277147,32.90244],[104.288234,32.942628],[104.345516,32.940117],[104.378161,32.953174],[104.383704,32.994343],[104.426204,33.010906],[104.391711,33.035493],[104.337509,33.038002],[104.378161,33.109214],[104.351059,33.158828],[104.32827,33.223934],[104.323958,33.26898],[104.303632,33.304499],[104.333813,33.315502],[104.386168,33.298497],[104.420045,33.327004],[104.373849,33.345004],[104.292545,33.336505],[104.272219,33.391486],[104.22048,33.404477],[104.213089,33.446932],[104.180444,33.472895],[104.155191,33.542755],[104.176749,33.5996],[104.103452,33.663381],[104.046169,33.686291],[103.980264,33.670852],[103.861388,33.682307],[103.778236,33.658898],[103.690772,33.69376],[103.667983,33.685793],[103.645809,33.708697],[103.593454,33.716164],[103.563889,33.699735],[103.552186,33.671351],[103.520157,33.678323],[103.545411,33.719649],[103.518309,33.807213],[103.464723,33.80224],[103.434542,33.752993],[103.35447,33.743539],[103.278709,33.774387],[103.284868,33.80224],[103.24976,33.814175],[103.228202,33.79478],[103.165376,33.805721],[103.153673,33.819147],[103.181391,33.900649],[103.16476,33.929454],[103.1315,33.931937],[103.120413,33.953286],[103.157369,33.998944],[103.147514,34.036644],[103.119797,34.03466],[103.129652,34.065899],[103.178927,34.079779],[103.121644,34.112487],[103.124108,34.162022],[103.100087,34.181828],[103.052043,34.195194],[103.005848,34.184798],[102.973203,34.205588],[102.977515,34.252595],[102.949181,34.292159],[102.911609,34.312923],[102.85987,34.301058],[102.856791,34.270895],[102.798276,34.272874],[102.779798,34.236764],[102.728675,34.235774],[102.694799,34.198659],[102.664002,34.192719],[102.651067,34.165983],[102.598712,34.14766],[102.655994,34.113478],[102.649219,34.080275],[102.615958,34.099604],[102.511865,34.086222],[102.471213,34.072839],[102.437336,34.087214],[102.406539,34.033172],[102.392372,33.971651],[102.345561,33.969666],[102.315996,33.993983],[102.287047,33.977607],[102.248858,33.98654],[102.226069,33.963214],[102.16817,33.983066],[102.136142,33.965199],[102.25317,33.861399],[102.261177,33.821136],[102.243315,33.786823],[102.296286,33.783838],[102.324619,33.754486],[102.284583,33.719151],[102.342481,33.725622],[102.31538,33.665374],[102.346793,33.605582],[102.440416,33.574673],[102.477988,33.543254],[102.446575,33.53228],[102.461358,33.501345],[102.462589,33.449429],[102.447807,33.454922],[102.392988,33.404477],[102.368967,33.41247],[102.310452,33.397982],[102.296286,33.413969],[102.258098,33.409472],[102.218062,33.349503],[102.192192,33.337005],[102.217446,33.247961],[102.200815,33.223434],[102.160163,33.242956],[102.144765,33.273983],[102.117047,33.288492],[102.08933,33.227439],[102.08933,33.204908],[102.054838,33.189884],[101.99386,33.1999],[101.935345,33.186879],[101.921795,33.153817],[101.887302,33.135778],[101.865744,33.103198],[101.825708,33.119239],[101.841723,33.184876],[101.83002,33.213921],[101.770274,33.248962],[101.769658,33.26898],[101.877447,33.314502],[101.887302,33.383991],[101.915635,33.425957],[101.946432,33.442937],[101.906396,33.48188],[101.907012,33.539264],[101.884222,33.578163],[101.844186,33.602591],[101.831252,33.554726],[101.783208,33.556721],[101.769042,33.538765],[101.777665,33.533776],[101.769042,33.45592],[101.695745,33.433948],[101.663716,33.383991],[101.64955,33.323004],[101.677883,33.297497],[101.735781,33.279987],[101.709912,33.21292],[101.653861,33.162835],[101.661252,33.135778],[101.633535,33.101193],[101.557775,33.167344],[101.515275,33.192889],[101.487557,33.226938],[101.403174,33.225436],[101.386543,33.207412],[101.393935,33.157826],[101.381616,33.153316],[101.297232,33.262475],[101.217776,33.256469],[101.182668,33.26948],[101.156798,33.236449],[101.124769,33.221431],[101.11553,33.194893],[101.169733,33.10019],[101.143863,33.086151],[101.146327,33.056563],[101.184515,33.041514],[101.171581,33.009902],[101.183899,32.984304],[101.129081,32.989324],[101.134624,32.95217],[101.124153,32.909976],[101.178356,32.892892],[101.223935,32.855698],[101.237486,32.825026],[101.22332,32.725898],[101.157414,32.661431],[101.124769,32.658408],[101.077342,32.68259],[101.030531,32.660424],[100.99727,32.627668],[100.956618,32.621116],[100.93198,32.600447],[100.887633,32.632708],[100.834046,32.648835],[100.77122,32.643795],[100.690532,32.678056],[100.71209,32.645307],[100.710242,32.610026],[100.673286,32.628172],[100.661583,32.616075],[100.657887,32.546484],[100.645568,32.526303],[100.603069,32.553547],[100.54517,32.569687],[100.516837,32.632204],[100.470026,32.694678],[100.450932,32.694678],[100.420135,32.73194],[100.378251,32.698707],[100.399193,32.756101],[100.339447,32.719353],[100.258759,32.742511],[100.231041,32.696189],[100.229809,32.650346],[100.208252,32.606497],[100.189773,32.630692],[100.109701,32.640268],[100.088143,32.668988],[100.139266,32.724388],[100.117093,32.802392],[100.123252,32.837095],[100.064738,32.895907],[100.029629,32.895907],[100.038252,32.929066],[99.956332,32.948152],[99.947709,32.986814],[99.877492,33.045527],[99.877492,32.993339],[99.851007,32.941623],[99.805427,32.940619],[99.788181,32.956689],[99.764159,32.924545],[99.791877,32.883344],[99.766623,32.826032],[99.760464,32.769689],[99.717964,32.732443],[99.700718,32.76667],[99.646515,32.774721],[99.640355,32.790822],[99.589233,32.789312],[99.558436,32.839106],[99.45311,32.862233],[99.376118,32.899927],[99.353944,32.885354],[99.268944,32.878318],[99.24677,32.924043],[99.235067,32.982296],[99.214741,32.991332],[99.196263,33.035493],[99.124814,33.046028],[99.090322,33.079131],[99.024416,33.094675],[99.014561,33.081137],[98.971445,33.098185],[98.967134,33.115229],[98.92217,33.118738],[98.858728,33.150811],[98.804526,33.219428],[98.802062,33.270481],[98.759562,33.276985],[98.779888,33.370497],[98.736157,33.406975],[98.742316,33.477887],[98.725686,33.503341],[98.678258,33.522801],[98.648077,33.548741],[98.652389,33.595114],[98.622824,33.610067],[98.61728,33.637476],[98.6567,33.64744],[98.610505,33.682805],[98.582788,33.731595],[98.539672,33.746525],[98.51873,33.77389],[98.494092,33.768915],[98.492861,33.796272],[98.463295,33.848477],[98.434962,33.843009],[98.407245,33.867362],[98.425723,33.913066],[98.415252,33.956761],[98.440506,33.981577],[98.428187,34.029204],[98.396774,34.053008],[98.399854,34.085231],[98.344419,34.094648],[98.258188,34.083249],[98.206449,34.08424],[98.158405,34.107037],[98.098043,34.122892],[98.028442,34.122892],[97.95453,34.190739],[97.898479,34.209548],[97.8104,34.207568],[97.796849,34.199154],[97.796849,34.199154],[97.789458,34.182818],[97.789458,34.182818],[97.766668,34.158555],[97.665654,34.126855],[97.70261,34.036644],[97.652719,33.998448],[97.660111,33.956264],[97.629314,33.919523],[97.601596,33.929951],[97.52214,33.903133],[97.503662,33.912073],[97.460546,33.887236],[97.395257,33.889224],[97.398336,33.848477],[97.371851,33.842015],[97.373083,33.817655],[97.406344,33.795278],[97.422974,33.754984],[97.418046,33.728608],[97.435293,33.682307],[97.415583,33.605582],[97.450075,33.582152],[97.523372,33.577166],[97.511669,33.520805],[97.552321,33.465906],[97.625618,33.461412],[97.674893,33.432949],[97.754349,33.409972],[97.676125,33.341004],[97.622538,33.337005],[97.607756,33.263976],[97.548626,33.203907],[97.487648,33.168346],[97.498119,33.137783],[97.487032,33.107209],[97.517213,33.097683],[97.542466,33.035995],[97.499966,33.011408],[97.523988,32.988822],[97.438372,32.976271],[97.375547,32.956689],[97.347829,32.895907],[97.376163,32.886359],[97.392793,32.828546],[97.386018,32.77925],[97.429133,32.714318],[97.42359,32.70475],[97.48272,32.654377],[97.535075,32.638252],[97.543698,32.62162],[97.607756,32.614059],[97.616995,32.586329],[97.700763,32.53488],[97.730944,32.527312],[97.795617,32.521257],[97.80732,32.50006],[97.863986,32.499051],[97.880001,32.486431],[97.940363,32.482393],[98.079565,32.415224],[98.107283,32.391476],[98.125145,32.401077],[98.218768,32.342444],[98.208913,32.318171],[98.23047,32.262521],[98.218768,32.234683],[98.260035,32.208862],[98.303151,32.121726],[98.357354,32.087253],[98.404781,32.045159],[98.402933,32.026896],[98.434962,32.007613],[98.432498,31.922825],[98.399238,31.895899],[98.426339,31.856767],[98.414636,31.832365],[98.461448,31.800327],[98.508875,31.751995],[98.516882,31.717383],[98.545831,31.717383],[98.553839,31.660349],[98.619128,31.591555],[98.651157,31.57881],[98.696736,31.538523],[98.714599,31.508935],[98.844562,31.429817],[98.84333,31.416028],[98.887062,31.37465],[98.810685,31.306668],[98.805758,31.279052],[98.773113,31.249382],[98.691809,31.333253],[98.643766,31.338876],[98.616048,31.3036],[98.60373,31.257568],[98.62344,31.221238],[98.602498,31.192062],[98.675179,31.15417],[98.710287,31.1178],[98.712135,31.082954],[98.736772,31.049121],[98.774961,31.031174],[98.806374,30.995783],[98.797135,30.948575],[98.774345,30.908019],[98.797135,30.87926],[98.850105,30.849465],[98.904924,30.782649],[98.957895,30.765166],[98.963438,30.728134],[98.907388,30.698292],[98.92217,30.609225],[98.939417,30.598923],[98.926482,30.569556],[98.932025,30.521623],[98.965286,30.449937],[98.967134,30.33482],[98.986844,30.280569],[98.970829,30.260928],[98.993003,30.215429],[98.9813,30.182843],[98.989308,30.151799],[99.044742,30.079842],[99.036735,30.053945],[99.055213,29.958587],[99.068148,29.931621],[99.0238,29.846009],[99.018873,29.792009],[98.992387,29.677163],[99.014561,29.607464],[99.052133,29.563748],[99.044742,29.520013],[99.066916,29.421018],[99.058909,29.417368],[99.075539,29.316186],[99.114343,29.243628],[99.113727,29.221171],[99.105104,29.162656],[99.118039,29.100971],[99.113727,29.07273],[99.132206,28.94869],[99.123582,28.890021],[99.103872,28.841803],[99.114343,28.765763],[99.134053,28.734806],[99.126662,28.698066],[99.147604,28.640831],[99.183944,28.58882],[99.170394,28.566221],[99.191952,28.494714],[99.187024,28.44],[99.16485,28.425264],[99.200575,28.365774],[99.229524,28.350502],[99.237531,28.317842],[99.28927,28.286227],[99.306516,28.227714],[99.374886,28.18183],[99.412458,28.295186],[99.392748,28.318369],[99.437095,28.398419],[99.404451,28.44421],[99.426625,28.454207],[99.396444,28.491032],[99.403219,28.546246],[99.463581,28.549401],[99.466045,28.579886],[99.504233,28.619294],[99.540573,28.623497],[99.53195,28.677591],[99.553508,28.710664],[99.614486,28.740054],[99.609559,28.784122],[99.625573,28.81454],[99.676696,28.810345],[99.717964,28.846521],[99.722275,28.757369],[99.755536,28.701216],[99.79434,28.699116],[99.834992,28.660788],[99.834376,28.628225],[99.873181,28.631902],[99.875644,28.611939],[99.91876,28.599329],[99.985281,28.529422],[99.990209,28.47683],[100.073977,28.426317],[100.057346,28.368934],[100.136803,28.349975],[100.176223,28.325218],[100.147274,28.288862],[100.188541,28.252493],[100.153433,28.208202],[100.102926,28.201873],[100.091223,28.181302],[100.062274,28.193962],[100.033325,28.184467],[100.021006,28.147008],[100.05673,28.097922],[100.088759,28.029269],[100.120788,28.018703],[100.196549,27.936254],[100.170063,27.907699],[100.210715,27.87702],[100.30865,27.861149],[100.30865,27.830457],[100.28586,27.80611],[100.304954,27.788639],[100.311729,27.724028],[100.327744,27.72032],[100.350534,27.755809],[100.412127,27.816167],[100.442924,27.86644],[100.504518,27.852154],[100.511294,27.827811],[100.54517,27.809286],[100.609228,27.859033],[100.634482,27.915631],[100.681293,27.923035],[100.719481,27.858503],[100.707162,27.800816],[100.757053,27.770107],[100.775532,27.743098],[100.782307,27.691708],[100.848212,27.672099],[100.827886,27.615904],[100.854988,27.623858],[100.91227,27.521473],[100.901183,27.453517],[100.936908,27.469448],[100.95169,27.426961],[101.021907,27.332899],[101.026219,27.270679],[101.042233,27.22173],[101.071798,27.194585],[101.119226,27.208957],[101.167885,27.198311],[101.167885,27.198311]]],[[[106.264167,30.20974],[106.260471,30.207672],[106.260471,30.204051],[106.260471,30.19681],[106.264167,30.20974]]],[[[106.976809,30.088127],[106.975577,30.088127],[106.976193,30.083467],[106.981736,30.08502],[106.980504,30.087609],[106.979888,30.088127],[106.978656,30.087609],[106.977425,30.087609],[106.976809,30.088127]]],[[[105.558916,30.18543],[105.556453,30.187499],[105.550909,30.179222],[105.56138,30.183878],[105.558916,30.18543]]]]}},{"type":"Feature","properties":{"adcode":520000,"name":"贵州省","center":[106.713478,26.578343],"centroid":[106.880455,26.826368],"childrenNum":9,"level":"province","parent":{"adcode":100000},"subFeatureIndex":23,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[109.274262,28.494714],[109.23361,28.474726],[109.191726,28.471043],[109.153538,28.417369],[109.152306,28.349975],[109.117198,28.277795],[109.081473,28.247749],[109.101799,28.202401],[109.086401,28.184467],[109.026655,28.220331],[109.005713,28.162837],[108.929952,28.19027],[108.923793,28.217167],[108.89546,28.219804],[108.855424,28.199764],[108.821547,28.245113],[108.772888,28.212949],[108.738395,28.228241],[108.726692,28.282011],[108.761801,28.304143],[108.783359,28.380518],[108.759953,28.389995],[108.780279,28.42579],[108.746402,28.45105],[108.709446,28.501026],[108.700207,28.48209],[108.657091,28.47683],[108.640461,28.456838],[108.688504,28.422106],[108.697127,28.401051],[108.656475,28.359981],[108.667562,28.334173],[108.611512,28.324691],[108.580099,28.343128],[108.576403,28.38631],[108.609048,28.407368],[108.609664,28.43579],[108.586874,28.463678],[108.573939,28.531],[108.610896,28.539412],[108.604736,28.590922],[108.636149,28.621396],[108.575787,28.659738],[108.50249,28.63768],[108.501258,28.626649],[108.439049,28.634003],[108.332491,28.679166],[108.347274,28.736381],[108.385462,28.772058],[108.386078,28.803003],[108.352817,28.815589],[108.346658,28.859625],[108.357745,28.893165],[108.345426,28.943453],[108.319556,28.961258],[108.297999,29.045527],[108.306622,29.079006],[108.277673,29.091558],[108.256115,29.040295],[108.193289,29.072207],[108.150173,29.053375],[108.070717,29.086328],[108.026369,29.039772],[107.925971,29.032446],[107.908725,29.007327],[107.882855,29.00628],[107.867457,28.960211],[107.810175,28.984295],[107.823725,29.034016],[107.784921,29.048143],[107.810791,29.139137],[107.749197,29.199754],[107.700537,29.141228],[107.659885,29.162656],[107.605683,29.164747],[107.589052,29.150113],[107.570574,29.218037],[107.486806,29.174153],[107.441227,29.203934],[107.401807,29.184603],[107.408582,29.138091],[107.427676,29.128682],[107.412278,29.094696],[107.369778,29.091558],[107.395647,29.041341],[107.364235,29.00942],[107.396879,28.993718],[107.412894,28.960211],[107.441227,28.943977],[107.41351,28.911502],[107.383945,28.848618],[107.339597,28.845997],[107.327894,28.810869],[107.261373,28.792514],[107.24659,28.76209],[107.219489,28.772582],[107.210866,28.817686],[107.227496,28.836037],[107.194851,28.838134],[107.206554,28.868535],[107.14188,28.887925],[107.016229,28.882685],[107.019308,28.861722],[106.983584,28.851239],[106.988512,28.776254],[106.951555,28.766812],[106.923222,28.809821],[106.872099,28.777304],[106.845614,28.780975],[106.824056,28.756319],[106.86594,28.690192],[106.889345,28.695966],[106.866556,28.624548],[106.830831,28.623497],[106.807425,28.589346],[106.784636,28.626649],[106.756918,28.607211],[106.77786,28.563068],[106.73844,28.554657],[106.726121,28.51838],[106.747063,28.467361],[106.708259,28.450524],[106.697788,28.47683],[106.632499,28.503655],[106.564745,28.485247],[106.567825,28.523638],[106.615252,28.549401],[106.606629,28.593024],[106.63681,28.622972],[106.618332,28.645033],[106.651593,28.649235],[106.617716,28.66709],[106.6171,28.691242],[106.587535,28.691767],[106.56105,28.719062],[106.561666,28.756319],[106.474202,28.832891],[106.45326,28.817162],[106.461883,28.761041],[106.492064,28.742153],[106.528405,28.677591],[106.502535,28.661313],[106.49268,28.591448],[106.466811,28.586193],[106.504999,28.544669],[106.477282,28.530474],[106.403369,28.569901],[106.37442,28.525742],[106.379348,28.479986],[106.349167,28.473674],[106.304819,28.505233],[106.2925,28.537309],[106.254928,28.539412],[106.184711,28.58882],[106.17116,28.629275],[106.14837,28.642932],[106.103407,28.636104],[106.085544,28.681792],[106.030726,28.694917],[106.001161,28.743727],[105.966668,28.761041],[105.937719,28.686517],[105.889676,28.670765],[105.884748,28.595126],[105.808372,28.599855],[105.78435,28.610889],[105.757249,28.590397],[105.74493,28.616668],[105.712901,28.586718],[105.693191,28.58882],[105.68272,28.534154],[105.62359,28.517854],[105.612503,28.438947],[105.643916,28.431053],[105.655003,28.362615],[105.639604,28.324164],[105.68888,28.284119],[105.730147,28.271997],[105.737539,28.30309],[105.76464,28.308359],[105.76464,28.308359],[105.78743,28.335753],[105.824386,28.306251],[105.848408,28.255656],[105.889676,28.237732],[105.860727,28.159672],[105.895219,28.119565],[105.943878,28.143314],[105.975907,28.107952],[106.093552,28.162837],[106.145291,28.162837],[106.206885,28.134343],[106.266631,28.066769],[106.246305,28.011835],[106.286341,28.007079],[106.328225,27.952643],[106.307899,27.936782],[106.304819,27.899237],[106.325145,27.898708],[106.337464,27.859033],[106.306667,27.808756],[106.242609,27.767459],[106.193334,27.75422],[106.120653,27.779638],[106.063987,27.776991],[106.023335,27.746805],[105.985146,27.749983],[105.92848,27.729855],[105.922937,27.746805],[105.868118,27.732504],[105.848408,27.707074],[105.76772,27.7182],[105.722756,27.706015],[105.720292,27.683759],[105.664242,27.683759],[105.62359,27.666269],[105.605112,27.715552],[105.560148,27.71979],[105.508409,27.769048],[105.44004,27.775402],[105.353809,27.748924],[105.308229,27.704955],[105.29591,27.631811],[105.304533,27.611661],[105.25649,27.582491],[105.232469,27.546945],[105.260186,27.514573],[105.234316,27.489093],[105.233084,27.436522],[105.182577,27.367451],[105.184425,27.392959],[105.120984,27.418461],[105.068013,27.418461],[105.01073,27.379143],[104.913412,27.327051],[104.871528,27.290891],[104.851818,27.299401],[104.856746,27.332368],[104.824717,27.3531],[104.77113,27.317481],[104.7545,27.345658],[104.611602,27.306846],[104.570334,27.331836],[104.539537,27.327583],[104.497037,27.414743],[104.467472,27.414211],[104.363378,27.467855],[104.30856,27.407305],[104.295625,27.37436],[104.247582,27.336621],[104.248813,27.291955],[104.210625,27.297273],[104.173053,27.263232],[104.113923,27.338216],[104.084358,27.330773],[104.01722,27.383926],[104.015372,27.429086],[103.956242,27.425367],[103.932221,27.443958],[103.905119,27.38552],[103.903271,27.347785],[103.874322,27.331304],[103.865699,27.28185],[103.80041,27.26536],[103.801641,27.250464],[103.748671,27.210021],[103.696316,27.126429],[103.63349,27.12057],[103.620555,27.096598],[103.652584,27.092868],[103.659975,27.065692],[103.614396,27.079548],[103.601461,27.061962],[103.623635,27.035312],[103.623019,27.007056],[103.675374,27.051836],[103.704939,27.049171],[103.73204,27.018785],[103.753598,26.963858],[103.775156,26.951056],[103.763453,26.905702],[103.779468,26.87421],[103.722185,26.851253],[103.705555,26.794642],[103.725265,26.742812],[103.773308,26.716621],[103.759142,26.689355],[103.748671,26.623568],[103.763453,26.585041],[103.815808,26.55239],[103.819504,26.529903],[103.865699,26.512232],[103.953163,26.521336],[104.008597,26.511697],[104.067727,26.51491],[104.068343,26.573266],[104.121314,26.638012],[104.160734,26.646571],[104.222328,26.620358],[104.268524,26.617683],[104.274683,26.633733],[104.313487,26.612867],[104.353523,26.620893],[104.398487,26.686147],[104.424356,26.709137],[104.468088,26.644431],[104.459465,26.602701],[104.488414,26.579689],[104.556783,26.590393],[104.579573,26.568449],[104.57095,26.524549],[104.598667,26.520801],[104.638703,26.477954],[104.631928,26.451702],[104.665804,26.434019],[104.664572,26.397572],[104.684283,26.3772],[104.659645,26.335373],[104.592508,26.317672],[104.542616,26.253282],[104.548776,26.226979],[104.518595,26.165762],[104.52845,26.114186],[104.499501,26.070651],[104.460081,26.085702],[104.470552,26.009352],[104.438523,25.92757],[104.414501,25.909807],[104.441602,25.868889],[104.42374,25.841961],[104.397871,25.76168],[104.370769,25.730415],[104.328886,25.760602],[104.310407,25.647901],[104.332581,25.598796],[104.389248,25.595558],[104.428668,25.576126],[104.436059,25.520512],[104.418813,25.499447],[104.434827,25.472436],[104.44961,25.495126],[104.483486,25.494585],[104.524138,25.526992],[104.556783,25.524832],[104.543232,25.400556],[104.566638,25.402719],[104.615913,25.364871],[104.646094,25.356759],[104.639935,25.295632],[104.689826,25.296173],[104.736021,25.268034],[104.816094,25.262622],[104.826565,25.235558],[104.806854,25.224189],[104.822869,25.170037],[104.801927,25.163537],[104.753884,25.214443],[104.724319,25.195491],[104.732326,25.167871],[104.695369,25.122364],[104.685514,25.078466],[104.619609,25.060577],[104.684898,25.054072],[104.713232,24.996048],[104.663957,24.964584],[104.635623,24.903803],[104.586964,24.872859],[104.539537,24.813663],[104.542616,24.75607],[104.529682,24.731611],[104.595587,24.709323],[104.628848,24.660927],[104.703377,24.645698],[104.729246,24.617953],[104.771746,24.659839],[104.841963,24.676155],[104.865985,24.730524],[104.899245,24.752809],[105.03352,24.787586],[105.026745,24.815836],[105.039064,24.872859],[105.077868,24.918459],[105.09573,24.92877],[105.131454,24.959701],[105.157324,24.958616],[105.178266,24.985199],[105.212758,24.995505],[105.251563,24.967296],[105.267577,24.929313],[105.334099,24.9266],[105.365511,24.943423],[105.428337,24.930941],[105.457286,24.87123],[105.493011,24.833217],[105.497322,24.809318],[105.573083,24.797366],[105.607576,24.803885],[105.617431,24.78161],[105.70551,24.768569],[105.767104,24.719109],[105.827466,24.702799],[105.863806,24.729437],[105.942031,24.725088],[105.961741,24.677786],[106.024566,24.633186],[106.047356,24.684312],[106.113878,24.714216],[106.150218,24.762591],[106.173008,24.760417],[106.206269,24.851139],[106.197645,24.885889],[106.145291,24.954275],[106.191486,24.95319],[106.215508,24.981944],[106.253696,24.971094],[106.304819,24.973807],[106.332536,24.988454],[106.442173,25.019369],[106.450181,25.033468],[106.519782,25.054072],[106.551195,25.082802],[106.590615,25.08768],[106.63989,25.132658],[106.644817,25.164621],[106.691013,25.179245],[106.732281,25.162454],[106.764926,25.183036],[106.787715,25.17112],[106.853005,25.186827],[106.888113,25.181953],[106.904128,25.231768],[106.933077,25.250714],[106.975577,25.232851],[107.013765,25.275611],[107.012533,25.352973],[106.987896,25.358922],[106.963874,25.437852],[106.996519,25.442716],[107.015613,25.495666],[107.066736,25.50917],[107.064272,25.559391],[107.185612,25.578825],[107.205322,25.607971],[107.228728,25.604733],[107.232423,25.556691],[107.263836,25.543193],[107.336517,25.461089],[107.308184,25.432988],[107.318039,25.401637],[107.358691,25.393528],[107.375937,25.411908],[107.420901,25.392987],[107.409198,25.347024],[107.432604,25.289139],[107.481263,25.299961],[107.489886,25.276693],[107.472024,25.213902],[107.512676,25.209029],[107.576734,25.256668],[107.599523,25.250714],[107.632168,25.310241],[107.659885,25.316192],[107.661733,25.258833],[107.696226,25.219858],[107.700537,25.194408],[107.741805,25.24043],[107.762131,25.229061],[107.760283,25.188451],[107.789233,25.15487],[107.762747,25.125073],[107.839124,25.115861],[107.872384,25.141327],[107.928435,25.155954],[108.001732,25.196574],[108.080572,25.193867],[108.115065,25.210112],[108.143398,25.269658],[108.152021,25.324306],[108.142782,25.390825],[108.193289,25.405421],[108.162492,25.444878],[108.192673,25.458928],[108.251803,25.430286],[108.241332,25.46217],[108.280752,25.48],[108.308469,25.525912],[108.348506,25.536173],[108.359592,25.513491],[108.400244,25.491344],[108.418723,25.443257],[108.471693,25.458928],[108.585642,25.365952],[108.589338,25.335125],[108.625062,25.308076],[108.62999,25.335666],[108.600425,25.432448],[108.6072,25.491885],[108.634917,25.520512],[108.68912,25.533473],[108.658323,25.550212],[108.660787,25.584763],[108.68604,25.587462],[108.68912,25.623081],[108.724844,25.634952],[108.783975,25.628477],[108.799989,25.576666],[108.781511,25.554531],[108.814772,25.526992],[108.826474,25.550212],[108.890532,25.556151],[108.8893,25.543193],[108.949046,25.557231],[109.024807,25.51241],[109.088249,25.550752],[109.051908,25.566949],[109.030966,25.629556],[109.075314,25.693749],[109.07901,25.72071],[109.043285,25.738502],[109.007561,25.734728],[108.953974,25.686738],[108.953974,25.686738],[108.900387,25.682423],[108.896076,25.71424],[108.940423,25.740119],[108.963829,25.732572],[108.999553,25.765453],[108.989698,25.778926],[109.048213,25.790781],[109.077778,25.776771],[109.095024,25.80533],[109.143683,25.795092],[109.13198,25.762758],[109.147995,25.741736],[109.206509,25.788087],[109.207125,25.740119],[109.296436,25.71424],[109.340168,25.731493],[109.327849,25.76168],[109.339552,25.83442],[109.359262,25.836036],[109.396834,25.900117],[109.435022,25.93349],[109.408537,25.967392],[109.473211,26.006663],[109.48245,26.029788],[109.452885,26.055598],[109.449805,26.101826],[109.502776,26.096451],[109.513863,26.128157],[109.47629,26.148035],[109.439334,26.238789],[109.467051,26.313917],[109.442414,26.289774],[109.369733,26.277432],[109.351255,26.264016],[109.325385,26.29031],[109.285965,26.295676],[109.271183,26.327863],[109.29582,26.350389],[109.319842,26.418477],[109.38082,26.454381],[109.362342,26.472061],[109.385747,26.493487],[109.381436,26.518659],[109.407305,26.533116],[109.390675,26.598955],[109.35495,26.658873],[109.334008,26.646036],[109.306291,26.661012],[109.283501,26.698445],[109.35495,26.693098],[109.407305,26.719829],[109.447957,26.759913],[109.486761,26.759913],[109.47629,26.829894],[109.467051,26.83203],[109.452885,26.861932],[109.436254,26.892359],[109.555131,26.946788],[109.520022,27.058764],[109.497848,27.079548],[109.486761,27.053968],[109.454733,27.069423],[109.472595,27.134951],[109.441182,27.117907],[109.415312,27.154123],[109.358646,27.153058],[109.33524,27.139212],[109.264407,27.131755],[109.239154,27.14933],[109.21698,27.114711],[109.165857,27.066758],[109.101183,27.06889],[109.128901,27.122701],[109.032814,27.104056],[109.007561,27.08008],[108.940423,27.044907],[108.942887,27.017186],[108.942887,27.017186],[108.877597,27.01612],[108.79075,27.084343],[108.878829,27.106187],[108.926873,27.160512],[108.907778,27.204699],[108.963213,27.235565],[108.983539,27.26802],[109.053756,27.293551],[109.044517,27.331304],[109.103647,27.336621],[109.142451,27.418461],[109.141835,27.448207],[109.167089,27.41793],[109.202197,27.450331],[109.245313,27.41793],[109.300132,27.423774],[109.303211,27.47582],[109.404841,27.55066],[109.461508,27.567637],[109.451037,27.586204],[109.470131,27.62863],[109.45658,27.673689],[109.470747,27.680049],[109.414081,27.725087],[109.366653,27.721909],[109.37774,27.736741],[109.332777,27.782815],[109.346943,27.838396],[109.32169,27.868027],[109.30198,27.956343],[109.319842,27.988585],[109.362342,28.007608],[109.378972,28.034551],[109.335856,28.063073],[109.298284,28.036136],[109.314298,28.103729],[109.33832,28.141731],[109.340168,28.19027],[109.367885,28.254602],[109.388211,28.268307],[109.33524,28.293605],[109.317994,28.277795],[109.275494,28.313101],[109.268719,28.33786],[109.289045,28.373673],[109.264407,28.392628],[109.260712,28.46473],[109.274262,28.494714]]],[[[109.47629,26.829894],[109.486761,26.759913],[109.52187,26.749226],[109.522486,26.749226],[109.497232,26.815474],[109.513247,26.84004],[109.509551,26.877947],[109.486761,26.895562],[109.452885,26.861932],[109.467051,26.83203],[109.47629,26.829894]]],[[[109.528645,26.743881],[109.568065,26.726243],[109.597015,26.756173],[109.554515,26.73533],[109.528645,26.743881]]]]}},{"type":"Feature","properties":{"adcode":530000,"name":"云南省","center":[102.712251,25.040609],"centroid":[101.485106,25.008643],"childrenNum":16,"level":"province","parent":{"adcode":100000},"subFeatureIndex":24,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[105.308229,27.704955],[105.290367,27.712373],[105.293447,27.770637],[105.273736,27.794992],[105.313157,27.810874],[105.25957,27.827811],[105.233084,27.895534],[105.284823,27.935725],[105.270657,27.99704],[105.247867,28.009193],[105.218302,27.990698],[105.186273,27.995454],[105.167795,28.021345],[105.186889,28.054623],[105.168411,28.071522],[105.119752,28.07205],[105.061853,28.096866],[105.002107,28.064129],[104.980549,28.063073],[104.975006,28.020816],[104.903557,27.962158],[104.918339,27.938897],[104.888158,27.914574],[104.842579,27.900294],[104.796999,27.901352],[104.761891,27.884426],[104.743413,27.901881],[104.676275,27.880723],[104.63316,27.850567],[104.607906,27.857974],[104.573413,27.840512],[104.52537,27.889187],[104.508124,27.878078],[104.44961,27.927794],[104.40095,27.952114],[104.362762,28.012891],[104.30856,28.036136],[104.304248,28.050926],[104.373233,28.051454],[104.40095,28.091586],[104.448994,28.113758],[104.444682,28.16231],[104.406494,28.173389],[104.402182,28.202928],[104.442834,28.211366],[104.462544,28.241422],[104.44961,28.269889],[104.420045,28.269889],[104.392943,28.291497],[104.384936,28.329959],[104.343052,28.334173],[104.314103,28.306778],[104.282074,28.343128],[104.254357,28.403683],[104.267908,28.499448],[104.260516,28.536257],[104.323342,28.540989],[104.355987,28.555183],[104.375697,28.5946],[104.417581,28.598279],[104.425588,28.626649],[104.372617,28.649235],[104.314719,28.615617],[104.277147,28.631902],[104.252509,28.660788],[104.230951,28.635579],[104.170589,28.642932],[104.117618,28.634003],[104.09606,28.603533],[104.05972,28.6277],[103.953779,28.600906],[103.910047,28.631377],[103.887873,28.61982],[103.850917,28.66709],[103.833054,28.605109],[103.838598,28.587244],[103.802873,28.563068],[103.781931,28.525216],[103.829975,28.459995],[103.828743,28.44],[103.860156,28.383677],[103.85338,28.356822],[103.877402,28.316262],[103.828743,28.285173],[103.770845,28.233514],[103.740048,28.23615],[103.701859,28.198709],[103.692004,28.232459],[103.643961,28.260401],[103.573128,28.230877],[103.533092,28.168641],[103.470266,28.122204],[103.430846,28.044587],[103.459179,28.021345],[103.486281,28.033495],[103.515846,27.965329],[103.55465,27.978543],[103.502295,27.910343],[103.509686,27.843687],[103.487512,27.794992],[103.461027,27.779638],[103.393274,27.709194],[103.369868,27.708664],[103.349542,27.678459],[103.29226,27.632872],[103.2861,27.561802],[103.232514,27.56976],[103.19063,27.523596],[103.144434,27.450331],[103.141355,27.420586],[103.080992,27.396679],[103.055739,27.40943],[102.989833,27.367983],[102.941174,27.405711],[102.899906,27.317481],[102.883892,27.299401],[102.883276,27.258444],[102.904218,27.227584],[102.913457,27.133886],[102.870957,27.026782],[102.894979,27.001724],[102.896211,26.91264],[102.949181,26.843244],[102.966428,26.837904],[102.991681,26.775409],[102.983674,26.76686],[103.008312,26.710741],[103.005232,26.679195],[103.026174,26.664221],[103.035413,26.556673],[103.052659,26.555602],[103.052659,26.514374],[103.030485,26.485989],[102.989833,26.482775],[102.988602,26.413117],[102.998457,26.371839],[102.975667,26.340736],[102.893131,26.338591],[102.878964,26.364332],[102.833385,26.306406],[102.785342,26.298895],[102.739762,26.268846],[102.709581,26.210336],[102.659074,26.221611],[102.60056,26.250598],[102.638748,26.307479],[102.629509,26.336982],[102.570995,26.362723],[102.542046,26.338591],[102.440416,26.300505],[102.392372,26.296749],[102.349257,26.244694],[102.245163,26.212483],[102.242699,26.190468],[102.174946,26.146961],[102.152156,26.10935],[102.107808,26.068501],[102.080091,26.065275],[102.020961,26.096451],[101.954439,26.084627],[101.929186,26.105588],[101.899621,26.099139],[101.857737,26.049146],[101.835563,26.04592],[101.839875,26.082477],[101.796759,26.114723],[101.807846,26.156093],[101.773353,26.168448],[101.737013,26.219463],[101.690202,26.241473],[101.630455,26.224832],[101.586108,26.279579],[101.597195,26.303187],[101.64031,26.318745],[101.660636,26.346635],[101.635383,26.357361],[101.637847,26.388995],[101.565782,26.454381],[101.530057,26.467239],[101.506652,26.499915],[101.458608,26.49563],[101.422884,26.53151],[101.395783,26.591998],[101.402558,26.604841],[101.461688,26.606447],[101.461072,26.640687],[101.481398,26.673313],[101.453065,26.692563],[101.513427,26.768463],[101.466,26.786629],[101.445674,26.77434],[101.458608,26.731054],[101.435819,26.740675],[101.389623,26.723036],[101.387159,26.753501],[101.358826,26.771669],[101.399478,26.841642],[101.365602,26.883819],[101.311399,26.903034],[101.267667,26.903034],[101.264587,26.955323],[101.227015,26.959057],[101.228863,26.981992],[101.136472,27.023584],[101.157414,27.094999],[101.145095,27.103523],[101.170349,27.175421],[101.167885,27.198311],[101.167885,27.198311],[101.119226,27.208957],[101.071798,27.194585],[101.042233,27.22173],[101.026219,27.270679],[101.021907,27.332899],[100.95169,27.426961],[100.936908,27.469448],[100.901183,27.453517],[100.91227,27.521473],[100.854988,27.623858],[100.827886,27.615904],[100.848212,27.672099],[100.782307,27.691708],[100.775532,27.743098],[100.757053,27.770107],[100.707162,27.800816],[100.719481,27.858503],[100.681293,27.923035],[100.634482,27.915631],[100.609228,27.859033],[100.54517,27.809286],[100.511294,27.827811],[100.504518,27.852154],[100.442924,27.86644],[100.412127,27.816167],[100.350534,27.755809],[100.327744,27.72032],[100.311729,27.724028],[100.304954,27.788639],[100.28586,27.80611],[100.30865,27.830457],[100.30865,27.861149],[100.210715,27.87702],[100.170063,27.907699],[100.196549,27.936254],[100.120788,28.018703],[100.088759,28.029269],[100.05673,28.097922],[100.021006,28.147008],[100.033325,28.184467],[100.062274,28.193962],[100.091223,28.181302],[100.102926,28.201873],[100.153433,28.208202],[100.188541,28.252493],[100.147274,28.288862],[100.176223,28.325218],[100.136803,28.349975],[100.057346,28.368934],[100.073977,28.426317],[99.990209,28.47683],[99.985281,28.529422],[99.91876,28.599329],[99.875644,28.611939],[99.873181,28.631902],[99.834376,28.628225],[99.834992,28.660788],[99.79434,28.699116],[99.755536,28.701216],[99.722275,28.757369],[99.717964,28.846521],[99.676696,28.810345],[99.625573,28.81454],[99.609559,28.784122],[99.614486,28.740054],[99.553508,28.710664],[99.53195,28.677591],[99.540573,28.623497],[99.504233,28.619294],[99.466045,28.579886],[99.463581,28.549401],[99.403219,28.546246],[99.396444,28.491032],[99.426625,28.454207],[99.404451,28.44421],[99.437095,28.398419],[99.392748,28.318369],[99.412458,28.295186],[99.374886,28.18183],[99.306516,28.227714],[99.28927,28.286227],[99.237531,28.317842],[99.229524,28.350502],[99.200575,28.365774],[99.16485,28.425264],[99.187024,28.44],[99.191952,28.494714],[99.170394,28.566221],[99.183944,28.58882],[99.147604,28.640831],[99.126662,28.698066],[99.134053,28.734806],[99.114343,28.765763],[99.103872,28.841803],[99.123582,28.890021],[99.132206,28.94869],[99.113727,29.07273],[99.118039,29.100971],[99.105104,29.162656],[99.113727,29.221171],[99.037351,29.20759],[99.024416,29.188783],[98.9813,29.204978],[98.960974,29.165792],[98.967134,29.128159],[98.991771,29.105677],[99.013329,29.036632],[98.925866,28.978536],[98.917859,28.886877],[98.973909,28.864867],[98.972677,28.832367],[98.922786,28.823978],[98.912931,28.800906],[98.852569,28.798283],[98.827932,28.821356],[98.821772,28.920931],[98.786048,28.998952],[98.757714,29.004186],[98.70228,28.9644],[98.655469,28.976966],[98.624056,28.95864],[98.6567,28.910454],[98.643766,28.895261],[98.668403,28.843376],[98.652389,28.817162],[98.683802,28.740054],[98.666555,28.712239],[98.594491,28.667615],[98.637606,28.552029],[98.619128,28.50944],[98.625903,28.489455],[98.673947,28.478934],[98.693041,28.43158],[98.740468,28.348395],[98.746628,28.321003],[98.710287,28.288862],[98.712135,28.229296],[98.649925,28.200291],[98.625903,28.165475],[98.559382,28.182885],[98.494092,28.141203],[98.464527,28.151229],[98.428803,28.104785],[98.389383,28.114814],[98.389999,28.16442],[98.370289,28.18394],[98.37768,28.246167],[98.353042,28.293078],[98.317934,28.324691],[98.301303,28.384204],[98.208913,28.358401],[98.207681,28.330486],[98.231702,28.314681],[98.266811,28.242477],[98.21692,28.212949],[98.169492,28.206093],[98.17442,28.163365],[98.139311,28.142259],[98.160253,28.101089],[98.133152,27.990698],[98.143007,27.948942],[98.187355,27.939426],[98.205217,27.889716],[98.169492,27.851096],[98.215688,27.810874],[98.234166,27.690648],[98.283441,27.654608],[98.310542,27.583552],[98.317318,27.51935],[98.337644,27.508734],[98.388767,27.515104],[98.429419,27.549068],[98.430035,27.653547],[98.444201,27.665209],[98.474998,27.634462],[98.53536,27.620676],[98.554454,27.646126],[98.587099,27.587265],[98.583404,27.571351],[98.650541,27.567637],[98.662244,27.586734],[98.706591,27.553313],[98.685034,27.484315],[98.704744,27.462014],[98.686881,27.425367],[98.702896,27.412618],[98.706591,27.362136],[98.741084,27.330241],[98.734925,27.287168],[98.717062,27.271211],[98.723222,27.221198],[98.696121,27.211086],[98.713983,27.139744],[98.712751,27.075817],[98.765722,27.05077],[98.762642,27.018252],[98.732461,27.002257],[98.757098,26.877947],[98.730613,26.851253],[98.762026,26.798916],[98.746012,26.696841],[98.770033,26.690424],[98.762642,26.660478],[98.781736,26.620893],[98.773113,26.578083],[98.753403,26.559349],[98.757098,26.491881],[98.741084,26.432947],[98.750323,26.424372],[98.733693,26.350926],[98.681338,26.308016],[98.672715,26.239863],[98.713367,26.231274],[98.735541,26.185097],[98.712751,26.156093],[98.720142,26.127082],[98.661012,26.087852],[98.656084,26.139977],[98.632679,26.145887],[98.575396,26.118485],[98.602498,26.054523],[98.614201,25.968468],[98.637606,25.971696],[98.686881,25.925955],[98.705976,25.855426],[98.677642,25.816105],[98.640686,25.798864],[98.553839,25.845731],[98.529201,25.840884],[98.476846,25.77731],[98.461448,25.735267],[98.457752,25.682963],[98.409709,25.664084],[98.402317,25.593939],[98.326557,25.566409],[98.314854,25.543193],[98.247717,25.607971],[98.170724,25.620383],[98.189818,25.569108],[98.163949,25.524292],[98.131304,25.51025],[98.15779,25.457307],[98.137464,25.381633],[98.101123,25.388662],[98.099891,25.354055],[98.06971,25.311864],[98.006884,25.298338],[98.0075,25.279399],[97.940363,25.214985],[97.904023,25.216609],[97.875689,25.25721],[97.839349,25.27074],[97.796233,25.155954],[97.743262,25.078466],[97.719857,25.080634],[97.727864,25.04377],[97.716777,24.978147],[97.729712,24.908689],[97.785762,24.876117],[97.797465,24.845709],[97.765436,24.823984],[97.680437,24.827243],[97.652103,24.790846],[97.569567,24.765852],[97.547394,24.739221],[97.569567,24.708236],[97.570799,24.602719],[97.554785,24.490577],[97.530147,24.443187],[97.588662,24.435559],[97.669966,24.452993],[97.679821,24.401228],[97.716161,24.358711],[97.662574,24.339083],[97.665038,24.296544],[97.721089,24.295999],[97.767284,24.258357],[97.729712,24.227252],[97.72848,24.183585],[97.754349,24.163929],[97.748806,24.160653],[97.743262,24.159561],[97.730944,24.113685],[97.700763,24.093473],[97.697067,24.092927],[97.637321,24.04812],[97.628698,24.004938],[97.572647,23.983068],[97.529531,23.943146],[97.5283,23.926736],[97.618227,23.888438],[97.640401,23.866001],[97.647176,23.840823],[97.684132,23.876946],[97.718009,23.867643],[97.72848,23.895551],[97.763588,23.907041],[97.795617,23.951897],[97.8104,23.943146],[97.863371,23.978693],[97.896015,23.974319],[97.902175,24.014231],[97.984095,24.031177],[97.995182,24.04648],[98.091268,24.085824],[98.096196,24.08637],[98.123297,24.092927],[98.125761,24.092927],[98.132536,24.09238],[98.19721,24.09839],[98.219999,24.113685],[98.343187,24.098936],[98.37768,24.114232],[98.48239,24.122425],[98.487933,24.123517],[98.547063,24.128433],[98.593875,24.08036],[98.646229,24.106038],[98.681954,24.100029],[98.71891,24.127887],[98.818692,24.133348],[98.841482,24.126794],[98.876591,24.15137],[98.895069,24.098936],[98.807606,24.025164],[98.773729,24.022431],[98.727533,23.970491],[98.701048,23.981427],[98.673331,23.960647],[98.701048,23.946427],[98.68565,23.90157],[98.701664,23.834254],[98.669019,23.800857],[98.696121,23.784429],[98.784816,23.781691],[98.824236,23.727462],[98.811917,23.703354],[98.835939,23.683625],[98.847026,23.632097],[98.882134,23.620035],[98.882134,23.595358],[98.844562,23.578904],[98.80391,23.540504],[98.826084,23.470257],[98.874743,23.483431],[98.912315,23.426333],[98.920938,23.360971],[98.872895,23.329651],[98.906772,23.331849],[98.936953,23.309866],[98.928946,23.26589],[98.889525,23.209249],[98.906772,23.185595],[99.002242,23.160287],[99.057677,23.164689],[99.048438,23.11461],[99.106336,23.086536],[99.187024,23.100299],[99.255393,23.077727],[99.281879,23.101399],[99.3484,23.12892],[99.380429,23.099748],[99.440791,23.079379],[99.477747,23.083233],[99.528255,23.065614],[99.517168,23.006685],[99.533798,22.961507],[99.563363,22.925684],[99.531334,22.897019],[99.446951,22.934503],[99.43648,22.913557],[99.462965,22.844635],[99.401371,22.826434],[99.385357,22.761882],[99.326842,22.751396],[99.31514,22.737598],[99.339777,22.708894],[99.385973,22.57136],[99.359487,22.535435],[99.382277,22.493418],[99.297277,22.41156],[99.251698,22.393301],[99.278183,22.34626],[99.233836,22.296434],[99.235683,22.250468],[99.207966,22.232188],[99.175321,22.185647],[99.188256,22.162924],[99.156227,22.159599],[99.219669,22.110816],[99.294814,22.109152],[99.35456,22.095845],[99.400139,22.100281],[99.486987,22.128557],[99.516552,22.099726],[99.562747,22.113034],[99.578762,22.098617],[99.581841,22.103053],[99.648979,22.100835],[99.696406,22.067562],[99.762927,22.068117],[99.870101,22.029288],[99.871333,22.067007],[99.972347,22.053141],[99.965571,22.014309],[100.000064,21.973245],[99.982202,21.919401],[99.960028,21.907186],[99.944014,21.821097],[99.991441,21.703821],[100.049339,21.669899],[100.094303,21.702709],[100.131875,21.699929],[100.169447,21.663225],[100.107853,21.585337],[100.123252,21.565302],[100.131259,21.504066],[100.168831,21.482906],[100.184846,21.516315],[100.206404,21.509634],[100.235353,21.466756],[100.298795,21.477894],[100.349302,21.528564],[100.437381,21.533017],[100.48296,21.458958],[100.526692,21.471211],[100.579047,21.451717],[100.691764,21.510748],[100.730568,21.518542],[100.753358,21.555283],[100.789082,21.570867],[100.804481,21.609821],[100.847597,21.634856],[100.870386,21.67268],[100.896872,21.68269],[100.899335,21.684915],[100.936292,21.694368],[100.937524,21.693812],[101.015132,21.707157],[101.089661,21.773865],[101.123537,21.771642],[101.111835,21.746074],[101.116762,21.691032],[101.153102,21.669343],[101.169117,21.590345],[101.146943,21.560293],[101.209153,21.55751],[101.210385,21.509077],[101.225167,21.499055],[101.193138,21.473996],[101.194986,21.424979],[101.142631,21.409379],[101.183899,21.334699],[101.244877,21.302364],[101.246725,21.275598],[101.222088,21.234324],[101.290457,21.17853],[101.387775,21.225956],[101.439514,21.227072],[101.532521,21.252174],[101.601506,21.233208],[101.588572,21.191365],[101.605818,21.172392],[101.672339,21.194713],[101.703136,21.14616],[101.76473,21.147835],[101.794911,21.208104],[101.834331,21.204756],[101.833715,21.252731],[101.791832,21.285636],[101.745636,21.297345],[101.730238,21.336929],[101.749948,21.409379],[101.741324,21.482906],[101.772737,21.512975],[101.755491,21.538027],[101.754875,21.58478],[101.804766,21.577546],[101.828788,21.617054],[101.807846,21.644313],[101.780129,21.640975],[101.76781,21.716054],[101.747484,21.729953],[101.771506,21.833319],[101.740093,21.845541],[101.735165,21.875534],[101.700057,21.897191],[101.701288,21.938832],[101.666796,21.934391],[101.606434,21.967695],[101.626144,22.005986],[101.573789,22.115251],[101.602738,22.131883],[101.596579,22.161262],[101.547304,22.238282],[101.56455,22.269299],[101.625528,22.28259],[101.671723,22.372826],[101.648318,22.400494],[101.672339,22.47517],[101.715455,22.477935],[101.774585,22.506135],[101.824476,22.45692],[101.823244,22.42705],[101.862665,22.389427],[101.901469,22.384447],[101.907628,22.437007],[101.978461,22.427603],[102.046214,22.458026],[102.131214,22.430922],[102.145381,22.397727],[102.179257,22.430369],[102.270416,22.419858],[102.25625,22.457473],[102.322771,22.554227],[102.356648,22.563623],[102.404691,22.629925],[102.384365,22.679631],[102.43672,22.699508],[102.45951,22.762986],[102.510633,22.774574],[102.551285,22.743669],[102.569763,22.701164],[102.607335,22.730975],[102.657226,22.687913],[102.688639,22.70006],[102.80074,22.620534],[102.82353,22.623296],[102.880196,22.586832],[102.892515,22.533223],[102.930703,22.482359],[102.986754,22.477935],[103.030485,22.441432],[103.081608,22.454154],[103.071753,22.488441],[103.183238,22.558649],[103.161065,22.590147],[103.195557,22.648153],[103.220195,22.643734],[103.283021,22.678526],[103.288564,22.732078],[103.321209,22.777885],[103.323057,22.807678],[103.375411,22.794989],[103.441317,22.753052],[103.436389,22.6973],[103.457947,22.658646],[103.50907,22.601198],[103.529396,22.59291],[103.580519,22.66693],[103.567585,22.701164],[103.642113,22.794989],[103.740048,22.709446],[103.743127,22.697852],[103.766533,22.688465],[103.825047,22.615562],[103.863851,22.584069],[103.875554,22.565833],[103.894032,22.564728],[103.964865,22.502265],[104.009213,22.517745],[104.009213,22.575228],[104.022148,22.593463],[104.04309,22.67687],[104.045553,22.728215],[104.089901,22.768504],[104.117618,22.808781],[104.224176,22.826434],[104.261748,22.841877],[104.274067,22.828088],[104.256821,22.77347],[104.272835,22.73815],[104.323342,22.728767],[104.375697,22.690122],[104.422508,22.734838],[104.498885,22.774574],[104.527834,22.814298],[104.596203,22.846289],[104.674428,22.817056],[104.737869,22.825882],[104.732942,22.852356],[104.760659,22.862282],[104.772362,22.893711],[104.846275,22.926235],[104.860441,22.970874],[104.821021,23.032022],[104.804391,23.110207],[104.874608,23.123417],[104.882615,23.163589],[104.912796,23.175693],[104.949136,23.152033],[104.958991,23.188896],[105.093266,23.260942],[105.122215,23.247745],[105.181962,23.279084],[105.238012,23.26424],[105.260186,23.31811],[105.325475,23.390086],[105.353809,23.362069],[105.372903,23.317561],[105.416018,23.283482],[105.445584,23.292827],[105.50225,23.202648],[105.542902,23.184495],[105.526272,23.234548],[105.560148,23.257093],[105.593409,23.312614],[105.649459,23.346136],[105.699966,23.327453],[105.694423,23.363168],[105.637757,23.404366],[105.699966,23.40162],[105.758481,23.459826],[105.805908,23.467512],[105.815763,23.507031],[105.852103,23.526786],[105.89214,23.52514],[105.913081,23.499348],[105.935871,23.508678],[105.986378,23.489469],[105.999929,23.447748],[106.039965,23.484529],[106.071994,23.495506],[106.08616,23.524043],[106.141595,23.569579],[106.120653,23.605229],[106.149602,23.665538],[106.157609,23.724175],[106.136667,23.795381],[106.192102,23.824947],[106.173008,23.861622],[106.192718,23.879135],[106.157609,23.891174],[106.128044,23.956819],[106.091088,23.998924],[106.096631,24.018058],[106.053516,24.051399],[106.04982,24.089649],[106.011632,24.099482],[105.998081,24.120786],[105.963589,24.110954],[105.919241,24.122425],[105.901995,24.099482],[105.908154,24.069432],[105.89214,24.040468],[105.859495,24.056864],[105.841633,24.03063],[105.796669,24.023524],[105.802212,24.051945],[105.765256,24.073804],[105.739387,24.059596],[105.704278,24.0667],[105.649459,24.032816],[105.628518,24.126794],[105.594641,24.137718],[105.533663,24.130071],[105.493011,24.016965],[105.406163,24.043748],[105.395692,24.065607],[105.334099,24.094566],[105.320548,24.116416],[105.273121,24.092927],[105.292831,24.074896],[105.260186,24.061236],[105.20044,24.105491],[105.182577,24.167205],[105.229389,24.165567],[105.24294,24.208695],[105.215222,24.214699],[105.164715,24.288362],[105.196744,24.326541],[105.188121,24.347261],[105.138846,24.376701],[105.111744,24.37234],[105.106817,24.414853],[105.042759,24.442097],[104.979933,24.412673],[104.930042,24.411038],[104.914028,24.426296],[104.83642,24.446456],[104.784681,24.443732],[104.765587,24.45953],[104.74834,24.435559],[104.715695,24.441552],[104.703377,24.419757],[104.721239,24.340173],[104.70892,24.321087],[104.641783,24.367979],[104.610986,24.377246],[104.63008,24.397958],[104.616529,24.421937],[104.575877,24.424661],[104.550008,24.518894],[104.520443,24.535228],[104.489646,24.653313],[104.529682,24.731611],[104.542616,24.75607],[104.539537,24.813663],[104.586964,24.872859],[104.635623,24.903803],[104.663957,24.964584],[104.713232,24.996048],[104.684898,25.054072],[104.619609,25.060577],[104.685514,25.078466],[104.695369,25.122364],[104.732326,25.167871],[104.724319,25.195491],[104.753884,25.214443],[104.801927,25.163537],[104.822869,25.170037],[104.806854,25.224189],[104.826565,25.235558],[104.816094,25.262622],[104.736021,25.268034],[104.689826,25.296173],[104.639935,25.295632],[104.646094,25.356759],[104.615913,25.364871],[104.566638,25.402719],[104.543232,25.400556],[104.556783,25.524832],[104.524138,25.526992],[104.483486,25.494585],[104.44961,25.495126],[104.434827,25.472436],[104.418813,25.499447],[104.436059,25.520512],[104.428668,25.576126],[104.389248,25.595558],[104.332581,25.598796],[104.310407,25.647901],[104.328886,25.760602],[104.370769,25.730415],[104.397871,25.76168],[104.42374,25.841961],[104.441602,25.868889],[104.414501,25.909807],[104.438523,25.92757],[104.470552,26.009352],[104.460081,26.085702],[104.499501,26.070651],[104.52845,26.114186],[104.518595,26.165762],[104.548776,26.226979],[104.542616,26.253282],[104.592508,26.317672],[104.659645,26.335373],[104.684283,26.3772],[104.664572,26.397572],[104.665804,26.434019],[104.631928,26.451702],[104.638703,26.477954],[104.598667,26.520801],[104.57095,26.524549],[104.579573,26.568449],[104.556783,26.590393],[104.488414,26.579689],[104.459465,26.602701],[104.468088,26.644431],[104.424356,26.709137],[104.398487,26.686147],[104.353523,26.620893],[104.313487,26.612867],[104.274683,26.633733],[104.268524,26.617683],[104.222328,26.620358],[104.160734,26.646571],[104.121314,26.638012],[104.068343,26.573266],[104.067727,26.51491],[104.008597,26.511697],[103.953163,26.521336],[103.865699,26.512232],[103.819504,26.529903],[103.815808,26.55239],[103.763453,26.585041],[103.748671,26.623568],[103.759142,26.689355],[103.773308,26.716621],[103.725265,26.742812],[103.705555,26.794642],[103.722185,26.851253],[103.779468,26.87421],[103.763453,26.905702],[103.775156,26.951056],[103.753598,26.963858],[103.73204,27.018785],[103.704939,27.049171],[103.675374,27.051836],[103.623019,27.007056],[103.623635,27.035312],[103.601461,27.061962],[103.614396,27.079548],[103.659975,27.065692],[103.652584,27.092868],[103.620555,27.096598],[103.63349,27.12057],[103.696316,27.126429],[103.748671,27.210021],[103.801641,27.250464],[103.80041,27.26536],[103.865699,27.28185],[103.874322,27.331304],[103.903271,27.347785],[103.905119,27.38552],[103.932221,27.443958],[103.956242,27.425367],[104.015372,27.429086],[104.01722,27.383926],[104.084358,27.330773],[104.113923,27.338216],[104.173053,27.263232],[104.210625,27.297273],[104.248813,27.291955],[104.247582,27.336621],[104.295625,27.37436],[104.30856,27.407305],[104.363378,27.467855],[104.467472,27.414211],[104.497037,27.414743],[104.539537,27.327583],[104.570334,27.331836],[104.611602,27.306846],[104.7545,27.345658],[104.77113,27.317481],[104.824717,27.3531],[104.856746,27.332368],[104.851818,27.299401],[104.871528,27.290891],[104.913412,27.327051],[105.01073,27.379143],[105.068013,27.418461],[105.120984,27.418461],[105.184425,27.392959],[105.182577,27.367451],[105.233084,27.436522],[105.234316,27.489093],[105.260186,27.514573],[105.232469,27.546945],[105.25649,27.582491],[105.304533,27.611661],[105.29591,27.631811],[105.308229,27.704955]]]]}},{"type":"Feature","properties":{"adcode":540000,"name":"西藏自治区","center":[91.132212,29.660361],"centroid":[88.388277,31.56375],"childrenNum":7,"level":"province","parent":{"adcode":100000},"subFeatureIndex":25,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[89.711414,36.093272],[89.614711,36.109712],[89.594385,36.126632],[89.490291,36.151281],[89.375727,36.228078],[89.335075,36.23725],[89.292575,36.231457],[89.232213,36.295636],[89.198952,36.260417],[89.126887,36.254626],[89.10225,36.281164],[89.054822,36.291777],[89.013554,36.315409],[88.964279,36.318785],[88.926091,36.36458],[88.870657,36.348193],[88.838628,36.353496],[88.802903,36.33807],[88.783809,36.291777],[88.766563,36.292259],[88.690186,36.367954],[88.623665,36.389636],[88.618121,36.428168],[88.573158,36.461386],[88.498629,36.446463],[88.470912,36.48208],[88.41055,36.473418],[88.356963,36.477268],[88.366202,36.458016],[88.282434,36.470049],[88.241782,36.468605],[88.222688,36.447426],[88.182652,36.452721],[88.134609,36.427205],[88.092109,36.43539],[88.006494,36.430575],[87.983088,36.437797],[87.95845,36.408423],[87.919646,36.39349],[87.838342,36.383855],[87.826023,36.391563],[87.767509,36.3747],[87.731785,36.384818],[87.6203,36.360243],[87.570409,36.342409],[87.470626,36.354459],[87.460155,36.409868],[87.426895,36.42576],[87.386859,36.412757],[87.363453,36.420463],[87.348055,36.393008],[87.292004,36.358797],[87.193454,36.349158],[87.161425,36.325535],[87.149106,36.297565],[87.08628,36.310587],[87.051788,36.2966],[86.996353,36.308658],[86.943998,36.284058],[86.931064,36.265242],[86.887332,36.262829],[86.86331,36.299977],[86.836209,36.291294],[86.746282,36.291777],[86.69947,36.24449],[86.599072,36.222285],[86.531935,36.227113],[86.515305,36.205385],[86.454943,36.221319],[86.392733,36.206834],[86.35824,36.168676],[86.2794,36.170608],[86.248603,36.141616],[86.187625,36.130983],[86.182081,36.064734],[86.199944,36.047801],[86.173458,36.008113],[86.150668,36.00424],[86.129111,35.941761],[86.093386,35.906868],[86.090306,35.876809],[86.05335,35.842857],[86.035488,35.846738],[85.949256,35.778794],[85.903677,35.78462],[85.835308,35.771996],[85.811286,35.778794],[85.691178,35.751114],[85.65299,35.731199],[85.612953,35.651486],[85.566142,35.6403],[85.518715,35.680658],[85.373969,35.700101],[85.341324,35.753543],[85.271107,35.788989],[85.146071,35.742371],[85.053065,35.752086],[84.99455,35.737028],[84.973608,35.709334],[84.920022,35.696213],[84.798066,35.647595],[84.729081,35.613546],[84.704443,35.616951],[84.628067,35.595055],[84.570168,35.588242],[84.513502,35.564391],[84.448828,35.550272],[84.475929,35.516181],[84.45314,35.473303],[84.424191,35.466479],[84.333032,35.413821],[84.274517,35.404065],[84.200605,35.381135],[84.160569,35.359663],[84.140859,35.379184],[84.095895,35.362592],[84.077417,35.400163],[84.005968,35.422599],[83.906186,35.40309],[83.885244,35.367472],[83.79778,35.354783],[83.785462,35.36308],[83.677672,35.361128],[83.622238,35.335256],[83.599448,35.351366],[83.54155,35.341603],[83.540318,35.364056],[83.502745,35.360639],[83.449159,35.382111],[83.405427,35.380648],[83.333978,35.397236],[83.280391,35.401138],[83.251442,35.417722],[83.178145,35.38943],[83.127022,35.398699],[83.088834,35.425526],[83.067892,35.46258],[82.998907,35.484512],[82.971806,35.548324],[82.981661,35.599922],[82.956407,35.636409],[82.967494,35.667532],[82.894813,35.673852],[82.873871,35.688922],[82.795031,35.688436],[82.780249,35.666073],[82.731589,35.637868],[82.652133,35.67288],[82.628727,35.692324],[82.546192,35.708362],[82.501844,35.701073],[82.468583,35.717595],[82.424852,35.712736],[82.392823,35.656349],[82.336156,35.651486],[82.350323,35.611113],[82.328149,35.559523],[82.2992,35.544916],[82.263475,35.547837],[82.234526,35.520565],[82.189563,35.513258],[82.164925,35.495719],[82.086701,35.467454],[82.071302,35.450393],[82.034346,35.451855],[82.029419,35.426013],[82.05344,35.35039],[82.030034,35.321585],[81.99123,35.30547],[81.955506,35.307423],[81.927789,35.271275],[81.853876,35.25857],[81.804601,35.270786],[81.736847,35.26248],[81.68634,35.235599],[81.513261,35.23511],[81.504638,35.279092],[81.447972,35.318167],[81.441196,35.333303],[81.385762,35.335256],[81.363588,35.354783],[81.314313,35.337209],[81.285364,35.345508],[81.26627,35.322562],[81.219458,35.319144],[81.191741,35.36552],[81.142466,35.365032],[81.103662,35.386015],[81.09935,35.40748],[81.054387,35.402602],[81.031597,35.380648],[81.030981,35.337209],[81.002648,35.334768],[81.026053,35.31133],[80.963844,35.310842],[80.924423,35.330862],[80.894242,35.324027],[80.844351,35.345508],[80.759968,35.334768],[80.689135,35.339162],[80.690982,35.364544],[80.65649,35.393821],[80.599823,35.409431],[80.56841,35.391381],[80.532686,35.404553],[80.514824,35.391869],[80.444607,35.417235],[80.432904,35.449418],[80.375006,35.387966],[80.321419,35.38699],[80.286926,35.35283],[80.267832,35.295701],[80.362687,35.20871],[80.257977,35.203331],[80.223484,35.177409],[80.23026,35.147565],[80.118159,35.066293],[80.078123,35.076578],[80.031311,35.034447],[80.04363,35.022196],[80.02392,34.971209],[80.041782,34.943252],[80.034391,34.902033],[80.003594,34.895162],[79.996819,34.856375],[79.961094,34.862759],[79.926602,34.849499],[79.947544,34.821008],[79.898268,34.732035],[79.906892,34.683821],[79.866856,34.671517],[79.88595,34.642965],[79.84345,34.55725],[79.861312,34.528166],[79.801566,34.478847],[79.735661,34.471447],[79.699936,34.477861],[79.675914,34.451216],[79.58106,34.456151],[79.545335,34.476381],[79.504683,34.45467],[79.435082,34.447761],[79.363017,34.428018],[79.326677,34.44332],[79.274322,34.435916],[79.241677,34.415183],[79.179467,34.422588],[79.161605,34.441345],[79.072294,34.412714],[79.039033,34.421601],[79.0107,34.399877],[79.048888,34.348506],[79.039649,34.33467],[79.019939,34.313417],[78.981751,34.31836],[78.958345,34.230827],[78.941099,34.212022],[78.9257,34.155584],[78.910302,34.143202],[78.878273,34.163012],[78.828998,34.125369],[78.801897,34.137258],[78.737223,34.089692],[78.661462,34.086718],[78.656535,34.030196],[78.736607,33.999937],[78.744614,33.980585],[78.734143,33.918529],[78.762476,33.90959],[78.756317,33.8773],[78.766172,33.823124],[78.758165,33.790802],[78.779723,33.73259],[78.692259,33.676331],[78.684868,33.654415],[78.713201,33.623025],[78.755085,33.623025],[78.74215,33.55323],[78.816679,33.480882],[78.84994,33.419963],[78.896751,33.41247],[78.949722,33.376495],[78.9682,33.334505],[79.022403,33.323504],[79.041497,33.268479],[79.083997,33.245459],[79.072294,33.22844],[79.10925,33.200401],[79.152366,33.184375],[79.162221,33.165841],[79.139431,33.117735],[79.162837,33.01191],[79.204721,32.964724],[79.255844,32.942628],[79.227511,32.89038],[79.237982,32.846145],[79.225047,32.784281],[79.275554,32.778746],[79.301423,32.728919],[79.27309,32.678056],[79.299575,32.637244],[79.308199,32.596918],[79.272474,32.561113],[79.252148,32.516715],[79.190554,32.511669],[79.180083,32.492994],[79.135736,32.472295],[79.124649,32.416235],[79.103091,32.369744],[79.067982,32.380863],[79.005772,32.375304],[78.970664,32.331826],[78.904142,32.374798],[78.87273,32.40512],[78.81052,32.436441],[78.782186,32.480373],[78.760629,32.563635],[78.781571,32.608009],[78.74215,32.654881],[78.741534,32.703743],[78.6861,32.680071],[78.675013,32.658408],[78.628202,32.630188],[78.588782,32.637748],[78.577695,32.615067],[78.518564,32.605993],[78.500086,32.580782],[78.424942,32.565652],[78.395377,32.530339],[78.426174,32.502584],[78.472985,32.435431],[78.458818,32.379853],[78.483456,32.357106],[78.480992,32.329297],[78.508709,32.297939],[78.475449,32.236708],[78.430485,32.212407],[78.429869,32.194683],[78.469905,32.127808],[78.509941,32.147065],[78.527188,32.11463],[78.609107,32.052768],[78.60726,32.023851],[78.705194,31.988835],[78.762476,31.947203],[78.768636,31.92638],[78.739687,31.885228],[78.665158,31.851684],[78.654687,31.819144],[78.706426,31.778453],[78.763092,31.668499],[78.798817,31.675629],[78.806824,31.64099],[78.845628,31.609905],[78.833925,31.584927],[78.779723,31.545154],[78.740303,31.532912],[78.729832,31.478316],[78.755701,31.478316],[78.792041,31.435944],[78.760013,31.392531],[78.755085,31.355742],[78.795121,31.301043],[78.859179,31.289281],[78.865338,31.312804],[78.884432,31.277006],[78.923852,31.246824],[78.930628,31.220726],[78.997765,31.158779],[78.97436,31.115751],[79.010084,31.043994],[79.059359,31.028097],[79.096931,30.992192],[79.181931,31.015788],[79.205953,31.0004],[79.227511,30.949088],[79.33222,30.969103],[79.316206,31.01784],[79.35809,31.031174],[79.404901,31.071678],[79.424611,31.061425],[79.427075,31.018353],[79.505915,31.027584],[79.550879,30.957813],[79.59769,30.925989],[79.660516,30.956787],[79.668523,30.980392],[79.729501,30.941389],[79.75845,30.936769],[79.835443,30.851006],[79.890877,30.855116],[79.913051,30.833022],[79.900732,30.7991],[79.961094,30.771337],[79.955551,30.738422],[79.970333,30.685941],[80.014065,30.661748],[80.04363,30.603559],[80.143412,30.55822],[80.214245,30.586044],[80.261673,30.566465],[80.322035,30.564403],[80.357759,30.520592],[80.43044,30.515952],[80.446454,30.495327],[80.504969,30.483466],[80.549316,30.448905],[80.585041,30.463866],[80.633084,30.458707],[80.692214,30.416913],[80.719316,30.414848],[80.81725,30.321389],[80.910873,30.30279],[80.933662,30.266614],[80.996488,30.267648],[81.034677,30.246971],[81.038372,30.205086],[81.082104,30.151281],[81.085799,30.100554],[81.110437,30.085538],[81.09627,30.052909],[81.131995,30.016124],[81.225618,30.005759],[81.256415,30.011978],[81.247792,30.032705],[81.2829,30.061197],[81.293371,30.094859],[81.269349,30.153351],[81.335871,30.149729],[81.393769,30.199396],[81.397465,30.240767],[81.419023,30.270232],[81.406088,30.291938],[81.427646,30.305373],[81.399929,30.319323],[81.406088,30.369421],[81.432573,30.379231],[81.406704,30.40401],[81.418407,30.420525],[81.454131,30.412268],[81.494783,30.381296],[81.555761,30.369421],[81.566232,30.428782],[81.613044,30.412784],[81.63029,30.446842],[81.723913,30.407623],[81.759021,30.385426],[81.872354,30.373035],[81.939491,30.344633],[81.954274,30.355995],[81.99123,30.322939],[82.022027,30.339468],[82.060215,30.332237],[82.104563,30.346182],[82.132896,30.30434],[82.11873,30.279019],[82.114418,30.226806],[82.142135,30.200948],[82.188947,30.18543],[82.207425,30.143519],[82.183403,30.12178],[82.17786,30.06793],[82.246845,30.071555],[82.311519,30.035813],[82.333693,30.045138],[82.368185,30.014051],[82.412533,30.011978],[82.431011,29.989692],[82.474743,29.973622],[82.498148,29.947698],[82.560974,29.955476],[82.609017,29.886489],[82.64351,29.868846],[82.6238,29.834588],[82.703872,29.847566],[82.737749,29.80655],[82.691553,29.766037],[82.757459,29.761881],[82.774089,29.726548],[82.816589,29.717192],[82.830756,29.687562],[82.885574,29.689122],[82.9484,29.704718],[82.966878,29.658963],[83.011226,29.667804],[83.088834,29.604863],[83.12887,29.623593],[83.159667,29.61735],[83.164595,29.595496],[83.217565,29.60018],[83.266841,29.571035],[83.27608,29.505951],[83.325355,29.502826],[83.383253,29.42206],[83.415898,29.420496],[83.423289,29.361053],[83.450391,29.332883],[83.463941,29.285916],[83.492274,29.280174],[83.548941,29.201322],[83.57789,29.203934],[83.596368,29.174153],[83.656114,29.16736],[83.667201,29.200277],[83.727563,29.244672],[83.800244,29.249372],[83.82057,29.294267],[83.851367,29.294789],[83.911729,29.323491],[83.949301,29.312533],[83.986874,29.325057],[84.002272,29.291658],[84.052163,29.296877],[84.116837,29.286438],[84.130388,29.239972],[84.203068,29.239972],[84.197525,29.210202],[84.17104,29.19453],[84.176583,29.133909],[84.20738,29.118749],[84.192597,29.084236],[84.194445,29.045004],[84.224626,29.049189],[84.248648,29.030353],[84.228322,28.949738],[84.234481,28.889497],[84.268358,28.895261],[84.330568,28.859101],[84.340423,28.866963],[84.408176,28.85386],[84.404481,28.828173],[84.434046,28.823978],[84.445133,28.764189],[84.483321,28.735331],[84.557233,28.74635],[84.620059,28.732182],[84.650856,28.714338],[84.669334,28.680742],[84.699515,28.671816],[84.698284,28.633478],[84.773428,28.610363],[84.857196,28.567798],[84.896616,28.587244],[84.981616,28.586193],[84.995782,28.611414],[85.05676,28.674441],[85.126361,28.676016],[85.155926,28.643983],[85.195963,28.624022],[85.18426,28.587244],[85.189803,28.544669],[85.160238,28.49261],[85.108499,28.461047],[85.129441,28.377885],[85.113427,28.344708],[85.179948,28.324164],[85.209513,28.338914],[85.272339,28.282538],[85.349947,28.298347],[85.379512,28.274105],[85.415853,28.321003],[85.458969,28.332593],[85.520563,28.326798],[85.602483,28.295712],[85.601251,28.254075],[85.650526,28.283592],[85.682555,28.375779],[85.720743,28.372093],[85.753388,28.227714],[85.791576,28.195544],[85.854402,28.172334],[85.871648,28.124843],[85.898749,28.101617],[85.901213,28.053566],[85.980053,27.984357],[85.949256,27.937311],[86.002227,27.90717],[86.053966,27.900823],[86.125415,27.923035],[86.082915,28.018175],[86.086611,28.090002],[86.128495,28.086835],[86.140198,28.114814],[86.19132,28.167058],[86.223965,28.092642],[86.206103,28.084195],[86.231972,27.974315],[86.27324,27.976958],[86.308965,27.950528],[86.393349,27.926736],[86.414906,27.904526],[86.450015,27.908757],[86.475884,27.944713],[86.514689,27.954757],[86.513457,27.996511],[86.537478,28.044587],[86.55842,28.047757],[86.568891,28.103201],[86.60092,28.097922],[86.611391,28.069938],[86.647732,28.06941],[86.662514,28.092114],[86.700086,28.101617],[86.74813,28.089474],[86.768456,28.06941],[86.756753,28.032967],[86.827586,28.012363],[86.864542,28.022401],[86.885484,27.995983],[86.926752,27.985942],[86.935375,27.955286],[87.035157,27.946299],[87.080737,27.910872],[87.118309,27.840512],[87.173744,27.818284],[87.227946,27.812991],[87.249504,27.839454],[87.280917,27.845275],[87.317258,27.826753],[87.364069,27.824106],[87.421967,27.856916],[87.418272,27.825694],[87.45954,27.820931],[87.58088,27.859562],[87.598126,27.814579],[87.670191,27.832045],[87.668343,27.809815],[87.727473,27.802933],[87.77798,27.860091],[87.782292,27.890774],[87.826639,27.927794],[87.930733,27.909285],[87.982472,27.884426],[88.037291,27.901881],[88.090877,27.885484],[88.111819,27.864852],[88.137689,27.878607],[88.120442,27.915103],[88.156783,27.957929],[88.203594,27.943127],[88.242398,27.967444],[88.254101,27.939426],[88.357579,27.986471],[88.401311,27.976958],[88.43334,28.002852],[88.469064,28.009721],[88.498013,28.04089],[88.554064,28.027684],[88.565151,28.083139],[88.620585,28.091586],[88.645223,28.111119],[88.67602,28.068353],[88.764099,28.068353],[88.812142,28.018175],[88.842939,28.006023],[88.846635,27.921448],[88.864497,27.921448],[88.888519,27.846863],[88.863265,27.811932],[88.870657,27.743098],[88.850331,27.710783],[88.852178,27.671039],[88.816454,27.641354],[88.813374,27.606889],[88.770874,27.563924],[88.797976,27.521473],[88.783193,27.467324],[88.809063,27.405711],[88.838012,27.37808],[88.867577,27.3818],[88.901453,27.327583],[88.920548,27.325456],[88.911924,27.272807],[88.942105,27.261636],[88.984605,27.208957],[89.067757,27.240354],[89.077612,27.287168],[89.152757,27.319076],[89.182938,27.373829],[89.132431,27.441302],[89.095474,27.471572],[89.109025,27.537925],[89.163228,27.574534],[89.128735,27.611131],[89.131815,27.633402],[89.184786,27.673689],[89.238988,27.796581],[89.295655,27.84845],[89.375727,27.875962],[89.44348,27.968501],[89.461958,28.03191],[89.511233,28.086307],[89.541414,28.088418],[89.605472,28.161782],[89.720037,28.170224],[89.779167,28.197127],[89.789638,28.240895],[89.869094,28.221386],[89.901739,28.18183],[89.976268,28.189215],[90.017536,28.162837],[90.03355,28.136981],[90.07297,28.155451],[90.103151,28.141731],[90.124709,28.190797],[90.166593,28.187632],[90.189999,28.161782],[90.231882,28.144897],[90.297172,28.153868],[90.367389,28.088946],[90.384019,28.06096],[90.43699,28.063073],[90.47949,28.044587],[90.513983,28.062016],[90.569417,28.044059],[90.591591,28.021345],[90.701844,28.076274],[90.741264,28.053038],[90.802242,28.040362],[90.806554,28.015005],[90.853365,27.969029],[90.896481,27.946299],[90.96177,27.9537],[90.976553,27.935725],[90.96485,27.900294],[91.025828,27.857445],[91.113292,27.846333],[91.155175,27.894476],[91.147784,27.927794],[91.162567,27.968501],[91.216153,27.989113],[91.251878,27.970615],[91.309776,28.057791],[91.464993,28.002852],[91.490246,27.971672],[91.486551,27.937311],[91.552456,27.90717],[91.611586,27.891303],[91.618978,27.856916],[91.561079,27.855329],[91.544449,27.820401],[91.610355,27.819343],[91.642383,27.7664],[91.622673,27.692238],[91.570934,27.650897],[91.562311,27.627569],[91.582637,27.598933],[91.564775,27.58196],[91.585101,27.540578],[91.626985,27.509265],[91.663325,27.507142],[91.71876,27.467324],[91.753868,27.462545],[91.839484,27.489624],[91.946657,27.464138],[92.010715,27.474758],[92.021802,27.444489],[92.064918,27.391365],[92.125896,27.273339],[92.091403,27.264296],[92.071077,27.237694],[92.061222,27.190327],[92.032273,27.167967],[92.02673,27.108318],[92.043976,27.052902],[92.076005,27.041175],[92.124664,26.960124],[92.109265,26.854991],[92.197961,26.86994],[92.28604,26.892359],[92.404916,26.9025],[92.496691,26.921711],[92.549046,26.941453],[92.64698,26.952656],[92.682089,26.947855],[92.802813,26.895028],[92.909371,26.914241],[93.050421,26.883819],[93.111399,26.880082],[93.232739,26.906769],[93.56781,26.938252],[93.625092,26.955323],[93.747048,27.015587],[93.817265,27.025183],[93.841903,27.045973],[93.849294,27.168499],[93.970634,27.30525],[94.056866,27.375423],[94.147409,27.458297],[94.220705,27.536333],[94.277372,27.58143],[94.353132,27.578778],[94.399944,27.589386],[94.443675,27.585143],[94.478168,27.602116],[94.524979,27.596282],[94.660486,27.650367],[94.722696,27.683759],[94.78121,27.699127],[94.836645,27.728796],[94.88592,27.743098],[94.947514,27.792345],[95.015267,27.82887],[95.067006,27.840512],[95.28628,27.939955],[95.32878,28.017646],[95.352802,28.04089],[95.371896,28.110063],[95.39715,28.142259],[95.437802,28.161782],[95.528345,28.182885],[95.674322,28.254075],[95.740228,28.275159],[95.787655,28.270416],[95.832003,28.295186],[95.874502,28.29782],[95.899756,28.278322],[95.907763,28.241422],[95.936096,28.240368],[95.989067,28.198181],[96.074683,28.193434],[96.098088,28.212421],[96.194175,28.212949],[96.275479,28.228241],[96.298269,28.140148],[96.367254,28.118509],[96.398667,28.118509],[96.395587,28.143842],[96.426384,28.161782],[96.46334,28.143314],[96.499681,28.067297],[96.538485,28.075218],[96.623485,28.024514],[96.635188,27.994926],[96.690622,27.948942],[96.711564,27.9574],[96.784245,27.931495],[96.810114,27.890245],[96.849534,27.874375],[96.908049,27.884426],[96.972722,27.861149],[97.008447,27.807698],[97.049099,27.81405],[97.062649,27.742568],[97.097758,27.740979],[97.103301,27.780697],[97.167975,27.811932],[97.253591,27.891832],[97.303482,27.913516],[97.324424,27.880723],[97.386634,27.882839],[97.372467,27.907699],[97.379242,27.970087],[97.413119,28.01342],[97.378626,28.031382],[97.375547,28.062545],[97.320728,28.054095],[97.305945,28.071522],[97.340438,28.104785],[97.326887,28.132759],[97.352757,28.149646],[97.362612,28.199236],[97.349677,28.235623],[97.398336,28.238786],[97.402032,28.279903],[97.422358,28.297293],[97.461162,28.26778],[97.469169,28.30309],[97.518445,28.327852],[97.488879,28.347341],[97.485184,28.38631],[97.499966,28.428948],[97.521524,28.444736],[97.507974,28.46473],[97.521524,28.495766],[97.569567,28.541515],[97.60406,28.515225],[97.634857,28.532051],[97.68598,28.519958],[97.737103,28.465782],[97.738335,28.396313],[97.769748,28.3742],[97.801161,28.326798],[97.842429,28.326798],[97.871378,28.361561],[97.907718,28.363141],[98.020435,28.253548],[98.008116,28.214003],[98.03337,28.187105],[98.056775,28.202401],[98.090036,28.195544],[98.097427,28.166531],[98.139311,28.142259],[98.17442,28.163365],[98.169492,28.206093],[98.21692,28.212949],[98.266811,28.242477],[98.231702,28.314681],[98.207681,28.330486],[98.208913,28.358401],[98.301303,28.384204],[98.317934,28.324691],[98.353042,28.293078],[98.37768,28.246167],[98.370289,28.18394],[98.389999,28.16442],[98.389383,28.114814],[98.428803,28.104785],[98.464527,28.151229],[98.494092,28.141203],[98.559382,28.182885],[98.625903,28.165475],[98.649925,28.200291],[98.712135,28.229296],[98.710287,28.288862],[98.746628,28.321003],[98.740468,28.348395],[98.693041,28.43158],[98.673947,28.478934],[98.625903,28.489455],[98.619128,28.50944],[98.637606,28.552029],[98.594491,28.667615],[98.666555,28.712239],[98.683802,28.740054],[98.652389,28.817162],[98.668403,28.843376],[98.643766,28.895261],[98.6567,28.910454],[98.624056,28.95864],[98.655469,28.976966],[98.70228,28.9644],[98.757714,29.004186],[98.786048,28.998952],[98.821772,28.920931],[98.827932,28.821356],[98.852569,28.798283],[98.912931,28.800906],[98.922786,28.823978],[98.972677,28.832367],[98.973909,28.864867],[98.917859,28.886877],[98.925866,28.978536],[99.013329,29.036632],[98.991771,29.105677],[98.967134,29.128159],[98.960974,29.165792],[98.9813,29.204978],[99.024416,29.188783],[99.037351,29.20759],[99.113727,29.221171],[99.114343,29.243628],[99.075539,29.316186],[99.058909,29.417368],[99.066916,29.421018],[99.044742,29.520013],[99.052133,29.563748],[99.014561,29.607464],[98.992387,29.677163],[99.018873,29.792009],[99.0238,29.846009],[99.068148,29.931621],[99.055213,29.958587],[99.036735,30.053945],[99.044742,30.079842],[98.989308,30.151799],[98.9813,30.182843],[98.993003,30.215429],[98.970829,30.260928],[98.986844,30.280569],[98.967134,30.33482],[98.965286,30.449937],[98.932025,30.521623],[98.926482,30.569556],[98.939417,30.598923],[98.92217,30.609225],[98.907388,30.698292],[98.963438,30.728134],[98.957895,30.765166],[98.904924,30.782649],[98.850105,30.849465],[98.797135,30.87926],[98.774345,30.908019],[98.797135,30.948575],[98.806374,30.995783],[98.774961,31.031174],[98.736772,31.049121],[98.712135,31.082954],[98.710287,31.1178],[98.675179,31.15417],[98.602498,31.192062],[98.62344,31.221238],[98.60373,31.257568],[98.616048,31.3036],[98.643766,31.338876],[98.691809,31.333253],[98.773113,31.249382],[98.805758,31.279052],[98.810685,31.306668],[98.887062,31.37465],[98.84333,31.416028],[98.844562,31.429817],[98.714599,31.508935],[98.696736,31.538523],[98.651157,31.57881],[98.619128,31.591555],[98.553839,31.660349],[98.545831,31.717383],[98.516882,31.717383],[98.508875,31.751995],[98.461448,31.800327],[98.414636,31.832365],[98.426339,31.856767],[98.399238,31.895899],[98.432498,31.922825],[98.434962,32.007613],[98.402933,32.026896],[98.404781,32.045159],[98.357354,32.087253],[98.303151,32.121726],[98.260035,32.208862],[98.218768,32.234683],[98.23047,32.262521],[98.208913,32.318171],[98.218768,32.342444],[98.125145,32.401077],[98.107283,32.391476],[98.079565,32.415224],[97.940363,32.482393],[97.880001,32.486431],[97.863986,32.499051],[97.80732,32.50006],[97.795617,32.521257],[97.730944,32.527312],[97.684132,32.530339],[97.670582,32.51722],[97.540618,32.536899],[97.50243,32.530844],[97.463626,32.55506],[97.448843,32.586833],[97.411887,32.575235],[97.374315,32.546484],[97.3583,32.563635],[97.332431,32.542448],[97.334895,32.514192],[97.388481,32.501575],[97.341054,32.440987],[97.387865,32.427349],[97.424822,32.322723],[97.415583,32.296421],[97.371235,32.273148],[97.32196,32.303503],[97.299786,32.294904],[97.264062,32.182527],[97.271453,32.139971],[97.313953,32.130342],[97.293011,32.096887],[97.308409,32.076605],[97.258518,32.072041],[97.219714,32.109054],[97.201852,32.090296],[97.233881,32.063927],[97.214786,32.042623],[97.188301,32.055304],[97.169823,32.032984],[97.127323,32.044145],[97.028773,32.04871],[97.006599,32.067984],[96.935766,32.048203],[96.965947,32.008628],[96.941925,31.986297],[96.894498,32.013703],[96.863085,31.996448],[96.868629,31.964975],[96.824281,32.007613],[96.722651,32.013195],[96.742977,32.001016],[96.753448,31.944156],[96.776238,31.935015],[96.81073,31.894375],[96.794716,31.869474],[96.760223,31.860325],[96.765767,31.819144],[96.799027,31.792188],[96.840295,31.720438],[96.790404,31.698545],[96.778701,31.675629],[96.722651,31.686833],[96.691854,31.722474],[96.661057,31.705674],[96.615477,31.737236],[96.56805,31.711783],[96.519391,31.74945],[96.468884,31.769804],[96.435623,31.796258],[96.407906,31.845583],[96.389428,31.919777],[96.288414,31.919777],[96.253305,31.929936],[96.220044,31.905553],[96.188632,31.904028],[96.214501,31.876589],[96.202798,31.841008],[96.183088,31.835924],[96.178161,31.775401],[96.231131,31.749959],[96.222508,31.733164],[96.252073,31.697527],[96.245298,31.657802],[96.221892,31.647613],[96.207726,31.598691],[96.156603,31.602769],[96.148595,31.686324],[96.135661,31.70211],[96.064828,31.720438],[95.989067,31.78761],[95.983524,31.816601],[95.89914,31.81711],[95.846169,31.736218],[95.853561,31.714329],[95.823995,31.68225],[95.779648,31.748941],[95.634286,31.782523],[95.580083,31.76726],[95.546823,31.73978],[95.511714,31.750468],[95.480301,31.795749],[95.456896,31.801853],[95.406389,31.896915],[95.408852,31.918761],[95.3682,31.92892],[95.360809,31.95939],[95.395918,32.001523],[95.454432,32.007613],[95.421171,32.033999],[95.454432,32.061898],[95.440265,32.157705],[95.406389,32.182021],[95.367584,32.178982],[95.366968,32.151118],[95.31523,32.148585],[95.270266,32.194683],[95.270266,32.194683],[95.239469,32.287315],[95.241317,32.3207],[95.214216,32.321712],[95.20744,32.297433],[95.10581,32.258979],[95.079325,32.279726],[95.096571,32.322217],[95.193274,32.332331],[95.261643,32.348006],[95.228382,32.363678],[95.218527,32.397035],[95.153853,32.386423],[95.081789,32.384907],[95.075013,32.376315],[95.075013,32.376315],[95.057151,32.395014],[94.988166,32.422802],[94.944434,32.404109],[94.912405,32.41573],[94.889616,32.472295],[94.852043,32.463712],[94.80708,32.486431],[94.78737,32.522266],[94.762116,32.526303],[94.737479,32.587338],[94.638312,32.645307],[94.614291,32.673522],[94.591501,32.640772],[94.522516,32.595909],[94.459074,32.599439],[94.463386,32.572209],[94.435052,32.562626],[94.395016,32.594397],[94.371611,32.524789],[94.350053,32.533871],[94.294002,32.519743],[94.292154,32.502584],[94.250886,32.51722],[94.196684,32.51621],[94.176974,32.454117],[94.137554,32.433915],[94.091974,32.463207],[94.049474,32.469771],[94.03038,32.448057],[93.978641,32.459672],[93.960163,32.484917],[93.90904,32.463207],[93.861613,32.466237],[93.851142,32.50965],[93.820345,32.549511],[93.75136,32.56313],[93.721795,32.578261],[93.651577,32.571705],[93.618933,32.522771],[93.516687,32.47583],[93.501904,32.503593],[93.476651,32.504603],[93.4631,32.556069],[93.411977,32.558086],[93.385492,32.525294],[93.33868,32.5712],[93.308499,32.580278],[93.300492,32.619604],[93.260456,32.62666],[93.239514,32.662439],[93.210565,32.655385],[93.176688,32.6705],[93.159442,32.644803],[93.087993,32.63674],[93.069515,32.626156],[93.023935,32.703239],[93.019624,32.737477],[93.00053,32.741001],[92.964189,32.714821],[92.933392,32.719353],[92.866871,32.698203],[92.822523,32.729926],[92.789262,32.719856],[92.756618,32.743014],[92.686401,32.76516],[92.667922,32.73194],[92.634662,32.720863],[92.574916,32.741001],[92.56814,32.73194],[92.484372,32.745028],[92.459119,32.76365],[92.411076,32.748048],[92.355641,32.764657],[92.343938,32.738484],[92.310062,32.751571],[92.255243,32.720863],[92.198577,32.754591],[92.211511,32.788306],[92.193649,32.801889],[92.227526,32.821003],[92.205352,32.866255],[92.145606,32.885857],[92.101874,32.860222],[92.038432,32.860725],[92.018722,32.829552],[91.955897,32.8205],[91.896766,32.907967],[91.857962,32.90244],[91.839484,32.948152],[91.799448,32.942126],[91.752637,32.969242],[91.685499,32.989324],[91.664557,33.012913],[91.583253,33.0375],[91.55492,33.060074],[91.535826,33.10019],[91.49579,33.109214],[91.436044,33.066092],[91.370138,33.100691],[91.311624,33.108211],[91.261733,33.141291],[91.226624,33.141792],[91.18782,33.106206],[91.161335,33.108712],[91.147784,33.07211],[91.072024,33.113224],[91.037531,33.098686],[91.001807,33.11573],[90.927894,33.120241],[90.902024,33.083143],[90.88293,33.120241],[90.803474,33.114227],[90.740032,33.142293],[90.704308,33.135778],[90.627315,33.180368],[90.562642,33.229441],[90.490577,33.264977],[90.405577,33.260473],[90.363077,33.279487],[90.332896,33.310501],[90.246665,33.423959],[90.22018,33.437943],[90.107463,33.460913],[90.088984,33.478885],[90.083441,33.525295],[90.01076,33.553728],[89.984275,33.612061],[90.008296,33.687785],[89.981195,33.70322],[89.983659,33.725622],[89.907282,33.741051],[89.902355,33.758467],[89.942391,33.801246],[89.899891,33.80771],[89.837065,33.868853],[89.795181,33.865374],[89.73174,33.921509],[89.718805,33.946832],[89.688008,33.959739],[89.684928,33.990013],[89.635037,34.049537],[89.656595,34.057966],[89.655979,34.097126],[89.71203,34.131809],[89.756993,34.124874],[89.760073,34.152613],[89.789638,34.150632],[89.816739,34.16945],[89.838297,34.263477],[89.825362,34.293642],[89.86663,34.324785],[89.858623,34.359375],[89.820435,34.369255],[89.799493,34.39642],[89.819819,34.420614],[89.823515,34.455657],[89.814891,34.548871],[89.777935,34.574499],[89.798877,34.628686],[89.74837,34.641981],[89.72558,34.660689],[89.732356,34.732035],[89.799493,34.743838],[89.825978,34.796931],[89.867862,34.81069],[89.838913,34.865705],[89.814891,34.86816],[89.821051,34.902033],[89.78779,34.921664],[89.747138,34.903506],[89.707102,34.919701],[89.670146,34.887798],[89.578987,34.895162],[89.560509,34.938836],[89.59069,35.057965],[89.593153,35.104491],[89.579603,35.118688],[89.519241,35.133862],[89.46935,35.214577],[89.450255,35.223867],[89.48598,35.256616],[89.531559,35.276161],[89.494603,35.298632],[89.516161,35.330862],[89.497067,35.361128],[89.58761,35.383575],[89.619639,35.412357],[89.658443,35.425526],[89.685544,35.416259],[89.739131,35.468429],[89.765,35.482563],[89.740979,35.507412],[89.720037,35.501566],[89.699711,35.544916],[89.71203,35.581915],[89.75145,35.580942],[89.765616,35.599922],[89.726196,35.648082],[89.748986,35.66267],[89.747138,35.7516],[89.782863,35.773453],[89.767464,35.799183],[89.801957,35.848193],[89.778551,35.861775],[89.707718,35.849163],[89.654747,35.848193],[89.62395,35.859349],[89.550654,35.856924],[89.554965,35.873414],[89.489676,35.903475],[89.428082,35.917531],[89.434857,35.992136],[89.404676,36.016827],[89.417611,36.044897],[89.474893,36.022151],[89.605472,36.038123],[89.688624,36.091337],[89.711414,36.093272]]]]}},{"type":"Feature","properties":{"adcode":610000,"name":"陕西省","center":[108.948024,34.263161],"centroid":[108.887114,35.263661],"childrenNum":10,"level":"province","parent":{"adcode":100000},"subFeatureIndex":26,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[110.379257,34.600612],[110.29549,34.610956],[110.269004,34.629671],[110.229584,34.692679],[110.243135,34.725641],[110.246831,34.789068],[110.230816,34.880925],[110.262229,34.944233],[110.320743,35.00504],[110.373714,35.134351],[110.364475,35.197952],[110.378642,35.210666],[110.374946,35.251728],[110.45009,35.327933],[110.477808,35.413821],[110.531394,35.511309],[110.567735,35.539559],[110.589293,35.602355],[110.609619,35.632031],[110.57759,35.701559],[110.571431,35.800639],[110.550489,35.838005],[110.549257,35.877778],[110.511684,35.879718],[110.516612,35.918501],[110.502445,35.947575],[110.516612,35.971796],[110.49259,35.994073],[110.491974,36.034735],[110.467953,36.074893],[110.447011,36.164328],[110.45625,36.22663],[110.474112,36.248352],[110.474112,36.306729],[110.459946,36.327946],[110.487047,36.393972],[110.489511,36.430094],[110.47288,36.453203],[110.503677,36.488335],[110.488895,36.556628],[110.496902,36.582102],[110.447627,36.621018],[110.426685,36.657514],[110.394656,36.676716],[110.402663,36.697352],[110.438388,36.685835],[110.447011,36.737649],[110.407591,36.776007],[110.423605,36.818179],[110.406975,36.824886],[110.424221,36.855539],[110.376178,36.882351],[110.408823,36.892403],[110.424221,36.963685],[110.381721,37.002408],[110.382953,37.022001],[110.426685,37.008621],[110.417446,37.027257],[110.460561,37.044932],[110.49567,37.086956],[110.535706,37.115118],[110.53509,37.138021],[110.590525,37.187145],[110.651503,37.256722],[110.661974,37.281963],[110.690307,37.287201],[110.678604,37.317668],[110.695234,37.34955],[110.641648,37.360015],[110.630561,37.372858],[110.644111,37.435135],[110.740198,37.44939],[110.759292,37.474567],[110.770995,37.538184],[110.795017,37.558586],[110.771611,37.594634],[110.763604,37.639668],[110.793169,37.650567],[110.775306,37.680886],[110.706321,37.705511],[110.716792,37.728708],[110.750669,37.736281],[110.735886,37.77035],[110.680452,37.790216],[110.59422,37.922049],[110.522771,37.955088],[110.528315,37.990471],[110.507989,38.013107],[110.501829,38.097929],[110.519692,38.130889],[110.509221,38.192061],[110.528315,38.211814],[110.565887,38.215105],[110.57759,38.297345],[110.601612,38.308147],[110.661358,38.308617],[110.701394,38.353215],[110.746973,38.366355],[110.77777,38.440924],[110.796864,38.453579],[110.840596,38.439986],[110.874473,38.453579],[110.870777,38.510265],[110.907733,38.521035],[110.920052,38.581878],[110.898494,38.587024],[110.880632,38.626776],[110.916357,38.673981],[110.915125,38.704345],[110.965016,38.755699],[111.009363,38.847579],[110.995813,38.868084],[111.016755,38.889981],[111.009979,38.932823],[110.980414,38.970056],[110.998276,38.998433],[111.038313,39.020289],[111.094363,39.030053],[111.138095,39.064447],[111.147334,39.100681],[111.173819,39.135041],[111.163348,39.152678],[111.219399,39.244044],[111.213239,39.257021],[111.247732,39.302419],[111.202152,39.305197],[111.179363,39.326959],[111.186138,39.35149],[111.155341,39.338531],[111.159037,39.362596],[111.125776,39.366297],[111.087588,39.376013],[111.098059,39.401914],[111.064182,39.400989],[111.058639,39.447681],[111.10545,39.472631],[111.10545,39.497573],[111.148566,39.531277],[111.154725,39.569116],[111.136863,39.587106],[111.101138,39.559428],[111.017371,39.552045],[110.958856,39.519275],[110.891103,39.509118],[110.869545,39.494341],[110.782698,39.38804],[110.73835,39.348713],[110.731575,39.30705],[110.702626,39.273701],[110.626249,39.266751],[110.596684,39.282966],[110.566503,39.320014],[110.559728,39.351027],[110.524003,39.382952],[110.482735,39.360745],[110.434692,39.381101],[110.429764,39.341308],[110.385417,39.310291],[110.257917,39.407001],[110.243751,39.423645],[110.152592,39.45415],[110.12549,39.432891],[110.136577,39.39174],[110.161831,39.387115],[110.184005,39.355192],[110.217881,39.281113],[110.109476,39.249606],[110.041107,39.21623],[109.962267,39.212056],[109.90252,39.271848],[109.871723,39.243581],[109.961035,39.191651],[109.893897,39.141075],[109.92223,39.107183],[109.890818,39.103932],[109.851397,39.122971],[109.793499,39.074204],[109.762086,39.057476],[109.72513,39.018429],[109.665384,38.981687],[109.685094,38.968195],[109.672159,38.928167],[109.624116,38.85457],[109.549587,38.805618],[109.511399,38.833595],[109.444262,38.782763],[109.404226,38.720689],[109.338936,38.701542],[109.329081,38.66043],[109.367269,38.627711],[109.331545,38.597783],[109.276726,38.623035],[109.196654,38.552867],[109.175712,38.518694],[109.128901,38.480288],[109.054372,38.433892],[109.051292,38.385122],[109.007561,38.359316],[108.961981,38.26493],[108.976148,38.245192],[108.938575,38.207582],[108.964445,38.154894],[109.069155,38.091336],[109.050676,38.055059],[109.06977,38.023008],[109.037742,38.021593],[109.018648,37.971602],[108.982923,37.964053],[108.9743,37.931962],[108.93488,37.922521],[108.893612,37.978207],[108.883141,38.01405],[108.830786,38.049875],[108.797525,38.04799],[108.82709,37.989056],[108.798141,37.93385],[108.791982,37.872934],[108.799989,37.784068],[108.784591,37.764673],[108.791982,37.700303],[108.777815,37.683728],[108.720533,37.683728],[108.699591,37.669518],[108.628142,37.651988],[108.532671,37.690832],[108.485244,37.678044],[108.422418,37.648672],[108.301078,37.640616],[108.293071,37.656726],[108.24626,37.665728],[108.205608,37.655779],[108.193905,37.638246],[108.134159,37.622131],[108.055318,37.652462],[108.025137,37.649619],[108.012819,37.66857],[108.025753,37.696041],[107.993109,37.735335],[107.982022,37.787378],[107.884703,37.808186],[107.842819,37.828987],[107.732566,37.84931],[107.684523,37.888522],[107.65003,37.86443],[107.659269,37.844112],[107.646335,37.805349],[107.620465,37.776026],[107.599523,37.791162],[107.57119,37.776499],[107.499125,37.765619],[107.484959,37.706458],[107.425828,37.684201],[107.387024,37.691305],[107.389488,37.671413],[107.422133,37.665254],[107.361155,37.613125],[107.311264,37.609806],[107.330358,37.584201],[107.369162,37.58752],[107.345756,37.518725],[107.284162,37.481691],[107.282931,37.437036],[107.257677,37.337179],[107.273075,37.29101],[107.309416,37.239095],[107.270612,37.229089],[107.317423,37.200017],[107.336517,37.165687],[107.334669,37.138975],[107.306952,37.100799],[107.281083,37.127047],[107.268764,37.099367],[107.28601,37.054963],[107.288474,37.008143],[107.288474,37.008143],[107.291554,36.979463],[107.291554,36.979463],[107.310032,36.912502],[107.336517,36.925899],[107.365466,36.905324],[107.478183,36.908196],[107.533618,36.867031],[107.540393,36.828718],[107.5909,36.836382],[107.642023,36.819137],[107.670356,36.83303],[107.722095,36.802367],[107.742421,36.811951],[107.768291,36.792783],[107.866841,36.766899],[107.907493,36.750118],[107.914268,36.720861],[107.940754,36.694953],[107.938906,36.655594],[108.006659,36.683435],[108.02329,36.647912],[108.001732,36.639269],[108.060862,36.592194],[108.079956,36.614294],[108.092891,36.587388],[108.163724,36.563839],[108.1976,36.630144],[108.222854,36.631105],[108.204992,36.606607],[108.204992,36.606607],[108.210535,36.577296],[108.245644,36.571048],[108.262274,36.549417],[108.340498,36.559032],[108.365136,36.519603],[108.391621,36.505654],[108.408252,36.45946],[108.460606,36.422871],[108.495099,36.422389],[108.514809,36.445501],[108.510498,36.47438],[108.562852,36.43876],[108.618903,36.433946],[108.651548,36.384818],[108.641693,36.359279],[108.646004,36.254143],[108.712526,36.138716],[108.682345,36.062316],[108.688504,36.021183],[108.659555,35.990683],[108.652164,35.94806],[108.593649,35.950967],[108.562852,35.921409],[108.518505,35.905414],[108.499411,35.872444],[108.527744,35.82442],[108.533903,35.746257],[108.517889,35.699615],[108.539447,35.605761],[108.618287,35.557088],[108.625678,35.537124],[108.605968,35.503028],[108.631222,35.418698],[108.61028,35.355271],[108.614591,35.328909],[108.583178,35.294724],[108.547454,35.304981],[108.48894,35.275184],[108.36144,35.279581],[108.345426,35.300586],[108.296767,35.267855],[108.239484,35.256127],[108.221622,35.296678],[108.174811,35.304981],[108.094739,35.280069],[108.049159,35.253683],[107.949993,35.245375],[107.960464,35.263457],[107.867457,35.256127],[107.841587,35.276649],[107.745501,35.311819],[107.737494,35.267366],[107.667277,35.257104],[107.652494,35.244886],[107.686371,35.218],[107.715936,35.168114],[107.727639,35.120157],[107.769523,35.064333],[107.769523,35.064333],[107.773218,35.060904],[107.773218,35.060904],[107.814486,35.024646],[107.846515,35.024646],[107.863145,34.999158],[107.842203,34.979056],[107.741805,34.953553],[107.675284,34.9511],[107.638943,34.935402],[107.619849,34.964834],[107.564415,34.968757],[107.523763,34.909886],[107.455394,34.916757],[107.400575,34.932949],[107.369162,34.917738],[107.350068,34.93393],[107.286626,34.931968],[107.252749,34.880925],[107.189308,34.893198],[107.162206,34.944233],[107.119707,34.950119],[107.089526,34.976604],[107.08275,35.024156],[107.012533,35.029547],[106.990975,35.068252],[106.950323,35.066782],[106.901664,35.094698],[106.838222,35.080007],[106.710723,35.100574],[106.706411,35.081966],[106.615252,35.071191],[106.577064,35.089312],[106.541956,35.083925],[106.52163,35.027587],[106.494528,35.006021],[106.494528,35.006021],[106.484673,34.983959],[106.493296,34.941289],[106.527789,34.876507],[106.556122,34.861285],[106.550579,34.82936],[106.575216,34.769897],[106.539492,34.745805],[106.505615,34.746789],[106.487137,34.715311],[106.456956,34.703996],[106.442173,34.675455],[106.471122,34.634102],[106.419384,34.643458],[106.314058,34.578934],[106.341159,34.568093],[106.334384,34.517811],[106.455108,34.531617],[106.514238,34.511894],[106.513622,34.498085],[106.558586,34.48822],[106.610941,34.454177],[106.638042,34.391481],[106.717498,34.369255],[106.691013,34.337635],[106.705179,34.299575],[106.68239,34.256057],[106.652825,34.24369],[106.63373,34.260014],[106.589383,34.253584],[106.577064,34.280786],[106.526557,34.292159],[106.496376,34.238248],[106.5321,34.254079],[106.55797,34.229837],[106.585071,34.149641],[106.560434,34.109514],[106.501919,34.105055],[106.505615,34.056479],[106.471738,34.024244],[106.474202,33.970659],[106.41076,33.909093],[106.428007,33.866368],[106.475434,33.875809],[106.491448,33.834559],[106.461883,33.789807],[106.488369,33.757969],[106.482825,33.707203],[106.534564,33.695254],[106.575832,33.631497],[106.58076,33.576169],[106.540108,33.512822],[106.456956,33.532779],[106.447101,33.613058],[106.384891,33.612061],[106.35163,33.587137],[106.303587,33.604585],[106.237681,33.564201],[106.187174,33.546746],[106.108334,33.569686],[106.117573,33.602591],[106.086776,33.617045],[106.047356,33.610067],[105.971596,33.613058],[105.940183,33.570684],[105.902611,33.556222],[105.871198,33.511325],[105.842248,33.489866],[105.831162,33.451926],[105.837937,33.410971],[105.827466,33.379993],[105.709822,33.382991],[105.755401,33.329004],[105.752937,33.291994],[105.791741,33.278486],[105.799133,33.258471],[105.862574,33.234447],[105.917393,33.237951],[105.965436,33.204407],[105.968516,33.154318],[105.93156,33.178365],[105.897067,33.146803],[105.923552,33.147805],[105.934639,33.112221],[105.914929,33.066092],[105.926632,33.042517],[105.917393,32.993841],[105.861959,32.939112],[105.82685,32.950663],[105.735691,32.905454],[105.656851,32.895405],[105.638373,32.879323],[105.590329,32.87681],[105.565692,32.906962],[105.528119,32.919019],[105.49917,32.911986],[105.495475,32.873292],[105.524424,32.847654],[105.534279,32.790822],[105.555221,32.794343],[105.563844,32.724891],[105.585402,32.728919],[105.596489,32.69921],[105.677793,32.726402],[105.719061,32.759624],[105.768952,32.767676],[105.779423,32.750061],[105.822538,32.770192],[105.825002,32.824523],[105.849024,32.817985],[105.893371,32.838603],[105.93156,32.826032],[105.969132,32.849162],[106.011632,32.829552],[106.044277,32.864747],[106.071378,32.828546],[106.093552,32.82402],[106.07261,32.76365],[106.076921,32.76365],[106.076305,32.759121],[106.071378,32.758114],[106.120037,32.719856],[106.17424,32.6977],[106.254928,32.693671],[106.267863,32.673522],[106.301123,32.680071],[106.347935,32.671003],[106.389203,32.62666],[106.421231,32.616579],[106.451412,32.65992],[106.498224,32.649338],[106.517934,32.668485],[106.585687,32.68813],[106.626955,32.682086],[106.670071,32.694678],[106.733513,32.739491],[106.783404,32.735967],[106.793259,32.712807],[106.82344,32.705254],[106.854853,32.724388],[106.903512,32.721367],[106.912751,32.704247],[107.012533,32.721367],[107.066736,32.708779],[107.05996,32.686115],[107.098765,32.649338],[107.108004,32.600951],[107.080286,32.542448],[107.127098,32.482393],[107.189924,32.468256],[107.212097,32.428864],[107.263836,32.403099],[107.287858,32.457147],[107.313727,32.489965],[107.356843,32.506622],[107.382097,32.54043],[107.436299,32.529835],[107.438763,32.465732],[107.460937,32.453612],[107.456625,32.41775],[107.489886,32.425328],[107.527458,32.38238],[107.598291,32.411688],[107.648183,32.413709],[107.680827,32.397035],[107.707929,32.331826],[107.753508,32.338399],[107.812022,32.247844],[107.864377,32.201266],[107.890247,32.214432],[107.924739,32.197215],[107.979558,32.146051],[108.024521,32.177462],[108.018362,32.2119],[108.086731,32.233165],[108.143398,32.219495],[108.156948,32.239239],[108.179738,32.221521],[108.240716,32.274666],[108.310933,32.232152],[108.389773,32.263533],[108.414411,32.252399],[108.469846,32.270618],[108.507418,32.245819],[108.509882,32.201266],[108.543758,32.177969],[108.585026,32.17189],[108.676801,32.10297],[108.734084,32.106519],[108.75133,32.076098],[108.78767,32.04871],[108.837561,32.039072],[108.902235,31.984774],[108.986619,31.980205],[109.085785,31.929428],[109.123357,31.892851],[109.191111,31.85575],[109.195422,31.817618],[109.27611,31.79931],[109.279806,31.776418],[109.253936,31.759628],[109.282885,31.743343],[109.281654,31.716874],[109.381436,31.705165],[109.446109,31.722983],[109.502776,31.716365],[109.549587,31.73011],[109.585928,31.726546],[109.592087,31.789136],[109.633971,31.804396],[109.633971,31.824738],[109.60379,31.885737],[109.584696,31.900472],[109.62042,31.928412],[109.631507,31.962436],[109.590855,32.012688],[109.590855,32.047696],[109.621652,32.106519],[109.58716,32.161251],[109.604406,32.199241],[109.592703,32.219495],[109.550203,32.225065],[109.528645,32.270112],[109.495385,32.300468],[109.513247,32.342444],[109.502776,32.38895],[109.529877,32.405625],[109.526797,32.43341],[109.575457,32.506622],[109.637051,32.540935],[109.619804,32.56767],[109.631507,32.599943],[109.726978,32.608513],[109.746072,32.594901],[109.816905,32.577252],[109.910528,32.592884],[109.97089,32.577756],[110.017701,32.546989],[110.084223,32.580782],[110.090382,32.617083],[110.124259,32.616579],[110.153824,32.593388],[110.206179,32.633212],[110.156903,32.683093],[110.159367,32.767173],[110.127338,32.77774],[110.142121,32.802895],[110.105164,32.832569],[110.051578,32.851676],[109.988752,32.886359],[109.927158,32.887364],[109.907448,32.903947],[109.856941,32.910479],[109.847702,32.893395],[109.789804,32.882339],[109.76455,32.909474],[109.785492,32.987316],[109.794731,33.067095],[109.704188,33.101694],[109.688174,33.116733],[109.576073,33.110216],[109.522486,33.138785],[109.468283,33.140288],[109.438718,33.152314],[109.498464,33.207412],[109.514479,33.237951],[109.60687,33.235949],[109.619804,33.275484],[109.649985,33.251465],[109.693101,33.254468],[109.732521,33.231443],[109.813209,33.236449],[109.852013,33.247961],[109.916687,33.229942],[109.973353,33.203907],[109.999223,33.212419],[110.031252,33.191888],[110.164911,33.209415],[110.218497,33.163336],[110.285635,33.171352],[110.33799,33.160331],[110.372482,33.186379],[110.398352,33.176862],[110.398352,33.176862],[110.471032,33.171352],[110.54125,33.255469],[110.57759,33.250464],[110.59422,33.168346],[110.623785,33.143796],[110.650887,33.157324],[110.702626,33.097182],[110.753133,33.15031],[110.824582,33.158327],[110.828893,33.201403],[110.865234,33.213921],[110.9219,33.203907],[110.960704,33.253967],[110.984726,33.255469],[111.025994,33.330504],[111.025994,33.375495],[110.996429,33.435946],[111.02661,33.467903],[111.021066,33.471397],[111.021682,33.476389],[111.02661,33.478386],[111.002588,33.535772],[111.00382,33.578662],[110.966864,33.609071],[110.878784,33.634486],[110.823966,33.685793],[110.831973,33.713675],[110.81719,33.751003],[110.782082,33.796272],[110.74143,33.798759],[110.712481,33.833564],[110.66259,33.85295],[110.612083,33.852453],[110.587445,33.887733],[110.628713,33.910086],[110.627481,33.925482],[110.665669,33.937895],[110.671213,33.966192],[110.620706,34.035652],[110.587445,34.023252],[110.591757,34.101586],[110.61393,34.113478],[110.642264,34.161032],[110.621938,34.177372],[110.55788,34.193214],[110.55172,34.213012],[110.507989,34.217466],[110.43962,34.243196],[110.428533,34.288203],[110.451938,34.292653],[110.503677,34.33714],[110.473496,34.393457],[110.403279,34.433448],[110.403279,34.433448],[110.360779,34.516825],[110.372482,34.544435],[110.404511,34.557743],[110.366939,34.566614],[110.379257,34.600612]]],[[[111.02661,33.478386],[111.021682,33.476389],[111.021066,33.471397],[111.02661,33.467903],[111.02661,33.478386]]],[[[106.076921,32.76365],[106.07261,32.76365],[106.071378,32.758114],[106.076305,32.759121],[106.076921,32.76365]]]]}},{"type":"Feature","properties":{"adcode":620000,"name":"甘肃省","center":[103.823557,36.058039],"childrenNum":14,"level":"province","parent":{"adcode":100000},"subFeatureIndex":27,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[106.506231,35.737514],[106.504383,35.736057],[106.498224,35.732656],[106.49268,35.732656],[106.434782,35.688436],[106.460036,35.643705],[106.47913,35.575101],[106.460036,35.578995],[106.440941,35.52641],[106.465579,35.481101],[106.490217,35.480613],[106.483441,35.450393],[106.503767,35.415284],[106.501304,35.364056],[106.472354,35.310842],[106.415688,35.276161],[106.368261,35.273718],[106.363333,35.238532],[106.319601,35.265411],[106.241377,35.358687],[106.237681,35.409431],[106.196414,35.409919],[106.173008,35.437716],[106.129892,35.393333],[106.113262,35.361616],[106.083081,35.421624],[106.073226,35.420649],[106.067682,35.436254],[106.073226,35.447468],[106.071378,35.449418],[106.06953,35.458193],[106.071994,35.463555],[106.054132,35.45478],[106.034422,35.469404],[106.002393,35.438692],[105.894603,35.413821],[105.897683,35.451368],[106.048588,35.488898],[106.047356,35.498155],[106.023335,35.49377],[106.017175,35.519103],[105.900147,35.54735],[105.868734,35.540046],[105.847176,35.490359],[105.816379,35.575101],[105.800365,35.564878],[105.762176,35.602841],[105.759097,35.634464],[105.713517,35.650513],[105.722756,35.673366],[105.690727,35.698643],[105.723988,35.725854],[105.740618,35.698643],[105.759097,35.724883],[105.70243,35.733142],[105.667322,35.749657],[105.595873,35.715651],[105.481924,35.727312],[105.457286,35.771511],[105.432033,35.787533],[105.428953,35.819082],[105.408627,35.822479],[105.38091,35.792873],[105.371055,35.844312],[105.39754,35.857409],[105.350113,35.875839],[105.324859,35.941761],[105.343954,36.033767],[105.406163,36.074409],[105.430801,36.10391],[105.491163,36.101009],[105.515185,36.147415],[105.478844,36.213111],[105.460366,36.223733],[105.45975,36.268137],[105.476381,36.293224],[105.455439,36.321678],[105.425873,36.330357],[105.401236,36.369881],[105.398156,36.430575],[105.363048,36.443093],[105.362432,36.496514],[105.322396,36.535954],[105.281744,36.522489],[105.252179,36.553263],[105.2762,36.563358],[105.261418,36.602764],[105.22015,36.631105],[105.225693,36.664716],[105.201056,36.700711],[105.218302,36.730455],[105.272505,36.739567],[105.275584,36.752515],[105.319932,36.742924],[105.340874,36.764502],[105.334714,36.80093],[105.303302,36.820575],[105.279896,36.86751],[105.244787,36.894796],[105.178882,36.892403],[105.185657,36.942164],[105.165331,36.99476],[105.128991,36.996194],[105.05939,37.022956],[105.03968,37.007187],[105.004571,37.035378],[104.95468,37.040156],[104.954064,37.077407],[104.914644,37.097935],[104.888158,37.15901],[104.864753,37.17284],[104.85613,37.211933],[104.776673,37.246718],[104.717543,37.208597],[104.638087,37.201923],[104.600515,37.242907],[104.624536,37.298627],[104.651022,37.290534],[104.673812,37.317668],[104.713848,37.329566],[104.662109,37.367626],[104.679971,37.408044],[104.521059,37.43466],[104.499501,37.421353],[104.448994,37.42468],[104.437907,37.445589],[104.365226,37.418026],[104.298705,37.414223],[104.287002,37.428007],[104.237727,37.411847],[104.183524,37.406618],[104.089285,37.465067],[103.935916,37.572818],[103.874938,37.604117],[103.841062,37.64725],[103.683381,37.777919],[103.627947,37.797783],[103.40744,37.860651],[103.362477,38.037621],[103.368636,38.08898],[103.53494,38.156776],[103.507838,38.280905],[103.465339,38.353215],[103.416063,38.404821],[103.85954,38.64454],[104.011677,38.85923],[104.044322,38.895105],[104.173053,38.94446],[104.196459,38.9882],[104.190915,39.042139],[104.207546,39.083495],[104.171205,39.160567],[104.047401,39.297788],[104.073271,39.351953],[104.089901,39.419947],[103.955626,39.456923],[103.85338,39.461543],[103.728961,39.430117],[103.595302,39.386652],[103.428998,39.353341],[103.344615,39.331588],[103.259615,39.263971],[103.188166,39.215302],[103.133347,39.192579],[103.007696,39.099753],[102.883892,39.120649],[102.616574,39.171703],[102.579002,39.183301],[102.45335,39.255167],[102.3548,39.231993],[102.276576,39.188868],[102.050526,39.141075],[102.012338,39.127149],[101.902701,39.111827],[101.833715,39.08907],[101.926106,39.000758],[101.955055,38.985874],[102.045599,38.904885],[102.075164,38.891378],[101.941505,38.808883],[101.873751,38.733761],[101.777049,38.66043],[101.672955,38.6908],[101.601506,38.65529],[101.562702,38.713218],[101.412413,38.764099],[101.331109,38.777164],[101.307087,38.80282],[101.34158,38.822406],[101.33542,38.847113],[101.24303,38.860628],[101.237486,38.907214],[101.198682,38.943064],[101.228863,39.020754],[101.117378,38.975174],[100.969553,38.946788],[100.961545,39.005874],[100.901799,39.030053],[100.875314,39.002619],[100.835278,39.025869],[100.829118,39.075133],[100.864227,39.106719],[100.842669,39.199999],[100.842053,39.405614],[100.707778,39.404689],[100.606764,39.387577],[100.498975,39.400527],[100.500823,39.481408],[100.44354,39.485565],[100.326512,39.509118],[100.301258,39.572345],[100.314193,39.606935],[100.250135,39.685274],[100.128179,39.702312],[100.040716,39.757083],[99.958796,39.769504],[99.904593,39.785601],[99.822058,39.860063],[99.672384,39.888079],[99.469124,39.875221],[99.440791,39.885783],[99.459885,39.898181],[99.491298,39.884406],[99.533182,39.891753],[99.714268,39.972061],[99.751225,40.006909],[99.841152,40.013326],[99.927383,40.063727],[99.955716,40.150695],[100.007455,40.20008],[100.169447,40.277743],[100.169447,40.541131],[100.242744,40.618855],[100.237201,40.716905],[100.224882,40.727337],[100.107853,40.875475],[100.057346,40.908049],[99.985897,40.909858],[99.673,40.93292],[99.565827,40.846961],[99.174705,40.858278],[99.172858,40.747289],[99.12543,40.715091],[99.102025,40.676522],[99.041662,40.693767],[98.984996,40.782644],[98.790975,40.705564],[98.80699,40.660181],[98.802678,40.607043],[98.762642,40.639748],[98.72199,40.657911],[98.689345,40.691952],[98.668403,40.773128],[98.569853,40.746836],[98.627751,40.677884],[98.344419,40.568413],[98.333332,40.918903],[98.25018,40.93925],[98.184891,40.988056],[98.142391,41.001607],[97.971776,41.09774],[97.903407,41.168057],[97.629314,41.440498],[97.613915,41.477276],[97.84674,41.656379],[97.653335,41.986856],[97.500582,42.243894],[97.371235,42.457076],[97.172903,42.795257],[96.968411,42.756161],[96.742361,42.75704],[96.386348,42.727592],[96.166458,42.623314],[96.103632,42.604375],[96.072219,42.569566],[96.02356,42.542675],[96.0174,42.482239],[95.978596,42.436762],[96.06606,42.414674],[96.042038,42.352787],[96.040806,42.326688],[96.178161,42.21775],[96.077147,42.149457],[96.13874,42.05399],[96.137509,42.019765],[96.117183,41.985966],[96.054973,41.936124],[95.998306,41.906289],[95.855408,41.849699],[95.801206,41.848361],[95.759322,41.835878],[95.65646,41.826067],[95.57146,41.796181],[95.445193,41.719841],[95.39407,41.693481],[95.335556,41.644305],[95.299831,41.565994],[95.247476,41.61344],[95.194505,41.694821],[95.199433,41.719395],[95.16494,41.735474],[95.135991,41.772976],[95.110738,41.768513],[95.011572,41.726541],[94.969072,41.718948],[94.861898,41.668451],[94.809543,41.619256],[94.750413,41.538227],[94.534219,41.505966],[94.184365,41.268444],[94.01067,41.114875],[93.908424,40.983539],[93.809874,40.879548],[93.820961,40.793519],[93.760599,40.664721],[93.506216,40.648376],[92.928465,40.572504],[92.920458,40.391792],[92.906907,40.310609],[92.796654,40.153897],[92.745531,39.868331],[92.687632,39.657174],[92.639589,39.514196],[92.52564,39.368611],[92.378431,39.258411],[92.339011,39.236628],[92.343938,39.146181],[92.366112,39.096037],[92.366728,39.059335],[92.41046,39.03842],[92.459119,39.042604],[92.459119,39.063982],[92.489916,39.099753],[92.545966,39.111362],[92.659299,39.109969],[92.765857,39.136898],[92.866871,39.138754],[92.889045,39.160103],[92.938936,39.169848],[92.978356,39.143396],[93.043029,39.146645],[93.115094,39.17959],[93.142196,39.160567],[93.131725,39.108112],[93.165601,39.090928],[93.198246,39.045857],[93.179152,38.923977],[93.237666,38.916062],[93.274007,38.896036],[93.453245,38.915596],[93.729186,38.924443],[93.834511,38.867618],[93.884403,38.867618],[93.884403,38.826136],[93.769838,38.821007],[93.756287,38.807484],[93.773533,38.771099],[93.800019,38.750566],[93.885018,38.720689],[93.95154,38.715086],[93.973098,38.724891],[94.281067,38.7599],[94.370379,38.7627],[94.511429,38.445142],[94.527443,38.425922],[94.527443,38.365416],[94.56132,38.351807],[94.582878,38.36917],[94.672805,38.386998],[94.812623,38.385591],[94.861282,38.393565],[94.884072,38.414669],[94.973999,38.430142],[95.045448,38.418889],[95.072549,38.402476],[95.122441,38.417014],[95.140919,38.392158],[95.185266,38.379492],[95.209904,38.327868],[95.229614,38.330685],[95.259179,38.302981],[95.315846,38.318947],[95.408236,38.300163],[95.440881,38.310965],[95.455664,38.291709],[95.487693,38.314721],[95.51849,38.294997],[95.585011,38.343359],[95.608417,38.339134],[95.671858,38.388405],[95.703887,38.400131],[95.723597,38.378554],[95.775952,38.356031],[95.83693,38.344298],[95.852945,38.287481],[95.89606,38.2903],[95.932401,38.259291],[95.93856,38.237202],[96.006929,38.207582],[96.06606,38.173245],[96.109175,38.187358],[96.221892,38.149246],[96.252689,38.167599],[96.264392,38.145952],[96.313051,38.161952],[96.301964,38.183124],[96.335841,38.246132],[96.378341,38.277146],[96.46334,38.277616],[96.665369,38.23015],[96.655514,38.295936],[96.638883,38.307208],[96.626564,38.356031],[96.698013,38.422172],[96.707868,38.459203],[96.6666,38.483567],[96.706637,38.505582],[96.780549,38.504177],[96.800259,38.52759],[96.767614,38.552399],[96.808882,38.582346],[96.7941,38.608072],[96.847071,38.599186],[96.876636,38.580475],[96.961019,38.558015],[97.055874,38.594508],[97.047251,38.653888],[97.057722,38.67258],[97.009063,38.702477],[97.023229,38.755699],[97.00044,38.7613],[96.987505,38.793025],[96.993664,38.834993],[96.983809,38.869016],[96.940693,38.90768],[96.938846,38.95563],[96.965331,39.017034],[96.95794,39.041674],[96.969643,39.097895],[97.012142,39.142004],[96.962251,39.198144],[97.017686,39.208347],[97.060186,39.19768],[97.14149,39.199999],[97.220946,39.193042],[97.315185,39.164744],[97.347213,39.167528],[97.371235,39.140611],[97.401416,39.146645],[97.458698,39.117863],[97.504894,39.076527],[97.58127,39.052364],[97.679205,39.010524],[97.701379,38.963076],[97.828878,38.93003],[97.875689,38.898365],[98.009348,38.85923],[98.029058,38.834061],[98.068478,38.816344],[98.091884,38.786495],[98.167645,38.840121],[98.242173,38.880664],[98.235398,38.918855],[98.276666,38.963541],[98.287753,38.992386],[98.280977,39.027263],[98.316702,39.040744],[98.383839,39.029588],[98.401086,39.001688],[98.432498,38.996107],[98.428187,38.976104],[98.457752,38.952838],[98.526737,38.95563],[98.584635,38.93003],[98.624056,38.959353],[98.612353,38.977035],[98.661628,38.993782],[98.70536,39.043533],[98.730613,39.057011],[98.743548,39.086747],[98.816845,39.085818],[98.818076,39.064911],[98.886446,39.040744],[98.903076,39.012384],[98.951735,38.987735],[99.054597,38.97657],[99.107568,38.951907],[99.071843,38.921184],[99.068764,38.896968],[99.141445,38.852706],[99.222133,38.788827],[99.291118,38.765966],[99.361951,38.718354],[99.375502,38.684727],[99.412458,38.665571],[99.450646,38.60433],[99.501769,38.612281],[99.52887,38.546314],[99.585537,38.498556],[99.63974,38.474666],[99.65945,38.449361],[99.727203,38.415607],[99.758,38.410449],[99.826985,38.370109],[99.960028,38.320825],[100.001912,38.315191],[100.049955,38.283254],[100.071513,38.284663],[100.117093,38.253652],[100.126332,38.231561],[100.182998,38.222158],[100.159592,38.291239],[100.163904,38.328337],[100.136803,38.33444],[100.093071,38.407166],[100.022238,38.432017],[100.001296,38.467169],[100.025933,38.507923],[100.064122,38.518694],[100.086911,38.492936],[100.113397,38.497151],[100.163288,38.461546],[100.24028,38.441861],[100.259374,38.366355],[100.301874,38.388405],[100.331439,38.337257],[100.318505,38.329276],[100.396729,38.293118],[100.424446,38.307208],[100.432453,38.275267],[100.459555,38.2654],[100.474953,38.288891],[100.516837,38.272448],[100.545786,38.247072],[100.595061,38.242372],[100.619083,38.26587],[100.71517,38.253652],[100.752126,38.238612],[100.825423,38.158658],[100.860531,38.148305],[100.913502,38.17889],[100.93814,38.16007],[100.91843,38.129006],[100.922125,38.084741],[100.888864,38.056001],[100.895024,38.013107],[100.91843,37.999432],[100.964009,38.011221],[101.077342,37.941874],[101.103211,37.946593],[101.114298,37.92016],[101.152486,37.891356],[101.159262,37.86821],[101.202994,37.84742],[101.276906,37.83655],[101.362522,37.791162],[101.382848,37.822369],[101.459224,37.86632],[101.551615,37.835604],[101.598427,37.827569],[101.670491,37.754264],[101.659405,37.733441],[101.791832,37.696041],[101.815853,37.654357],[101.854657,37.664781],[101.873135,37.686569],[101.946432,37.728235],[101.998787,37.724921],[102.036359,37.685149],[102.048678,37.651515],[102.035128,37.627819],[102.102265,37.582304],[102.131214,37.54625],[102.103497,37.482641],[102.125055,37.48549],[102.176794,37.458892],[102.19712,37.420403],[102.299981,37.391404],[102.29875,37.370004],[102.368351,37.327662],[102.428097,37.308624],[102.419474,37.294343],[102.45335,37.271487],[102.457662,37.248147],[102.490307,37.223371],[102.533422,37.217176],[102.578386,37.17284],[102.599944,37.174748],[102.642444,37.099845],[102.583314,37.104618],[102.488459,37.078362],[102.506321,37.019134],[102.450271,36.968467],[102.499546,36.954599],[102.526031,36.928291],[102.56114,36.91968],[102.587009,36.869904],[102.639364,36.852666],[102.720052,36.767858],[102.692335,36.775528],[102.639364,36.732853],[102.612879,36.738129],[102.601176,36.710307],[102.630741,36.650793],[102.684328,36.619097],[102.724364,36.613813],[102.714509,36.599401],[102.761936,36.568645],[102.734219,36.562396],[102.753313,36.525855],[102.793349,36.497957],[102.771791,36.47438],[102.829689,36.365544],[102.831537,36.365544],[102.838928,36.345783],[102.836465,36.344819],[102.845704,36.331803],[102.896827,36.331803],[102.922696,36.298047],[103.024942,36.256556],[103.021246,36.232906],[103.066826,36.216974],[103.048964,36.199107],[102.986754,36.193312],[102.965812,36.151765],[102.948566,36.150798],[102.941174,36.104877],[102.882044,36.082632],[102.932551,36.048285],[102.968276,36.044414],[102.951645,36.021667],[102.971971,35.995525],[102.942406,35.92674],[102.954725,35.858864],[102.94487,35.829757],[102.914073,35.845282],[102.81737,35.850133],[102.787189,35.862745],[102.739146,35.821023],[102.715125,35.815685],[102.686175,35.771996],[102.707733,35.70496],[102.744074,35.657807],[102.7644,35.653431],[102.763168,35.612086],[102.808747,35.560496],[102.746537,35.545403],[102.729291,35.523487],[102.782878,35.527871],[102.743458,35.494745],[102.695414,35.528358],[102.570995,35.548324],[102.531575,35.580455],[102.503241,35.585322],[102.49893,35.545403],[102.437952,35.455268],[102.447807,35.437229],[102.408387,35.409431],[102.314764,35.434303],[102.293822,35.424063],[102.287663,35.36552],[102.317844,35.343067],[102.311684,35.31426],[102.280887,35.303028],[102.3123,35.282512],[102.370199,35.263946],[102.365887,35.235599],[102.404075,35.179366],[102.346793,35.164201],[102.310452,35.128967],[102.29567,35.071681],[102.252554,35.048657],[102.218062,35.057475],[102.211286,35.034937],[102.176178,35.032977],[102.157699,35.010923],[102.133678,35.014844],[102.094874,34.986901],[102.048062,34.910868],[102.068388,34.887798],[101.985852,34.90007],[101.916867,34.873561],[101.923027,34.835746],[101.917483,34.705964],[101.919947,34.621791],[101.934729,34.58731],[101.956287,34.582876],[101.97415,34.548871],[102.001867,34.538519],[102.093026,34.536547],[102.139837,34.50351],[102.155852,34.507456],[102.169402,34.457631],[102.205743,34.407777],[102.259329,34.355917],[102.237156,34.34307],[102.237156,34.34307],[102.186649,34.352952],[102.149692,34.271885],[102.067772,34.293642],[102.062229,34.227858],[102.01357,34.218456],[102.030816,34.190739],[102.003099,34.162022],[101.965526,34.167469],[101.955055,34.109514],[101.897773,34.133791],[101.874367,34.130323],[101.851578,34.153108],[101.836795,34.124378],[101.788136,34.131809],[101.764114,34.122892],[101.736397,34.080275],[101.718535,34.083249],[101.703136,34.119424],[101.674187,34.110506],[101.6206,34.178857],[101.53868,34.212022],[101.492485,34.195689],[101.482014,34.218951],[101.417956,34.227858],[101.369913,34.248143],[101.327413,34.24468],[101.325565,34.268423],[101.268899,34.278808],[101.228863,34.298586],[101.235022,34.325279],[101.193754,34.336646],[101.178356,34.320831],[101.098284,34.329233],[101.054552,34.322808],[100.986799,34.374689],[100.951074,34.38358],[100.895024,34.375183],[100.868538,34.332693],[100.821727,34.317371],[100.798321,34.260014],[100.809408,34.247153],[100.764445,34.178857],[100.806329,34.155584],[100.848828,34.089692],[100.870386,34.083744],[100.880857,34.036644],[100.93506,33.990013],[100.927669,33.975126],[100.965857,33.946832],[100.994806,33.891707],[101.023139,33.896178],[101.054552,33.863386],[101.153718,33.8445],[101.153102,33.823124],[101.190675,33.791796],[101.186363,33.741051],[101.162957,33.719649],[101.177124,33.685295],[101.166653,33.659894],[101.217776,33.669856],[101.23687,33.685793],[101.302776,33.657902],[101.385312,33.644949],[101.424732,33.655411],[101.428427,33.680315],[101.501724,33.702723],[101.58426,33.674339],[101.585492,33.645448],[101.616905,33.598603],[101.611977,33.565199],[101.622448,33.502343],[101.718535,33.494857],[101.748716,33.505337],[101.769042,33.538765],[101.783208,33.556721],[101.831252,33.554726],[101.844186,33.602591],[101.884222,33.578163],[101.907012,33.539264],[101.906396,33.48188],[101.946432,33.442937],[101.915635,33.425957],[101.887302,33.383991],[101.877447,33.314502],[101.769658,33.26898],[101.770274,33.248962],[101.83002,33.213921],[101.841723,33.184876],[101.825708,33.119239],[101.865744,33.103198],[101.887302,33.135778],[101.921795,33.153817],[101.935345,33.186879],[101.99386,33.1999],[102.054838,33.189884],[102.08933,33.204908],[102.08933,33.227439],[102.117047,33.288492],[102.144765,33.273983],[102.160163,33.242956],[102.200815,33.223434],[102.217446,33.247961],[102.192192,33.337005],[102.218062,33.349503],[102.258098,33.409472],[102.296286,33.413969],[102.310452,33.397982],[102.368967,33.41247],[102.392988,33.404477],[102.447807,33.454922],[102.462589,33.449429],[102.461358,33.501345],[102.446575,33.53228],[102.477988,33.543254],[102.440416,33.574673],[102.346793,33.605582],[102.31538,33.665374],[102.342481,33.725622],[102.284583,33.719151],[102.324619,33.754486],[102.296286,33.783838],[102.243315,33.786823],[102.261177,33.821136],[102.25317,33.861399],[102.136142,33.965199],[102.16817,33.983066],[102.226069,33.963214],[102.248858,33.98654],[102.287047,33.977607],[102.315996,33.993983],[102.345561,33.969666],[102.392372,33.971651],[102.406539,34.033172],[102.437336,34.087214],[102.471213,34.072839],[102.511865,34.086222],[102.615958,34.099604],[102.649219,34.080275],[102.655994,34.113478],[102.598712,34.14766],[102.651067,34.165983],[102.664002,34.192719],[102.694799,34.198659],[102.728675,34.235774],[102.779798,34.236764],[102.798276,34.272874],[102.856791,34.270895],[102.85987,34.301058],[102.911609,34.312923],[102.949181,34.292159],[102.977515,34.252595],[102.973203,34.205588],[103.005848,34.184798],[103.052043,34.195194],[103.100087,34.181828],[103.124108,34.162022],[103.121644,34.112487],[103.178927,34.079779],[103.129652,34.065899],[103.119797,34.03466],[103.147514,34.036644],[103.157369,33.998944],[103.120413,33.953286],[103.1315,33.931937],[103.16476,33.929454],[103.181391,33.900649],[103.153673,33.819147],[103.165376,33.805721],[103.228202,33.79478],[103.24976,33.814175],[103.284868,33.80224],[103.278709,33.774387],[103.35447,33.743539],[103.434542,33.752993],[103.464723,33.80224],[103.518309,33.807213],[103.545411,33.719649],[103.520157,33.678323],[103.552186,33.671351],[103.563889,33.699735],[103.593454,33.716164],[103.645809,33.708697],[103.667983,33.685793],[103.690772,33.69376],[103.778236,33.658898],[103.861388,33.682307],[103.980264,33.670852],[104.046169,33.686291],[104.103452,33.663381],[104.176749,33.5996],[104.155191,33.542755],[104.180444,33.472895],[104.213089,33.446932],[104.22048,33.404477],[104.272219,33.391486],[104.292545,33.336505],[104.373849,33.345004],[104.420045,33.327004],[104.386168,33.298497],[104.333813,33.315502],[104.303632,33.304499],[104.323958,33.26898],[104.32827,33.223934],[104.351059,33.158828],[104.378161,33.109214],[104.337509,33.038002],[104.391711,33.035493],[104.426204,33.010906],[104.383704,32.994343],[104.378161,32.953174],[104.345516,32.940117],[104.288234,32.942628],[104.277147,32.90244],[104.294393,32.835586],[104.363994,32.822511],[104.458849,32.748551],[104.51182,32.753585],[104.526602,32.728416],[104.582653,32.722374],[104.592508,32.695685],[104.643015,32.661935],[104.696601,32.673522],[104.739717,32.635228],[104.795768,32.643292],[104.820405,32.662943],[104.845659,32.653873],[104.881999,32.600951],[104.925115,32.607505],[105.026745,32.650346],[105.0791,32.637244],[105.111128,32.593893],[105.185041,32.617587],[105.215222,32.63674],[105.219534,32.666469],[105.263265,32.652362],[105.297758,32.656897],[105.347033,32.68259],[105.368591,32.712807],[105.448663,32.732946],[105.454207,32.767173],[105.427721,32.784281],[105.396308,32.85067],[105.396308,32.85067],[105.38091,32.876307],[105.408011,32.885857],[105.414171,32.922034],[105.467757,32.930071],[105.49917,32.911986],[105.528119,32.919019],[105.565692,32.906962],[105.590329,32.87681],[105.638373,32.879323],[105.656851,32.895405],[105.735691,32.905454],[105.82685,32.950663],[105.861959,32.939112],[105.917393,32.993841],[105.926632,33.042517],[105.914929,33.066092],[105.934639,33.112221],[105.923552,33.147805],[105.897067,33.146803],[105.93156,33.178365],[105.968516,33.154318],[105.965436,33.204407],[105.917393,33.237951],[105.862574,33.234447],[105.799133,33.258471],[105.791741,33.278486],[105.752937,33.291994],[105.755401,33.329004],[105.709822,33.382991],[105.827466,33.379993],[105.837937,33.410971],[105.831162,33.451926],[105.842248,33.489866],[105.871198,33.511325],[105.902611,33.556222],[105.940183,33.570684],[105.971596,33.613058],[106.047356,33.610067],[106.086776,33.617045],[106.117573,33.602591],[106.108334,33.569686],[106.187174,33.546746],[106.237681,33.564201],[106.303587,33.604585],[106.35163,33.587137],[106.384891,33.612061],[106.447101,33.613058],[106.456956,33.532779],[106.540108,33.512822],[106.58076,33.576169],[106.575832,33.631497],[106.534564,33.695254],[106.482825,33.707203],[106.488369,33.757969],[106.461883,33.789807],[106.491448,33.834559],[106.475434,33.875809],[106.428007,33.866368],[106.41076,33.909093],[106.474202,33.970659],[106.471738,34.024244],[106.505615,34.056479],[106.501919,34.105055],[106.560434,34.109514],[106.585071,34.149641],[106.55797,34.229837],[106.5321,34.254079],[106.496376,34.238248],[106.526557,34.292159],[106.577064,34.280786],[106.589383,34.253584],[106.63373,34.260014],[106.652825,34.24369],[106.68239,34.256057],[106.705179,34.299575],[106.691013,34.337635],[106.717498,34.369255],[106.638042,34.391481],[106.610941,34.454177],[106.558586,34.48822],[106.513622,34.498085],[106.514238,34.511894],[106.455108,34.531617],[106.334384,34.517811],[106.341159,34.568093],[106.314058,34.578934],[106.419384,34.643458],[106.471122,34.634102],[106.442173,34.675455],[106.456956,34.703996],[106.487137,34.715311],[106.505615,34.746789],[106.539492,34.745805],[106.575216,34.769897],[106.550579,34.82936],[106.556122,34.861285],[106.527789,34.876507],[106.493296,34.941289],[106.484673,34.983959],[106.494528,35.006021],[106.494528,35.006021],[106.52163,35.027587],[106.541956,35.083925],[106.577064,35.089312],[106.615252,35.071191],[106.706411,35.081966],[106.710723,35.100574],[106.838222,35.080007],[106.901664,35.094698],[106.950323,35.066782],[106.990975,35.068252],[107.012533,35.029547],[107.08275,35.024156],[107.089526,34.976604],[107.119707,34.950119],[107.162206,34.944233],[107.189308,34.893198],[107.252749,34.880925],[107.286626,34.931968],[107.350068,34.93393],[107.369162,34.917738],[107.400575,34.932949],[107.455394,34.916757],[107.523763,34.909886],[107.564415,34.968757],[107.619849,34.964834],[107.638943,34.935402],[107.675284,34.9511],[107.741805,34.953553],[107.842203,34.979056],[107.863145,34.999158],[107.846515,35.024646],[107.814486,35.024646],[107.773218,35.060904],[107.773218,35.060904],[107.769523,35.064333],[107.769523,35.064333],[107.727639,35.120157],[107.715936,35.168114],[107.686371,35.218],[107.652494,35.244886],[107.667277,35.257104],[107.737494,35.267366],[107.745501,35.311819],[107.841587,35.276649],[107.867457,35.256127],[107.960464,35.263457],[107.949993,35.245375],[108.049159,35.253683],[108.094739,35.280069],[108.174811,35.304981],[108.221622,35.296678],[108.239484,35.256127],[108.296767,35.267855],[108.345426,35.300586],[108.36144,35.279581],[108.48894,35.275184],[108.547454,35.304981],[108.583178,35.294724],[108.614591,35.328909],[108.61028,35.355271],[108.631222,35.418698],[108.605968,35.503028],[108.625678,35.537124],[108.618287,35.557088],[108.539447,35.605761],[108.517889,35.699615],[108.533903,35.746257],[108.527744,35.82442],[108.499411,35.872444],[108.518505,35.905414],[108.562852,35.921409],[108.593649,35.950967],[108.652164,35.94806],[108.659555,35.990683],[108.688504,36.021183],[108.682345,36.062316],[108.712526,36.138716],[108.646004,36.254143],[108.641693,36.359279],[108.651548,36.384818],[108.618903,36.433946],[108.562852,36.43876],[108.510498,36.47438],[108.514809,36.445501],[108.495099,36.422389],[108.460606,36.422871],[108.408252,36.45946],[108.391621,36.505654],[108.365136,36.519603],[108.340498,36.559032],[108.262274,36.549417],[108.245644,36.571048],[108.210535,36.577296],[108.204992,36.606607],[108.204992,36.606607],[108.222854,36.631105],[108.1976,36.630144],[108.163724,36.563839],[108.092891,36.587388],[108.079956,36.614294],[108.060862,36.592194],[108.001732,36.639269],[108.02329,36.647912],[108.006659,36.683435],[107.938906,36.655594],[107.940754,36.694953],[107.914268,36.720861],[107.907493,36.750118],[107.866841,36.766899],[107.768291,36.792783],[107.742421,36.811951],[107.722095,36.802367],[107.670356,36.83303],[107.642023,36.819137],[107.5909,36.836382],[107.540393,36.828718],[107.533618,36.867031],[107.478183,36.908196],[107.365466,36.905324],[107.336517,36.925899],[107.310032,36.912502],[107.291554,36.979463],[107.291554,36.979463],[107.288474,37.008143],[107.288474,37.008143],[107.28601,37.054963],[107.268764,37.099367],[107.234887,37.096503],[107.181916,37.143269],[107.133873,37.134681],[107.095685,37.115595],[107.030395,37.140883],[107.031011,37.108436],[106.998367,37.106527],[106.905976,37.151378],[106.912135,37.110345],[106.891193,37.098413],[106.818512,37.141838],[106.776012,37.158056],[106.772933,37.120367],[106.750143,37.09889],[106.728585,37.121321],[106.687933,37.12991],[106.673151,37.1113],[106.6171,37.135158],[106.605397,37.127524],[106.645433,37.064992],[106.666991,37.016745],[106.646665,37.000496],[106.64297,36.962729],[106.594926,36.967988],[106.595542,36.94025],[106.540108,36.984244],[106.549347,36.941685],[106.601702,36.918244],[106.609709,36.878521],[106.609709,36.878521],[106.626955,36.892403],[106.637426,36.867031],[106.637426,36.867031],[106.657752,36.820575],[106.627571,36.752995],[106.644817,36.72278],[106.59431,36.750118],[106.514238,36.715584],[106.519782,36.708868],[106.519782,36.708868],[106.530869,36.690154],[106.490833,36.685835],[106.491448,36.628703],[106.444637,36.624861],[106.465579,36.583063],[106.444637,36.557109],[106.397826,36.576816],[106.392282,36.556628],[106.363949,36.577296],[106.37134,36.549417],[106.39721,36.548455],[106.455724,36.496995],[106.494528,36.494589],[106.523477,36.468605],[106.492064,36.422389],[106.510543,36.379037],[106.497608,36.31348],[106.470507,36.306246],[106.504383,36.266207],[106.54134,36.25366],[106.559202,36.292259],[106.647897,36.259451],[106.685469,36.273445],[106.698404,36.244008],[106.735976,36.23725],[106.772933,36.212628],[106.808657,36.21118],[106.833295,36.229044],[106.858548,36.206834],[106.858548,36.206834],[106.873947,36.178338],[106.873947,36.178338],[106.930613,36.138716],[106.925686,36.115997],[106.957715,36.091337],[106.940468,36.064734],[106.928149,36.011502],[106.94786,35.988262],[106.90228,35.943699],[106.93862,35.952905],[106.940468,35.931101],[106.912751,35.93207],[106.849925,35.887476],[106.927534,35.810346],[106.897353,35.759856],[106.868403,35.771996],[106.867171,35.738485],[106.819128,35.7448],[106.806193,35.70982],[106.750759,35.725369],[106.750759,35.689408],[106.674998,35.728284],[106.66268,35.70739],[106.633115,35.714679],[106.620796,35.743829],[106.595542,35.727312],[106.566593,35.738971],[106.506231,35.737514]]],[[[106.047356,35.498155],[106.048588,35.488898],[106.054132,35.45478],[106.071994,35.463555],[106.078769,35.509848],[106.047356,35.498155]]],[[[102.831537,36.365544],[102.829689,36.365544],[102.836465,36.344819],[102.838928,36.345783],[102.831537,36.365544]]],[[[106.073226,35.447468],[106.067682,35.436254],[106.073226,35.420649],[106.083081,35.421624],[106.073226,35.447468]]],[[[106.504383,35.736057],[106.506231,35.737514],[106.49268,35.732656],[106.498224,35.732656],[106.504383,35.736057]]]]}},{"type":"Feature","properties":{"adcode":630000,"name":"青海省","center":[101.778916,36.623178],"centroid":[96.043533,35.726403],"childrenNum":8,"level":"province","parent":{"adcode":100000},"subFeatureIndex":28,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[102.829689,36.365544],[102.771791,36.47438],[102.793349,36.497957],[102.753313,36.525855],[102.734219,36.562396],[102.761936,36.568645],[102.714509,36.599401],[102.724364,36.613813],[102.684328,36.619097],[102.630741,36.650793],[102.601176,36.710307],[102.612879,36.738129],[102.639364,36.732853],[102.692335,36.775528],[102.720052,36.767858],[102.639364,36.852666],[102.587009,36.869904],[102.56114,36.91968],[102.526031,36.928291],[102.499546,36.954599],[102.450271,36.968467],[102.506321,37.019134],[102.488459,37.078362],[102.583314,37.104618],[102.642444,37.099845],[102.599944,37.174748],[102.578386,37.17284],[102.533422,37.217176],[102.490307,37.223371],[102.457662,37.248147],[102.45335,37.271487],[102.419474,37.294343],[102.428097,37.308624],[102.368351,37.327662],[102.29875,37.370004],[102.299981,37.391404],[102.19712,37.420403],[102.176794,37.458892],[102.125055,37.48549],[102.103497,37.482641],[102.131214,37.54625],[102.102265,37.582304],[102.035128,37.627819],[102.048678,37.651515],[102.036359,37.685149],[101.998787,37.724921],[101.946432,37.728235],[101.873135,37.686569],[101.854657,37.664781],[101.815853,37.654357],[101.791832,37.696041],[101.659405,37.733441],[101.670491,37.754264],[101.598427,37.827569],[101.551615,37.835604],[101.459224,37.86632],[101.382848,37.822369],[101.362522,37.791162],[101.276906,37.83655],[101.202994,37.84742],[101.159262,37.86821],[101.152486,37.891356],[101.114298,37.92016],[101.103211,37.946593],[101.077342,37.941874],[100.964009,38.011221],[100.91843,37.999432],[100.895024,38.013107],[100.888864,38.056001],[100.922125,38.084741],[100.91843,38.129006],[100.93814,38.16007],[100.913502,38.17889],[100.860531,38.148305],[100.825423,38.158658],[100.752126,38.238612],[100.71517,38.253652],[100.619083,38.26587],[100.595061,38.242372],[100.545786,38.247072],[100.516837,38.272448],[100.474953,38.288891],[100.459555,38.2654],[100.432453,38.275267],[100.424446,38.307208],[100.396729,38.293118],[100.318505,38.329276],[100.331439,38.337257],[100.301874,38.388405],[100.259374,38.366355],[100.24028,38.441861],[100.163288,38.461546],[100.113397,38.497151],[100.086911,38.492936],[100.064122,38.518694],[100.025933,38.507923],[100.001296,38.467169],[100.022238,38.432017],[100.093071,38.407166],[100.136803,38.33444],[100.163904,38.328337],[100.159592,38.291239],[100.182998,38.222158],[100.126332,38.231561],[100.117093,38.253652],[100.071513,38.284663],[100.049955,38.283254],[100.001912,38.315191],[99.960028,38.320825],[99.826985,38.370109],[99.758,38.410449],[99.727203,38.415607],[99.65945,38.449361],[99.63974,38.474666],[99.585537,38.498556],[99.52887,38.546314],[99.501769,38.612281],[99.450646,38.60433],[99.412458,38.665571],[99.375502,38.684727],[99.361951,38.718354],[99.291118,38.765966],[99.222133,38.788827],[99.141445,38.852706],[99.068764,38.896968],[99.071843,38.921184],[99.107568,38.951907],[99.054597,38.97657],[98.951735,38.987735],[98.903076,39.012384],[98.886446,39.040744],[98.818076,39.064911],[98.816845,39.085818],[98.743548,39.086747],[98.730613,39.057011],[98.70536,39.043533],[98.661628,38.993782],[98.612353,38.977035],[98.624056,38.959353],[98.584635,38.93003],[98.526737,38.95563],[98.457752,38.952838],[98.428187,38.976104],[98.432498,38.996107],[98.401086,39.001688],[98.383839,39.029588],[98.316702,39.040744],[98.280977,39.027263],[98.287753,38.992386],[98.276666,38.963541],[98.235398,38.918855],[98.242173,38.880664],[98.167645,38.840121],[98.091884,38.786495],[98.068478,38.816344],[98.029058,38.834061],[98.009348,38.85923],[97.875689,38.898365],[97.828878,38.93003],[97.701379,38.963076],[97.679205,39.010524],[97.58127,39.052364],[97.504894,39.076527],[97.458698,39.117863],[97.401416,39.146645],[97.371235,39.140611],[97.347213,39.167528],[97.315185,39.164744],[97.220946,39.193042],[97.14149,39.199999],[97.060186,39.19768],[97.017686,39.208347],[96.962251,39.198144],[97.012142,39.142004],[96.969643,39.097895],[96.95794,39.041674],[96.965331,39.017034],[96.938846,38.95563],[96.940693,38.90768],[96.983809,38.869016],[96.993664,38.834993],[96.987505,38.793025],[97.00044,38.7613],[97.023229,38.755699],[97.009063,38.702477],[97.057722,38.67258],[97.047251,38.653888],[97.055874,38.594508],[96.961019,38.558015],[96.876636,38.580475],[96.847071,38.599186],[96.7941,38.608072],[96.808882,38.582346],[96.767614,38.552399],[96.800259,38.52759],[96.780549,38.504177],[96.706637,38.505582],[96.6666,38.483567],[96.707868,38.459203],[96.698013,38.422172],[96.626564,38.356031],[96.638883,38.307208],[96.655514,38.295936],[96.665369,38.23015],[96.46334,38.277616],[96.378341,38.277146],[96.335841,38.246132],[96.301964,38.183124],[96.313051,38.161952],[96.264392,38.145952],[96.252689,38.167599],[96.221892,38.149246],[96.109175,38.187358],[96.06606,38.173245],[96.006929,38.207582],[95.93856,38.237202],[95.932401,38.259291],[95.89606,38.2903],[95.852945,38.287481],[95.83693,38.344298],[95.775952,38.356031],[95.723597,38.378554],[95.703887,38.400131],[95.671858,38.388405],[95.608417,38.339134],[95.585011,38.343359],[95.51849,38.294997],[95.487693,38.314721],[95.455664,38.291709],[95.440881,38.310965],[95.408236,38.300163],[95.315846,38.318947],[95.259179,38.302981],[95.229614,38.330685],[95.209904,38.327868],[95.185266,38.379492],[95.140919,38.392158],[95.122441,38.417014],[95.072549,38.402476],[95.045448,38.418889],[94.973999,38.430142],[94.884072,38.414669],[94.861282,38.393565],[94.812623,38.385591],[94.672805,38.386998],[94.582878,38.36917],[94.56132,38.351807],[94.527443,38.365416],[94.527443,38.425922],[94.511429,38.445142],[94.370379,38.7627],[94.281067,38.7599],[93.973098,38.724891],[93.95154,38.715086],[93.885018,38.720689],[93.800019,38.750566],[93.773533,38.771099],[93.756287,38.807484],[93.769838,38.821007],[93.884403,38.826136],[93.884403,38.867618],[93.834511,38.867618],[93.729186,38.924443],[93.453245,38.915596],[93.274007,38.896036],[93.237666,38.916062],[93.179152,38.923977],[93.198246,39.045857],[93.165601,39.090928],[93.131725,39.108112],[93.142196,39.160567],[93.115094,39.17959],[93.043029,39.146645],[92.978356,39.143396],[92.938936,39.169848],[92.889045,39.160103],[92.866871,39.138754],[92.765857,39.136898],[92.659299,39.109969],[92.545966,39.111362],[92.489916,39.099753],[92.459119,39.063982],[92.459119,39.042604],[92.41046,39.03842],[92.416003,39.010524],[92.380279,38.999828],[92.263866,39.002153],[92.197961,38.983548],[92.173323,38.960749],[92.10865,38.963541],[91.966368,38.930961],[91.880752,38.899297],[91.87952,38.884391],[91.806223,38.872744],[91.694738,38.86622],[91.681188,38.852706],[91.501333,38.815411],[91.446515,38.813546],[91.298689,38.746365],[91.242639,38.752433],[91.188436,38.73096],[90.992567,38.695003],[90.970394,38.697806],[90.899561,38.679588],[90.724634,38.658094],[90.65996,38.674449],[90.619308,38.664636],[90.645794,38.635191],[90.606374,38.610878],[90.608837,38.594508],[90.560794,38.593573],[90.525685,38.561291],[90.463476,38.556611],[90.465323,38.521971],[90.427135,38.493873],[90.353222,38.482162],[90.315034,38.501835],[90.248513,38.491531],[90.130868,38.494341],[90.111774,38.477945],[90.111774,38.418889],[90.129636,38.400131],[90.179528,38.396848],[90.137644,38.340543],[90.280542,38.238142],[90.352607,38.233441],[90.361846,38.300163],[90.401882,38.311434],[90.531229,38.319886],[90.516446,38.207111],[90.519526,37.730601],[90.579272,37.720661],[90.586663,37.703144],[90.643946,37.696988],[90.777605,37.648672],[90.820104,37.613599],[90.854597,37.604117],[90.882314,37.575664],[90.865684,37.53059],[90.911879,37.519674],[90.958075,37.477891],[91.019669,37.493088],[91.073256,37.475992],[91.099741,37.447965],[91.113292,37.387124],[91.136081,37.355734],[91.134849,37.324331],[91.194596,37.273868],[91.1909,37.205737],[91.280211,37.163779],[91.286371,37.105095],[91.303617,37.083136],[91.291298,37.042544],[91.303617,37.012444],[91.216153,37.010054],[91.181045,37.025345],[91.133618,37.007665],[91.126842,36.978507],[91.051698,36.96751],[91.036915,36.929727],[90.983944,36.913459],[90.924198,36.921115],[90.853981,36.915373],[90.758511,36.825844],[90.732025,36.825844],[90.727098,36.755872],[90.754815,36.721341],[90.720938,36.708868],[90.706156,36.658955],[90.730793,36.655594],[90.72217,36.620058],[90.741264,36.585947],[90.810865,36.585466],[90.831191,36.55807],[90.905104,36.560474],[91.011662,36.539801],[91.035683,36.529703],[91.039995,36.474861],[91.028292,36.443093],[91.051698,36.433946],[91.026444,36.323607],[91.07264,36.299012],[91.051698,36.238215],[91.096045,36.219871],[91.09235,36.163844],[91.124994,36.115514],[91.081263,36.088436],[90.979017,36.106811],[90.922966,36.028927],[90.850285,36.016827],[90.815793,36.035703],[90.776373,36.086501],[90.659344,36.13485],[90.613149,36.126632],[90.534925,36.147899],[90.478258,36.13195],[90.424055,36.133883],[90.325505,36.159496],[90.23681,36.160462],[90.198006,36.187516],[90.130252,36.2078],[90.145651,36.239181],[90.058188,36.255591],[90.043405,36.276822],[90.003369,36.278752],[90.028006,36.258486],[90.019999,36.213594],[89.997825,36.168193],[89.944855,36.140649],[89.941159,36.067637],[89.914058,36.079246],[89.819819,36.080697],[89.766848,36.073925],[89.711414,36.093272],[89.688624,36.091337],[89.605472,36.038123],[89.474893,36.022151],[89.417611,36.044897],[89.404676,36.016827],[89.434857,35.992136],[89.428082,35.917531],[89.489676,35.903475],[89.554965,35.873414],[89.550654,35.856924],[89.62395,35.859349],[89.654747,35.848193],[89.707718,35.849163],[89.778551,35.861775],[89.801957,35.848193],[89.767464,35.799183],[89.782863,35.773453],[89.747138,35.7516],[89.748986,35.66267],[89.726196,35.648082],[89.765616,35.599922],[89.75145,35.580942],[89.71203,35.581915],[89.699711,35.544916],[89.720037,35.501566],[89.740979,35.507412],[89.765,35.482563],[89.739131,35.468429],[89.685544,35.416259],[89.658443,35.425526],[89.619639,35.412357],[89.58761,35.383575],[89.497067,35.361128],[89.516161,35.330862],[89.494603,35.298632],[89.531559,35.276161],[89.48598,35.256616],[89.450255,35.223867],[89.46935,35.214577],[89.519241,35.133862],[89.579603,35.118688],[89.593153,35.104491],[89.59069,35.057965],[89.560509,34.938836],[89.578987,34.895162],[89.670146,34.887798],[89.707102,34.919701],[89.747138,34.903506],[89.78779,34.921664],[89.821051,34.902033],[89.814891,34.86816],[89.838913,34.865705],[89.867862,34.81069],[89.825978,34.796931],[89.799493,34.743838],[89.732356,34.732035],[89.72558,34.660689],[89.74837,34.641981],[89.798877,34.628686],[89.777935,34.574499],[89.814891,34.548871],[89.823515,34.455657],[89.819819,34.420614],[89.799493,34.39642],[89.820435,34.369255],[89.858623,34.359375],[89.86663,34.324785],[89.825362,34.293642],[89.838297,34.263477],[89.816739,34.16945],[89.789638,34.150632],[89.760073,34.152613],[89.756993,34.124874],[89.71203,34.131809],[89.655979,34.097126],[89.656595,34.057966],[89.635037,34.049537],[89.684928,33.990013],[89.688008,33.959739],[89.718805,33.946832],[89.73174,33.921509],[89.795181,33.865374],[89.837065,33.868853],[89.899891,33.80771],[89.942391,33.801246],[89.902355,33.758467],[89.907282,33.741051],[89.983659,33.725622],[89.981195,33.70322],[90.008296,33.687785],[89.984275,33.612061],[90.01076,33.553728],[90.083441,33.525295],[90.088984,33.478885],[90.107463,33.460913],[90.22018,33.437943],[90.246665,33.423959],[90.332896,33.310501],[90.363077,33.279487],[90.405577,33.260473],[90.490577,33.264977],[90.562642,33.229441],[90.627315,33.180368],[90.704308,33.135778],[90.740032,33.142293],[90.803474,33.114227],[90.88293,33.120241],[90.902024,33.083143],[90.927894,33.120241],[91.001807,33.11573],[91.037531,33.098686],[91.072024,33.113224],[91.147784,33.07211],[91.161335,33.108712],[91.18782,33.106206],[91.226624,33.141792],[91.261733,33.141291],[91.311624,33.108211],[91.370138,33.100691],[91.436044,33.066092],[91.49579,33.109214],[91.535826,33.10019],[91.55492,33.060074],[91.583253,33.0375],[91.664557,33.012913],[91.685499,32.989324],[91.752637,32.969242],[91.799448,32.942126],[91.839484,32.948152],[91.857962,32.90244],[91.896766,32.907967],[91.955897,32.8205],[92.018722,32.829552],[92.038432,32.860725],[92.101874,32.860222],[92.145606,32.885857],[92.205352,32.866255],[92.227526,32.821003],[92.193649,32.801889],[92.211511,32.788306],[92.198577,32.754591],[92.255243,32.720863],[92.310062,32.751571],[92.343938,32.738484],[92.355641,32.764657],[92.411076,32.748048],[92.459119,32.76365],[92.484372,32.745028],[92.56814,32.73194],[92.574916,32.741001],[92.634662,32.720863],[92.667922,32.73194],[92.686401,32.76516],[92.756618,32.743014],[92.789262,32.719856],[92.822523,32.729926],[92.866871,32.698203],[92.933392,32.719353],[92.964189,32.714821],[93.00053,32.741001],[93.019624,32.737477],[93.023935,32.703239],[93.069515,32.626156],[93.087993,32.63674],[93.159442,32.644803],[93.176688,32.6705],[93.210565,32.655385],[93.239514,32.662439],[93.260456,32.62666],[93.300492,32.619604],[93.308499,32.580278],[93.33868,32.5712],[93.385492,32.525294],[93.411977,32.558086],[93.4631,32.556069],[93.476651,32.504603],[93.501904,32.503593],[93.516687,32.47583],[93.618933,32.522771],[93.651577,32.571705],[93.721795,32.578261],[93.75136,32.56313],[93.820345,32.549511],[93.851142,32.50965],[93.861613,32.466237],[93.90904,32.463207],[93.960163,32.484917],[93.978641,32.459672],[94.03038,32.448057],[94.049474,32.469771],[94.091974,32.463207],[94.137554,32.433915],[94.176974,32.454117],[94.196684,32.51621],[94.250886,32.51722],[94.292154,32.502584],[94.294002,32.519743],[94.350053,32.533871],[94.371611,32.524789],[94.395016,32.594397],[94.435052,32.562626],[94.463386,32.572209],[94.459074,32.599439],[94.522516,32.595909],[94.591501,32.640772],[94.614291,32.673522],[94.638312,32.645307],[94.737479,32.587338],[94.762116,32.526303],[94.78737,32.522266],[94.80708,32.486431],[94.852043,32.463712],[94.889616,32.472295],[94.912405,32.41573],[94.944434,32.404109],[94.988166,32.422802],[95.057151,32.395014],[95.075013,32.376315],[95.075013,32.376315],[95.081789,32.384907],[95.153853,32.386423],[95.218527,32.397035],[95.228382,32.363678],[95.261643,32.348006],[95.193274,32.332331],[95.096571,32.322217],[95.079325,32.279726],[95.10581,32.258979],[95.20744,32.297433],[95.214216,32.321712],[95.241317,32.3207],[95.239469,32.287315],[95.270266,32.194683],[95.270266,32.194683],[95.31523,32.148585],[95.366968,32.151118],[95.367584,32.178982],[95.406389,32.182021],[95.440265,32.157705],[95.454432,32.061898],[95.421171,32.033999],[95.454432,32.007613],[95.395918,32.001523],[95.360809,31.95939],[95.3682,31.92892],[95.408852,31.918761],[95.406389,31.896915],[95.456896,31.801853],[95.480301,31.795749],[95.511714,31.750468],[95.546823,31.73978],[95.580083,31.76726],[95.634286,31.782523],[95.779648,31.748941],[95.823995,31.68225],[95.853561,31.714329],[95.846169,31.736218],[95.89914,31.81711],[95.983524,31.816601],[95.989067,31.78761],[96.064828,31.720438],[96.135661,31.70211],[96.148595,31.686324],[96.156603,31.602769],[96.207726,31.598691],[96.221892,31.647613],[96.245298,31.657802],[96.252073,31.697527],[96.222508,31.733164],[96.231131,31.749959],[96.178161,31.775401],[96.183088,31.835924],[96.202798,31.841008],[96.214501,31.876589],[96.188632,31.904028],[96.220044,31.905553],[96.253305,31.929936],[96.288414,31.919777],[96.389428,31.919777],[96.407906,31.845583],[96.435623,31.796258],[96.468884,31.769804],[96.519391,31.74945],[96.56805,31.711783],[96.615477,31.737236],[96.661057,31.705674],[96.691854,31.722474],[96.722651,31.686833],[96.778701,31.675629],[96.790404,31.698545],[96.840295,31.720438],[96.799027,31.792188],[96.765767,31.819144],[96.760223,31.860325],[96.794716,31.869474],[96.81073,31.894375],[96.776238,31.935015],[96.753448,31.944156],[96.742977,32.001016],[96.722651,32.013195],[96.824281,32.007613],[96.868629,31.964975],[96.863085,31.996448],[96.894498,32.013703],[96.941925,31.986297],[96.965947,32.008628],[96.935766,32.048203],[97.006599,32.067984],[97.028773,32.04871],[97.127323,32.044145],[97.169823,32.032984],[97.188301,32.055304],[97.214786,32.042623],[97.233881,32.063927],[97.201852,32.090296],[97.219714,32.109054],[97.258518,32.072041],[97.308409,32.076605],[97.293011,32.096887],[97.313953,32.130342],[97.271453,32.139971],[97.264062,32.182527],[97.299786,32.294904],[97.32196,32.303503],[97.371235,32.273148],[97.415583,32.296421],[97.424822,32.322723],[97.387865,32.427349],[97.341054,32.440987],[97.388481,32.501575],[97.334895,32.514192],[97.332431,32.542448],[97.3583,32.563635],[97.374315,32.546484],[97.411887,32.575235],[97.448843,32.586833],[97.463626,32.55506],[97.50243,32.530844],[97.540618,32.536899],[97.670582,32.51722],[97.684132,32.530339],[97.730944,32.527312],[97.700763,32.53488],[97.616995,32.586329],[97.607756,32.614059],[97.543698,32.62162],[97.535075,32.638252],[97.48272,32.654377],[97.42359,32.70475],[97.429133,32.714318],[97.386018,32.77925],[97.392793,32.828546],[97.376163,32.886359],[97.347829,32.895907],[97.375547,32.956689],[97.438372,32.976271],[97.523988,32.988822],[97.499966,33.011408],[97.542466,33.035995],[97.517213,33.097683],[97.487032,33.107209],[97.498119,33.137783],[97.487648,33.168346],[97.548626,33.203907],[97.607756,33.263976],[97.622538,33.337005],[97.676125,33.341004],[97.754349,33.409972],[97.674893,33.432949],[97.625618,33.461412],[97.552321,33.465906],[97.511669,33.520805],[97.523372,33.577166],[97.450075,33.582152],[97.415583,33.605582],[97.435293,33.682307],[97.418046,33.728608],[97.422974,33.754984],[97.406344,33.795278],[97.373083,33.817655],[97.371851,33.842015],[97.398336,33.848477],[97.395257,33.889224],[97.460546,33.887236],[97.503662,33.912073],[97.52214,33.903133],[97.601596,33.929951],[97.629314,33.919523],[97.660111,33.956264],[97.652719,33.998448],[97.70261,34.036644],[97.665654,34.126855],[97.766668,34.158555],[97.789458,34.182818],[97.789458,34.182818],[97.796849,34.199154],[97.796849,34.199154],[97.8104,34.207568],[97.898479,34.209548],[97.95453,34.190739],[98.028442,34.122892],[98.098043,34.122892],[98.158405,34.107037],[98.206449,34.08424],[98.258188,34.083249],[98.344419,34.094648],[98.399854,34.085231],[98.396774,34.053008],[98.428187,34.029204],[98.440506,33.981577],[98.415252,33.956761],[98.425723,33.913066],[98.407245,33.867362],[98.434962,33.843009],[98.463295,33.848477],[98.492861,33.796272],[98.494092,33.768915],[98.51873,33.77389],[98.539672,33.746525],[98.582788,33.731595],[98.610505,33.682805],[98.6567,33.64744],[98.61728,33.637476],[98.622824,33.610067],[98.652389,33.595114],[98.648077,33.548741],[98.678258,33.522801],[98.725686,33.503341],[98.742316,33.477887],[98.736157,33.406975],[98.779888,33.370497],[98.759562,33.276985],[98.802062,33.270481],[98.804526,33.219428],[98.858728,33.150811],[98.92217,33.118738],[98.967134,33.115229],[98.971445,33.098185],[99.014561,33.081137],[99.024416,33.094675],[99.090322,33.079131],[99.124814,33.046028],[99.196263,33.035493],[99.214741,32.991332],[99.235067,32.982296],[99.24677,32.924043],[99.268944,32.878318],[99.353944,32.885354],[99.376118,32.899927],[99.45311,32.862233],[99.558436,32.839106],[99.589233,32.789312],[99.640355,32.790822],[99.646515,32.774721],[99.700718,32.76667],[99.717964,32.732443],[99.760464,32.769689],[99.766623,32.826032],[99.791877,32.883344],[99.764159,32.924545],[99.788181,32.956689],[99.805427,32.940619],[99.851007,32.941623],[99.877492,32.993339],[99.877492,33.045527],[99.947709,32.986814],[99.956332,32.948152],[100.038252,32.929066],[100.029629,32.895907],[100.064738,32.895907],[100.123252,32.837095],[100.117093,32.802392],[100.139266,32.724388],[100.088143,32.668988],[100.109701,32.640268],[100.189773,32.630692],[100.208252,32.606497],[100.229809,32.650346],[100.231041,32.696189],[100.258759,32.742511],[100.339447,32.719353],[100.399193,32.756101],[100.378251,32.698707],[100.420135,32.73194],[100.450932,32.694678],[100.470026,32.694678],[100.516837,32.632204],[100.54517,32.569687],[100.603069,32.553547],[100.645568,32.526303],[100.657887,32.546484],[100.661583,32.616075],[100.673286,32.628172],[100.710242,32.610026],[100.71209,32.645307],[100.690532,32.678056],[100.77122,32.643795],[100.834046,32.648835],[100.887633,32.632708],[100.93198,32.600447],[100.956618,32.621116],[100.99727,32.627668],[101.030531,32.660424],[101.077342,32.68259],[101.124769,32.658408],[101.157414,32.661431],[101.22332,32.725898],[101.237486,32.825026],[101.223935,32.855698],[101.178356,32.892892],[101.124153,32.909976],[101.134624,32.95217],[101.129081,32.989324],[101.183899,32.984304],[101.171581,33.009902],[101.184515,33.041514],[101.146327,33.056563],[101.143863,33.086151],[101.169733,33.10019],[101.11553,33.194893],[101.124769,33.221431],[101.156798,33.236449],[101.182668,33.26948],[101.217776,33.256469],[101.297232,33.262475],[101.381616,33.153316],[101.393935,33.157826],[101.386543,33.207412],[101.403174,33.225436],[101.487557,33.226938],[101.515275,33.192889],[101.557775,33.167344],[101.633535,33.101193],[101.661252,33.135778],[101.653861,33.162835],[101.709912,33.21292],[101.735781,33.279987],[101.677883,33.297497],[101.64955,33.323004],[101.663716,33.383991],[101.695745,33.433948],[101.769042,33.45592],[101.777665,33.533776],[101.769042,33.538765],[101.748716,33.505337],[101.718535,33.494857],[101.622448,33.502343],[101.611977,33.565199],[101.616905,33.598603],[101.585492,33.645448],[101.58426,33.674339],[101.501724,33.702723],[101.428427,33.680315],[101.424732,33.655411],[101.385312,33.644949],[101.302776,33.657902],[101.23687,33.685793],[101.217776,33.669856],[101.166653,33.659894],[101.177124,33.685295],[101.162957,33.719649],[101.186363,33.741051],[101.190675,33.791796],[101.153102,33.823124],[101.153718,33.8445],[101.054552,33.863386],[101.023139,33.896178],[100.994806,33.891707],[100.965857,33.946832],[100.927669,33.975126],[100.93506,33.990013],[100.880857,34.036644],[100.870386,34.083744],[100.848828,34.089692],[100.806329,34.155584],[100.764445,34.178857],[100.809408,34.247153],[100.798321,34.260014],[100.821727,34.317371],[100.868538,34.332693],[100.895024,34.375183],[100.951074,34.38358],[100.986799,34.374689],[101.054552,34.322808],[101.098284,34.329233],[101.178356,34.320831],[101.193754,34.336646],[101.235022,34.325279],[101.228863,34.298586],[101.268899,34.278808],[101.325565,34.268423],[101.327413,34.24468],[101.369913,34.248143],[101.417956,34.227858],[101.482014,34.218951],[101.492485,34.195689],[101.53868,34.212022],[101.6206,34.178857],[101.674187,34.110506],[101.703136,34.119424],[101.718535,34.083249],[101.736397,34.080275],[101.764114,34.122892],[101.788136,34.131809],[101.836795,34.124378],[101.851578,34.153108],[101.874367,34.130323],[101.897773,34.133791],[101.955055,34.109514],[101.965526,34.167469],[102.003099,34.162022],[102.030816,34.190739],[102.01357,34.218456],[102.062229,34.227858],[102.067772,34.293642],[102.149692,34.271885],[102.186649,34.352952],[102.237156,34.34307],[102.237156,34.34307],[102.259329,34.355917],[102.205743,34.407777],[102.169402,34.457631],[102.155852,34.507456],[102.139837,34.50351],[102.093026,34.536547],[102.001867,34.538519],[101.97415,34.548871],[101.956287,34.582876],[101.934729,34.58731],[101.919947,34.621791],[101.917483,34.705964],[101.923027,34.835746],[101.916867,34.873561],[101.985852,34.90007],[102.068388,34.887798],[102.048062,34.910868],[102.094874,34.986901],[102.133678,35.014844],[102.157699,35.010923],[102.176178,35.032977],[102.211286,35.034937],[102.218062,35.057475],[102.252554,35.048657],[102.29567,35.071681],[102.310452,35.128967],[102.346793,35.164201],[102.404075,35.179366],[102.365887,35.235599],[102.370199,35.263946],[102.3123,35.282512],[102.280887,35.303028],[102.311684,35.31426],[102.317844,35.343067],[102.287663,35.36552],[102.293822,35.424063],[102.314764,35.434303],[102.408387,35.409431],[102.447807,35.437229],[102.437952,35.455268],[102.49893,35.545403],[102.503241,35.585322],[102.531575,35.580455],[102.570995,35.548324],[102.695414,35.528358],[102.743458,35.494745],[102.782878,35.527871],[102.729291,35.523487],[102.746537,35.545403],[102.808747,35.560496],[102.763168,35.612086],[102.7644,35.653431],[102.744074,35.657807],[102.707733,35.70496],[102.686175,35.771996],[102.715125,35.815685],[102.739146,35.821023],[102.787189,35.862745],[102.81737,35.850133],[102.914073,35.845282],[102.94487,35.829757],[102.954725,35.858864],[102.942406,35.92674],[102.971971,35.995525],[102.951645,36.021667],[102.968276,36.044414],[102.932551,36.048285],[102.882044,36.082632],[102.941174,36.104877],[102.948566,36.150798],[102.965812,36.151765],[102.986754,36.193312],[103.048964,36.199107],[103.066826,36.216974],[103.021246,36.232906],[103.024942,36.256556],[102.922696,36.298047],[102.896827,36.331803],[102.845704,36.331803],[102.836465,36.344819],[102.829689,36.365544]]]]}},{"type":"Feature","properties":{"adcode":640000,"name":"宁夏回族自治区","center":[106.278179,38.46637],"centroid":[106.169866,37.291332],"childrenNum":5,"level":"province","parent":{"adcode":100000},"subFeatureIndex":29,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[107.268764,37.099367],[107.281083,37.127047],[107.306952,37.100799],[107.334669,37.138975],[107.336517,37.165687],[107.317423,37.200017],[107.270612,37.229089],[107.309416,37.239095],[107.273075,37.29101],[107.257677,37.337179],[107.282931,37.437036],[107.284162,37.481691],[107.345756,37.518725],[107.369162,37.58752],[107.330358,37.584201],[107.311264,37.609806],[107.361155,37.613125],[107.422133,37.665254],[107.389488,37.671413],[107.387024,37.691305],[107.425828,37.684201],[107.484959,37.706458],[107.499125,37.765619],[107.57119,37.776499],[107.599523,37.791162],[107.620465,37.776026],[107.646335,37.805349],[107.659269,37.844112],[107.65003,37.86443],[107.560719,37.893717],[107.49235,37.944706],[107.448618,37.933378],[107.411662,37.948009],[107.440611,37.995659],[107.3938,38.014993],[107.33159,38.086625],[107.240431,38.111586],[107.19054,38.153953],[107.138801,38.161011],[107.119091,38.134185],[107.071047,38.138892],[107.051337,38.122886],[107.010069,38.120532],[106.942316,38.132302],[106.858548,38.156306],[106.779092,38.171833],[106.737824,38.197706],[106.654672,38.22921],[106.627571,38.232501],[106.555506,38.263521],[106.482209,38.319417],[106.599854,38.389812],[106.647897,38.470917],[106.66268,38.601524],[106.709491,38.718821],[106.756302,38.748699],[106.837606,38.847579],[106.954019,38.941202],[106.971881,39.026333],[106.96757,39.054688],[106.933693,39.076527],[106.878874,39.091392],[106.859164,39.107648],[106.825288,39.19397],[106.795723,39.214375],[106.790795,39.241263],[106.806193,39.277407],[106.806809,39.318625],[106.781556,39.371849],[106.751375,39.381564],[106.683622,39.357506],[106.643586,39.357969],[106.602318,39.37555],[106.556122,39.322329],[106.525325,39.308439],[106.511774,39.272311],[106.402753,39.291767],[106.280181,39.262118],[106.29558,39.167992],[106.285109,39.146181],[106.251232,39.131327],[106.192718,39.142932],[106.170544,39.163352],[106.145907,39.153142],[106.096631,39.084889],[106.078153,39.026333],[106.087392,39.006339],[106.060907,38.96866],[106.021487,38.953769],[105.97098,38.909077],[105.992538,38.857366],[105.909386,38.791159],[105.908154,38.737496],[105.88598,38.716953],[105.894603,38.696405],[105.852719,38.641735],[105.874277,38.593105],[105.856415,38.569714],[105.863806,38.53508],[105.836705,38.476071],[105.850872,38.443736],[105.827466,38.432486],[105.835473,38.387467],[105.821307,38.366824],[105.86627,38.296406],[105.842248,38.240962],[105.802828,38.220277],[105.775111,38.186887],[105.76772,38.121474],[105.780655,38.084741],[105.840401,38.004147],[105.799749,37.939986],[105.80406,37.862068],[105.760944,37.799674],[105.677177,37.771769],[105.622358,37.777919],[105.616199,37.722555],[105.598952,37.699356],[105.467141,37.695094],[105.4037,37.710246],[105.315004,37.702197],[105.221998,37.677097],[105.187505,37.657674],[105.111128,37.633981],[105.027977,37.580881],[104.866601,37.566651],[104.805007,37.539133],[104.623305,37.522522],[104.433595,37.515402],[104.419429,37.511604],[104.407726,37.464592],[104.322726,37.44844],[104.287002,37.428007],[104.298705,37.414223],[104.365226,37.418026],[104.437907,37.445589],[104.448994,37.42468],[104.499501,37.421353],[104.521059,37.43466],[104.679971,37.408044],[104.662109,37.367626],[104.713848,37.329566],[104.673812,37.317668],[104.651022,37.290534],[104.624536,37.298627],[104.600515,37.242907],[104.638087,37.201923],[104.717543,37.208597],[104.776673,37.246718],[104.85613,37.211933],[104.864753,37.17284],[104.888158,37.15901],[104.914644,37.097935],[104.954064,37.077407],[104.95468,37.040156],[105.004571,37.035378],[105.03968,37.007187],[105.05939,37.022956],[105.128991,36.996194],[105.165331,36.99476],[105.185657,36.942164],[105.178882,36.892403],[105.244787,36.894796],[105.279896,36.86751],[105.303302,36.820575],[105.334714,36.80093],[105.340874,36.764502],[105.319932,36.742924],[105.275584,36.752515],[105.272505,36.739567],[105.218302,36.730455],[105.201056,36.700711],[105.225693,36.664716],[105.22015,36.631105],[105.261418,36.602764],[105.2762,36.563358],[105.252179,36.553263],[105.281744,36.522489],[105.322396,36.535954],[105.362432,36.496514],[105.363048,36.443093],[105.398156,36.430575],[105.401236,36.369881],[105.425873,36.330357],[105.455439,36.321678],[105.476381,36.293224],[105.45975,36.268137],[105.460366,36.223733],[105.478844,36.213111],[105.515185,36.147415],[105.491163,36.101009],[105.430801,36.10391],[105.406163,36.074409],[105.343954,36.033767],[105.324859,35.941761],[105.350113,35.875839],[105.39754,35.857409],[105.371055,35.844312],[105.38091,35.792873],[105.408627,35.822479],[105.428953,35.819082],[105.432033,35.787533],[105.457286,35.771511],[105.481924,35.727312],[105.595873,35.715651],[105.667322,35.749657],[105.70243,35.733142],[105.759097,35.724883],[105.740618,35.698643],[105.723988,35.725854],[105.690727,35.698643],[105.722756,35.673366],[105.713517,35.650513],[105.759097,35.634464],[105.762176,35.602841],[105.800365,35.564878],[105.816379,35.575101],[105.847176,35.490359],[105.868734,35.540046],[105.900147,35.54735],[106.017175,35.519103],[106.023335,35.49377],[106.047356,35.498155],[106.078769,35.509848],[106.071994,35.463555],[106.06953,35.458193],[106.073842,35.45478],[106.073226,35.450393],[106.071378,35.449418],[106.073226,35.447468],[106.083081,35.421624],[106.113262,35.361616],[106.129892,35.393333],[106.173008,35.437716],[106.196414,35.409919],[106.237681,35.409431],[106.241377,35.358687],[106.319601,35.265411],[106.363333,35.238532],[106.368261,35.273718],[106.415688,35.276161],[106.472354,35.310842],[106.501304,35.364056],[106.503767,35.415284],[106.483441,35.450393],[106.490217,35.480613],[106.465579,35.481101],[106.440941,35.52641],[106.460036,35.578995],[106.47913,35.575101],[106.460036,35.643705],[106.434782,35.688436],[106.49268,35.732656],[106.506231,35.737514],[106.566593,35.738971],[106.595542,35.727312],[106.620796,35.743829],[106.633115,35.714679],[106.66268,35.70739],[106.674998,35.728284],[106.750759,35.689408],[106.750759,35.725369],[106.806193,35.70982],[106.819128,35.7448],[106.867171,35.738485],[106.868403,35.771996],[106.897353,35.759856],[106.927534,35.810346],[106.849925,35.887476],[106.912751,35.93207],[106.940468,35.931101],[106.93862,35.952905],[106.90228,35.943699],[106.94786,35.988262],[106.928149,36.011502],[106.940468,36.064734],[106.957715,36.091337],[106.925686,36.115997],[106.930613,36.138716],[106.873947,36.178338],[106.873947,36.178338],[106.858548,36.206834],[106.858548,36.206834],[106.833295,36.229044],[106.808657,36.21118],[106.772933,36.212628],[106.735976,36.23725],[106.698404,36.244008],[106.685469,36.273445],[106.647897,36.259451],[106.559202,36.292259],[106.54134,36.25366],[106.504383,36.266207],[106.470507,36.306246],[106.497608,36.31348],[106.510543,36.379037],[106.492064,36.422389],[106.523477,36.468605],[106.494528,36.494589],[106.455724,36.496995],[106.39721,36.548455],[106.37134,36.549417],[106.363949,36.577296],[106.392282,36.556628],[106.397826,36.576816],[106.444637,36.557109],[106.465579,36.583063],[106.444637,36.624861],[106.491448,36.628703],[106.490833,36.685835],[106.530869,36.690154],[106.519782,36.708868],[106.519782,36.708868],[106.514238,36.715584],[106.59431,36.750118],[106.644817,36.72278],[106.627571,36.752995],[106.657752,36.820575],[106.637426,36.867031],[106.637426,36.867031],[106.626955,36.892403],[106.609709,36.878521],[106.609709,36.878521],[106.601702,36.918244],[106.549347,36.941685],[106.540108,36.984244],[106.595542,36.94025],[106.594926,36.967988],[106.64297,36.962729],[106.646665,37.000496],[106.666991,37.016745],[106.645433,37.064992],[106.605397,37.127524],[106.6171,37.135158],[106.673151,37.1113],[106.687933,37.12991],[106.728585,37.121321],[106.750143,37.09889],[106.772933,37.120367],[106.776012,37.158056],[106.818512,37.141838],[106.891193,37.098413],[106.912135,37.110345],[106.905976,37.151378],[106.998367,37.106527],[107.031011,37.108436],[107.030395,37.140883],[107.095685,37.115595],[107.133873,37.134681],[107.181916,37.143269],[107.234887,37.096503],[107.268764,37.099367]]],[[[106.048588,35.488898],[105.897683,35.451368],[105.894603,35.413821],[106.002393,35.438692],[106.034422,35.469404],[106.054132,35.45478],[106.048588,35.488898]]],[[[106.073842,35.45478],[106.06953,35.458193],[106.071378,35.449418],[106.073226,35.450393],[106.073842,35.45478]]]]}},{"type":"Feature","properties":{"adcode":650000,"name":"新疆维吾尔自治区","center":[87.617733,43.792818],"centroid":[85.294711,41.371801],"childrenNum":24,"level":"province","parent":{"adcode":100000},"subFeatureIndex":30,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[96.386348,42.727592],[96.363558,42.900562],[95.921314,43.229789],[95.880046,43.28035],[95.857872,43.417436],[95.735916,43.597569],[95.705735,43.67077],[95.645373,43.787966],[95.623199,43.855756],[95.527113,44.007466],[95.426099,44.009618],[95.377439,44.025972],[95.326932,44.028554],[95.35157,44.090054],[95.355882,44.166087],[95.376208,44.227444],[95.4107,44.245024],[95.43041,44.281882],[95.41378,44.298589],[95.238853,44.277169],[95.1286,44.269884],[94.998637,44.253169],[94.945666,44.292592],[94.826174,44.320001],[94.768275,44.34055],[94.722696,44.34055],[94.673421,44.397021],[94.606283,44.448311],[94.557008,44.462408],[94.470777,44.509373],[94.390705,44.521749],[94.359292,44.515775],[94.329727,44.582734],[94.279836,44.603617],[94.227481,44.645785],[94.215162,44.667921],[94.152336,44.684944],[94.066105,44.732154],[93.723642,44.865498],[93.716251,44.894334],[93.613389,44.926546],[93.509296,44.968055],[93.434767,44.955351],[93.376869,44.985412],[93.314659,44.995147],[93.314043,44.980333],[93.252449,44.991761],[93.174225,45.015458],[93.100312,45.007419],[93.062124,45.018419],[93.002377,45.009958],[92.932776,45.017573],[92.922921,45.03703],[92.884117,45.046756],[92.847777,45.038721],[92.779407,45.050561],[92.683937,45.02561],[92.547814,45.018419],[92.501003,45.001072],[92.414155,45.018419],[92.348866,45.014188],[92.315605,45.028994],[92.240461,45.015881],[92.100026,45.081417],[92.056911,45.086911],[91.885679,45.078882],[91.803144,45.082685],[91.694738,45.065357],[91.561695,45.075501],[91.500101,45.103809],[91.448978,45.156586],[91.429268,45.156586],[91.37753,45.11099],[91.33503,45.129571],[91.242023,45.13717],[91.230936,45.153632],[91.195827,45.159118],[91.17119,45.199616],[91.129922,45.21606],[91.050466,45.208892],[91.007966,45.218589],[90.96177,45.201303],[90.881698,45.192025],[90.866916,45.209314],[90.897713,45.249776],[90.877387,45.280946],[90.831807,45.300313],[90.804706,45.29484],[90.813329,45.32851],[90.773909,45.405874],[90.772677,45.432338],[90.723402,45.464667],[90.671047,45.487747],[90.676591,45.582488],[90.714779,45.728895],[90.799778,45.834905],[90.890937,45.921566],[91.028292,46.023054],[91.014741,46.06667],[91.021517,46.121038],[90.98456,46.160431],[90.94822,46.219262],[90.955611,46.233752],[90.900177,46.31235],[90.983328,46.374734],[90.996263,46.419309],[91.025828,46.444057],[91.038147,46.500936],[91.060937,46.516999],[91.079415,46.558989],[91.068328,46.579149],[91.017821,46.58244],[91.036299,46.670393],[91.054161,46.717598],[91.019053,46.766402],[90.992567,46.769682],[90.992567,46.790583],[90.942676,46.82581],[90.958075,46.879425],[90.929742,46.893331],[90.92235,46.938707],[90.901408,46.960768],[90.830575,46.995883],[90.767134,46.992617],[90.691989,47.080717],[90.653801,47.111681],[90.579888,47.198364],[90.56141,47.206903],[90.521374,47.2845],[90.488113,47.317374],[90.526301,47.379007],[90.507823,47.400076],[90.468403,47.404937],[90.459164,47.43895],[90.474562,47.462422],[90.468403,47.497611],[90.398186,47.547724],[90.376012,47.603036],[90.346447,47.637324],[90.384635,47.644179],[90.331665,47.681663],[90.216484,47.70543],[90.180144,47.72516],[90.13518,47.723147],[90.07605,47.777469],[90.070506,47.820483],[90.086521,47.86547],[90.066195,47.883534],[90.040941,47.874704],[89.960253,47.885942],[89.957789,47.842982],[89.86971,47.834144],[89.761921,47.835751],[89.735435,47.89758],[89.651052,47.913627],[89.645508,47.947711],[89.595617,47.973359],[89.599313,48.015811],[89.569132,48.037825],[89.498299,48.02822],[89.38127,48.046227],[89.359712,48.026219],[89.308589,48.021816],[89.282104,47.994189],[89.231597,47.98017],[89.156452,47.996992],[89.078228,47.98698],[89.044967,48.009806],[89.027105,48.051028],[88.953808,48.090618],[88.939026,48.115396],[88.824461,48.107005],[88.79736,48.133772],[88.721599,48.160526],[88.700657,48.180881],[88.668628,48.171303],[88.638447,48.183674],[88.601491,48.221567],[88.594716,48.259831],[88.575006,48.277757],[88.605803,48.337863],[88.573774,48.351785],[88.573158,48.369679],[88.535586,48.368884],[88.523267,48.403461],[88.503557,48.412996],[88.462289,48.392335],[88.438267,48.393528],[88.360659,48.433251],[88.363123,48.460641],[88.318159,48.478497],[88.229464,48.498329],[88.196819,48.493967],[88.151855,48.526478],[88.130297,48.521721],[88.10874,48.545895],[88.041602,48.548272],[87.973233,48.575997],[87.96153,48.599353],[88.010805,48.618742],[88.02682,48.65315],[88.089645,48.69504],[88.090877,48.71992],[88.064392,48.712813],[88.029283,48.750313],[87.96153,48.773588],[87.93874,48.757809],[87.872219,48.799612],[87.826639,48.800795],[87.803234,48.824835],[87.829103,48.825623],[87.792147,48.849258],[87.78106,48.872094],[87.742256,48.881146],[87.760118,48.925992],[87.793995,48.927565],[87.814321,48.945256],[87.87653,48.949186],[87.871603,48.963726],[87.911639,48.979833],[87.883922,48.993971],[87.883306,49.023806],[87.835263,49.054406],[87.858052,49.07362],[87.844502,49.090084],[87.867291,49.108892],[87.845733,49.146096],[87.82048,49.148445],[87.821096,49.173883],[87.793379,49.18249],[87.762582,49.172709],[87.700372,49.175839],[87.67635,49.15549],[87.602437,49.152359],[87.563017,49.142572],[87.517438,49.145704],[87.49588,49.132001],[87.511894,49.10184],[87.43675,49.075188],[87.388707,49.097921],[87.304939,49.112418],[87.239033,49.114376],[87.211932,49.140615],[87.112766,49.15549],[87.088128,49.133567],[87.000049,49.142572],[86.953853,49.131218],[86.887948,49.132001],[86.854071,49.109284],[86.84976,49.066563],[86.836209,49.051269],[86.772151,49.02773],[86.732115,48.994757],[86.730267,48.959797],[86.757985,48.894919],[86.782006,48.887049],[86.821426,48.850439],[86.818963,48.831139],[86.770303,48.810255],[86.754289,48.78463],[86.780774,48.731369],[86.771535,48.717156],[86.70255,48.666195],[86.693311,48.64366],[86.640956,48.629027],[86.635413,48.612016],[86.594761,48.576789],[86.579978,48.538763],[86.416138,48.481671],[86.38103,48.49357],[86.305269,48.491984],[86.270161,48.452307],[86.225813,48.432456],[86.053966,48.441192],[85.916612,48.438015],[85.791576,48.418954],[85.758315,48.403064],[85.695489,48.335078],[85.695489,48.302445],[85.678243,48.266205],[85.633895,48.232731],[85.622193,48.202824],[85.587084,48.191654],[85.576613,48.15853],[85.55136,48.127781],[85.551975,48.081423],[85.531649,48.046227],[85.547048,48.008205],[85.617881,47.550552],[85.614801,47.498015],[85.685018,47.428829],[85.701649,47.384275],[85.675779,47.321837],[85.701033,47.28856],[85.682555,47.249982],[85.682555,47.222757],[85.641903,47.18413],[85.582772,47.142626],[85.547048,47.096609],[85.545816,47.057891],[85.441106,47.063191],[85.355491,47.054629],[85.325926,47.044842],[85.276651,47.068898],[85.213825,47.041172],[85.175637,46.997924],[85.102956,46.968936],[85.082014,46.939933],[84.987159,46.918272],[84.979768,46.883106],[84.95513,46.861013],[84.934188,46.863878],[84.867051,46.927673],[84.849189,46.957092],[84.781435,46.979962],[84.748175,47.009759],[84.699515,47.008535],[84.668718,46.995067],[84.563393,46.991801],[84.506726,46.97302],[84.425422,47.008943],[84.37122,46.993434],[84.336727,47.00527],[84.2893,46.994658],[84.195061,47.003638],[84.150098,46.977512],[84.086656,46.965261],[84.038613,46.973428],[84.002888,46.990576],[83.951765,46.98731],[83.932671,46.970161],[83.88586,46.982003],[83.766367,47.026896],[83.69923,47.015472],[83.700462,47.032199],[83.576042,47.059114],[83.566803,47.080717],[83.53847,47.083977],[83.463325,47.132042],[83.418978,47.119012],[83.370318,47.178436],[83.324739,47.167858],[83.306261,47.179656],[83.257602,47.173147],[83.221877,47.186977],[83.207094,47.213814],[83.17445,47.218286],[83.15474,47.236168],[83.108544,47.221944],[83.02724,47.21544],[83.031552,47.168265],[82.993364,47.065229],[82.937929,47.014248],[82.923762,46.932169],[82.876335,46.823762],[82.878183,46.797138],[82.829524,46.772551],[82.788872,46.677784],[82.774089,46.600124],[82.726662,46.494756],[82.609017,46.294985],[82.518474,46.153798],[82.461808,45.97982],[82.401446,45.972333],[82.342932,45.935303],[82.336156,45.882418],[82.349707,45.822811],[82.340468,45.772742],[82.289961,45.71636],[82.288729,45.655321],[82.266555,45.620172],[82.281954,45.53891],[82.448257,45.461309],[82.546808,45.426038],[82.60101,45.346178],[82.58746,45.224069],[82.562822,45.204676],[82.487061,45.181058],[82.344779,45.219011],[82.294272,45.247669],[82.206809,45.236713],[82.109491,45.211422],[82.091012,45.222383],[82.09594,45.249776],[82.052824,45.255674],[81.993078,45.237978],[81.921013,45.233342],[81.879745,45.284314],[81.832318,45.319673],[81.78797,45.3836],[81.677101,45.35459],[81.645072,45.359216],[81.582863,45.336503],[81.575471,45.30789],[81.536667,45.304101],[81.52866,45.285999],[81.462754,45.264099],[81.437501,45.28263],[81.398697,45.275471],[81.382066,45.257781],[81.327864,45.260729],[81.284748,45.23882],[81.236705,45.247248],[81.175111,45.227863],[81.170183,45.211001],[81.111669,45.218168],[81.080872,45.182745],[81.024821,45.162916],[80.966307,45.168402],[80.93551,45.160384],[80.897938,45.127459],[80.862214,45.127037],[80.816634,45.152788],[80.731634,45.156164],[80.686055,45.129148],[80.599207,45.105921],[80.519135,45.108878],[80.493882,45.127037],[80.445839,45.097895],[80.443991,45.077614],[80.404571,45.049293],[80.358375,45.040836],[80.328194,45.070007],[80.291854,45.06578],[80.24381,45.031532],[80.195767,45.030686],[80.144644,45.059017],[80.136021,45.041259],[80.111999,45.052675],[80.060876,45.026033],[80.056565,45.011227],[79.98142,44.964244],[79.951855,44.957892],[79.944464,44.937985],[79.887798,44.90917],[79.969102,44.877797],[79.953703,44.849377],[79.991891,44.830281],[79.999283,44.793768],[80.087978,44.817122],[80.115695,44.815424],[80.169898,44.84471],[80.18776,44.825612],[80.178521,44.796741],[80.200695,44.756808],[80.238883,44.7228],[80.313412,44.704938],[80.400259,44.628751],[80.411962,44.605321],[80.350368,44.484615],[80.383013,44.401297],[80.399027,44.30587],[80.413194,44.264741],[80.400875,44.198704],[80.407034,44.149772],[80.3941,44.127009],[80.449534,44.078017],[80.458773,44.047054],[80.457541,43.981203],[80.485259,43.95579],[80.475404,43.938124],[80.511128,43.906657],[80.522215,43.816473],[80.75504,43.494329],[80.761199,43.446554],[80.746417,43.439167],[80.735946,43.389609],[80.686055,43.333916],[80.69283,43.32042],[80.777214,43.308227],[80.769207,43.265535],[80.788917,43.242433],[80.789533,43.201876],[80.804315,43.178314],[80.79446,43.137277],[80.752576,43.148194],[80.73225,43.131163],[80.706997,43.143828],[80.650946,43.147321],[80.593048,43.133347],[80.556092,43.104515],[80.482795,43.06955],[80.416889,43.05687],[80.378701,43.031502],[80.397795,42.996933],[80.487106,42.948766],[80.5912,42.923354],[80.602903,42.894424],[80.503737,42.882146],[80.450766,42.861971],[80.407034,42.834767],[80.338049,42.831695],[80.280151,42.838278],[80.262289,42.828623],[80.259209,42.790865],[80.225948,42.713083],[80.228412,42.692852],[80.179753,42.670415],[80.163738,42.629919],[80.180985,42.590718],[80.221637,42.533415],[80.265368,42.502097],[80.225948,42.485769],[80.206238,42.431462],[80.239499,42.389927],[80.229028,42.358536],[80.283847,42.320493],[80.272144,42.281984],[80.29247,42.259842],[80.28631,42.233261],[80.233339,42.210215],[80.168666,42.200462],[80.163738,42.152563],[80.139717,42.151232],[80.16805,42.096635],[80.193303,42.081535],[80.14218,42.03488],[80.089826,42.047325],[79.923522,42.042436],[79.852689,42.015319],[79.854537,41.984186],[79.822508,41.963275],[79.776313,41.89248],[79.724574,41.896935],[79.640806,41.884907],[79.616784,41.856385],[79.550879,41.834094],[79.500988,41.835432],[79.457256,41.847915],[79.415372,41.836769],[79.356242,41.795735],[79.326061,41.809565],[79.276786,41.78101],[79.271858,41.767174],[79.21704,41.725648],[79.138199,41.722968],[79.10925,41.697503],[79.043345,41.681414],[79.021787,41.657273],[78.99407,41.664427],[78.957729,41.65146],[78.891824,41.597777],[78.86657,41.593749],[78.825302,41.560173],[78.739071,41.555695],[78.696571,41.54181],[78.707042,41.522098],[78.675629,41.50238],[78.650375,41.467411],[78.580774,41.481759],[78.527188,41.440947],[78.454507,41.412228],[78.391681,41.408189],[78.385522,41.394721],[78.338094,41.397415],[78.324544,41.384395],[78.235232,41.399211],[78.163783,41.383497],[78.149617,41.368228],[78.165015,41.340825],[78.136682,41.279239],[78.129291,41.228398],[78.094798,41.224347],[77.972842,41.173013],[77.905089,41.185174],[77.836104,41.153189],[77.814546,41.13426],[77.807155,41.091876],[77.829328,41.059394],[77.796068,41.049014],[77.780669,41.022832],[77.737553,41.032313],[77.684583,41.00793],[77.654402,41.016059],[77.597119,41.005221],[77.591576,40.992122],[77.540453,41.006575],[77.476395,40.999349],[77.473931,41.022832],[77.415417,41.038633],[77.363062,41.04089],[77.296541,41.004769],[77.236795,41.027798],[77.169041,41.009285],[77.108063,41.038181],[77.091433,41.062553],[77.023064,41.059394],[77.002122,41.073381],[76.940528,41.028701],[76.885709,41.027347],[76.85368,40.97631],[76.817956,40.975406],[76.761905,40.954167],[76.741579,40.912119],[76.731724,40.818887],[76.693536,40.779472],[76.646725,40.759983],[76.646725,40.73686],[76.676906,40.696036],[76.654732,40.652917],[76.657196,40.620218],[76.611,40.601591],[76.601145,40.578868],[76.556798,40.542495],[76.543247,40.513837],[76.539551,40.464226],[76.508754,40.429613],[76.470566,40.422779],[76.442233,40.391336],[76.390494,40.37766],[76.381871,40.39088],[76.333212,40.343459],[76.327668,40.391336],[76.283321,40.415034],[76.279625,40.439179],[76.22419,40.401819],[76.176147,40.381307],[76.144118,40.393615],[76.081293,40.39635],[76.048648,40.388601],[76.048648,40.357141],[76.026474,40.355317],[75.986438,40.381763],[75.932235,40.339353],[75.921764,40.291439],[75.890351,40.30924],[75.84046,40.312434],[75.831221,40.327492],[75.785642,40.301025],[75.739446,40.299199],[75.709265,40.280939],[75.688323,40.343915],[75.669845,40.363982],[75.686475,40.418223],[75.717272,40.443278],[75.733287,40.474242],[75.646439,40.516567],[75.631041,40.548862],[75.627345,40.605226],[75.636584,40.624306],[75.599628,40.659727],[75.550353,40.64883],[75.467817,40.599773],[75.432093,40.563412],[75.355716,40.537947],[75.292274,40.483802],[75.268869,40.483802],[75.242383,40.448743],[75.206659,40.447833],[75.13521,40.463315],[75.102565,40.44009],[75.051442,40.449654],[75.021877,40.466958],[74.995392,40.455119],[74.963363,40.464681],[74.891914,40.507467],[74.844486,40.521117],[74.819233,40.505647],[74.814921,40.461039],[74.795211,40.443278],[74.908544,40.338897],[74.862965,40.32658],[74.824776,40.344371],[74.700357,40.346195],[74.697893,40.310153],[74.673255,40.278656],[74.618437,40.27957],[74.577169,40.260391],[74.534669,40.207851],[74.485394,40.182251],[74.433039,40.13148],[74.356662,40.089371],[74.316626,40.106767],[74.280902,40.09807],[74.26304,40.125074],[74.126301,40.104479],[74.113366,40.086624],[74.023439,40.085251],[74.008041,40.050901],[73.943367,40.016076],[73.980324,40.004617],[73.910722,39.934443],[73.907027,39.873843],[73.845433,39.831115],[73.841737,39.756163],[73.905795,39.741899],[73.924273,39.722108],[73.953838,39.600018],[73.916266,39.586644],[73.914418,39.564041],[73.883621,39.540969],[73.893476,39.528046],[73.868223,39.482794],[73.836194,39.472169],[73.745651,39.462005],[73.6471,39.474479],[73.61076,39.465702],[73.592898,39.412087],[73.502355,39.383877],[73.554094,39.350102],[73.554709,39.295935],[73.542391,39.269531],[73.564564,39.266288],[73.580579,39.237555],[73.623079,39.235237],[73.639709,39.220402],[73.657571,39.166136],[73.688368,39.154999],[73.719781,39.108112],[73.720397,39.071881],[73.743187,39.029588],[73.780143,39.026798],[73.820179,39.041674],[73.839889,39.008199],[73.846665,38.962145],[73.826339,38.916993],[73.767824,38.941202],[73.742571,38.933754],[73.70931,38.893241],[73.699455,38.857832],[73.729636,38.837324],[73.769056,38.775765],[73.757353,38.719755],[73.809092,38.634256],[73.799237,38.610878],[73.852208,38.584217],[73.89902,38.579071],[73.926121,38.536016],[74.011736,38.52478],[74.034526,38.541634],[74.090577,38.542102],[74.068403,38.585621],[74.088113,38.610878],[74.11275,38.611345],[74.147859,38.676785],[74.229779,38.656224],[74.353583,38.655757],[74.421952,38.647812],[74.455829,38.632853],[74.506336,38.637528],[74.546988,38.607604],[74.613509,38.593105],[74.639995,38.599653],[74.717603,38.542102],[74.78474,38.538357],[74.821697,38.491062],[74.862965,38.484035],[74.868508,38.403883],[74.834015,38.361193],[74.789668,38.324581],[74.806914,38.285602],[74.793363,38.271039],[74.816769,38.215576],[74.80445,38.167128],[74.821697,38.10311],[74.879595,38.021122],[74.92579,38.01735],[74.911008,37.966884],[74.919015,37.908357],[74.936877,37.876241],[74.917167,37.845057],[74.989848,37.797783],[75.006478,37.770823],[74.949196,37.725395],[74.923327,37.717347],[74.920863,37.684675],[74.891914,37.668097],[74.940573,37.559061],[75.000935,37.53059],[75.002167,37.511604],[75.035428,37.500685],[75.078543,37.511129],[75.090862,37.486915],[75.129666,37.459367],[75.153072,37.414223],[75.125971,37.388075],[75.140137,37.355258],[75.125971,37.322427],[75.078543,37.318144],[75.018181,37.293867],[74.927022,37.277678],[74.911008,37.233378],[74.816153,37.216699],[74.800139,37.248147],[74.753943,37.281011],[74.727458,37.282916],[74.665864,37.23576],[74.642458,37.261485],[74.598727,37.258151],[74.578401,37.231472],[74.54514,37.2491],[74.511263,37.240048],[74.477387,37.19954],[74.487858,37.161871],[74.465068,37.147085],[74.496481,37.116072],[74.498944,37.072155],[74.530357,37.082182],[74.56793,37.032512],[74.617205,37.043499],[74.632603,37.066425],[74.70898,37.084569],[74.739161,37.028212],[74.792747,37.027257],[74.806914,37.054485],[74.84695,37.056873],[74.84387,37.0134],[74.86974,36.990458],[74.893762,36.939772],[74.938725,36.94312],[74.927638,36.978029],[75.005862,36.99476],[75.032348,37.016745],[75.063145,37.006231],[75.172166,37.013877],[75.16847,36.991892],[75.244847,36.963207],[75.288579,36.974682],[75.345861,36.960816],[75.413614,36.954599],[75.396368,36.904367],[75.430245,36.873255],[75.434556,36.83303],[75.425933,36.778883],[75.458578,36.720861],[75.504773,36.743404],[75.536802,36.729975],[75.537418,36.773131],[75.588541,36.762584],[75.634121,36.771693],[75.724048,36.750597],[75.8072,36.707908],[75.871257,36.666636],[75.947018,36.590752],[75.924228,36.566242],[75.991981,36.505654],[76.035097,36.409386],[75.991365,36.35205],[75.998757,36.312034],[76.055423,36.252695],[76.060967,36.225182],[76.011691,36.229044],[76.016619,36.165294],[75.96796,36.159013],[75.936547,36.13485],[75.949482,36.070056],[75.982742,36.031347],[76.028322,36.016827],[76.044336,36.026991],[76.097307,36.022635],[76.117017,35.975186],[76.16506,35.908807],[76.146582,35.839946],[76.160133,35.82442],[76.221727,35.823449],[76.228502,35.837035],[76.298719,35.841401],[76.365857,35.82442],[76.369552,35.86323],[76.431762,35.851589],[76.471798,35.886021],[76.51553,35.881173],[76.55803,35.923347],[76.59745,35.895718],[76.579587,35.866625],[76.587595,35.840431],[76.566037,35.819082],[76.593754,35.771996],[76.69292,35.747714],[76.769297,35.653917],[76.848753,35.668018],[76.906651,35.615005],[76.967013,35.591649],[76.99781,35.611113],[77.072339,35.591162],[77.093281,35.569746],[77.195527,35.519103],[77.307628,35.540533],[77.331649,35.530793],[77.355055,35.494257],[77.396939,35.467942],[77.451758,35.46063],[77.518895,35.482075],[77.578025,35.47574],[77.590344,35.460143],[77.639619,35.45478],[77.657481,35.477689],[77.690742,35.448443],[77.735706,35.461605],[77.757879,35.497181],[77.797299,35.491334],[77.816394,35.518616],[77.85643,35.487436],[77.870596,35.495232],[77.914944,35.465017],[77.917408,35.490847],[77.951284,35.478664],[78.009799,35.491821],[78.029509,35.469404],[78.048603,35.491334],[78.140378,35.494745],[78.113892,35.466967],[78.107117,35.437229],[78.046755,35.384063],[78.013494,35.366008],[78.020885,35.315237],[78.01719,35.228267],[78.060306,35.180344],[78.062769,35.114772],[78.078784,35.100084],[78.124979,35.108407],[78.150849,35.069721],[78.123131,35.036897],[78.160704,34.990823],[78.201972,34.974642],[78.182262,34.936874],[78.206283,34.891726],[78.237696,34.882398],[78.230921,34.776288],[78.21429,34.760556],[78.213059,34.717771],[78.267261,34.705472],[78.265413,34.651335],[78.280812,34.623269],[78.346101,34.60406],[78.397224,34.605538],[78.427405,34.594207],[78.436029,34.543942],[78.492695,34.578441],[78.542586,34.574499],[78.559832,34.55725],[78.562912,34.51288],[78.58139,34.505483],[78.634977,34.538026],[78.708274,34.522249],[78.715049,34.502031],[78.758781,34.481807],[78.742766,34.45467],[78.809288,34.432955],[78.878273,34.391481],[78.899831,34.354929],[78.958961,34.386049],[78.973128,34.362833],[79.039649,34.33467],[79.048888,34.348506],[79.0107,34.399877],[79.039033,34.421601],[79.072294,34.412714],[79.161605,34.441345],[79.179467,34.422588],[79.241677,34.415183],[79.274322,34.435916],[79.326677,34.44332],[79.363017,34.428018],[79.435082,34.447761],[79.504683,34.45467],[79.545335,34.476381],[79.58106,34.456151],[79.675914,34.451216],[79.699936,34.477861],[79.735661,34.471447],[79.801566,34.478847],[79.861312,34.528166],[79.84345,34.55725],[79.88595,34.642965],[79.866856,34.671517],[79.906892,34.683821],[79.898268,34.732035],[79.947544,34.821008],[79.926602,34.849499],[79.961094,34.862759],[79.996819,34.856375],[80.003594,34.895162],[80.034391,34.902033],[80.041782,34.943252],[80.02392,34.971209],[80.04363,35.022196],[80.031311,35.034447],[80.078123,35.076578],[80.118159,35.066293],[80.23026,35.147565],[80.223484,35.177409],[80.257977,35.203331],[80.362687,35.20871],[80.267832,35.295701],[80.286926,35.35283],[80.321419,35.38699],[80.375006,35.387966],[80.432904,35.449418],[80.444607,35.417235],[80.514824,35.391869],[80.532686,35.404553],[80.56841,35.391381],[80.599823,35.409431],[80.65649,35.393821],[80.690982,35.364544],[80.689135,35.339162],[80.759968,35.334768],[80.844351,35.345508],[80.894242,35.324027],[80.924423,35.330862],[80.963844,35.310842],[81.026053,35.31133],[81.002648,35.334768],[81.030981,35.337209],[81.031597,35.380648],[81.054387,35.402602],[81.09935,35.40748],[81.103662,35.386015],[81.142466,35.365032],[81.191741,35.36552],[81.219458,35.319144],[81.26627,35.322562],[81.285364,35.345508],[81.314313,35.337209],[81.363588,35.354783],[81.385762,35.335256],[81.441196,35.333303],[81.447972,35.318167],[81.504638,35.279092],[81.513261,35.23511],[81.68634,35.235599],[81.736847,35.26248],[81.804601,35.270786],[81.853876,35.25857],[81.927789,35.271275],[81.955506,35.307423],[81.99123,35.30547],[82.030034,35.321585],[82.05344,35.35039],[82.029419,35.426013],[82.034346,35.451855],[82.071302,35.450393],[82.086701,35.467454],[82.164925,35.495719],[82.189563,35.513258],[82.234526,35.520565],[82.263475,35.547837],[82.2992,35.544916],[82.328149,35.559523],[82.350323,35.611113],[82.336156,35.651486],[82.392823,35.656349],[82.424852,35.712736],[82.468583,35.717595],[82.501844,35.701073],[82.546192,35.708362],[82.628727,35.692324],[82.652133,35.67288],[82.731589,35.637868],[82.780249,35.666073],[82.795031,35.688436],[82.873871,35.688922],[82.894813,35.673852],[82.967494,35.667532],[82.956407,35.636409],[82.981661,35.599922],[82.971806,35.548324],[82.998907,35.484512],[83.067892,35.46258],[83.088834,35.425526],[83.127022,35.398699],[83.178145,35.38943],[83.251442,35.417722],[83.280391,35.401138],[83.333978,35.397236],[83.405427,35.380648],[83.449159,35.382111],[83.502745,35.360639],[83.540318,35.364056],[83.54155,35.341603],[83.599448,35.351366],[83.622238,35.335256],[83.677672,35.361128],[83.785462,35.36308],[83.79778,35.354783],[83.885244,35.367472],[83.906186,35.40309],[84.005968,35.422599],[84.077417,35.400163],[84.095895,35.362592],[84.140859,35.379184],[84.160569,35.359663],[84.200605,35.381135],[84.274517,35.404065],[84.333032,35.413821],[84.424191,35.466479],[84.45314,35.473303],[84.475929,35.516181],[84.448828,35.550272],[84.513502,35.564391],[84.570168,35.588242],[84.628067,35.595055],[84.704443,35.616951],[84.729081,35.613546],[84.798066,35.647595],[84.920022,35.696213],[84.973608,35.709334],[84.99455,35.737028],[85.053065,35.752086],[85.146071,35.742371],[85.271107,35.788989],[85.341324,35.753543],[85.373969,35.700101],[85.518715,35.680658],[85.566142,35.6403],[85.612953,35.651486],[85.65299,35.731199],[85.691178,35.751114],[85.811286,35.778794],[85.835308,35.771996],[85.903677,35.78462],[85.949256,35.778794],[86.035488,35.846738],[86.05335,35.842857],[86.090306,35.876809],[86.093386,35.906868],[86.129111,35.941761],[86.150668,36.00424],[86.173458,36.008113],[86.199944,36.047801],[86.182081,36.064734],[86.187625,36.130983],[86.248603,36.141616],[86.2794,36.170608],[86.35824,36.168676],[86.392733,36.206834],[86.454943,36.221319],[86.515305,36.205385],[86.531935,36.227113],[86.599072,36.222285],[86.69947,36.24449],[86.746282,36.291777],[86.836209,36.291294],[86.86331,36.299977],[86.887332,36.262829],[86.931064,36.265242],[86.943998,36.284058],[86.996353,36.308658],[87.051788,36.2966],[87.08628,36.310587],[87.149106,36.297565],[87.161425,36.325535],[87.193454,36.349158],[87.292004,36.358797],[87.348055,36.393008],[87.363453,36.420463],[87.386859,36.412757],[87.426895,36.42576],[87.460155,36.409868],[87.470626,36.354459],[87.570409,36.342409],[87.6203,36.360243],[87.731785,36.384818],[87.767509,36.3747],[87.826023,36.391563],[87.838342,36.383855],[87.919646,36.39349],[87.95845,36.408423],[87.983088,36.437797],[88.006494,36.430575],[88.092109,36.43539],[88.134609,36.427205],[88.182652,36.452721],[88.222688,36.447426],[88.241782,36.468605],[88.282434,36.470049],[88.366202,36.458016],[88.356963,36.477268],[88.41055,36.473418],[88.470912,36.48208],[88.498629,36.446463],[88.573158,36.461386],[88.618121,36.428168],[88.623665,36.389636],[88.690186,36.367954],[88.766563,36.292259],[88.783809,36.291777],[88.802903,36.33807],[88.838628,36.353496],[88.870657,36.348193],[88.926091,36.36458],[88.964279,36.318785],[89.013554,36.315409],[89.054822,36.291777],[89.10225,36.281164],[89.126887,36.254626],[89.198952,36.260417],[89.232213,36.295636],[89.292575,36.231457],[89.335075,36.23725],[89.375727,36.228078],[89.490291,36.151281],[89.594385,36.126632],[89.614711,36.109712],[89.711414,36.093272],[89.766848,36.073925],[89.819819,36.080697],[89.914058,36.079246],[89.941159,36.067637],[89.944855,36.140649],[89.997825,36.168193],[90.019999,36.213594],[90.028006,36.258486],[90.003369,36.278752],[90.043405,36.276822],[90.058188,36.255591],[90.145651,36.239181],[90.130252,36.2078],[90.198006,36.187516],[90.23681,36.160462],[90.325505,36.159496],[90.424055,36.133883],[90.478258,36.13195],[90.534925,36.147899],[90.613149,36.126632],[90.659344,36.13485],[90.776373,36.086501],[90.815793,36.035703],[90.850285,36.016827],[90.922966,36.028927],[90.979017,36.106811],[91.081263,36.088436],[91.124994,36.115514],[91.09235,36.163844],[91.096045,36.219871],[91.051698,36.238215],[91.07264,36.299012],[91.026444,36.323607],[91.051698,36.433946],[91.028292,36.443093],[91.039995,36.474861],[91.035683,36.529703],[91.011662,36.539801],[90.905104,36.560474],[90.831191,36.55807],[90.810865,36.585466],[90.741264,36.585947],[90.72217,36.620058],[90.730793,36.655594],[90.706156,36.658955],[90.720938,36.708868],[90.754815,36.721341],[90.727098,36.755872],[90.732025,36.825844],[90.758511,36.825844],[90.853981,36.915373],[90.924198,36.921115],[90.983944,36.913459],[91.036915,36.929727],[91.051698,36.96751],[91.126842,36.978507],[91.133618,37.007665],[91.181045,37.025345],[91.216153,37.010054],[91.303617,37.012444],[91.291298,37.042544],[91.303617,37.083136],[91.286371,37.105095],[91.280211,37.163779],[91.1909,37.205737],[91.194596,37.273868],[91.134849,37.324331],[91.136081,37.355734],[91.113292,37.387124],[91.099741,37.447965],[91.073256,37.475992],[91.019669,37.493088],[90.958075,37.477891],[90.911879,37.519674],[90.865684,37.53059],[90.882314,37.575664],[90.854597,37.604117],[90.820104,37.613599],[90.777605,37.648672],[90.643946,37.696988],[90.586663,37.703144],[90.579272,37.720661],[90.519526,37.730601],[90.516446,38.207111],[90.531229,38.319886],[90.401882,38.311434],[90.361846,38.300163],[90.352607,38.233441],[90.280542,38.238142],[90.137644,38.340543],[90.179528,38.396848],[90.129636,38.400131],[90.111774,38.418889],[90.111774,38.477945],[90.130868,38.494341],[90.248513,38.491531],[90.315034,38.501835],[90.353222,38.482162],[90.427135,38.493873],[90.465323,38.521971],[90.463476,38.556611],[90.525685,38.561291],[90.560794,38.593573],[90.608837,38.594508],[90.606374,38.610878],[90.645794,38.635191],[90.619308,38.664636],[90.65996,38.674449],[90.724634,38.658094],[90.899561,38.679588],[90.970394,38.697806],[90.992567,38.695003],[91.188436,38.73096],[91.242639,38.752433],[91.298689,38.746365],[91.446515,38.813546],[91.501333,38.815411],[91.681188,38.852706],[91.694738,38.86622],[91.806223,38.872744],[91.87952,38.884391],[91.880752,38.899297],[91.966368,38.930961],[92.10865,38.963541],[92.173323,38.960749],[92.197961,38.983548],[92.263866,39.002153],[92.380279,38.999828],[92.416003,39.010524],[92.41046,39.03842],[92.366728,39.059335],[92.366112,39.096037],[92.343938,39.146181],[92.339011,39.236628],[92.378431,39.258411],[92.52564,39.368611],[92.639589,39.514196],[92.687632,39.657174],[92.745531,39.868331],[92.796654,40.153897],[92.906907,40.310609],[92.920458,40.391792],[92.928465,40.572504],[93.506216,40.648376],[93.760599,40.664721],[93.820961,40.793519],[93.809874,40.879548],[93.908424,40.983539],[94.01067,41.114875],[94.184365,41.268444],[94.534219,41.505966],[94.750413,41.538227],[94.809543,41.619256],[94.861898,41.668451],[94.969072,41.718948],[95.011572,41.726541],[95.110738,41.768513],[95.135991,41.772976],[95.16494,41.735474],[95.199433,41.719395],[95.194505,41.694821],[95.247476,41.61344],[95.299831,41.565994],[95.335556,41.644305],[95.39407,41.693481],[95.445193,41.719841],[95.57146,41.796181],[95.65646,41.826067],[95.759322,41.835878],[95.801206,41.848361],[95.855408,41.849699],[95.998306,41.906289],[96.054973,41.936124],[96.117183,41.985966],[96.137509,42.019765],[96.13874,42.05399],[96.077147,42.149457],[96.178161,42.21775],[96.040806,42.326688],[96.042038,42.352787],[96.06606,42.414674],[95.978596,42.436762],[96.0174,42.482239],[96.02356,42.542675],[96.072219,42.569566],[96.103632,42.604375],[96.166458,42.623314],[96.386348,42.727592]]]]}},{"type":"Feature","properties":{"adcode":710000,"name":"台湾省","center":[121.509062,25.044332],"centroid":[120.971485,23.749452],"childrenNum":0,"level":"province","parent":{"adcode":100000},"subFeatureIndex":31,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[120.443706,22.441432],[120.517619,22.408793],[120.569973,22.361757],[120.640806,22.241605],[120.659285,22.154056],[120.661748,22.067007],[120.651277,22.033171],[120.667908,21.983235],[120.701784,21.927174],[120.743052,21.915515],[120.781857,21.923843],[120.854537,21.883309],[120.873016,21.897191],[120.86624,21.984345],[120.907508,22.033171],[120.912436,22.086418],[120.903197,22.12634],[120.914899,22.302525],[120.981421,22.528248],[121.014682,22.584069],[121.03316,22.650914],[121.078739,22.669691],[121.170514,22.723247],[121.21055,22.770711],[121.237652,22.836362],[121.276456,22.877171],[121.324499,22.945526],[121.35468,23.00999],[121.370695,23.084334],[121.409499,23.1025],[121.430441,23.137175],[121.415042,23.196047],[121.440296,23.271937],[121.479716,23.322507],[121.497578,23.419744],[121.5216,23.483431],[121.522832,23.538858],[121.587505,23.760878],[121.621382,23.920718],[121.65957,24.007125],[121.63986,24.064514],[121.643556,24.097843],[121.678048,24.133895],[121.689135,24.174303],[121.809243,24.339083],[121.82649,24.423572],[121.867758,24.47914],[121.88562,24.529784],[121.892395,24.617953],[121.86283,24.671261],[121.841272,24.734329],[121.844968,24.836476],[121.933047,24.938539],[122.012503,25.001471],[121.98109,25.030757],[121.947214,25.031841],[121.917033,25.138076],[121.841888,25.135367],[121.782142,25.160287],[121.745186,25.161912],[121.707613,25.191701],[121.700222,25.226896],[121.655259,25.242054],[121.62323,25.29455],[121.585041,25.309159],[121.53515,25.307535],[121.444607,25.27074],[121.413194,25.238806],[121.371926,25.159746],[121.319572,25.140785],[121.209318,25.12724],[121.132942,25.078466],[121.102145,25.075214],[121.024537,25.040517],[121.009754,24.993878],[120.961095,24.940167],[120.914899,24.864715],[120.89211,24.767482],[120.82374,24.688118],[120.762147,24.658208],[120.68885,24.600542],[120.642654,24.490033],[120.589068,24.43229],[120.546568,24.370159],[120.520698,24.311816],[120.470807,24.242533],[120.451713,24.182493],[120.391967,24.118055],[120.316206,23.984708],[120.278018,23.92783],[120.245989,23.840276],[120.175156,23.807427],[120.102476,23.701162],[120.095084,23.58768],[120.12157,23.504836],[120.108019,23.341191],[120.081534,23.291728],[120.018708,23.073322],[120.029795,23.048544],[120.133272,23.000625],[120.149287,22.896468],[120.20041,22.721039],[120.274323,22.560307],[120.297112,22.531565],[120.443706,22.441432]]],[[[124.542782,25.903886],[124.584666,25.908731],[124.566804,25.941563],[124.542782,25.903886]]],[[[123.445178,25.726102],[123.469816,25.712623],[123.50862,25.722867],[123.512316,25.755212],[123.479055,25.768687],[123.445794,25.749822],[123.445178,25.726102]]],[[[119.646064,23.550928],[119.691028,23.547087],[119.678093,23.600294],[119.61034,23.604132],[119.601717,23.575613],[119.566608,23.584937],[119.562297,23.530627],[119.578927,23.502641],[119.609108,23.503738],[119.646064,23.550928]]],[[[123.666916,25.914114],[123.706952,25.91519],[123.689706,25.939949],[123.666916,25.914114]]],[[[119.506246,23.625518],[119.506246,23.577259],[119.47237,23.556962],[119.519181,23.559705],[119.52534,23.62497],[119.506246,23.625518]]],[[[119.497623,23.38679],[119.495159,23.349982],[119.516717,23.349982],[119.497623,23.38679]]],[[[119.557369,23.666634],[119.608492,23.620035],[119.615268,23.661153],[119.586318,23.675952],[119.557369,23.666634]]],[[[122.066706,25.6247],[122.087032,25.61067],[122.092575,25.639268],[122.066706,25.6247]]],[[[121.468013,22.67687],[121.474788,22.643734],[121.513592,22.631582],[121.514824,22.676318],[121.468013,22.67687]]],[[[121.510513,22.086972],[121.507433,22.048704],[121.533918,22.022076],[121.594281,21.995443],[121.604752,22.022631],[121.575186,22.037055],[121.575802,22.0842],[121.510513,22.086972]]],[[[122.097503,25.499987],[122.110438,25.465952],[122.122141,25.495666],[122.097503,25.499987]]],[[[119.421247,23.216949],[119.436029,23.186146],[119.453275,23.216399],[119.421247,23.216949]]],[[[120.355011,22.327439],[120.395663,22.342385],[120.383344,22.355669],[120.355011,22.327439]]]]}},{"type":"Feature","properties":{"adcode":810000,"name":"香港特别行政区","center":[114.173355,22.320048],"centroid":[114.134357,22.377366],"childrenNum":18,"level":"province","parent":{"adcode":100000},"subFeatureIndex":32,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[114.031778,22.503923],[114.000981,22.491206],[113.977575,22.45692],[113.918445,22.418199],[113.920293,22.367845],[113.951706,22.355116],[113.956633,22.359543],[113.980039,22.366185],[114.026234,22.34792],[113.955401,22.298649],[113.969568,22.321349],[113.898119,22.308615],[113.889496,22.271514],[113.8433,22.229418],[113.84946,22.191188],[113.899351,22.215568],[113.935691,22.205041],[113.981271,22.229972],[113.996669,22.206149],[114.026234,22.229418],[114.004676,22.239389],[114.02993,22.263207],[114.034857,22.300864],[114.069966,22.326885],[114.121089,22.320795],[114.145726,22.300864],[114.120473,22.272068],[114.164821,22.226648],[114.200545,22.232188],[114.203009,22.206703],[114.265835,22.200608],[114.248588,22.274837],[114.262139,22.294773],[114.284929,22.263761],[114.313262,22.264315],[114.315726,22.299203],[114.315726,22.299756],[114.278153,22.328546],[114.283081,22.386661],[114.322501,22.385554],[114.323117,22.385554],[114.323733,22.385001],[114.323733,22.384447],[114.356994,22.340171],[114.394566,22.361757],[114.385327,22.41156],[114.406269,22.432582],[114.406269,22.433688],[114.376088,22.436454],[114.325581,22.479041],[114.278769,22.435901],[114.220255,22.427603],[114.205473,22.449729],[114.23319,22.466875],[114.2529,22.445304],[114.340979,22.50337],[114.309566,22.497288],[114.28924,22.52272],[114.263987,22.541515],[114.263371,22.541515],[114.260291,22.547595],[114.232574,22.528801],[114.232574,22.539857],[114.222719,22.553122],[114.166052,22.559201],[114.156813,22.543726],[114.095219,22.534329],[114.082285,22.512216],[114.031778,22.503923]]],[[[114.142647,22.213906],[114.123553,22.238836],[114.120473,22.177888],[114.154965,22.177888],[114.166668,22.205041],[114.142647,22.213906]]],[[[114.305871,22.372273],[114.313878,22.340724],[114.332972,22.353455],[114.305255,22.372826],[114.305871,22.372273]]],[[[114.320037,22.381127],[114.323733,22.384447],[114.323733,22.385001],[114.323117,22.385554],[114.322501,22.385554],[114.319421,22.382234],[114.320037,22.38168],[114.320037,22.381127]]],[[[114.305871,22.369506],[114.305871,22.372273],[114.305255,22.372826],[114.305871,22.369506]]],[[[114.315726,22.299203],[114.316958,22.298649],[114.316342,22.30031],[114.315726,22.299756],[114.315726,22.299203]]],[[[114.319421,22.382234],[114.320037,22.381127],[114.320037,22.38168],[114.319421,22.382234]]],[[[114.372392,22.32301],[114.373008,22.323564],[114.372392,22.323564],[114.372392,22.32301]]],[[[114.323733,22.297541],[114.324349,22.297541],[114.323733,22.298095],[114.323733,22.297541]]]]}},{"type":"Feature","properties":{"adcode":820000,"name":"澳门特别行政区","center":[113.54909,22.198951],"centroid":[113.566988,22.159307],"childrenNum":8,"level":"province","parent":{"adcode":100000},"subFeatureIndex":33,"acroutes":[100000]},"geometry":{"type":"MultiPolygon","coordinates":[[[[113.554425,22.107489],[113.6037,22.132438],[113.575983,22.194513],[113.558736,22.212244],[113.53841,22.209473],[113.534715,22.174009],[113.554425,22.142416],[113.554425,22.107489]]],[[[113.586453,22.201162],[113.575983,22.201162],[113.575983,22.194513],[113.586453,22.201162]]]]}},{"type":"Feature","properties":{"name":"","adchar":"JD","adcode":"100000_JD"},"geometry":{"type":"MultiPolygon","coordinates":[[[[122.51865306,23.46078502],[122.79861399,24.57367379],[122.79889322,24.57678999],[122.79819583,24.57983997],[122.79659008,24.58252516],[122.79423315,24.58458272],[122.79135575,24.58581125],[122.78823955,24.58609049],[122.78518957,24.5853931],[122.78250438,24.58378734],[122.78044682,24.58143041],[122.77921829,24.57855302],[122.49925737,23.46566424],[122.49897813,23.46254804],[122.49967552,23.45949807],[122.50128127,23.45681287],[122.5036382,23.45475531],[122.5065156,23.45352678],[122.50963181,23.45324755],[122.51268178,23.45394494],[122.51536697,23.45555069],[122.51742454,23.45790762],[122.51865306,23.46078502]]],[[[121.17202617,20.8054593],[121.90938804,21.68743347],[121.9109946,21.69011818],[121.91169291,21.69316794],[121.91141462,21.69628423],[121.91018696,21.699162],[121.9081301,21.70151955],[121.9054454,21.70312611],[121.90239563,21.70382443],[121.89927934,21.70354613],[121.89640158,21.70231847],[121.89404403,21.70026162],[121.15668216,20.81828744],[121.1550756,20.81560273],[121.15437729,20.81255297],[121.15465558,20.80943668],[121.15588324,20.80655891],[121.1579401,20.80420136],[121.1606248,20.8025948],[121.16367457,20.80189649],[121.16679085,20.80217478],[121.16966862,20.80340244],[121.17202617,20.8054593]]],[[[119.47366172,18.00707291],[120.02569734,19.02403788],[120.02674143,19.02698721],[120.02682302,19.03011484],[120.02593412,19.0331146],[120.02416175,19.03569286],[120.02167941,19.03759723],[120.01873007,19.03864132],[120.01560245,19.03872291],[120.01260269,19.03783401],[120.01002443,19.03606165],[120.00812005,19.0335793],[119.45608443,18.01661433],[119.45504035,18.01366499],[119.45495876,18.01053737],[119.45584765,18.00753761],[119.45762002,18.00495935],[119.46010237,18.00305497],[119.4630517,18.00201089],[119.46617933,18.0019293],[119.46917909,18.0028182],[119.47175735,18.00459056],[119.47366172,18.00707291]]],[[[119.0726757,15.04098494],[119.0726757,16.04388528],[119.07218626,16.04697545],[119.07076587,16.04976313],[119.06855355,16.05197545],[119.06576587,16.05339584],[119.0626757,16.05388528],[119.05958553,16.05339584],[119.05679784,16.05197545],[119.05458553,16.04976313],[119.05316513,16.04697545],[119.0526757,16.04388528],[119.0526757,15.04105889],[119.0521839,15.00781004],[119.05262758,15.00471297],[119.05400659,15.00190458],[119.05618595,14.99965979],[119.05895232,14.99819832],[119.06203491,14.99766324],[119.06513198,14.99810691],[119.06794036,14.99948592],[119.07018516,15.00166528],[119.07164663,15.00443165],[119.07218171,15.00751424],[119.0726746,15.04083704],[119.0726757,15.04098494]]],[[[118.68646749,11.18959191],[118.52518702,10.91547751],[118.52404181,10.91256595],[118.52385237,10.909443],[118.52463726,10.90641436],[118.52631962,10.9037765],[118.5287348,10.90178762],[118.53164636,10.90064241],[118.53476931,10.90045298],[118.53779795,10.90123786],[118.54043581,10.90292022],[118.54242469,10.9053354],[118.70409227,11.18010771],[118.70476212,11.18147468],[118.87431591,11.606662],[118.87459939,11.60747236],[118.98894963,11.98573108],[118.98937534,11.98883067],[118.9888224,11.99191011],[118.98734492,11.99466796],[118.98508753,11.99683427],[118.98227119,11.99819697],[118.9791716,11.99862269],[118.97609216,11.99806975],[118.97333431,11.99659227],[118.97116801,11.99433487],[118.9698053,11.99151854],[118.85557939,11.6136711],[118.68646749,11.18959191]]],[[[115.54466883,7.14672265],[116.2504858,7.979279],[116.25211077,7.98195261],[116.25283001,7.9849975],[116.25257312,7.98811563],[116.25136525,7.99100176],[116.24932463,7.99337338],[116.24665102,7.99499834],[116.24360613,7.99571758],[116.240488,7.99546069],[116.23760187,7.99425282],[116.23523025,7.99221221],[115.52941328,7.15965587],[115.52778832,7.15698226],[115.52706908,7.15393736],[115.52732596,7.15081924],[115.52853383,7.1479331],[115.53057445,7.14556148],[115.53324806,7.14393652],[115.53629295,7.14321728],[115.53941108,7.14347417],[115.54229721,7.14468204],[115.54466883,7.14672265]]],[[[112.30705249,3.53487257],[111.78690114,3.41687263],[111.78399583,3.41571167],[111.78159146,3.41370973],[111.77992341,3.41106279],[111.77915495,3.40802995],[111.77936129,3.40490807],[111.78052226,3.40200275],[111.78252419,3.39959839],[111.78517113,3.39793033],[111.78820398,3.39716187],[111.79132585,3.39736822],[112.31181658,3.51544515],[112.31248917,3.51562254],[112.52147408,3.5785908],[112.52281386,3.57910186],[112.85206367,3.73256867],[112.85465776,3.7343178],[112.85658437,3.73678292],[112.85765492,3.73972276],[112.85776462,3.74284952],[112.85690272,3.74585715],[112.8551536,3.74845124],[112.85268847,3.75037785],[112.84974864,3.7514484],[112.84662187,3.75155809],[112.84361424,3.7506962],[112.51501594,3.59753306],[112.30705249,3.53487257]]],[[[108.26055972,6.08912451],[108.29013305,6.01266273],[108.29170425,6.00995718],[108.29403462,6.00786957],[108.29689603,6.00660426],[108.3000084,6.00628511],[108.30306706,6.00694335],[108.30577262,6.00851455],[108.30786022,6.01084492],[108.30912553,6.01370633],[108.30944469,6.0168187],[108.30878645,6.01987736],[108.279563,6.09543449],[108.25611734,6.22752625],[108.21679964,6.53816468],[108.21876335,6.94964057],[108.24419535,7.07390742],[108.24433543,7.07703297],[108.24350281,7.08004883],[108.24177899,7.0826598],[108.2393327,7.08461028],[108.23640341,7.08570936],[108.23327786,7.08584944],[108.230262,7.08501682],[108.22765103,7.083293],[108.22570055,7.08084671],[108.22460147,7.07791743],[108.19897125,6.95268198],[108.1987683,6.95072469],[108.19679674,6.53760583],[108.19687578,6.53630242],[108.23630689,6.22476797],[108.23638164,6.22427602],[108.26004031,6.09098419],[108.26055972,6.08912451]]],[[[110.12822847,11.36894451],[110.05553696,11.25335394],[110.05430621,11.25047749],[110.05402458,11.2473615],[110.05471962,11.24431099],[110.05632331,11.24162456],[110.05867865,11.23956519],[110.0615551,11.23833444],[110.06467109,11.23805281],[110.0677216,11.23874785],[110.07040803,11.24035153],[110.07246741,11.24270688],[110.14541497,11.35870461],[110.14588682,11.35954163],[110.20700505,11.48128846],[110.20728377,11.48189306],[110.25854422,11.60358735],[110.25901765,11.60499559],[110.30436343,11.7826124],[110.30456934,11.78364161],[110.32822801,11.94571326],[110.32832827,11.94685414],[110.33424294,12.14159753],[110.33424553,12.14210167],[110.33227398,12.24038351],[110.33172267,12.24346324],[110.33024665,12.24622187],[110.3279904,12.24838938],[110.32517479,12.24975358],[110.32207543,12.25018094],[110.3189957,12.24962962],[110.31623706,12.2481536],[110.31406956,12.24589736],[110.31270536,12.24308175],[110.312278,12.23998238],[110.3142445,12.14195265],[110.3083549,11.94803461],[110.28485499,11.78705054],[110.23982347,11.61066468],[110.18898148,11.48996382],[110.12822847,11.36894451]]],[[[109.82951587,15.22896754],[109.84522534,15.15316562],[109.84633168,15.15023907],[109.84828823,15.14779763],[109.85090347,15.14608029],[109.85392139,15.14525516],[109.85704658,15.145403],[109.85997314,15.14650935],[109.86241457,15.1484659],[109.86413191,15.15108113],[109.86495704,15.15409906],[109.8648092,15.15722425],[109.84903675,15.23333003],[109.84889209,15.23393326],[109.78974541,15.45068337],[109.7892391,15.45210582],[109.69066131,15.67432448],[109.6900529,15.67548445],[109.59147511,15.83677407],[109.59116145,15.8372556],[109.53201478,15.92259221],[109.53166592,15.92306523],[109.30888011,16.20725797],[109.30658844,16.20938798],[109.30375073,16.21070558],[109.30064474,16.21108179],[109.29757451,16.21047978],[109.29484059,16.20895848],[109.29271057,16.20666681],[109.29139298,16.2038291],[109.29101677,16.20072311],[109.29161878,16.19765288],[109.29314007,16.19491896],[109.51574449,15.91095759],[109.57455994,15.82609887],[109.67264555,15.66561455],[109.77065019,15.44468789],[109.82951587,15.22896754]]]]}}]} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapGeojson/empty.json b/src/packages/components/Charts/Maps/MapBase/mapGeojson/empty.json new file mode 100644 index 0000000..60a9c4c --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapGeojson/empty.json @@ -0,0 +1,4 @@ +{ + "type":"FeatureCollection", + "features":[] +} \ No newline at end of file diff --git a/src/packages/components/Charts/Maps/MapBase/mapWithoutHainanIsLands.json b/src/packages/components/Charts/Maps/MapBase/mapWithoutHainanIsLands.json new file mode 100644 index 0000000..772b81d --- /dev/null +++ b/src/packages/components/Charts/Maps/MapBase/mapWithoutHainanIsLands.json @@ -0,0 +1,25711 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "properties": { + "adcode": 110000, + "name": "北京市", + "center": [116.405285, 39.904989], + "centroid": [116.41995, 40.18994], + "childrenNum": 16, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 0, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.348611, 40.581141], + [117.389879, 40.561593], + [117.429915, 40.576141], + [117.412669, 40.605226], + [117.467487, 40.649738], + [117.467487, 40.649738], + [117.501364, 40.636569], + [117.514914, 40.660181], + [117.493973, 40.675161], + [117.408973, 40.686961], + [117.342451, 40.673799], + [117.319662, 40.657911], + [117.278394, 40.664267], + [117.208177, 40.694675], + [117.117018, 40.70012], + [117.11209, 40.707379], + [117.012308, 40.693767], + [116.964881, 40.709647], + [116.926692, 40.745022], + [116.924229, 40.773581], + [116.848468, 40.839264], + [116.81336, 40.848319], + [116.759773, 40.889954], + [116.713577, 40.909858], + [116.722201, 40.927495], + [116.677853, 40.970888], + [116.698795, 41.021477], + [116.688324, 41.044501], + [116.647672, 41.059394], + [116.615643, 41.053076], + [116.623034, 41.021026], + [116.598397, 40.974503], + [116.5676, 40.992574], + [116.519557, 40.98128], + [116.519557, 40.98128], + [116.455499, 40.980828], + [116.447492, 40.953715], + [116.477057, 40.899907], + [116.398216, 40.90624], + [116.370499, 40.94377], + [116.339702, 40.929303], + [116.334159, 40.90443], + [116.438253, 40.81934], + [116.46597, 40.774487], + [116.453651, 40.765876], + [116.316912, 40.772221], + [116.311369, 40.754996], + [116.273181, 40.762703], + [116.247311, 40.791707], + [116.22021, 40.744115], + [116.204812, 40.740035], + [116.171551, 40.695582], + [116.162928, 40.662451], + [116.133979, 40.666536], + [116.09887, 40.630665], + [116.005247, 40.583868], + [115.982457, 40.578868], + [115.971986, 40.6025], + [115.907929, 40.617493], + [115.885139, 40.595229], + [115.827857, 40.587504], + [115.819849, 40.55932], + [115.784741, 40.55841], + [115.755176, 40.540221], + [115.736082, 40.503372], + [115.781045, 40.49336], + [115.771806, 40.443734], + [115.864197, 40.359422], + [115.917784, 40.354405], + [115.95166, 40.281852], + [115.968907, 40.264045], + [115.89869, 40.234354], + [115.870356, 40.185909], + [115.855574, 40.188652], + [115.847567, 40.147036], + [115.806299, 40.15344], + [115.773654, 40.176307], + [115.75456, 40.145663], + [115.75456, 40.145663], + [115.599959, 40.119583], + [115.59072, 40.096239], + [115.527278, 40.076092], + [115.485394, 40.040364], + [115.454597, 40.029825], + [115.450286, 39.992697], + [115.428728, 39.984443], + [115.426264, 39.950502], + [115.481083, 39.935819], + [115.522967, 39.899099], + [115.515575, 39.892212], + [115.515575, 39.892212], + [115.526046, 39.87568], + [115.514344, 39.837549], + [115.567314, 39.816407], + [115.552532, 39.794799], + [115.50572, 39.784222], + [115.483547, 39.798477], + [115.483547, 39.798477], + [115.443511, 39.785601], + [115.439815, 39.752022], + [115.486626, 39.741899], + [115.491554, 39.670074], + [115.478619, 39.650723], + [115.478619, 39.650723], + [115.522351, 39.640124], + [115.518039, 39.597252], + [115.545756, 39.618922], + [115.587024, 39.589873], + [115.633836, 39.599557], + [115.633836, 39.599557], + [115.667712, 39.615234], + [115.698509, 39.577881], + [115.698509, 39.577881], + [115.699125, 39.570039], + [115.699125, 39.570039], + [115.716988, 39.56035], + [115.716988, 39.56035], + [115.718835, 39.553891], + [115.718835, 39.553891], + [115.720683, 39.551122], + [115.720683, 39.551122], + [115.722531, 39.5442], + [115.721299, 39.543738], + [115.722531, 39.5442], + [115.722531, 39.543738], + [115.721299, 39.543738], + [115.722531, 39.543738], + [115.724995, 39.5442], + [115.724995, 39.5442], + [115.738545, 39.540046], + [115.738545, 39.539585], + [115.738545, 39.540046], + [115.738545, 39.539585], + [115.752712, 39.515581], + [115.806299, 39.510041], + [115.806299, 39.510041], + [115.821081, 39.522968], + [115.821081, 39.522968], + [115.828473, 39.541431], + [115.867893, 39.546507], + [115.867893, 39.546507], + [115.91532, 39.582955], + [115.91532, 39.582955], + [115.910393, 39.600479], + [115.910393, 39.600479], + [115.957204, 39.560812], + [115.978146, 39.595868], + [115.995392, 39.576958], + [116.026189, 39.587567], + [116.036044, 39.571884], + [116.09887, 39.575113], + [116.130283, 39.567732], + [116.151841, 39.583416], + [116.198652, 39.589412], + [116.240536, 39.564041], + [116.257782, 39.500344], + [116.307057, 39.488337], + [116.337854, 39.455536], + [116.361876, 39.455074], + [116.361876, 39.455074], + [116.434557, 39.442597], + [116.454883, 39.453226], + [116.444412, 39.482332], + [116.411767, 39.482794], + [116.401912, 39.528046], + [116.443796, 39.510041], + [116.437637, 39.526661], + [116.478289, 39.535431], + [116.473361, 39.552968], + [116.50847, 39.551122], + [116.524484, 39.596329], + [116.592237, 39.621227], + [116.592237, 39.621227], + [116.620571, 39.601863], + [116.664918, 39.605552], + [116.723432, 39.59264], + [116.724048, 39.59264], + [116.723432, 39.59264], + [116.724048, 39.59264], + [116.726512, 39.595407], + [116.726512, 39.595407], + [116.709266, 39.618], + [116.748686, 39.619844], + [116.79057, 39.595868], + [116.812128, 39.615695], + [116.8497, 39.66777], + [116.906366, 39.677444], + [116.90575, 39.688037], + [116.889736, 39.687576], + [116.887272, 39.72533], + [116.916837, 39.731314], + [116.902055, 39.763523], + [116.949482, 39.778703], + [116.918069, 39.84628], + [116.907598, 39.832494], + [116.865714, 39.843982], + [116.812128, 39.889916], + [116.78441, 39.891294], + [116.782563, 39.947749], + [116.757925, 39.967934], + [116.781331, 40.034866], + [116.820135, 40.02845], + [116.831222, 40.051359], + [116.867562, 40.041739], + [116.927924, 40.055024], + [116.945171, 40.04128], + [117.025243, 40.030283], + [117.051728, 40.059605], + [117.105315, 40.074261], + [117.105315, 40.074261], + [117.140423, 40.064185], + [117.159517, 40.077008], + [117.204481, 40.069681], + [117.210024, 40.082045], + [117.224191, 40.094865], + [117.224191, 40.094865], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.274082, 40.105852], + [117.307343, 40.136971], + [117.349227, 40.136513], + [117.367089, 40.172649], + [117.367089, 40.173106], + [117.367089, 40.173106], + [117.367089, 40.172649], + [117.383719, 40.188195], + [117.389879, 40.227958], + [117.351075, 40.229786], + [117.331365, 40.289613], + [117.295024, 40.2782], + [117.271618, 40.325211], + [117.271618, 40.325211], + [117.243285, 40.369453], + [117.226039, 40.368997], + [117.234046, 40.417312], + [117.263611, 40.442367], + [117.208793, 40.501552], + [117.262995, 40.512927], + [117.247597, 40.539766], + [117.269771, 40.560684], + [117.348611, 40.581141], + [117.348611, 40.581141] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 120000, + "name": "天津市", + "center": [117.190182, 39.125596], + "centroid": [117.347043, 39.288036], + "childrenNum": 16, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 1, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.765602, 39.400527], + [117.846906, 39.407926], + [117.871543, 39.411625], + [117.870311, 39.455074], + [117.899877, 39.474479], + [117.912195, 39.517428], + [117.912195, 39.517428], + [117.904804, 39.533585], + [117.933753, 39.574191], + [117.868464, 39.59679], + [117.829659, 39.589873], + [117.766834, 39.598635], + [117.753899, 39.579726], + [117.753899, 39.579726], + [117.745276, 39.547892], + [117.715711, 39.529892], + [117.707088, 39.576036], + [117.684914, 39.58895], + [117.654117, 39.575113], + [117.637486, 39.603246], + [117.66274, 39.636437], + [117.668899, 39.666849], + [117.627015, 39.703693], + [117.57774, 39.726711], + [117.595603, 39.74604], + [117.56111, 39.754782], + [117.546327, 39.775943], + [117.561726, 39.799856], + [117.529081, 39.859144], + [117.529081, 39.859144], + [117.508139, 39.901854], + [117.508139, 39.901854], + [117.512451, 39.90874], + [117.512451, 39.90874], + [117.513067, 39.910576], + [117.513067, 39.910576], + [117.514914, 39.946832], + [117.534625, 39.954631], + [117.546327, 39.999116], + [117.594987, 39.994531], + [117.594987, 39.994531], + [117.614697, 39.97252], + [117.671363, 39.973896], + [117.691073, 39.984902], + [117.756363, 39.965181], + [117.781616, 39.966558], + [117.781616, 39.966558], + [117.795167, 39.996823], + [117.795167, 39.996823], + [117.793319, 40.005534], + [117.793319, 40.005534], + [117.768681, 40.022034], + [117.768681, 40.022034], + [117.744044, 40.018368], + [117.74774, 40.047236], + [117.776073, 40.059605], + [117.752667, 40.081588], + [117.71879, 40.082045], + [117.71879, 40.082045], + [117.675059, 40.082045], + [117.655965, 40.109514], + [117.655965, 40.109514], + [117.654117, 40.114548], + [117.654117, 40.114548], + [117.651653, 40.122786], + [117.651653, 40.122786], + [117.613465, 40.158014], + [117.613465, 40.158014], + [117.609769, 40.160301], + [117.609769, 40.160301], + [117.576508, 40.178593], + [117.571581, 40.219276], + [117.548791, 40.232527], + [117.505059, 40.227044], + [117.450241, 40.252627], + [117.415748, 40.248973], + [117.389879, 40.227958], + [117.383719, 40.188195], + [117.367089, 40.172649], + [117.367089, 40.173106], + [117.367089, 40.173106], + [117.367089, 40.172649], + [117.349227, 40.136513], + [117.307343, 40.136971], + [117.274082, 40.105852], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.254988, 40.114548], + [117.224191, 40.094865], + [117.224191, 40.094865], + [117.210024, 40.082045], + [117.192162, 40.066475], + [117.198322, 39.992697], + [117.150894, 39.944996], + [117.162597, 39.876598], + [117.162597, 39.876598], + [117.227887, 39.852712], + [117.247597, 39.860981], + [117.251908, 39.834332], + [117.192162, 39.832953], + [117.156438, 39.817326], + [117.15767, 39.796638], + [117.205713, 39.763984], + [117.161981, 39.748801], + [117.165061, 39.718886], + [117.165061, 39.718886], + [117.177996, 39.645194], + [117.152742, 39.623532], + [117.10901, 39.625375], + [117.10901, 39.625375], + [117.016004, 39.653949], + [116.983359, 39.638742], + [116.983359, 39.638742], + [116.964265, 39.64335], + [116.948866, 39.680668], + [116.948866, 39.680668], + [116.944555, 39.695405], + [116.944555, 39.695405], + [116.932236, 39.706456], + [116.932236, 39.706456], + [116.90575, 39.688037], + [116.906366, 39.677444], + [116.8497, 39.66777], + [116.812128, 39.615695], + [116.808432, 39.576497], + [116.78749, 39.554352], + [116.819519, 39.528507], + [116.820751, 39.482332], + [116.785026, 39.465702], + [116.832454, 39.435664], + [116.876185, 39.43474], + [116.839845, 39.413474], + [116.840461, 39.378326], + [116.818287, 39.3737], + [116.829374, 39.338994], + [116.870642, 39.357506], + [116.889736, 39.338068], + [116.87249, 39.291304], + [116.881729, 39.225966], + [116.881729, 39.225966], + [116.855859, 39.215766], + [116.870026, 39.153607], + [116.909446, 39.150822], + [116.912526, 39.110898], + [116.91191, 39.111362], + [116.91191, 39.111362], + [116.912526, 39.110898], + [116.871874, 39.054688], + [116.812744, 39.05097], + [116.812744, 39.05097], + [116.783179, 39.05097], + [116.783179, 39.05097], + [116.754229, 39.034701], + [116.754229, 39.034701], + [116.754845, 39.003084], + [116.72836, 38.975174], + [116.708034, 38.931892], + [116.722201, 38.896968], + [116.723432, 38.852706], + [116.75115, 38.831264], + [116.737599, 38.784629], + [116.746222, 38.754299], + [116.794265, 38.744498], + [116.794265, 38.744498], + [116.858939, 38.741231], + [116.877417, 38.680522], + [116.948866, 38.689398], + [116.950714, 38.689398], + [116.95133, 38.689398], + [116.950714, 38.689398], + [116.948866, 38.689398], + [116.95133, 38.689398], + [117.038793, 38.688464], + [117.068358, 38.680522], + [117.055424, 38.639398], + [117.070822, 38.608072], + [117.109626, 38.584685], + [117.150894, 38.617892], + [117.183539, 38.61836], + [117.183539, 38.61836], + [117.213104, 38.639866], + [117.213104, 38.639866], + [117.258684, 38.608072], + [117.258684, 38.608072], + [117.238358, 38.580943], + [117.25314, 38.556143], + [117.368937, 38.564566], + [117.432379, 38.601524], + [117.47919, 38.616489], + [117.55803, 38.613683], + [117.639334, 38.626776], + [117.65658, 38.66043], + [117.729261, 38.680055], + [117.740964, 38.700141], + [117.740964, 38.753833], + [117.671363, 38.772032], + [117.646725, 38.788827], + [117.64611, 38.828933], + [117.752051, 38.847579], + [117.778536, 38.869016], + [117.847522, 38.855502], + [117.875855, 38.920252], + [117.898029, 38.948649], + [117.855529, 38.957492], + [117.837667, 39.057011], + [117.871543, 39.122506], + [117.96455, 39.172631], + [117.977485, 39.206028], + [118.032919, 39.219939], + [118.034767, 39.218548], + [118.064948, 39.231065], + [118.064948, 39.256094], + [118.036615, 39.264898], + [118.024296, 39.289451], + [118.024296, 39.289451], + [117.982412, 39.298714], + [117.982412, 39.298714], + [117.979333, 39.300566], + [117.979333, 39.300566], + [117.973173, 39.312143], + [117.973173, 39.312143], + [117.965782, 39.314921], + [117.965782, 39.314921], + [117.919587, 39.318162], + [117.919587, 39.318162], + [117.88879, 39.332051], + [117.854913, 39.328348], + [117.854297, 39.328348], + [117.854913, 39.328348], + [117.854297, 39.328348], + [117.850601, 39.363984], + [117.850601, 39.363984], + [117.810565, 39.354729], + [117.805022, 39.373237], + [117.784696, 39.376938], + [117.74466, 39.354729], + [117.670747, 39.357969], + [117.669515, 39.322792], + [117.594987, 39.349176], + [117.536472, 39.338068], + [117.521074, 39.357043], + [117.570965, 39.404689], + [117.601146, 39.419485], + [117.614081, 39.407001], + [117.668899, 39.412087], + [117.673211, 39.386652], + [117.699696, 39.407463], + [117.765602, 39.400527] + ] + ], + [ + [ + [117.805022, 39.373237], + [117.852449, 39.380639], + [117.846906, 39.407926], + [117.765602, 39.400527], + [117.784696, 39.376938], + [117.805022, 39.373237] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 130000, + "name": "河北省", + "center": [114.502461, 38.045474], + "childrenNum": 11, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 2, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.467487, 40.649738], + [117.412669, 40.605226], + [117.429915, 40.576141], + [117.389879, 40.561593], + [117.348611, 40.581141], + [117.348611, 40.581141], + [117.269771, 40.560684], + [117.247597, 40.539766], + [117.262995, 40.512927], + [117.208793, 40.501552], + [117.263611, 40.442367], + [117.234046, 40.417312], + [117.226039, 40.368997], + [117.243285, 40.369453], + [117.271618, 40.325211], + [117.271618, 40.325211], + [117.295024, 40.2782], + [117.331365, 40.289613], + [117.351075, 40.229786], + [117.389879, 40.227958], + [117.415748, 40.248973], + [117.450241, 40.252627], + [117.505059, 40.227044], + [117.548791, 40.232527], + [117.571581, 40.219276], + [117.576508, 40.178593], + [117.609769, 40.160301], + [117.609769, 40.160301], + [117.613465, 40.158014], + [117.613465, 40.158014], + [117.651653, 40.122786], + [117.651653, 40.122786], + [117.654117, 40.114548], + [117.654117, 40.114548], + [117.655965, 40.109514], + [117.655965, 40.109514], + [117.675059, 40.082045], + [117.71879, 40.082045], + [117.71879, 40.082045], + [117.752667, 40.081588], + [117.776073, 40.059605], + [117.74774, 40.047236], + [117.744044, 40.018368], + [117.768681, 40.022034], + [117.768681, 40.022034], + [117.793319, 40.005534], + [117.793319, 40.005534], + [117.795167, 39.996823], + [117.795167, 39.996823], + [117.781616, 39.966558], + [117.781616, 39.966558], + [117.756363, 39.965181], + [117.691073, 39.984902], + [117.671363, 39.973896], + [117.614697, 39.97252], + [117.594987, 39.994531], + [117.594987, 39.994531], + [117.546327, 39.999116], + [117.534625, 39.954631], + [117.514914, 39.946832], + [117.513067, 39.910576], + [117.513067, 39.910576], + [117.512451, 39.90874], + [117.512451, 39.90874], + [117.508139, 39.901854], + [117.508139, 39.901854], + [117.529081, 39.859144], + [117.529081, 39.859144], + [117.561726, 39.799856], + [117.546327, 39.775943], + [117.56111, 39.754782], + [117.595603, 39.74604], + [117.57774, 39.726711], + [117.627015, 39.703693], + [117.668899, 39.666849], + [117.66274, 39.636437], + [117.637486, 39.603246], + [117.654117, 39.575113], + [117.684914, 39.58895], + [117.707088, 39.576036], + [117.715711, 39.529892], + [117.745276, 39.547892], + [117.753899, 39.579726], + [117.753899, 39.579726], + [117.766834, 39.598635], + [117.829659, 39.589873], + [117.868464, 39.59679], + [117.933753, 39.574191], + [117.904804, 39.533585], + [117.912195, 39.517428], + [117.912195, 39.517428], + [117.899877, 39.474479], + [117.870311, 39.455074], + [117.871543, 39.411625], + [117.846906, 39.407926], + [117.852449, 39.380639], + [117.805022, 39.373237], + [117.810565, 39.354729], + [117.850601, 39.363984], + [117.850601, 39.363984], + [117.854297, 39.328348], + [117.854913, 39.328348], + [117.854297, 39.328348], + [117.854913, 39.328348], + [117.88879, 39.332051], + [117.919587, 39.318162], + [117.919587, 39.318162], + [117.965782, 39.314921], + [117.965782, 39.314921], + [117.973173, 39.312143], + [117.973173, 39.312143], + [117.979333, 39.300566], + [117.979333, 39.300566], + [117.982412, 39.298714], + [117.982412, 39.298714], + [118.024296, 39.289451], + [118.024296, 39.289451], + [118.036615, 39.264898], + [118.064948, 39.256094], + [118.064948, 39.231065], + [118.034767, 39.218548], + [118.026144, 39.201854], + [118.070492, 39.213911], + [118.077883, 39.201854], + [118.12531, 39.182838], + [118.162883, 39.136433], + [118.1906, 39.080708], + [118.225092, 39.034701], + [118.319331, 39.009594], + [118.366143, 39.016104], + [118.377845, 38.971917], + [118.491178, 38.909077], + [118.539837, 38.910008], + [118.604511, 38.971452], + [118.570634, 38.999363], + [118.533062, 39.090928], + [118.588497, 39.107648], + [118.578642, 39.130863], + [118.637156, 39.157319], + [118.76096, 39.133648], + [118.814546, 39.138754], + [118.857662, 39.162888], + [118.897082, 39.151286], + [118.920488, 39.171703], + [118.951285, 39.178662], + [118.896466, 39.139683], + [118.890307, 39.118792], + [118.926031, 39.123435], + [118.97777, 39.163352], + [119.023966, 39.187012], + [119.038132, 39.211593], + [119.096031, 39.24219], + [119.121284, 39.281576], + [119.185342, 39.342234], + [119.272805, 39.363521], + [119.317153, 39.4107], + [119.316537, 39.437051], + [119.269726, 39.498497], + [119.366428, 39.734996], + [119.474217, 39.813189], + [119.536427, 39.809052], + [119.520413, 39.840306], + [119.540739, 39.888079], + [119.588166, 39.910576], + [119.620195, 39.904609], + [119.642369, 39.925264], + [119.681789, 39.922511], + [119.726137, 39.940867], + [119.787115, 39.950502], + [119.820375, 39.979399], + [119.842549, 39.956007], + [119.872114, 39.960594], + [119.854252, 39.98857], + [119.845629, 40.000949], + [119.845629, 40.000949], + [119.854252, 40.033033], + [119.81668, 40.050443], + [119.81668, 40.050443], + [119.787115, 40.041739], + [119.787115, 40.041739], + [119.783419, 40.046778], + [119.783419, 40.046778], + [119.772332, 40.08113], + [119.736608, 40.104936], + [119.760629, 40.136056], + [119.745847, 40.207851], + [119.716898, 40.195966], + [119.671934, 40.23938], + [119.639289, 40.231613], + [119.639289, 40.231613], + [119.651608, 40.271808], + [119.598021, 40.334335], + [119.586934, 40.375381], + [119.604797, 40.455119], + [119.553674, 40.502007], + [119.572152, 40.523846], + [119.559217, 40.547952], + [119.503783, 40.553864], + [119.477913, 40.533399], + [119.429254, 40.540221], + [119.30237, 40.530215], + [119.256175, 40.543404], + [119.22045, 40.569322], + [119.230921, 40.603863], + [119.177951, 40.609315], + [119.162552, 40.600228], + [119.14469, 40.632482], + [119.184726, 40.680153], + [119.165632, 40.69286], + [119.115125, 40.666536], + [119.054763, 40.664721], + [119.028277, 40.692406], + [119.011031, 40.687414], + [118.96114, 40.72008], + [118.950053, 40.747743], + [118.895234, 40.75409], + [118.907553, 40.775394], + [118.878604, 40.783098], + [118.845959, 40.822057], + [118.873061, 40.847866], + [118.90201, 40.960946], + [118.916792, 40.969984], + [118.977154, 40.959138], + [118.977154, 40.959138], + [119.00056, 40.967273], + [119.013495, 41.007479], + [118.951901, 41.018317], + [118.937118, 41.052625], + [118.964836, 41.079246], + [119.037516, 41.067516], + [119.080632, 41.095936], + [119.081248, 41.131555], + [119.126212, 41.138767], + [119.189038, 41.198234], + [119.169943, 41.222996], + [119.204436, 41.222546], + [119.209364, 41.244599], + [119.2494, 41.279689], + [119.239545, 41.31431], + [119.211827, 41.308016], + [119.197661, 41.282837], + [119.168712, 41.294978], + [119.092951, 41.293629], + [118.980234, 41.305769], + [118.949437, 41.317906], + [118.890923, 41.300823], + [118.844727, 41.342622], + [118.843496, 41.374516], + [118.770199, 41.352956], + [118.741866, 41.324198], + [118.677192, 41.35026], + [118.629765, 41.346666], + [118.528135, 41.355202], + [118.412338, 41.331838], + [118.380309, 41.312062], + [118.348896, 41.342622], + [118.361215, 41.384844], + [118.348896, 41.428384], + [118.327338, 41.450816], + [118.271904, 41.471446], + [118.315636, 41.512688], + [118.302701, 41.55256], + [118.215237, 41.59554], + [118.206614, 41.650566], + [118.159187, 41.67605], + [118.155491, 41.712694], + [118.132702, 41.733241], + [118.140093, 41.784134], + [118.178281, 41.814917], + [118.236179, 41.80778], + [118.247266, 41.773869], + [118.29223, 41.772976], + [118.335346, 41.845241], + [118.340273, 41.87243], + [118.268824, 41.930336], + [118.306396, 41.940131], + [118.313788, 41.98819], + [118.291614, 42.007759], + [118.239875, 42.024655], + [118.286686, 42.033991], + [118.296541, 42.057545], + [118.27252, 42.083312], + [118.239259, 42.092639], + [118.212774, 42.081091], + [118.220165, 42.058434], + [118.194296, 42.031324], + [118.116687, 42.037102], + [118.155491, 42.081091], + [118.097593, 42.105072], + [118.089586, 42.12283], + [118.106216, 42.172082], + [118.033535, 42.199132], + [117.977485, 42.229716], + [117.974405, 42.25054], + [118.047702, 42.280656], + [118.060021, 42.298364], + [118.008898, 42.346595], + [118.024296, 42.385064], + [117.997811, 42.416884], + [117.874007, 42.510038], + [117.856761, 42.539148], + [117.797631, 42.585431], + [117.801326, 42.612744], + [117.779768, 42.61847], + [117.708935, 42.588515], + [117.667051, 42.582347], + [117.60053, 42.603054], + [117.537088, 42.603054], + [117.530313, 42.590278], + [117.475494, 42.602613], + [117.435458, 42.585431], + [117.434226, 42.557224], + [117.387415, 42.517537], + [117.387415, 42.517537], + [117.410205, 42.519743], + [117.413284, 42.471645], + [117.390495, 42.461933], + [117.332596, 42.46105], + [117.332596, 42.46105], + [117.275314, 42.481797], + [117.275314, 42.481797], + [117.188467, 42.468114], + [117.188467, 42.468114], + [117.135496, 42.468996], + [117.09546, 42.484004], + [117.080061, 42.463699], + [117.080061, 42.463699], + [117.01662, 42.456193], + [117.01662, 42.456193], + [117.009228, 42.44957], + [117.009228, 42.44957], + [117.005533, 42.43367], + [117.005533, 42.43367], + [116.99075, 42.425719], + [116.99075, 42.425719], + [116.974736, 42.426603], + [116.974736, 42.426603], + [116.97104, 42.427486], + [116.97104, 42.427486], + [116.944555, 42.415116], + [116.944555, 42.415116], + [116.936547, 42.410256], + [116.936547, 42.410256], + [116.921765, 42.403628], + [116.921765, 42.403628], + [116.910062, 42.395231], + [116.910062, 42.395231], + [116.910678, 42.394789], + [116.910678, 42.394789], + [116.886656, 42.366496], + [116.897743, 42.297479], + [116.918685, 42.229716], + [116.903287, 42.190708], + [116.789338, 42.200462], + [116.825062, 42.155669], + [116.850316, 42.156556], + [116.890352, 42.092639], + [116.879881, 42.018431], + [116.796113, 41.977958], + [116.748686, 41.984186], + [116.727744, 41.951259], + [116.66923, 41.947698], + [116.639049, 41.929891], + [116.597165, 41.935679], + [116.553433, 41.928555], + [116.510933, 41.974399], + [116.4826, 41.975734], + [116.453651, 41.945917], + [116.393289, 41.942802], + [116.414231, 41.982407], + [116.373579, 42.009983], + [116.310137, 41.997086], + [116.298434, 41.96817], + [116.223906, 41.932562], + [116.212819, 41.885352], + [116.194341, 41.861734], + [116.122892, 41.861734], + [116.106877, 41.831419], + [116.129051, 41.805996], + [116.09887, 41.776547], + [116.034196, 41.782795], + [116.007095, 41.79752], + [116.007095, 41.797966], + [116.007095, 41.79752], + [116.007095, 41.797966], + [115.994776, 41.828743], + [115.954124, 41.874213], + [115.916552, 41.945027], + [115.85311, 41.927665], + [115.834632, 41.93835], + [115.811226, 41.912525], + [115.726227, 41.870202], + [115.688038, 41.867528], + [115.654162, 41.829189], + [115.57409, 41.80555], + [115.519887, 41.76762], + [115.488474, 41.760924], + [115.42996, 41.728775], + [115.346808, 41.712247], + [115.319091, 41.691693], + [115.360975, 41.661297], + [115.345576, 41.635807], + [115.377605, 41.603148], + [115.310468, 41.592854], + [115.290142, 41.622835], + [115.26612, 41.616124], + [115.256881, 41.580768], + [115.20391, 41.571367], + [115.195287, 41.602253], + [115.0992, 41.62373], + [115.056085, 41.602253], + [115.016049, 41.615229], + [114.860832, 41.60091], + [114.895325, 41.636255], + [114.902716, 41.695715], + [114.89594, 41.76762], + [114.868839, 41.813579], + [114.922426, 41.825175], + [114.939056, 41.846132], + [114.923658, 41.871093], + [114.915035, 41.960605], + [114.9021, 42.015763], + [114.860832, 42.054879], + [114.86268, 42.097967], + [114.825723, 42.139695], + [114.79431, 42.149457], + [114.789383, 42.130819], + [114.75489, 42.115727], + [114.675434, 42.12061], + [114.647717, 42.109512], + [114.560254, 42.132595], + [114.510978, 42.110844], + [114.502355, 42.06732], + [114.480181, 42.064654], + [114.467863, 42.025989], + [114.511594, 41.981962], + [114.478334, 41.951704], + [114.419203, 41.942356], + [114.352066, 41.953484], + [114.343443, 41.926774], + [114.282465, 41.863517], + [114.200545, 41.789934], + [114.215328, 41.75646], + [114.206704, 41.7386], + [114.237501, 41.698843], + [114.215328, 41.68499], + [114.259059, 41.623282], + [114.226414, 41.616572], + [114.221487, 41.582111], + [114.230726, 41.513584], + [114.101379, 41.537779], + [114.032394, 41.529715], + [113.976959, 41.505966], + [113.953553, 41.483553], + [113.933227, 41.487139], + [113.919677, 41.454404], + [113.877793, 41.431076], + [113.871017, 41.413126], + [113.94493, 41.392477], + [113.92522, 41.325546], + [113.899351, 41.316108], + [113.914749, 41.294529], + [113.95109, 41.282837], + [113.971416, 41.239649], + [113.992357, 41.269794], + [114.016379, 41.231999], + [113.996669, 41.19238], + [113.960945, 41.171211], + [113.920293, 41.172112], + [113.877793, 41.115777], + [113.819279, 41.09774], + [113.868554, 41.06887], + [113.973263, 40.983087], + [113.994821, 40.938798], + [114.057647, 40.925234], + [114.041633, 40.917546], + [114.055183, 40.867782], + [114.073661, 40.857372], + [114.044712, 40.830661], + [114.080437, 40.790348], + [114.104458, 40.797597], + [114.103227, 40.770861], + [114.134639, 40.737314], + [114.162357, 40.71373], + [114.183299, 40.67153], + [114.236269, 40.607043], + [114.283081, 40.590685], + [114.273842, 40.552954], + [114.293552, 40.55159], + [114.282465, 40.494725], + [114.267066, 40.474242], + [114.299711, 40.44009], + [114.286161, 40.425057], + [114.31203, 40.372645], + [114.381015, 40.36307], + [114.390254, 40.351213], + [114.438914, 40.371733], + [114.481413, 40.34802], + [114.530688, 40.345283], + [114.510978, 40.302851], + [114.46971, 40.268155], + [114.406269, 40.246232], + [114.362537, 40.249886], + [114.292936, 40.230242], + [114.255364, 40.236182], + [114.235654, 40.198252], + [114.180219, 40.191395], + [114.135871, 40.175392], + [114.097683, 40.193681], + [114.073046, 40.168533], + [114.073046, 40.168533], + [114.101995, 40.099901], + [114.086596, 40.071513], + [114.045944, 40.056856], + [114.018227, 40.103563], + [113.989278, 40.11226], + [113.959097, 40.033491], + [113.910438, 40.015618], + [114.029314, 39.985819], + [114.028082, 39.959218], + [114.047176, 39.916085], + [114.067502, 39.922511], + [114.17406, 39.897722], + [114.212248, 39.918839], + [114.229494, 39.899558], + [114.204241, 39.885324], + [114.215943, 39.8619], + [114.286776, 39.871087], + [114.285545, 39.858225], + [114.395182, 39.867412], + [114.406885, 39.833413], + [114.390254, 39.819165], + [114.41674, 39.775943], + [114.409964, 39.761683], + [114.408117, 39.652106], + [114.431522, 39.613851], + [114.49558, 39.608318], + [114.51529, 39.564964], + [114.568877, 39.573729], + [114.532536, 39.486027], + [114.501739, 39.476789], + [114.496812, 39.438437], + [114.469095, 39.400989], + [114.466631, 39.329736], + [114.430906, 39.307513], + [114.437066, 39.259337], + [114.416124, 39.242654], + [114.47587, 39.21623], + [114.443841, 39.174023], + [114.388406, 39.176807], + [114.360689, 39.134112], + [114.369928, 39.107648], + [114.345907, 39.075133], + [114.252284, 39.073739], + [114.180835, 39.049111], + [114.157429, 39.061194], + [114.10877, 39.052364], + [114.082901, 39.09325], + [114.082901, 39.09325], + [114.064422, 39.094179], + [114.050872, 39.135969], + [114.006524, 39.122971], + [113.994821, 39.095572], + [113.961561, 39.100681], + [113.930148, 39.063517], + [113.898119, 39.067699], + [113.80696, 38.989595], + [113.776779, 38.986804], + [113.76754, 38.959819], + [113.776163, 38.885788], + [113.795257, 38.860628], + [113.855619, 38.828933], + [113.836525, 38.795824], + [113.839605, 38.7585], + [113.802648, 38.763166], + [113.775547, 38.709949], + [113.720728, 38.713218], + [113.70225, 38.651551], + [113.612939, 38.645942], + [113.603084, 38.587024], + [113.561816, 38.558483], + [113.546417, 38.492936], + [113.583374, 38.459671], + [113.537794, 38.417952], + [113.525475, 38.383245], + [113.557504, 38.343359], + [113.54457, 38.270569], + [113.570439, 38.237202], + [113.598772, 38.22733], + [113.64312, 38.232031], + [113.678844, 38.20523], + [113.711489, 38.213695], + [113.720728, 38.174656], + [113.797105, 38.162894], + [113.831597, 38.16854], + [113.811271, 38.117707], + [113.876561, 38.055059], + [113.872249, 37.990471], + [113.901198, 37.984811], + [113.936307, 37.922993], + [113.959097, 37.906468], + [113.976959, 37.816696], + [114.006524, 37.813386], + [114.044712, 37.761834], + [113.996669, 37.730128], + [113.993589, 37.706932], + [114.068118, 37.721608], + [114.12848, 37.698409], + [114.139567, 37.675676], + [114.115545, 37.619761], + [114.118625, 37.59084], + [114.036705, 37.494037], + [114.014531, 37.42468], + [113.973879, 37.40329], + [113.962792, 37.355734], + [113.90243, 37.310052], + [113.886416, 37.239095], + [113.853155, 37.215269], + [113.832213, 37.167594], + [113.773083, 37.151855], + [113.773699, 37.107004], + [113.758301, 37.075497], + [113.788482, 37.059739], + [113.771851, 37.016745], + [113.791561, 36.98759], + [113.76138, 36.956034], + [113.792793, 36.894796], + [113.773083, 36.85506], + [113.731815, 36.858891], + [113.731815, 36.878521], + [113.696707, 36.882351], + [113.676381, 36.855539], + [113.680692, 36.789907], + [113.600004, 36.752995], + [113.549497, 36.752515], + [113.535946, 36.732373], + [113.499606, 36.740527], + [113.465113, 36.707908], + [113.506997, 36.705029], + [113.476816, 36.655114], + [113.486671, 36.635427], + [113.54457, 36.62342], + [113.539642, 36.594116], + [113.569823, 36.585947], + [113.588917, 36.547974], + [113.559968, 36.528741], + [113.554425, 36.494589], + [113.587069, 36.460904], + [113.635729, 36.451277], + [113.670221, 36.425278], + [113.708409, 36.423352], + [113.731199, 36.363135], + [113.755221, 36.366026], + [113.813119, 36.332285], + [113.856851, 36.329392], + [113.84946, 36.347711], + [113.882104, 36.353977], + [113.911054, 36.314927], + [113.962792, 36.353977], + [113.981887, 36.31782], + [114.002828, 36.334214], + [114.056415, 36.329392], + [114.04348, 36.303353], + [114.080437, 36.269585], + [114.129096, 36.280199], + [114.175907, 36.264759], + [114.170364, 36.245938], + [114.170364, 36.245938], + [114.203009, 36.245456], + [114.2104, 36.272962], + [114.241197, 36.251247], + [114.257827, 36.263794], + [114.299095, 36.245938], + [114.345291, 36.255591], + [114.356378, 36.230492], + [114.408117, 36.224699], + [114.417356, 36.205868], + [114.466015, 36.197658], + [114.480181, 36.177855], + [114.533152, 36.171575], + [114.586739, 36.141133], + [114.588587, 36.118414], + [114.640326, 36.137266], + [114.720398, 36.140166], + [114.734564, 36.15563], + [114.771521, 36.124699], + [114.857752, 36.127599], + [114.858368, 36.144516], + [114.912571, 36.140649], + [114.926737, 36.089403], + [114.914419, 36.052155], + [114.998186, 36.069572], + [115.04623, 36.112613], + [115.048693, 36.161912], + [115.06286, 36.178338], + [115.104744, 36.172058], + [115.12507, 36.209731], + [115.1842, 36.193312], + [115.201446, 36.210214], + [115.201446, 36.210214], + [115.202678, 36.209248], + [115.202678, 36.209248], + [115.202678, 36.208765], + [115.202678, 36.208765], + [115.242098, 36.19138], + [115.279055, 36.13775], + [115.30246, 36.127599], + [115.312931, 36.088436], + [115.365902, 36.099074], + [115.376989, 36.128083], + [115.450902, 36.152248], + [115.465068, 36.170125], + [115.483547, 36.148865], + [115.474923, 36.248352], + [115.466916, 36.258969], + [115.466916, 36.258969], + [115.462605, 36.276339], + [115.417025, 36.292742], + [115.423185, 36.32216], + [115.366518, 36.30914], + [115.368982, 36.342409], + [115.340033, 36.398307], + [115.297533, 36.413239], + [115.317243, 36.454166], + [115.291374, 36.460423], + [115.272895, 36.497476], + [115.33141, 36.550378], + [115.355431, 36.627262], + [115.365902, 36.621979], + [115.420105, 36.686795], + [115.451518, 36.702151], + [115.479851, 36.760187], + [115.524815, 36.763543], + [115.683727, 36.808117], + [115.71206, 36.883308], + [115.75764, 36.902453], + [115.79706, 36.968945], + [115.776734, 36.992848], + [115.85619, 37.060694], + [115.888219, 37.112254], + [115.879596, 37.150901], + [115.91224, 37.177132], + [115.909777, 37.20669], + [115.969523, 37.239572], + [115.975682, 37.337179], + [116.024341, 37.360015], + [116.085935, 37.373809], + [116.106261, 37.368577], + [116.169087, 37.384271], + [116.193109, 37.365723], + [116.236224, 37.361442], + [116.2855, 37.404241], + [116.226369, 37.428007], + [116.243, 37.447965], + [116.224522, 37.479791], + [116.240536, 37.489764], + [116.240536, 37.489764], + [116.27626, 37.466967], + [116.290427, 37.484065], + [116.278724, 37.524895], + [116.295355, 37.554316], + [116.336007, 37.581355], + [116.36742, 37.566177], + [116.379738, 37.522047], + [116.38097, 37.522522], + [116.379738, 37.522047], + [116.38097, 37.522522], + [116.433941, 37.473142], + [116.448108, 37.503059], + [116.4826, 37.521573], + [116.575607, 37.610754], + [116.604556, 37.624975], + [116.66307, 37.686096], + [116.679085, 37.728708], + [116.724664, 37.744327], + [116.753613, 37.77035], + [116.753613, 37.793054], + [116.804736, 37.848837], + [116.837997, 37.835132], + [116.919301, 37.846002], + [117.027091, 37.832296], + [117.074518, 37.848837], + [117.150278, 37.839385], + [117.185387, 37.849783], + [117.271618, 37.839858], + [117.320278, 37.861596], + [117.400966, 37.844584], + [117.438538, 37.854035], + [117.481038, 37.914967], + [117.513067, 37.94329], + [117.524154, 37.989527], + [117.557414, 38.046105], + [117.557414, 38.046105], + [117.586979, 38.071551], + [117.704624, 38.076262], + [117.746508, 38.12524], + [117.771145, 38.134655], + [117.766834, 38.158658], + [117.789007, 38.180772], + [117.808718, 38.22827], + [117.848754, 38.255062], + [117.895565, 38.301572], + [117.948536, 38.346644], + [117.957775, 38.376208], + [117.937449, 38.387936], + [117.84629, 38.368232], + [117.781, 38.373862], + [117.730493, 38.424985], + [117.72495, 38.457328], + [117.678754, 38.477008], + [117.644878, 38.52759], + [117.68553, 38.539293], + [117.638102, 38.54491], + [117.639334, 38.626776], + [117.55803, 38.613683], + [117.47919, 38.616489], + [117.432379, 38.601524], + [117.368937, 38.564566], + [117.25314, 38.556143], + [117.238358, 38.580943], + [117.258684, 38.608072], + [117.258684, 38.608072], + [117.213104, 38.639866], + [117.213104, 38.639866], + [117.183539, 38.61836], + [117.183539, 38.61836], + [117.150894, 38.617892], + [117.109626, 38.584685], + [117.070822, 38.608072], + [117.055424, 38.639398], + [117.068358, 38.680522], + [117.038793, 38.688464], + [116.95133, 38.689398], + [116.948866, 38.689398], + [116.950714, 38.689398], + [116.95133, 38.689398], + [116.950714, 38.689398], + [116.948866, 38.689398], + [116.877417, 38.680522], + [116.858939, 38.741231], + [116.794265, 38.744498], + [116.794265, 38.744498], + [116.746222, 38.754299], + [116.737599, 38.784629], + [116.75115, 38.831264], + [116.723432, 38.852706], + [116.722201, 38.896968], + [116.708034, 38.931892], + [116.72836, 38.975174], + [116.754845, 39.003084], + [116.754229, 39.034701], + [116.754229, 39.034701], + [116.783179, 39.05097], + [116.783179, 39.05097], + [116.812744, 39.05097], + [116.812744, 39.05097], + [116.871874, 39.054688], + [116.912526, 39.110898], + [116.91191, 39.111362], + [116.91191, 39.111362], + [116.912526, 39.110898], + [116.909446, 39.150822], + [116.870026, 39.153607], + [116.855859, 39.215766], + [116.881729, 39.225966], + [116.881729, 39.225966], + [116.87249, 39.291304], + [116.889736, 39.338068], + [116.870642, 39.357506], + [116.829374, 39.338994], + [116.818287, 39.3737], + [116.840461, 39.378326], + [116.839845, 39.413474], + [116.876185, 39.43474], + [116.832454, 39.435664], + [116.785026, 39.465702], + [116.820751, 39.482332], + [116.819519, 39.528507], + [116.78749, 39.554352], + [116.808432, 39.576497], + [116.812128, 39.615695], + [116.79057, 39.595868], + [116.748686, 39.619844], + [116.709266, 39.618], + [116.726512, 39.595407], + [116.726512, 39.595407], + [116.724048, 39.59264], + [116.723432, 39.59264], + [116.724048, 39.59264], + [116.723432, 39.59264], + [116.664918, 39.605552], + [116.620571, 39.601863], + [116.592237, 39.621227], + [116.592237, 39.621227], + [116.524484, 39.596329], + [116.50847, 39.551122], + [116.473361, 39.552968], + [116.478289, 39.535431], + [116.437637, 39.526661], + [116.443796, 39.510041], + [116.401912, 39.528046], + [116.411767, 39.482794], + [116.444412, 39.482332], + [116.454883, 39.453226], + [116.434557, 39.442597], + [116.361876, 39.455074], + [116.361876, 39.455074], + [116.337854, 39.455536], + [116.307057, 39.488337], + [116.257782, 39.500344], + [116.240536, 39.564041], + [116.198652, 39.589412], + [116.151841, 39.583416], + [116.130283, 39.567732], + [116.09887, 39.575113], + [116.036044, 39.571884], + [116.026189, 39.587567], + [115.995392, 39.576958], + [115.978146, 39.595868], + [115.957204, 39.560812], + [115.910393, 39.600479], + [115.910393, 39.600479], + [115.91532, 39.582955], + [115.91532, 39.582955], + [115.867893, 39.546507], + [115.867893, 39.546507], + [115.828473, 39.541431], + [115.821081, 39.522968], + [115.821081, 39.522968], + [115.806299, 39.510041], + [115.806299, 39.510041], + [115.752712, 39.515581], + [115.738545, 39.539585], + [115.738545, 39.540046], + [115.738545, 39.539585], + [115.738545, 39.540046], + [115.724995, 39.5442], + [115.724995, 39.5442], + [115.722531, 39.543738], + [115.721299, 39.543738], + [115.722531, 39.543738], + [115.722531, 39.5442], + [115.721299, 39.543738], + [115.722531, 39.5442], + [115.720683, 39.551122], + [115.720683, 39.551122], + [115.718835, 39.553891], + [115.718835, 39.553891], + [115.716988, 39.56035], + [115.716988, 39.56035], + [115.699125, 39.570039], + [115.699125, 39.570039], + [115.698509, 39.577881], + [115.698509, 39.577881], + [115.667712, 39.615234], + [115.633836, 39.599557], + [115.633836, 39.599557], + [115.587024, 39.589873], + [115.545756, 39.618922], + [115.518039, 39.597252], + [115.522351, 39.640124], + [115.478619, 39.650723], + [115.478619, 39.650723], + [115.491554, 39.670074], + [115.486626, 39.741899], + [115.439815, 39.752022], + [115.443511, 39.785601], + [115.483547, 39.798477], + [115.483547, 39.798477], + [115.50572, 39.784222], + [115.552532, 39.794799], + [115.567314, 39.816407], + [115.514344, 39.837549], + [115.526046, 39.87568], + [115.515575, 39.892212], + [115.515575, 39.892212], + [115.522967, 39.899099], + [115.481083, 39.935819], + [115.426264, 39.950502], + [115.428728, 39.984443], + [115.450286, 39.992697], + [115.454597, 40.029825], + [115.485394, 40.040364], + [115.527278, 40.076092], + [115.59072, 40.096239], + [115.599959, 40.119583], + [115.75456, 40.145663], + [115.75456, 40.145663], + [115.773654, 40.176307], + [115.806299, 40.15344], + [115.847567, 40.147036], + [115.855574, 40.188652], + [115.870356, 40.185909], + [115.89869, 40.234354], + [115.968907, 40.264045], + [115.95166, 40.281852], + [115.917784, 40.354405], + [115.864197, 40.359422], + [115.771806, 40.443734], + [115.781045, 40.49336], + [115.736082, 40.503372], + [115.755176, 40.540221], + [115.784741, 40.55841], + [115.819849, 40.55932], + [115.827857, 40.587504], + [115.885139, 40.595229], + [115.907929, 40.617493], + [115.971986, 40.6025], + [115.982457, 40.578868], + [116.005247, 40.583868], + [116.09887, 40.630665], + [116.133979, 40.666536], + [116.162928, 40.662451], + [116.171551, 40.695582], + [116.204812, 40.740035], + [116.22021, 40.744115], + [116.247311, 40.791707], + [116.273181, 40.762703], + [116.311369, 40.754996], + [116.316912, 40.772221], + [116.453651, 40.765876], + [116.46597, 40.774487], + [116.438253, 40.81934], + [116.334159, 40.90443], + [116.339702, 40.929303], + [116.370499, 40.94377], + [116.398216, 40.90624], + [116.477057, 40.899907], + [116.447492, 40.953715], + [116.455499, 40.980828], + [116.519557, 40.98128], + [116.519557, 40.98128], + [116.5676, 40.992574], + [116.598397, 40.974503], + [116.623034, 41.021026], + [116.615643, 41.053076], + [116.647672, 41.059394], + [116.688324, 41.044501], + [116.698795, 41.021477], + [116.677853, 40.970888], + [116.722201, 40.927495], + [116.713577, 40.909858], + [116.759773, 40.889954], + [116.81336, 40.848319], + [116.848468, 40.839264], + [116.924229, 40.773581], + [116.926692, 40.745022], + [116.964881, 40.709647], + [117.012308, 40.693767], + [117.11209, 40.707379], + [117.117018, 40.70012], + [117.208177, 40.694675], + [117.278394, 40.664267], + [117.319662, 40.657911], + [117.342451, 40.673799], + [117.408973, 40.686961], + [117.493973, 40.675161], + [117.514914, 40.660181], + [117.501364, 40.636569], + [117.467487, 40.649738], + [117.467487, 40.649738] + ] + ], + [ + [ + [117.210024, 40.082045], + [117.204481, 40.069681], + [117.159517, 40.077008], + [117.140423, 40.064185], + [117.105315, 40.074261], + [117.105315, 40.074261], + [117.051728, 40.059605], + [117.025243, 40.030283], + [116.945171, 40.04128], + [116.927924, 40.055024], + [116.867562, 40.041739], + [116.831222, 40.051359], + [116.820135, 40.02845], + [116.781331, 40.034866], + [116.757925, 39.967934], + [116.782563, 39.947749], + [116.78441, 39.891294], + [116.812128, 39.889916], + [116.865714, 39.843982], + [116.907598, 39.832494], + [116.918069, 39.84628], + [116.949482, 39.778703], + [116.902055, 39.763523], + [116.916837, 39.731314], + [116.887272, 39.72533], + [116.889736, 39.687576], + [116.90575, 39.688037], + [116.932236, 39.706456], + [116.932236, 39.706456], + [116.944555, 39.695405], + [116.944555, 39.695405], + [116.948866, 39.680668], + [116.948866, 39.680668], + [116.964265, 39.64335], + [116.983359, 39.638742], + [116.983359, 39.638742], + [117.016004, 39.653949], + [117.10901, 39.625375], + [117.10901, 39.625375], + [117.152742, 39.623532], + [117.177996, 39.645194], + [117.165061, 39.718886], + [117.165061, 39.718886], + [117.161981, 39.748801], + [117.205713, 39.763984], + [117.15767, 39.796638], + [117.156438, 39.817326], + [117.192162, 39.832953], + [117.251908, 39.834332], + [117.247597, 39.860981], + [117.227887, 39.852712], + [117.162597, 39.876598], + [117.162597, 39.876598], + [117.150894, 39.944996], + [117.198322, 39.992697], + [117.192162, 40.066475], + [117.210024, 40.082045] + ] + ], + [ + [ + [117.784696, 39.376938], + [117.765602, 39.400527], + [117.699696, 39.407463], + [117.673211, 39.386652], + [117.668899, 39.412087], + [117.614081, 39.407001], + [117.601146, 39.419485], + [117.570965, 39.404689], + [117.521074, 39.357043], + [117.536472, 39.338068], + [117.594987, 39.349176], + [117.669515, 39.322792], + [117.670747, 39.357969], + [117.74466, 39.354729], + [117.784696, 39.376938] + ] + ], + [ + [ + [118.869365, 39.142932], + [118.82009, 39.108576], + [118.857662, 39.098824], + [118.869365, 39.142932] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 140000, + "name": "山西省", + "center": [112.549248, 37.857014], + "centroid": [112.304436, 37.618179], + "childrenNum": 11, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 3, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.379257, 34.600612], + [110.424837, 34.588295], + [110.488279, 34.610956], + [110.533242, 34.583368], + [110.610851, 34.607508], + [110.710017, 34.605045], + [110.749437, 34.65232], + [110.791937, 34.649858], + [110.824582, 34.615881], + [110.883712, 34.64395], + [110.903422, 34.669056], + [110.920052, 34.730068], + [110.976103, 34.706456], + [111.035233, 34.740887], + [111.118385, 34.756623], + [111.148566, 34.807742], + [111.232949, 34.789559], + [111.255123, 34.819535], + [111.29208, 34.806759], + [111.345666, 34.831816], + [111.389398, 34.815113], + [111.439289, 34.838202], + [111.502731, 34.829851], + [111.543999, 34.853428], + [111.570484, 34.843114], + [111.592042, 34.881416], + [111.617911, 34.894671], + [111.646861, 34.938836], + [111.681969, 34.9511], + [111.664107, 34.984449], + [111.740483, 35.00455], + [111.807005, 35.032977], + [111.810084, 35.062374], + [111.933272, 35.083435], + [111.97762, 35.067272], + [112.018888, 35.068742], + [112.039214, 35.045717], + [112.062004, 35.056005], + [112.05646, 35.098615], + [112.066315, 35.153437], + [112.03983, 35.194039], + [112.078634, 35.219467], + [112.058924, 35.280069], + [112.13838, 35.271275], + [112.21722, 35.253195], + [112.242474, 35.234622], + [112.304684, 35.251728], + [112.288053, 35.219956], + [112.36751, 35.219956], + [112.390915, 35.239021], + [112.513487, 35.218489], + [112.637291, 35.225822], + [112.628052, 35.263457], + [112.720443, 35.206265], + [112.772798, 35.207732], + [112.822073, 35.258082], + [112.884283, 35.243909], + [112.934174, 35.262968], + [112.936022, 35.284466], + [112.992072, 35.29619], + [112.985913, 35.33965], + [112.996384, 35.362104], + [113.067217, 35.353806], + [113.126347, 35.332327], + [113.149137, 35.350878], + [113.165151, 35.412845], + [113.185477, 35.409431], + [113.189789, 35.44893], + [113.243375, 35.449418], + [113.304353, 35.426989], + [113.31236, 35.481101], + [113.348085, 35.468429], + [113.391817, 35.506925], + [113.439244, 35.507412], + [113.49899, 35.532254], + [113.513773, 35.57364], + [113.55812, 35.621816], + [113.547649, 35.656835], + [113.578446, 35.633491], + [113.625258, 35.632518], + [113.622794, 35.674825], + [113.592613, 35.691838], + [113.587685, 35.736542], + [113.604932, 35.797727], + [113.582758, 35.818111], + [113.660982, 35.837035], + [113.637576, 35.870019], + [113.654207, 35.931586], + [113.648663, 35.994073], + [113.678844, 35.985841], + [113.694859, 36.026991], + [113.660366, 36.034735], + [113.68562, 36.056026], + [113.671453, 36.115514], + [113.655439, 36.125182], + [113.712721, 36.129533], + [113.705946, 36.148865], + [113.651127, 36.174473], + [113.697939, 36.181719], + [113.681924, 36.216491], + [113.716417, 36.262347], + [113.712105, 36.303353], + [113.736127, 36.324571], + [113.731199, 36.363135], + [113.708409, 36.423352], + [113.670221, 36.425278], + [113.635729, 36.451277], + [113.587069, 36.460904], + [113.554425, 36.494589], + [113.559968, 36.528741], + [113.588917, 36.547974], + [113.569823, 36.585947], + [113.539642, 36.594116], + [113.54457, 36.62342], + [113.486671, 36.635427], + [113.476816, 36.655114], + [113.506997, 36.705029], + [113.465113, 36.707908], + [113.499606, 36.740527], + [113.535946, 36.732373], + [113.549497, 36.752515], + [113.600004, 36.752995], + [113.680692, 36.789907], + [113.676381, 36.855539], + [113.696707, 36.882351], + [113.731815, 36.878521], + [113.731815, 36.858891], + [113.773083, 36.85506], + [113.792793, 36.894796], + [113.76138, 36.956034], + [113.791561, 36.98759], + [113.771851, 37.016745], + [113.788482, 37.059739], + [113.758301, 37.075497], + [113.773699, 37.107004], + [113.773083, 37.151855], + [113.832213, 37.167594], + [113.853155, 37.215269], + [113.886416, 37.239095], + [113.90243, 37.310052], + [113.962792, 37.355734], + [113.973879, 37.40329], + [114.014531, 37.42468], + [114.036705, 37.494037], + [114.118625, 37.59084], + [114.115545, 37.619761], + [114.139567, 37.675676], + [114.12848, 37.698409], + [114.068118, 37.721608], + [113.993589, 37.706932], + [113.996669, 37.730128], + [114.044712, 37.761834], + [114.006524, 37.813386], + [113.976959, 37.816696], + [113.959097, 37.906468], + [113.936307, 37.922993], + [113.901198, 37.984811], + [113.872249, 37.990471], + [113.876561, 38.055059], + [113.811271, 38.117707], + [113.831597, 38.16854], + [113.797105, 38.162894], + [113.720728, 38.174656], + [113.711489, 38.213695], + [113.678844, 38.20523], + [113.64312, 38.232031], + [113.598772, 38.22733], + [113.570439, 38.237202], + [113.54457, 38.270569], + [113.557504, 38.343359], + [113.525475, 38.383245], + [113.537794, 38.417952], + [113.583374, 38.459671], + [113.546417, 38.492936], + [113.561816, 38.558483], + [113.603084, 38.587024], + [113.612939, 38.645942], + [113.70225, 38.651551], + [113.720728, 38.713218], + [113.775547, 38.709949], + [113.802648, 38.763166], + [113.839605, 38.7585], + [113.836525, 38.795824], + [113.855619, 38.828933], + [113.795257, 38.860628], + [113.776163, 38.885788], + [113.76754, 38.959819], + [113.776779, 38.986804], + [113.80696, 38.989595], + [113.898119, 39.067699], + [113.930148, 39.063517], + [113.961561, 39.100681], + [113.994821, 39.095572], + [114.006524, 39.122971], + [114.050872, 39.135969], + [114.064422, 39.094179], + [114.082901, 39.09325], + [114.082901, 39.09325], + [114.10877, 39.052364], + [114.157429, 39.061194], + [114.180835, 39.049111], + [114.252284, 39.073739], + [114.345907, 39.075133], + [114.369928, 39.107648], + [114.360689, 39.134112], + [114.388406, 39.176807], + [114.443841, 39.174023], + [114.47587, 39.21623], + [114.416124, 39.242654], + [114.437066, 39.259337], + [114.430906, 39.307513], + [114.466631, 39.329736], + [114.469095, 39.400989], + [114.496812, 39.438437], + [114.501739, 39.476789], + [114.532536, 39.486027], + [114.568877, 39.573729], + [114.51529, 39.564964], + [114.49558, 39.608318], + [114.431522, 39.613851], + [114.408117, 39.652106], + [114.409964, 39.761683], + [114.41674, 39.775943], + [114.390254, 39.819165], + [114.406885, 39.833413], + [114.395182, 39.867412], + [114.285545, 39.858225], + [114.286776, 39.871087], + [114.215943, 39.8619], + [114.204241, 39.885324], + [114.229494, 39.899558], + [114.212248, 39.918839], + [114.17406, 39.897722], + [114.067502, 39.922511], + [114.047176, 39.916085], + [114.028082, 39.959218], + [114.029314, 39.985819], + [113.910438, 40.015618], + [113.959097, 40.033491], + [113.989278, 40.11226], + [114.018227, 40.103563], + [114.045944, 40.056856], + [114.086596, 40.071513], + [114.101995, 40.099901], + [114.073046, 40.168533], + [114.073046, 40.168533], + [114.097683, 40.193681], + [114.135871, 40.175392], + [114.180219, 40.191395], + [114.235654, 40.198252], + [114.255364, 40.236182], + [114.292936, 40.230242], + [114.362537, 40.249886], + [114.406269, 40.246232], + [114.46971, 40.268155], + [114.510978, 40.302851], + [114.530688, 40.345283], + [114.481413, 40.34802], + [114.438914, 40.371733], + [114.390254, 40.351213], + [114.381015, 40.36307], + [114.31203, 40.372645], + [114.286161, 40.425057], + [114.299711, 40.44009], + [114.267066, 40.474242], + [114.282465, 40.494725], + [114.293552, 40.55159], + [114.273842, 40.552954], + [114.283081, 40.590685], + [114.236269, 40.607043], + [114.183299, 40.67153], + [114.162357, 40.71373], + [114.134639, 40.737314], + [114.084748, 40.729605], + [114.063806, 40.706925], + [114.07243, 40.679246], + [114.041633, 40.608861], + [114.076741, 40.575686], + [114.080437, 40.547952], + [114.061959, 40.52885], + [114.011452, 40.515657], + [113.948626, 40.514747], + [113.890112, 40.466503], + [113.850691, 40.460583], + [113.794641, 40.517932], + [113.763228, 40.473787], + [113.688699, 40.448288], + [113.559968, 40.348476], + [113.500222, 40.334335], + [113.387505, 40.319279], + [113.316672, 40.319736], + [113.27602, 40.388601], + [113.251382, 40.413211], + [113.083231, 40.374925], + [113.03334, 40.368997], + [112.898449, 40.329317], + [112.848558, 40.206937], + [112.744464, 40.167161], + [112.712436, 40.178593], + [112.6299, 40.235725], + [112.511639, 40.269068], + [112.456205, 40.300112], + [112.418017, 40.295091], + [112.349031, 40.257194], + [112.310227, 40.256281], + [112.299756, 40.21105], + [112.232619, 40.169905], + [112.232003, 40.133311], + [112.183344, 40.083877], + [112.182112, 40.061437], + [112.142076, 40.027076], + [112.133453, 40.001866], + [112.07617, 39.919298], + [112.042294, 39.886243], + [112.012729, 39.827438], + [111.970229, 39.796638], + [111.959758, 39.692642], + [111.925265, 39.66731], + [111.9382, 39.623071], + [111.87907, 39.606013], + [111.842729, 39.620305], + [111.783599, 39.58895], + [111.722621, 39.606013], + [111.659179, 39.641507], + [111.625303, 39.633672], + [111.525521, 39.662242], + [111.497187, 39.661781], + [111.445448, 39.640124], + [111.460847, 39.606935], + [111.441137, 39.59679], + [111.422043, 39.539123], + [111.431282, 39.508656], + [111.372152, 39.479099], + [111.358601, 39.432428], + [111.337043, 39.420872], + [111.171971, 39.423183], + [111.143022, 39.407926], + [111.125776, 39.366297], + [111.159037, 39.362596], + [111.155341, 39.338531], + [111.186138, 39.35149], + [111.179363, 39.326959], + [111.202152, 39.305197], + [111.247732, 39.302419], + [111.213239, 39.257021], + [111.219399, 39.244044], + [111.163348, 39.152678], + [111.173819, 39.135041], + [111.147334, 39.100681], + [111.138095, 39.064447], + [111.094363, 39.030053], + [111.038313, 39.020289], + [110.998276, 38.998433], + [110.980414, 38.970056], + [111.009979, 38.932823], + [111.016755, 38.889981], + [110.995813, 38.868084], + [111.009363, 38.847579], + [110.965016, 38.755699], + [110.915125, 38.704345], + [110.916357, 38.673981], + [110.880632, 38.626776], + [110.898494, 38.587024], + [110.920052, 38.581878], + [110.907733, 38.521035], + [110.870777, 38.510265], + [110.874473, 38.453579], + [110.840596, 38.439986], + [110.796864, 38.453579], + [110.77777, 38.440924], + [110.746973, 38.366355], + [110.701394, 38.353215], + [110.661358, 38.308617], + [110.601612, 38.308147], + [110.57759, 38.297345], + [110.565887, 38.215105], + [110.528315, 38.211814], + [110.509221, 38.192061], + [110.519692, 38.130889], + [110.501829, 38.097929], + [110.507989, 38.013107], + [110.528315, 37.990471], + [110.522771, 37.955088], + [110.59422, 37.922049], + [110.680452, 37.790216], + [110.735886, 37.77035], + [110.750669, 37.736281], + [110.716792, 37.728708], + [110.706321, 37.705511], + [110.775306, 37.680886], + [110.793169, 37.650567], + [110.763604, 37.639668], + [110.771611, 37.594634], + [110.795017, 37.558586], + [110.770995, 37.538184], + [110.759292, 37.474567], + [110.740198, 37.44939], + [110.644111, 37.435135], + [110.630561, 37.372858], + [110.641648, 37.360015], + [110.695234, 37.34955], + [110.678604, 37.317668], + [110.690307, 37.287201], + [110.661974, 37.281963], + [110.651503, 37.256722], + [110.590525, 37.187145], + [110.53509, 37.138021], + [110.535706, 37.115118], + [110.49567, 37.086956], + [110.460561, 37.044932], + [110.417446, 37.027257], + [110.426685, 37.008621], + [110.382953, 37.022001], + [110.381721, 37.002408], + [110.424221, 36.963685], + [110.408823, 36.892403], + [110.376178, 36.882351], + [110.424221, 36.855539], + [110.406975, 36.824886], + [110.423605, 36.818179], + [110.407591, 36.776007], + [110.447011, 36.737649], + [110.438388, 36.685835], + [110.402663, 36.697352], + [110.394656, 36.676716], + [110.426685, 36.657514], + [110.447627, 36.621018], + [110.496902, 36.582102], + [110.488895, 36.556628], + [110.503677, 36.488335], + [110.47288, 36.453203], + [110.489511, 36.430094], + [110.487047, 36.393972], + [110.459946, 36.327946], + [110.474112, 36.306729], + [110.474112, 36.248352], + [110.45625, 36.22663], + [110.447011, 36.164328], + [110.467953, 36.074893], + [110.491974, 36.034735], + [110.49259, 35.994073], + [110.516612, 35.971796], + [110.502445, 35.947575], + [110.516612, 35.918501], + [110.511684, 35.879718], + [110.549257, 35.877778], + [110.550489, 35.838005], + [110.571431, 35.800639], + [110.57759, 35.701559], + [110.609619, 35.632031], + [110.589293, 35.602355], + [110.567735, 35.539559], + [110.531394, 35.511309], + [110.477808, 35.413821], + [110.45009, 35.327933], + [110.374946, 35.251728], + [110.378642, 35.210666], + [110.364475, 35.197952], + [110.373714, 35.134351], + [110.320743, 35.00504], + [110.262229, 34.944233], + [110.230816, 34.880925], + [110.246831, 34.789068], + [110.243135, 34.725641], + [110.229584, 34.692679], + [110.269004, 34.629671], + [110.29549, 34.610956], + [110.379257, 34.600612] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 150000, + "name": "内蒙古自治区", + "center": [111.670801, 40.818311], + "centroid": [114.077429, 44.331087], + "childrenNum": 12, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 4, + "acroutes": [100000] + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [97.172903, 42.795257], + [97.371235, 42.457076], + [97.500582, 42.243894], + [97.653335, 41.986856], + [97.84674, 41.656379], + [97.613915, 41.477276], + [97.629314, 41.440498], + [97.903407, 41.168057], + [97.971776, 41.09774], + [98.142391, 41.001607], + [98.184891, 40.988056], + [98.25018, 40.93925], + [98.333332, 40.918903], + [98.344419, 40.568413], + [98.627751, 40.677884], + [98.569853, 40.746836], + [98.668403, 40.773128], + [98.689345, 40.691952], + [98.72199, 40.657911], + [98.762642, 40.639748], + [98.802678, 40.607043], + [98.80699, 40.660181], + [98.790975, 40.705564], + [98.984996, 40.782644], + [99.041662, 40.693767], + [99.102025, 40.676522], + [99.12543, 40.715091], + [99.172858, 40.747289], + [99.174705, 40.858278], + [99.565827, 40.846961], + [99.673, 40.93292], + [99.985897, 40.909858], + [100.057346, 40.908049], + [100.107853, 40.875475], + [100.224882, 40.727337], + [100.237201, 40.716905], + [100.242744, 40.618855], + [100.169447, 40.541131], + [100.169447, 40.277743], + [100.007455, 40.20008], + [99.955716, 40.150695], + [99.927383, 40.063727], + [99.841152, 40.013326], + [99.751225, 40.006909], + [99.714268, 39.972061], + [99.533182, 39.891753], + [99.491298, 39.884406], + [99.459885, 39.898181], + [99.440791, 39.885783], + [99.469124, 39.875221], + [99.672384, 39.888079], + [99.822058, 39.860063], + [99.904593, 39.785601], + [99.958796, 39.769504], + [100.040716, 39.757083], + [100.128179, 39.702312], + [100.250135, 39.685274], + [100.314193, 39.606935], + [100.301258, 39.572345], + [100.326512, 39.509118], + [100.44354, 39.485565], + [100.500823, 39.481408], + [100.498975, 39.400527], + [100.606764, 39.387577], + [100.707778, 39.404689], + [100.842053, 39.405614], + [100.842669, 39.199999], + [100.864227, 39.106719], + [100.829118, 39.075133], + [100.835278, 39.025869], + [100.875314, 39.002619], + [100.901799, 39.030053], + [100.961545, 39.005874], + [100.969553, 38.946788], + [101.117378, 38.975174], + [101.228863, 39.020754], + [101.198682, 38.943064], + [101.237486, 38.907214], + [101.24303, 38.860628], + [101.33542, 38.847113], + [101.34158, 38.822406], + [101.307087, 38.80282], + [101.331109, 38.777164], + [101.412413, 38.764099], + [101.562702, 38.713218], + [101.601506, 38.65529], + [101.672955, 38.6908], + [101.777049, 38.66043], + [101.873751, 38.733761], + [101.941505, 38.808883], + [102.075164, 38.891378], + [102.045599, 38.904885], + [101.955055, 38.985874], + [101.926106, 39.000758], + [101.833715, 39.08907], + [101.902701, 39.111827], + [102.012338, 39.127149], + [102.050526, 39.141075], + [102.276576, 39.188868], + [102.3548, 39.231993], + [102.45335, 39.255167], + [102.579002, 39.183301], + [102.616574, 39.171703], + [102.883892, 39.120649], + [103.007696, 39.099753], + [103.133347, 39.192579], + [103.188166, 39.215302], + [103.259615, 39.263971], + [103.344615, 39.331588], + [103.428998, 39.353341], + [103.595302, 39.386652], + [103.728961, 39.430117], + [103.85338, 39.461543], + [103.955626, 39.456923], + [104.089901, 39.419947], + [104.073271, 39.351953], + [104.047401, 39.297788], + [104.171205, 39.160567], + [104.207546, 39.083495], + [104.190915, 39.042139], + [104.196459, 38.9882], + [104.173053, 38.94446], + [104.044322, 38.895105], + [104.011677, 38.85923], + [103.85954, 38.64454], + [103.416063, 38.404821], + [103.465339, 38.353215], + [103.507838, 38.280905], + [103.53494, 38.156776], + [103.368636, 38.08898], + [103.362477, 38.037621], + [103.40744, 37.860651], + [103.627947, 37.797783], + [103.683381, 37.777919], + [103.841062, 37.64725], + [103.874938, 37.604117], + [103.935916, 37.572818], + [104.089285, 37.465067], + [104.183524, 37.406618], + [104.237727, 37.411847], + [104.287002, 37.428007], + [104.322726, 37.44844], + [104.407726, 37.464592], + [104.419429, 37.511604], + [104.433595, 37.515402], + [104.623305, 37.522522], + [104.805007, 37.539133], + [104.866601, 37.566651], + [105.027977, 37.580881], + [105.111128, 37.633981], + [105.187505, 37.657674], + [105.221998, 37.677097], + [105.315004, 37.702197], + [105.4037, 37.710246], + [105.467141, 37.695094], + [105.598952, 37.699356], + [105.616199, 37.722555], + [105.622358, 37.777919], + [105.677177, 37.771769], + [105.760944, 37.799674], + [105.80406, 37.862068], + [105.799749, 37.939986], + [105.840401, 38.004147], + [105.780655, 38.084741], + [105.76772, 38.121474], + [105.775111, 38.186887], + [105.802828, 38.220277], + [105.842248, 38.240962], + [105.86627, 38.296406], + [105.821307, 38.366824], + [105.835473, 38.387467], + [105.827466, 38.432486], + [105.850872, 38.443736], + [105.836705, 38.476071], + [105.863806, 38.53508], + [105.856415, 38.569714], + [105.874277, 38.593105], + [105.852719, 38.641735], + [105.894603, 38.696405], + [105.88598, 38.716953], + [105.908154, 38.737496], + [105.909386, 38.791159], + [105.992538, 38.857366], + [105.97098, 38.909077], + [106.021487, 38.953769], + [106.060907, 38.96866], + [106.087392, 39.006339], + [106.078153, 39.026333], + [106.096631, 39.084889], + [106.145907, 39.153142], + [106.170544, 39.163352], + [106.192718, 39.142932], + [106.251232, 39.131327], + [106.285109, 39.146181], + [106.29558, 39.167992], + [106.280181, 39.262118], + [106.402753, 39.291767], + [106.511774, 39.272311], + [106.525325, 39.308439], + [106.556122, 39.322329], + [106.602318, 39.37555], + [106.643586, 39.357969], + [106.683622, 39.357506], + [106.751375, 39.381564], + [106.781556, 39.371849], + [106.806809, 39.318625], + [106.806193, 39.277407], + [106.790795, 39.241263], + [106.795723, 39.214375], + [106.825288, 39.19397], + [106.859164, 39.107648], + [106.878874, 39.091392], + [106.933693, 39.076527], + [106.96757, 39.054688], + [106.971881, 39.026333], + [106.954019, 38.941202], + [106.837606, 38.847579], + [106.756302, 38.748699], + [106.709491, 38.718821], + [106.66268, 38.601524], + [106.647897, 38.470917], + [106.599854, 38.389812], + [106.482209, 38.319417], + [106.555506, 38.263521], + [106.627571, 38.232501], + [106.654672, 38.22921], + [106.737824, 38.197706], + [106.779092, 38.171833], + [106.858548, 38.156306], + [106.942316, 38.132302], + [107.010069, 38.120532], + [107.051337, 38.122886], + [107.071047, 38.138892], + [107.119091, 38.134185], + [107.138801, 38.161011], + [107.19054, 38.153953], + [107.240431, 38.111586], + [107.33159, 38.086625], + [107.3938, 38.014993], + [107.440611, 37.995659], + [107.411662, 37.948009], + [107.448618, 37.933378], + [107.49235, 37.944706], + [107.560719, 37.893717], + [107.65003, 37.86443], + [107.684523, 37.888522], + [107.732566, 37.84931], + [107.842819, 37.828987], + [107.884703, 37.808186], + [107.982022, 37.787378], + [107.993109, 37.735335], + [108.025753, 37.696041], + [108.012819, 37.66857], + [108.025137, 37.649619], + [108.055318, 37.652462], + [108.134159, 37.622131], + [108.193905, 37.638246], + [108.205608, 37.655779], + [108.24626, 37.665728], + [108.293071, 37.656726], + [108.301078, 37.640616], + [108.422418, 37.648672], + [108.485244, 37.678044], + [108.532671, 37.690832], + [108.628142, 37.651988], + [108.699591, 37.669518], + [108.720533, 37.683728], + [108.777815, 37.683728], + [108.791982, 37.700303], + [108.784591, 37.764673], + [108.799989, 37.784068], + [108.791982, 37.872934], + [108.798141, 37.93385], + [108.82709, 37.989056], + [108.797525, 38.04799], + [108.830786, 38.049875], + [108.883141, 38.01405], + [108.893612, 37.978207], + [108.93488, 37.922521], + [108.9743, 37.931962], + [108.982923, 37.964053], + [109.018648, 37.971602], + [109.037742, 38.021593], + [109.06977, 38.023008], + [109.050676, 38.055059], + [109.069155, 38.091336], + [108.964445, 38.154894], + [108.938575, 38.207582], + [108.976148, 38.245192], + [108.961981, 38.26493], + [109.007561, 38.359316], + [109.051292, 38.385122], + [109.054372, 38.433892], + [109.128901, 38.480288], + [109.175712, 38.518694], + [109.196654, 38.552867], + [109.276726, 38.623035], + [109.331545, 38.597783], + [109.367269, 38.627711], + [109.329081, 38.66043], + [109.338936, 38.701542], + [109.404226, 38.720689], + [109.444262, 38.782763], + [109.511399, 38.833595], + [109.549587, 38.805618], + [109.624116, 38.85457], + [109.672159, 38.928167], + [109.685094, 38.968195], + [109.665384, 38.981687], + [109.72513, 39.018429], + [109.762086, 39.057476], + [109.793499, 39.074204], + [109.851397, 39.122971], + [109.890818, 39.103932], + [109.92223, 39.107183], + [109.893897, 39.141075], + [109.961035, 39.191651], + [109.871723, 39.243581], + [109.90252, 39.271848], + [109.962267, 39.212056], + [110.041107, 39.21623], + [110.109476, 39.249606], + [110.217881, 39.281113], + [110.184005, 39.355192], + [110.161831, 39.387115], + [110.136577, 39.39174], + [110.12549, 39.432891], + [110.152592, 39.45415], + [110.243751, 39.423645], + [110.257917, 39.407001], + [110.385417, 39.310291], + [110.429764, 39.341308], + [110.434692, 39.381101], + [110.482735, 39.360745], + [110.524003, 39.382952], + [110.559728, 39.351027], + [110.566503, 39.320014], + [110.596684, 39.282966], + [110.626249, 39.266751], + [110.702626, 39.273701], + [110.731575, 39.30705], + [110.73835, 39.348713], + [110.782698, 39.38804], + [110.869545, 39.494341], + [110.891103, 39.509118], + [110.958856, 39.519275], + [111.017371, 39.552045], + [111.101138, 39.559428], + [111.136863, 39.587106], + [111.154725, 39.569116], + [111.148566, 39.531277], + [111.10545, 39.497573], + [111.10545, 39.472631], + [111.058639, 39.447681], + [111.064182, 39.400989], + [111.098059, 39.401914], + [111.087588, 39.376013], + [111.125776, 39.366297], + [111.143022, 39.407926], + [111.171971, 39.423183], + [111.337043, 39.420872], + [111.358601, 39.432428], + [111.372152, 39.479099], + [111.431282, 39.508656], + [111.422043, 39.539123], + [111.441137, 39.59679], + [111.460847, 39.606935], + [111.445448, 39.640124], + [111.497187, 39.661781], + [111.525521, 39.662242], + [111.625303, 39.633672], + [111.659179, 39.641507], + [111.722621, 39.606013], + [111.783599, 39.58895], + [111.842729, 39.620305], + [111.87907, 39.606013], + [111.9382, 39.623071], + [111.925265, 39.66731], + [111.959758, 39.692642], + [111.970229, 39.796638], + [112.012729, 39.827438], + [112.042294, 39.886243], + [112.07617, 39.919298], + [112.133453, 40.001866], + [112.142076, 40.027076], + [112.182112, 40.061437], + [112.183344, 40.083877], + [112.232003, 40.133311], + [112.232619, 40.169905], + [112.299756, 40.21105], + [112.310227, 40.256281], + [112.349031, 40.257194], + [112.418017, 40.295091], + [112.456205, 40.300112], + [112.511639, 40.269068], + [112.6299, 40.235725], + [112.712436, 40.178593], + [112.744464, 40.167161], + [112.848558, 40.206937], + [112.898449, 40.329317], + [113.03334, 40.368997], + [113.083231, 40.374925], + [113.251382, 40.413211], + [113.27602, 40.388601], + [113.316672, 40.319736], + [113.387505, 40.319279], + [113.500222, 40.334335], + [113.559968, 40.348476], + [113.688699, 40.448288], + [113.763228, 40.473787], + [113.794641, 40.517932], + [113.850691, 40.460583], + [113.890112, 40.466503], + [113.948626, 40.514747], + [114.011452, 40.515657], + [114.061959, 40.52885], + [114.080437, 40.547952], + [114.076741, 40.575686], + [114.041633, 40.608861], + [114.07243, 40.679246], + [114.063806, 40.706925], + [114.084748, 40.729605], + [114.134639, 40.737314], + [114.103227, 40.770861], + [114.104458, 40.797597], + [114.080437, 40.790348], + [114.044712, 40.830661], + [114.073661, 40.857372], + [114.055183, 40.867782], + [114.041633, 40.917546], + [114.057647, 40.925234], + [113.994821, 40.938798], + [113.973263, 40.983087], + [113.868554, 41.06887], + [113.819279, 41.09774], + [113.877793, 41.115777], + [113.920293, 41.172112], + [113.960945, 41.171211], + [113.996669, 41.19238], + [114.016379, 41.231999], + [113.992357, 41.269794], + [113.971416, 41.239649], + [113.95109, 41.282837], + [113.914749, 41.294529], + [113.899351, 41.316108], + [113.92522, 41.325546], + [113.94493, 41.392477], + [113.871017, 41.413126], + [113.877793, 41.431076], + [113.919677, 41.454404], + [113.933227, 41.487139], + [113.953553, 41.483553], + [113.976959, 41.505966], + [114.032394, 41.529715], + [114.101379, 41.537779], + [114.230726, 41.513584], + [114.221487, 41.582111], + [114.226414, 41.616572], + [114.259059, 41.623282], + [114.215328, 41.68499], + [114.237501, 41.698843], + [114.206704, 41.7386], + [114.215328, 41.75646], + [114.200545, 41.789934], + [114.282465, 41.863517], + [114.343443, 41.926774], + [114.352066, 41.953484], + [114.419203, 41.942356], + [114.478334, 41.951704], + [114.511594, 41.981962], + [114.467863, 42.025989], + [114.480181, 42.064654], + [114.502355, 42.06732], + [114.510978, 42.110844], + [114.560254, 42.132595], + [114.647717, 42.109512], + [114.675434, 42.12061], + [114.75489, 42.115727], + [114.789383, 42.130819], + [114.79431, 42.149457], + [114.825723, 42.139695], + [114.86268, 42.097967], + [114.860832, 42.054879], + [114.9021, 42.015763], + [114.915035, 41.960605], + [114.923658, 41.871093], + [114.939056, 41.846132], + [114.922426, 41.825175], + [114.868839, 41.813579], + [114.89594, 41.76762], + [114.902716, 41.695715], + [114.895325, 41.636255], + [114.860832, 41.60091], + [115.016049, 41.615229], + [115.056085, 41.602253], + [115.0992, 41.62373], + [115.195287, 41.602253], + [115.20391, 41.571367], + [115.256881, 41.580768], + [115.26612, 41.616124], + [115.290142, 41.622835], + [115.310468, 41.592854], + [115.377605, 41.603148], + [115.345576, 41.635807], + [115.360975, 41.661297], + [115.319091, 41.691693], + [115.346808, 41.712247], + [115.42996, 41.728775], + [115.488474, 41.760924], + [115.519887, 41.76762], + [115.57409, 41.80555], + [115.654162, 41.829189], + [115.688038, 41.867528], + [115.726227, 41.870202], + [115.811226, 41.912525], + [115.834632, 41.93835], + [115.85311, 41.927665], + [115.916552, 41.945027], + [115.954124, 41.874213], + [115.994776, 41.828743], + [116.007095, 41.797966], + [116.007095, 41.79752], + [116.034196, 41.782795], + [116.09887, 41.776547], + [116.129051, 41.805996], + [116.106877, 41.831419], + [116.122892, 41.861734], + [116.194341, 41.861734], + [116.212819, 41.885352], + [116.223906, 41.932562], + [116.298434, 41.96817], + [116.310137, 41.997086], + [116.373579, 42.009983], + [116.414231, 41.982407], + [116.393289, 41.942802], + [116.453651, 41.945917], + [116.4826, 41.975734], + [116.510933, 41.974399], + [116.553433, 41.928555], + [116.597165, 41.935679], + [116.639049, 41.929891], + [116.66923, 41.947698], + [116.727744, 41.951259], + [116.748686, 41.984186], + [116.796113, 41.977958], + [116.879881, 42.018431], + [116.890352, 42.092639], + [116.850316, 42.156556], + [116.825062, 42.155669], + [116.789338, 42.200462], + [116.903287, 42.190708], + [116.918685, 42.229716], + [116.897743, 42.297479], + [116.886656, 42.366496], + [116.910678, 42.394789], + [116.910062, 42.395231], + [116.921765, 42.403628], + [116.936547, 42.410256], + [116.944555, 42.415116], + [116.97104, 42.427486], + [116.974736, 42.426603], + [116.99075, 42.425719], + [117.005533, 42.43367], + [117.009228, 42.44957], + [117.01662, 42.456193], + [117.080061, 42.463699], + [117.09546, 42.484004], + [117.135496, 42.468996], + [117.188467, 42.468114], + [117.275314, 42.481797], + [117.332596, 42.46105], + [117.390495, 42.461933], + [117.413284, 42.471645], + [117.410205, 42.519743], + [117.387415, 42.517537], + [117.434226, 42.557224], + [117.435458, 42.585431], + [117.475494, 42.602613], + [117.530313, 42.590278], + [117.537088, 42.603054], + [117.60053, 42.603054], + [117.667051, 42.582347], + [117.708935, 42.588515], + [117.779768, 42.61847], + [117.801326, 42.612744], + [117.797631, 42.585431], + [117.856761, 42.539148], + [117.874007, 42.510038], + [117.997811, 42.416884], + [118.024296, 42.385064], + [118.008898, 42.346595], + [118.060021, 42.298364], + [118.047702, 42.280656], + [117.974405, 42.25054], + [117.977485, 42.229716], + [118.033535, 42.199132], + [118.106216, 42.172082], + [118.089586, 42.12283], + [118.097593, 42.105072], + [118.155491, 42.081091], + [118.116687, 42.037102], + [118.194296, 42.031324], + [118.220165, 42.058434], + [118.212774, 42.081091], + [118.239259, 42.092639], + [118.27252, 42.083312], + [118.296541, 42.057545], + [118.286686, 42.033991], + [118.239875, 42.024655], + [118.291614, 42.007759], + [118.313788, 41.98819], + [118.306396, 41.940131], + [118.268824, 41.930336], + [118.340273, 41.87243], + [118.335346, 41.845241], + [118.29223, 41.772976], + [118.247266, 41.773869], + [118.236179, 41.80778], + [118.178281, 41.814917], + [118.140093, 41.784134], + [118.132702, 41.733241], + [118.155491, 41.712694], + [118.159187, 41.67605], + [118.206614, 41.650566], + [118.215237, 41.59554], + [118.302701, 41.55256], + [118.315636, 41.512688], + [118.271904, 41.471446], + [118.327338, 41.450816], + [118.348896, 41.428384], + [118.361215, 41.384844], + [118.348896, 41.342622], + [118.380309, 41.312062], + [118.412338, 41.331838], + [118.528135, 41.355202], + [118.629765, 41.346666], + [118.677192, 41.35026], + [118.741866, 41.324198], + [118.770199, 41.352956], + [118.843496, 41.374516], + [118.844727, 41.342622], + [118.890923, 41.300823], + [118.949437, 41.317906], + [118.980234, 41.305769], + [119.092951, 41.293629], + [119.168712, 41.294978], + [119.197661, 41.282837], + [119.211827, 41.308016], + [119.239545, 41.31431], + [119.296211, 41.325097], + [119.330704, 41.385293], + [119.309762, 41.405944], + [119.376283, 41.422102], + [119.378131, 41.459787], + [119.401537, 41.472343], + [119.406464, 41.503276], + [119.361501, 41.545841], + [119.362116, 41.566442], + [119.420015, 41.567785], + [119.415703, 41.590169], + [119.342406, 41.617914], + [119.307914, 41.657273], + [119.299907, 41.705545], + [119.319001, 41.727435], + [119.317769, 41.764049], + [119.292515, 41.790827], + [119.312841, 41.80555], + [119.334399, 41.871539], + [119.323312, 41.889807], + [119.340559, 41.926774], + [119.323928, 41.937014], + [119.324544, 41.969505], + [119.375667, 42.023322], + [119.384906, 42.08953], + [119.352261, 42.118391], + [119.314689, 42.119723], + [119.30853, 42.147239], + [119.286972, 42.154781], + [119.277733, 42.185387], + [119.237697, 42.200905], + [119.274037, 42.239021], + [119.280197, 42.260728], + [119.34795, 42.300578], + [119.432949, 42.317396], + [119.482841, 42.347037], + [119.502551, 42.388159], + [119.540123, 42.363401], + [119.572152, 42.359421], + [119.571536, 42.335536], + [119.539507, 42.297922], + [119.557985, 42.289068], + [119.609108, 42.276671], + [119.617115, 42.252755], + [119.679941, 42.240793], + [119.744615, 42.211545], + [119.841933, 42.215534], + [119.854868, 42.170308], + [119.837622, 42.135257], + [119.845629, 42.097079], + [119.87581, 42.077982], + [119.897368, 42.030879], + [119.921389, 42.014429], + [119.924469, 41.98908], + [119.950954, 41.974399], + [119.954034, 41.923212], + [119.989759, 41.899163], + [120.023019, 41.816701], + [120.041498, 41.818932], + [120.050737, 41.776101], + [120.024867, 41.737707], + [120.035954, 41.708226], + [120.096316, 41.697056], + [120.1382, 41.729221], + [120.127113, 41.77253], + [120.183164, 41.826513], + [120.188707, 41.848361], + [120.215808, 41.853265], + [120.251533, 41.884016], + [120.286641, 41.880005], + [120.290337, 41.897381], + [120.260156, 41.904062], + [120.271859, 41.925439], + [120.318054, 41.93746], + [120.309431, 41.951704], + [120.373489, 41.994862], + [120.399358, 41.984631], + [120.456641, 42.016208], + [120.450481, 42.057101], + [120.493597, 42.073539], + [120.466496, 42.105516], + [120.56751, 42.152119], + [120.58414, 42.167203], + [120.624792, 42.154338], + [120.72211, 42.203565], + [120.745516, 42.223512], + [120.79048, 42.218636], + [120.820661, 42.227943], + [120.8299, 42.252755], + [120.883487, 42.242565], + [120.883487, 42.269585], + [120.933994, 42.27977], + [120.992508, 42.264714], + [121.028848, 42.242565], + [121.070732, 42.254083], + [121.087978, 42.278885], + [121.120623, 42.280656], + [121.133558, 42.300135], + [121.184681, 42.333324], + [121.218558, 42.371802], + [121.285079, 42.387717], + [121.314644, 42.42837], + [121.304789, 42.435879], + [121.386093, 42.474294], + [121.434752, 42.475176], + [121.4791, 42.49636], + [121.506201, 42.482239], + [121.570875, 42.487093], + [121.607831, 42.516214], + [121.604136, 42.495037], + [121.66573, 42.437204], + [121.69899, 42.438529], + [121.747649, 42.484887], + [121.803084, 42.514891], + [121.817867, 42.504303], + [121.831417, 42.533856], + [121.844352, 42.522389], + [121.889931, 42.556784], + [121.921344, 42.605697], + [121.915801, 42.656332], + [121.94167, 42.666014], + [121.939207, 42.688453], + [122.018663, 42.69901], + [122.062394, 42.723635], + [122.072865, 42.710444], + [122.160945, 42.684934], + [122.204676, 42.685374], + [122.204676, 42.732867], + [122.261343, 42.695931], + [122.324785, 42.684934], + [122.338951, 42.669975], + [122.396234, 42.684054], + [122.396234, 42.707366], + [122.460907, 42.755282], + [122.439349, 42.770221], + [122.371596, 42.776371], + [122.35127, 42.830378], + [122.436886, 42.843105], + [122.556378, 42.827745], + [122.576088, 42.819405], + [122.580399, 42.789987], + [122.624747, 42.773296], + [122.653696, 42.78252], + [122.733152, 42.786034], + [122.73808, 42.77066], + [122.786123, 42.757479], + [122.848949, 42.712203], + [122.883442, 42.751766], + [122.887137, 42.770221], + [122.925941, 42.772417], + [122.945651, 42.753524], + [122.980144, 42.777689], + [123.058368, 42.768903], + [123.118114, 42.801405], + [123.227752, 42.831695], + [123.169853, 42.859777], + [123.188947, 42.895739], + [123.18402, 42.925983], + [123.259165, 42.993431], + [123.323222, 43.000872], + [123.434707, 43.027565], + [123.474743, 43.042438], + [123.536337, 43.007], + [123.572678, 43.003498], + [123.580685, 43.036314], + [123.631192, 43.088346], + [123.636119, 43.141644], + [123.666916, 43.179623], + [123.645974, 43.208855], + [123.676771, 43.223684], + [123.664453, 43.264663], + [123.698329, 43.272071], + [123.703873, 43.37047], + [123.608402, 43.366119], + [123.54496, 43.415262], + [123.519707, 43.402219], + [123.486446, 43.44525], + [123.442098, 43.437863], + [123.419925, 43.410046], + [123.382968, 43.469143], + [123.36449, 43.483475], + [123.315831, 43.492159], + [123.329998, 43.519071], + [123.304744, 43.550742], + [123.360179, 43.567223], + [123.452569, 43.545971], + [123.461193, 43.568523], + [123.434091, 43.575461], + [123.421157, 43.598435], + [123.5117, 43.592801], + [123.510468, 43.624867], + [123.536953, 43.633964], + [123.518475, 43.682024], + [123.520323, 43.708419], + [123.48275, 43.737396], + [123.498149, 43.771114], + [123.461809, 43.822518], + [123.467968, 43.853599], + [123.397135, 43.954929], + [123.37065, 43.970006], + [123.400831, 43.979481], + [123.365722, 44.013922], + [123.331229, 44.028984], + [123.32815, 44.084035], + [123.350939, 44.092633], + [123.362642, 44.133452], + [123.386664, 44.161794], + [123.323838, 44.179823], + [123.286882, 44.211574], + [123.277027, 44.25274], + [123.196955, 44.34483], + [123.128585, 44.367081], + [123.114419, 44.40258], + [123.142136, 44.428228], + [123.125506, 44.455147], + [123.137209, 44.486322], + [123.12489, 44.5098], + [123.06576, 44.505959], + [123.025108, 44.493153], + [122.85634, 44.398304], + [122.76087, 44.369648], + [122.702971, 44.319145], + [122.675254, 44.285738], + [122.641993, 44.283595], + [122.515726, 44.251025], + [122.483081, 44.236877], + [122.319241, 44.233018], + [122.271198, 44.255741], + [122.291524, 44.310152], + [122.294604, 44.41113], + [122.28598, 44.477783], + [122.228082, 44.480345], + [122.224386, 44.526016], + [122.196053, 44.559712], + [122.13138, 44.577619], + [122.113517, 44.615546], + [122.103046, 44.67388], + [122.117213, 44.701961], + [122.161561, 44.728328], + [122.152322, 44.744057], + [122.10243, 44.736406], + [122.110438, 44.767856], + [122.142467, 44.753833], + [122.168952, 44.770405], + [122.099967, 44.7823], + [122.098119, 44.81882], + [122.04946, 44.912985], + [122.079025, 44.914256], + [122.087032, 44.95281], + [122.074713, 45.006573], + [122.098735, 45.02138], + [122.119677, 45.068739], + [122.109822, 45.142236], + [122.143082, 45.183167], + [122.192358, 45.180636], + [122.22993, 45.206784], + [122.239169, 45.276313], + [122.147394, 45.295682], + [122.146778, 45.374352], + [122.180039, 45.409655], + [122.168336, 45.439897], + [122.064242, 45.472641], + [122.002648, 45.507882], + [121.993409, 45.552741], + [121.966308, 45.596308], + [121.995873, 45.59882], + [122.003264, 45.623102], + [121.970004, 45.692956], + [121.934279, 45.71051], + [121.867142, 45.719703], + [121.812323, 45.704659], + [121.811091, 45.687103], + [121.713773, 45.701734], + [121.666345, 45.727641], + [121.644172, 45.752284], + [121.657106, 45.770238], + [121.697142, 45.76314], + [121.754425, 45.794862], + [121.766744, 45.830318], + [121.769823, 45.84366], + [121.817251, 45.875336], + [121.805548, 45.900746], + [121.821562, 45.918235], + [121.809243, 45.961102], + [121.761816, 45.998947], + [121.819098, 46.023054], + [121.843736, 46.024301], + [121.864062, 46.002272], + [121.923808, 46.004767], + [121.92812, 45.988552], + [122.040221, 45.959022], + [122.085184, 45.912406], + [122.091344, 45.882002], + [122.200981, 45.857], + [122.236705, 45.831569], + [122.253952, 45.7982], + [122.301379, 45.813218], + [122.337719, 45.859917], + [122.372828, 45.856166], + [122.362357, 45.917403], + [122.446125, 45.916986], + [122.496016, 45.85825], + [122.504639, 45.786933], + [122.522501, 45.786933], + [122.556378, 45.82156], + [122.603189, 45.778169], + [122.640761, 45.771072], + [122.650001, 45.731401], + [122.671558, 45.70048], + [122.741775, 45.705077], + [122.751015, 45.735996], + [122.792283, 45.766063], + [122.752246, 45.834905], + [122.772572, 45.856583], + [122.80029, 45.856583], + [122.828623, 45.912406], + [122.792898, 46.073313], + [123.04605, 46.099878], + [123.070071, 46.123527], + [123.112571, 46.130163], + [123.102716, 46.172037], + [123.127354, 46.174523], + [123.128585, 46.210565], + [123.178476, 46.248239], + [123.142136, 46.298293], + [123.089781, 46.347888], + [123.011557, 46.434984], + [123.010325, 46.524823], + [123.002318, 46.574624], + [123.052825, 46.579972], + [123.04605, 46.617803], + [123.077462, 46.622324], + [123.098404, 46.603002], + [123.18094, 46.614103], + [123.228368, 46.588198], + [123.279491, 46.616981], + [123.276411, 46.660947], + [123.318295, 46.662179], + [123.366338, 46.677784], + [123.474743, 46.686817], + [123.603475, 46.68928], + [123.631808, 46.728675], + [123.629344, 46.813524], + [123.580069, 46.827447], + [123.625648, 46.847508], + [123.599163, 46.868378], + [123.605322, 46.891286], + [123.576989, 46.891286], + [123.575757, 46.845461], + [123.562823, 46.82581], + [123.506772, 46.827038], + [123.483366, 46.84587], + [123.52833, 46.944836], + [123.487678, 46.959951], + [123.42362, 46.934212], + [123.337389, 46.988943], + [123.301664, 46.999965], + [123.304128, 46.964852], + [123.360179, 46.970978], + [123.404526, 46.935438], + [123.40699, 46.906416], + [123.374345, 46.837683], + [123.341084, 46.826628], + [123.295505, 46.865105], + [123.221592, 46.850373], + [123.22344, 46.821305], + [123.198802, 46.803283], + [123.163694, 46.74016], + [123.103332, 46.734828], + [123.076846, 46.745082], + [123.026339, 46.718829], + [123.00355, 46.730726], + [122.996774, 46.761483], + [122.906847, 46.80738], + [122.893913, 46.895376], + [122.895144, 46.960359], + [122.83971, 46.937072], + [122.791051, 46.941567], + [122.798442, 46.9575], + [122.77442, 46.973837], + [122.778116, 47.002822], + [122.845869, 47.046881], + [122.852645, 47.072158], + [122.821232, 47.065636], + [122.710363, 47.093349], + [122.679566, 47.094164], + [122.615508, 47.124306], + [122.582863, 47.158092], + [122.531124, 47.198771], + [122.498479, 47.255262], + [122.462755, 47.27841], + [122.441197, 47.310476], + [122.418407, 47.350632], + [122.507103, 47.401291], + [122.543443, 47.495589], + [122.59395, 47.54732], + [122.765181, 47.614333], + [122.848949, 47.67441], + [122.926557, 47.697777], + [123.041122, 47.746492], + [123.161846, 47.781892], + [123.214201, 47.824502], + [123.256085, 47.876711], + [123.300432, 47.953723], + [123.537569, 48.021816], + [123.579453, 48.045427], + [123.705105, 48.152142], + [123.746373, 48.197638], + [123.862785, 48.271782], + [124.019234, 48.39313], + [124.07898, 48.43603], + [124.136878, 48.463023], + [124.25945, 48.536385], + [124.314269, 48.503881], + [124.302566, 48.456673], + [124.330283, 48.435633], + [124.309957, 48.413393], + [124.331515, 48.380015], + [124.317964, 48.35099], + [124.353689, 48.315978], + [124.365392, 48.283731], + [124.422058, 48.245884], + [124.412819, 48.219175], + [124.418978, 48.181679], + [124.475029, 48.173698], + [124.471333, 48.133373], + [124.430065, 48.12099], + [124.415899, 48.08782], + [124.46579, 48.098213], + [124.478108, 48.123387], + [124.505826, 48.124985], + [124.529847, 48.146951], + [124.512601, 48.164518], + [124.547094, 48.200829], + [124.579122, 48.262221], + [124.558796, 48.268197], + [124.579738, 48.297269], + [124.540934, 48.335476], + [124.547094, 48.35775], + [124.51876, 48.378027], + [124.52492, 48.426897], + [124.507674, 48.445558], + [124.555717, 48.467784], + [124.533543, 48.515379], + [124.548941, 48.535593], + [124.520608, 48.556195], + [124.579122, 48.596582], + [124.601912, 48.632587], + [124.624702, 48.701755], + [124.612383, 48.747945], + [124.656115, 48.783842], + [124.644412, 48.80789], + [124.654267, 48.83429], + [124.697383, 48.841775], + [124.715861, 48.885475], + [124.709086, 48.920487], + [124.744194, 48.920487], + [124.756513, 48.967262], + [124.808252, 49.020666], + [124.828578, 49.077933], + [124.809484, 49.115943], + [124.847672, 49.129651], + [124.860607, 49.166448], + [124.906802, 49.184054], + [124.983179, 49.162535], + [125.039845, 49.17623], + [125.034302, 49.157056], + [125.117453, 49.126127], + [125.158721, 49.144921], + [125.187671, 49.186792], + [125.219699, 49.189139], + [125.227707, 49.248947], + [125.214772, 49.277066], + [125.261583, 49.322336], + [125.256656, 49.359769], + [125.277598, 49.379644], + [125.25604, 49.395227], + [125.256656, 49.437275], + [125.270822, 49.454395], + [125.228323, 49.487063], + [125.211076, 49.539908], + [125.233866, 49.536801], + [125.23017, 49.595411], + [125.205533, 49.593859], + [125.16796, 49.629923], + [125.15441, 49.616741], + [125.127308, 49.655113], + [125.132236, 49.672157], + [125.164881, 49.669446], + [125.189518, 49.652401], + [125.185207, 49.634574], + [125.219699, 49.669058], + [125.225243, 49.726349], + [125.204301, 49.734086], + [125.221547, 49.754969], + [125.222779, 49.799026], + [125.177815, 49.829533], + [125.239409, 49.844587], + [125.225243, 49.867351], + [125.245569, 49.87198], + [125.212924, 49.907452], + [125.225859, 49.922481], + [125.199373, 49.935194], + [125.190134, 49.959841], + [125.231402, 49.957531], + [125.241873, 49.987938], + [125.278214, 49.996402], + [125.297924, 50.014481], + [125.283757, 50.036012], + [125.25296, 50.041393], + [125.289916, 50.057917], + [125.315786, 50.04562], + [125.328105, 50.065985], + [125.283757, 50.070211], + [125.287453, 50.093636], + [125.258504, 50.103618], + [125.27883, 50.127411], + [125.311474, 50.140453], + [125.376148, 50.137385], + [125.335496, 50.161161], + [125.382923, 50.172278], + [125.39093, 50.199868], + [125.417416, 50.195654], + [125.448829, 50.216338], + [125.442053, 50.260357], + [125.466075, 50.266861], + [125.463611, 50.295925], + [125.530749, 50.331085], + [125.520278, 50.3498], + [125.546763, 50.358965], + [125.522126, 50.404759], + [125.536292, 50.420014], + [125.567089, 50.402852], + [125.583104, 50.409717], + [125.562162, 50.438314], + [125.580024, 50.449366], + [125.627451, 50.443268], + [125.654553, 50.471082], + [125.699516, 50.487078], + [125.740784, 50.523237], + [125.754335, 50.506874], + [125.770349, 50.531227], + [125.794987, 50.532748], + [125.829479, 50.56165], + [125.807921, 50.60383], + [125.814697, 50.62092], + [125.793139, 50.643316], + [125.804226, 50.658874], + [125.789443, 50.679735], + [125.825784, 50.70362], + [125.78082, 50.725598], + [125.795603, 50.738856], + [125.758646, 50.746809], + [125.804226, 50.773309], + [125.828863, 50.756654], + [125.846726, 50.769524], + [125.836255, 50.793363], + [125.890457, 50.805845], + [125.878138, 50.816812], + [125.913247, 50.825885], + [125.939732, 50.85423], + [125.961906, 50.901054], + [125.997631, 50.872738], + [125.996399, 50.906715], + [126.02042, 50.927466], + [126.042594, 50.92558], + [126.068464, 50.967434], + [126.041978, 50.981753], + [126.033971, 51.011132], + [126.059225, 51.043503], + [125.976073, 51.084498], + [125.993935, 51.119072], + [125.970529, 51.123955], + [125.946508, 51.108176], + [125.909551, 51.138977], + [125.864588, 51.146487], + [125.850421, 51.21364], + [125.819008, 51.227134], + [125.761726, 51.226385], + [125.76111, 51.261976], + [125.740784, 51.27583], + [125.700132, 51.327465], + [125.626219, 51.380163], + [125.623756, 51.387633], + [125.62314, 51.398089], + [125.600966, 51.410409], + [125.60035, 51.413396], + [125.595422, 51.416755], + [125.559082, 51.461521], + [125.528285, 51.488359], + [125.424807, 51.562827], + [125.38046, 51.585516], + [125.35151, 51.623801], + [125.316402, 51.610052], + [125.289301, 51.633831], + [125.228938, 51.640517], + [125.214772, 51.627888], + [125.175968, 51.639403], + [125.130388, 51.635317], + [125.12854, 51.659083], + [125.098975, 51.658341], + [125.060171, 51.59667], + [125.073106, 51.553526], + [125.047236, 51.529704], + [125.004737, 51.529332], + [124.983795, 51.508478], + [124.928976, 51.498419], + [124.917889, 51.474196], + [124.942527, 51.447349], + [124.885244, 51.40817], + [124.864302, 51.37979], + [124.783614, 51.392115], + [124.76452, 51.38726], + [124.752817, 51.35812], + [124.693687, 51.3327], + [124.62655, 51.327465], + [124.58713, 51.363725], + [124.555717, 51.375307], + [124.490427, 51.380537], + [124.478108, 51.36223], + [124.443616, 51.35812], + [124.426985, 51.331953], + [124.430065, 51.301281], + [124.406659, 51.272086], + [124.339522, 51.293422], + [124.297638, 51.298661], + [124.271769, 51.308389], + [124.239124, 51.344664], + [124.192313, 51.33943], + [124.128255, 51.347281], + [124.090067, 51.3413], + [124.071588, 51.320734], + [123.994596, 51.322604], + [123.939777, 51.313253], + [123.926227, 51.300532], + [123.887423, 51.320734], + [123.842459, 51.367462], + [123.794416, 51.361109], + [123.711264, 51.398089], + [123.660141, 51.342795], + [123.661989, 51.319237], + [123.582533, 51.306893], + [123.582533, 51.294545], + [123.46304, 51.286686], + [123.440251, 51.270963], + [123.414381, 51.278825], + [123.376809, 51.266844], + [123.339853, 51.27246], + [123.294273, 51.254111], + [123.231447, 51.268716], + [123.231447, 51.279199], + [123.127969, 51.297913], + [123.069455, 51.321108], + [123.002934, 51.31213], + [122.965977, 51.345786], + [122.965977, 51.386886], + [122.946267, 51.405183], + [122.903768, 51.415262], + [122.900072, 51.445112], + [122.871123, 51.455181], + [122.854492, 51.477551], + [122.880362, 51.511085], + [122.858804, 51.524864], + [122.880362, 51.537894], + [122.874202, 51.561339], + [122.832935, 51.581797], + [122.85634, 51.606707], + [122.820616, 51.633088], + [122.816304, 51.655371], + [122.778732, 51.698048], + [122.749167, 51.746613], + [122.771957, 51.779579], + [122.732536, 51.832495], + [122.725761, 51.87833], + [122.706051, 51.890151], + [122.729457, 51.919321], + [122.726377, 51.978709], + [122.683877, 51.974654], + [122.664783, 51.99861], + [122.650616, 52.058997], + [122.625363, 52.067459], + [122.643841, 52.111585], + [122.629059, 52.13657], + [122.690653, 52.140243], + [122.73808, 52.153464], + [122.769493, 52.179893], + [122.766413, 52.232705], + [122.787355, 52.252494], + [122.76087, 52.26678], + [122.710979, 52.256157], + [122.67895, 52.276667], + [122.585943, 52.266413], + [122.560689, 52.282526], + [122.478153, 52.29607], + [122.484313, 52.341432], + [122.447356, 52.394052], + [122.419023, 52.375057], + [122.378987, 52.395512], + [122.367284, 52.413768], + [122.342031, 52.414133], + [122.326016, 52.459374], + [122.310618, 52.475416], + [122.207756, 52.469218], + [122.178191, 52.48963], + [122.168952, 52.513674], + [122.140003, 52.510032], + [122.142467, 52.495096], + [122.107358, 52.452445], + [122.080873, 52.440407], + [122.091344, 52.427272], + [122.040837, 52.413038], + [122.035909, 52.377615], + [121.976779, 52.343626], + [121.94783, 52.298266], + [121.901018, 52.280695], + [121.841272, 52.282526], + [121.769207, 52.308147], + [121.714389, 52.318025], + [121.715621, 52.342894], + [121.658338, 52.3904], + [121.678664, 52.419973], + [121.63986, 52.44442], + [121.590585, 52.443326], + [121.565331, 52.460468], + [121.519136, 52.456821], + [121.495114, 52.484892], + [121.474172, 52.482706], + [121.416274, 52.499468], + [121.411963, 52.52205], + [121.353448, 52.534793], + [121.323883, 52.573727], + [121.280151, 52.586819], + [121.225333, 52.577364], + [121.182217, 52.59918], + [121.237036, 52.619167], + [121.29247, 52.651855], + [121.309717, 52.676173], + [121.373158, 52.683067], + [121.455078, 52.73528], + [121.476636, 52.772225], + [121.511129, 52.779104], + [121.537614, 52.801542], + [121.591201, 52.824693], + [121.620766, 52.853251], + [121.604136, 52.872401], + [121.610295, 52.892264], + [121.66265, 52.912478], + [121.677432, 52.948192], + [121.715621, 52.997926], + [121.785838, 53.018451], + [121.817867, 53.061631], + [121.775367, 53.089674], + [121.784606, 53.104408], + [121.753193, 53.147501], + [121.722396, 53.145706], + [121.665114, 53.170467], + [121.660186, 53.195213], + [121.67928, 53.199515], + [121.679896, 53.240722], + [121.642324, 53.262564], + [121.615222, 53.258984], + [121.575802, 53.29155], + [121.504969, 53.323018], + [121.499426, 53.337314], + [121.416274, 53.319443], + [121.336818, 53.325877], + [121.308485, 53.301565], + [121.227797, 53.280459], + [121.155732, 53.285468], + [121.129246, 53.277238], + [121.098449, 53.306929], + [121.055334, 53.29155], + [120.950624, 53.29763], + [120.936457, 53.28833], + [120.882871, 53.294411], + [120.867472, 53.278669], + [120.820661, 53.269007], + [120.838523, 53.239648], + [120.821893, 53.241797], + [120.736277, 53.204892], + [120.690698, 53.174771], + [120.687002, 53.142476], + [120.659901, 53.137091], + [120.643886, 53.106923], + [120.562582, 53.082845], + [120.529321, 53.045803], + [120.452945, 53.01017], + [120.411061, 52.957927], + [120.363018, 52.94134], + [120.350699, 52.906343], + [120.295265, 52.891542], + [120.297112, 52.869872], + [120.222584, 52.84277], + [120.181316, 52.806969], + [120.14128, 52.813119], + [120.101244, 52.788877], + [120.031642, 52.773674], + [120.071063, 52.70628], + [120.035338, 52.646409], + [120.049505, 52.598453], + [120.07599, 52.586092], + [120.125265, 52.586819], + [120.194866, 52.578819], + [120.289721, 52.623527], + [120.396895, 52.616261], + [120.462184, 52.64532], + [120.483742, 52.630066], + [120.56135, 52.595544], + [120.605082, 52.589364], + [120.62664, 52.570818], + [120.658669, 52.56718], + [120.690698, 52.547532], + [120.734429, 52.536977], + [120.687002, 52.511489], + [120.706712, 52.492909], + [120.68269, 52.464479], + [120.688234, 52.427637], + [120.64943, 52.3904], + [120.653741, 52.371038], + [120.62356, 52.361172], + [120.627256, 52.323878], + [120.653741, 52.302658], + [120.695625, 52.290214], + [120.715951, 52.261286], + [120.755371, 52.258355], + [120.745516, 52.20594], + [120.786784, 52.15787], + [120.760299, 52.136937], + [120.76769, 52.10938], + [120.753523, 52.085483], + [120.717183, 52.072978], + [120.690698, 52.047221], + [120.691929, 52.026973], + [120.717799, 52.015556], + [120.704864, 51.983501], + [120.66298, 51.958061], + [120.656821, 51.926333], + [120.548416, 51.907877], + [120.549032, 51.882394], + [120.481278, 51.885719], + [120.480046, 51.855049], + [120.40059, 51.833605], + [120.40675, 51.81659], + [120.363634, 51.789945], + [120.317438, 51.785873], + [120.294649, 51.752171], + [120.226279, 51.717703], + [120.172693, 51.679868], + [120.087077, 51.678013], + [120.100628, 51.649058], + [120.05936, 51.634203], + [120.035954, 51.583657], + [120.052584, 51.560967], + [120.017476, 51.52114], + [119.985447, 51.505125], + [119.982367, 51.482396], + [120.002693, 51.459283], + [119.982983, 51.445112], + [119.97128, 51.40033], + [119.910918, 51.390994], + [119.914614, 51.374187], + [119.946643, 51.360736], + [119.883817, 51.336813], + [119.885049, 51.302777], + [119.811136, 51.281071], + [119.828383, 51.263099], + [119.797586, 51.243622], + [119.821607, 51.21439], + [119.784035, 51.22601], + [119.760629, 51.212516], + [119.788346, 51.174636], + [119.771716, 51.124331], + [119.752622, 51.117193], + [119.764325, 51.092017], + [119.719361, 51.075099], + [119.726753, 51.051028], + [119.678093, 51.016404], + [119.630666, 51.00925], + [119.598637, 50.984767], + [119.569688, 50.933879], + [119.491464, 50.87878], + [119.498855, 50.827776], + [119.515485, 50.814165], + [119.496391, 50.771795], + [119.506862, 50.763846], + [119.450196, 50.695281], + [119.430486, 50.684286], + [119.385522, 50.682769], + [119.394145, 50.667219], + [119.361501, 50.632689], + [119.298059, 50.616743], + [119.281428, 50.601551], + [119.295595, 50.573814], + [119.264182, 50.536933], + [119.262334, 50.490124], + [119.250631, 50.448604], + [119.22353, 50.441363], + [119.217371, 50.414675], + [119.165016, 50.422683], + [119.125596, 50.389118], + [119.176719, 50.378814], + [119.155777, 50.364691], + [119.188422, 50.347509], + [119.232153, 50.365455], + [119.259871, 50.345218], + [119.277117, 50.366218], + [119.322696, 50.352474], + [119.358421, 50.358965], + [119.381827, 50.324208], + [119.35103, 50.303953], + [119.339943, 50.244668], + [119.319001, 50.220933], + [119.358421, 50.197953], + [119.339327, 50.192206], + [119.350414, 50.166145], + [119.309762, 50.161161], + [119.290052, 50.121655], + [119.236465, 50.075204], + [119.190269, 50.087877], + [119.193965, 50.069826], + [119.163168, 50.027554], + [119.12498, 50.019095], + [119.090487, 49.985629], + [118.982082, 49.979087], + [118.964836, 49.988708], + [118.791757, 49.955606], + [118.761576, 49.959456], + [118.739402, 49.946364], + [118.672264, 49.955991], + [118.605127, 49.926719], + [118.574946, 49.931342], + [118.531214, 49.887791], + [118.485019, 49.866194], + [118.483787, 49.830691], + [118.443751, 49.835709], + [118.385853, 49.827217], + [118.398787, 49.802502], + [118.384005, 49.783958], + [118.315636, 49.766953], + [118.284223, 49.743755], + [118.220781, 49.729831], + [118.211542, 49.690744], + [118.156723, 49.660149], + [118.129622, 49.669446], + [118.082811, 49.616741], + [118.011362, 49.614803], + [117.995963, 49.623332], + [117.950999, 49.596187], + [117.866, 49.591532], + [117.849369, 49.551557], + [117.809333, 49.521263], + [117.638102, 49.574847], + [117.485349, 49.633024], + [117.278394, 49.636512], + [117.068974, 49.695389], + [116.736367, 49.847674], + [116.717889, 49.847288], + [116.428397, 49.430659], + [116.048363, 48.873274], + [116.077928, 48.822471], + [116.069305, 48.811437], + [115.83032, 48.560156], + [115.799523, 48.514982], + [115.822929, 48.259432], + [115.81061, 48.257042], + [115.529126, 48.155336], + [115.545141, 48.134971], + [115.539597, 48.104607], + [115.580249, 47.921649], + [115.939342, 47.683275], + [115.968291, 47.689721], + [116.111189, 47.811642], + [116.130283, 47.823296], + [116.26579, 47.876711], + [116.453035, 47.837358], + [116.669846, 47.890758], + [116.791186, 47.89758], + [116.879265, 47.893968], + [117.094844, 47.8241], + [117.384335, 47.641356], + [117.493357, 47.758563], + [117.519226, 47.761782], + [117.529081, 47.782697], + [117.813645, 48.016212], + [117.886942, 48.025418], + [117.96147, 48.011007], + [118.052014, 48.01421], + [118.107448, 48.031021], + [118.124694, 48.047427], + [118.150564, 48.036224], + [118.238643, 48.041826], + [118.238027, 48.031422], + [118.284839, 48.011007], + [118.351976, 48.006203], + [118.37415, 48.016612], + [118.422193, 48.01461], + [118.441903, 47.995791], + [118.568171, 47.992187], + [118.773278, 47.771034], + [119.134219, 47.664335], + [119.152081, 47.540453], + [119.205052, 47.520249], + [119.365812, 47.47739], + [119.32208, 47.42721], + [119.365812, 47.423161], + [119.386138, 47.397645], + [119.437877, 47.378602], + [119.450812, 47.353065], + [119.559217, 47.303172], + [119.56784, 47.248357], + [119.627586, 47.247544], + [119.716282, 47.195518], + [119.763093, 47.13082], + [119.806825, 47.055037], + [119.79081, 47.04525], + [119.795122, 47.013024], + [119.845013, 46.964852], + [119.859795, 46.917046], + [119.926933, 46.903963], + [119.920157, 46.853238], + [119.936172, 46.790173], + [119.917078, 46.758203], + [119.93494, 46.712674], + [119.911534, 46.669572], + [119.859179, 46.669572], + [119.804361, 46.68189], + [119.8136, 46.66834], + [119.783419, 46.626023], + [119.739687, 46.615336], + [119.677477, 46.584908], + [119.682405, 46.605058], + [119.656535, 46.625612], + [119.598637, 46.618214], + [119.557985, 46.633832], + [119.491464, 46.629311], + [119.431718, 46.638763], + [119.374435, 46.603414], + [119.357805, 46.619447], + [119.325776, 46.608759], + [119.26295, 46.649034], + [119.20074, 46.648213], + [119.152081, 46.658072], + [119.123132, 46.642872], + [119.073857, 46.676552], + [119.011647, 46.745902], + [118.951285, 46.722111], + [118.912481, 46.733188], + [118.914329, 46.77501], + [118.845343, 46.771731], + [118.788061, 46.717598], + [118.788061, 46.687227], + [118.677192, 46.6979], + [118.639004, 46.721291], + [118.586033, 46.692975], + [118.446831, 46.704467], + [118.41049, 46.728265], + [118.316252, 46.73934], + [118.274984, 46.715957], + [118.238643, 46.709392], + [118.192448, 46.682711], + [118.124078, 46.678195], + [118.04647, 46.631366], + [117.992883, 46.631366], + [117.982412, 46.614925], + [117.914659, 46.607936], + [117.868464, 46.575447], + [117.870927, 46.549935], + [117.813645, 46.530588], + [117.769913, 46.537586], + [117.748355, 46.521941], + [117.704008, 46.516587], + [117.641182, 46.558166], + [117.622704, 46.596012], + [117.596218, 46.603414], + [117.49582, 46.600535], + [117.42006, 46.582029], + [117.447777, 46.528117], + [117.392343, 46.463023], + [117.375712, 46.416421], + [117.383719, 46.394962], + [117.372017, 46.36028], + [117.247597, 46.366888], + [117.097308, 46.356976], + [116.876801, 46.375559], + [116.834302, 46.384229], + [116.81336, 46.355737], + [116.745606, 46.327642], + [116.673541, 46.325163], + [116.585462, 46.292504], + [116.573143, 46.258998], + [116.536187, 46.23251], + [116.439484, 46.137628], + [116.414231, 46.133896], + [116.271949, 45.966926], + [116.243, 45.876169], + [116.288579, 45.839074], + [116.278108, 45.831152], + [116.286731, 45.775247], + [116.260862, 45.776082], + [116.22329, 45.747273], + [116.217746, 45.72221], + [116.17463, 45.688775], + [116.1155, 45.679577], + [116.035428, 45.685013], + [116.026805, 45.661177], + [115.936878, 45.632727], + [115.864197, 45.572853], + [115.699741, 45.45963], + [115.586408, 45.440317], + [115.36467, 45.392427], + [115.178041, 45.396209], + [114.983404, 45.379397], + [114.920578, 45.386122], + [114.745035, 45.438217], + [114.600906, 45.403773], + [114.551014, 45.387383], + [114.539928, 45.325985], + [114.519602, 45.283893], + [114.459855, 45.21353], + [114.409348, 45.179371], + [114.347139, 45.119436], + [114.313262, 45.107189], + [114.19069, 45.036607], + [114.158045, 44.994301], + [114.116777, 44.957045], + [114.065038, 44.931206], + [113.907358, 44.915104], + [113.861778, 44.863377], + [113.798953, 44.849377], + [113.712105, 44.788247], + [113.631417, 44.745333], + [113.540874, 44.759358], + [113.503918, 44.777628], + [113.11526, 44.799714], + [113.037652, 44.822641], + [112.937869, 44.840042], + [112.850406, 44.840466], + [112.712436, 44.879494], + [112.599719, 44.930783], + [112.540589, 45.001072], + [112.438959, 45.071697], + [112.396459, 45.064512], + [112.113743, 45.072965], + [112.071243, 45.096206], + [112.002874, 45.090713], + [111.903707, 45.052252], + [111.764505, 44.969325], + [111.69244, 44.859983], + [111.624687, 44.778477], + [111.585267, 44.705789], + [111.560629, 44.647062], + [111.569868, 44.57634], + [111.530448, 44.55033], + [111.514434, 44.507666], + [111.478709, 44.488884], + [111.427586, 44.394455], + [111.415883, 44.35724], + [111.428818, 44.319573], + [111.507042, 44.294305], + [111.534144, 44.26217], + [111.541535, 44.206855], + [111.559397, 44.171238], + [111.662875, 44.061247], + [111.702295, 44.034147], + [111.773128, 44.010479], + [111.870447, 43.940279], + [111.959758, 43.823382], + [111.970845, 43.748205], + [111.951135, 43.693275], + [111.891388, 43.6738], + [111.79407, 43.672068], + [111.606209, 43.513863], + [111.564325, 43.490422], + [111.456535, 43.494329], + [111.400485, 43.472618], + [111.354289, 43.436125], + [111.183674, 43.396132], + [111.151029, 43.38004], + [111.069725, 43.357852], + [111.02045, 43.329998], + [110.82027, 43.149067], + [110.769763, 43.099272], + [110.736502, 43.089657], + [110.687227, 43.036314], + [110.689691, 43.02144], + [110.631177, 42.936061], + [110.469801, 42.839156], + [110.437156, 42.781203], + [110.34846, 42.742098], + [110.139657, 42.674815], + [110.108244, 42.642687], + [109.906216, 42.635643], + [109.733753, 42.579262], + [109.683862, 42.558988], + [109.544044, 42.472528], + [109.486761, 42.458842], + [109.291509, 42.435879], + [109.026039, 42.458401], + [108.983539, 42.449128], + [108.845569, 42.395673], + [108.798757, 42.415116], + [108.705134, 42.413349], + [108.532671, 42.442945], + [108.298614, 42.438529], + [108.238252, 42.460167], + [108.089195, 42.436321], + [108.022058, 42.433229], + [107.986949, 42.413349], + [107.939522, 42.403628], + [107.736262, 42.415116], + [107.57427, 42.412907], + [107.501589, 42.456635], + [107.46648, 42.458842], + [107.303872, 42.412465], + [107.271844, 42.364285], + [107.051337, 42.319166], + [106.785867, 42.291281], + [106.612789, 42.241679], + [106.372572, 42.161436], + [106.344855, 42.149457], + [106.01348, 42.032213], + [105.74185, 41.949033], + [105.589713, 41.888471], + [105.385221, 41.797073], + [105.291599, 41.749763], + [105.230621, 41.751103], + [105.009498, 41.583007], + [104.923267, 41.654143], + [104.803775, 41.652355], + [104.68921, 41.6452], + [104.524138, 41.661745], + [104.530298, 41.875104], + [104.418813, 41.860397], + [104.30856, 41.840782], + [104.080046, 41.805104], + [103.868779, 41.802427], + [103.454868, 41.877332], + [103.418527, 41.882233], + [103.20726, 41.96283], + [103.021862, 42.028212], + [102.712045, 42.153007], + [102.621502, 42.154338], + [102.540814, 42.162323], + [102.449039, 42.144133], + [102.093642, 42.223512], + [102.070236, 42.232374], + [101.877447, 42.432345], + [101.803534, 42.503861], + [101.770274, 42.509597], + [101.557775, 42.529887], + [101.291689, 42.586312], + [100.862995, 42.671295], + [100.826655, 42.675255], + [100.32528, 42.690213], + [100.272309, 42.636523], + [100.004376, 42.648849], + [99.969267, 42.647969], + [99.51224, 42.568244], + [98.962822, 42.607018], + [98.546447, 42.638284], + [98.195362, 42.653251], + [97.831958, 42.706047], + [97.28254, 42.782081], + [97.172903, 42.795257] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 210000, + "name": "辽宁省", + "center": [123.429096, 41.796767], + "centroid": [122.604994, 41.299712], + "childrenNum": 14, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 5, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [123.534489, 39.788361], + [123.546808, 39.756163], + [123.579453, 39.781002], + [123.612714, 39.775023], + [123.642279, 39.796178], + [123.645358, 39.823761], + [123.674924, 39.826979], + [123.687858, 39.808132], + [123.795032, 39.822842], + [123.812278, 39.831115], + [123.95148, 39.817786], + [124.002603, 39.800316], + [124.103001, 39.823302], + [124.099306, 39.777323], + [124.151045, 39.74558], + [124.173218, 39.841225], + [124.214486, 39.865116], + [124.215102, 39.883487], + [124.21695, 39.894049], + [124.218182, 39.895885], + [124.219414, 39.899099], + [124.241588, 39.928477], + [124.286551, 39.931689], + [124.288399, 39.962888], + [124.349377, 39.989029], + [124.372167, 40.021576], + [124.336442, 40.049985], + [124.346913, 40.079756], + [124.428217, 40.144291], + [124.457782, 40.177679], + [124.490427, 40.18408], + [124.513833, 40.218362], + [124.515065, 40.22019], + [124.62655, 40.291896], + [124.722636, 40.321561], + [124.739267, 40.371733], + [124.834121, 40.423235], + [124.913578, 40.481981], + [124.945606, 40.45603], + [124.985642, 40.475153], + [125.044157, 40.466503], + [125.042925, 40.483802], + [125.004737, 40.496091], + [125.015823, 40.533853], + [125.076801, 40.562048], + [125.113758, 40.569322], + [125.181511, 40.611132], + [125.262815, 40.620218], + [125.279445, 40.655187], + [125.305315, 40.661089], + [125.329337, 40.643835], + [125.375532, 40.658365], + [125.422343, 40.635661], + [125.418648, 40.673345], + [125.453756, 40.676522], + [125.459916, 40.707379], + [125.49564, 40.728697], + [125.544915, 40.729605], + [125.551075, 40.761796], + [125.585567, 40.788535], + [125.61698, 40.763609], + [125.685349, 40.769048], + [125.67611, 40.788082], + [125.641002, 40.798503], + [125.648393, 40.826133], + [125.707523, 40.866877], + [125.687813, 40.897645], + [125.652089, 40.91619], + [125.584335, 40.891764], + [125.589263, 40.931112], + [125.635458, 40.94151], + [125.650241, 40.970888], + [125.674879, 40.974503], + [125.684118, 41.021929], + [125.726617, 41.055332], + [125.739552, 41.08917], + [125.712451, 41.095485], + [125.734009, 41.125695], + [125.759878, 41.132908], + [125.791291, 41.167607], + [125.73832, 41.178418], + [125.758646, 41.232449], + [125.749407, 41.245499], + [125.695205, 41.244599], + [125.685349, 41.273842], + [125.646545, 41.264396], + [125.642234, 41.296327], + [125.62006, 41.318355], + [125.637306, 41.34442], + [125.610205, 41.365084], + [125.589879, 41.359245], + [125.581256, 41.396517], + [125.547995, 41.401006], + [125.534444, 41.428833], + [125.533212, 41.479069], + [125.493176, 41.509103], + [125.507343, 41.534195], + [125.479626, 41.544946], + [125.450061, 41.597777], + [125.461148, 41.642516], + [125.446981, 41.67605], + [125.412488, 41.691246], + [125.344119, 41.672474], + [125.317018, 41.676944], + [125.332416, 41.711354], + [125.336112, 41.768067], + [125.336112, 41.768067], + [125.323177, 41.771191], + [125.323177, 41.771191], + [125.319482, 41.776993], + [125.319482, 41.776993], + [125.294844, 41.822945], + [125.307779, 41.924548], + [125.35151, 41.92811], + [125.291764, 41.958825], + [125.29854, 41.974399], + [125.369989, 42.002868], + [125.363213, 42.017097], + [125.416184, 42.063766], + [125.414336, 42.101964], + [125.446365, 42.098411], + [125.490097, 42.136145], + [125.458068, 42.160105], + [125.458068, 42.160105], + [125.41372, 42.156112], + [125.368141, 42.182726], + [125.357054, 42.145464], + [125.305931, 42.146351], + [125.312706, 42.197359], + [125.280677, 42.175187], + [125.312706, 42.219966], + [125.27575, 42.231045], + [125.27575, 42.266928], + [125.299156, 42.289953], + [125.264047, 42.312528], + [125.224011, 42.30102], + [125.175352, 42.308102], + [125.167345, 42.351903], + [125.203685, 42.366938], + [125.185823, 42.38197], + [125.186439, 42.427928], + [125.140243, 42.44692], + [125.150098, 42.458842], + [125.105135, 42.490624], + [125.068794, 42.499449], + [125.090968, 42.515773], + [125.066946, 42.534738], + [125.089736, 42.567803], + [125.082961, 42.591159], + [125.097127, 42.622433], + [125.038613, 42.615387], + [125.010896, 42.63212], + [125.014592, 42.666014], + [124.99057, 42.677455], + [124.968396, 42.722756], + [124.996729, 42.745174], + [124.975171, 42.802722], + [124.92836, 42.819844], + [124.897563, 42.787791], + [124.874157, 42.789987], + [124.856911, 42.824234], + [124.84952, 42.882585], + [124.87231, 42.962344], + [124.869846, 42.988178], + [124.840897, 43.032377], + [124.88894, 43.074796], + [124.882781, 43.13422], + [124.785462, 43.117185], + [124.755281, 43.074359], + [124.719557, 43.069987], + [124.686912, 43.051185], + [124.677673, 43.002185], + [124.658579, 42.972854], + [124.635173, 42.972854], + [124.632093, 42.949642], + [124.607456, 42.937376], + [124.586514, 42.905384], + [124.466406, 42.847054], + [124.435609, 42.880831], + [124.371551, 42.880831], + [124.38079, 42.912835], + [124.431913, 42.930803], + [124.442384, 42.958841], + [124.42329, 42.975482], + [124.369703, 42.972854], + [124.333363, 42.997371], + [124.425754, 43.076107], + [124.366007, 43.121554], + [124.273617, 43.17875], + [124.287167, 43.207983], + [124.27608, 43.233278], + [124.228653, 43.235022], + [124.215102, 43.255947], + [124.168291, 43.244177], + [124.114088, 43.247229], + [124.117168, 43.2773], + [124.099306, 43.292983], + [124.032784, 43.280786], + [123.964415, 43.34088], + [123.896046, 43.361333], + [123.881263, 43.392218], + [123.881263, 43.392218], + [123.852314, 43.406133], + [123.857858, 43.459153], + [123.857858, 43.459153], + [123.79688, 43.489988], + [123.747604, 43.472184], + [123.749452, 43.439167], + [123.710032, 43.417001], + [123.703873, 43.37047], + [123.698329, 43.272071], + [123.664453, 43.264663], + [123.676771, 43.223684], + [123.645974, 43.208855], + [123.666916, 43.179623], + [123.636119, 43.141644], + [123.631192, 43.088346], + [123.580685, 43.036314], + [123.572678, 43.003498], + [123.536337, 43.007], + [123.474743, 43.042438], + [123.434707, 43.027565], + [123.323222, 43.000872], + [123.259165, 42.993431], + [123.18402, 42.925983], + [123.188947, 42.895739], + [123.169853, 42.859777], + [123.227752, 42.831695], + [123.118114, 42.801405], + [123.058368, 42.768903], + [122.980144, 42.777689], + [122.945651, 42.753524], + [122.925941, 42.772417], + [122.887137, 42.770221], + [122.883442, 42.751766], + [122.883442, 42.751766], + [122.848949, 42.712203], + [122.848949, 42.712203], + [122.786123, 42.757479], + [122.73808, 42.77066], + [122.733152, 42.786034], + [122.653696, 42.78252], + [122.624747, 42.773296], + [122.580399, 42.789987], + [122.576088, 42.819405], + [122.556378, 42.827745], + [122.436886, 42.843105], + [122.35127, 42.830378], + [122.371596, 42.776371], + [122.439349, 42.770221], + [122.460907, 42.755282], + [122.396234, 42.707366], + [122.396234, 42.684054], + [122.338951, 42.669975], + [122.324785, 42.684934], + [122.261343, 42.695931], + [122.204676, 42.732867], + [122.204676, 42.685374], + [122.160945, 42.684934], + [122.072865, 42.710444], + [122.062394, 42.723635], + [122.018663, 42.69901], + [121.939207, 42.688453], + [121.94167, 42.666014], + [121.915801, 42.656332], + [121.921344, 42.605697], + [121.889931, 42.556784], + [121.844352, 42.522389], + [121.831417, 42.533856], + [121.817867, 42.504303], + [121.803084, 42.514891], + [121.747649, 42.484887], + [121.69899, 42.438529], + [121.66573, 42.437204], + [121.604136, 42.495037], + [121.607831, 42.516214], + [121.570875, 42.487093], + [121.506201, 42.482239], + [121.4791, 42.49636], + [121.434752, 42.475176], + [121.386093, 42.474294], + [121.304789, 42.435879], + [121.314644, 42.42837], + [121.285079, 42.387717], + [121.218558, 42.371802], + [121.184681, 42.333324], + [121.133558, 42.300135], + [121.120623, 42.280656], + [121.087978, 42.278885], + [121.070732, 42.254083], + [121.028848, 42.242565], + [120.992508, 42.264714], + [120.933994, 42.27977], + [120.883487, 42.269585], + [120.883487, 42.269585], + [120.883487, 42.242565], + [120.8299, 42.252755], + [120.820661, 42.227943], + [120.79048, 42.218636], + [120.745516, 42.223512], + [120.72211, 42.203565], + [120.624792, 42.154338], + [120.58414, 42.167203], + [120.56751, 42.152119], + [120.466496, 42.105516], + [120.493597, 42.073539], + [120.450481, 42.057101], + [120.456641, 42.016208], + [120.399358, 41.984631], + [120.373489, 41.994862], + [120.309431, 41.951704], + [120.318054, 41.93746], + [120.271859, 41.925439], + [120.260156, 41.904062], + [120.290337, 41.897381], + [120.286641, 41.880005], + [120.251533, 41.884016], + [120.215808, 41.853265], + [120.188707, 41.848361], + [120.183164, 41.826513], + [120.127113, 41.77253], + [120.1382, 41.729221], + [120.096316, 41.697056], + [120.035954, 41.708226], + [120.024867, 41.737707], + [120.050737, 41.776101], + [120.041498, 41.818932], + [120.023019, 41.816701], + [119.989759, 41.899163], + [119.954034, 41.923212], + [119.950954, 41.974399], + [119.924469, 41.98908], + [119.921389, 42.014429], + [119.897368, 42.030879], + [119.87581, 42.077982], + [119.845629, 42.097079], + [119.837622, 42.135257], + [119.854868, 42.170308], + [119.841933, 42.215534], + [119.744615, 42.211545], + [119.679941, 42.240793], + [119.617115, 42.252755], + [119.609108, 42.276671], + [119.557985, 42.289068], + [119.557985, 42.289068], + [119.539507, 42.297922], + [119.571536, 42.335536], + [119.572152, 42.359421], + [119.540123, 42.363401], + [119.502551, 42.388159], + [119.482841, 42.347037], + [119.432949, 42.317396], + [119.34795, 42.300578], + [119.280197, 42.260728], + [119.274037, 42.239021], + [119.237697, 42.200905], + [119.277733, 42.185387], + [119.286972, 42.154781], + [119.30853, 42.147239], + [119.314689, 42.119723], + [119.352261, 42.118391], + [119.384906, 42.08953], + [119.375667, 42.023322], + [119.324544, 41.969505], + [119.323928, 41.937014], + [119.340559, 41.926774], + [119.323312, 41.889807], + [119.334399, 41.871539], + [119.312841, 41.80555], + [119.292515, 41.790827], + [119.317769, 41.764049], + [119.319001, 41.727435], + [119.299907, 41.705545], + [119.307914, 41.657273], + [119.342406, 41.617914], + [119.415703, 41.590169], + [119.420015, 41.567785], + [119.362116, 41.566442], + [119.361501, 41.545841], + [119.406464, 41.503276], + [119.401537, 41.472343], + [119.378131, 41.459787], + [119.376283, 41.422102], + [119.309762, 41.405944], + [119.330704, 41.385293], + [119.296211, 41.325097], + [119.239545, 41.31431], + [119.2494, 41.279689], + [119.209364, 41.244599], + [119.204436, 41.222546], + [119.169943, 41.222996], + [119.189038, 41.198234], + [119.126212, 41.138767], + [119.081248, 41.131555], + [119.080632, 41.095936], + [119.037516, 41.067516], + [118.964836, 41.079246], + [118.937118, 41.052625], + [118.951901, 41.018317], + [119.013495, 41.007479], + [119.00056, 40.967273], + [118.977154, 40.959138], + [118.977154, 40.959138], + [118.916792, 40.969984], + [118.90201, 40.960946], + [118.873061, 40.847866], + [118.845959, 40.822057], + [118.878604, 40.783098], + [118.907553, 40.775394], + [118.895234, 40.75409], + [118.950053, 40.747743], + [118.96114, 40.72008], + [119.011031, 40.687414], + [119.028277, 40.692406], + [119.054763, 40.664721], + [119.115125, 40.666536], + [119.165632, 40.69286], + [119.184726, 40.680153], + [119.14469, 40.632482], + [119.162552, 40.600228], + [119.177951, 40.609315], + [119.230921, 40.603863], + [119.22045, 40.569322], + [119.256175, 40.543404], + [119.30237, 40.530215], + [119.429254, 40.540221], + [119.477913, 40.533399], + [119.503783, 40.553864], + [119.559217, 40.547952], + [119.572152, 40.523846], + [119.553674, 40.502007], + [119.604797, 40.455119], + [119.586934, 40.375381], + [119.598021, 40.334335], + [119.651608, 40.271808], + [119.639289, 40.231613], + [119.639289, 40.231613], + [119.671934, 40.23938], + [119.716898, 40.195966], + [119.745847, 40.207851], + [119.760629, 40.136056], + [119.736608, 40.104936], + [119.772332, 40.08113], + [119.783419, 40.046778], + [119.783419, 40.046778], + [119.787115, 40.041739], + [119.787115, 40.041739], + [119.81668, 40.050443], + [119.81668, 40.050443], + [119.854252, 40.033033], + [119.845629, 40.000949], + [119.845629, 40.000949], + [119.854252, 39.98857], + [119.91831, 39.989946], + [119.941715, 40.009659], + [119.947259, 40.040364], + [120.092005, 40.077466], + [120.134504, 40.074719], + [120.161606, 40.096239], + [120.273091, 40.127362], + [120.371641, 40.174478], + [120.451097, 40.177679], + [120.491749, 40.20008], + [120.523778, 40.256737], + [120.52193, 40.304676], + [120.537329, 40.325211], + [120.602618, 40.36079], + [120.596459, 40.399084], + [120.617401, 40.41959], + [120.616169, 40.444645], + [120.619249, 40.460128], + [120.666676, 40.467413], + [120.693777, 40.505647], + [120.72211, 40.515657], + [120.72827, 40.539311], + [120.822509, 40.59432], + [120.837291, 40.644289], + [120.8299, 40.671076], + [120.861313, 40.684692], + [120.939537, 40.686507], + [120.983269, 40.712822], + [121.032544, 40.709193], + [121.028848, 40.746382], + [120.991276, 40.744115], + [120.980189, 40.766329], + [120.994356, 40.790801], + [120.971566, 40.805751], + [121.00729, 40.807563], + [121.010986, 40.784457], + [121.086747, 40.79805], + [121.076892, 40.815716], + [121.096602, 40.839717], + [121.126167, 40.86914], + [121.177906, 40.873665], + [121.23642, 40.851035], + [121.290622, 40.851488], + [121.439064, 40.830208], + [121.440296, 40.88181], + [121.499426, 40.880001], + [121.526527, 40.85194], + [121.55486, 40.849677], + [121.553013, 40.817528], + [121.576418, 40.837906], + [121.626309, 40.844244], + [121.682976, 40.829755], + [121.732251, 40.846961], + [121.735331, 40.862351], + [121.778446, 40.886787], + [121.816019, 40.894931], + [121.84312, 40.831567], + [121.883772, 40.802127], + [121.934279, 40.79805], + [121.936127, 40.711462], + [121.951525, 40.680607], + [122.025438, 40.674253], + [122.06609, 40.64883], + [122.122141, 40.657457], + [122.148626, 40.671983], + [122.133843, 40.614313], + [122.150474, 40.588413], + [122.245944, 40.519752], + [122.231162, 40.505192], + [122.265038, 40.48016], + [122.221923, 40.481071], + [122.240401, 40.461039], + [122.250872, 40.445555], + [122.229314, 40.424146], + [122.186814, 40.422779], + [122.198517, 40.382219], + [122.152322, 40.357597], + [122.135691, 40.374925], + [122.111054, 40.348932], + [122.138155, 40.338897], + [122.110438, 40.315629], + [122.079641, 40.332967], + [122.040221, 40.322017], + [122.039605, 40.260391], + [122.02667, 40.244862], + [121.940438, 40.242121], + [121.950293, 40.204194], + [121.98109, 40.173106], + [122.003264, 40.172191], + [121.995257, 40.128277], + [121.956453, 40.133311], + [121.910257, 40.072887], + [121.824642, 40.025701], + [121.796309, 39.999116], + [121.779062, 39.942702], + [121.76428, 39.933525], + [121.699606, 39.937196], + [121.626925, 39.882569], + [121.572107, 39.865116], + [121.541926, 39.874302], + [121.530223, 39.851334], + [121.472325, 39.802155], + [121.487107, 39.760303], + [121.45939, 39.747881], + [121.502506, 39.703233], + [121.482796, 39.659478], + [121.451999, 39.658095], + [121.450151, 39.624914], + [121.325731, 39.601402], + [121.299246, 39.606013], + [121.263521, 39.589873], + [121.226565, 39.554814], + [121.224717, 39.519275], + [121.268449, 39.482794], + [121.286927, 39.507271], + [121.301709, 39.476327], + [121.245659, 39.456923], + [121.270296, 39.434277], + [121.246891, 39.421334], + [121.245659, 39.389427], + [121.270296, 39.374162], + [121.307869, 39.391277], + [121.324499, 39.371386], + [121.35468, 39.377863], + [121.432904, 39.357506], + [121.435984, 39.329736], + [121.466781, 39.320014], + [121.474788, 39.296398], + [121.508665, 39.29223], + [121.51544, 39.286672], + [121.562252, 39.322792], + [121.621382, 39.326033], + [121.72486, 39.364447], + [121.711925, 39.33992], + [121.7187, 39.320477], + [121.667577, 39.310754], + [121.672505, 39.275554], + [121.623846, 39.285745], + [121.589353, 39.263044], + [121.631237, 39.22643], + [121.591201, 39.228748], + [121.586889, 39.193506], + [121.604136, 39.166136], + [121.639244, 39.166136], + [121.68236, 39.117863], + [121.631853, 39.077921], + [121.605983, 39.080708], + [121.642324, 39.11972], + [121.590585, 39.154999], + [121.562252, 39.127149], + [121.599208, 39.098824], + [121.581962, 39.075598], + [121.508049, 39.034237], + [121.431057, 39.027263], + [121.370695, 39.060264], + [121.317108, 39.012384], + [121.341129, 38.980757], + [121.275224, 38.971917], + [121.204391, 38.941202], + [121.180369, 38.959819], + [121.128014, 38.958888], + [121.08921, 38.922115], + [121.094138, 38.894173], + [121.129862, 38.879266], + [121.110768, 38.862026], + [121.12863, 38.799089], + [121.112, 38.776231], + [121.13787, 38.723023], + [121.198848, 38.721623], + [121.259825, 38.786495], + [121.280767, 38.786961], + [121.288775, 38.78976], + [121.315876, 38.793958], + [121.359608, 38.822406], + [121.399028, 38.812613], + [121.509897, 38.817743], + [121.564715, 38.874607], + [121.618302, 38.862492], + [121.675585, 38.86156], + [121.708845, 38.872744], + [121.719316, 38.920252], + [121.655874, 38.946788], + [121.618918, 38.950046], + [121.66265, 38.966333], + [121.671273, 39.010059], + [121.73841, 38.998898], + [121.756889, 39.025869], + [121.790149, 39.022614], + [121.804932, 38.970986], + [121.863446, 38.942598], + [121.920728, 38.969591], + [121.905946, 38.997503], + [121.852975, 39.035631], + [121.8887, 39.027263], + [121.929352, 39.024939], + [121.907178, 39.055617], + [121.923192, 39.053758], + [121.963228, 39.030053], + [122.013735, 39.073275], + [122.061778, 39.060264], + [122.071634, 39.074204], + [122.048228, 39.101146], + [122.088264, 39.112291], + [122.127684, 39.144788], + [122.167104, 39.158711], + [122.123988, 39.172631], + [122.117213, 39.213911], + [122.160329, 39.238019], + [122.242865, 39.267678], + [122.274893, 39.322329], + [122.30877, 39.346399], + [122.366053, 39.370461], + [122.412864, 39.411625], + [122.455364, 39.408388], + [122.467682, 39.403301], + [122.51203, 39.413474], + [122.532972, 39.419947], + [122.581631, 39.464316], + [122.637066, 39.488799], + [122.649385, 39.516505], + [122.682645, 39.514658], + [122.808913, 39.559889], + [122.847101, 39.581571], + [122.860652, 39.604629], + [122.941956, 39.604629], + [122.972753, 39.594946], + [122.978912, 39.616156], + [123.021412, 39.64335], + [123.010941, 39.655331], + [123.103332, 39.676983], + [123.146448, 39.647037], + [123.166774, 39.674219], + [123.212969, 39.665928], + [123.215433, 39.696786], + [123.253005, 39.689879], + [123.286882, 39.704154], + [123.270251, 39.714743], + [123.274563, 39.753862], + [123.350939, 39.750641], + [123.388512, 39.74742], + [123.392823, 39.723949], + [123.477823, 39.74696], + [123.521555, 39.772724], + [123.534489, 39.788361] + ] + ], + [ + [ + [122.63953, 39.286209], + [122.593334, 39.278334], + [122.539131, 39.308439], + [122.50895, 39.290377], + [122.57732, 39.269994], + [122.67895, 39.268605], + [122.673406, 39.269531], + [122.662935, 39.273701], + [122.655544, 39.277407], + [122.640761, 39.288061], + [122.63953, 39.286209] + ] + ], + [ + [ + [122.318625, 39.170775], + [122.345111, 39.144788], + [122.366053, 39.174951], + [122.398697, 39.16196], + [122.383299, 39.190723], + [122.393154, 39.213448], + [122.343263, 39.203246], + [122.322321, 39.177271], + [122.322937, 39.174487], + [122.319241, 39.172167], + [122.318625, 39.170775] + ] + ], + [ + [ + [122.691884, 39.23292], + [122.696812, 39.206492], + [122.751631, 39.229675], + [122.740544, 39.248679], + [122.635834, 39.241727], + [122.628443, 39.231993], + [122.690037, 39.234774], + [122.691268, 39.23431], + [122.691884, 39.23292] + ] + ], + [ + [ + [122.738696, 39.034701], + [122.704819, 39.044463], + [122.733152, 39.014244], + [122.75779, 39.009594], + [122.739312, 39.036561], + [122.738696, 39.034701] + ] + ], + [ + [ + [123.022644, 39.546507], + [122.96105, 39.551122], + [122.945035, 39.520198], + [122.995542, 39.495264], + [123.036194, 39.533123], + [123.022644, 39.546507] + ] + ], + [ + [ + [122.503407, 39.241263], + [122.502175, 39.224112], + [122.547755, 39.229211], + [122.503407, 39.241263] + ] + ], + [ + [ + [120.786784, 40.473787], + [120.83298, 40.491995], + [120.8299, 40.516112], + [120.805262, 40.525666], + [120.774465, 40.48016], + [120.786784, 40.473787] + ] + ], + [ + [ + [123.086702, 39.426881], + [123.090397, 39.450915], + [123.054057, 39.457847], + [123.086702, 39.426881] + ] + ], + [ + [ + [123.160614, 39.025404], + [123.205578, 39.057011], + [123.20065, 39.077921], + [123.145832, 39.091857], + [123.143984, 39.038885], + [123.160614, 39.025404] + ] + ], + [ + [ + [123.716807, 39.74512], + [123.756843, 39.754322], + [123.719887, 39.763063], + [123.716807, 39.74512] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 220000, + "name": "吉林省", + "center": [125.3245, 43.886841], + "centroid": [126.171208, 43.703954], + "childrenNum": 9, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 6, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [129.601492, 42.415116], + [129.601492, 42.422627], + [129.591021, 42.447803], + [129.627361, 42.462816], + [129.651999, 42.426603], + [129.704354, 42.427045], + [129.748701, 42.471204], + [129.738846, 42.500332], + [129.749933, 42.546644], + [129.746237, 42.58455], + [129.786889, 42.615387], + [129.754245, 42.645768], + [129.796744, 42.681854], + [129.767179, 42.707806], + [129.78381, 42.762752], + [129.810911, 42.795257], + [129.816454, 42.851003], + [129.835549, 42.866796], + [129.846636, 42.918533], + [129.874969, 42.923792], + [129.856491, 42.951833], + [129.868193, 42.97373], + [129.903918, 42.968475], + [129.897143, 43.001748], + [129.954425, 43.010938], + [129.963664, 42.978547], + [130.002468, 42.981174], + [130.027106, 42.9676], + [130.072685, 42.971541], + [130.10841, 42.989929], + [130.144134, 42.976357], + [130.120729, 42.954461], + [130.127504, 42.932556], + [130.10225, 42.922916], + [130.136127, 42.90363], + [130.17062, 42.912397], + [130.21004, 42.902315], + [130.258083, 42.90626], + [130.277793, 42.892232], + [130.258083, 42.860655], + [130.245148, 42.799209], + [130.242069, 42.738582], + [130.257467, 42.710884], + [130.290112, 42.702968], + [130.333228, 42.64973], + [130.373264, 42.630799], + [130.388046, 42.603054], + [130.420691, 42.617148], + [130.44656, 42.607459], + [130.423771, 42.574855], + [130.435474, 42.553257], + [130.476125, 42.570007], + [130.459495, 42.588075], + [130.482285, 42.626837], + [130.522937, 42.622433], + [130.520473, 42.593362], + [130.558661, 42.495919], + [130.585763, 42.485328], + [130.581451, 42.435437], + [130.645509, 42.426603], + [130.600545, 42.450453], + [130.599929, 42.486211], + [130.565437, 42.506509], + [130.570364, 42.557224], + [130.622719, 42.573092], + [130.633806, 42.603494], + [130.592538, 42.671295], + [130.521089, 42.702089], + [130.464423, 42.688453], + [130.425003, 42.706926], + [130.40714, 42.731548], + [130.46627, 42.772417], + [130.532792, 42.787352], + [130.562357, 42.815015], + [130.603625, 42.819405], + [130.665835, 42.847932], + [130.708335, 42.846615], + [130.719422, 42.831695], + [130.75453, 42.845738], + [130.784095, 42.842227], + [130.801957, 42.879515], + [130.845073, 42.881269], + [130.890653, 42.852758], + [130.912826, 42.870744], + [130.949783, 42.876884], + [130.981812, 42.857145], + [131.043406, 42.862848], + [131.017536, 42.915027], + [131.034167, 42.929051], + [131.114855, 42.915027], + [131.145652, 42.9365], + [131.151195, 42.968475], + [131.115471, 42.975482], + [131.11855, 43.007875], + [131.102536, 43.021002], + [131.120398, 43.068238], + [131.171521, 43.06955], + [131.173985, 43.111506], + [131.207861, 43.1316], + [131.218948, 43.191405], + [131.201086, 43.203185], + [131.206014, 43.237202], + [131.255289, 43.265099], + [131.269455, 43.297775], + [131.275615, 43.369165], + [131.314419, 43.392653], + [131.295941, 43.441774], + [131.314419, 43.461325], + [131.31873, 43.499539], + [131.304564, 43.502144], + [131.294093, 43.470012], + [131.234963, 43.475224], + [131.201086, 43.442209], + [131.175217, 43.444816], + [131.142572, 43.425695], + [131.026775, 43.508655], + [130.959638, 43.48608], + [130.907283, 43.434387], + [130.864167, 43.437863], + [130.841378, 43.454374], + [130.822899, 43.503446], + [130.776704, 43.52341], + [130.727429, 43.560284], + [130.671378, 43.565054], + [130.665835, 43.583698], + [130.623335, 43.589767], + [130.630726, 43.622268], + [130.57098, 43.626167], + [130.57098, 43.626167], + [130.501995, 43.636563], + [130.488444, 43.65605], + [130.437937, 43.646091], + [130.412684, 43.652586], + [130.394206, 43.703227], + [130.423155, 43.745179], + [130.382503, 43.777164], + [130.381887, 43.817768], + [130.362793, 43.844967], + [130.386198, 43.85403], + [130.368336, 43.894151], + [130.381887, 43.910106], + [130.338155, 43.963975], + [130.364025, 43.992399], + [130.365256, 44.044042], + [130.319061, 44.03974], + [130.307358, 44.002731], + [130.27225, 43.981634], + [130.262395, 43.949328], + [130.208192, 43.948466], + [130.153373, 43.915711], + [130.143518, 43.878624], + [130.116417, 43.878192], + [130.110873, 43.852735], + [130.079461, 43.835039], + [130.027722, 43.851872], + [130.009243, 43.889407], + [130.022794, 43.917866], + [130.017867, 43.961821], + [129.979062, 44.015644], + [129.951345, 44.027263], + [129.907614, 44.023821], + [129.881128, 44.000148], + [129.868193, 44.012631], + [129.802904, 43.964837], + [129.780114, 43.892857], + [129.739462, 43.895876], + [129.743158, 43.876035], + [129.699426, 43.8838], + [129.650767, 43.873016], + [129.529427, 43.870427], + [129.467833, 43.874741], + [129.449971, 43.850578], + [129.417942, 43.843672], + [129.406855, 43.819496], + [129.348341, 43.798333], + [129.30892, 43.812155], + [129.289826, 43.797038], + [129.254718, 43.819496], + [129.211602, 43.784509], + [129.232544, 43.709284], + [129.214066, 43.695006], + [129.217146, 43.648689], + [129.232544, 43.635263], + [129.23008, 43.593234], + [129.169102, 43.561585], + [129.145081, 43.570258], + [129.093958, 43.547706], + [129.037907, 43.540332], + [129.013886, 43.522976], + [128.962763, 43.53903], + [128.949828, 43.553779], + [128.878379, 43.539898], + [128.834647, 43.587599], + [128.821097, 43.637429], + [128.78722, 43.686784], + [128.768126, 43.732207], + [128.729322, 43.736964], + [128.760119, 43.755554], + [128.739177, 43.806972], + [128.719467, 43.816905], + [128.760734, 43.857482], + [128.729938, 43.889838], + [128.696061, 43.903207], + [128.636315, 43.891132], + [128.64001, 43.948035], + [128.610445, 43.960529], + [128.584576, 43.990246], + [128.574721, 44.047914], + [128.529141, 44.112401], + [128.471859, 44.157501], + [128.450301, 44.203423], + [128.471859, 44.247596], + [128.453997, 44.257884], + [128.472475, 44.320001], + [128.446605, 44.339694], + [128.475555, 44.346114], + [128.481714, 44.375637], + [128.457076, 44.409848], + [128.463236, 44.431647], + [128.427511, 44.473512], + [128.397946, 44.483761], + [128.372693, 44.514495], + [128.295084, 44.480772], + [128.293237, 44.467961], + [128.228563, 44.445748], + [128.211317, 44.431647], + [128.172512, 44.34697], + [128.137404, 44.357668], + [128.094904, 44.354673], + [128.074578, 44.370075], + [128.049941, 44.349965], + [128.065339, 44.307155], + [128.101679, 44.293449], + [128.064107, 44.251454], + [128.104143, 44.230017], + [128.09244, 44.181539], + [128.060411, 44.168663], + [128.088129, 44.158359], + [128.091208, 44.133022], + [128.042549, 44.103807], + [127.950158, 44.088334], + [127.912586, 44.064687], + [127.862695, 44.062967], + [127.846065, 44.081886], + [127.808492, 44.086615], + [127.783239, 44.071997], + [127.729036, 44.09908], + [127.735811, 44.11412], + [127.712406, 44.199133], + [127.681609, 44.166946], + [127.641573, 44.193555], + [127.626174, 44.187977], + [127.59045, 44.227872], + [127.623711, 44.278025], + [127.579363, 44.310581], + [127.486356, 44.410275], + [127.50853, 44.437202], + [127.463566, 44.484615], + [127.465414, 44.516628], + [127.485124, 44.528576], + [127.536247, 44.522176], + [127.570124, 44.55033], + [127.557189, 44.575488], + [127.392733, 44.632158], + [127.275705, 44.640249], + [127.261538, 44.61299], + [127.214111, 44.624917], + [127.228893, 44.642804], + [127.182082, 44.644507], + [127.138966, 44.607451], + [127.094619, 44.615972], + [127.089691, 44.593816], + [127.049655, 44.566961], + [127.041648, 44.591258], + [127.044112, 44.653874], + [127.030561, 44.673454], + [127.041032, 44.712169], + [126.9973, 44.764882], + [126.984366, 44.823914], + [126.999764, 44.87398], + [127.021938, 44.898997], + [127.073061, 44.907051], + [127.092771, 44.94688], + [127.050271, 45.004034], + [127.018242, 45.024341], + [126.984981, 45.067893], + [126.970815, 45.070852], + [126.96404, 45.132104], + [126.85625, 45.145613], + [126.792808, 45.135481], + [126.787265, 45.159118], + [126.732446, 45.187385], + [126.685635, 45.187807], + [126.640055, 45.214373], + [126.644983, 45.225334], + [126.569222, 45.252725], + [126.540273, 45.23882], + [126.519331, 45.248091], + [126.402919, 45.222805], + [126.356107, 45.185698], + [126.293282, 45.180214], + [126.285274, 45.162494], + [126.235383, 45.140125], + [126.225528, 45.154054], + [126.166398, 45.13337], + [126.142992, 45.147723], + [126.091869, 45.149411], + [126.047522, 45.170933], + [125.998247, 45.162072], + [125.992703, 45.192447], + [125.957595, 45.201303], + [125.915095, 45.196664], + [125.849805, 45.23882], + [125.823936, 45.237978], + [125.815929, 45.264942], + [125.761726, 45.291472], + [125.726001, 45.336503], + [125.695205, 45.352066], + [125.712451, 45.389485], + [125.711835, 45.477677], + [125.687813, 45.514173], + [125.660096, 45.507043], + [125.61698, 45.517947], + [125.583104, 45.491942], + [125.497488, 45.469283], + [125.480242, 45.486488], + [125.424807, 45.485649], + [125.434662, 45.462988], + [125.398322, 45.416797], + [125.361981, 45.392847], + [125.319482, 45.422678], + [125.301619, 45.402092], + [125.248649, 45.417637], + [125.189518, 45.39915], + [125.137779, 45.409655], + [125.097127, 45.38276], + [125.06633, 45.39915], + [125.08912, 45.420998], + [125.0497, 45.428558], + [125.025678, 45.493201], + [124.961005, 45.495299], + [124.936983, 45.53388], + [124.911114, 45.535976], + [124.884628, 45.495299], + [124.886476, 45.442836], + [124.839665, 45.455852], + [124.792853, 45.436958], + [124.776223, 45.468024], + [124.729412, 45.444096], + [124.690607, 45.452493], + [124.625318, 45.437377], + [124.575427, 45.451234], + [124.579738, 45.424358], + [124.544014, 45.411756], + [124.507058, 45.424778], + [124.480572, 45.456271], + [124.398652, 45.440737], + [124.374015, 45.45795], + [124.352457, 45.496557], + [124.369087, 45.512915], + [124.348761, 45.546874], + [124.287783, 45.539329], + [124.264377, 45.555256], + [124.273001, 45.584163], + [124.238508, 45.591702], + [124.226805, 45.633564], + [124.162132, 45.616404], + [124.128255, 45.641933], + [124.147349, 45.665359], + [124.122096, 45.669123], + [124.13503, 45.690448], + [124.10177, 45.700898], + [124.098074, 45.722628], + [124.054342, 45.751449], + [124.014922, 45.749779], + [124.001987, 45.770655], + [124.064197, 45.802372], + [124.03648, 45.83824], + [124.067277, 45.840325], + [124.061118, 45.886168], + [123.996444, 45.906993], + [123.968727, 45.936551], + [123.973654, 45.973997], + [124.011842, 45.981899], + [123.989053, 46.011833], + [124.040176, 46.01973], + [124.034016, 46.045074], + [124.009995, 46.057534], + [124.015538, 46.088257], + [123.99398, 46.101123], + [124.01677, 46.118549], + [123.991516, 46.143019], + [124.001987, 46.166649], + [123.971806, 46.170379], + [123.956408, 46.206009], + [123.979814, 46.228784], + [123.952096, 46.256516], + [123.960103, 46.288369], + [123.936082, 46.286715], + [123.917604, 46.25693], + [123.896046, 46.303668], + [123.84985, 46.302428], + [123.775938, 46.263136], + [123.726047, 46.255688], + [123.673692, 46.258585], + [123.604706, 46.251964], + [123.569598, 46.223816], + [123.569598, 46.223816], + [123.499381, 46.259826], + [123.452569, 46.233338], + [123.430396, 46.243687], + [123.357099, 46.232096], + [123.357099, 46.232096], + [123.320758, 46.254447], + [123.286266, 46.250308], + [123.248078, 46.273065], + [123.178476, 46.248239], + [123.128585, 46.210565], + [123.127354, 46.174523], + [123.102716, 46.172037], + [123.112571, 46.130163], + [123.070071, 46.123527], + [123.04605, 46.099878], + [122.792898, 46.073313], + [122.828623, 45.912406], + [122.80029, 45.856583], + [122.772572, 45.856583], + [122.752246, 45.834905], + [122.792283, 45.766063], + [122.751015, 45.735996], + [122.741775, 45.705077], + [122.671558, 45.70048], + [122.650001, 45.731401], + [122.640761, 45.771072], + [122.603189, 45.778169], + [122.556378, 45.82156], + [122.522501, 45.786933], + [122.504639, 45.786933], + [122.496016, 45.85825], + [122.446125, 45.916986], + [122.362357, 45.917403], + [122.372828, 45.856166], + [122.337719, 45.859917], + [122.301379, 45.813218], + [122.253952, 45.7982], + [122.236705, 45.831569], + [122.200981, 45.857], + [122.091344, 45.882002], + [122.085184, 45.912406], + [122.040221, 45.959022], + [121.92812, 45.988552], + [121.923808, 46.004767], + [121.864062, 46.002272], + [121.843736, 46.024301], + [121.819098, 46.023054], + [121.761816, 45.998947], + [121.809243, 45.961102], + [121.821562, 45.918235], + [121.805548, 45.900746], + [121.817251, 45.875336], + [121.769823, 45.84366], + [121.766744, 45.830318], + [121.766744, 45.830318], + [121.754425, 45.794862], + [121.697142, 45.76314], + [121.657106, 45.770238], + [121.644172, 45.752284], + [121.666345, 45.727641], + [121.713773, 45.701734], + [121.811091, 45.687103], + [121.812323, 45.704659], + [121.867142, 45.719703], + [121.934279, 45.71051], + [121.970004, 45.692956], + [122.003264, 45.623102], + [121.995873, 45.59882], + [121.966308, 45.596308], + [121.993409, 45.552741], + [122.002648, 45.507882], + [122.064242, 45.472641], + [122.168336, 45.439897], + [122.180039, 45.409655], + [122.146778, 45.374352], + [122.147394, 45.295682], + [122.239169, 45.276313], + [122.22993, 45.206784], + [122.192358, 45.180636], + [122.143082, 45.183167], + [122.109822, 45.142236], + [122.119677, 45.068739], + [122.098735, 45.02138], + [122.074713, 45.006573], + [122.087032, 44.95281], + [122.079025, 44.914256], + [122.04946, 44.912985], + [122.098119, 44.81882], + [122.099967, 44.7823], + [122.168952, 44.770405], + [122.142467, 44.753833], + [122.110438, 44.767856], + [122.10243, 44.736406], + [122.152322, 44.744057], + [122.161561, 44.728328], + [122.117213, 44.701961], + [122.103046, 44.67388], + [122.113517, 44.615546], + [122.13138, 44.577619], + [122.196053, 44.559712], + [122.224386, 44.526016], + [122.228082, 44.480345], + [122.28598, 44.477783], + [122.294604, 44.41113], + [122.291524, 44.310152], + [122.271198, 44.255741], + [122.319241, 44.233018], + [122.483081, 44.236877], + [122.515726, 44.251025], + [122.641993, 44.283595], + [122.675254, 44.285738], + [122.702971, 44.319145], + [122.76087, 44.369648], + [122.85634, 44.398304], + [123.025108, 44.493153], + [123.06576, 44.505959], + [123.12489, 44.5098], + [123.137209, 44.486322], + [123.125506, 44.455147], + [123.142136, 44.428228], + [123.114419, 44.40258], + [123.128585, 44.367081], + [123.196955, 44.34483], + [123.277027, 44.25274], + [123.286882, 44.211574], + [123.323838, 44.179823], + [123.386664, 44.161794], + [123.362642, 44.133452], + [123.350939, 44.092633], + [123.32815, 44.084035], + [123.331229, 44.028984], + [123.365722, 44.013922], + [123.400831, 43.979481], + [123.37065, 43.970006], + [123.397135, 43.954929], + [123.467968, 43.853599], + [123.461809, 43.822518], + [123.498149, 43.771114], + [123.48275, 43.737396], + [123.520323, 43.708419], + [123.518475, 43.682024], + [123.536953, 43.633964], + [123.510468, 43.624867], + [123.5117, 43.592801], + [123.421157, 43.598435], + [123.434091, 43.575461], + [123.461193, 43.568523], + [123.452569, 43.545971], + [123.452569, 43.545971], + [123.360179, 43.567223], + [123.304744, 43.550742], + [123.329998, 43.519071], + [123.315831, 43.492159], + [123.36449, 43.483475], + [123.382968, 43.469143], + [123.419925, 43.410046], + [123.442098, 43.437863], + [123.486446, 43.44525], + [123.519707, 43.402219], + [123.54496, 43.415262], + [123.608402, 43.366119], + [123.703873, 43.37047], + [123.710032, 43.417001], + [123.749452, 43.439167], + [123.747604, 43.472184], + [123.79688, 43.489988], + [123.857858, 43.459153], + [123.857858, 43.459153], + [123.852314, 43.406133], + [123.881263, 43.392218], + [123.881263, 43.392218], + [123.896046, 43.361333], + [123.964415, 43.34088], + [124.032784, 43.280786], + [124.099306, 43.292983], + [124.117168, 43.2773], + [124.114088, 43.247229], + [124.168291, 43.244177], + [124.215102, 43.255947], + [124.228653, 43.235022], + [124.27608, 43.233278], + [124.287167, 43.207983], + [124.273617, 43.17875], + [124.366007, 43.121554], + [124.425754, 43.076107], + [124.333363, 42.997371], + [124.369703, 42.972854], + [124.42329, 42.975482], + [124.442384, 42.958841], + [124.431913, 42.930803], + [124.38079, 42.912835], + [124.371551, 42.880831], + [124.435609, 42.880831], + [124.466406, 42.847054], + [124.586514, 42.905384], + [124.607456, 42.937376], + [124.632093, 42.949642], + [124.635173, 42.972854], + [124.658579, 42.972854], + [124.677673, 43.002185], + [124.686912, 43.051185], + [124.719557, 43.069987], + [124.755281, 43.074359], + [124.785462, 43.117185], + [124.882781, 43.13422], + [124.88894, 43.074796], + [124.840897, 43.032377], + [124.869846, 42.988178], + [124.87231, 42.962344], + [124.84952, 42.882585], + [124.856911, 42.824234], + [124.874157, 42.789987], + [124.897563, 42.787791], + [124.92836, 42.819844], + [124.975171, 42.802722], + [124.996729, 42.745174], + [124.968396, 42.722756], + [124.99057, 42.677455], + [125.014592, 42.666014], + [125.010896, 42.63212], + [125.038613, 42.615387], + [125.097127, 42.622433], + [125.082961, 42.591159], + [125.089736, 42.567803], + [125.066946, 42.534738], + [125.090968, 42.515773], + [125.068794, 42.499449], + [125.105135, 42.490624], + [125.150098, 42.458842], + [125.140243, 42.44692], + [125.186439, 42.427928], + [125.185823, 42.38197], + [125.203685, 42.366938], + [125.167345, 42.351903], + [125.175352, 42.308102], + [125.224011, 42.30102], + [125.264047, 42.312528], + [125.299156, 42.289953], + [125.27575, 42.266928], + [125.27575, 42.231045], + [125.312706, 42.219966], + [125.280677, 42.175187], + [125.312706, 42.197359], + [125.305931, 42.146351], + [125.357054, 42.145464], + [125.368141, 42.182726], + [125.41372, 42.156112], + [125.458068, 42.160105], + [125.458068, 42.160105], + [125.490097, 42.136145], + [125.446365, 42.098411], + [125.414336, 42.101964], + [125.416184, 42.063766], + [125.363213, 42.017097], + [125.369989, 42.002868], + [125.29854, 41.974399], + [125.291764, 41.958825], + [125.35151, 41.92811], + [125.307779, 41.924548], + [125.294844, 41.822945], + [125.319482, 41.776993], + [125.319482, 41.776993], + [125.323177, 41.771191], + [125.323177, 41.771191], + [125.336112, 41.768067], + [125.336112, 41.768067], + [125.332416, 41.711354], + [125.317018, 41.676944], + [125.344119, 41.672474], + [125.412488, 41.691246], + [125.446981, 41.67605], + [125.461148, 41.642516], + [125.450061, 41.597777], + [125.479626, 41.544946], + [125.507343, 41.534195], + [125.493176, 41.509103], + [125.533212, 41.479069], + [125.534444, 41.428833], + [125.547995, 41.401006], + [125.581256, 41.396517], + [125.589879, 41.359245], + [125.610205, 41.365084], + [125.637306, 41.34442], + [125.62006, 41.318355], + [125.642234, 41.296327], + [125.646545, 41.264396], + [125.685349, 41.273842], + [125.695205, 41.244599], + [125.749407, 41.245499], + [125.758646, 41.232449], + [125.73832, 41.178418], + [125.791291, 41.167607], + [125.759878, 41.132908], + [125.734009, 41.125695], + [125.712451, 41.095485], + [125.739552, 41.08917], + [125.726617, 41.055332], + [125.684118, 41.021929], + [125.674879, 40.974503], + [125.650241, 40.970888], + [125.635458, 40.94151], + [125.589263, 40.931112], + [125.584335, 40.891764], + [125.652089, 40.91619], + [125.687813, 40.897645], + [125.707523, 40.866877], + [125.778356, 40.897645], + [125.817161, 40.866877], + [125.860892, 40.888597], + [125.875059, 40.908501], + [125.921254, 40.882715], + [125.959442, 40.88181], + [126.008102, 40.936537], + [126.041362, 40.928851], + [126.051833, 40.96185], + [126.08263, 40.976762], + [126.066, 40.997542], + [126.1085, 41.011995], + [126.099877, 41.036376], + [126.133753, 41.063906], + [126.124514, 41.092327], + [126.16763, 41.094583], + [126.187956, 41.113072], + [126.188572, 41.114875], + [126.295129, 41.171661], + [126.332086, 41.236949], + [126.35426, 41.244599], + [126.373354, 41.289133], + [126.437411, 41.353405], + [126.497158, 41.374965], + [126.524259, 41.349362], + [126.539041, 41.366881], + [126.497158, 41.406842], + [126.559983, 41.548081], + [126.582773, 41.563307], + [126.564295, 41.608965], + [126.592628, 41.624624], + [126.608027, 41.669345], + [126.644983, 41.661297], + [126.688099, 41.674262], + [126.724439, 41.710907], + [126.690562, 41.728328], + [126.694874, 41.751103], + [126.723207, 41.753335], + [126.8002, 41.702865], + [126.809439, 41.749317], + [126.848243, 41.734134], + [126.85625, 41.760031], + [126.887047, 41.791719], + [126.931395, 41.812687], + [126.952953, 41.804212], + [126.940018, 41.773423], + [126.979438, 41.776993], + [127.005923, 41.749317], + [127.050887, 41.744852], + [127.057662, 41.703758], + [127.037952, 41.676944], + [127.103242, 41.647883], + [127.093387, 41.629993], + [127.127263, 41.622388], + [127.135887, 41.600463], + [127.178386, 41.600015], + [127.125416, 41.566442], + [127.11864, 41.540018], + [127.164836, 41.542706], + [127.188241, 41.527475], + [127.241212, 41.520754], + [127.28864, 41.501932], + [127.253531, 41.486691], + [127.296031, 41.486243], + [127.360704, 41.466065], + [127.360088, 41.479518], + [127.405668, 41.478621], + [127.419835, 41.460235], + [127.459255, 41.461581], + [127.465414, 41.479069], + [127.526392, 41.467859], + [127.547334, 41.477276], + [127.563964, 41.432871], + [127.618783, 41.432871], + [127.636645, 41.413575], + [127.684073, 41.422999], + [127.780159, 41.427038], + [127.854688, 41.420755], + [127.86947, 41.4037], + [127.882405, 41.448124], + [127.909506, 41.42973], + [127.93168, 41.444984], + [127.970484, 41.438704], + [127.991426, 41.421204], + [128.000049, 41.442741], + [128.040085, 41.393375], + [128.110919, 41.393375], + [128.090593, 41.374516], + [128.114614, 41.364186], + [128.169433, 41.404149], + [128.203925, 41.410882], + [128.243345, 41.477276], + [128.238418, 41.497898], + [128.301244, 41.540018], + [128.317874, 41.575844], + [128.30186, 41.627756], + [128.248889, 41.681414], + [128.208853, 41.688565], + [128.163889, 41.721628], + [128.147875, 41.78101], + [128.112766, 41.793504], + [128.104143, 41.843457], + [128.115846, 41.896935], + [128.106607, 41.949923], + [128.033926, 42.000199], + [128.090593, 42.022877], + [128.294468, 42.026434], + [128.405338, 42.018876], + [128.466316, 42.020654], + [128.49896, 42.000644], + [128.598127, 42.007315], + [128.60675, 42.02999], + [128.637547, 42.035324], + [128.658489, 42.018876], + [128.70222, 42.02021], + [128.737945, 42.050435], + [128.779213, 42.033546], + [128.795227, 42.042436], + [128.898089, 42.016653], + [128.952908, 42.025545], + [128.954755, 42.083756], + [128.971386, 42.097079], + [129.008958, 42.09175], + [129.039139, 42.107736], + [129.048378, 42.137476], + [129.113668, 42.140583], + [129.166639, 42.188047], + [129.215914, 42.208442], + [129.209138, 42.237692], + [129.181421, 42.242122], + [129.183269, 42.262056], + [129.215914, 42.265157], + [129.231312, 42.283755], + [129.208522, 42.293052], + [129.260261, 42.335536], + [129.231312, 42.356325], + [129.240551, 42.376223], + [129.326167, 42.389927], + [129.30892, 42.403628], + [129.331094, 42.429695], + [129.356348, 42.427045], + [129.342181, 42.441179], + [129.368051, 42.459284], + [129.366203, 42.428811], + [129.392688, 42.42837], + [129.400695, 42.449128], + [129.452434, 42.441179], + [129.49863, 42.412023], + [129.546057, 42.361632], + [129.578086, 42.380202], + [129.569463, 42.399208], + [129.601492, 42.415116] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 230000, + "name": "黑龙江省", + "center": [126.642464, 45.756967], + "centroid": [127.693027, 48.040465], + "childrenNum": 13, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 7, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [123.569598, 46.223816], + [123.604706, 46.251964], + [123.673692, 46.258585], + [123.726047, 46.255688], + [123.775938, 46.263136], + [123.84985, 46.302428], + [123.896046, 46.303668], + [123.917604, 46.25693], + [123.936082, 46.286715], + [123.960103, 46.288369], + [123.952096, 46.256516], + [123.979814, 46.228784], + [123.956408, 46.206009], + [123.971806, 46.170379], + [124.001987, 46.166649], + [123.991516, 46.143019], + [124.01677, 46.118549], + [123.99398, 46.101123], + [124.015538, 46.088257], + [124.009995, 46.057534], + [124.034016, 46.045074], + [124.040176, 46.01973], + [123.989053, 46.011833], + [124.011842, 45.981899], + [123.973654, 45.973997], + [123.968727, 45.936551], + [123.996444, 45.906993], + [124.061118, 45.886168], + [124.067277, 45.840325], + [124.03648, 45.83824], + [124.064197, 45.802372], + [124.001987, 45.770655], + [124.014922, 45.749779], + [124.054342, 45.751449], + [124.098074, 45.722628], + [124.10177, 45.700898], + [124.13503, 45.690448], + [124.122096, 45.669123], + [124.147349, 45.665359], + [124.128255, 45.641933], + [124.162132, 45.616404], + [124.226805, 45.633564], + [124.238508, 45.591702], + [124.273001, 45.584163], + [124.264377, 45.555256], + [124.287783, 45.539329], + [124.348761, 45.546874], + [124.369087, 45.512915], + [124.352457, 45.496557], + [124.374015, 45.45795], + [124.398652, 45.440737], + [124.480572, 45.456271], + [124.507058, 45.424778], + [124.544014, 45.411756], + [124.579738, 45.424358], + [124.575427, 45.451234], + [124.625318, 45.437377], + [124.690607, 45.452493], + [124.729412, 45.444096], + [124.776223, 45.468024], + [124.792853, 45.436958], + [124.839665, 45.455852], + [124.886476, 45.442836], + [124.884628, 45.495299], + [124.911114, 45.535976], + [124.936983, 45.53388], + [124.961005, 45.495299], + [125.025678, 45.493201], + [125.0497, 45.428558], + [125.08912, 45.420998], + [125.06633, 45.39915], + [125.097127, 45.38276], + [125.137779, 45.409655], + [125.189518, 45.39915], + [125.248649, 45.417637], + [125.301619, 45.402092], + [125.319482, 45.422678], + [125.361981, 45.392847], + [125.398322, 45.416797], + [125.434662, 45.462988], + [125.424807, 45.485649], + [125.480242, 45.486488], + [125.497488, 45.469283], + [125.583104, 45.491942], + [125.61698, 45.517947], + [125.660096, 45.507043], + [125.687813, 45.514173], + [125.711835, 45.477677], + [125.712451, 45.389485], + [125.695205, 45.352066], + [125.726001, 45.336503], + [125.761726, 45.291472], + [125.815929, 45.264942], + [125.823936, 45.237978], + [125.849805, 45.23882], + [125.915095, 45.196664], + [125.957595, 45.201303], + [125.992703, 45.192447], + [125.998247, 45.162072], + [126.047522, 45.170933], + [126.091869, 45.149411], + [126.142992, 45.147723], + [126.166398, 45.13337], + [126.225528, 45.154054], + [126.235383, 45.140125], + [126.285274, 45.162494], + [126.293282, 45.180214], + [126.356107, 45.185698], + [126.402919, 45.222805], + [126.519331, 45.248091], + [126.540273, 45.23882], + [126.569222, 45.252725], + [126.644983, 45.225334], + [126.640055, 45.214373], + [126.685635, 45.187807], + [126.732446, 45.187385], + [126.787265, 45.159118], + [126.792808, 45.135481], + [126.85625, 45.145613], + [126.96404, 45.132104], + [126.970815, 45.070852], + [126.984981, 45.067893], + [127.018242, 45.024341], + [127.050271, 45.004034], + [127.092771, 44.94688], + [127.073061, 44.907051], + [127.021938, 44.898997], + [126.999764, 44.87398], + [126.984366, 44.823914], + [126.9973, 44.764882], + [127.041032, 44.712169], + [127.030561, 44.673454], + [127.044112, 44.653874], + [127.041648, 44.591258], + [127.049655, 44.566961], + [127.089691, 44.593816], + [127.094619, 44.615972], + [127.138966, 44.607451], + [127.182082, 44.644507], + [127.228893, 44.642804], + [127.214111, 44.624917], + [127.261538, 44.61299], + [127.275705, 44.640249], + [127.392733, 44.632158], + [127.557189, 44.575488], + [127.570124, 44.55033], + [127.536247, 44.522176], + [127.485124, 44.528576], + [127.465414, 44.516628], + [127.463566, 44.484615], + [127.50853, 44.437202], + [127.486356, 44.410275], + [127.579363, 44.310581], + [127.623711, 44.278025], + [127.59045, 44.227872], + [127.626174, 44.187977], + [127.641573, 44.193555], + [127.681609, 44.166946], + [127.712406, 44.199133], + [127.735811, 44.11412], + [127.729036, 44.09908], + [127.783239, 44.071997], + [127.808492, 44.086615], + [127.846065, 44.081886], + [127.862695, 44.062967], + [127.912586, 44.064687], + [127.950158, 44.088334], + [128.042549, 44.103807], + [128.091208, 44.133022], + [128.088129, 44.158359], + [128.060411, 44.168663], + [128.09244, 44.181539], + [128.104143, 44.230017], + [128.064107, 44.251454], + [128.101679, 44.293449], + [128.065339, 44.307155], + [128.049941, 44.349965], + [128.074578, 44.370075], + [128.094904, 44.354673], + [128.137404, 44.357668], + [128.172512, 44.34697], + [128.211317, 44.431647], + [128.228563, 44.445748], + [128.293237, 44.467961], + [128.295084, 44.480772], + [128.372693, 44.514495], + [128.397946, 44.483761], + [128.427511, 44.473512], + [128.463236, 44.431647], + [128.457076, 44.409848], + [128.481714, 44.375637], + [128.475555, 44.346114], + [128.446605, 44.339694], + [128.472475, 44.320001], + [128.453997, 44.257884], + [128.471859, 44.247596], + [128.450301, 44.203423], + [128.471859, 44.157501], + [128.529141, 44.112401], + [128.574721, 44.047914], + [128.584576, 43.990246], + [128.610445, 43.960529], + [128.64001, 43.948035], + [128.636315, 43.891132], + [128.696061, 43.903207], + [128.729938, 43.889838], + [128.760734, 43.857482], + [128.719467, 43.816905], + [128.739177, 43.806972], + [128.760119, 43.755554], + [128.729322, 43.736964], + [128.768126, 43.732207], + [128.78722, 43.686784], + [128.821097, 43.637429], + [128.834647, 43.587599], + [128.878379, 43.539898], + [128.949828, 43.553779], + [128.962763, 43.53903], + [129.013886, 43.522976], + [129.037907, 43.540332], + [129.093958, 43.547706], + [129.145081, 43.570258], + [129.169102, 43.561585], + [129.23008, 43.593234], + [129.232544, 43.635263], + [129.217146, 43.648689], + [129.214066, 43.695006], + [129.232544, 43.709284], + [129.211602, 43.784509], + [129.254718, 43.819496], + [129.289826, 43.797038], + [129.30892, 43.812155], + [129.348341, 43.798333], + [129.406855, 43.819496], + [129.417942, 43.843672], + [129.449971, 43.850578], + [129.467833, 43.874741], + [129.529427, 43.870427], + [129.650767, 43.873016], + [129.699426, 43.8838], + [129.743158, 43.876035], + [129.739462, 43.895876], + [129.780114, 43.892857], + [129.802904, 43.964837], + [129.868193, 44.012631], + [129.881128, 44.000148], + [129.907614, 44.023821], + [129.951345, 44.027263], + [129.979062, 44.015644], + [130.017867, 43.961821], + [130.022794, 43.917866], + [130.009243, 43.889407], + [130.027722, 43.851872], + [130.079461, 43.835039], + [130.110873, 43.852735], + [130.116417, 43.878192], + [130.143518, 43.878624], + [130.153373, 43.915711], + [130.208192, 43.948466], + [130.262395, 43.949328], + [130.27225, 43.981634], + [130.307358, 44.002731], + [130.319061, 44.03974], + [130.365256, 44.044042], + [130.364025, 43.992399], + [130.338155, 43.963975], + [130.381887, 43.910106], + [130.368336, 43.894151], + [130.386198, 43.85403], + [130.362793, 43.844967], + [130.381887, 43.817768], + [130.382503, 43.777164], + [130.423155, 43.745179], + [130.394206, 43.703227], + [130.412684, 43.652586], + [130.437937, 43.646091], + [130.488444, 43.65605], + [130.501995, 43.636563], + [130.57098, 43.626167], + [130.57098, 43.626167], + [130.630726, 43.622268], + [130.623335, 43.589767], + [130.665835, 43.583698], + [130.671378, 43.565054], + [130.727429, 43.560284], + [130.776704, 43.52341], + [130.822899, 43.503446], + [130.841378, 43.454374], + [130.864167, 43.437863], + [130.907283, 43.434387], + [130.959638, 43.48608], + [131.026775, 43.508655], + [131.142572, 43.425695], + [131.175217, 43.444816], + [131.201086, 43.442209], + [131.234963, 43.475224], + [131.294093, 43.470012], + [131.304564, 43.502144], + [131.276847, 43.495632], + [131.20047, 43.532089], + [131.222028, 43.593234], + [131.216485, 43.613169], + [131.239274, 43.670337], + [131.221412, 43.682024], + [131.215869, 43.72745], + [131.232499, 43.742585], + [131.213405, 43.801357], + [131.2171, 43.836334], + [131.254057, 43.893289], + [131.26268, 43.948897], + [131.245434, 43.95579], + [131.26576, 44.034578], + [131.28239, 44.035868], + [131.287318, 44.03802], + [131.293477, 44.043182], + [131.310723, 44.046623], + [131.111775, 44.710042], + [131.090833, 44.717272], + [131.093297, 44.746183], + [131.069275, 44.759783], + [131.064348, 44.786973], + [131.016304, 44.789521], + [131.015688, 44.814999], + [130.972573, 44.820094], + [130.965181, 44.85065], + [131.07913, 44.881614], + [131.10192, 44.898997], + [131.090217, 44.924427], + [131.16105, 44.948151], + [131.20355, 44.932901], + [131.207861, 44.913833], + [131.263296, 44.929935], + [131.274999, 44.919766], + [131.313803, 44.950692], + [131.313803, 44.965938], + [131.355071, 44.990068], + [131.380324, 44.978216], + [131.409889, 44.985836], + [131.464708, 44.963397], + [131.501664, 44.977793], + [131.484418, 44.99557], + [131.529382, 45.012073], + [131.566338, 45.045487], + [131.63286, 45.075078], + [131.695685, 45.132104], + [131.687678, 45.1511], + [131.650722, 45.159962], + [131.681519, 45.215217], + [131.721555, 45.234606], + [131.759127, 45.213952], + [131.79362, 45.211844], + [131.788692, 45.245984], + [131.825649, 45.291472], + [131.82996, 45.311677], + [131.887858, 45.342393], + [131.917423, 45.339448], + [131.93159, 45.287683], + [131.976554, 45.277156], + [132.003655, 45.25441], + [132.17427, 45.216903], + [132.394161, 45.16376], + [132.76434, 45.081417], + [132.867202, 45.061976], + [132.916477, 45.031109], + [132.954049, 45.023072], + [132.98731, 45.043373], + [133.035969, 45.054366], + [133.070462, 45.097051], + [133.089556, 45.097473], + [133.107418, 45.124504], + [133.139447, 45.127459], + [133.129592, 45.211422], + [133.095715, 45.246827], + [133.110498, 45.266627], + [133.097563, 45.284735], + [133.128976, 45.336924], + [133.119121, 45.352908], + [133.144991, 45.367205], + [133.143759, 45.430658], + [133.164701, 45.437377], + [133.170244, 45.465506], + [133.203505, 45.516689], + [133.246005, 45.517528], + [133.333468, 45.562379], + [133.342707, 45.554836], + [133.393214, 45.580393], + [133.423395, 45.584163], + [133.412924, 45.618079], + [133.471438, 45.631053], + [133.448649, 45.647372], + [133.485605, 45.658667], + [133.484989, 45.691702], + [133.445569, 45.705077], + [133.454192, 45.731819], + [133.486837, 45.740173], + [133.469591, 45.777751], + [133.505315, 45.785681], + [133.469591, 45.799451], + [133.467743, 45.834905], + [133.494228, 45.840325], + [133.491764, 45.867002], + [133.51209, 45.887001], + [133.55459, 45.893249], + [133.583539, 45.868669], + [133.618032, 45.903662], + [133.614952, 45.942794], + [133.676546, 45.94321], + [133.681474, 45.986473], + [133.740604, 46.048812], + [133.745531, 46.075389], + [133.690713, 46.133896], + [133.706111, 46.163333], + [133.764626, 46.17328], + [133.794807, 46.193583], + [133.814517, 46.230854], + [133.849625, 46.203939], + [133.87919, 46.233752], + [133.867487, 46.250722], + [133.909987, 46.254447], + [133.91861, 46.280924], + [133.908139, 46.308216], + [133.922922, 46.330948], + [133.869335, 46.338386], + [133.876726, 46.362345], + [133.940784, 46.38134], + [133.948791, 46.401153], + [133.902596, 46.446119], + [133.852089, 46.450242], + [133.849625, 46.475389], + [133.890893, 46.525235], + [133.919842, 46.596012], + [134.011001, 46.637941], + [134.030711, 46.708981], + [134.033175, 46.759023], + [134.052885, 46.779928], + [134.025168, 46.810657], + [134.041182, 46.848326], + [134.042414, 46.886787], + [134.076291, 46.938298], + [134.063972, 46.979962], + [134.10216, 47.005678], + [134.118175, 47.061968], + [134.142812, 47.093349], + [134.222268, 47.105164], + [134.232739, 47.134892], + [134.230276, 47.182097], + [134.210566, 47.210155], + [134.156979, 47.248357], + [134.177305, 47.326299], + [134.203174, 47.347389], + [134.263536, 47.371307], + [134.266616, 47.391974], + [134.307268, 47.428829], + [134.339297, 47.439759], + [134.490202, 47.446235], + [134.522847, 47.468086], + [134.568426, 47.478199], + [134.576434, 47.519036], + [134.627556, 47.546512], + [134.678064, 47.588507], + [134.689766, 47.63813], + [134.779694, 47.7159], + [134.772918, 47.763391], + [134.678679, 47.819278], + [134.670056, 47.864667], + [134.677448, 47.884738], + [134.658969, 47.901191], + [134.607846, 47.909214], + [134.599839, 47.947711], + [134.55426, 47.982173], + [134.551796, 48.032622], + [134.632484, 48.099412], + [134.67252, 48.170505], + [134.679295, 48.256245], + [134.77107, 48.288908], + [134.864077, 48.332293], + [135.009439, 48.365703], + [135.090743, 48.403461], + [135.09567, 48.437618], + [135.068569, 48.459451], + [135.035924, 48.440795], + [134.996504, 48.439603], + [134.927519, 48.451513], + [134.886867, 48.437618], + [134.848679, 48.393925], + [134.820961, 48.37604], + [134.764295, 48.370076], + [134.704549, 48.405448], + [134.640491, 48.409818], + [134.578281, 48.405448], + [134.501905, 48.418954], + [134.438463, 48.405448], + [134.369478, 48.382797], + [134.20379, 48.3824], + [134.150819, 48.346217], + [134.116327, 48.333089], + [134.0689, 48.338659], + [134.029479, 48.327519], + [133.995603, 48.303639], + [133.940784, 48.302047], + [133.876111, 48.282536], + [133.824372, 48.277359], + [133.791111, 48.261026], + [133.740604, 48.254651], + [133.693177, 48.186866], + [133.667307, 48.183275], + [133.59709, 48.194846], + [133.573068, 48.182078], + [133.545967, 48.121389], + [133.451728, 48.112999], + [133.407997, 48.124585], + [133.302055, 48.103009], + [133.239845, 48.126583], + [133.182563, 48.135769], + [133.130208, 48.134971], + [133.053216, 48.110202], + [133.02673, 48.085421], + [133.016259, 48.054228], + [132.992238, 48.035424], + [132.883216, 48.002599], + [132.819159, 47.936887], + [132.769268, 47.93849], + [132.723072, 47.962941], + [132.691043, 47.962941], + [132.661478, 47.944905], + [132.662094, 47.922451], + [132.687348, 47.88514], + [132.662094, 47.854227], + [132.621442, 47.82852], + [132.599268, 47.792347], + [132.6005, 47.740858], + [132.558, 47.718316], + [132.469305, 47.726368], + [132.371987, 47.765402], + [132.325175, 47.762184], + [132.288835, 47.742065], + [132.272205, 47.718718], + [132.242639, 47.70986], + [132.19706, 47.714289], + [132.157024, 47.70543], + [132.086191, 47.703013], + [132.000575, 47.712276], + [131.976554, 47.673201], + [131.900793, 47.685692], + [131.825649, 47.677231], + [131.741881, 47.706638], + [131.690142, 47.707041], + [131.641483, 47.663932], + [131.59036, 47.660707], + [131.568186, 47.682469], + [131.559563, 47.724757], + [131.543548, 47.736028], + [131.456085, 47.747297], + [131.359998, 47.730796], + [131.273767, 47.738846], + [131.236811, 47.733211], + [131.183224, 47.702611], + [131.115471, 47.689721], + [131.029855, 47.694555], + [130.983659, 47.713081], + [130.966413, 47.733211], + [130.961486, 47.828118], + [130.891269, 47.927263], + [130.870943, 47.943301], + [130.770544, 47.998194], + [130.737284, 48.034223], + [130.699711, 48.044227], + [130.666451, 48.105007], + [130.673842, 48.12818], + [130.765617, 48.18926], + [130.769313, 48.231136], + [130.787791, 48.256643], + [130.817972, 48.265409], + [130.845073, 48.296473], + [130.81982, 48.341444], + [130.785327, 48.357353], + [130.747755, 48.404256], + [130.745907, 48.449131], + [130.776704, 48.480084], + [130.767465, 48.507846], + [130.711414, 48.511414], + [130.647357, 48.484844], + [130.620871, 48.49595], + [130.615944, 48.575601], + [130.605473, 48.594207], + [130.538335, 48.612016], + [130.538951, 48.635751], + [130.576524, 48.688719], + [130.622103, 48.783842], + [130.689856, 48.849651], + [130.680617, 48.881146], + [130.609168, 48.881146], + [130.559277, 48.861071], + [130.501995, 48.865795], + [130.471198, 48.905541], + [130.412068, 48.905148], + [130.279641, 48.866976], + [130.237757, 48.868551], + [130.219895, 48.893739], + [130.113337, 48.956653], + [130.059135, 48.979047], + [130.020946, 49.021058], + [129.937179, 49.040285], + [129.9187, 49.060681], + [129.934715, 49.078717], + [129.913157, 49.1085], + [129.866962, 49.113985], + [129.855259, 49.133567], + [129.864498, 49.158621], + [129.847867, 49.181316], + [129.784426, 49.184054], + [129.753629, 49.208692], + [129.761636, 49.25754], + [129.730223, 49.288387], + [129.696962, 49.298535], + [129.604571, 49.279018], + [129.562687, 49.299706], + [129.546057, 49.395227], + [129.51834, 49.423652], + [129.448739, 49.441167], + [129.390224, 49.432605], + [129.374826, 49.414309], + [129.379138, 49.367175], + [129.358196, 49.355871], + [129.320623, 49.3586], + [129.266421, 49.396006], + [129.215298, 49.399122], + [129.180805, 49.386657], + [129.143849, 49.357431], + [129.084719, 49.359769], + [129.061929, 49.374189], + [129.013886, 49.457119], + [128.932582, 49.46801], + [128.871604, 49.492506], + [128.792147, 49.473065], + [128.76135, 49.482009], + [128.763198, 49.515824], + [128.813089, 49.558157], + [128.802618, 49.58222], + [128.744104, 49.595023], + [128.715155, 49.564756], + [128.656025, 49.577564], + [128.619684, 49.593471], + [128.537764, 49.604332], + [128.500192, 49.593859], + [128.389939, 49.58998], + [128.343128, 49.544956], + [128.287077, 49.566309], + [128.243345, 49.563203], + [128.185447, 49.53952], + [128.122005, 49.55311], + [128.070882, 49.556604], + [128.001281, 49.592307], + [127.949542, 49.596187], + [127.897804, 49.579116], + [127.815268, 49.593859], + [127.782007, 49.630698], + [127.705015, 49.665185], + [127.677913, 49.697712], + [127.674833, 49.764247], + [127.653892, 49.780094], + [127.583059, 49.786277], + [127.531936, 49.826059], + [127.529472, 49.864265], + [127.547334, 49.928645], + [127.543638, 49.944438], + [127.495595, 49.994479], + [127.501755, 50.056764], + [127.58737, 50.137768], + [127.60708, 50.178794], + [127.603385, 50.239309], + [127.44632, 50.270686], + [127.371791, 50.29669], + [127.332371, 50.340634], + [127.369944, 50.403996], + [127.3644, 50.438314], + [127.30527, 50.45432], + [127.293567, 50.46575], + [127.323132, 50.52552], + [127.36132, 50.547582], + [127.370559, 50.581415], + [127.294799, 50.663426], + [127.28864, 50.699451], + [127.305886, 50.733932], + [127.295415, 50.755139], + [127.236285, 50.781256], + [127.143894, 50.910111], + [127.113713, 50.93765], + [127.052119, 50.962911], + [126.985597, 51.029202], + [126.922772, 51.061937], + [126.917844, 51.138977], + [126.899982, 51.200518], + [126.926467, 51.246244], + [126.976358, 51.291551], + [126.98375, 51.318863], + [126.970815, 51.332327], + [126.887047, 51.321856], + [126.877808, 51.300906], + [126.908605, 51.283691], + [126.92154, 51.259729], + [126.908605, 51.246619], + [126.863025, 51.248492], + [126.820526, 51.281071], + [126.813134, 51.311756], + [126.837156, 51.345038], + [126.904293, 51.340552], + [126.930163, 51.359241], + [126.908605, 51.407423], + [126.835308, 51.413769], + [126.791577, 51.432428], + [126.784185, 51.448095], + [126.812518, 51.493948], + [126.843931, 51.521885], + [126.837156, 51.536033], + [126.69549, 51.57845], + [126.67886, 51.602246], + [126.741069, 51.642374], + [126.723823, 51.679126], + [126.734294, 51.711399], + [126.724439, 51.7266], + [126.6727, 51.73179], + [126.658534, 51.762544], + [126.622809, 51.777357], + [126.580925, 51.824728], + [126.555056, 51.874266], + [126.510092, 51.922274], + [126.462665, 51.948471], + [126.468208, 51.982395], + [126.447882, 52.009294], + [126.450962, 52.027709], + [126.487918, 52.041699], + [126.514404, 52.037282], + [126.563679, 52.119302], + [126.556288, 52.136203], + [126.499005, 52.16044], + [126.457121, 52.165212], + [126.403535, 52.185031], + [126.34502, 52.192002], + [126.306832, 52.205574], + [126.312992, 52.235271], + [126.357955, 52.264216], + [126.401071, 52.279597], + [126.436795, 52.277034], + [126.4331, 52.298632], + [126.327774, 52.310342], + [126.320999, 52.342163], + [126.348716, 52.357882], + [126.353644, 52.389304], + [126.326542, 52.424353], + [126.268644, 52.475051], + [126.205202, 52.466302], + [126.192883, 52.492181], + [126.213209, 52.525327], + [126.147304, 52.573], + [126.066616, 52.603905], + [126.055529, 52.582455], + [126.030891, 52.576273], + [125.989008, 52.603178], + [125.968682, 52.630429], + [125.971145, 52.654033], + [125.995783, 52.675085], + [126.061688, 52.673271], + [126.072775, 52.691048], + [126.044442, 52.739628], + [126.112195, 52.757016], + [126.116507, 52.768243], + [126.052449, 52.800095], + [126.02042, 52.795753], + [125.985312, 52.758465], + [125.966834, 52.759914], + [125.937269, 52.786705], + [125.923718, 52.815651], + [125.855349, 52.866259], + [125.854117, 52.891542], + [125.827631, 52.899123], + [125.772197, 52.89804], + [125.751255, 52.88143], + [125.722306, 52.880347], + [125.678574, 52.86084], + [125.666871, 52.869872], + [125.665023, 52.913561], + [125.737088, 52.943504], + [125.742632, 52.993964], + [125.684118, 53.00801], + [125.643466, 53.039686], + [125.640386, 53.06199], + [125.613901, 53.083564], + [125.588647, 53.081047], + [125.530749, 53.0512], + [125.504263, 53.061271], + [125.503647, 53.095424], + [125.452524, 53.107641], + [125.343503, 53.14463], + [125.315786, 53.144989], + [125.252344, 53.18051], + [125.195062, 53.198439], + [125.142091, 53.204175], + [125.038613, 53.202741], + [124.970244, 53.194137], + [124.887708, 53.164368], + [124.909266, 53.118059], + [124.87231, 53.099018], + [124.832889, 53.145347], + [124.787926, 53.140681], + [124.734339, 53.146783], + [124.712165, 53.162574], + [124.720789, 53.192344], + [124.678905, 53.207043], + [124.590209, 53.208476], + [124.563108, 53.201666], + [124.496587, 53.207759], + [124.487348, 53.217436], + [124.435609, 53.223886], + [124.412203, 53.248601], + [124.375863, 53.258984], + [124.327819, 53.331954], + [124.239124, 53.379817], + [124.19416, 53.37339], + [124.125791, 53.348033], + [124.058038, 53.404085], + [124.01369, 53.403371], + [123.985973, 53.434401], + [123.865249, 53.489627], + [123.797495, 53.489983], + [123.746373, 53.500308], + [123.698329, 53.498528], + [123.668764, 53.533756], + [123.620721, 53.550115], + [123.58746, 53.546915], + [123.569598, 53.505291], + [123.53141, 53.507071], + [123.557895, 53.531978], + [123.546808, 53.551537], + [123.517243, 53.558292], + [123.490758, 53.542648], + [123.510468, 53.509206], + [123.499381, 53.497816], + [123.47228, 53.509206], + [123.454417, 53.536602], + [123.394055, 53.538024], + [123.309672, 53.56078], + [123.274563, 53.563269], + [123.231447, 53.549404], + [123.179092, 53.509918], + [123.137209, 53.498172], + [123.093477, 53.508138], + [123.052209, 53.506715], + [122.943804, 53.483929], + [122.894528, 53.462914], + [122.826775, 53.457213], + [122.763949, 53.463626], + [122.673406, 53.459351], + [122.608117, 53.465408], + [122.5379, 53.453293], + [122.496016, 53.458638], + [122.435038, 53.444739], + [122.37406, 53.47467], + [122.350038, 53.505647], + [122.266886, 53.470039], + [122.227466, 53.461845], + [122.161561, 53.468614], + [122.111054, 53.426913], + [122.077177, 53.422277], + [122.026054, 53.428339], + [121.875765, 53.426556], + [121.816019, 53.41336], + [121.754425, 53.389454], + [121.697758, 53.392666], + [121.589969, 53.350891], + [121.499426, 53.337314], + [121.504969, 53.323018], + [121.575802, 53.29155], + [121.615222, 53.258984], + [121.642324, 53.262564], + [121.679896, 53.240722], + [121.67928, 53.199515], + [121.660186, 53.195213], + [121.665114, 53.170467], + [121.722396, 53.145706], + [121.753193, 53.147501], + [121.784606, 53.104408], + [121.775367, 53.089674], + [121.817867, 53.061631], + [121.785838, 53.018451], + [121.715621, 52.997926], + [121.677432, 52.948192], + [121.66265, 52.912478], + [121.610295, 52.892264], + [121.604136, 52.872401], + [121.620766, 52.853251], + [121.591201, 52.824693], + [121.537614, 52.801542], + [121.511129, 52.779104], + [121.476636, 52.772225], + [121.455078, 52.73528], + [121.373158, 52.683067], + [121.309717, 52.676173], + [121.29247, 52.651855], + [121.237036, 52.619167], + [121.182217, 52.59918], + [121.225333, 52.577364], + [121.280151, 52.586819], + [121.323883, 52.573727], + [121.353448, 52.534793], + [121.411963, 52.52205], + [121.416274, 52.499468], + [121.474172, 52.482706], + [121.495114, 52.484892], + [121.519136, 52.456821], + [121.565331, 52.460468], + [121.590585, 52.443326], + [121.63986, 52.44442], + [121.678664, 52.419973], + [121.658338, 52.3904], + [121.715621, 52.342894], + [121.714389, 52.318025], + [121.769207, 52.308147], + [121.841272, 52.282526], + [121.901018, 52.280695], + [121.94783, 52.298266], + [121.976779, 52.343626], + [122.035909, 52.377615], + [122.040837, 52.413038], + [122.091344, 52.427272], + [122.080873, 52.440407], + [122.107358, 52.452445], + [122.142467, 52.495096], + [122.140003, 52.510032], + [122.168952, 52.513674], + [122.178191, 52.48963], + [122.207756, 52.469218], + [122.310618, 52.475416], + [122.326016, 52.459374], + [122.342031, 52.414133], + [122.367284, 52.413768], + [122.378987, 52.395512], + [122.419023, 52.375057], + [122.447356, 52.394052], + [122.484313, 52.341432], + [122.478153, 52.29607], + [122.560689, 52.282526], + [122.585943, 52.266413], + [122.67895, 52.276667], + [122.710979, 52.256157], + [122.76087, 52.26678], + [122.787355, 52.252494], + [122.766413, 52.232705], + [122.769493, 52.179893], + [122.73808, 52.153464], + [122.690653, 52.140243], + [122.629059, 52.13657], + [122.643841, 52.111585], + [122.625363, 52.067459], + [122.650616, 52.058997], + [122.664783, 51.99861], + [122.683877, 51.974654], + [122.726377, 51.978709], + [122.729457, 51.919321], + [122.706051, 51.890151], + [122.725761, 51.87833], + [122.732536, 51.832495], + [122.771957, 51.779579], + [122.749167, 51.746613], + [122.778732, 51.698048], + [122.816304, 51.655371], + [122.820616, 51.633088], + [122.85634, 51.606707], + [122.832935, 51.581797], + [122.874202, 51.561339], + [122.880362, 51.537894], + [122.858804, 51.524864], + [122.880362, 51.511085], + [122.854492, 51.477551], + [122.871123, 51.455181], + [122.900072, 51.445112], + [122.903768, 51.415262], + [122.946267, 51.405183], + [122.965977, 51.386886], + [122.965977, 51.345786], + [123.002934, 51.31213], + [123.069455, 51.321108], + [123.127969, 51.297913], + [123.231447, 51.279199], + [123.231447, 51.268716], + [123.294273, 51.254111], + [123.339853, 51.27246], + [123.376809, 51.266844], + [123.414381, 51.278825], + [123.440251, 51.270963], + [123.46304, 51.286686], + [123.582533, 51.294545], + [123.582533, 51.306893], + [123.661989, 51.319237], + [123.660141, 51.342795], + [123.711264, 51.398089], + [123.794416, 51.361109], + [123.842459, 51.367462], + [123.887423, 51.320734], + [123.926227, 51.300532], + [123.939777, 51.313253], + [123.994596, 51.322604], + [124.071588, 51.320734], + [124.090067, 51.3413], + [124.128255, 51.347281], + [124.192313, 51.33943], + [124.239124, 51.344664], + [124.271769, 51.308389], + [124.297638, 51.298661], + [124.339522, 51.293422], + [124.406659, 51.272086], + [124.430065, 51.301281], + [124.426985, 51.331953], + [124.443616, 51.35812], + [124.478108, 51.36223], + [124.490427, 51.380537], + [124.555717, 51.375307], + [124.58713, 51.363725], + [124.62655, 51.327465], + [124.693687, 51.3327], + [124.752817, 51.35812], + [124.76452, 51.38726], + [124.783614, 51.392115], + [124.864302, 51.37979], + [124.885244, 51.40817], + [124.942527, 51.447349], + [124.917889, 51.474196], + [124.928976, 51.498419], + [124.983795, 51.508478], + [125.004737, 51.529332], + [125.047236, 51.529704], + [125.073106, 51.553526], + [125.060171, 51.59667], + [125.098975, 51.658341], + [125.12854, 51.659083], + [125.130388, 51.635317], + [125.175968, 51.639403], + [125.214772, 51.627888], + [125.228938, 51.640517], + [125.289301, 51.633831], + [125.316402, 51.610052], + [125.35151, 51.623801], + [125.38046, 51.585516], + [125.424807, 51.562827], + [125.528285, 51.488359], + [125.559082, 51.461521], + [125.559082, 51.461521], + [125.595422, 51.416755], + [125.595422, 51.416755], + [125.60035, 51.413396], + [125.60035, 51.413396], + [125.600966, 51.410409], + [125.600966, 51.410409], + [125.62314, 51.398089], + [125.62314, 51.398089], + [125.623756, 51.387633], + [125.623756, 51.387633], + [125.626219, 51.380163], + [125.626219, 51.380163], + [125.700132, 51.327465], + [125.700132, 51.327465], + [125.740784, 51.27583], + [125.740784, 51.27583], + [125.76111, 51.261976], + [125.76111, 51.261976], + [125.761726, 51.226385], + [125.819008, 51.227134], + [125.850421, 51.21364], + [125.864588, 51.146487], + [125.909551, 51.138977], + [125.946508, 51.108176], + [125.970529, 51.123955], + [125.993935, 51.119072], + [125.976073, 51.084498], + [126.059225, 51.043503], + [126.033971, 51.011132], + [126.041978, 50.981753], + [126.068464, 50.967434], + [126.042594, 50.92558], + [126.02042, 50.927466], + [125.996399, 50.906715], + [125.997631, 50.872738], + [125.961906, 50.901054], + [125.939732, 50.85423], + [125.913247, 50.825885], + [125.878138, 50.816812], + [125.890457, 50.805845], + [125.836255, 50.793363], + [125.846726, 50.769524], + [125.828863, 50.756654], + [125.804226, 50.773309], + [125.758646, 50.746809], + [125.795603, 50.738856], + [125.78082, 50.725598], + [125.825784, 50.70362], + [125.789443, 50.679735], + [125.804226, 50.658874], + [125.793139, 50.643316], + [125.814697, 50.62092], + [125.807921, 50.60383], + [125.829479, 50.56165], + [125.794987, 50.532748], + [125.770349, 50.531227], + [125.754335, 50.506874], + [125.740784, 50.523237], + [125.699516, 50.487078], + [125.654553, 50.471082], + [125.627451, 50.443268], + [125.580024, 50.449366], + [125.562162, 50.438314], + [125.583104, 50.409717], + [125.567089, 50.402852], + [125.536292, 50.420014], + [125.522126, 50.404759], + [125.546763, 50.358965], + [125.520278, 50.3498], + [125.530749, 50.331085], + [125.463611, 50.295925], + [125.466075, 50.266861], + [125.442053, 50.260357], + [125.448829, 50.216338], + [125.417416, 50.195654], + [125.39093, 50.199868], + [125.382923, 50.172278], + [125.335496, 50.161161], + [125.376148, 50.137385], + [125.311474, 50.140453], + [125.27883, 50.127411], + [125.258504, 50.103618], + [125.287453, 50.093636], + [125.283757, 50.070211], + [125.328105, 50.065985], + [125.315786, 50.04562], + [125.289916, 50.057917], + [125.25296, 50.041393], + [125.283757, 50.036012], + [125.297924, 50.014481], + [125.278214, 49.996402], + [125.241873, 49.987938], + [125.231402, 49.957531], + [125.190134, 49.959841], + [125.199373, 49.935194], + [125.225859, 49.922481], + [125.212924, 49.907452], + [125.245569, 49.87198], + [125.225243, 49.867351], + [125.239409, 49.844587], + [125.177815, 49.829533], + [125.222779, 49.799026], + [125.221547, 49.754969], + [125.204301, 49.734086], + [125.225243, 49.726349], + [125.219699, 49.669058], + [125.185207, 49.634574], + [125.189518, 49.652401], + [125.164881, 49.669446], + [125.132236, 49.672157], + [125.127308, 49.655113], + [125.15441, 49.616741], + [125.16796, 49.629923], + [125.205533, 49.593859], + [125.23017, 49.595411], + [125.233866, 49.536801], + [125.211076, 49.539908], + [125.228323, 49.487063], + [125.270822, 49.454395], + [125.256656, 49.437275], + [125.25604, 49.395227], + [125.277598, 49.379644], + [125.256656, 49.359769], + [125.261583, 49.322336], + [125.214772, 49.277066], + [125.227707, 49.248947], + [125.219699, 49.189139], + [125.187671, 49.186792], + [125.158721, 49.144921], + [125.117453, 49.126127], + [125.034302, 49.157056], + [125.039845, 49.17623], + [124.983179, 49.162535], + [124.906802, 49.184054], + [124.860607, 49.166448], + [124.847672, 49.129651], + [124.809484, 49.115943], + [124.828578, 49.077933], + [124.808252, 49.020666], + [124.756513, 48.967262], + [124.744194, 48.920487], + [124.709086, 48.920487], + [124.715861, 48.885475], + [124.697383, 48.841775], + [124.654267, 48.83429], + [124.644412, 48.80789], + [124.656115, 48.783842], + [124.612383, 48.747945], + [124.624702, 48.701755], + [124.601912, 48.632587], + [124.579122, 48.596582], + [124.520608, 48.556195], + [124.548941, 48.535593], + [124.533543, 48.515379], + [124.555717, 48.467784], + [124.507674, 48.445558], + [124.52492, 48.426897], + [124.51876, 48.378027], + [124.547094, 48.35775], + [124.540934, 48.335476], + [124.579738, 48.297269], + [124.558796, 48.268197], + [124.579122, 48.262221], + [124.547094, 48.200829], + [124.512601, 48.164518], + [124.529847, 48.146951], + [124.505826, 48.124985], + [124.478108, 48.123387], + [124.46579, 48.098213], + [124.415899, 48.08782], + [124.430065, 48.12099], + [124.471333, 48.133373], + [124.475029, 48.173698], + [124.418978, 48.181679], + [124.412819, 48.219175], + [124.422058, 48.245884], + [124.365392, 48.283731], + [124.353689, 48.315978], + [124.317964, 48.35099], + [124.331515, 48.380015], + [124.309957, 48.413393], + [124.330283, 48.435633], + [124.302566, 48.456673], + [124.314269, 48.503881], + [124.25945, 48.536385], + [124.25945, 48.536385], + [124.136878, 48.463023], + [124.07898, 48.43603], + [124.019234, 48.39313], + [123.862785, 48.271782], + [123.746373, 48.197638], + [123.705105, 48.152142], + [123.579453, 48.045427], + [123.537569, 48.021816], + [123.300432, 47.953723], + [123.256085, 47.876711], + [123.214201, 47.824502], + [123.161846, 47.781892], + [123.041122, 47.746492], + [122.926557, 47.697777], + [122.848949, 47.67441], + [122.765181, 47.614333], + [122.59395, 47.54732], + [122.543443, 47.495589], + [122.507103, 47.401291], + [122.418407, 47.350632], + [122.441197, 47.310476], + [122.441197, 47.310476], + [122.462755, 47.27841], + [122.498479, 47.255262], + [122.531124, 47.198771], + [122.582863, 47.158092], + [122.582863, 47.158092], + [122.615508, 47.124306], + [122.679566, 47.094164], + [122.710363, 47.093349], + [122.710363, 47.093349], + [122.821232, 47.065636], + [122.852645, 47.072158], + [122.845869, 47.046881], + [122.778116, 47.002822], + [122.77442, 46.973837], + [122.798442, 46.9575], + [122.791051, 46.941567], + [122.83971, 46.937072], + [122.895144, 46.960359], + [122.893913, 46.895376], + [122.906847, 46.80738], + [122.996774, 46.761483], + [123.00355, 46.730726], + [123.026339, 46.718829], + [123.076846, 46.745082], + [123.103332, 46.734828], + [123.163694, 46.74016], + [123.198802, 46.803283], + [123.22344, 46.821305], + [123.221592, 46.850373], + [123.295505, 46.865105], + [123.341084, 46.826628], + [123.374345, 46.837683], + [123.40699, 46.906416], + [123.404526, 46.935438], + [123.360179, 46.970978], + [123.304128, 46.964852], + [123.301664, 46.999965], + [123.337389, 46.988943], + [123.42362, 46.934212], + [123.487678, 46.959951], + [123.52833, 46.944836], + [123.483366, 46.84587], + [123.506772, 46.827038], + [123.562823, 46.82581], + [123.575757, 46.845461], + [123.576989, 46.891286], + [123.605322, 46.891286], + [123.599163, 46.868378], + [123.625648, 46.847508], + [123.580069, 46.827447], + [123.629344, 46.813524], + [123.631808, 46.728675], + [123.603475, 46.68928], + [123.474743, 46.686817], + [123.366338, 46.677784], + [123.318295, 46.662179], + [123.276411, 46.660947], + [123.279491, 46.616981], + [123.228368, 46.588198], + [123.18094, 46.614103], + [123.098404, 46.603002], + [123.077462, 46.622324], + [123.04605, 46.617803], + [123.052825, 46.579972], + [123.002318, 46.574624], + [123.010325, 46.524823], + [123.011557, 46.434984], + [123.089781, 46.347888], + [123.142136, 46.298293], + [123.178476, 46.248239], + [123.248078, 46.273065], + [123.286266, 46.250308], + [123.320758, 46.254447], + [123.357099, 46.232096], + [123.357099, 46.232096], + [123.430396, 46.243687], + [123.452569, 46.233338], + [123.499381, 46.259826], + [123.569598, 46.223816], + [123.569598, 46.223816] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 310000, + "name": "上海市", + "center": [121.472644, 31.231706], + "centroid": [121.438737, 31.072559], + "childrenNum": 16, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 8, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [120.901349, 31.017327], + [120.940153, 31.010146], + [120.949392, 31.030148], + [120.989428, 31.01425], + [121.000515, 30.938309], + [120.993124, 30.889532], + [121.020225, 30.872069], + [120.991892, 30.837133], + [121.038087, 30.814007], + [121.060261, 30.845354], + [121.097833, 30.857171], + [121.13787, 30.826342], + [121.123087, 30.77905], + [121.174826, 30.771851], + [121.21671, 30.785734], + [121.232108, 30.755909], + [121.272144, 30.723504], + [121.274608, 30.677191], + [121.362071, 30.679764], + [121.426129, 30.730192], + [121.517288, 30.775451], + [121.601056, 30.805269], + [121.681128, 30.818633], + [121.904714, 30.814007], + [121.943518, 30.776993], + [121.970004, 30.789333], + [121.954605, 30.825828], + [121.994025, 30.862823], + [121.990945, 30.96859], + [121.977395, 31.016301], + [121.946598, 31.066039], + [121.809859, 31.196669], + [121.722396, 31.3036], + [121.599208, 31.37465], + [121.520984, 31.394575], + [121.404571, 31.479337], + [121.343593, 31.511996], + [121.301093, 31.49873], + [121.301093, 31.49873], + [121.247507, 31.476785], + [121.241963, 31.493117], + [121.174826, 31.44922], + [121.143413, 31.392021], + [121.113848, 31.37465], + [121.130478, 31.343987], + [121.142797, 31.275472], + [121.090442, 31.291838], + [121.060261, 31.245289], + [121.076892, 31.158267], + [121.018377, 31.134194], + [120.930298, 31.141365], + [120.881023, 31.134706], + [120.859465, 31.100379], + [120.890878, 31.094229], + [120.901349, 31.017327] + ] + ], + [ + [ + [121.974931, 31.61704], + [121.715005, 31.673592], + [121.64294, 31.697527], + [121.599824, 31.703128], + [121.49881, 31.753012], + [121.431673, 31.769295], + [121.384861, 31.833382], + [121.323267, 31.868458], + [121.265369, 31.863883], + [121.200079, 31.834907], + [121.118775, 31.759119], + [121.145261, 31.75403], + [121.289391, 31.61653], + [121.371926, 31.553314], + [121.395332, 31.585437], + [121.434136, 31.590535], + [121.547469, 31.531382], + [121.625693, 31.501792], + [121.682976, 31.491075], + [121.819098, 31.437987], + [121.890547, 31.428795], + [121.981706, 31.464024], + [121.995873, 31.493117], + [121.974931, 31.61704] + ] + ], + [ + [ + [121.795693, 31.330186], + [121.792613, 31.363408], + [121.742106, 31.407345], + [121.585657, 31.454836], + [121.567179, 31.48342], + [121.520984, 31.494137], + [121.509897, 31.4824], + [121.572107, 31.435944], + [121.727939, 31.35472], + [121.76428, 31.31536], + [121.785222, 31.31127], + [121.795693, 31.330186] + ] + ], + [ + [ + [121.801852, 31.356765], + [121.8037, 31.328652], + [121.840656, 31.295418], + [121.932431, 31.283144], + [122.016199, 31.282121], + [122.097503, 31.255522], + [122.122756, 31.307179], + [122.116597, 31.320984], + [122.040837, 31.324051], + [121.951525, 31.337343], + [121.845584, 31.37465], + [121.792613, 31.377715], + [121.801852, 31.356765] + ] + ], + [ + [ + [121.626925, 31.445135], + [121.631853, 31.456878], + [121.579498, 31.479848], + [121.626925, 31.445135] + ] + ], + [ + [ + [121.943518, 31.215608], + [121.959533, 31.159291], + [121.995873, 31.160828], + [122.008808, 31.221238], + [121.950909, 31.228915], + [121.943518, 31.215608] + ] + ], + [ + [ + [121.88254, 31.240684], + [121.909026, 31.195133], + [121.923808, 31.234032], + [121.88254, 31.240684] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 320000, + "name": "江苏省", + "center": [118.767413, 32.041544], + "centroid": [119.486506, 32.983991], + "childrenNum": 13, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 9, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [117.311654, 34.561686], + [117.27285, 34.556757], + [117.303647, 34.542463], + [117.267923, 34.532603], + [117.27285, 34.499565], + [117.252524, 34.48674], + [117.248213, 34.451216], + [117.166293, 34.434435], + [117.139191, 34.526687], + [117.15151, 34.559222], + [117.104083, 34.648874], + [117.073286, 34.639026], + [117.061583, 34.675947], + [117.070206, 34.713835], + [117.022163, 34.759081], + [116.969192, 34.771864], + [116.95133, 34.81069], + [116.979047, 34.815113], + [116.966113, 34.844588], + [116.929156, 34.843114], + [116.922381, 34.894671], + [116.858323, 34.928533], + [116.821983, 34.929515], + [116.815823, 34.965324], + [116.789338, 34.975133], + [116.781331, 34.916757], + [116.677853, 34.939327], + [116.622418, 34.939818], + [116.613795, 34.922645], + [116.557745, 34.908905], + [116.445028, 34.895652], + [116.408071, 34.850972], + [116.403144, 34.756131], + [116.369267, 34.749247], + [116.363724, 34.715311], + [116.392057, 34.710391], + [116.374195, 34.640011], + [116.430245, 34.650843], + [116.432709, 34.630163], + [116.477057, 34.614896], + [116.490607, 34.573513], + [116.594085, 34.511894], + [116.592237, 34.493646], + [116.662454, 34.472927], + [116.722816, 34.472434], + [116.773939, 34.453683], + [116.782563, 34.429993], + [116.828142, 34.389012], + [116.909446, 34.408271], + [116.969192, 34.389012], + [116.960569, 34.363821], + [116.983359, 34.348011], + [116.969192, 34.283753], + [117.051112, 34.221425], + [117.025243, 34.167469], + [117.046801, 34.151622], + [117.123793, 34.128342], + [117.130568, 34.101586], + [117.192162, 34.068873], + [117.257452, 34.065899], + [117.277162, 34.078787], + [117.311654, 34.067882], + [117.357234, 34.088205], + [117.404045, 34.03218], + [117.435458, 34.028212], + [117.514914, 34.060941], + [117.543248, 34.038627], + [117.569117, 33.985051], + [117.612849, 34.000433], + [117.629479, 34.028708], + [117.671363, 33.992494], + [117.672595, 33.934916], + [117.715095, 33.879287], + [117.753899, 33.891211], + [117.759442, 33.874318], + [117.739732, 33.758467], + [117.72495, 33.74951], + [117.750203, 33.710688], + [117.791471, 33.733585], + [117.843826, 33.736074], + [117.901724, 33.720146], + [117.972557, 33.74951], + [118.019985, 33.738562], + [118.065564, 33.76593], + [118.117919, 33.766427], + [118.161035, 33.735576], + [118.16781, 33.663381], + [118.112376, 33.617045], + [118.117919, 33.594615], + [118.107448, 33.475391], + [118.050782, 33.491863], + [118.027376, 33.455421], + [118.016905, 33.402978], + [118.029224, 33.374995], + [117.992883, 33.333005], + [117.974405, 33.279487], + [117.939297, 33.262475], + [117.942376, 33.224936], + [117.977485, 33.226437], + [117.988572, 33.180869], + [118.037231, 33.152314], + [118.038463, 33.134776], + [118.149332, 33.169348], + [118.178281, 33.217926], + [118.217085, 33.191888], + [118.219549, 33.114227], + [118.243571, 33.027967], + [118.244803, 32.998359], + [118.26944, 32.969242], + [118.303933, 32.96874], + [118.291614, 32.946143], + [118.252194, 32.936601], + [118.2331, 32.914498], + [118.250346, 32.848157], + [118.301469, 32.846145], + [118.300237, 32.783275], + [118.334114, 32.761637], + [118.363063, 32.770695], + [118.375382, 32.718849], + [118.411106, 32.715828], + [118.450526, 32.743518], + [118.483787, 32.721367], + [118.560163, 32.729926], + [118.572482, 32.719856], + [118.642699, 32.744525], + [118.707373, 32.72036], + [118.756648, 32.737477], + [118.73817, 32.772708], + [118.743097, 32.853184], + [118.743097, 32.853184], + [118.810235, 32.853687], + [118.821322, 32.920527], + [118.846575, 32.922034], + [118.849039, 32.956689], + [118.89585, 32.957694], + [118.89585, 32.957694], + [118.892771, 32.941121], + [118.934039, 32.93861], + [118.993169, 32.958196], + [119.020886, 32.955685], + [119.054763, 32.8748], + [119.113277, 32.823014], + [119.184726, 32.825529], + [119.211827, 32.708275], + [119.208748, 32.641276], + [119.230921, 32.607001], + [119.22045, 32.576748], + [119.152697, 32.557582], + [119.168096, 32.536394], + [119.142226, 32.499556], + [119.084944, 32.452602], + [119.041212, 32.515201], + [118.975923, 32.505108], + [118.922336, 32.557078], + [118.92172, 32.557078], + [118.922336, 32.557078], + [118.92172, 32.557078], + [118.890923, 32.553042], + [118.908169, 32.59238], + [118.84288, 32.56767], + [118.820706, 32.60448], + [118.784981, 32.582295], + [118.757264, 32.603976], + [118.73509, 32.58885], + [118.719076, 32.614059], + [118.719076, 32.614059], + [118.688895, 32.588346], + [118.658714, 32.594397], + [118.632844, 32.578261], + [118.59712, 32.600951], + [118.568787, 32.585825], + [118.564475, 32.562122], + [118.608823, 32.536899], + [118.592192, 32.481383], + [118.628533, 32.467751], + [118.691359, 32.472295], + [118.685199, 32.403604], + [118.703061, 32.328792], + [118.657482, 32.30148], + [118.674728, 32.250375], + [118.643931, 32.209875], + [118.510888, 32.194176], + [118.49549, 32.165304], + [118.501033, 32.121726], + [118.433896, 32.086746], + [118.394476, 32.076098], + [118.389548, 31.985281], + [118.363679, 31.930443], + [118.472084, 31.879639], + [118.466541, 31.857784], + [118.504729, 31.841516], + [118.481939, 31.778453], + [118.533678, 31.76726], + [118.521975, 31.743343], + [118.5577, 31.73011], + [118.571866, 31.746397], + [118.641467, 31.75861], + [118.653786, 31.73011], + [118.697518, 31.709747], + [118.643315, 31.671555], + [118.643315, 31.649651], + [118.736322, 31.633347], + [118.748025, 31.675629], + [118.773894, 31.682759], + [118.802844, 31.619078], + [118.858894, 31.623665], + [118.881684, 31.564023], + [118.885995, 31.519139], + [118.883532, 31.500261], + [118.852119, 31.393553], + [118.824401, 31.375672], + [118.767735, 31.363919], + [118.745561, 31.372606], + [118.720924, 31.322518], + [118.726467, 31.282121], + [118.756648, 31.279564], + [118.794836, 31.229426], + [118.870597, 31.242219], + [118.984546, 31.237102], + [119.014727, 31.241707], + [119.10527, 31.235055], + [119.107118, 31.250917], + [119.158241, 31.294907], + [119.197661, 31.295418], + [119.198277, 31.270357], + [119.266646, 31.250405], + [119.294363, 31.263195], + [119.338095, 31.259103], + [119.350414, 31.301043], + [119.374435, 31.258591], + [119.360269, 31.213049], + [119.391682, 31.174142], + [119.439109, 31.177214], + [119.461283, 31.156219], + [119.532732, 31.159291], + [119.599869, 31.10909], + [119.623891, 31.130096], + [119.678093, 31.167997], + [119.705811, 31.152634], + [119.715666, 31.169533], + [119.779723, 31.17875], + [119.809904, 31.148536], + [119.827151, 31.174142], + [119.878274, 31.160828], + [119.921389, 31.170045], + [119.946027, 31.106016], + [119.988527, 31.059375], + [120.001461, 31.027071], + [120.052584, 31.00553], + [120.111099, 30.955761], + [120.149903, 30.937283], + [120.223816, 30.926502], + [120.316206, 30.933689], + [120.371025, 30.948575], + [120.35809, 30.886964], + [120.42338, 30.902884], + [120.435083, 30.920855], + [120.441858, 30.860768], + [120.460336, 30.839702], + [120.489285, 30.763624], + [120.504684, 30.757967], + [120.563814, 30.835592], + [120.589684, 30.854089], + [120.654973, 30.846896], + [120.68269, 30.882342], + [120.713487, 30.88491], + [120.709176, 30.933176], + [120.684538, 30.955247], + [120.698089, 30.970643], + [120.746132, 30.962432], + [120.770154, 30.996809], + [120.820661, 31.006556], + [120.865624, 30.989627], + [120.901349, 31.017327], + [120.890878, 31.094229], + [120.859465, 31.100379], + [120.881023, 31.134706], + [120.930298, 31.141365], + [121.018377, 31.134194], + [121.076892, 31.158267], + [121.060261, 31.245289], + [121.090442, 31.291838], + [121.142797, 31.275472], + [121.130478, 31.343987], + [121.113848, 31.37465], + [121.143413, 31.392021], + [121.174826, 31.44922], + [121.241963, 31.493117], + [121.247507, 31.476785], + [121.301093, 31.49873], + [121.301093, 31.49873], + [121.343593, 31.511996], + [121.371926, 31.553314], + [121.289391, 31.61653], + [121.145261, 31.75403], + [121.118775, 31.759119], + [121.200079, 31.834907], + [121.265369, 31.863883], + [121.323267, 31.868458], + [121.384861, 31.833382], + [121.431673, 31.769295], + [121.49881, 31.753012], + [121.599824, 31.703128], + [121.64294, 31.697527], + [121.715005, 31.673592], + [121.974931, 31.61704], + [121.970004, 31.718911], + [121.889315, 31.866425], + [121.856055, 31.955328], + [121.772287, 32.032984], + [121.759352, 32.059362], + [121.525295, 32.136423], + [121.542542, 32.152132], + [121.458774, 32.177462], + [121.499426, 32.211394], + [121.493882, 32.263533], + [121.450151, 32.282256], + [121.425513, 32.430885], + [121.390405, 32.460682], + [121.352216, 32.474315], + [121.269681, 32.483402], + [121.153268, 32.52933], + [121.121855, 32.569183], + [121.076892, 32.576243], + [121.020225, 32.605489], + [120.961711, 32.612042], + [120.979573, 32.636236], + [120.963559, 32.68259], + [120.916131, 32.701225], + [120.953088, 32.714318], + [120.972182, 32.761134], + [120.981421, 32.85972], + [120.957399, 32.893395], + [120.932762, 33.005887], + [120.917979, 33.02596], + [120.871784, 33.047032], + [120.874247, 33.093672], + [120.843451, 33.209915], + [120.819429, 33.237951], + [120.833595, 33.274984], + [120.813885, 33.303499], + [120.769538, 33.307], + [120.741205, 33.337505], + [120.717183, 33.436945], + [120.680227, 33.520306], + [120.622944, 33.615051], + [120.611241, 33.627012], + [120.583524, 33.668362], + [120.534249, 33.782346], + [120.48559, 33.859411], + [120.367329, 34.091674], + [120.347619, 34.179352], + [120.314359, 34.255563], + [120.311895, 34.306991], + [120.103707, 34.391481], + [119.962657, 34.459112], + [119.811752, 34.485754], + [119.781571, 34.515839], + [119.641137, 34.569078], + [119.610956, 34.592729], + [119.569072, 34.615389], + [119.465594, 34.672994], + [119.525956, 34.73351], + [119.456971, 34.748264], + [119.381827, 34.752198], + [119.494543, 34.754656], + [119.497007, 34.754164], + [119.439725, 34.785136], + [119.440957, 34.769406], + [119.378747, 34.764489], + [119.312841, 34.774813], + [119.272189, 34.797914], + [119.238313, 34.799388], + [119.217371, 34.827886], + [119.202588, 34.890253], + [119.214907, 34.925589], + [119.211211, 34.981507], + [119.238313, 35.048657], + [119.285124, 35.068252], + [119.291899, 35.028567], + [119.307298, 35.032977], + [119.292515, 35.068742], + [119.306066, 35.076578], + [119.286972, 35.115261], + [119.250016, 35.124562], + [119.217371, 35.106939], + [119.137915, 35.096167], + [119.114509, 35.055026], + [119.027045, 35.055516], + [118.942662, 35.040817], + [118.928495, 35.051106], + [118.86259, 35.025626], + [118.860742, 34.944233], + [118.805307, 34.87307], + [118.80038, 34.843114], + [118.772047, 34.794474], + [118.739402, 34.792508], + [118.719076, 34.745313], + [118.764039, 34.740396], + [118.783749, 34.723181], + [118.739402, 34.693663], + [118.690127, 34.678408], + [118.664257, 34.693663], + [118.607591, 34.694155], + [118.601431, 34.714327], + [118.545997, 34.705964], + [118.460997, 34.656258], + [118.473932, 34.623269], + [118.439439, 34.626223], + [118.424657, 34.595193], + [118.439439, 34.507949], + [118.416034, 34.473914], + [118.404947, 34.427525], + [118.379693, 34.415183], + [118.290382, 34.424563], + [118.277447, 34.404814], + [118.220165, 34.405802], + [118.217701, 34.379134], + [118.179513, 34.379628], + [118.177665, 34.45319], + [118.132702, 34.483287], + [118.16473, 34.50499], + [118.185056, 34.543942], + [118.079115, 34.569571], + [118.114839, 34.614404], + [118.084042, 34.655766], + [118.053861, 34.650843], + [117.951615, 34.678408], + [117.909732, 34.670533], + [117.902956, 34.644443], + [117.793935, 34.651827], + [117.791471, 34.583368], + [117.801942, 34.518798], + [117.684298, 34.547392], + [117.659044, 34.501044], + [117.609769, 34.490686], + [117.592523, 34.462566], + [117.53832, 34.467006], + [117.465023, 34.484767], + [117.402813, 34.550843], + [117.402813, 34.569571], + [117.370785, 34.584846], + [117.325205, 34.573021], + [117.325205, 34.573021], + [117.32151, 34.566614], + [117.32151, 34.566614], + [117.311654, 34.561686], + [117.311654, 34.561686] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 330000, + "name": "浙江省", + "center": [120.153576, 30.287459], + "centroid": [120.109913, 29.181466], + "childrenNum": 11, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 10, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [118.433896, 28.288335], + [118.444367, 28.253548], + [118.490562, 28.238259], + [118.493026, 28.262509], + [118.588497, 28.282538], + [118.595272, 28.258292], + [118.651322, 28.277267], + [118.674728, 28.27147], + [118.699366, 28.309939], + [118.719692, 28.312047], + [118.756032, 28.252493], + [118.802228, 28.240368], + [118.804075, 28.207675], + [118.771431, 28.188687], + [118.805923, 28.154923], + [118.802228, 28.117453], + [118.767735, 28.10584], + [118.719076, 28.063601], + [118.733858, 28.027684], + [118.730163, 27.970615], + [118.753568, 27.947885], + [118.818242, 27.916689], + [118.829329, 27.847921], + [118.873677, 27.733563], + [118.879836, 27.667859], + [118.913713, 27.619616], + [118.909401, 27.568168], + [118.869365, 27.540047], + [118.907553, 27.460952], + [118.955597, 27.4498], + [118.986393, 27.47582], + [118.983314, 27.498649], + [119.020886, 27.498118], + [119.03998, 27.478475], + [119.092335, 27.466262], + [119.129907, 27.475289], + [119.121284, 27.438115], + [119.14777, 27.424836], + [119.224146, 27.416868], + [119.26911, 27.42218], + [119.285124, 27.457766], + [119.334399, 27.480067], + [119.360269, 27.524657], + [119.416935, 27.539517], + [119.438493, 27.508734], + [119.466826, 27.526249], + [119.501935, 27.610601], + [119.501319, 27.649837], + [119.541971, 27.666799], + [119.606028, 27.674749], + [119.644217, 27.663619], + [119.626354, 27.620676], + [119.630666, 27.582491], + [119.675014, 27.574534], + [119.659615, 27.540578], + [119.690412, 27.537394], + [119.70889, 27.514042], + [119.703347, 27.446613], + [119.685485, 27.438646], + [119.711354, 27.403054], + [119.750774, 27.373829], + [119.739687, 27.362668], + [119.782187, 27.330241], + [119.768636, 27.307909], + [119.843165, 27.300464], + [119.938636, 27.329709], + [119.960194, 27.365857], + [120.008237, 27.375423], + [120.026099, 27.344063], + [120.052584, 27.338747], + [120.096316, 27.390302], + [120.136968, 27.402523], + [120.134504, 27.420055], + [120.221352, 27.420055], + [120.26262, 27.432804], + [120.273091, 27.38924], + [120.340844, 27.399867], + [120.343924, 27.363199], + [120.430155, 27.258976], + [120.401822, 27.250996], + [120.404286, 27.204166], + [120.461568, 27.142407], + [120.492365, 27.136016], + [120.545952, 27.156785], + [120.574901, 27.234501], + [120.554575, 27.25206], + [120.580444, 27.321203], + [120.665444, 27.357884], + [120.673451, 27.420055], + [120.703016, 27.478475], + [120.637111, 27.561271], + [120.634647, 27.577186], + [120.685154, 27.622797], + [120.709176, 27.682699], + [120.771386, 27.734623], + [120.777545, 27.774873], + [120.809574, 27.775402], + [120.840371, 27.758986], + [120.910588, 27.864852], + [120.942001, 27.896592], + [120.97403, 27.887071], + [121.027616, 27.832574], + [121.070116, 27.834162], + [121.107688, 27.81352], + [121.152036, 27.815638], + [121.134174, 27.787051], + [121.13479, 27.787051], + [121.149572, 27.801345], + [121.149572, 27.801875], + [121.153268, 27.809815], + [121.152652, 27.810344], + [121.192072, 27.822518], + [121.193304, 27.872259], + [121.162507, 27.879136], + [121.162507, 27.90717], + [121.099681, 27.895005], + [121.05595, 27.900294], + [120.991892, 27.95], + [121.015298, 27.981714], + [121.059029, 28.096338], + [121.108304, 28.139092], + [121.121239, 28.12537], + [121.140949, 28.031382], + [121.176058, 28.022401], + [121.261057, 28.034551], + [121.299862, 28.067297], + [121.328195, 28.134343], + [121.373774, 28.133287], + [121.402107, 28.197127], + [121.45631, 28.250385], + [121.488955, 28.301509], + [121.538846, 28.299401], + [121.571491, 28.279376], + [121.580114, 28.240368], + [121.627541, 28.251966], + [121.669425, 28.33312], + [121.660186, 28.355768], + [121.634317, 28.347868], + [121.658954, 28.392628], + [121.692831, 28.407368], + [121.671273, 28.472621], + [121.646019, 28.511544], + [121.634317, 28.562542], + [121.596128, 28.575156], + [121.557324, 28.645033], + [121.540694, 28.655537], + [121.646019, 28.682842], + [121.689135, 28.719062], + [121.704534, 28.804577], + [121.687287, 28.863294], + [121.774751, 28.863818], + [121.772287, 28.898404], + [121.743338, 28.954451], + [121.711309, 28.985865], + [121.712541, 29.028783], + [121.658954, 29.058606], + [121.660186, 29.118226], + [121.616454, 29.143318], + [121.608447, 29.168927], + [121.715621, 29.125022], + [121.750113, 29.136523], + [121.767975, 29.166837], + [121.780294, 29.10986], + [121.811091, 29.10986], + [121.85975, 29.086328], + [121.884388, 29.105677], + [121.966308, 29.052852], + [121.970004, 29.092604], + [121.988482, 29.110906], + [121.986634, 29.154817], + [121.948446, 29.193485], + [121.971851, 29.193485], + [121.966924, 29.249894], + [122.002032, 29.260336], + [122.000185, 29.278608], + [121.94475, 29.28435], + [121.958301, 29.334448], + [121.936127, 29.348012], + [121.937975, 29.384], + [121.975547, 29.411113], + [121.993409, 29.45229], + [121.973083, 29.477821], + [121.968772, 29.515846], + [121.995257, 29.545007], + [122.000185, 29.582486], + [121.966308, 29.636078], + [121.909641, 29.650122], + [121.872685, 29.632437], + [121.833265, 29.653242], + [121.937359, 29.748373], + [122.003264, 29.762401], + [122.043916, 29.822647], + [122.10243, 29.859504], + [122.143082, 29.877668], + [122.140003, 29.901535], + [122.00696, 29.891678], + [122.00388, 29.92021], + [121.971235, 29.955476], + [121.919497, 29.920729], + [121.835113, 29.958068], + [121.78399, 29.99332], + [121.721164, 29.992802], + [121.699606, 30.007832], + [121.652795, 30.071037], + [121.635548, 30.070002], + [121.561636, 30.184395], + [121.497578, 30.258861], + [121.395332, 30.338435], + [121.371926, 30.37097], + [121.328195, 30.397299], + [121.225333, 30.404526], + [121.183449, 30.434458], + [121.092906, 30.515952], + [121.058413, 30.563888], + [121.148956, 30.599953], + [121.188992, 30.632916], + [121.239499, 30.648878], + [121.274608, 30.677191], + [121.272144, 30.723504], + [121.232108, 30.755909], + [121.21671, 30.785734], + [121.174826, 30.771851], + [121.123087, 30.77905], + [121.13787, 30.826342], + [121.097833, 30.857171], + [121.060261, 30.845354], + [121.038087, 30.814007], + [120.991892, 30.837133], + [121.020225, 30.872069], + [120.993124, 30.889532], + [121.000515, 30.938309], + [120.989428, 31.01425], + [120.949392, 31.030148], + [120.940153, 31.010146], + [120.901349, 31.017327], + [120.865624, 30.989627], + [120.820661, 31.006556], + [120.770154, 30.996809], + [120.746132, 30.962432], + [120.698089, 30.970643], + [120.684538, 30.955247], + [120.709176, 30.933176], + [120.713487, 30.88491], + [120.68269, 30.882342], + [120.654973, 30.846896], + [120.589684, 30.854089], + [120.563814, 30.835592], + [120.504684, 30.757967], + [120.489285, 30.763624], + [120.460336, 30.839702], + [120.441858, 30.860768], + [120.435083, 30.920855], + [120.42338, 30.902884], + [120.35809, 30.886964], + [120.371025, 30.948575], + [120.316206, 30.933689], + [120.223816, 30.926502], + [120.149903, 30.937283], + [120.111099, 30.955761], + [120.052584, 31.00553], + [120.001461, 31.027071], + [119.988527, 31.059375], + [119.946027, 31.106016], + [119.921389, 31.170045], + [119.878274, 31.160828], + [119.827151, 31.174142], + [119.809904, 31.148536], + [119.779723, 31.17875], + [119.715666, 31.169533], + [119.705811, 31.152634], + [119.678093, 31.167997], + [119.623891, 31.130096], + [119.649144, 31.104991], + [119.629434, 31.085517], + [119.633746, 31.019379], + [119.580159, 30.967051], + [119.582007, 30.932149], + [119.563529, 30.919315], + [119.557369, 30.874124], + [119.575847, 30.829939], + [119.55429, 30.825828], + [119.527188, 30.77905], + [119.479761, 30.772365], + [119.482841, 30.704467], + [119.444652, 30.650422], + [119.408312, 30.645274], + [119.39045, 30.685941], + [119.343022, 30.664322], + [119.323312, 30.630341], + [119.238929, 30.609225], + [119.265414, 30.574709], + [119.237081, 30.546881], + [119.272189, 30.510281], + [119.326392, 30.532964], + [119.336247, 30.508734], + [119.335015, 30.448389], + [119.36766, 30.38491], + [119.402768, 30.374584], + [119.349182, 30.349281], + [119.326392, 30.372002], + [119.277117, 30.341018], + [119.246936, 30.341018], + [119.236465, 30.297106], + [119.201356, 30.290905], + [119.126828, 30.304856], + [119.091719, 30.323972], + [119.06277, 30.304856], + [118.988857, 30.332237], + [118.954365, 30.360126], + [118.880452, 30.31519], + [118.877988, 30.282637], + [118.905089, 30.216464], + [118.929727, 30.2025], + [118.852735, 30.166805], + [118.852119, 30.149729], + [118.895234, 30.148694], + [118.873677, 30.11505], + [118.878604, 30.064822], + [118.902626, 30.029078], + [118.894619, 29.937845], + [118.838568, 29.934733], + [118.841032, 29.891159], + [118.740634, 29.814859], + [118.744945, 29.73902], + [118.700598, 29.706277], + [118.647011, 29.64336], + [118.61991, 29.654282], + [118.573714, 29.638159], + [118.532446, 29.588731], + [118.500417, 29.57572], + [118.496106, 29.519492], + [118.381541, 29.504909], + [118.347664, 29.474174], + [118.329802, 29.495012], + [118.306396, 29.479384], + [118.316252, 29.422581], + [118.248498, 29.431443], + [118.193064, 29.395472], + [118.205382, 29.343839], + [118.166578, 29.314099], + [118.178281, 29.297921], + [118.138861, 29.283828], + [118.077883, 29.290614], + [118.073571, 29.216993], + [118.042159, 29.210202], + [118.027992, 29.167882], + [118.045238, 29.149068], + [118.037847, 29.102017], + [118.076035, 29.074822], + [118.066796, 29.053898], + [118.097593, 28.998952], + [118.115455, 29.009944], + [118.115455, 29.009944], + [118.133933, 28.983771], + [118.165346, 28.986912], + [118.227556, 28.942406], + [118.195527, 28.904167], + [118.270056, 28.918836], + [118.300237, 28.826075], + [118.364295, 28.813491], + [118.403099, 28.702791], + [118.428352, 28.681267], + [118.428352, 28.617193], + [118.428352, 28.617193], + [118.412338, 28.55676], + [118.4302, 28.515225], + [118.414802, 28.497344], + [118.474548, 28.478934], + [118.456686, 28.424738], + [118.432048, 28.402104], + [118.455454, 28.384204], + [118.480091, 28.327325], + [118.433896, 28.288335] + ] + ], + [ + [ + [122.163408, 29.988137], + [122.239785, 29.962735], + [122.279205, 29.937326], + [122.322321, 29.940438], + [122.341415, 29.976733], + [122.343879, 30.020269], + [122.310002, 30.039958], + [122.290908, 30.074663], + [122.301379, 30.086574], + [122.293988, 30.100554], + [122.152938, 30.113497], + [122.095655, 30.158008], + [122.048844, 30.147141], + [121.955221, 30.183878], + [121.934895, 30.161631], + [121.983554, 30.100554], + [121.989714, 30.077252], + [121.978011, 30.059125], + [122.027902, 29.991247], + [122.106742, 30.005759], + [122.118445, 29.986582], + [122.163408, 29.988137] + ] + ], + [ + [ + [122.213915, 30.186464], + [122.178807, 30.199396], + [122.152938, 30.19112], + [122.143698, 30.163183], + [122.168336, 30.138343], + [122.213915, 30.186464] + ] + ], + [ + [ + [122.229314, 29.711995], + [122.210836, 29.700559], + [122.269966, 29.685482], + [122.231162, 29.710435], + [122.229314, 29.711995] + ] + ], + [ + [ + [122.427646, 30.738422], + [122.427031, 30.697777], + [122.532972, 30.696748], + [122.528045, 30.725047], + [122.475074, 30.714243], + [122.445509, 30.745109], + [122.427646, 30.738422] + ] + ], + [ + [ + [122.162793, 30.329654], + [122.058083, 30.291938], + [122.154169, 30.244903], + [122.231778, 30.234562], + [122.247176, 30.30124], + [122.228082, 30.329654], + [122.191126, 30.329654], + [122.176343, 30.351863], + [122.162793, 30.329654] + ] + ], + [ + [ + [122.317393, 30.249556], + [122.277973, 30.242835], + [122.358661, 30.236113], + [122.365437, 30.255242], + [122.417175, 30.238699], + [122.40732, 30.272817], + [122.333408, 30.272817], + [122.317393, 30.249556] + ] + ], + [ + [ + [122.026054, 29.178333], + [122.013119, 29.151681], + [122.056851, 29.158476], + [122.075945, 29.176243], + [122.036525, 29.20759], + [122.026054, 29.178333] + ] + ], + [ + [ + [122.372212, 29.893234], + [122.386379, 29.834069], + [122.415944, 29.828877], + [122.401777, 29.869884], + [122.433806, 29.883376], + [122.43319, 29.919173], + [122.411632, 29.951846], + [122.398081, 29.9394], + [122.351886, 29.959105], + [122.330944, 29.937845], + [122.338951, 29.911911], + [122.353734, 29.89946], + [122.362973, 29.894272], + [122.372212, 29.893234] + ] + ], + [ + [ + [122.43011, 30.408655], + [122.432574, 30.445294], + [122.37406, 30.461802], + [122.277973, 30.471603], + [122.281669, 30.418461], + [122.318625, 30.407106], + [122.352502, 30.422074], + [122.43011, 30.408655] + ] + ], + [ + [ + [121.837577, 28.770484], + [121.86283, 28.782024], + [121.861598, 28.814016], + [121.837577, 28.770484] + ] + ], + [ + [ + [122.265038, 29.84549], + [122.221307, 29.832512], + [122.248408, 29.804473], + [122.310002, 29.766557], + [122.325401, 29.781621], + [122.299531, 29.819532], + [122.319241, 29.829397], + [122.265038, 29.84549] + ] + ], + [ + [ + [121.790765, 29.082144], + [121.832649, 29.050236], + [121.84312, 29.082144], + [121.82033, 29.099402], + [121.790765, 29.082144] + ] + ], + [ + [ + [121.201311, 27.623328], + [121.197616, 27.618025], + [121.198848, 27.616964], + [121.203775, 27.625979], + [121.201311, 27.623328] + ] + ], + [ + [ + [121.943518, 30.776993], + [121.968156, 30.688514], + [121.997105, 30.658659], + [122.087032, 30.602014], + [122.133227, 30.595317], + [122.075329, 30.647848], + [122.011271, 30.66947], + [121.992793, 30.695204], + [121.987866, 30.753338], + [121.970004, 30.789333], + [121.943518, 30.776993] + ] + ], + [ + [ + [121.889315, 28.471569], + [121.918881, 28.497344], + [121.881924, 28.502603], + [121.889315, 28.471569] + ] + ], + [ + [ + [122.182503, 29.650642], + [122.211452, 29.692241], + [122.200365, 29.712515], + [122.146778, 29.749412], + [122.13138, 29.788893], + [122.083952, 29.78318], + [122.047612, 29.719791], + [122.074097, 29.701599], + [122.095655, 29.716673], + [122.138155, 29.662083], + [122.182503, 29.650642] + ] + ], + [ + [ + [122.461523, 29.944068], + [122.459675, 29.944586], + [122.460291, 29.947179], + [122.451668, 29.943031], + [122.451052, 29.940956], + [122.450436, 29.940956], + [122.449204, 29.9394], + [122.4529, 29.936807], + [122.452284, 29.935252], + [122.45598, 29.926435], + [122.457827, 29.927472], + [122.462755, 29.927991], + [122.467067, 29.928509], + [122.459059, 29.938882], + [122.461523, 29.944068] + ] + ], + [ + [ + [122.570544, 30.644244], + [122.559457, 30.679764], + [122.546523, 30.651967], + [122.570544, 30.644244] + ] + ], + [ + [ + [121.869605, 28.423685], + [121.910873, 28.44], + [121.889931, 28.45105], + [121.869605, 28.423685] + ] + ], + [ + [ + [122.065474, 30.179739], + [122.055619, 30.200431], + [122.017431, 30.186464], + [122.025438, 30.161631], + [122.065474, 30.179739] + ] + ], + [ + [ + [122.391306, 29.970512], + [122.411632, 30.025969], + [122.378371, 30.023896], + [122.3679, 29.980361], + [122.391306, 29.970512] + ] + ], + [ + [ + [121.850511, 29.977251], + [121.874533, 29.964809], + [121.933047, 29.994875], + [121.924424, 30.052391], + [121.88562, 30.094859], + [121.848663, 30.101072], + [121.84004, 30.047211], + [121.844968, 29.982953], + [121.850511, 29.977251] + ] + ], + [ + [ + [121.066421, 27.478475], + [121.066421, 27.461483], + [121.107073, 27.443958], + [121.067036, 27.478475], + [121.066421, 27.478475] + ] + ], + [ + [ + [121.952141, 29.187738], + [121.979243, 29.160043], + [121.976779, 29.191918], + [121.952141, 29.187738] + ] + ], + [ + [ + [122.038373, 29.759284], + [122.011271, 29.746294], + [122.02975, 29.716673], + [122.038373, 29.759284] + ] + ], + [ + [ + [121.940438, 30.114533], + [121.910257, 30.089163], + [121.945982, 30.064304], + [121.962612, 30.106249], + [121.940438, 30.114533] + ] + ], + [ + [ + [121.957685, 30.287804], + [122.0008, 30.308473], + [121.989098, 30.339985], + [121.94167, 30.33327], + [121.921344, 30.30744], + [121.957685, 30.287804] + ] + ], + [ + [ + [122.192974, 29.965327], + [122.163408, 29.988137], + [122.152322, 29.97103], + [122.154169, 29.97103], + [122.155401, 29.970512], + [122.18435, 29.955476], + [122.192974, 29.965327] + ] + ], + [ + [ + [122.287828, 29.723949], + [122.301379, 29.748373], + [122.258263, 29.753569], + [122.241633, 29.784738], + [122.2133, 29.771752], + [122.251488, 29.731225], + [122.287828, 29.723949] + ] + ], + [ + [ + [121.134174, 27.787051], + [121.134174, 27.785992], + [121.13479, 27.787051], + [121.134174, 27.787051] + ] + ], + [ + [ + [122.760254, 30.141966], + [122.784275, 30.130062], + [122.781196, 30.13265], + [122.778116, 30.13679], + [122.770725, 30.138861], + [122.763333, 30.141966], + [122.762101, 30.142484], + [122.760254, 30.141966] + ] + ], + [ + [ + [122.264423, 30.269716], + [122.253952, 30.237147], + [122.315545, 30.250073], + [122.300147, 30.271266], + [122.264423, 30.269716] + ] + ], + [ + [ + [122.282901, 29.860542], + [122.30877, 29.849642], + [122.343263, 29.860542], + [122.343263, 29.882857], + [122.301379, 29.883895], + [122.282901, 29.860542] + ] + ], + [ + [ + [122.781196, 30.694175], + [122.799674, 30.716301], + [122.778732, 30.729677], + [122.757174, 30.713728], + [122.781196, 30.694175] + ] + ], + [ + [ + [121.098449, 27.937311], + [121.152652, 27.961629], + [121.120623, 27.986471], + [121.0695, 27.984357], + [121.038087, 27.948942], + [121.098449, 27.937311] + ] + ], + [ + [ + [121.185913, 27.963215], + [121.237652, 27.988056], + [121.197616, 28.000739], + [121.17113, 27.978543], + [121.185913, 27.963215] + ] + ], + [ + [ + [122.454132, 29.956513], + [122.447972, 29.955994], + [122.445509, 29.952365], + [122.446741, 29.951327], + [122.447972, 29.947698], + [122.459059, 29.950809], + [122.458443, 29.951846], + [122.455364, 29.955994], + [122.454132, 29.956513] + ] + ], + [ + [ + [122.836014, 30.698806], + [122.831087, 30.728648], + [122.807681, 30.714243], + [122.836014, 30.698806] + ] + ], + [ + [ + [122.200365, 29.969475], + [122.233626, 29.946661], + [122.273662, 29.93214], + [122.239785, 29.960142], + [122.200365, 29.969475] + ] + ], + [ + [ + [122.029134, 29.954957], + [122.043916, 29.930584], + [122.058699, 29.955994], + [122.029134, 29.954957] + ] + ], + [ + [ + [121.044247, 27.979072], + [121.089826, 27.998625], + [121.073812, 28.007608], + [121.044247, 27.979072] + ] + ], + [ + [ + [122.471378, 29.927472], + [122.470762, 29.925916], + [122.473226, 29.925397], + [122.47261, 29.927472], + [122.471378, 29.927472] + ] + ], + [ + [ + [122.152322, 29.97103], + [122.155401, 29.970512], + [122.154169, 29.97103], + [122.152322, 29.97103] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 340000, + "name": "安徽省", + "center": [117.283042, 31.86119], + "centroid": [117.226884, 31.849254], + "childrenNum": 16, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 11, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [116.599629, 34.014324], + [116.641512, 33.978103], + [116.64336, 33.896675], + [116.631042, 33.887733], + [116.566984, 33.9081], + [116.558361, 33.881274], + [116.486296, 33.869846], + [116.437637, 33.846489], + [116.437021, 33.801246], + [116.408071, 33.805721], + [116.393905, 33.782843], + [116.316912, 33.771402], + [116.263326, 33.730101], + [116.230065, 33.735078], + [116.155536, 33.709693], + [116.132747, 33.751501], + [116.100102, 33.782843], + [116.074232, 33.781351], + [116.055754, 33.804727], + [116.05945, 33.860902], + [115.982457, 33.917039], + [116.00032, 33.965199], + [115.95782, 34.007875], + [115.904233, 34.009859], + [115.876516, 34.028708], + [115.877132, 34.002913], + [115.85003, 34.004898], + [115.846335, 34.028708], + [115.809378, 34.062428], + [115.768726, 34.061932], + [115.736082, 34.076805], + [115.705901, 34.059949], + [115.658473, 34.061437], + [115.642459, 34.03218], + [115.60735, 34.030196], + [115.579017, 33.974133], + [115.577785, 33.950307], + [115.547604, 33.874815], + [115.631988, 33.869846], + [115.614126, 33.775879], + [115.576553, 33.787817], + [115.563003, 33.772895], + [115.601807, 33.718653], + [115.601191, 33.658898], + [115.639995, 33.585143], + [115.564851, 33.576169], + [115.511264, 33.55323], + [115.463837, 33.567193], + [115.422569, 33.557219], + [115.394851, 33.506335], + [115.366518, 33.5233], + [115.345576, 33.502842], + [115.345576, 33.449928], + [115.324634, 33.457418], + [115.315395, 33.431451], + [115.328946, 33.403477], + [115.313547, 33.376994], + [115.341881, 33.370997], + [115.365286, 33.336005], + [115.361591, 33.298497], + [115.335105, 33.297997], + [115.340033, 33.260973], + [115.300613, 33.204407], + [115.303692, 33.149809], + [115.289526, 33.131769], + [115.245178, 33.135778], + [115.194671, 33.120743], + [115.168186, 33.088658], + [115.041302, 33.086653], + [114.990795, 33.102195], + [114.966158, 33.147304], + [114.932897, 33.153817], + [114.902716, 33.129764], + [114.897172, 33.086653], + [114.913187, 33.083143], + [114.925506, 33.016928], + [114.891629, 33.020441], + [114.883006, 32.990328], + [114.916266, 32.971251], + [114.943368, 32.935094], + [115.009273, 32.940117], + [115.035143, 32.932582], + [115.029599, 32.906962], + [115.139237, 32.897917], + [115.155867, 32.864747], + [115.197135, 32.856201], + [115.189744, 32.812452], + [115.211301, 32.785791], + [115.189744, 32.770695], + [115.179273, 32.726402], + [115.182968, 32.666973], + [115.20083, 32.591876], + [115.24333, 32.593388], + [115.267352, 32.578261], + [115.30554, 32.583303], + [115.304924, 32.553042], + [115.411482, 32.575235], + [115.409018, 32.549007], + [115.497713, 32.492489], + [115.5088, 32.468761], + [115.510648, 32.468761], + [115.510648, 32.468256], + [115.510648, 32.467751], + [115.509416, 32.466741], + [115.522967, 32.441997], + [115.57101, 32.419266], + [115.604271, 32.425833], + [115.626445, 32.40512], + [115.657857, 32.428864], + [115.667712, 32.409667], + [115.704669, 32.495013], + [115.742241, 32.476335], + [115.771806, 32.505108], + [115.789052, 32.468761], + [115.861117, 32.537403], + [115.891298, 32.576243], + [115.910393, 32.567165], + [115.8759, 32.542448], + [115.845719, 32.501575], + [115.883291, 32.487946], + [115.865429, 32.458662], + [115.899306, 32.390971], + [115.912856, 32.227596], + [115.941805, 32.166318], + [115.922095, 32.049725], + [115.928871, 32.003046], + [115.909161, 31.94314], + [115.920248, 31.920285], + [115.894994, 31.8649], + [115.893762, 31.832365], + [115.914704, 31.814567], + [115.886371, 31.776418], + [115.851878, 31.786593], + [115.808147, 31.770313], + [115.808147, 31.770313], + [115.767495, 31.78761], + [115.731154, 31.76726], + [115.676336, 31.778453], + [115.553764, 31.69549], + [115.534054, 31.698545], + [115.495249, 31.673083], + [115.476771, 31.643028], + [115.485394, 31.608885], + [115.439815, 31.588496], + [115.415793, 31.525771], + [115.371446, 31.495668], + [115.389924, 31.450241], + [115.373909, 31.405813], + [115.393004, 31.389977], + [115.372062, 31.349098], + [115.40717, 31.337854], + [115.443511, 31.344498], + [115.473076, 31.265242], + [115.507568, 31.267799], + [115.539597, 31.231985], + [115.540213, 31.194621], + [115.585793, 31.143926], + [115.603655, 31.17363], + [115.655394, 31.211002], + [115.700973, 31.201276], + [115.778582, 31.112164], + [115.797676, 31.128047], + [115.837712, 31.127022], + [115.867277, 31.147512], + [115.887603, 31.10909], + [115.939958, 31.071678], + [115.938726, 31.04707], + [116.006479, 31.034764], + [116.015102, 31.011685], + [116.058834, 31.012711], + [116.071769, 30.956787], + [116.03974, 30.957813], + [115.976298, 30.931636], + [115.932566, 30.889532], + [115.865429, 30.864364], + [115.848799, 30.828397], + [115.863581, 30.815549], + [115.851262, 30.756938], + [115.782893, 30.751795], + [115.762567, 30.685426], + [115.81369, 30.637035], + [115.819234, 30.597893], + [115.848799, 30.602014], + [115.876516, 30.582438], + [115.887603, 30.542758], + [115.910393, 30.519046], + [115.894994, 30.452517], + [115.921479, 30.416397], + [115.885139, 30.379747], + [115.91532, 30.337919], + [115.903001, 30.31364], + [115.985537, 30.290905], + [115.997856, 30.252657], + [116.065609, 30.204569], + [116.055754, 30.180774], + [116.088399, 30.110391], + [116.078544, 30.062233], + [116.091479, 30.036331], + [116.073616, 29.969993], + [116.128435, 29.897904], + [116.13521, 29.819532], + [116.172783, 29.828358], + [116.227601, 29.816936], + [116.250391, 29.785777], + [116.280572, 29.788893], + [116.342782, 29.835626], + [116.467818, 29.896347], + [116.525716, 29.897385], + [116.552201, 29.909836], + [116.585462, 30.045657], + [116.620571, 30.073109], + [116.666766, 30.076734], + [116.720353, 30.053945], + [116.747454, 30.057053], + [116.783794, 30.030632], + [116.802889, 29.99643], + [116.830606, 30.004723], + [116.83307, 29.95755], + [116.868794, 29.980361], + [116.900207, 29.949253], + [116.882961, 29.893753], + [116.780715, 29.792529], + [116.762237, 29.802396], + [116.673541, 29.709916], + [116.698795, 29.707836], + [116.70557, 29.69692], + [116.706802, 29.6964], + [116.704954, 29.688602], + [116.680317, 29.681323], + [116.651983, 29.637118], + [116.716657, 29.590813], + [116.721585, 29.564789], + [116.760389, 29.599139], + [116.780715, 29.569994], + [116.849084, 29.57624], + [116.873722, 29.609546], + [116.939627, 29.648561], + [116.974736, 29.657403], + [116.996294, 29.683403], + [117.041873, 29.680803], + [117.112706, 29.711995], + [117.108395, 29.75201], + [117.136728, 29.775388], + [117.123177, 29.798761], + [117.073286, 29.831992], + [117.127489, 29.86158], + [117.129952, 29.89946], + [117.171836, 29.920729], + [117.2168, 29.926953], + [117.246365, 29.915023], + [117.261763, 29.880781], + [117.25314, 29.834588], + [117.29256, 29.822647], + [117.338756, 29.848085], + [117.359082, 29.812782], + [117.382487, 29.840818], + [117.415132, 29.85068], + [117.408973, 29.802396], + [117.455168, 29.749412], + [117.453936, 29.688082], + [117.490277, 29.660003], + [117.530313, 29.654282], + [117.523538, 29.630356], + [117.543248, 29.588731], + [117.608537, 29.591333], + [117.647957, 29.614749], + [117.678754, 29.595496], + [117.690457, 29.555939], + [117.729877, 29.550213], + [117.795167, 29.570515], + [117.872775, 29.54761], + [117.933753, 29.549172], + [118.00397, 29.578322], + [118.042774, 29.566351], + [118.050782, 29.542924], + [118.095129, 29.534072], + [118.143788, 29.489803], + [118.127774, 29.47209], + [118.136397, 29.418932], + [118.193064, 29.395472], + [118.248498, 29.431443], + [118.316252, 29.422581], + [118.306396, 29.479384], + [118.329802, 29.495012], + [118.347664, 29.474174], + [118.381541, 29.504909], + [118.496106, 29.519492], + [118.500417, 29.57572], + [118.532446, 29.588731], + [118.573714, 29.638159], + [118.61991, 29.654282], + [118.647011, 29.64336], + [118.700598, 29.706277], + [118.744945, 29.73902], + [118.740634, 29.814859], + [118.841032, 29.891159], + [118.838568, 29.934733], + [118.894619, 29.937845], + [118.902626, 30.029078], + [118.878604, 30.064822], + [118.873677, 30.11505], + [118.895234, 30.148694], + [118.852119, 30.149729], + [118.852735, 30.166805], + [118.929727, 30.2025], + [118.905089, 30.216464], + [118.877988, 30.282637], + [118.880452, 30.31519], + [118.954365, 30.360126], + [118.988857, 30.332237], + [119.06277, 30.304856], + [119.091719, 30.323972], + [119.126828, 30.304856], + [119.201356, 30.290905], + [119.236465, 30.297106], + [119.246936, 30.341018], + [119.277117, 30.341018], + [119.326392, 30.372002], + [119.349182, 30.349281], + [119.402768, 30.374584], + [119.36766, 30.38491], + [119.335015, 30.448389], + [119.336247, 30.508734], + [119.326392, 30.532964], + [119.272189, 30.510281], + [119.237081, 30.546881], + [119.265414, 30.574709], + [119.238929, 30.609225], + [119.323312, 30.630341], + [119.343022, 30.664322], + [119.39045, 30.685941], + [119.408312, 30.645274], + [119.444652, 30.650422], + [119.482841, 30.704467], + [119.479761, 30.772365], + [119.527188, 30.77905], + [119.55429, 30.825828], + [119.575847, 30.829939], + [119.557369, 30.874124], + [119.563529, 30.919315], + [119.582007, 30.932149], + [119.580159, 30.967051], + [119.633746, 31.019379], + [119.629434, 31.085517], + [119.649144, 31.104991], + [119.623891, 31.130096], + [119.599869, 31.10909], + [119.532732, 31.159291], + [119.461283, 31.156219], + [119.439109, 31.177214], + [119.391682, 31.174142], + [119.360269, 31.213049], + [119.374435, 31.258591], + [119.350414, 31.301043], + [119.338095, 31.259103], + [119.294363, 31.263195], + [119.266646, 31.250405], + [119.198277, 31.270357], + [119.197661, 31.295418], + [119.158241, 31.294907], + [119.107118, 31.250917], + [119.10527, 31.235055], + [119.014727, 31.241707], + [118.984546, 31.237102], + [118.870597, 31.242219], + [118.794836, 31.229426], + [118.756648, 31.279564], + [118.726467, 31.282121], + [118.720924, 31.322518], + [118.745561, 31.372606], + [118.767735, 31.363919], + [118.824401, 31.375672], + [118.852119, 31.393553], + [118.883532, 31.500261], + [118.857046, 31.506384], + [118.865669, 31.519139], + [118.885995, 31.519139], + [118.881684, 31.564023], + [118.858894, 31.623665], + [118.802844, 31.619078], + [118.773894, 31.682759], + [118.748025, 31.675629], + [118.736322, 31.633347], + [118.643315, 31.649651], + [118.643315, 31.671555], + [118.697518, 31.709747], + [118.653786, 31.73011], + [118.641467, 31.75861], + [118.571866, 31.746397], + [118.5577, 31.73011], + [118.521975, 31.743343], + [118.533678, 31.76726], + [118.481939, 31.778453], + [118.504729, 31.841516], + [118.466541, 31.857784], + [118.472084, 31.879639], + [118.363679, 31.930443], + [118.389548, 31.985281], + [118.394476, 32.076098], + [118.433896, 32.086746], + [118.501033, 32.121726], + [118.49549, 32.165304], + [118.510888, 32.194176], + [118.643931, 32.209875], + [118.674728, 32.250375], + [118.657482, 32.30148], + [118.703061, 32.328792], + [118.685199, 32.403604], + [118.691359, 32.472295], + [118.628533, 32.467751], + [118.592192, 32.481383], + [118.608823, 32.536899], + [118.564475, 32.562122], + [118.568787, 32.585825], + [118.59712, 32.600951], + [118.632844, 32.578261], + [118.658714, 32.594397], + [118.688895, 32.588346], + [118.719076, 32.614059], + [118.719076, 32.614059], + [118.73509, 32.58885], + [118.757264, 32.603976], + [118.784981, 32.582295], + [118.820706, 32.60448], + [118.84288, 32.56767], + [118.908169, 32.59238], + [118.890923, 32.553042], + [118.92172, 32.557078], + [118.922336, 32.557078], + [118.92172, 32.557078], + [118.922336, 32.557078], + [118.975923, 32.505108], + [119.041212, 32.515201], + [119.084944, 32.452602], + [119.142226, 32.499556], + [119.168096, 32.536394], + [119.152697, 32.557582], + [119.22045, 32.576748], + [119.230921, 32.607001], + [119.208748, 32.641276], + [119.211827, 32.708275], + [119.184726, 32.825529], + [119.113277, 32.823014], + [119.054763, 32.8748], + [119.020886, 32.955685], + [118.993169, 32.958196], + [118.934039, 32.93861], + [118.892771, 32.941121], + [118.89585, 32.957694], + [118.89585, 32.957694], + [118.849039, 32.956689], + [118.846575, 32.922034], + [118.821322, 32.920527], + [118.810235, 32.853687], + [118.743097, 32.853184], + [118.743097, 32.853184], + [118.73817, 32.772708], + [118.756648, 32.737477], + [118.707373, 32.72036], + [118.642699, 32.744525], + [118.572482, 32.719856], + [118.560163, 32.729926], + [118.483787, 32.721367], + [118.450526, 32.743518], + [118.411106, 32.715828], + [118.375382, 32.718849], + [118.363063, 32.770695], + [118.334114, 32.761637], + [118.300237, 32.783275], + [118.301469, 32.846145], + [118.250346, 32.848157], + [118.2331, 32.914498], + [118.252194, 32.936601], + [118.291614, 32.946143], + [118.303933, 32.96874], + [118.26944, 32.969242], + [118.244803, 32.998359], + [118.243571, 33.027967], + [118.219549, 33.114227], + [118.217085, 33.191888], + [118.178281, 33.217926], + [118.149332, 33.169348], + [118.038463, 33.134776], + [118.037231, 33.152314], + [117.988572, 33.180869], + [117.977485, 33.226437], + [117.942376, 33.224936], + [117.939297, 33.262475], + [117.974405, 33.279487], + [117.992883, 33.333005], + [118.029224, 33.374995], + [118.016905, 33.402978], + [118.027376, 33.455421], + [118.050782, 33.491863], + [118.107448, 33.475391], + [118.117919, 33.594615], + [118.112376, 33.617045], + [118.16781, 33.663381], + [118.161035, 33.735576], + [118.117919, 33.766427], + [118.065564, 33.76593], + [118.019985, 33.738562], + [117.972557, 33.74951], + [117.901724, 33.720146], + [117.843826, 33.736074], + [117.791471, 33.733585], + [117.750203, 33.710688], + [117.72495, 33.74951], + [117.739732, 33.758467], + [117.759442, 33.874318], + [117.753899, 33.891211], + [117.715095, 33.879287], + [117.672595, 33.934916], + [117.671363, 33.992494], + [117.629479, 34.028708], + [117.612849, 34.000433], + [117.569117, 33.985051], + [117.543248, 34.038627], + [117.514914, 34.060941], + [117.435458, 34.028212], + [117.404045, 34.03218], + [117.357234, 34.088205], + [117.311654, 34.067882], + [117.277162, 34.078787], + [117.257452, 34.065899], + [117.192162, 34.068873], + [117.130568, 34.101586], + [117.123793, 34.128342], + [117.046801, 34.151622], + [117.025243, 34.167469], + [117.051112, 34.221425], + [116.969192, 34.283753], + [116.983359, 34.348011], + [116.960569, 34.363821], + [116.969192, 34.389012], + [116.909446, 34.408271], + [116.828142, 34.389012], + [116.782563, 34.429993], + [116.773939, 34.453683], + [116.722816, 34.472434], + [116.662454, 34.472927], + [116.592237, 34.493646], + [116.594085, 34.511894], + [116.490607, 34.573513], + [116.477057, 34.614896], + [116.432709, 34.630163], + [116.430245, 34.650843], + [116.374195, 34.640011], + [116.334159, 34.620806], + [116.32492, 34.601104], + [116.286116, 34.608986], + [116.247927, 34.551829], + [116.196804, 34.575977], + [116.191261, 34.535561], + [116.204196, 34.508442], + [116.178326, 34.496112], + [116.162312, 34.459605], + [116.178942, 34.430487], + [116.215898, 34.403333], + [116.213435, 34.382098], + [116.255934, 34.376665], + [116.301514, 34.342082], + [116.357564, 34.319843], + [116.372347, 34.26595], + [116.409303, 34.273863], + [116.409303, 34.273863], + [116.456731, 34.268917], + [116.516477, 34.296114], + [116.562056, 34.285731], + [116.582382, 34.266444], + [116.545426, 34.241711], + [116.542962, 34.203608], + [116.565752, 34.16945], + [116.536187, 34.151127], + [116.52818, 34.122892], + [116.576223, 34.068873], + [116.576223, 34.068873], + [116.599629, 34.014324], + [116.599629, 34.014324] + ] + ], + [ + [ + [118.865669, 31.519139], + [118.857046, 31.506384], + [118.883532, 31.500261], + [118.885995, 31.519139], + [118.865669, 31.519139] + ] + ], + [ + [ + [116.698795, 29.707836], + [116.673541, 29.709916], + [116.653831, 29.694841], + [116.680317, 29.681323], + [116.704954, 29.688602], + [116.706802, 29.6964], + [116.70557, 29.69692], + [116.698795, 29.707836] + ] + ], + [ + [ + [115.5088, 32.468761], + [115.509416, 32.466741], + [115.510648, 32.467751], + [115.510648, 32.468256], + [115.510648, 32.468761], + [115.5088, 32.468761] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 350000, + "name": "福建省", + "center": [119.306239, 26.075302], + "centroid": [118.006468, 26.069925], + "childrenNum": 9, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 12, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [119.004872, 24.970009], + [118.989473, 24.973807], + [119.023966, 25.04377], + [119.016575, 25.058409], + [118.974691, 25.024792], + [118.945126, 25.028588], + [118.892155, 25.092558], + [118.974691, 25.115319], + [118.951901, 25.15162], + [118.985162, 25.168954], + [118.985162, 25.19495], + [118.942046, 25.211195], + [118.940198, 25.21715], + [118.943278, 25.221482], + [118.903242, 25.239347], + [118.900162, 25.242595], + [118.919256, 25.248008], + [118.91556, 25.256668], + [118.918024, 25.25721], + [118.956212, 25.272905], + [118.996864, 25.266411], + [118.975307, 25.237723], + [118.990089, 25.20199], + [119.055379, 25.219316], + [119.074473, 25.211195], + [119.054147, 25.168412], + [119.032589, 25.17437], + [119.028893, 25.139702], + [119.06585, 25.102855], + [119.075705, 25.099604], + [119.134219, 25.106107], + [119.107118, 25.075214], + [119.119436, 25.012861], + [119.146538, 25.056782], + [119.165632, 25.145661], + [119.137299, 25.15487], + [119.108349, 25.193867], + [119.131755, 25.223106], + [119.190269, 25.175995], + [119.231537, 25.188993], + [119.26911, 25.159746], + [119.314689, 25.190076], + [119.294979, 25.237182], + [119.331935, 25.230685], + [119.380595, 25.250173], + [119.333167, 25.287516], + [119.299291, 25.328634], + [119.247552, 25.333502], + [119.240776, 25.316733], + [119.218603, 25.368115], + [119.14469, 25.388121], + [119.151465, 25.426503], + [119.191501, 25.424341], + [119.232153, 25.442176], + [119.219834, 25.468654], + [119.256175, 25.488643], + [119.275269, 25.476758], + [119.26295, 25.428124], + [119.288204, 25.410827], + [119.353493, 25.411908], + [119.343638, 25.472436], + [119.359037, 25.521592], + [119.400921, 25.493505], + [119.45266, 25.493505], + [119.438493, 25.412449], + [119.463131, 25.448661], + [119.491464, 25.443257], + [119.48592, 25.418935], + [119.507478, 25.396231], + [119.486536, 25.369737], + [119.548746, 25.365952], + [119.578927, 25.400556], + [119.555521, 25.429205], + [119.577695, 25.445959], + [119.59063, 25.398394], + [119.582623, 25.374063], + [119.597405, 25.334584], + [119.649144, 25.342697], + [119.665159, 25.3719], + [119.656535, 25.396772], + [119.670086, 25.435691], + [119.622659, 25.434069], + [119.675014, 25.468113], + [119.682405, 25.445959], + [119.688564, 25.441095], + [119.773564, 25.395691], + [119.764325, 25.433529], + [119.804977, 25.457847], + [119.866571, 25.455145], + [119.864107, 25.469734], + [119.862875, 25.474597], + [119.811136, 25.507009], + [119.81668, 25.532393], + [119.861027, 25.531313], + [119.883817, 25.546432], + [119.831462, 25.579905], + [119.843165, 25.597717], + [119.790194, 25.614447], + [119.785883, 25.66786], + [119.700267, 25.616606], + [119.683637, 25.592859], + [119.716898, 25.551292], + [119.715666, 25.51187], + [119.680557, 25.497827], + [119.675014, 25.475137], + [119.634362, 25.475137], + [119.611572, 25.519972], + [119.616499, 25.556691], + [119.586934, 25.59232], + [119.534579, 25.585303], + [119.541355, 25.6247], + [119.478529, 25.631715], + [119.472986, 25.662466], + [119.543819, 25.684581], + [119.602949, 25.68512], + [119.602949, 25.714779], + [119.626354, 25.723406], + [119.628202, 25.87212], + [119.638057, 25.889888], + [119.69534, 25.904424], + [119.723673, 26.011503], + [119.700267, 26.032477], + [119.668854, 26.026024], + [119.654688, 26.090002], + [119.618963, 26.11956], + [119.604181, 26.168985], + [119.664543, 26.202282], + [119.676246, 26.262943], + [119.7711, 26.285481], + [119.802513, 26.268846], + [119.806825, 26.307479], + [119.845013, 26.323036], + [119.862875, 26.307479], + [119.904143, 26.308552], + [119.95465, 26.352534], + [119.946027, 26.374519], + [119.893672, 26.355752], + [119.835774, 26.434019], + [119.83639, 26.454381], + [119.788346, 26.583435], + [119.740303, 26.610727], + [119.670086, 26.618218], + [119.605412, 26.595744], + [119.577695, 26.622498], + [119.619579, 26.649246], + [119.637441, 26.703256], + [119.664543, 26.726243], + [119.711354, 26.686681], + [119.833926, 26.690959], + [119.864107, 26.671174], + [119.873962, 26.642827], + [119.908455, 26.661547], + [119.899216, 26.693098], + [119.938636, 26.747088], + [119.942947, 26.784492], + [120.052584, 26.786629], + [120.061824, 26.768997], + [119.99407, 26.720363], + [119.969433, 26.686681], + [119.972512, 26.654594], + [119.949107, 26.624638], + [119.901679, 26.624638], + [119.851788, 26.595209], + [119.828383, 26.524013], + [119.867187, 26.509019], + [119.947875, 26.56042], + [119.93802, 26.576478], + [119.967585, 26.597885], + [120.007621, 26.595744], + [120.063671, 26.627848], + [120.093852, 26.613938], + [120.1382, 26.638012], + [120.110483, 26.692563], + [120.162222, 26.717691], + [120.151135, 26.750829], + [120.106787, 26.752966], + [120.136352, 26.797847], + [120.103707, 26.794642], + [120.102476, 26.82669], + [120.073526, 26.823485], + [120.054432, 26.863533], + [120.117874, 26.882751], + [120.126497, 26.920644], + [120.130193, 26.917976], + [120.1807, 26.920644], + [120.233055, 26.907837], + [120.25954, 26.982526], + [120.279866, 26.987326], + [120.275554, 27.027315], + [120.29588, 27.035845], + [120.282946, 27.089671], + [120.391967, 27.081146], + [120.403054, 27.10086], + [120.461568, 27.142407], + [120.404286, 27.204166], + [120.401822, 27.250996], + [120.430155, 27.258976], + [120.343924, 27.363199], + [120.340844, 27.399867], + [120.273091, 27.38924], + [120.26262, 27.432804], + [120.221352, 27.420055], + [120.134504, 27.420055], + [120.136968, 27.402523], + [120.096316, 27.390302], + [120.052584, 27.338747], + [120.026099, 27.344063], + [120.008237, 27.375423], + [119.960194, 27.365857], + [119.938636, 27.329709], + [119.843165, 27.300464], + [119.768636, 27.307909], + [119.782187, 27.330241], + [119.739687, 27.362668], + [119.750774, 27.373829], + [119.711354, 27.403054], + [119.685485, 27.438646], + [119.703347, 27.446613], + [119.70889, 27.514042], + [119.690412, 27.537394], + [119.659615, 27.540578], + [119.675014, 27.574534], + [119.630666, 27.582491], + [119.626354, 27.620676], + [119.644217, 27.663619], + [119.606028, 27.674749], + [119.541971, 27.666799], + [119.501319, 27.649837], + [119.501935, 27.610601], + [119.466826, 27.526249], + [119.438493, 27.508734], + [119.416935, 27.539517], + [119.360269, 27.524657], + [119.334399, 27.480067], + [119.285124, 27.457766], + [119.26911, 27.42218], + [119.224146, 27.416868], + [119.14777, 27.424836], + [119.121284, 27.438115], + [119.129907, 27.475289], + [119.092335, 27.466262], + [119.03998, 27.478475], + [119.020886, 27.498118], + [118.983314, 27.498649], + [118.986393, 27.47582], + [118.955597, 27.4498], + [118.907553, 27.460952], + [118.869365, 27.540047], + [118.909401, 27.568168], + [118.913713, 27.619616], + [118.879836, 27.667859], + [118.873677, 27.733563], + [118.829329, 27.847921], + [118.818242, 27.916689], + [118.753568, 27.947885], + [118.730163, 27.970615], + [118.733858, 28.027684], + [118.719076, 28.063601], + [118.767735, 28.10584], + [118.802228, 28.117453], + [118.805923, 28.154923], + [118.771431, 28.188687], + [118.804075, 28.207675], + [118.802228, 28.240368], + [118.756032, 28.252493], + [118.719692, 28.312047], + [118.699366, 28.309939], + [118.674728, 28.27147], + [118.651322, 28.277267], + [118.595272, 28.258292], + [118.588497, 28.282538], + [118.493026, 28.262509], + [118.490562, 28.238259], + [118.444367, 28.253548], + [118.433896, 28.288335], + [118.424041, 28.291497], + [118.314404, 28.221913], + [118.339041, 28.193962], + [118.375382, 28.186577], + [118.361215, 28.155978], + [118.356288, 28.091586], + [118.242339, 28.075746], + [118.199839, 28.049869], + [118.153644, 28.062016], + [118.120999, 28.041946], + [118.129006, 28.017118], + [118.094513, 28.003909], + [118.096977, 27.970615], + [117.999043, 27.991227], + [117.965166, 27.962687], + [117.942992, 27.974315], + [117.910963, 27.949471], + [117.856145, 27.94577], + [117.78716, 27.896063], + [117.788392, 27.855858], + [117.740348, 27.800286], + [117.704624, 27.834162], + [117.68245, 27.823577], + [117.649805, 27.851625], + [117.609769, 27.863265], + [117.556182, 27.966387], + [117.52169, 27.982243], + [117.477958, 27.930966], + [117.453936, 27.939955], + [117.407741, 27.893948], + [117.366473, 27.88231], + [117.341836, 27.855858], + [117.334444, 27.8876], + [117.280242, 27.871201], + [117.276546, 27.847921], + [117.303031, 27.833103], + [117.296256, 27.764282], + [117.245133, 27.71926], + [117.205097, 27.714492], + [117.204481, 27.683759], + [117.174916, 27.677399], + [117.114554, 27.692238], + [117.096076, 27.667329], + [117.11209, 27.645596], + [117.094228, 27.627569], + [117.065279, 27.665739], + [117.040641, 27.669979], + [117.003685, 27.625449], + [117.024627, 27.592569], + [117.01662, 27.563393], + [117.054808, 27.5427], + [117.076982, 27.566046], + [117.103467, 27.533149], + [117.110242, 27.458828], + [117.133032, 27.42218], + [117.107163, 27.393491], + [117.104699, 27.330773], + [117.140423, 27.322798], + [117.136728, 27.303123], + [117.171836, 27.29036], + [117.149662, 27.241419], + [117.044953, 27.146667], + [117.05296, 27.100327], + [116.967344, 27.061962], + [116.936547, 27.019319], + [116.910062, 27.034779], + [116.851548, 27.009188], + [116.817671, 27.018252], + [116.679085, 26.978259], + [116.632889, 26.933984], + [116.602092, 26.888623], + [116.548506, 26.84004], + [116.543578, 26.803723], + [116.557745, 26.773806], + [116.515245, 26.720898], + [116.520172, 26.684543], + [116.566368, 26.650315], + [116.553433, 26.575942], + [116.539267, 26.559349], + [116.597165, 26.512768], + [116.610716, 26.476882], + [116.638433, 26.477418], + [116.608252, 26.429732], + [116.601476, 26.372911], + [116.553433, 26.365404], + [116.553433, 26.400253], + [116.519557, 26.410437], + [116.499846, 26.361651], + [116.459194, 26.345026], + [116.437021, 26.308016], + [116.412999, 26.297822], + [116.385282, 26.238253], + [116.400064, 26.202819], + [116.392057, 26.171133], + [116.435789, 26.159854], + [116.476441, 26.172745], + [116.489375, 26.113649], + [116.384666, 26.030864], + [116.360028, 25.991601], + [116.369883, 25.963088], + [116.326152, 25.956631], + [116.303362, 25.924341], + [116.258398, 25.902809], + [116.225138, 25.908731], + [116.17771, 25.894195], + [116.132131, 25.860273], + [116.131515, 25.824185], + [116.18079, 25.778926], + [116.129667, 25.758985], + [116.106877, 25.701299], + [116.067457, 25.703995], + [116.068689, 25.646282], + [116.041588, 25.62416], + [116.063145, 25.56317], + [116.040356, 25.548052], + [116.03666, 25.514571], + [116.005247, 25.490264], + [116.023109, 25.435691], + [115.992928, 25.374063], + [116.008327, 25.319437], + [115.987385, 25.290221], + [115.949813, 25.292386], + [115.930719, 25.236099], + [115.855574, 25.20957], + [115.860501, 25.165704], + [115.888219, 25.128866], + [115.880212, 25.092016], + [115.908545, 25.084428], + [115.928255, 25.050276], + [115.873436, 25.019911], + [115.925175, 24.960786], + [115.870356, 24.959701], + [115.89253, 24.936911], + [115.907929, 24.923343], + [115.985537, 24.899461], + [116.015102, 24.905975], + [116.068073, 24.850053], + [116.153073, 24.846795], + [116.191877, 24.877203], + [116.221442, 24.829959], + [116.251007, 24.82507], + [116.244232, 24.793563], + [116.297202, 24.801712], + [116.345862, 24.828872], + [116.363724, 24.87123], + [116.395137, 24.877746], + [116.417927, 24.840821], + [116.381586, 24.82507], + [116.375427, 24.803885], + [116.419158, 24.767482], + [116.416079, 24.744113], + [116.44626, 24.714216], + [116.485064, 24.720196], + [116.517709, 24.652225], + [116.506622, 24.621218], + [116.530027, 24.604895], + [116.570679, 24.621762], + [116.600861, 24.654401], + [116.623034, 24.64189], + [116.667382, 24.658752], + [116.777635, 24.679418], + [116.815207, 24.654944], + [116.761005, 24.583128], + [116.759157, 24.545572], + [116.796729, 24.502014], + [116.83307, 24.496568], + [116.860787, 24.460075], + [116.839229, 24.442097], + [116.903903, 24.369614], + [116.895895, 24.350533], + [116.919301, 24.321087], + [116.914374, 24.287817], + [116.938395, 24.28127], + [116.933468, 24.220157], + [116.956257, 24.216883], + [116.998757, 24.179217], + [116.9347, 24.126794], + [116.930388, 24.064514], + [116.953178, 24.008218], + [116.981511, 23.999471], + [116.976583, 23.931659], + [116.955642, 23.922359], + [116.981511, 23.855602], + [117.012308, 23.855054], + [117.019083, 23.801952], + [117.048032, 23.758687], + [117.055424, 23.694038], + [117.123793, 23.647448], + [117.147199, 23.654027], + [117.192778, 23.629356], + [117.192778, 23.5619], + [117.291328, 23.571225], + [117.302415, 23.550379], + [117.387415, 23.555317], + [117.463791, 23.584937], + [117.454552, 23.628259], + [117.493357, 23.642514], + [117.501364, 23.70445], + [117.54448, 23.715956], + [117.601762, 23.70171], + [117.660276, 23.789357], + [117.651653, 23.815093], + [117.671979, 23.878041], + [117.691073, 23.888985], + [117.762522, 23.886796], + [117.792703, 23.906494], + [117.807486, 23.947521], + [117.864768, 24.004938], + [117.910347, 24.012045], + [117.927594, 24.039922], + [117.936217, 24.100029], + [118.000275, 24.152462], + [118.019369, 24.197232], + [118.074803, 24.225615], + [118.115455, 24.229435], + [118.158571, 24.269814], + [118.112376, 24.357075], + [118.081579, 24.35653], + [118.088354, 24.408858], + [118.048934, 24.418122], + [118.084042, 24.528695], + [118.121615, 24.570067], + [118.150564, 24.583673], + [118.169042, 24.559725], + [118.242955, 24.51236], + [118.375382, 24.536317], + [118.363679, 24.567889], + [118.444367, 24.614689], + [118.512736, 24.60816], + [118.557084, 24.572788], + [118.558316, 24.51236], + [118.614366, 24.521617], + [118.680272, 24.58204], + [118.687047, 24.63373], + [118.661178, 24.622306], + [118.652554, 24.653857], + [118.670417, 24.679962], + [118.703677, 24.665278], + [118.778822, 24.743569], + [118.786213, 24.77672], + [118.650707, 24.808774], + [118.647627, 24.843536], + [118.702445, 24.865258], + [118.69875, 24.848967], + [118.748641, 24.84245], + [118.807771, 24.870687], + [118.834256, 24.854397], + [118.864437, 24.887518], + [118.933423, 24.870687], + [118.988857, 24.878831], + [118.987009, 24.898375], + [118.932807, 24.906518], + [118.91864, 24.932569], + [118.945741, 24.954275], + [119.014111, 24.941252], + [119.032589, 24.961328], + [119.032589, 24.961871], + [119.007335, 24.963499], + [119.004872, 24.970009] + ] + ], + [ + [ + [118.412338, 24.514538], + [118.374766, 24.458986], + [118.318715, 24.486765], + [118.298389, 24.477506], + [118.31194, 24.424661], + [118.282375, 24.413218], + [118.329802, 24.382152], + [118.353208, 24.415398], + [118.405563, 24.427931], + [118.457918, 24.412128], + [118.477012, 24.437738], + [118.451758, 24.506915], + [118.412338, 24.514538] + ] + ], + [ + [ + [119.471138, 25.197116], + [119.507478, 25.183036], + [119.52534, 25.157579], + [119.549362, 25.161912], + [119.566608, 25.210112], + [119.540739, 25.20199], + [119.501319, 25.21715], + [119.473601, 25.259916], + [119.44342, 25.238806], + [119.444036, 25.20199], + [119.471138, 25.197116] + ] + ], + [ + [ + [119.580159, 25.627398], + [119.611572, 25.669479], + [119.580775, 25.650059], + [119.580159, 25.627398] + ] + ], + [ + [ + [119.976824, 26.191005], + [120.016244, 26.217316], + [119.998998, 26.235569], + [119.970665, 26.217852], + [119.976824, 26.191005] + ] + ], + [ + [ + [118.230636, 24.401228], + [118.273752, 24.441007], + [118.233716, 24.445911], + [118.230636, 24.401228] + ] + ], + [ + [ + [119.906607, 26.68989], + [119.926933, 26.664756], + [119.950954, 26.692563], + [119.906607, 26.68989] + ] + ], + [ + [ + [118.204151, 24.504737], + [118.191832, 24.536861], + [118.14502, 24.560814], + [118.093281, 24.540672], + [118.068644, 24.463344], + [118.084042, 24.435559], + [118.143173, 24.420847], + [118.19368, 24.463344], + [118.204151, 24.504737] + ] + ], + [ + [ + [119.929397, 26.134067], + [119.960194, 26.146961], + [119.919542, 26.172208], + [119.929397, 26.134067] + ] + ], + [ + [ + [119.642985, 26.129231], + [119.665159, 26.155556], + [119.62697, 26.173282], + [119.606028, 26.15287], + [119.642985, 26.129231] + ] + ], + [ + [ + [120.034106, 26.488667], + [120.066751, 26.498308], + [120.071679, 26.521336], + [120.035954, 26.515981], + [120.034106, 26.488667] + ] + ], + [ + [ + [119.662079, 25.646822], + [119.673782, 25.632794], + [119.718745, 25.634952], + [119.716898, 25.664624], + [119.662079, 25.646822] + ] + ], + [ + [ + [119.760629, 26.613402], + [119.776644, 26.600025], + [119.818527, 26.616613], + [119.796354, 26.630523], + [119.760629, 26.613402] + ] + ], + [ + [ + [120.135736, 26.550784], + [120.167149, 26.571661], + [120.153598, 26.604841], + [120.117874, 26.568984], + [120.135736, 26.550784] + ] + ], + [ + [ + [120.360554, 26.916909], + [120.394431, 26.933984], + [120.363018, 26.967592], + [120.327909, 26.963858], + [120.319286, 26.944654], + [120.360554, 26.916909] + ] + ], + [ + [ + [120.150519, 26.798916], + [120.140048, 26.795176], + [120.163454, 26.798381], + [120.161606, 26.803189], + [120.150519, 26.798916] + ] + ], + [ + [ + [119.668238, 26.628383], + [119.720593, 26.635873], + [119.758781, 26.659408], + [119.748926, 26.681334], + [119.712586, 26.6685], + [119.673782, 26.680799], + [119.651608, 26.657269], + [119.668238, 26.628383] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 360000, + "name": "江西省", + "center": [115.892151, 28.676493], + "centroid": [115.732975, 27.636112], + "childrenNum": 11, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 13, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [118.193064, 29.395472], + [118.136397, 29.418932], + [118.127774, 29.47209], + [118.143788, 29.489803], + [118.095129, 29.534072], + [118.050782, 29.542924], + [118.042774, 29.566351], + [118.00397, 29.578322], + [117.933753, 29.549172], + [117.872775, 29.54761], + [117.795167, 29.570515], + [117.729877, 29.550213], + [117.690457, 29.555939], + [117.678754, 29.595496], + [117.647957, 29.614749], + [117.608537, 29.591333], + [117.543248, 29.588731], + [117.523538, 29.630356], + [117.530313, 29.654282], + [117.490277, 29.660003], + [117.453936, 29.688082], + [117.455168, 29.749412], + [117.408973, 29.802396], + [117.415132, 29.85068], + [117.382487, 29.840818], + [117.359082, 29.812782], + [117.338756, 29.848085], + [117.29256, 29.822647], + [117.25314, 29.834588], + [117.261763, 29.880781], + [117.246365, 29.915023], + [117.2168, 29.926953], + [117.171836, 29.920729], + [117.129952, 29.89946], + [117.127489, 29.86158], + [117.073286, 29.831992], + [117.123177, 29.798761], + [117.136728, 29.775388], + [117.108395, 29.75201], + [117.112706, 29.711995], + [117.041873, 29.680803], + [116.996294, 29.683403], + [116.974736, 29.657403], + [116.939627, 29.648561], + [116.873722, 29.609546], + [116.849084, 29.57624], + [116.780715, 29.569994], + [116.760389, 29.599139], + [116.721585, 29.564789], + [116.716657, 29.590813], + [116.651983, 29.637118], + [116.680317, 29.681323], + [116.653831, 29.694841], + [116.673541, 29.709916], + [116.762237, 29.802396], + [116.780715, 29.792529], + [116.882961, 29.893753], + [116.900207, 29.949253], + [116.868794, 29.980361], + [116.83307, 29.95755], + [116.830606, 30.004723], + [116.802889, 29.99643], + [116.783794, 30.030632], + [116.747454, 30.057053], + [116.720353, 30.053945], + [116.666766, 30.076734], + [116.620571, 30.073109], + [116.585462, 30.045657], + [116.552201, 29.909836], + [116.525716, 29.897385], + [116.467818, 29.896347], + [116.342782, 29.835626], + [116.280572, 29.788893], + [116.250391, 29.785777], + [116.227601, 29.816936], + [116.172783, 29.828358], + [116.13521, 29.819532], + [116.087167, 29.795125], + [116.049595, 29.761881], + [115.965827, 29.724469], + [115.909777, 29.723949], + [115.837096, 29.748373], + [115.762567, 29.793048], + [115.706517, 29.837703], + [115.667712, 29.850161], + [115.611662, 29.841337], + [115.51188, 29.840299], + [115.479235, 29.811224], + [115.470612, 29.739539], + [115.412714, 29.688602], + [115.355431, 29.649602], + [115.304924, 29.637118], + [115.28583, 29.618391], + [115.250722, 29.660003], + [115.176809, 29.654803], + [115.113367, 29.684963], + [115.117679, 29.655843], + [115.143548, 29.645961], + [115.120142, 29.597578], + [115.157099, 29.584568], + [115.154019, 29.510117], + [115.086266, 29.525741], + [115.087498, 29.560104], + [115.033295, 29.546568], + [115.00065, 29.572076], + [114.947679, 29.542924], + [114.966773, 29.522096], + [114.940288, 29.493971], + [114.900868, 29.505951], + [114.860216, 29.476258], + [114.888549, 29.436134], + [114.918114, 29.454374], + [114.90518, 29.473132], + [114.935977, 29.486678], + [114.947063, 29.465317], + [114.931049, 29.422581], + [114.895325, 29.397557], + [114.866375, 29.404335], + [114.812173, 29.383478], + [114.784455, 29.386086], + [114.759818, 29.363139], + [114.740724, 29.386607], + [114.67297, 29.395993], + [114.621847, 29.379828], + [114.589819, 29.352707], + [114.519602, 29.325578], + [114.466015, 29.324013], + [114.440145, 29.341752], + [114.376088, 29.322969], + [114.341595, 29.327665], + [114.307102, 29.365225], + [114.259059, 29.343839], + [114.252284, 29.23475], + [114.169748, 29.216993], + [114.063191, 29.204978], + [114.034857, 29.152204], + [113.98743, 29.126068], + [113.952321, 29.092604], + [113.94185, 29.047097], + [113.961561, 28.999476], + [113.955401, 28.978536], + [113.973879, 28.937692], + [114.008988, 28.955498], + [114.005292, 28.917788], + [114.028082, 28.891069], + [114.060111, 28.902596], + [114.056415, 28.872204], + [114.076741, 28.834464], + [114.124784, 28.843376], + [114.153734, 28.829221], + [114.137719, 28.779926], + [114.157429, 28.761566], + [114.122321, 28.623497], + [114.132176, 28.607211], + [114.08598, 28.558337], + [114.138335, 28.533629], + [114.15435, 28.507337], + [114.218407, 28.48472], + [114.217175, 28.466308], + [114.172212, 28.432632], + [114.214712, 28.403157], + [114.252284, 28.395787], + [114.2529, 28.319423], + [114.198081, 28.29097], + [114.182067, 28.249858], + [114.143879, 28.246694], + [114.109386, 28.205038], + [114.107538, 28.182885], + [114.068734, 28.171806], + [114.012068, 28.174972], + [113.992357, 28.161255], + [114.025002, 28.080499], + [114.047176, 28.057263], + [114.025618, 28.031382], + [113.970184, 28.041418], + [113.966488, 28.017646], + [113.936307, 28.018703], + [113.914133, 27.991227], + [113.864242, 28.004966], + [113.845148, 27.971672], + [113.822974, 27.982243], + [113.752141, 27.93361], + [113.72812, 27.874904], + [113.756453, 27.860091], + [113.763228, 27.799228], + [113.69917, 27.740979], + [113.696707, 27.71979], + [113.652359, 27.663619], + [113.607395, 27.625449], + [113.608627, 27.585143], + [113.579062, 27.545354], + [113.583374, 27.524657], + [113.627105, 27.49971], + [113.591381, 27.467855], + [113.59754, 27.428554], + [113.632033, 27.40518], + [113.605548, 27.38924], + [113.616635, 27.345658], + [113.657902, 27.347253], + [113.699786, 27.331836], + [113.72812, 27.350442], + [113.872865, 27.384988], + [113.872865, 27.346721], + [113.854387, 27.30525], + [113.872865, 27.289828], + [113.846996, 27.222262], + [113.779242, 27.137081], + [113.771851, 27.096598], + [113.803264, 27.099261], + [113.824206, 27.036378], + [113.86301, 27.018252], + [113.892575, 26.964925], + [113.927068, 26.948922], + [113.890112, 26.895562], + [113.877177, 26.859262], + [113.835909, 26.806394], + [113.853771, 26.769532], + [113.860546, 26.664221], + [113.912901, 26.613938], + [113.996669, 26.615543], + [114.019459, 26.587182], + [114.10877, 26.56952], + [114.07243, 26.480096], + [114.110002, 26.482775], + [114.090292, 26.455988], + [114.085364, 26.406149], + [114.062575, 26.406149], + [114.030546, 26.376664], + [114.047792, 26.337518], + [114.021307, 26.288701], + [114.029314, 26.266163], + [113.978807, 26.237716], + [113.972647, 26.20604], + [113.949242, 26.192616], + [113.962792, 26.150722], + [114.013299, 26.184023], + [114.088444, 26.168448], + [114.102611, 26.187783], + [114.181451, 26.214631], + [114.216559, 26.203355], + [114.237501, 26.152333], + [114.188842, 26.121172], + [114.10569, 26.097526], + [114.121089, 26.085702], + [114.087828, 26.06635], + [114.044096, 26.076564], + [114.008372, 26.015806], + [114.028082, 25.98138], + [114.028082, 25.893119], + [113.971416, 25.836036], + [113.961561, 25.77731], + [113.920293, 25.741197], + [113.913517, 25.701299], + [113.957249, 25.611749], + [113.983118, 25.599336], + [113.986198, 25.529153], + [113.962792, 25.528072], + [113.94493, 25.441635], + [114.003444, 25.442716], + [113.983118, 25.415152], + [114.050256, 25.36433], + [114.029314, 25.328093], + [114.017611, 25.273987], + [114.039785, 25.250714], + [114.055799, 25.277775], + [114.083517, 25.275611], + [114.115545, 25.302125], + [114.190074, 25.316733], + [114.204857, 25.29942], + [114.260291, 25.291845], + [114.2954, 25.299961], + [114.31511, 25.33837], + [114.382863, 25.317274], + [114.43029, 25.343779], + [114.438914, 25.376226], + [114.477718, 25.37136], + [114.541159, 25.416773], + [114.599674, 25.385959], + [114.63663, 25.324306], + [114.714238, 25.315651], + [114.743188, 25.274528], + [114.73518, 25.225813], + [114.693912, 25.213902], + [114.685905, 25.173287], + [114.73518, 25.155954], + [114.735796, 25.121822], + [114.664963, 25.10123], + [114.640326, 25.074129], + [114.604601, 25.083886], + [114.561485, 25.077382], + [114.532536, 25.022623], + [114.506051, 24.999844], + [114.45616, 24.99659], + [114.454928, 24.977062], + [114.395798, 24.951019], + [114.403189, 24.877746], + [114.378551, 24.861457], + [114.342211, 24.807145], + [114.336052, 24.749004], + [114.281849, 24.724001], + [114.27261, 24.700624], + [114.169132, 24.689749], + [114.19069, 24.656576], + [114.258443, 24.641346], + [114.289856, 24.619042], + [114.300943, 24.578775], + [114.363769, 24.582584], + [114.391486, 24.563535], + [114.403189, 24.497657], + [114.429058, 24.48622], + [114.534384, 24.559181], + [114.589819, 24.537406], + [114.627391, 24.576598], + [114.664963, 24.583673], + [114.704999, 24.525973], + [114.73826, 24.565168], + [114.729637, 24.608704], + [114.781376, 24.613057], + [114.827571, 24.588026], + [114.846665, 24.602719], + [114.868839, 24.562446], + [114.893477, 24.582584], + [114.909491, 24.661471], + [114.940288, 24.650049], + [115.00373, 24.679418], + [115.024672, 24.669085], + [115.057317, 24.703343], + [115.083802, 24.699537], + [115.104744, 24.667997], + [115.1842, 24.711498], + [115.258729, 24.728894], + [115.269816, 24.749548], + [115.306772, 24.758787], + [115.358511, 24.735416], + [115.372678, 24.774546], + [115.412714, 24.79302], + [115.476771, 24.762591], + [115.522967, 24.702799], + [115.555611, 24.683768], + [115.569778, 24.622306], + [115.605503, 24.62557], + [115.671408, 24.604895], + [115.68927, 24.545027], + [115.752712, 24.546116], + [115.785357, 24.567345], + [115.843871, 24.562446], + [115.840791, 24.584217], + [115.797676, 24.628834], + [115.780429, 24.663103], + [115.801371, 24.705517], + [115.769342, 24.708236], + [115.756408, 24.749004], + [115.776734, 24.774546], + [115.764415, 24.791933], + [115.790284, 24.856027], + [115.807531, 24.862543], + [115.824161, 24.909232], + [115.863581, 24.891318], + [115.861733, 24.863629], + [115.907313, 24.879917], + [115.885139, 24.898918], + [115.89253, 24.936911], + [115.870356, 24.959701], + [115.925175, 24.960786], + [115.873436, 25.019911], + [115.928255, 25.050276], + [115.908545, 25.084428], + [115.880212, 25.092016], + [115.888219, 25.128866], + [115.860501, 25.165704], + [115.855574, 25.20957], + [115.930719, 25.236099], + [115.949813, 25.292386], + [115.987385, 25.290221], + [116.008327, 25.319437], + [115.992928, 25.374063], + [116.023109, 25.435691], + [116.005247, 25.490264], + [116.03666, 25.514571], + [116.040356, 25.548052], + [116.063145, 25.56317], + [116.041588, 25.62416], + [116.068689, 25.646282], + [116.067457, 25.703995], + [116.106877, 25.701299], + [116.129667, 25.758985], + [116.18079, 25.778926], + [116.131515, 25.824185], + [116.132131, 25.860273], + [116.17771, 25.894195], + [116.225138, 25.908731], + [116.258398, 25.902809], + [116.303362, 25.924341], + [116.326152, 25.956631], + [116.369883, 25.963088], + [116.360028, 25.991601], + [116.384666, 26.030864], + [116.489375, 26.113649], + [116.476441, 26.172745], + [116.435789, 26.159854], + [116.392057, 26.171133], + [116.400064, 26.202819], + [116.385282, 26.238253], + [116.412999, 26.297822], + [116.437021, 26.308016], + [116.459194, 26.345026], + [116.499846, 26.361651], + [116.519557, 26.410437], + [116.553433, 26.400253], + [116.553433, 26.365404], + [116.601476, 26.372911], + [116.608252, 26.429732], + [116.638433, 26.477418], + [116.610716, 26.476882], + [116.597165, 26.512768], + [116.539267, 26.559349], + [116.553433, 26.575942], + [116.566368, 26.650315], + [116.520172, 26.684543], + [116.515245, 26.720898], + [116.557745, 26.773806], + [116.543578, 26.803723], + [116.548506, 26.84004], + [116.602092, 26.888623], + [116.632889, 26.933984], + [116.679085, 26.978259], + [116.817671, 27.018252], + [116.851548, 27.009188], + [116.910062, 27.034779], + [116.936547, 27.019319], + [116.967344, 27.061962], + [117.05296, 27.100327], + [117.044953, 27.146667], + [117.149662, 27.241419], + [117.171836, 27.29036], + [117.136728, 27.303123], + [117.140423, 27.322798], + [117.104699, 27.330773], + [117.107163, 27.393491], + [117.133032, 27.42218], + [117.110242, 27.458828], + [117.103467, 27.533149], + [117.076982, 27.566046], + [117.054808, 27.5427], + [117.01662, 27.563393], + [117.024627, 27.592569], + [117.003685, 27.625449], + [117.040641, 27.669979], + [117.065279, 27.665739], + [117.094228, 27.627569], + [117.11209, 27.645596], + [117.096076, 27.667329], + [117.114554, 27.692238], + [117.174916, 27.677399], + [117.204481, 27.683759], + [117.205097, 27.714492], + [117.245133, 27.71926], + [117.296256, 27.764282], + [117.303031, 27.833103], + [117.276546, 27.847921], + [117.280242, 27.871201], + [117.334444, 27.8876], + [117.341836, 27.855858], + [117.366473, 27.88231], + [117.407741, 27.893948], + [117.453936, 27.939955], + [117.477958, 27.930966], + [117.52169, 27.982243], + [117.556182, 27.966387], + [117.609769, 27.863265], + [117.649805, 27.851625], + [117.68245, 27.823577], + [117.704624, 27.834162], + [117.740348, 27.800286], + [117.788392, 27.855858], + [117.78716, 27.896063], + [117.856145, 27.94577], + [117.910963, 27.949471], + [117.942992, 27.974315], + [117.965166, 27.962687], + [117.999043, 27.991227], + [118.096977, 27.970615], + [118.094513, 28.003909], + [118.129006, 28.017118], + [118.120999, 28.041946], + [118.153644, 28.062016], + [118.199839, 28.049869], + [118.242339, 28.075746], + [118.356288, 28.091586], + [118.361215, 28.155978], + [118.375382, 28.186577], + [118.339041, 28.193962], + [118.314404, 28.221913], + [118.424041, 28.291497], + [118.433896, 28.288335], + [118.480091, 28.327325], + [118.455454, 28.384204], + [118.432048, 28.402104], + [118.456686, 28.424738], + [118.474548, 28.478934], + [118.414802, 28.497344], + [118.4302, 28.515225], + [118.412338, 28.55676], + [118.428352, 28.617193], + [118.428352, 28.617193], + [118.428352, 28.681267], + [118.403099, 28.702791], + [118.364295, 28.813491], + [118.300237, 28.826075], + [118.270056, 28.918836], + [118.195527, 28.904167], + [118.227556, 28.942406], + [118.165346, 28.986912], + [118.133933, 28.983771], + [118.115455, 29.009944], + [118.115455, 29.009944], + [118.097593, 28.998952], + [118.066796, 29.053898], + [118.076035, 29.074822], + [118.037847, 29.102017], + [118.045238, 29.149068], + [118.027992, 29.167882], + [118.042159, 29.210202], + [118.073571, 29.216993], + [118.077883, 29.290614], + [118.138861, 29.283828], + [118.178281, 29.297921], + [118.166578, 29.314099], + [118.205382, 29.343839], + [118.193064, 29.395472] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 370000, + "name": "山东省", + "center": [117.000923, 36.675807], + "centroid": [118.187759, 36.376092], + "childrenNum": 16, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 14, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [116.374195, 34.640011], + [116.392057, 34.710391], + [116.363724, 34.715311], + [116.369267, 34.749247], + [116.403144, 34.756131], + [116.408071, 34.850972], + [116.445028, 34.895652], + [116.557745, 34.908905], + [116.613795, 34.922645], + [116.622418, 34.939818], + [116.677853, 34.939327], + [116.781331, 34.916757], + [116.789338, 34.975133], + [116.815823, 34.965324], + [116.821983, 34.929515], + [116.858323, 34.928533], + [116.922381, 34.894671], + [116.929156, 34.843114], + [116.966113, 34.844588], + [116.979047, 34.815113], + [116.95133, 34.81069], + [116.969192, 34.771864], + [117.022163, 34.759081], + [117.070206, 34.713835], + [117.061583, 34.675947], + [117.073286, 34.639026], + [117.104083, 34.648874], + [117.15151, 34.559222], + [117.139191, 34.526687], + [117.166293, 34.434435], + [117.248213, 34.451216], + [117.252524, 34.48674], + [117.27285, 34.499565], + [117.267923, 34.532603], + [117.303647, 34.542463], + [117.27285, 34.556757], + [117.311654, 34.561686], + [117.311654, 34.561686], + [117.32151, 34.566614], + [117.32151, 34.566614], + [117.325205, 34.573021], + [117.325205, 34.573021], + [117.370785, 34.584846], + [117.402813, 34.569571], + [117.402813, 34.550843], + [117.465023, 34.484767], + [117.53832, 34.467006], + [117.592523, 34.462566], + [117.609769, 34.490686], + [117.659044, 34.501044], + [117.684298, 34.547392], + [117.801942, 34.518798], + [117.791471, 34.583368], + [117.793935, 34.651827], + [117.902956, 34.644443], + [117.909732, 34.670533], + [117.951615, 34.678408], + [118.053861, 34.650843], + [118.084042, 34.655766], + [118.114839, 34.614404], + [118.079115, 34.569571], + [118.185056, 34.543942], + [118.16473, 34.50499], + [118.132702, 34.483287], + [118.177665, 34.45319], + [118.179513, 34.379628], + [118.217701, 34.379134], + [118.220165, 34.405802], + [118.277447, 34.404814], + [118.290382, 34.424563], + [118.379693, 34.415183], + [118.404947, 34.427525], + [118.416034, 34.473914], + [118.439439, 34.507949], + [118.424657, 34.595193], + [118.439439, 34.626223], + [118.473932, 34.623269], + [118.460997, 34.656258], + [118.545997, 34.705964], + [118.601431, 34.714327], + [118.607591, 34.694155], + [118.664257, 34.693663], + [118.690127, 34.678408], + [118.739402, 34.693663], + [118.783749, 34.723181], + [118.764039, 34.740396], + [118.719076, 34.745313], + [118.739402, 34.792508], + [118.772047, 34.794474], + [118.80038, 34.843114], + [118.805307, 34.87307], + [118.860742, 34.944233], + [118.86259, 35.025626], + [118.928495, 35.051106], + [118.942662, 35.040817], + [119.027045, 35.055516], + [119.114509, 35.055026], + [119.137915, 35.096167], + [119.217371, 35.106939], + [119.250016, 35.124562], + [119.286972, 35.115261], + [119.306066, 35.076578], + [119.354109, 35.080007], + [119.373819, 35.078538], + [119.428022, 35.121136], + [119.397841, 35.137777], + [119.411392, 35.231689], + [119.450812, 35.285443], + [119.493312, 35.318655], + [119.538275, 35.296678], + [119.543819, 35.347949], + [119.590014, 35.37284], + [119.579543, 35.406504], + [119.618963, 35.459655], + [119.663311, 35.562931], + [119.662079, 35.589215], + [119.718129, 35.615492], + [119.75139, 35.617924], + [119.772332, 35.578995], + [119.780339, 35.584835], + [119.792658, 35.615492], + [119.824071, 35.646136], + [119.83023, 35.620357], + [119.868419, 35.60868], + [119.925085, 35.637382], + [119.91215, 35.660725], + [119.950339, 35.729741], + [119.920157, 35.739943], + [119.926317, 35.759856], + [119.958346, 35.760342], + [120.01378, 35.714193], + [120.049505, 35.786562], + [120.032258, 35.812288], + [120.064287, 35.873414], + [120.112331, 35.885052], + [120.125265, 35.906868], + [120.152983, 35.907353], + [120.207801, 35.947575], + [120.169613, 35.888446], + [120.202258, 35.89184], + [120.209033, 35.917531], + [120.265699, 35.966468], + [120.30512, 35.971796], + [120.316206, 36.002304], + [120.289721, 36.017311], + [120.285409, 36.01247], + [120.249069, 35.992136], + [120.257076, 36.025055], + [120.198562, 35.995525], + [120.234902, 36.030863], + [120.239214, 36.062316], + [120.181316, 36.066669], + [120.152367, 36.095206], + [120.116642, 36.102943], + [120.108635, 36.127599], + [120.142512, 36.143549], + [120.140664, 36.173507], + [120.181316, 36.203936], + [120.22012, 36.209248], + [120.224432, 36.19138], + [120.260772, 36.198624], + [120.263236, 36.182202], + [120.310047, 36.185101], + [120.297112, 36.225664], + [120.319902, 36.232423], + [120.362402, 36.196209], + [120.35809, 36.174956], + [120.286025, 36.047317], + [120.337764, 36.055058], + [120.429539, 36.056994], + [120.468959, 36.087952], + [120.546568, 36.091821], + [120.546568, 36.107778], + [120.593995, 36.100525], + [120.615553, 36.120348], + [120.64327, 36.114547], + [120.672835, 36.130016], + [120.712255, 36.126632], + [120.696857, 36.15563], + [120.696857, 36.203936], + [120.680843, 36.238698], + [120.686386, 36.279234], + [120.657437, 36.276339], + [120.66298, 36.331803], + [120.744284, 36.327946], + [120.694393, 36.390118], + [120.759683, 36.46283], + [120.828668, 36.46668], + [120.837291, 36.459942], + [120.858849, 36.424797], + [120.848994, 36.403124], + [120.871784, 36.36699], + [120.911204, 36.412276], + [120.917979, 36.417573], + [120.90874, 36.450315], + [120.938305, 36.447908], + [120.965407, 36.466199], + [120.95432, 36.507578], + [120.983269, 36.546051], + [120.962327, 36.562877], + [120.909972, 36.568645], + [120.884718, 36.601323], + [120.847146, 36.618617], + [120.882255, 36.627262], + [120.926602, 36.611892], + [120.955551, 36.575855], + [121.028848, 36.572971], + [121.078123, 36.607568], + [121.161275, 36.651273], + [121.251818, 36.671436], + [121.29863, 36.702151], + [121.31218, 36.702151], + [121.35776, 36.713186], + [121.400876, 36.701191], + [121.3941, 36.738129], + [121.454462, 36.752515], + [121.496962, 36.795179], + [121.506817, 36.803805], + [121.565331, 36.830635], + [121.548701, 36.807638], + [121.485259, 36.786073], + [121.532071, 36.73621], + [121.575186, 36.740047], + [121.556092, 36.764502], + [121.651563, 36.723739], + [121.631853, 36.80093], + [121.6762, 36.819137], + [121.726092, 36.826323], + [121.762432, 36.84644], + [121.767975, 36.874691], + [121.927504, 36.932597], + [121.965076, 36.938337], + [122.008808, 36.96225], + [122.042684, 36.871819], + [122.051923, 36.904846], + [122.093191, 36.913938], + [122.115981, 36.94025], + [122.124604, 36.944077], + [122.141235, 36.938337], + [122.119677, 36.891924], + [122.175727, 36.894317], + [122.188662, 36.866073], + [122.174495, 36.842609], + [122.220691, 36.848835], + [122.275509, 36.83734], + [122.280437, 36.835904], + [122.344495, 36.828239], + [122.378371, 36.844525], + [122.383915, 36.865595], + [122.415944, 36.85937], + [122.454748, 36.879], + [122.452284, 36.88618], + [122.434422, 36.914416], + [122.483081, 36.913938], + [122.48924, 36.886659], + [122.532356, 36.901496], + [122.55761, 36.968467], + [122.544675, 37.004797], + [122.583479, 37.037289], + [122.575472, 37.054485], + [122.494168, 37.033945], + [122.467067, 37.037289], + [122.478769, 37.058784], + [122.484313, 37.128956], + [122.533588, 37.153286], + [122.581015, 37.147562], + [122.573624, 37.176178], + [122.624131, 37.190959], + [122.592718, 37.261485], + [122.567465, 37.25958], + [122.573624, 37.296247], + [122.611196, 37.339558], + [122.607501, 37.364296], + [122.650616, 37.388551], + [122.6925, 37.373809], + [122.714058, 37.392355], + [122.701739, 37.418501], + [122.67587, 37.413273], + [122.641377, 37.428482], + [122.553914, 37.407093], + [122.4954, 37.413748], + [122.487393, 37.43466], + [122.41656, 37.414699], + [122.337103, 37.414223], + [122.281053, 37.430858], + [122.287212, 37.445114], + [122.25272, 37.467917], + [122.194205, 37.456041], + [122.166488, 37.438937], + [122.131996, 37.49926], + [122.163408, 37.519199], + [122.150474, 37.557163], + [122.08888, 37.554316], + [122.075329, 37.540556], + [122.017431, 37.531065], + [121.997721, 37.494512], + [121.923808, 37.473142], + [121.772903, 37.466492], + [121.66573, 37.473617], + [121.635548, 37.494037], + [121.575802, 37.460317], + [121.571491, 37.441313], + [121.477252, 37.475992], + [121.460006, 37.522522], + [121.400876, 37.557638], + [121.395948, 37.589891], + [121.435368, 37.592737], + [121.391021, 37.625449], + [121.349137, 37.635403], + [121.358376, 37.597479], + [121.304789, 37.582778], + [121.217326, 37.582778], + [121.17421, 37.597479], + [121.148956, 37.626397], + [121.161891, 37.646302], + [121.142797, 37.661464], + [121.160043, 37.698882], + [121.136022, 37.723501], + [121.037471, 37.718767], + [120.994356, 37.759468], + [120.943233, 37.785486], + [120.940769, 37.819533], + [120.874863, 37.833241], + [120.845298, 37.826623], + [120.839139, 37.82426], + [120.733197, 37.833714], + [120.656821, 37.793054], + [120.634031, 37.796364], + [120.590915, 37.7642], + [120.517619, 37.750005], + [120.454793, 37.757576], + [120.367945, 37.697935], + [120.227511, 37.693673], + [120.22012, 37.671886], + [120.269395, 37.658622], + [120.272475, 37.636824], + [120.215192, 37.621183], + [120.208417, 37.588469], + [120.246605, 37.556689], + [120.222584, 37.532963], + [120.144359, 37.481691], + [120.086461, 37.465067], + [120.064903, 37.448915], + [120.010085, 37.442263], + [119.949723, 37.419927], + [119.926933, 37.386649], + [119.843781, 37.376662], + [119.837006, 37.346695], + [119.883201, 37.311004], + [119.89244, 37.263866], + [119.865339, 37.233854], + [119.83023, 37.225754], + [119.808057, 37.196203], + [119.740303, 37.133727], + [119.687332, 37.143746], + [119.678709, 37.158056], + [119.576463, 37.127524], + [119.489616, 37.134681], + [119.428022, 37.125616], + [119.361501, 37.125616], + [119.327624, 37.115595], + [119.301138, 37.139452], + [119.298675, 37.197156], + [119.2069, 37.223371], + [119.190885, 37.25958], + [119.204436, 37.280058], + [119.136683, 37.230995], + [119.12806, 37.254816], + [119.091103, 37.257674], + [119.084328, 37.239572], + [119.054147, 37.254816], + [119.03998, 37.30434], + [119.001176, 37.31862], + [118.942662, 37.497361], + [118.939582, 37.527268], + [118.988857, 37.620709], + [119.023966, 37.642037], + [119.153313, 37.655305], + [119.236465, 37.651988], + [119.262334, 37.660517], + [119.280197, 37.692726], + [119.309146, 37.805349], + [119.291899, 37.869627], + [119.24016, 37.878131], + [119.212443, 37.838913], + [119.16132, 37.81906], + [119.12806, 37.847892], + [119.110813, 37.921577], + [119.001792, 37.99613], + [118.974075, 38.094162], + [118.908169, 38.139362], + [118.811467, 38.157717], + [118.703677, 38.151129], + [118.626069, 38.138421], + [118.607591, 38.129006], + [118.597736, 38.079088], + [118.552156, 38.05553], + [118.534294, 38.063541], + [118.517048, 38.088509], + [118.504729, 38.11394], + [118.44991, 38.124299], + [118.431432, 38.106406], + [118.404331, 38.121003], + [118.331034, 38.12524], + [118.217085, 38.146893], + [118.177665, 38.186417], + [118.112376, 38.210403], + [118.045238, 38.214165], + [118.018753, 38.202409], + [117.896797, 38.279495], + [117.895565, 38.301572], + [117.848754, 38.255062], + [117.808718, 38.22827], + [117.789007, 38.180772], + [117.766834, 38.158658], + [117.771145, 38.134655], + [117.746508, 38.12524], + [117.704624, 38.076262], + [117.586979, 38.071551], + [117.557414, 38.046105], + [117.557414, 38.046105], + [117.524154, 37.989527], + [117.513067, 37.94329], + [117.481038, 37.914967], + [117.438538, 37.854035], + [117.400966, 37.844584], + [117.320278, 37.861596], + [117.271618, 37.839858], + [117.185387, 37.849783], + [117.150278, 37.839385], + [117.074518, 37.848837], + [117.027091, 37.832296], + [116.919301, 37.846002], + [116.837997, 37.835132], + [116.804736, 37.848837], + [116.753613, 37.793054], + [116.753613, 37.77035], + [116.724664, 37.744327], + [116.679085, 37.728708], + [116.66307, 37.686096], + [116.604556, 37.624975], + [116.575607, 37.610754], + [116.4826, 37.521573], + [116.448108, 37.503059], + [116.433941, 37.473142], + [116.38097, 37.522522], + [116.379738, 37.522047], + [116.38097, 37.522522], + [116.379738, 37.522047], + [116.36742, 37.566177], + [116.336007, 37.581355], + [116.295355, 37.554316], + [116.278724, 37.524895], + [116.290427, 37.484065], + [116.27626, 37.466967], + [116.240536, 37.489764], + [116.240536, 37.489764], + [116.224522, 37.479791], + [116.243, 37.447965], + [116.226369, 37.428007], + [116.2855, 37.404241], + [116.236224, 37.361442], + [116.193109, 37.365723], + [116.169087, 37.384271], + [116.106261, 37.368577], + [116.085935, 37.373809], + [116.024341, 37.360015], + [115.975682, 37.337179], + [115.969523, 37.239572], + [115.909777, 37.20669], + [115.91224, 37.177132], + [115.879596, 37.150901], + [115.888219, 37.112254], + [115.85619, 37.060694], + [115.776734, 36.992848], + [115.79706, 36.968945], + [115.75764, 36.902453], + [115.71206, 36.883308], + [115.683727, 36.808117], + [115.524815, 36.763543], + [115.479851, 36.760187], + [115.451518, 36.702151], + [115.420105, 36.686795], + [115.365902, 36.621979], + [115.355431, 36.627262], + [115.33141, 36.550378], + [115.272895, 36.497476], + [115.291374, 36.460423], + [115.317243, 36.454166], + [115.297533, 36.413239], + [115.340033, 36.398307], + [115.368982, 36.342409], + [115.366518, 36.30914], + [115.423185, 36.32216], + [115.417025, 36.292742], + [115.462605, 36.276339], + [115.466916, 36.258969], + [115.466916, 36.258969], + [115.474923, 36.248352], + [115.483547, 36.148865], + [115.484163, 36.125666], + [115.449054, 36.047317], + [115.447822, 36.01247], + [115.362822, 35.971796], + [115.353583, 35.938854], + [115.364054, 35.894264], + [115.335105, 35.796756], + [115.363438, 35.779765], + [115.407786, 35.80889], + [115.460141, 35.867594], + [115.487858, 35.880688], + [115.495249, 35.896203], + [115.505104, 35.899112], + [115.513112, 35.890385], + [115.583945, 35.921893], + [115.648618, 35.922863], + [115.699125, 35.966468], + [115.774886, 35.974702], + [115.779813, 35.993588], + [115.817386, 36.012954], + [115.859886, 36.003756], + [115.89869, 36.026507], + [115.989849, 36.045381], + [116.057602, 36.104877], + [116.099486, 36.112129], + [116.063145, 36.028927], + [116.048979, 35.970343], + [115.984921, 35.974218], + [115.911624, 35.960171], + [115.907929, 35.92674], + [115.873436, 35.918985], + [115.882675, 35.879718], + [115.859886, 35.857894], + [115.81677, 35.844312], + [115.773654, 35.854014], + [115.73485, 35.833154], + [115.696046, 35.788989], + [115.693582, 35.754028], + [115.622749, 35.739457], + [115.52851, 35.733628], + [115.48601, 35.710306], + [115.383148, 35.568772], + [115.34496, 35.55368], + [115.356047, 35.490359], + [115.307388, 35.480126], + [115.237171, 35.423087], + [115.172497, 35.426501], + [115.126302, 35.41821], + [115.117679, 35.400163], + [115.091809, 35.416259], + [115.073947, 35.374304], + [115.04315, 35.376744], + [114.957534, 35.261014], + [114.929201, 35.244886], + [114.932281, 35.198441], + [114.861448, 35.182301], + [114.841738, 35.15099], + [114.883006, 35.098615], + [114.835578, 35.076578], + [114.818948, 35.051596], + [114.852209, 35.041797], + [114.824492, 35.012393], + [114.880542, 35.00357], + [114.923658, 34.968757], + [114.950759, 34.989843], + [115.008041, 34.988372], + [115.028983, 34.9717], + [115.075179, 35.000628], + [115.12815, 35.00455], + [115.157099, 34.957968], + [115.219309, 34.96042], + [115.205142, 34.914303], + [115.251953, 34.906451], + [115.239019, 34.87798], + [115.256265, 34.845079], + [115.317243, 34.859321], + [115.42688, 34.805285], + [115.449054, 34.74433], + [115.433655, 34.725149], + [115.461373, 34.637057], + [115.515575, 34.582383], + [115.553148, 34.568586], + [115.622749, 34.574499], + [115.685575, 34.556265], + [115.697278, 34.594207], + [115.787821, 34.580905], + [115.827241, 34.558236], + [115.838328, 34.5676], + [115.984305, 34.589281], + [115.991081, 34.615389], + [116.037276, 34.593222], + [116.101334, 34.60603], + [116.134594, 34.559715], + [116.156768, 34.5538], + [116.196804, 34.575977], + [116.247927, 34.551829], + [116.286116, 34.608986], + [116.32492, 34.601104], + [116.334159, 34.620806], + [116.374195, 34.640011] + ] + ], + [ + [ + [120.729502, 37.947065], + [120.721495, 37.917328], + [120.76461, 37.895134], + [120.76461, 37.923937], + [120.729502, 37.947065] + ] + ], + [ + [ + [120.692545, 37.983867], + [120.732581, 37.961694], + [120.724574, 37.987641], + [120.692545, 37.983867] + ] + ], + [ + [ + [120.990044, 36.413239], + [120.978341, 36.428649], + [120.950624, 36.414684], + [120.990044, 36.413239] + ] + ], + [ + [ + [120.750444, 38.150188], + [120.7874, 38.158658], + [120.742436, 38.199116], + [120.750444, 38.150188] + ] + ], + [ + [ + [120.918595, 38.345236], + [120.914899, 38.373393], + [120.895189, 38.36307], + [120.918595, 38.345236] + ] + ], + [ + [ + [120.159142, 35.765198], + [120.169613, 35.740428], + [120.193019, 35.756942], + [120.172077, 35.785591], + [120.159142, 35.765198] + ] + ], + [ + [ + [120.62664, 37.94565], + [120.631567, 37.981037], + [120.602002, 37.978678], + [120.62664, 37.94565] + ] + ], + [ + [ + [120.802183, 38.284193], + [120.848378, 38.305799], + [120.816349, 38.318008], + [120.802183, 38.284193] + ] + ], + [ + [ + [121.489571, 37.577086], + [121.489571, 37.577561], + [121.489571, 37.578509], + [121.488955, 37.578035], + [121.489571, 37.577086] + ] + ], + [ + [ + [121.485875, 37.578509], + [121.487723, 37.578035], + [121.487723, 37.578509], + [121.485875, 37.578509] + ] + ], + [ + [ + [121.487723, 37.578509], + [121.487723, 37.577561], + [121.488955, 37.578035], + [121.488955, 37.578509], + [121.488339, 37.578509], + [121.487723, 37.578509] + ] + ], + [ + [ + [115.495249, 35.896203], + [115.487858, 35.880688], + [115.513112, 35.890385], + [115.505104, 35.899112], + [115.495249, 35.896203] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 410000, + "name": "河南省", + "center": [113.665412, 34.757975], + "centroid": [113.619717, 33.902648], + "childrenNum": 18, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 15, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [112.716747, 32.357612], + [112.735841, 32.356095], + [112.776493, 32.358623], + [112.860877, 32.396024], + [112.888594, 32.37682], + [112.912, 32.390971], + [112.992072, 32.378336], + [113.000695, 32.41674], + [113.025949, 32.425328], + [113.078919, 32.394508], + [113.107869, 32.398551], + [113.118956, 32.375809], + [113.155912, 32.380863], + [113.158992, 32.410677], + [113.211962, 32.431895], + [113.2366, 32.407141], + [113.333918, 32.336377], + [113.317904, 32.327275], + [113.353628, 32.294904], + [113.376418, 32.298445], + [113.428773, 32.270618], + [113.511925, 32.316654], + [113.624642, 32.36115], + [113.650511, 32.412698], + [113.700402, 32.420782], + [113.735511, 32.410677], + [113.76754, 32.370249], + [113.753989, 32.328286], + [113.768772, 32.30148], + [113.768156, 32.284279], + [113.758301, 32.27669], + [113.749061, 32.272642], + [113.73859, 32.255942], + [113.752757, 32.215951], + [113.782322, 32.184553], + [113.750293, 32.11615], + [113.722576, 32.12426], + [113.728735, 32.083197], + [113.791561, 32.036028], + [113.757685, 31.98985], + [113.817431, 31.964467], + [113.805728, 31.929428], + [113.832213, 31.918761], + [113.830981, 31.87913], + [113.854387, 31.843042], + [113.893807, 31.847109], + [113.914749, 31.877098], + [113.957865, 31.852701], + [113.952321, 31.793714], + [113.988662, 31.749959], + [114.017611, 31.770822], + [114.086596, 31.782014], + [114.121705, 31.809482], + [114.134024, 31.843042], + [114.191922, 31.852192], + [114.235654, 31.833382], + [114.292936, 31.752503], + [114.350218, 31.755557], + [114.403189, 31.746906], + [114.443841, 31.728074], + [114.530688, 31.742834], + [114.549783, 31.766751], + [114.586123, 31.762172], + [114.57134, 31.660858], + [114.547935, 31.623665], + [114.560869, 31.560963], + [114.572572, 31.553824], + [114.61692, 31.585437], + [114.641558, 31.582378], + [114.696376, 31.525771], + [114.778912, 31.520669], + [114.789383, 31.480358], + [114.830035, 31.45892], + [114.870071, 31.479337], + [114.884238, 31.469129], + [114.962462, 31.494648], + [114.995107, 31.471171], + [115.022824, 31.527811], + [115.096121, 31.508425], + [115.114599, 31.530362], + [115.106592, 31.567592], + [115.12507, 31.599201], + [115.16449, 31.604808], + [115.212533, 31.555354], + [115.235939, 31.555354], + [115.218077, 31.515057], + [115.211301, 31.442072], + [115.252569, 31.421646], + [115.250722, 31.392021], + [115.301229, 31.383846], + [115.338801, 31.40428], + [115.373909, 31.405813], + [115.389924, 31.450241], + [115.371446, 31.495668], + [115.415793, 31.525771], + [115.439815, 31.588496], + [115.485394, 31.608885], + [115.476771, 31.643028], + [115.495249, 31.673083], + [115.534054, 31.698545], + [115.553764, 31.69549], + [115.676336, 31.778453], + [115.731154, 31.76726], + [115.767495, 31.78761], + [115.808147, 31.770313], + [115.808147, 31.770313], + [115.851878, 31.786593], + [115.886371, 31.776418], + [115.914704, 31.814567], + [115.893762, 31.832365], + [115.894994, 31.8649], + [115.920248, 31.920285], + [115.909161, 31.94314], + [115.928871, 32.003046], + [115.922095, 32.049725], + [115.941805, 32.166318], + [115.912856, 32.227596], + [115.899306, 32.390971], + [115.865429, 32.458662], + [115.883291, 32.487946], + [115.845719, 32.501575], + [115.8759, 32.542448], + [115.910393, 32.567165], + [115.891298, 32.576243], + [115.861117, 32.537403], + [115.789052, 32.468761], + [115.771806, 32.505108], + [115.742241, 32.476335], + [115.704669, 32.495013], + [115.667712, 32.409667], + [115.657857, 32.428864], + [115.626445, 32.40512], + [115.604271, 32.425833], + [115.57101, 32.419266], + [115.522967, 32.441997], + [115.509416, 32.466741], + [115.5088, 32.468761], + [115.497713, 32.492489], + [115.409018, 32.549007], + [115.411482, 32.575235], + [115.304924, 32.553042], + [115.30554, 32.583303], + [115.267352, 32.578261], + [115.24333, 32.593388], + [115.20083, 32.591876], + [115.182968, 32.666973], + [115.179273, 32.726402], + [115.189744, 32.770695], + [115.211301, 32.785791], + [115.189744, 32.812452], + [115.197135, 32.856201], + [115.155867, 32.864747], + [115.139237, 32.897917], + [115.029599, 32.906962], + [115.035143, 32.932582], + [115.009273, 32.940117], + [114.943368, 32.935094], + [114.916266, 32.971251], + [114.883006, 32.990328], + [114.891629, 33.020441], + [114.925506, 33.016928], + [114.913187, 33.083143], + [114.897172, 33.086653], + [114.902716, 33.129764], + [114.932897, 33.153817], + [114.966158, 33.147304], + [114.990795, 33.102195], + [115.041302, 33.086653], + [115.168186, 33.088658], + [115.194671, 33.120743], + [115.245178, 33.135778], + [115.289526, 33.131769], + [115.303692, 33.149809], + [115.300613, 33.204407], + [115.340033, 33.260973], + [115.335105, 33.297997], + [115.361591, 33.298497], + [115.365286, 33.336005], + [115.341881, 33.370997], + [115.313547, 33.376994], + [115.328946, 33.403477], + [115.315395, 33.431451], + [115.324634, 33.457418], + [115.345576, 33.449928], + [115.345576, 33.502842], + [115.366518, 33.5233], + [115.394851, 33.506335], + [115.422569, 33.557219], + [115.463837, 33.567193], + [115.511264, 33.55323], + [115.564851, 33.576169], + [115.639995, 33.585143], + [115.601191, 33.658898], + [115.601807, 33.718653], + [115.563003, 33.772895], + [115.576553, 33.787817], + [115.614126, 33.775879], + [115.631988, 33.869846], + [115.547604, 33.874815], + [115.577785, 33.950307], + [115.579017, 33.974133], + [115.60735, 34.030196], + [115.642459, 34.03218], + [115.658473, 34.061437], + [115.705901, 34.059949], + [115.736082, 34.076805], + [115.768726, 34.061932], + [115.809378, 34.062428], + [115.846335, 34.028708], + [115.85003, 34.004898], + [115.877132, 34.002913], + [115.876516, 34.028708], + [115.904233, 34.009859], + [115.95782, 34.007875], + [116.00032, 33.965199], + [115.982457, 33.917039], + [116.05945, 33.860902], + [116.055754, 33.804727], + [116.074232, 33.781351], + [116.100102, 33.782843], + [116.132747, 33.751501], + [116.155536, 33.709693], + [116.230065, 33.735078], + [116.263326, 33.730101], + [116.316912, 33.771402], + [116.393905, 33.782843], + [116.408071, 33.805721], + [116.437021, 33.801246], + [116.437637, 33.846489], + [116.486296, 33.869846], + [116.558361, 33.881274], + [116.566984, 33.9081], + [116.631042, 33.887733], + [116.64336, 33.896675], + [116.641512, 33.978103], + [116.599629, 34.014324], + [116.599629, 34.014324], + [116.576223, 34.068873], + [116.576223, 34.068873], + [116.52818, 34.122892], + [116.536187, 34.151127], + [116.565752, 34.16945], + [116.542962, 34.203608], + [116.545426, 34.241711], + [116.582382, 34.266444], + [116.562056, 34.285731], + [116.516477, 34.296114], + [116.456731, 34.268917], + [116.409303, 34.273863], + [116.409303, 34.273863], + [116.372347, 34.26595], + [116.357564, 34.319843], + [116.301514, 34.342082], + [116.255934, 34.376665], + [116.213435, 34.382098], + [116.215898, 34.403333], + [116.178942, 34.430487], + [116.162312, 34.459605], + [116.178326, 34.496112], + [116.204196, 34.508442], + [116.191261, 34.535561], + [116.196804, 34.575977], + [116.156768, 34.5538], + [116.134594, 34.559715], + [116.101334, 34.60603], + [116.037276, 34.593222], + [115.991081, 34.615389], + [115.984305, 34.589281], + [115.838328, 34.5676], + [115.827241, 34.558236], + [115.787821, 34.580905], + [115.697278, 34.594207], + [115.685575, 34.556265], + [115.622749, 34.574499], + [115.553148, 34.568586], + [115.515575, 34.582383], + [115.461373, 34.637057], + [115.433655, 34.725149], + [115.449054, 34.74433], + [115.42688, 34.805285], + [115.317243, 34.859321], + [115.256265, 34.845079], + [115.239019, 34.87798], + [115.251953, 34.906451], + [115.205142, 34.914303], + [115.219309, 34.96042], + [115.157099, 34.957968], + [115.12815, 35.00455], + [115.075179, 35.000628], + [115.028983, 34.9717], + [115.008041, 34.988372], + [114.950759, 34.989843], + [114.923658, 34.968757], + [114.880542, 35.00357], + [114.824492, 35.012393], + [114.852209, 35.041797], + [114.818948, 35.051596], + [114.835578, 35.076578], + [114.883006, 35.098615], + [114.841738, 35.15099], + [114.861448, 35.182301], + [114.932281, 35.198441], + [114.929201, 35.244886], + [114.957534, 35.261014], + [115.04315, 35.376744], + [115.073947, 35.374304], + [115.091809, 35.416259], + [115.117679, 35.400163], + [115.126302, 35.41821], + [115.172497, 35.426501], + [115.237171, 35.423087], + [115.307388, 35.480126], + [115.356047, 35.490359], + [115.34496, 35.55368], + [115.383148, 35.568772], + [115.48601, 35.710306], + [115.52851, 35.733628], + [115.622749, 35.739457], + [115.693582, 35.754028], + [115.696046, 35.788989], + [115.73485, 35.833154], + [115.773654, 35.854014], + [115.81677, 35.844312], + [115.859886, 35.857894], + [115.882675, 35.879718], + [115.873436, 35.918985], + [115.907929, 35.92674], + [115.911624, 35.960171], + [115.984921, 35.974218], + [116.048979, 35.970343], + [116.063145, 36.028927], + [116.099486, 36.112129], + [116.057602, 36.104877], + [115.989849, 36.045381], + [115.89869, 36.026507], + [115.859886, 36.003756], + [115.817386, 36.012954], + [115.779813, 35.993588], + [115.774886, 35.974702], + [115.699125, 35.966468], + [115.648618, 35.922863], + [115.583945, 35.921893], + [115.513112, 35.890385], + [115.487858, 35.880688], + [115.460141, 35.867594], + [115.407786, 35.80889], + [115.363438, 35.779765], + [115.335105, 35.796756], + [115.364054, 35.894264], + [115.353583, 35.938854], + [115.362822, 35.971796], + [115.447822, 36.01247], + [115.449054, 36.047317], + [115.484163, 36.125666], + [115.483547, 36.148865], + [115.465068, 36.170125], + [115.450902, 36.152248], + [115.376989, 36.128083], + [115.365902, 36.099074], + [115.312931, 36.088436], + [115.30246, 36.127599], + [115.279055, 36.13775], + [115.242098, 36.19138], + [115.202678, 36.208765], + [115.202678, 36.208765], + [115.202678, 36.209248], + [115.202678, 36.209248], + [115.201446, 36.210214], + [115.201446, 36.210214], + [115.1842, 36.193312], + [115.12507, 36.209731], + [115.104744, 36.172058], + [115.06286, 36.178338], + [115.048693, 36.161912], + [115.04623, 36.112613], + [114.998186, 36.069572], + [114.914419, 36.052155], + [114.926737, 36.089403], + [114.912571, 36.140649], + [114.858368, 36.144516], + [114.857752, 36.127599], + [114.771521, 36.124699], + [114.734564, 36.15563], + [114.720398, 36.140166], + [114.640326, 36.137266], + [114.588587, 36.118414], + [114.586739, 36.141133], + [114.533152, 36.171575], + [114.480181, 36.177855], + [114.466015, 36.197658], + [114.417356, 36.205868], + [114.408117, 36.224699], + [114.356378, 36.230492], + [114.345291, 36.255591], + [114.299095, 36.245938], + [114.257827, 36.263794], + [114.241197, 36.251247], + [114.2104, 36.272962], + [114.203009, 36.245456], + [114.170364, 36.245938], + [114.170364, 36.245938], + [114.175907, 36.264759], + [114.129096, 36.280199], + [114.080437, 36.269585], + [114.04348, 36.303353], + [114.056415, 36.329392], + [114.002828, 36.334214], + [113.981887, 36.31782], + [113.962792, 36.353977], + [113.911054, 36.314927], + [113.882104, 36.353977], + [113.84946, 36.347711], + [113.856851, 36.329392], + [113.813119, 36.332285], + [113.755221, 36.366026], + [113.731199, 36.363135], + [113.736127, 36.324571], + [113.712105, 36.303353], + [113.716417, 36.262347], + [113.681924, 36.216491], + [113.697939, 36.181719], + [113.651127, 36.174473], + [113.705946, 36.148865], + [113.712721, 36.129533], + [113.655439, 36.125182], + [113.671453, 36.115514], + [113.68562, 36.056026], + [113.660366, 36.034735], + [113.694859, 36.026991], + [113.678844, 35.985841], + [113.648663, 35.994073], + [113.654207, 35.931586], + [113.637576, 35.870019], + [113.660982, 35.837035], + [113.582758, 35.818111], + [113.604932, 35.797727], + [113.587685, 35.736542], + [113.592613, 35.691838], + [113.622794, 35.674825], + [113.625258, 35.632518], + [113.578446, 35.633491], + [113.547649, 35.656835], + [113.55812, 35.621816], + [113.513773, 35.57364], + [113.49899, 35.532254], + [113.439244, 35.507412], + [113.391817, 35.506925], + [113.348085, 35.468429], + [113.31236, 35.481101], + [113.304353, 35.426989], + [113.243375, 35.449418], + [113.189789, 35.44893], + [113.185477, 35.409431], + [113.165151, 35.412845], + [113.149137, 35.350878], + [113.126347, 35.332327], + [113.067217, 35.353806], + [112.996384, 35.362104], + [112.985913, 35.33965], + [112.992072, 35.29619], + [112.936022, 35.284466], + [112.934174, 35.262968], + [112.884283, 35.243909], + [112.822073, 35.258082], + [112.772798, 35.207732], + [112.720443, 35.206265], + [112.628052, 35.263457], + [112.637291, 35.225822], + [112.513487, 35.218489], + [112.390915, 35.239021], + [112.36751, 35.219956], + [112.288053, 35.219956], + [112.304684, 35.251728], + [112.242474, 35.234622], + [112.21722, 35.253195], + [112.13838, 35.271275], + [112.058924, 35.280069], + [112.078634, 35.219467], + [112.03983, 35.194039], + [112.066315, 35.153437], + [112.05646, 35.098615], + [112.062004, 35.056005], + [112.039214, 35.045717], + [112.018888, 35.068742], + [111.97762, 35.067272], + [111.933272, 35.083435], + [111.810084, 35.062374], + [111.807005, 35.032977], + [111.740483, 35.00455], + [111.664107, 34.984449], + [111.681969, 34.9511], + [111.646861, 34.938836], + [111.617911, 34.894671], + [111.592042, 34.881416], + [111.570484, 34.843114], + [111.543999, 34.853428], + [111.502731, 34.829851], + [111.439289, 34.838202], + [111.389398, 34.815113], + [111.345666, 34.831816], + [111.29208, 34.806759], + [111.255123, 34.819535], + [111.232949, 34.789559], + [111.148566, 34.807742], + [111.118385, 34.756623], + [111.035233, 34.740887], + [110.976103, 34.706456], + [110.920052, 34.730068], + [110.903422, 34.669056], + [110.883712, 34.64395], + [110.824582, 34.615881], + [110.791937, 34.649858], + [110.749437, 34.65232], + [110.710017, 34.605045], + [110.610851, 34.607508], + [110.533242, 34.583368], + [110.488279, 34.610956], + [110.424837, 34.588295], + [110.379257, 34.600612], + [110.366939, 34.566614], + [110.404511, 34.557743], + [110.372482, 34.544435], + [110.360779, 34.516825], + [110.403279, 34.433448], + [110.403279, 34.433448], + [110.473496, 34.393457], + [110.503677, 34.33714], + [110.451938, 34.292653], + [110.428533, 34.288203], + [110.43962, 34.243196], + [110.507989, 34.217466], + [110.55172, 34.213012], + [110.55788, 34.193214], + [110.621938, 34.177372], + [110.642264, 34.161032], + [110.61393, 34.113478], + [110.591757, 34.101586], + [110.587445, 34.023252], + [110.620706, 34.035652], + [110.671213, 33.966192], + [110.665669, 33.937895], + [110.627481, 33.925482], + [110.628713, 33.910086], + [110.587445, 33.887733], + [110.612083, 33.852453], + [110.66259, 33.85295], + [110.712481, 33.833564], + [110.74143, 33.798759], + [110.782082, 33.796272], + [110.81719, 33.751003], + [110.831973, 33.713675], + [110.823966, 33.685793], + [110.878784, 33.634486], + [110.966864, 33.609071], + [111.00382, 33.578662], + [111.002588, 33.535772], + [111.02661, 33.478386], + [111.02661, 33.467903], + [110.996429, 33.435946], + [111.025994, 33.375495], + [111.025994, 33.330504], + [110.984726, 33.255469], + [111.046936, 33.202905], + [111.045704, 33.169849], + [111.08882, 33.181871], + [111.12824, 33.15532], + [111.146102, 33.12375], + [111.179363, 33.115229], + [111.192913, 33.071609], + [111.152877, 33.039507], + [111.221862, 33.042517], + [111.258819, 33.006389], + [111.273601, 32.971753], + [111.242804, 32.930573], + [111.255123, 32.883846], + [111.276065, 32.903445], + [111.293311, 32.859217], + [111.380159, 32.829049], + [111.41342, 32.757108], + [111.475629, 32.760127], + [111.458383, 32.726402], + [111.513202, 32.674026], + [111.530448, 32.628172], + [111.577875, 32.593388], + [111.640701, 32.634724], + [111.646245, 32.605993], + [111.713382, 32.606497], + [111.808853, 32.536899], + [111.858128, 32.528826], + [111.890157, 32.503089], + [111.948671, 32.51722], + [111.975772, 32.471791], + [112.014576, 32.450077], + [112.063851, 32.474315], + [112.081098, 32.425833], + [112.155626, 32.377326], + [112.150083, 32.411688], + [112.172873, 32.385412], + [112.206133, 32.392992], + [112.328089, 32.321712], + [112.360118, 32.3657], + [112.390915, 32.37126], + [112.448814, 32.34295], + [112.477147, 32.380863], + [112.530733, 32.37682], + [112.545516, 32.404109], + [112.589248, 32.381369], + [112.612037, 32.386928], + [112.645298, 32.368227], + [112.716747, 32.357612] + ] + ], + [ + [ + [113.768156, 32.284279], + [113.768772, 32.30148], + [113.749061, 32.272642], + [113.758301, 32.27669], + [113.768156, 32.284279] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 420000, + "name": "湖北省", + "center": [114.298572, 30.584355], + "centroid": [112.271301, 30.987527], + "childrenNum": 17, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 16, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [111.045704, 33.169849], + [111.034001, 33.177864], + [111.035849, 33.187881], + [111.046936, 33.202905], + [110.984726, 33.255469], + [110.960704, 33.253967], + [110.9219, 33.203907], + [110.865234, 33.213921], + [110.828893, 33.201403], + [110.824582, 33.158327], + [110.753133, 33.15031], + [110.702626, 33.097182], + [110.650887, 33.157324], + [110.623785, 33.143796], + [110.59422, 33.168346], + [110.57759, 33.250464], + [110.54125, 33.255469], + [110.471032, 33.171352], + [110.398352, 33.176862], + [110.398352, 33.176862], + [110.372482, 33.186379], + [110.33799, 33.160331], + [110.285635, 33.171352], + [110.218497, 33.163336], + [110.164911, 33.209415], + [110.031252, 33.191888], + [109.999223, 33.212419], + [109.973353, 33.203907], + [109.916687, 33.229942], + [109.852013, 33.247961], + [109.813209, 33.236449], + [109.732521, 33.231443], + [109.693101, 33.254468], + [109.649985, 33.251465], + [109.619804, 33.275484], + [109.60687, 33.235949], + [109.514479, 33.237951], + [109.498464, 33.207412], + [109.438718, 33.152314], + [109.468283, 33.140288], + [109.522486, 33.138785], + [109.576073, 33.110216], + [109.688174, 33.116733], + [109.704188, 33.101694], + [109.794731, 33.067095], + [109.785492, 32.987316], + [109.76455, 32.909474], + [109.789804, 32.882339], + [109.847702, 32.893395], + [109.856941, 32.910479], + [109.907448, 32.903947], + [109.927158, 32.887364], + [109.988752, 32.886359], + [110.051578, 32.851676], + [110.105164, 32.832569], + [110.142121, 32.802895], + [110.127338, 32.77774], + [110.159367, 32.767173], + [110.156903, 32.683093], + [110.206179, 32.633212], + [110.153824, 32.593388], + [110.124259, 32.616579], + [110.090382, 32.617083], + [110.084223, 32.580782], + [110.017701, 32.546989], + [109.97089, 32.577756], + [109.910528, 32.592884], + [109.816905, 32.577252], + [109.746072, 32.594901], + [109.726978, 32.608513], + [109.631507, 32.599943], + [109.619804, 32.56767], + [109.637051, 32.540935], + [109.575457, 32.506622], + [109.526797, 32.43341], + [109.529877, 32.405625], + [109.502776, 32.38895], + [109.513247, 32.342444], + [109.495385, 32.300468], + [109.528645, 32.270112], + [109.550203, 32.225065], + [109.592703, 32.219495], + [109.604406, 32.199241], + [109.58716, 32.161251], + [109.621652, 32.106519], + [109.590855, 32.047696], + [109.590855, 32.012688], + [109.631507, 31.962436], + [109.62042, 31.928412], + [109.584696, 31.900472], + [109.60379, 31.885737], + [109.633971, 31.824738], + [109.633971, 31.804396], + [109.592087, 31.789136], + [109.585928, 31.726546], + [109.622268, 31.711783], + [109.683246, 31.719929], + [109.731289, 31.700582], + [109.737449, 31.628761], + [109.76455, 31.602769], + [109.745456, 31.598182], + [109.727594, 31.548214], + [109.837847, 31.555354], + [109.894513, 31.519139], + [109.969658, 31.508935], + [109.94502, 31.47066], + [109.98752, 31.474744], + [110.036795, 31.436966], + [110.054042, 31.410921], + [110.118715, 31.409899], + [110.161831, 31.314338], + [110.155671, 31.279564], + [110.180309, 31.179774], + [110.200019, 31.158779], + [110.180309, 31.121899], + [110.147048, 31.116776], + [110.119947, 31.088592], + [110.120563, 31.0322], + [110.140273, 31.030661], + [110.140889, 30.987062], + [110.172918, 30.978853], + [110.153824, 30.953708], + [110.151976, 30.911613], + [110.082375, 30.799614], + [110.048498, 30.800642], + [110.019549, 30.829425], + [110.008462, 30.883369], + [109.943788, 30.878746], + [109.894513, 30.899803], + [109.828608, 30.864364], + [109.780564, 30.848437], + [109.701724, 30.783677], + [109.656761, 30.760538], + [109.661072, 30.738936], + [109.625348, 30.702923], + [109.590855, 30.69366], + [109.574225, 30.646818], + [109.543428, 30.63961], + [109.535421, 30.664837], + [109.435638, 30.595832], + [109.418392, 30.559766], + [109.35495, 30.487076], + [109.337088, 30.521623], + [109.36111, 30.551004], + [109.314298, 30.599953], + [109.299516, 30.630341], + [109.245313, 30.580892], + [109.191726, 30.545851], + [109.191726, 30.545851], + [109.143683, 30.521108], + [109.103647, 30.565949], + [109.09256, 30.578831], + [109.106111, 30.61077], + [109.111654, 30.646303], + [109.071002, 30.640125], + [109.042669, 30.655571], + [109.006329, 30.626736], + [108.971836, 30.627766], + [108.893612, 30.565434], + [108.838793, 30.503062], + [108.808612, 30.491202], + [108.789518, 30.513374], + [108.743939, 30.494812], + [108.698975, 30.54482], + [108.688504, 30.58759], + [108.642925, 30.578831], + [108.6497, 30.53915], + [108.56778, 30.468508], + [108.556077, 30.487592], + [108.512961, 30.501515], + [108.472925, 30.487076], + [108.42673, 30.492233], + [108.411331, 30.438586], + [108.430425, 30.416397], + [108.402092, 30.376649], + [108.431041, 30.354446], + [108.460606, 30.35961], + [108.501258, 30.314673], + [108.524048, 30.309506], + [108.54499, 30.269716], + [108.581947, 30.255759], + [108.551766, 30.1637], + [108.56778, 30.157491], + [108.546222, 30.104178], + [108.513577, 30.057571], + [108.532055, 30.051873], + [108.536367, 29.983472], + [108.517889, 29.9394], + [108.516041, 29.885451], + [108.467998, 29.864175], + [108.433505, 29.880262], + [108.371295, 29.841337], + [108.424266, 29.815897], + [108.422418, 29.772791], + [108.442744, 29.778505], + [108.437201, 29.741098], + [108.460606, 29.741098], + [108.504338, 29.707836], + [108.504954, 29.728626], + [108.548686, 29.749412], + [108.52528, 29.770713], + [108.556077, 29.818493], + [108.601041, 29.863656], + [108.658939, 29.854833], + [108.680497, 29.800319], + [108.676801, 29.749412], + [108.690968, 29.689642], + [108.752562, 29.649082], + [108.786438, 29.691721], + [108.797525, 29.660003], + [108.781511, 29.635558], + [108.844337, 29.658443], + [108.888068, 29.628795], + [108.870206, 29.596537], + [108.901003, 29.604863], + [108.913322, 29.574679], + [108.878213, 29.539279], + [108.888684, 29.502305], + [108.866511, 29.470527], + [108.884373, 29.440824], + [108.927488, 29.435612], + [108.934264, 29.399643], + [108.919481, 29.3261], + [108.983539, 29.332883], + [108.999553, 29.36366], + [109.034662, 29.360531], + [109.060531, 29.403292], + [109.11227, 29.361053], + [109.106727, 29.288526], + [109.141835, 29.270256], + [109.110422, 29.21647], + [109.139372, 29.168927], + [109.162777, 29.180946], + [109.215748, 29.145409], + [109.232378, 29.119271], + [109.274262, 29.121885], + [109.261328, 29.161089], + [109.275494, 29.202366], + [109.257632, 29.222738], + [109.312451, 29.25146], + [109.352487, 29.284872], + [109.343863, 29.369398], + [109.391291, 29.372005], + [109.368501, 29.413719], + [109.418392, 29.453332], + [109.415928, 29.497617], + [109.436254, 29.488761], + [109.433791, 29.530948], + [109.458428, 29.513242], + [109.467051, 29.560104], + [109.488609, 29.553336], + [109.516326, 29.626194], + [109.558826, 29.606944], + [109.578536, 29.629836], + [109.651833, 29.625674], + [109.664768, 29.599659], + [109.717739, 29.615269], + [109.701108, 29.636078], + [109.714659, 29.673524], + [109.760238, 29.689122], + [109.755311, 29.733304], + [109.779333, 29.757725], + [109.869876, 29.774869], + [109.908064, 29.763959], + [109.941325, 29.774349], + [110.02386, 29.769674], + [110.113788, 29.789932], + [110.160599, 29.753569], + [110.219729, 29.746814], + [110.289946, 29.6964], + [110.302265, 29.661563], + [110.339221, 29.668324], + [110.372482, 29.633477], + [110.447011, 29.664684], + [110.467337, 29.713034], + [110.507373, 29.692241], + [110.562807, 29.712515], + [110.642879, 29.775907], + [110.60038, 29.839779], + [110.549873, 29.848085], + [110.538786, 29.895828], + [110.49875, 29.91243], + [110.517228, 29.961179], + [110.557264, 29.988137], + [110.491358, 30.019751], + [110.497518, 30.055499], + [110.531394, 30.061197], + [110.600996, 30.054463], + [110.650887, 30.07777], + [110.712481, 30.033223], + [110.756212, 30.054463], + [110.746973, 30.112979], + [110.851067, 30.126439], + [110.924364, 30.111426], + [110.929907, 30.063268], + [111.031537, 30.048765], + [111.242188, 30.040476], + [111.266826, 30.01146], + [111.3315, 29.970512], + [111.342587, 29.944586], + [111.382623, 29.95029], + [111.394325, 29.912948], + [111.436825, 29.930065], + [111.475629, 29.918654], + [111.527368, 29.925916], + [111.553854, 29.894272], + [111.669034, 29.888565], + [111.669034, 29.888565], + [111.705375, 29.890121], + [111.723853, 29.909317], + [111.723853, 29.909317], + [111.75773, 29.92021], + [111.8107, 29.901017], + [111.861207, 29.856909], + [111.899396, 29.855871], + [111.899396, 29.855871], + [111.925881, 29.836665], + [111.965917, 29.832512], + [111.95483, 29.796683], + [112.008417, 29.778505], + [112.07617, 29.743696], + [112.065699, 29.681323], + [112.089721, 29.685482], + [112.111279, 29.659483], + [112.178416, 29.656883], + [112.202438, 29.633997], + [112.244322, 29.659483], + [112.233851, 29.61631], + [112.303452, 29.585609], + [112.281278, 29.536676], + [112.291133, 29.517409], + [112.333017, 29.545007], + [112.368741, 29.541362], + [112.424792, 29.598619], + [112.439574, 29.633997], + [112.499321, 29.629316], + [112.54182, 29.60122], + [112.572001, 29.624113], + [112.640371, 29.607985], + [112.650842, 29.592374], + [112.693957, 29.601741], + [112.714283, 29.648561], + [112.733378, 29.645441], + [112.788812, 29.681323], + [112.79374, 29.735902], + [112.861493, 29.78318], + [112.894138, 29.783699], + [112.902145, 29.79149], + [112.929246, 29.77383], + [112.923703, 29.766557], + [112.926782, 29.692241], + [112.944645, 29.682883], + [112.974826, 29.732784], + [113.025949, 29.772791], + [113.005007, 29.693801], + [112.915696, 29.620992], + [112.912, 29.606944], + [112.950188, 29.473132], + [113.034572, 29.523658], + [113.057362, 29.522616], + [113.078304, 29.438218], + [113.099861, 29.459585], + [113.145441, 29.449163], + [113.181781, 29.485636], + [113.222433, 29.543965], + [113.277252, 29.594976], + [113.37765, 29.703158], + [113.571671, 29.849123], + [113.575367, 29.809147], + [113.550729, 29.768115], + [113.558736, 29.727067], + [113.540258, 29.699519], + [113.547033, 29.675603], + [113.606164, 29.666764], + [113.663446, 29.684443], + [113.680692, 29.64336], + [113.704098, 29.634518], + [113.73859, 29.579363], + [113.710257, 29.555419], + [113.630801, 29.523137], + [113.677613, 29.513763], + [113.755221, 29.446557], + [113.731199, 29.393907], + [113.674533, 29.388172], + [113.660982, 29.333405], + [113.632033, 29.316186], + [113.609859, 29.25146], + [113.651743, 29.225872], + [113.693011, 29.226394], + [113.691779, 29.19662], + [113.66283, 29.16945], + [113.690547, 29.114566], + [113.696091, 29.077437], + [113.722576, 29.104631], + [113.749677, 29.060699], + [113.775547, 29.095219], + [113.816199, 29.105154], + [113.852539, 29.058606], + [113.882104, 29.065407], + [113.876561, 29.038202], + [113.898119, 29.029307], + [113.94185, 29.047097], + [113.952321, 29.092604], + [113.98743, 29.126068], + [114.034857, 29.152204], + [114.063191, 29.204978], + [114.169748, 29.216993], + [114.252284, 29.23475], + [114.259059, 29.343839], + [114.307102, 29.365225], + [114.341595, 29.327665], + [114.376088, 29.322969], + [114.440145, 29.341752], + [114.466015, 29.324013], + [114.519602, 29.325578], + [114.589819, 29.352707], + [114.621847, 29.379828], + [114.67297, 29.395993], + [114.740724, 29.386607], + [114.759818, 29.363139], + [114.784455, 29.386086], + [114.812173, 29.383478], + [114.866375, 29.404335], + [114.895325, 29.397557], + [114.931049, 29.422581], + [114.947063, 29.465317], + [114.935977, 29.486678], + [114.90518, 29.473132], + [114.918114, 29.454374], + [114.888549, 29.436134], + [114.860216, 29.476258], + [114.900868, 29.505951], + [114.940288, 29.493971], + [114.966773, 29.522096], + [114.947679, 29.542924], + [115.00065, 29.572076], + [115.033295, 29.546568], + [115.087498, 29.560104], + [115.086266, 29.525741], + [115.154019, 29.510117], + [115.157099, 29.584568], + [115.120142, 29.597578], + [115.143548, 29.645961], + [115.117679, 29.655843], + [115.113367, 29.684963], + [115.176809, 29.654803], + [115.250722, 29.660003], + [115.28583, 29.618391], + [115.304924, 29.637118], + [115.355431, 29.649602], + [115.412714, 29.688602], + [115.470612, 29.739539], + [115.479235, 29.811224], + [115.51188, 29.840299], + [115.611662, 29.841337], + [115.667712, 29.850161], + [115.706517, 29.837703], + [115.762567, 29.793048], + [115.837096, 29.748373], + [115.909777, 29.723949], + [115.965827, 29.724469], + [116.049595, 29.761881], + [116.087167, 29.795125], + [116.13521, 29.819532], + [116.128435, 29.897904], + [116.073616, 29.969993], + [116.091479, 30.036331], + [116.078544, 30.062233], + [116.088399, 30.110391], + [116.055754, 30.180774], + [116.065609, 30.204569], + [115.997856, 30.252657], + [115.985537, 30.290905], + [115.903001, 30.31364], + [115.91532, 30.337919], + [115.885139, 30.379747], + [115.921479, 30.416397], + [115.894994, 30.452517], + [115.910393, 30.519046], + [115.887603, 30.542758], + [115.876516, 30.582438], + [115.848799, 30.602014], + [115.819234, 30.597893], + [115.81369, 30.637035], + [115.762567, 30.685426], + [115.782893, 30.751795], + [115.851262, 30.756938], + [115.863581, 30.815549], + [115.848799, 30.828397], + [115.865429, 30.864364], + [115.932566, 30.889532], + [115.976298, 30.931636], + [116.03974, 30.957813], + [116.071769, 30.956787], + [116.058834, 31.012711], + [116.015102, 31.011685], + [116.006479, 31.034764], + [115.938726, 31.04707], + [115.939958, 31.071678], + [115.887603, 31.10909], + [115.867277, 31.147512], + [115.837712, 31.127022], + [115.797676, 31.128047], + [115.778582, 31.112164], + [115.700973, 31.201276], + [115.655394, 31.211002], + [115.603655, 31.17363], + [115.585793, 31.143926], + [115.540213, 31.194621], + [115.539597, 31.231985], + [115.507568, 31.267799], + [115.473076, 31.265242], + [115.443511, 31.344498], + [115.40717, 31.337854], + [115.372062, 31.349098], + [115.393004, 31.389977], + [115.373909, 31.405813], + [115.338801, 31.40428], + [115.301229, 31.383846], + [115.250722, 31.392021], + [115.252569, 31.421646], + [115.211301, 31.442072], + [115.218077, 31.515057], + [115.235939, 31.555354], + [115.212533, 31.555354], + [115.16449, 31.604808], + [115.12507, 31.599201], + [115.106592, 31.567592], + [115.114599, 31.530362], + [115.096121, 31.508425], + [115.022824, 31.527811], + [114.995107, 31.471171], + [114.962462, 31.494648], + [114.884238, 31.469129], + [114.870071, 31.479337], + [114.830035, 31.45892], + [114.789383, 31.480358], + [114.778912, 31.520669], + [114.696376, 31.525771], + [114.641558, 31.582378], + [114.61692, 31.585437], + [114.572572, 31.553824], + [114.560869, 31.560963], + [114.547935, 31.623665], + [114.57134, 31.660858], + [114.586123, 31.762172], + [114.549783, 31.766751], + [114.530688, 31.742834], + [114.443841, 31.728074], + [114.403189, 31.746906], + [114.350218, 31.755557], + [114.292936, 31.752503], + [114.235654, 31.833382], + [114.191922, 31.852192], + [114.134024, 31.843042], + [114.121705, 31.809482], + [114.086596, 31.782014], + [114.017611, 31.770822], + [113.988662, 31.749959], + [113.952321, 31.793714], + [113.957865, 31.852701], + [113.914749, 31.877098], + [113.893807, 31.847109], + [113.854387, 31.843042], + [113.830981, 31.87913], + [113.832213, 31.918761], + [113.805728, 31.929428], + [113.817431, 31.964467], + [113.757685, 31.98985], + [113.791561, 32.036028], + [113.728735, 32.083197], + [113.722576, 32.12426], + [113.750293, 32.11615], + [113.782322, 32.184553], + [113.752757, 32.215951], + [113.73859, 32.255942], + [113.749061, 32.272642], + [113.768772, 32.30148], + [113.753989, 32.328286], + [113.76754, 32.370249], + [113.735511, 32.410677], + [113.700402, 32.420782], + [113.650511, 32.412698], + [113.624642, 32.36115], + [113.511925, 32.316654], + [113.428773, 32.270618], + [113.376418, 32.298445], + [113.353628, 32.294904], + [113.317904, 32.327275], + [113.333918, 32.336377], + [113.2366, 32.407141], + [113.211962, 32.431895], + [113.158992, 32.410677], + [113.155912, 32.380863], + [113.118956, 32.375809], + [113.107869, 32.398551], + [113.078919, 32.394508], + [113.025949, 32.425328], + [113.000695, 32.41674], + [112.992072, 32.378336], + [112.912, 32.390971], + [112.888594, 32.37682], + [112.860877, 32.396024], + [112.776493, 32.358623], + [112.735841, 32.356095], + [112.733993, 32.356601], + [112.724138, 32.358623], + [112.716747, 32.357612], + [112.645298, 32.368227], + [112.612037, 32.386928], + [112.589248, 32.381369], + [112.545516, 32.404109], + [112.530733, 32.37682], + [112.477147, 32.380863], + [112.448814, 32.34295], + [112.390915, 32.37126], + [112.360118, 32.3657], + [112.328089, 32.321712], + [112.206133, 32.392992], + [112.172873, 32.385412], + [112.150083, 32.411688], + [112.155626, 32.377326], + [112.081098, 32.425833], + [112.063851, 32.474315], + [112.014576, 32.450077], + [111.975772, 32.471791], + [111.948671, 32.51722], + [111.890157, 32.503089], + [111.858128, 32.528826], + [111.808853, 32.536899], + [111.713382, 32.606497], + [111.646245, 32.605993], + [111.640701, 32.634724], + [111.577875, 32.593388], + [111.530448, 32.628172], + [111.513202, 32.674026], + [111.458383, 32.726402], + [111.475629, 32.760127], + [111.41342, 32.757108], + [111.380159, 32.829049], + [111.293311, 32.859217], + [111.276065, 32.903445], + [111.255123, 32.883846], + [111.242804, 32.930573], + [111.273601, 32.971753], + [111.258819, 33.006389], + [111.221862, 33.042517], + [111.152877, 33.039507], + [111.192913, 33.071609], + [111.179363, 33.115229], + [111.146102, 33.12375], + [111.12824, 33.15532], + [111.08882, 33.181871], + [111.045704, 33.169849] + ] + ], + [ + [ + [109.106111, 30.570587], + [109.101183, 30.579346], + [109.09872, 30.579346], + [109.106111, 30.570587] + ] + ], + [ + [ + [111.046936, 33.202905], + [111.035849, 33.187881], + [111.034001, 33.177864], + [111.045704, 33.169849], + [111.046936, 33.202905] + ] + ], + [ + [ + [112.716747, 32.357612], + [112.735841, 32.356095], + [112.733993, 32.356601], + [112.724138, 32.358623], + [112.716747, 32.357612] + ] + ], + [ + [ + [112.902145, 29.79149], + [112.894138, 29.783699], + [112.923703, 29.766557], + [112.929246, 29.77383], + [112.902145, 29.79149] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 430000, + "name": "湖南省", + "center": [112.982279, 28.19409], + "centroid": [111.711649, 27.629216], + "childrenNum": 14, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 17, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [112.024431, 24.740308], + [112.03367, 24.771286], + [112.124214, 24.841364], + [112.149467, 24.837019], + [112.167329, 24.859828], + [112.175337, 24.927685], + [112.119902, 24.963499], + [112.12175, 24.989538], + [112.155626, 25.026419], + [112.151931, 25.055698], + [112.177184, 25.106649], + [112.187039, 25.182494], + [112.246785, 25.185202], + [112.256025, 25.159204], + [112.302836, 25.157037], + [112.315771, 25.175453], + [112.365046, 25.191701], + [112.414937, 25.14241], + [112.44327, 25.185744], + [112.458053, 25.152162], + [112.562762, 25.124531], + [112.628052, 25.140785], + [112.660081, 25.132658], + [112.712436, 25.083344], + [112.714899, 25.025876], + [112.742001, 24.99876], + [112.743233, 24.959701], + [112.778341, 24.947764], + [112.780805, 24.896747], + [112.873812, 24.896747], + [112.904609, 24.921715], + [112.941565, 24.915745], + [112.994536, 24.927142], + [113.009934, 24.977604], + [112.979137, 25.03401], + [113.004391, 25.089306], + [112.96805, 25.141869], + [112.97421, 25.168412], + [113.034572, 25.198199], + [112.992688, 25.247467], + [112.958195, 25.254503], + [112.897833, 25.238264], + [112.867036, 25.249632], + [112.854718, 25.337829], + [112.891058, 25.339993], + [112.924319, 25.296714], + [112.93479, 25.325929], + [112.969898, 25.350269], + [113.013014, 25.352432], + [113.078304, 25.382174], + [113.096782, 25.412449], + [113.131274, 25.414611], + [113.11834, 25.445418], + [113.176854, 25.471355], + [113.226129, 25.50971], + [113.248919, 25.514031], + [113.311129, 25.490264], + [113.314208, 25.442716], + [113.341926, 25.448661], + [113.373338, 25.402719], + [113.407215, 25.401637], + [113.449715, 25.359463], + [113.479896, 25.375145], + [113.535946, 25.368656], + [113.579062, 25.34432], + [113.584606, 25.306453], + [113.611707, 25.327552], + [113.680076, 25.334584], + [113.686852, 25.351891], + [113.753373, 25.362707], + [113.76446, 25.333502], + [113.814967, 25.328634], + [113.839605, 25.363248], + [113.877177, 25.380552], + [113.887032, 25.436772], + [113.94493, 25.441635], + [113.962792, 25.528072], + [113.986198, 25.529153], + [113.983118, 25.599336], + [113.957249, 25.611749], + [113.913517, 25.701299], + [113.920293, 25.741197], + [113.961561, 25.77731], + [113.971416, 25.836036], + [114.028082, 25.893119], + [114.028082, 25.98138], + [114.008372, 26.015806], + [114.044096, 26.076564], + [114.087828, 26.06635], + [114.121089, 26.085702], + [114.10569, 26.097526], + [114.188842, 26.121172], + [114.237501, 26.152333], + [114.216559, 26.203355], + [114.181451, 26.214631], + [114.102611, 26.187783], + [114.088444, 26.168448], + [114.013299, 26.184023], + [113.962792, 26.150722], + [113.949242, 26.192616], + [113.972647, 26.20604], + [113.978807, 26.237716], + [114.029314, 26.266163], + [114.021307, 26.288701], + [114.047792, 26.337518], + [114.030546, 26.376664], + [114.062575, 26.406149], + [114.085364, 26.406149], + [114.090292, 26.455988], + [114.110002, 26.482775], + [114.07243, 26.480096], + [114.10877, 26.56952], + [114.019459, 26.587182], + [113.996669, 26.615543], + [113.912901, 26.613938], + [113.860546, 26.664221], + [113.853771, 26.769532], + [113.835909, 26.806394], + [113.877177, 26.859262], + [113.890112, 26.895562], + [113.927068, 26.948922], + [113.892575, 26.964925], + [113.86301, 27.018252], + [113.824206, 27.036378], + [113.803264, 27.099261], + [113.771851, 27.096598], + [113.779242, 27.137081], + [113.846996, 27.222262], + [113.872865, 27.289828], + [113.854387, 27.30525], + [113.872865, 27.346721], + [113.872865, 27.384988], + [113.72812, 27.350442], + [113.699786, 27.331836], + [113.657902, 27.347253], + [113.616635, 27.345658], + [113.605548, 27.38924], + [113.632033, 27.40518], + [113.59754, 27.428554], + [113.591381, 27.467855], + [113.627105, 27.49971], + [113.583374, 27.524657], + [113.579062, 27.545354], + [113.608627, 27.585143], + [113.607395, 27.625449], + [113.652359, 27.663619], + [113.696707, 27.71979], + [113.69917, 27.740979], + [113.763228, 27.799228], + [113.756453, 27.860091], + [113.72812, 27.874904], + [113.752141, 27.93361], + [113.822974, 27.982243], + [113.845148, 27.971672], + [113.864242, 28.004966], + [113.914133, 27.991227], + [113.936307, 28.018703], + [113.966488, 28.017646], + [113.970184, 28.041418], + [114.025618, 28.031382], + [114.047176, 28.057263], + [114.025002, 28.080499], + [113.992357, 28.161255], + [114.012068, 28.174972], + [114.068734, 28.171806], + [114.107538, 28.182885], + [114.109386, 28.205038], + [114.143879, 28.246694], + [114.182067, 28.249858], + [114.198081, 28.29097], + [114.2529, 28.319423], + [114.252284, 28.395787], + [114.214712, 28.403157], + [114.172212, 28.432632], + [114.217175, 28.466308], + [114.218407, 28.48472], + [114.15435, 28.507337], + [114.138335, 28.533629], + [114.08598, 28.558337], + [114.132176, 28.607211], + [114.122321, 28.623497], + [114.157429, 28.761566], + [114.137719, 28.779926], + [114.153734, 28.829221], + [114.124784, 28.843376], + [114.076741, 28.834464], + [114.056415, 28.872204], + [114.060111, 28.902596], + [114.028082, 28.891069], + [114.005292, 28.917788], + [114.008988, 28.955498], + [113.973879, 28.937692], + [113.955401, 28.978536], + [113.961561, 28.999476], + [113.94185, 29.047097], + [113.898119, 29.029307], + [113.876561, 29.038202], + [113.882104, 29.065407], + [113.852539, 29.058606], + [113.816199, 29.105154], + [113.775547, 29.095219], + [113.749677, 29.060699], + [113.722576, 29.104631], + [113.696091, 29.077437], + [113.690547, 29.114566], + [113.66283, 29.16945], + [113.691779, 29.19662], + [113.693011, 29.226394], + [113.651743, 29.225872], + [113.609859, 29.25146], + [113.632033, 29.316186], + [113.660982, 29.333405], + [113.674533, 29.388172], + [113.731199, 29.393907], + [113.755221, 29.446557], + [113.677613, 29.513763], + [113.630801, 29.523137], + [113.710257, 29.555419], + [113.73859, 29.579363], + [113.704098, 29.634518], + [113.680692, 29.64336], + [113.663446, 29.684443], + [113.606164, 29.666764], + [113.547033, 29.675603], + [113.540258, 29.699519], + [113.558736, 29.727067], + [113.550729, 29.768115], + [113.575367, 29.809147], + [113.571671, 29.849123], + [113.37765, 29.703158], + [113.277252, 29.594976], + [113.222433, 29.543965], + [113.181781, 29.485636], + [113.145441, 29.449163], + [113.099861, 29.459585], + [113.078304, 29.438218], + [113.057362, 29.522616], + [113.034572, 29.523658], + [112.950188, 29.473132], + [112.912, 29.606944], + [112.915696, 29.620992], + [113.005007, 29.693801], + [113.025949, 29.772791], + [112.974826, 29.732784], + [112.944645, 29.682883], + [112.926782, 29.692241], + [112.923703, 29.766557], + [112.894138, 29.783699], + [112.861493, 29.78318], + [112.79374, 29.735902], + [112.788812, 29.681323], + [112.733378, 29.645441], + [112.714283, 29.648561], + [112.693957, 29.601741], + [112.650842, 29.592374], + [112.640371, 29.607985], + [112.572001, 29.624113], + [112.54182, 29.60122], + [112.499321, 29.629316], + [112.439574, 29.633997], + [112.424792, 29.598619], + [112.368741, 29.541362], + [112.333017, 29.545007], + [112.291133, 29.517409], + [112.281278, 29.536676], + [112.303452, 29.585609], + [112.233851, 29.61631], + [112.244322, 29.659483], + [112.202438, 29.633997], + [112.178416, 29.656883], + [112.111279, 29.659483], + [112.089721, 29.685482], + [112.065699, 29.681323], + [112.07617, 29.743696], + [112.008417, 29.778505], + [111.95483, 29.796683], + [111.965917, 29.832512], + [111.925881, 29.836665], + [111.899396, 29.855871], + [111.899396, 29.855871], + [111.861207, 29.856909], + [111.8107, 29.901017], + [111.75773, 29.92021], + [111.723853, 29.909317], + [111.723853, 29.909317], + [111.705375, 29.890121], + [111.669034, 29.888565], + [111.669034, 29.888565], + [111.553854, 29.894272], + [111.527368, 29.925916], + [111.475629, 29.918654], + [111.436825, 29.930065], + [111.394325, 29.912948], + [111.382623, 29.95029], + [111.342587, 29.944586], + [111.3315, 29.970512], + [111.266826, 30.01146], + [111.242188, 30.040476], + [111.031537, 30.048765], + [110.929907, 30.063268], + [110.924364, 30.111426], + [110.851067, 30.126439], + [110.746973, 30.112979], + [110.756212, 30.054463], + [110.712481, 30.033223], + [110.650887, 30.07777], + [110.600996, 30.054463], + [110.531394, 30.061197], + [110.497518, 30.055499], + [110.491358, 30.019751], + [110.557264, 29.988137], + [110.517228, 29.961179], + [110.49875, 29.91243], + [110.538786, 29.895828], + [110.549873, 29.848085], + [110.60038, 29.839779], + [110.642879, 29.775907], + [110.562807, 29.712515], + [110.507373, 29.692241], + [110.467337, 29.713034], + [110.447011, 29.664684], + [110.372482, 29.633477], + [110.339221, 29.668324], + [110.302265, 29.661563], + [110.289946, 29.6964], + [110.219729, 29.746814], + [110.160599, 29.753569], + [110.113788, 29.789932], + [110.02386, 29.769674], + [109.941325, 29.774349], + [109.908064, 29.763959], + [109.869876, 29.774869], + [109.779333, 29.757725], + [109.755311, 29.733304], + [109.760238, 29.689122], + [109.714659, 29.673524], + [109.701108, 29.636078], + [109.717739, 29.615269], + [109.664768, 29.599659], + [109.651833, 29.625674], + [109.578536, 29.629836], + [109.558826, 29.606944], + [109.516326, 29.626194], + [109.488609, 29.553336], + [109.467051, 29.560104], + [109.458428, 29.513242], + [109.433791, 29.530948], + [109.436254, 29.488761], + [109.415928, 29.497617], + [109.418392, 29.453332], + [109.368501, 29.413719], + [109.391291, 29.372005], + [109.343863, 29.369398], + [109.352487, 29.284872], + [109.312451, 29.25146], + [109.257632, 29.222738], + [109.275494, 29.202366], + [109.261328, 29.161089], + [109.274262, 29.121885], + [109.232378, 29.119271], + [109.240386, 29.086328], + [109.312451, 29.066453], + [109.319842, 29.042388], + [109.294588, 29.015177], + [109.292741, 28.987436], + [109.261328, 28.952356], + [109.235458, 28.882161], + [109.246545, 28.80143], + [109.241002, 28.776779], + [109.2989, 28.7474], + [109.294588, 28.722211], + [109.252704, 28.691767], + [109.271183, 28.671816], + [109.192958, 28.636104], + [109.201581, 28.597753], + [109.235458, 28.61982], + [109.252089, 28.606685], + [109.306907, 28.62087], + [109.319842, 28.579886], + [109.273646, 28.53836], + [109.274262, 28.494714], + [109.260712, 28.46473], + [109.264407, 28.392628], + [109.289045, 28.373673], + [109.268719, 28.33786], + [109.275494, 28.313101], + [109.317994, 28.277795], + [109.33524, 28.293605], + [109.388211, 28.268307], + [109.367885, 28.254602], + [109.340168, 28.19027], + [109.33832, 28.141731], + [109.314298, 28.103729], + [109.298284, 28.036136], + [109.335856, 28.063073], + [109.378972, 28.034551], + [109.362342, 28.007608], + [109.319842, 27.988585], + [109.30198, 27.956343], + [109.32169, 27.868027], + [109.346943, 27.838396], + [109.332777, 27.782815], + [109.37774, 27.736741], + [109.366653, 27.721909], + [109.414081, 27.725087], + [109.470747, 27.680049], + [109.45658, 27.673689], + [109.470131, 27.62863], + [109.451037, 27.586204], + [109.461508, 27.567637], + [109.404841, 27.55066], + [109.303211, 27.47582], + [109.300132, 27.423774], + [109.245313, 27.41793], + [109.202197, 27.450331], + [109.167089, 27.41793], + [109.141835, 27.448207], + [109.142451, 27.418461], + [109.103647, 27.336621], + [109.044517, 27.331304], + [109.053756, 27.293551], + [108.983539, 27.26802], + [108.963213, 27.235565], + [108.907778, 27.204699], + [108.926873, 27.160512], + [108.878829, 27.106187], + [108.79075, 27.084343], + [108.877597, 27.01612], + [108.942887, 27.017186], + [108.942887, 27.017186], + [108.940423, 27.044907], + [109.007561, 27.08008], + [109.032814, 27.104056], + [109.128901, 27.122701], + [109.101183, 27.06889], + [109.165857, 27.066758], + [109.21698, 27.114711], + [109.239154, 27.14933], + [109.264407, 27.131755], + [109.33524, 27.139212], + [109.358646, 27.153058], + [109.415312, 27.154123], + [109.441182, 27.117907], + [109.472595, 27.134951], + [109.454733, 27.069423], + [109.486761, 27.053968], + [109.497848, 27.079548], + [109.520022, 27.058764], + [109.555131, 26.946788], + [109.436254, 26.892359], + [109.452885, 26.861932], + [109.486761, 26.895562], + [109.509551, 26.877947], + [109.513247, 26.84004], + [109.497232, 26.815474], + [109.522486, 26.749226], + [109.528645, 26.743881], + [109.554515, 26.73533], + [109.597015, 26.756173], + [109.568065, 26.726243], + [109.528645, 26.743881], + [109.52187, 26.749226], + [109.486761, 26.759913], + [109.447957, 26.759913], + [109.407305, 26.719829], + [109.35495, 26.693098], + [109.283501, 26.698445], + [109.306291, 26.661012], + [109.334008, 26.646036], + [109.35495, 26.658873], + [109.390675, 26.598955], + [109.407305, 26.533116], + [109.381436, 26.518659], + [109.385747, 26.493487], + [109.362342, 26.472061], + [109.38082, 26.454381], + [109.319842, 26.418477], + [109.29582, 26.350389], + [109.271183, 26.327863], + [109.285965, 26.295676], + [109.325385, 26.29031], + [109.351255, 26.264016], + [109.369733, 26.277432], + [109.442414, 26.289774], + [109.467051, 26.313917], + [109.439334, 26.238789], + [109.47629, 26.148035], + [109.513863, 26.128157], + [109.502776, 26.096451], + [109.449805, 26.101826], + [109.452885, 26.055598], + [109.48245, 26.029788], + [109.513247, 25.998056], + [109.560058, 26.021184], + [109.588391, 26.019571], + [109.635203, 26.047533], + [109.649369, 26.016882], + [109.730057, 25.989988], + [109.710963, 25.954478], + [109.693717, 25.959321], + [109.67955, 25.921649], + [109.685094, 25.880197], + [109.768246, 25.890427], + [109.779333, 25.866196], + [109.811361, 25.877504], + [109.826144, 25.911422], + [109.806434, 25.973848], + [109.782412, 25.996981], + [109.814441, 26.041081], + [109.864332, 26.027637], + [109.898825, 26.095377], + [109.904368, 26.135679], + [109.970274, 26.195301], + [110.03002, 26.166299], + [110.099005, 26.168985], + [110.100853, 26.132455], + [110.065128, 26.050221], + [110.100853, 26.020108], + [110.168606, 26.028713], + [110.181541, 26.060437], + [110.24991, 26.010965], + [110.257301, 25.961473], + [110.325671, 25.975462], + [110.373098, 26.088927], + [110.437772, 26.153945], + [110.477808, 26.179727], + [110.495054, 26.166299], + [110.546793, 26.233421], + [110.552952, 26.283335], + [110.584365, 26.296749], + [110.612083, 26.333764], + [110.643495, 26.308552], + [110.673676, 26.317135], + [110.721104, 26.294066], + [110.742046, 26.313917], + [110.73527, 26.270993], + [110.759292, 26.248451], + [110.836284, 26.255966], + [110.939762, 26.286554], + [110.926212, 26.320354], + [110.944074, 26.326791], + [110.94469, 26.373447], + [110.974255, 26.385778], + [111.008747, 26.35897], + [111.008132, 26.336982], + [111.090667, 26.308016], + [111.208928, 26.30426], + [111.204616, 26.276359], + [111.228022, 26.261333], + [111.277913, 26.272066], + [111.293311, 26.222148], + [111.271754, 26.217316], + [111.274833, 26.183486], + [111.258203, 26.151796], + [111.26621, 26.095914], + [111.244652, 26.078177], + [111.267442, 26.058824], + [111.235413, 26.048071], + [111.189834, 25.953402], + [111.230486, 25.916267], + [111.251428, 25.864581], + [111.29208, 25.854349], + [111.297007, 25.874274], + [111.346282, 25.906577], + [111.376463, 25.906039], + [111.383239, 25.881812], + [111.460231, 25.885042], + [111.4861, 25.859196], + [111.43313, 25.84627], + [111.442369, 25.77192], + [111.399869, 25.744431], + [111.30871, 25.720171], + [111.309942, 25.645203], + [111.343202, 25.602574], + [111.324724, 25.564249], + [111.32842, 25.521592], + [111.279145, 25.42326], + [111.210776, 25.363248], + [111.184906, 25.367034], + [111.138711, 25.303748], + [111.103602, 25.285351], + [111.112841, 25.21715], + [110.998892, 25.161371], + [110.98411, 25.101772], + [110.951465, 25.04377], + [110.968711, 24.975434], + [111.009363, 24.921172], + [111.100522, 24.945593], + [111.101754, 25.035095], + [111.139943, 25.042144], + [111.200921, 25.074672], + [111.221862, 25.106649], + [111.274833, 25.151078], + [111.321645, 25.105023], + [111.36784, 25.108817], + [111.375231, 25.128324], + [111.435593, 25.093642], + [111.416499, 25.047566], + [111.467622, 25.02208], + [111.460231, 24.992793], + [111.43313, 24.979774], + [111.434977, 24.951562], + [111.470086, 24.92877], + [111.447296, 24.892947], + [111.449144, 24.857113], + [111.479325, 24.797366], + [111.461463, 24.728894], + [111.431282, 24.687574], + [111.451608, 24.665822], + [111.499035, 24.667997], + [111.526752, 24.637538], + [111.570484, 24.64461], + [111.588962, 24.690837], + [111.641933, 24.684856], + [111.637621, 24.715303], + [111.666571, 24.760961], + [111.708455, 24.788673], + [111.783599, 24.785957], + [111.814396, 24.770199], + [111.868599, 24.771829], + [111.875374, 24.756613], + [111.929577, 24.75607], + [111.951135, 24.769655], + [112.024431, 24.740308] + ] + ], + [ + [ + [109.528645, 26.743881], + [109.522486, 26.749226], + [109.52187, 26.749226], + [109.528645, 26.743881] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 440000, + "name": "广东省", + "center": [113.280637, 23.125178], + "centroid": [113.429919, 23.334643], + "childrenNum": 21, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 18, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [113.558736, 22.212244], + [113.594461, 22.228864], + [113.595693, 22.304186], + [113.617866, 22.315259], + [113.604932, 22.339617], + [113.627721, 22.349027], + [113.669605, 22.416539], + [113.66591, 22.438667], + [113.624642, 22.443092], + [113.608627, 22.408793], + [113.573519, 22.41156], + [113.631417, 22.475723], + [113.668373, 22.4807], + [113.691779, 22.514981], + [113.740438, 22.534329], + [113.717033, 22.645391], + [113.678228, 22.726007], + [113.733663, 22.736494], + [113.758301, 22.683496], + [113.765692, 22.665825], + [113.803264, 22.593463], + [113.856851, 22.539857], + [113.869786, 22.459685], + [113.893807, 22.442539], + [113.952937, 22.486783], + [113.954785, 22.491206], + [113.976343, 22.510558], + [114.031778, 22.503923], + [114.082285, 22.512216], + [114.095219, 22.534329], + [114.156813, 22.543726], + [114.166052, 22.559201], + [114.222719, 22.553122], + [114.232574, 22.539857], + [114.294784, 22.563623], + [114.321885, 22.587385], + [114.381631, 22.60175], + [114.427211, 22.589042], + [114.472174, 22.522168], + [114.476486, 22.459132], + [114.506667, 22.438667], + [114.549167, 22.465769], + [114.611377, 22.481806], + [114.628623, 22.513875], + [114.614456, 22.545384], + [114.568261, 22.560859], + [114.559022, 22.583517], + [114.603369, 22.638763], + [114.579964, 22.661407], + [114.51529, 22.655332], + [114.567029, 22.685705], + [114.591666, 22.690122], + [114.601521, 22.730975], + [114.689601, 22.7674], + [114.709927, 22.787817], + [114.749963, 22.764089], + [114.73518, 22.724351], + [114.728405, 22.651466], + [114.743803, 22.632687], + [114.746267, 22.581859], + [114.866375, 22.591805], + [114.88547, 22.538751], + [114.922426, 22.549253], + [114.927969, 22.621639], + [114.945216, 22.645391], + [115.039454, 22.713862], + [115.02344, 22.726007], + [115.053621, 22.747533], + [115.076411, 22.788368], + [115.154635, 22.80161], + [115.190975, 22.77347], + [115.190359, 22.818711], + [115.236555, 22.82533], + [115.230396, 22.776781], + [115.319091, 22.783402], + [115.338185, 22.776781], + [115.349272, 22.712206], + [115.381301, 22.684048], + [115.430576, 22.684048], + [115.471844, 22.697852], + [115.575322, 22.650914], + [115.565467, 22.684048], + [115.609198, 22.753052], + [115.541445, 22.755259], + [115.570394, 22.786713], + [115.583945, 22.82864], + [115.654162, 22.865591], + [115.696046, 22.84298], + [115.760103, 22.834707], + [115.788437, 22.809885], + [115.796444, 22.739254], + [115.829089, 22.734838], + [115.883291, 22.78561], + [115.931334, 22.802713], + [115.965211, 22.800506], + [115.99724, 22.826985], + [116.05637, 22.844635], + [116.104413, 22.816505], + [116.14137, 22.835259], + [116.239304, 22.921275], + [116.259014, 22.932298], + [116.302746, 22.951588], + [116.382818, 22.91907], + [116.449955, 22.936707], + [116.50539, 22.930645], + [116.544194, 22.996769], + [116.576839, 23.014397], + [116.557129, 23.056253], + [116.566368, 23.088738], + [116.550969, 23.109656], + [116.566368, 23.134424], + [116.665534, 23.158086], + [116.701259, 23.198248], + [116.74499, 23.215299], + [116.806584, 23.200998], + [116.821367, 23.240597], + [116.798577, 23.244996], + [116.782563, 23.313714], + [116.871874, 23.4159], + [116.871258, 23.416449], + [116.874338, 23.447199], + [116.874953, 23.447748], + [116.895895, 23.476295], + [116.888504, 23.501543], + [116.92854, 23.530079], + [116.963649, 23.507031], + [117.01046, 23.502641], + [117.044953, 23.539955], + [117.085605, 23.536663], + [117.192778, 23.5619], + [117.192778, 23.629356], + [117.147199, 23.654027], + [117.123793, 23.647448], + [117.055424, 23.694038], + [117.048032, 23.758687], + [117.019083, 23.801952], + [117.012308, 23.855054], + [116.981511, 23.855602], + [116.955642, 23.922359], + [116.976583, 23.931659], + [116.981511, 23.999471], + [116.953178, 24.008218], + [116.930388, 24.064514], + [116.9347, 24.126794], + [116.998757, 24.179217], + [116.956257, 24.216883], + [116.933468, 24.220157], + [116.938395, 24.28127], + [116.914374, 24.287817], + [116.919301, 24.321087], + [116.895895, 24.350533], + [116.903903, 24.369614], + [116.839229, 24.442097], + [116.860787, 24.460075], + [116.83307, 24.496568], + [116.796729, 24.502014], + [116.759157, 24.545572], + [116.761005, 24.583128], + [116.815207, 24.654944], + [116.777635, 24.679418], + [116.667382, 24.658752], + [116.623034, 24.64189], + [116.600861, 24.654401], + [116.570679, 24.621762], + [116.530027, 24.604895], + [116.506622, 24.621218], + [116.517709, 24.652225], + [116.485064, 24.720196], + [116.44626, 24.714216], + [116.416079, 24.744113], + [116.419158, 24.767482], + [116.375427, 24.803885], + [116.381586, 24.82507], + [116.417927, 24.840821], + [116.395137, 24.877746], + [116.363724, 24.87123], + [116.345862, 24.828872], + [116.297202, 24.801712], + [116.244232, 24.793563], + [116.251007, 24.82507], + [116.221442, 24.829959], + [116.191877, 24.877203], + [116.153073, 24.846795], + [116.068073, 24.850053], + [116.015102, 24.905975], + [115.985537, 24.899461], + [115.907929, 24.923343], + [115.89253, 24.936911], + [115.885139, 24.898918], + [115.907313, 24.879917], + [115.861733, 24.863629], + [115.863581, 24.891318], + [115.824161, 24.909232], + [115.807531, 24.862543], + [115.790284, 24.856027], + [115.764415, 24.791933], + [115.776734, 24.774546], + [115.756408, 24.749004], + [115.769342, 24.708236], + [115.801371, 24.705517], + [115.780429, 24.663103], + [115.797676, 24.628834], + [115.840791, 24.584217], + [115.843871, 24.562446], + [115.785357, 24.567345], + [115.752712, 24.546116], + [115.68927, 24.545027], + [115.671408, 24.604895], + [115.605503, 24.62557], + [115.569778, 24.622306], + [115.555611, 24.683768], + [115.522967, 24.702799], + [115.476771, 24.762591], + [115.412714, 24.79302], + [115.372678, 24.774546], + [115.358511, 24.735416], + [115.306772, 24.758787], + [115.269816, 24.749548], + [115.258729, 24.728894], + [115.1842, 24.711498], + [115.104744, 24.667997], + [115.083802, 24.699537], + [115.057317, 24.703343], + [115.024672, 24.669085], + [115.00373, 24.679418], + [114.940288, 24.650049], + [114.909491, 24.661471], + [114.893477, 24.582584], + [114.868839, 24.562446], + [114.846665, 24.602719], + [114.827571, 24.588026], + [114.781376, 24.613057], + [114.729637, 24.608704], + [114.73826, 24.565168], + [114.704999, 24.525973], + [114.664963, 24.583673], + [114.627391, 24.576598], + [114.589819, 24.537406], + [114.534384, 24.559181], + [114.429058, 24.48622], + [114.403189, 24.497657], + [114.391486, 24.563535], + [114.363769, 24.582584], + [114.300943, 24.578775], + [114.289856, 24.619042], + [114.258443, 24.641346], + [114.19069, 24.656576], + [114.169132, 24.689749], + [114.27261, 24.700624], + [114.281849, 24.724001], + [114.336052, 24.749004], + [114.342211, 24.807145], + [114.378551, 24.861457], + [114.403189, 24.877746], + [114.395798, 24.951019], + [114.454928, 24.977062], + [114.45616, 24.99659], + [114.506051, 24.999844], + [114.532536, 25.022623], + [114.561485, 25.077382], + [114.604601, 25.083886], + [114.640326, 25.074129], + [114.664963, 25.10123], + [114.735796, 25.121822], + [114.73518, 25.155954], + [114.685905, 25.173287], + [114.693912, 25.213902], + [114.73518, 25.225813], + [114.743188, 25.274528], + [114.714238, 25.315651], + [114.63663, 25.324306], + [114.599674, 25.385959], + [114.541159, 25.416773], + [114.477718, 25.37136], + [114.438914, 25.376226], + [114.43029, 25.343779], + [114.382863, 25.317274], + [114.31511, 25.33837], + [114.2954, 25.299961], + [114.260291, 25.291845], + [114.204857, 25.29942], + [114.190074, 25.316733], + [114.115545, 25.302125], + [114.083517, 25.275611], + [114.055799, 25.277775], + [114.039785, 25.250714], + [114.017611, 25.273987], + [114.029314, 25.328093], + [114.050256, 25.36433], + [113.983118, 25.415152], + [114.003444, 25.442716], + [113.94493, 25.441635], + [113.887032, 25.436772], + [113.877177, 25.380552], + [113.839605, 25.363248], + [113.814967, 25.328634], + [113.76446, 25.333502], + [113.753373, 25.362707], + [113.686852, 25.351891], + [113.680076, 25.334584], + [113.611707, 25.327552], + [113.584606, 25.306453], + [113.579062, 25.34432], + [113.535946, 25.368656], + [113.479896, 25.375145], + [113.449715, 25.359463], + [113.407215, 25.401637], + [113.373338, 25.402719], + [113.341926, 25.448661], + [113.314208, 25.442716], + [113.311129, 25.490264], + [113.248919, 25.514031], + [113.226129, 25.50971], + [113.176854, 25.471355], + [113.11834, 25.445418], + [113.131274, 25.414611], + [113.096782, 25.412449], + [113.078304, 25.382174], + [113.013014, 25.352432], + [112.969898, 25.350269], + [112.93479, 25.325929], + [112.924319, 25.296714], + [112.891058, 25.339993], + [112.854718, 25.337829], + [112.867036, 25.249632], + [112.897833, 25.238264], + [112.958195, 25.254503], + [112.992688, 25.247467], + [113.034572, 25.198199], + [112.97421, 25.168412], + [112.96805, 25.141869], + [113.004391, 25.089306], + [112.979137, 25.03401], + [113.009934, 24.977604], + [112.994536, 24.927142], + [112.941565, 24.915745], + [112.904609, 24.921715], + [112.873812, 24.896747], + [112.780805, 24.896747], + [112.778341, 24.947764], + [112.743233, 24.959701], + [112.742001, 24.99876], + [112.714899, 25.025876], + [112.712436, 25.083344], + [112.660081, 25.132658], + [112.628052, 25.140785], + [112.562762, 25.124531], + [112.458053, 25.152162], + [112.44327, 25.185744], + [112.414937, 25.14241], + [112.365046, 25.191701], + [112.315771, 25.175453], + [112.302836, 25.157037], + [112.256025, 25.159204], + [112.246785, 25.185202], + [112.187039, 25.182494], + [112.177184, 25.106649], + [112.151931, 25.055698], + [112.155626, 25.026419], + [112.12175, 24.989538], + [112.119902, 24.963499], + [112.175337, 24.927685], + [112.167329, 24.859828], + [112.149467, 24.837019], + [112.124214, 24.841364], + [112.03367, 24.771286], + [112.024431, 24.740308], + [111.961606, 24.721283], + [111.939432, 24.686487], + [111.953598, 24.64733], + [111.927729, 24.629378], + [111.936968, 24.595645], + [111.972077, 24.578775], + [112.007185, 24.534684], + [112.009649, 24.503103], + [111.985011, 24.467701], + [112.025047, 24.438828], + [112.057692, 24.387057], + [112.05954, 24.339628], + [112.026279, 24.294908], + [111.990555, 24.279634], + [111.986243, 24.25672], + [111.958526, 24.263813], + [111.912946, 24.221795], + [111.877222, 24.227252], + [111.871062, 24.176487], + [111.886461, 24.163929], + [111.878454, 24.109862], + [111.92157, 24.012045], + [111.940664, 23.987989], + [111.911714, 23.943693], + [111.854432, 23.947521], + [111.845809, 23.904305], + [111.812548, 23.887343], + [111.824867, 23.832612], + [111.8107, 23.80688], + [111.722621, 23.823305], + [111.683201, 23.822758], + [111.683201, 23.822758], + [111.654868, 23.833159], + [111.627766, 23.78881], + [111.621607, 23.725819], + [111.666571, 23.718696], + [111.614832, 23.65896], + [111.615448, 23.639225], + [111.555702, 23.64087], + [111.487332, 23.626615], + [111.479941, 23.532822], + [111.428818, 23.466414], + [111.399869, 23.469159], + [111.383239, 23.399423], + [111.389398, 23.375804], + [111.363528, 23.340641], + [111.376463, 23.30437], + [111.353058, 23.284582], + [111.36476, 23.240047], + [111.388782, 23.210349], + [111.38447, 23.16744], + [111.365992, 23.14488], + [111.377695, 23.082132], + [111.402333, 23.066165], + [111.43313, 23.073322], + [111.433746, 23.036428], + [111.389398, 23.005583], + [111.403565, 22.99126], + [111.362913, 22.967568], + [111.374615, 22.938361], + [111.358601, 22.889301], + [111.218167, 22.748085], + [111.185522, 22.735942], + [111.118385, 22.744773], + [111.058023, 22.729871], + [111.089435, 22.695643], + [111.055559, 22.648705], + [110.997045, 22.631582], + [110.958856, 22.636553], + [110.950233, 22.61059], + [110.896031, 22.613352], + [110.897878, 22.591805], + [110.812263, 22.576333], + [110.778386, 22.585174], + [110.749437, 22.556991], + [110.762988, 22.518298], + [110.740198, 22.498947], + [110.74143, 22.464109], + [110.688459, 22.477935], + [110.712481, 22.440879], + [110.711249, 22.369506], + [110.74143, 22.361757], + [110.749437, 22.329653], + [110.787009, 22.28259], + [110.759292, 22.274837], + [110.725415, 22.29588], + [110.687843, 22.249914], + [110.646575, 22.220554], + [110.678604, 22.172901], + [110.629329, 22.149068], + [110.598532, 22.162924], + [110.602843, 22.18343], + [110.55788, 22.196175], + [110.505525, 22.14297], + [110.456866, 22.189526], + [110.414366, 22.208365], + [110.378026, 22.164587], + [110.34846, 22.195621], + [110.326287, 22.152393], + [110.364475, 22.125785], + [110.35154, 22.097508], + [110.359547, 22.015973], + [110.352772, 21.97602], + [110.374946, 21.967695], + [110.374946, 21.967695], + [110.378642, 21.939942], + [110.378642, 21.939942], + [110.391576, 21.89386], + [110.337374, 21.887751], + [110.290562, 21.917736], + [110.283787, 21.892194], + [110.224041, 21.882198], + [110.224041, 21.882198], + [110.212338, 21.886085], + [110.212338, 21.886085], + [110.196323, 21.899968], + [110.12857, 21.902744], + [110.101469, 21.86998], + [110.050962, 21.857205], + [109.999839, 21.881643], + [109.94502, 21.84443], + [109.940093, 21.769419], + [109.916071, 21.668787], + [109.888354, 21.652101], + [109.888354, 21.652101], + [109.839695, 21.636525], + [109.786108, 21.637638], + [109.778101, 21.670455], + [109.742992, 21.616497], + [109.754695, 21.556396], + [109.788572, 21.490702], + [109.785492, 21.45673], + [109.819369, 21.445033], + [109.894513, 21.442248], + [109.904368, 21.429992], + [109.868644, 21.365913], + [109.770709, 21.359783], + [109.757775, 21.346963], + [109.763934, 21.226514], + [109.674623, 21.136671], + [109.674007, 21.067997], + [109.655529, 20.929435], + [109.664768, 20.862343], + [109.711579, 20.774519], + [109.730057, 20.719673], + [109.74484, 20.621124], + [109.793499, 20.615522], + [109.813825, 20.574627], + [109.811977, 20.541566], + [109.839695, 20.489439], + [109.888354, 20.475423], + [109.895745, 20.42776], + [109.864948, 20.40196], + [109.861252, 20.376717], + [109.916071, 20.316677], + [109.909296, 20.236961], + [109.929006, 20.211691], + [109.993679, 20.254368], + [110.082375, 20.258859], + [110.118099, 20.219553], + [110.168606, 20.219553], + [110.220345, 20.25156], + [110.296722, 20.249314], + [110.349076, 20.258859], + [110.384185, 20.293103], + [110.425453, 20.291419], + [110.452554, 20.311064], + [110.491358, 20.373912], + [110.54125, 20.42047], + [110.550489, 20.47262], + [110.499982, 20.572386], + [110.487047, 20.640167], + [110.466105, 20.680485], + [110.411286, 20.670966], + [110.392192, 20.682724], + [110.407591, 20.731987], + [110.393424, 20.816479], + [110.350924, 20.84165], + [110.327519, 20.847802], + [110.269004, 20.839972], + [110.209874, 20.860106], + [110.184005, 20.891979], + [110.180925, 20.98197], + [110.204947, 21.003202], + [110.208642, 21.050684], + [110.241903, 21.016051], + [110.24991, 21.045098], + [110.296722, 21.093684], + [110.39096, 21.124949], + [110.422373, 21.190807], + [110.451322, 21.186343], + [110.501213, 21.217588], + [110.534474, 21.204198], + [110.626249, 21.215915], + [110.65951, 21.239902], + [110.713097, 21.3124], + [110.768531, 21.364799], + [110.796248, 21.37483], + [110.888639, 21.367585], + [110.929291, 21.375945], + [111.034617, 21.438906], + [111.103602, 21.455616], + [111.171355, 21.458401], + [111.28284, 21.485691], + [111.276065, 21.443362], + [111.250196, 21.45116], + [111.257587, 21.41495], + [111.28592, 21.41885], + [111.353058, 21.464528], + [111.382623, 21.495714], + [111.444217, 21.514088], + [111.494724, 21.501282], + [111.521825, 21.517429], + [111.560629, 21.50518], + [111.609904, 21.530234], + [111.650556, 21.512418], + [111.677658, 21.529677], + [111.693672, 21.590345], + [111.736788, 21.609821], + [111.794686, 21.61149], + [111.832258, 21.578659], + [111.810084, 21.555283], + [111.887693, 21.578659], + [111.941896, 21.607039], + [111.972692, 21.603144], + [112.026895, 21.633744], + [111.997946, 21.657107], + [111.954214, 21.667674], + [111.956062, 21.710494], + [112.036134, 21.761637], + [112.136532, 21.793871], + [112.192583, 21.789425], + [112.196894, 21.736624], + [112.236315, 21.727173], + [112.238778, 21.702153], + [112.353343, 21.707157], + [112.415553, 21.734956], + [112.427256, 21.789981], + [112.445734, 21.803317], + [112.497473, 21.785535], + [112.535661, 21.753856], + [112.647146, 21.758302], + [112.68595, 21.810541], + [112.792508, 21.921067], + [112.841167, 21.920512], + [112.893522, 21.84443], + [112.929862, 21.838875], + [112.989608, 21.869424], + [113.047507, 21.956595], + [113.053666, 22.012089], + [113.032108, 22.04593], + [113.045659, 22.088636], + [113.086927, 22.12634], + [113.091854, 22.065344], + [113.142977, 22.012089], + [113.1516, 21.979905], + [113.235368, 21.887751], + [113.266781, 21.871646], + [113.319752, 21.909407], + [113.330223, 21.96159], + [113.442324, 22.009315], + [113.45957, 22.043711], + [113.527939, 22.073663], + [113.567359, 22.075327], + [113.554425, 22.107489], + [113.554425, 22.142416], + [113.534715, 22.174009], + [113.53841, 22.209473], + [113.558736, 22.212244] + ] + ], + [ + [ + [117.024627, 23.437865], + [116.982743, 23.460924], + [116.944555, 23.440061], + [116.951946, 23.419744], + [117.027091, 23.41535], + [117.050496, 23.400522], + [117.081909, 23.409309], + [117.124409, 23.389537], + [117.142887, 23.400522], + [117.142887, 23.459826], + [117.129336, 23.483431], + [117.093612, 23.459277], + [117.058503, 23.47355], + [117.029554, 23.443356], + [117.024627, 23.437865] + ] + ], + [ + [ + [112.853486, 21.740515], + [112.876275, 21.772753], + [112.840551, 21.776644], + [112.782653, 21.739959], + [112.724138, 21.719945], + [112.70566, 21.679354], + [112.734609, 21.666562], + [112.780189, 21.671568], + [112.730914, 21.613715], + [112.775261, 21.564189], + [112.817145, 21.590345], + [112.798667, 21.610933], + [112.821457, 21.655994], + [112.804826, 21.686583], + [112.83316, 21.736624], + [112.853486, 21.740515] + ] + ], + [ + [ + [112.530733, 21.583667], + [112.563378, 21.591458], + [112.571385, 21.619835], + [112.621277, 21.606482], + [112.665624, 21.642644], + [112.639139, 21.67268], + [112.66624, 21.683803], + [112.663776, 21.714386], + [112.592327, 21.693256], + [112.560299, 21.666562], + [112.57077, 21.645982], + [112.535045, 21.628737], + [112.530733, 21.583667] + ] + ], + [ + [ + [114.231342, 22.016528], + [114.311414, 22.041493], + [114.302791, 22.050368], + [114.239965, 22.03539], + [114.231342, 22.016528] + ] + ], + [ + [ + [110.43346, 21.171276], + [110.489511, 21.138904], + [110.508605, 21.140579], + [110.544945, 21.083633], + [110.582517, 21.094801], + [110.632409, 21.210893], + [110.589293, 21.194713], + [110.525235, 21.190249], + [110.499366, 21.213125], + [110.445163, 21.184669], + [110.431612, 21.180763], + [110.43346, 21.171276] + ] + ], + [ + [ + [112.435263, 21.663781], + [112.456205, 21.648763], + [112.458669, 21.68992], + [112.435263, 21.663781] + ] + ], + [ + [ + [110.517844, 21.079166], + [110.459946, 21.062971], + [110.398352, 21.096476], + [110.352772, 21.079724], + [110.305961, 21.0881], + [110.27578, 21.033369], + [110.211106, 20.986999], + [110.201251, 20.938378], + [110.309656, 20.963529], + [110.347845, 20.984763], + [110.407591, 20.990351], + [110.47288, 20.983087], + [110.511684, 20.916578], + [110.535706, 20.922727], + [110.539402, 20.987557], + [110.560344, 21.061295], + [110.517844, 21.079166] + ] + ], + [ + [ + [113.765076, 21.962145], + [113.774315, 21.998218], + [113.74167, 21.991559], + [113.765076, 21.962145] + ] + ], + [ + [ + [113.723192, 21.922177], + [113.742902, 21.950489], + [113.71888, 21.951599], + [113.723192, 21.922177] + ] + ], + [ + [ + [113.142977, 21.831653], + [113.162071, 21.853873], + [113.203955, 21.861093], + [113.167615, 21.876644], + [113.136818, 21.868869], + [113.142977, 21.831653] + ] + ], + [ + [ + [113.819894, 22.396068], + [113.813735, 22.419858], + [113.786634, 22.413773], + [113.819894, 22.396068] + ] + ], + [ + [ + [114.190074, 21.986564], + [114.229494, 21.995443], + [114.180835, 22.00987], + [114.190074, 21.986564] + ] + ], + [ + [ + [114.153734, 21.97491], + [114.171596, 22.000437], + [114.124169, 21.985455], + [114.153734, 21.97491] + ] + ], + [ + [ + [116.769628, 20.771721], + [116.761005, 20.750456], + [116.87249, 20.738143], + [116.889736, 20.683284], + [116.849084, 20.628405], + [116.749302, 20.600958], + [116.796113, 20.582471], + [116.862635, 20.588633], + [116.905135, 20.619443], + [116.934084, 20.676565], + [116.925461, 20.726949], + [116.88604, 20.775638], + [116.820135, 20.780674], + [116.769628, 20.771721] + ] + ], + [ + [ + [113.025333, 21.847762], + [113.045659, 21.882753], + [113.007471, 21.869424], + [113.025333, 21.847762] + ] + ], + [ + [ + [110.405127, 20.678245], + [110.437772, 20.677685], + [110.414366, 20.710157], + [110.405127, 20.678245] + ] + ], + [ + [ + [110.644727, 20.935584], + [110.584365, 20.948998], + [110.548641, 20.908752], + [110.562807, 20.861224], + [110.611467, 20.860106], + [110.646575, 20.917137], + [110.644727, 20.935584] + ] + ], + [ + [ + [110.556648, 20.32734], + [110.593604, 20.360447], + [110.586213, 20.381205], + [110.556648, 20.32734] + ] + ], + [ + [ + [115.943037, 21.097592], + [115.953508, 21.064088], + [115.989233, 21.035603], + [116.040356, 21.02052], + [116.067457, 21.04063], + [116.044051, 21.110434], + [116.024341, 21.12439], + [115.965211, 21.123832], + [115.943037, 21.097592] + ] + ], + [ + [ + [115.926407, 20.981411], + [115.939342, 20.945644], + [115.970139, 20.919373], + [115.999088, 20.922727], + [116.000936, 20.948439], + [115.954124, 20.99985], + [115.926407, 20.981411] + ] + ], + [ + [ + [115.834632, 22.722695], + [115.834632, 22.722143], + [115.835248, 22.722695], + [115.834632, 22.722695] + ] + ], + [ + [ + [115.834632, 22.723247], + [115.834632, 22.722695], + [115.835248, 22.722695], + [115.834632, 22.723247] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 450000, + "name": "广西壮族自治区", + "center": [108.320004, 22.82402], + "centroid": [108.7944, 23.833381], + "childrenNum": 14, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 19, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [109.48245, 26.029788], + [109.473211, 26.006663], + [109.408537, 25.967392], + [109.435022, 25.93349], + [109.396834, 25.900117], + [109.359262, 25.836036], + [109.339552, 25.83442], + [109.327849, 25.76168], + [109.340168, 25.731493], + [109.296436, 25.71424], + [109.207125, 25.740119], + [109.206509, 25.788087], + [109.147995, 25.741736], + [109.13198, 25.762758], + [109.143683, 25.795092], + [109.095024, 25.80533], + [109.077778, 25.776771], + [109.048213, 25.790781], + [108.989698, 25.778926], + [108.999553, 25.765453], + [108.963829, 25.732572], + [108.940423, 25.740119], + [108.896076, 25.71424], + [108.900387, 25.682423], + [108.953974, 25.686738], + [108.953974, 25.686738], + [109.007561, 25.734728], + [109.043285, 25.738502], + [109.07901, 25.72071], + [109.075314, 25.693749], + [109.030966, 25.629556], + [109.051908, 25.566949], + [109.088249, 25.550752], + [109.024807, 25.51241], + [108.949046, 25.557231], + [108.8893, 25.543193], + [108.890532, 25.556151], + [108.826474, 25.550212], + [108.814772, 25.526992], + [108.781511, 25.554531], + [108.799989, 25.576666], + [108.783975, 25.628477], + [108.724844, 25.634952], + [108.68912, 25.623081], + [108.68604, 25.587462], + [108.660787, 25.584763], + [108.658323, 25.550212], + [108.68912, 25.533473], + [108.634917, 25.520512], + [108.6072, 25.491885], + [108.600425, 25.432448], + [108.62999, 25.335666], + [108.625062, 25.308076], + [108.589338, 25.335125], + [108.585642, 25.365952], + [108.471693, 25.458928], + [108.418723, 25.443257], + [108.400244, 25.491344], + [108.359592, 25.513491], + [108.348506, 25.536173], + [108.308469, 25.525912], + [108.280752, 25.48], + [108.241332, 25.46217], + [108.251803, 25.430286], + [108.192673, 25.458928], + [108.162492, 25.444878], + [108.193289, 25.405421], + [108.142782, 25.390825], + [108.152021, 25.324306], + [108.143398, 25.269658], + [108.115065, 25.210112], + [108.080572, 25.193867], + [108.001732, 25.196574], + [107.928435, 25.155954], + [107.872384, 25.141327], + [107.839124, 25.115861], + [107.762747, 25.125073], + [107.789233, 25.15487], + [107.760283, 25.188451], + [107.762131, 25.229061], + [107.741805, 25.24043], + [107.700537, 25.194408], + [107.696226, 25.219858], + [107.661733, 25.258833], + [107.659885, 25.316192], + [107.632168, 25.310241], + [107.599523, 25.250714], + [107.576734, 25.256668], + [107.512676, 25.209029], + [107.472024, 25.213902], + [107.489886, 25.276693], + [107.481263, 25.299961], + [107.432604, 25.289139], + [107.409198, 25.347024], + [107.420901, 25.392987], + [107.375937, 25.411908], + [107.358691, 25.393528], + [107.318039, 25.401637], + [107.308184, 25.432988], + [107.336517, 25.461089], + [107.263836, 25.543193], + [107.232423, 25.556691], + [107.228728, 25.604733], + [107.205322, 25.607971], + [107.185612, 25.578825], + [107.064272, 25.559391], + [107.066736, 25.50917], + [107.015613, 25.495666], + [106.996519, 25.442716], + [106.963874, 25.437852], + [106.987896, 25.358922], + [107.012533, 25.352973], + [107.013765, 25.275611], + [106.975577, 25.232851], + [106.933077, 25.250714], + [106.904128, 25.231768], + [106.888113, 25.181953], + [106.853005, 25.186827], + [106.787715, 25.17112], + [106.764926, 25.183036], + [106.732281, 25.162454], + [106.691013, 25.179245], + [106.644817, 25.164621], + [106.63989, 25.132658], + [106.590615, 25.08768], + [106.551195, 25.082802], + [106.519782, 25.054072], + [106.450181, 25.033468], + [106.442173, 25.019369], + [106.332536, 24.988454], + [106.304819, 24.973807], + [106.253696, 24.971094], + [106.215508, 24.981944], + [106.191486, 24.95319], + [106.145291, 24.954275], + [106.197645, 24.885889], + [106.206269, 24.851139], + [106.173008, 24.760417], + [106.150218, 24.762591], + [106.113878, 24.714216], + [106.047356, 24.684312], + [106.024566, 24.633186], + [105.961741, 24.677786], + [105.942031, 24.725088], + [105.863806, 24.729437], + [105.827466, 24.702799], + [105.767104, 24.719109], + [105.70551, 24.768569], + [105.617431, 24.78161], + [105.607576, 24.803885], + [105.573083, 24.797366], + [105.497322, 24.809318], + [105.493011, 24.833217], + [105.457286, 24.87123], + [105.428337, 24.930941], + [105.365511, 24.943423], + [105.334099, 24.9266], + [105.267577, 24.929313], + [105.251563, 24.967296], + [105.212758, 24.995505], + [105.178266, 24.985199], + [105.157324, 24.958616], + [105.131454, 24.959701], + [105.09573, 24.92877], + [105.096346, 24.928228], + [105.082179, 24.915745], + [105.077868, 24.918459], + [105.039064, 24.872859], + [105.026745, 24.815836], + [105.03352, 24.787586], + [104.899245, 24.752809], + [104.865985, 24.730524], + [104.841963, 24.676155], + [104.771746, 24.659839], + [104.729246, 24.617953], + [104.703377, 24.645698], + [104.628848, 24.660927], + [104.595587, 24.709323], + [104.529682, 24.731611], + [104.489646, 24.653313], + [104.520443, 24.535228], + [104.550008, 24.518894], + [104.575877, 24.424661], + [104.616529, 24.421937], + [104.63008, 24.397958], + [104.610986, 24.377246], + [104.641783, 24.367979], + [104.70892, 24.321087], + [104.721239, 24.340173], + [104.703377, 24.419757], + [104.715695, 24.441552], + [104.74834, 24.435559], + [104.765587, 24.45953], + [104.784681, 24.443732], + [104.83642, 24.446456], + [104.914028, 24.426296], + [104.930042, 24.411038], + [104.979933, 24.412673], + [105.042759, 24.442097], + [105.106817, 24.414853], + [105.111744, 24.37234], + [105.138846, 24.376701], + [105.188121, 24.347261], + [105.196744, 24.326541], + [105.164715, 24.288362], + [105.215222, 24.214699], + [105.24294, 24.208695], + [105.229389, 24.165567], + [105.182577, 24.167205], + [105.20044, 24.105491], + [105.260186, 24.061236], + [105.292831, 24.074896], + [105.273121, 24.092927], + [105.320548, 24.116416], + [105.334099, 24.094566], + [105.395692, 24.065607], + [105.406163, 24.043748], + [105.493011, 24.016965], + [105.533663, 24.130071], + [105.594641, 24.137718], + [105.628518, 24.126794], + [105.649459, 24.032816], + [105.704278, 24.0667], + [105.739387, 24.059596], + [105.765256, 24.073804], + [105.802212, 24.051945], + [105.796669, 24.023524], + [105.841633, 24.03063], + [105.859495, 24.056864], + [105.89214, 24.040468], + [105.908154, 24.069432], + [105.901995, 24.099482], + [105.919241, 24.122425], + [105.963589, 24.110954], + [105.998081, 24.120786], + [106.011632, 24.099482], + [106.04982, 24.089649], + [106.053516, 24.051399], + [106.096631, 24.018058], + [106.091088, 23.998924], + [106.128044, 23.956819], + [106.157609, 23.891174], + [106.192718, 23.879135], + [106.173008, 23.861622], + [106.192102, 23.824947], + [106.136667, 23.795381], + [106.157609, 23.724175], + [106.149602, 23.665538], + [106.120653, 23.605229], + [106.141595, 23.569579], + [106.08616, 23.524043], + [106.071994, 23.495506], + [106.039965, 23.484529], + [105.999929, 23.447748], + [105.986378, 23.489469], + [105.935871, 23.508678], + [105.913081, 23.499348], + [105.89214, 23.52514], + [105.852103, 23.526786], + [105.815763, 23.507031], + [105.805908, 23.467512], + [105.758481, 23.459826], + [105.699966, 23.40162], + [105.637757, 23.404366], + [105.694423, 23.363168], + [105.699966, 23.327453], + [105.649459, 23.346136], + [105.593409, 23.312614], + [105.560148, 23.257093], + [105.526272, 23.234548], + [105.542902, 23.184495], + [105.558916, 23.177893], + [105.574931, 23.066165], + [105.625438, 23.064513], + [105.648844, 23.078828], + [105.724604, 23.06231], + [105.74185, 23.030921], + [105.780039, 23.022659], + [105.805908, 22.994565], + [105.839169, 22.987403], + [105.879205, 22.916865], + [105.893987, 22.936707], + [105.959277, 22.948832], + [105.994385, 22.93781], + [106.019639, 22.990709], + [106.08616, 22.996218], + [106.106486, 22.980792], + [106.153914, 22.988505], + [106.206885, 22.978588], + [106.270326, 22.907494], + [106.258007, 22.889852], + [106.286957, 22.867245], + [106.366413, 22.857871], + [106.37134, 22.878273], + [106.41384, 22.877171], + [106.504383, 22.91025], + [106.525941, 22.946628], + [106.562282, 22.923479], + [106.606013, 22.925684], + [106.631267, 22.88103], + [106.657136, 22.863385], + [106.674998, 22.891506], + [106.716882, 22.881582], + [106.709491, 22.866142], + [106.774781, 22.812643], + [106.776012, 22.813746], + [106.778476, 22.814298], + [106.779092, 22.813746], + [106.779708, 22.813195], + [106.78094, 22.813195], + [106.784636, 22.812643], + [106.796338, 22.812091], + [106.801882, 22.815401], + [106.804346, 22.816505], + [106.808657, 22.817608], + [106.813585, 22.817608], + [106.838838, 22.803265], + [106.820976, 22.768504], + [106.768621, 22.739254], + [106.780324, 22.708894], + [106.756302, 22.68957], + [106.711955, 22.575228], + [106.650361, 22.575228], + [106.61402, 22.602303], + [106.585071, 22.517192], + [106.588151, 22.472958], + [106.560434, 22.455813], + [106.588767, 22.374486], + [106.562897, 22.345706], + [106.663296, 22.33076], + [106.670071, 22.283144], + [106.688549, 22.260438], + [106.7021, 22.207257], + [106.673151, 22.182322], + [106.706411, 22.160707], + [106.691629, 22.13521], + [106.71565, 22.089745], + [106.706411, 22.021521], + [106.683006, 21.999882], + [106.698404, 21.959925], + [106.73844, 22.008205], + [106.790179, 22.004876], + [106.802498, 21.98157], + [106.859164, 21.986009], + [106.926302, 21.967695], + [106.935541, 21.933836], + [106.974345, 21.923288], + [106.999598, 21.947714], + [107.05996, 21.914959], + [107.058729, 21.887196], + [107.018693, 21.859427], + [107.018077, 21.81943], + [107.093837, 21.803317], + [107.148656, 21.758858], + [107.194851, 21.736624], + [107.199163, 21.718833], + [107.242279, 21.703265], + [107.271844, 21.727173], + [107.310648, 21.733844], + [107.356843, 21.667674], + [107.363619, 21.602031], + [107.388256, 21.594241], + [107.431372, 21.642088], + [107.477567, 21.659888], + [107.500973, 21.613715], + [107.486806, 21.59591], + [107.547168, 21.58645], + [107.584741, 21.614828], + [107.603219, 21.597579], + [107.712856, 21.616497], + [107.807711, 21.655438], + [107.837892, 21.640419], + [107.863761, 21.650988], + [107.892095, 21.622617], + [107.893942, 21.596466], + [107.929051, 21.585893], + [107.958, 21.534131], + [108.034376, 21.545821], + [108.108289, 21.508521], + [108.193905, 21.519656], + [108.156332, 21.55083], + [108.205608, 21.597579], + [108.241332, 21.599805], + [108.249955, 21.561406], + [108.210535, 21.505737], + [108.230245, 21.491259], + [108.330027, 21.540254], + [108.397781, 21.533017], + [108.492635, 21.554727], + [108.591802, 21.677129], + [108.626294, 21.67991], + [108.658939, 21.643757], + [108.678033, 21.659331], + [108.735931, 21.628181], + [108.734084, 21.626512], + [108.745786, 21.602587], + [108.801837, 21.626512], + [108.83325, 21.610933], + [108.881293, 21.627068], + [108.937959, 21.589789], + [109.093792, 21.579215], + [109.09872, 21.571424], + [109.110422, 21.568085], + [109.138756, 21.567528], + [109.142451, 21.511861], + [109.074698, 21.489589], + [109.039589, 21.457844], + [109.046365, 21.424421], + [109.095024, 21.419407], + [109.138756, 21.388762], + [109.186183, 21.390991], + [109.245929, 21.425536], + [109.41716, 21.438906], + [109.484914, 21.453388], + [109.529877, 21.437234], + [109.540964, 21.466199], + [109.576689, 21.493487], + [109.604406, 21.523553], + [109.612413, 21.556953], + [109.654913, 21.493487], + [109.704188, 21.462857], + [109.785492, 21.45673], + [109.788572, 21.490702], + [109.754695, 21.556396], + [109.742992, 21.616497], + [109.778101, 21.670455], + [109.786108, 21.637638], + [109.839695, 21.636525], + [109.888354, 21.652101], + [109.888354, 21.652101], + [109.916071, 21.668787], + [109.940093, 21.769419], + [109.94502, 21.84443], + [109.999839, 21.881643], + [110.050962, 21.857205], + [110.101469, 21.86998], + [110.12857, 21.902744], + [110.196323, 21.899968], + [110.212338, 21.886085], + [110.212338, 21.886085], + [110.224041, 21.882198], + [110.224041, 21.882198], + [110.283787, 21.892194], + [110.290562, 21.917736], + [110.337374, 21.887751], + [110.391576, 21.89386], + [110.378642, 21.939942], + [110.378642, 21.939942], + [110.374946, 21.967695], + [110.374946, 21.967695], + [110.352772, 21.97602], + [110.359547, 22.015973], + [110.35154, 22.097508], + [110.364475, 22.125785], + [110.326287, 22.152393], + [110.34846, 22.195621], + [110.378026, 22.164587], + [110.414366, 22.208365], + [110.456866, 22.189526], + [110.505525, 22.14297], + [110.55788, 22.196175], + [110.602843, 22.18343], + [110.598532, 22.162924], + [110.629329, 22.149068], + [110.678604, 22.172901], + [110.646575, 22.220554], + [110.687843, 22.249914], + [110.725415, 22.29588], + [110.759292, 22.274837], + [110.787009, 22.28259], + [110.749437, 22.329653], + [110.74143, 22.361757], + [110.711249, 22.369506], + [110.712481, 22.440879], + [110.688459, 22.477935], + [110.74143, 22.464109], + [110.740198, 22.498947], + [110.762988, 22.518298], + [110.749437, 22.556991], + [110.778386, 22.585174], + [110.812263, 22.576333], + [110.897878, 22.591805], + [110.896031, 22.613352], + [110.950233, 22.61059], + [110.958856, 22.636553], + [110.997045, 22.631582], + [111.055559, 22.648705], + [111.089435, 22.695643], + [111.058023, 22.729871], + [111.118385, 22.744773], + [111.185522, 22.735942], + [111.218167, 22.748085], + [111.358601, 22.889301], + [111.374615, 22.938361], + [111.362913, 22.967568], + [111.403565, 22.99126], + [111.389398, 23.005583], + [111.433746, 23.036428], + [111.43313, 23.073322], + [111.402333, 23.066165], + [111.377695, 23.082132], + [111.365992, 23.14488], + [111.38447, 23.16744], + [111.388782, 23.210349], + [111.36476, 23.240047], + [111.353058, 23.284582], + [111.376463, 23.30437], + [111.363528, 23.340641], + [111.389398, 23.375804], + [111.383239, 23.399423], + [111.399869, 23.469159], + [111.428818, 23.466414], + [111.479941, 23.532822], + [111.487332, 23.626615], + [111.555702, 23.64087], + [111.615448, 23.639225], + [111.614832, 23.65896], + [111.666571, 23.718696], + [111.621607, 23.725819], + [111.627766, 23.78881], + [111.654868, 23.833159], + [111.683201, 23.822758], + [111.683201, 23.822758], + [111.722621, 23.823305], + [111.8107, 23.80688], + [111.824867, 23.832612], + [111.812548, 23.887343], + [111.845809, 23.904305], + [111.854432, 23.947521], + [111.911714, 23.943693], + [111.940664, 23.987989], + [111.92157, 24.012045], + [111.878454, 24.109862], + [111.886461, 24.163929], + [111.871062, 24.176487], + [111.877222, 24.227252], + [111.912946, 24.221795], + [111.958526, 24.263813], + [111.986243, 24.25672], + [111.990555, 24.279634], + [112.026279, 24.294908], + [112.05954, 24.339628], + [112.057692, 24.387057], + [112.025047, 24.438828], + [111.985011, 24.467701], + [112.009649, 24.503103], + [112.007185, 24.534684], + [111.972077, 24.578775], + [111.936968, 24.595645], + [111.927729, 24.629378], + [111.953598, 24.64733], + [111.939432, 24.686487], + [111.961606, 24.721283], + [112.024431, 24.740308], + [111.951135, 24.769655], + [111.929577, 24.75607], + [111.875374, 24.756613], + [111.868599, 24.771829], + [111.814396, 24.770199], + [111.783599, 24.785957], + [111.708455, 24.788673], + [111.666571, 24.760961], + [111.637621, 24.715303], + [111.641933, 24.684856], + [111.588962, 24.690837], + [111.570484, 24.64461], + [111.526752, 24.637538], + [111.499035, 24.667997], + [111.451608, 24.665822], + [111.431282, 24.687574], + [111.461463, 24.728894], + [111.479325, 24.797366], + [111.449144, 24.857113], + [111.447296, 24.892947], + [111.470086, 24.92877], + [111.434977, 24.951562], + [111.43313, 24.979774], + [111.460231, 24.992793], + [111.467622, 25.02208], + [111.416499, 25.047566], + [111.435593, 25.093642], + [111.375231, 25.128324], + [111.36784, 25.108817], + [111.321645, 25.105023], + [111.274833, 25.151078], + [111.221862, 25.106649], + [111.200921, 25.074672], + [111.139943, 25.042144], + [111.101754, 25.035095], + [111.100522, 24.945593], + [111.009363, 24.921172], + [110.968711, 24.975434], + [110.951465, 25.04377], + [110.98411, 25.101772], + [110.998892, 25.161371], + [111.112841, 25.21715], + [111.103602, 25.285351], + [111.138711, 25.303748], + [111.184906, 25.367034], + [111.210776, 25.363248], + [111.279145, 25.42326], + [111.32842, 25.521592], + [111.324724, 25.564249], + [111.343202, 25.602574], + [111.309942, 25.645203], + [111.30871, 25.720171], + [111.399869, 25.744431], + [111.442369, 25.77192], + [111.43313, 25.84627], + [111.4861, 25.859196], + [111.460231, 25.885042], + [111.383239, 25.881812], + [111.376463, 25.906039], + [111.346282, 25.906577], + [111.297007, 25.874274], + [111.29208, 25.854349], + [111.251428, 25.864581], + [111.230486, 25.916267], + [111.189834, 25.953402], + [111.235413, 26.048071], + [111.267442, 26.058824], + [111.244652, 26.078177], + [111.26621, 26.095914], + [111.258203, 26.151796], + [111.274833, 26.183486], + [111.271754, 26.217316], + [111.293311, 26.222148], + [111.277913, 26.272066], + [111.228022, 26.261333], + [111.204616, 26.276359], + [111.208928, 26.30426], + [111.090667, 26.308016], + [111.008132, 26.336982], + [111.008747, 26.35897], + [110.974255, 26.385778], + [110.94469, 26.373447], + [110.944074, 26.326791], + [110.926212, 26.320354], + [110.939762, 26.286554], + [110.836284, 26.255966], + [110.759292, 26.248451], + [110.73527, 26.270993], + [110.742046, 26.313917], + [110.721104, 26.294066], + [110.673676, 26.317135], + [110.643495, 26.308552], + [110.612083, 26.333764], + [110.584365, 26.296749], + [110.552952, 26.283335], + [110.546793, 26.233421], + [110.495054, 26.166299], + [110.477808, 26.179727], + [110.437772, 26.153945], + [110.373098, 26.088927], + [110.325671, 25.975462], + [110.257301, 25.961473], + [110.24991, 26.010965], + [110.181541, 26.060437], + [110.168606, 26.028713], + [110.100853, 26.020108], + [110.065128, 26.050221], + [110.100853, 26.132455], + [110.099005, 26.168985], + [110.03002, 26.166299], + [109.970274, 26.195301], + [109.904368, 26.135679], + [109.898825, 26.095377], + [109.864332, 26.027637], + [109.814441, 26.041081], + [109.782412, 25.996981], + [109.806434, 25.973848], + [109.826144, 25.911422], + [109.811361, 25.877504], + [109.779333, 25.866196], + [109.768246, 25.890427], + [109.685094, 25.880197], + [109.67955, 25.921649], + [109.693717, 25.959321], + [109.710963, 25.954478], + [109.730057, 25.989988], + [109.649369, 26.016882], + [109.635203, 26.047533], + [109.588391, 26.019571], + [109.560058, 26.021184], + [109.513247, 25.998056], + [109.48245, 26.029788] + ] + ], + [ + [ + [105.096346, 24.928228], + [105.09573, 24.92877], + [105.077868, 24.918459], + [105.082179, 24.915745], + [105.096346, 24.928228] + ] + ], + [ + [ + [109.088249, 21.014934], + [109.11227, 21.02499], + [109.117814, 21.017727], + [109.144299, 21.041189], + [109.138756, 21.067439], + [109.09256, 21.057386], + [109.088865, 21.031134], + [109.088249, 21.014934] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 460000, + "name": "海南省", + "center": [110.33119, 20.031971], + "centroid": [109.754859, 19.189767], + "childrenNum": 19, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 20, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.106396, 20.026812], + [110.042339, 19.991384], + [109.997375, 19.980136], + [109.965346, 19.993634], + [109.898825, 19.994196], + [109.855093, 19.984073], + [109.814441, 19.993072], + [109.76147, 19.981261], + [109.712195, 20.017253], + [109.657993, 20.01163], + [109.585312, 19.98801], + [109.526797, 19.943573], + [109.498464, 19.873236], + [109.411001, 19.895184], + [109.349407, 19.898561], + [109.300748, 19.917693], + [109.25948, 19.898561], + [109.255784, 19.867045], + [109.231147, 19.863105], + [109.159082, 19.79048], + [109.169553, 19.736411], + [109.147379, 19.704863], + [109.093792, 19.68965], + [109.048829, 19.619764], + [108.993394, 19.587065], + [108.92872, 19.524468], + [108.855424, 19.469182], + [108.806148, 19.450561], + [108.765496, 19.400894], + [108.694047, 19.387346], + [108.644772, 19.349518], + [108.609048, 19.276661], + [108.591186, 19.141592], + [108.598577, 19.055633], + [108.630606, 19.003017], + [108.637997, 18.924346], + [108.595497, 18.872256], + [108.593033, 18.809386], + [108.65278, 18.740258], + [108.663866, 18.67337], + [108.641077, 18.565614], + [108.644772, 18.486738], + [108.68912, 18.447571], + [108.776583, 18.441894], + [108.881293, 18.416344], + [108.905315, 18.389087], + [108.944735, 18.314107], + [109.006329, 18.323198], + [109.108575, 18.323766], + [109.138756, 18.268081], + [109.17448, 18.260125], + [109.287813, 18.264671], + [109.355566, 18.215221], + [109.441182, 18.199303], + [109.467051, 18.173718], + [109.527413, 18.169169], + [109.584696, 18.143579], + [109.661688, 18.175424], + [109.726362, 18.177698], + [109.749767, 18.193618], + [109.785492, 18.339672], + [109.919767, 18.375457], + [110.022629, 18.360121], + [110.070672, 18.376025], + [110.090382, 18.399309], + [110.116867, 18.506602], + [110.214186, 18.578662], + [110.246215, 18.609859], + [110.329366, 18.642185], + [110.367555, 18.631977], + [110.499366, 18.651824], + [110.499366, 18.751592], + [110.578206, 18.784458], + [110.590525, 18.838841], + [110.585597, 18.88075], + [110.619474, 19.152334], + [110.676756, 19.286264], + [110.706321, 19.320153], + [110.729727, 19.378878], + [110.787009, 19.399765], + [110.844292, 19.449996], + [110.888023, 19.518827], + [110.920668, 19.552668], + [111.008747, 19.60398], + [111.061718, 19.612436], + [111.071573, 19.628784], + [111.043856, 19.763448], + [111.013675, 19.850159], + [110.966248, 20.018377], + [110.940994, 20.028499], + [110.871393, 20.01163], + [110.808567, 20.035808], + [110.778386, 20.068415], + [110.744509, 20.074036], + [110.717408, 20.148778], + [110.687843, 20.163947], + [110.655814, 20.134169], + [110.562191, 20.110006], + [110.526467, 20.07516], + [110.495054, 20.077408], + [110.387265, 20.113378], + [110.318279, 20.108882], + [110.28933, 20.056047], + [110.243135, 20.077408], + [110.144585, 20.074598], + [110.106396, 20.026812] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 500000, + "name": "重庆市", + "center": [106.504962, 29.533155], + "centroid": [107.8839, 30.067297], + "childrenNum": 38, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 21, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [106.37442, 28.525742], + [106.403369, 28.569901], + [106.477282, 28.530474], + [106.504999, 28.544669], + [106.466811, 28.586193], + [106.49268, 28.591448], + [106.502535, 28.661313], + [106.528405, 28.677591], + [106.492064, 28.742153], + [106.461883, 28.761041], + [106.45326, 28.817162], + [106.474202, 28.832891], + [106.561666, 28.756319], + [106.56105, 28.719062], + [106.587535, 28.691767], + [106.6171, 28.691242], + [106.617716, 28.66709], + [106.651593, 28.649235], + [106.618332, 28.645033], + [106.63681, 28.622972], + [106.606629, 28.593024], + [106.615252, 28.549401], + [106.567825, 28.523638], + [106.564745, 28.485247], + [106.632499, 28.503655], + [106.697788, 28.47683], + [106.708259, 28.450524], + [106.747063, 28.467361], + [106.726121, 28.51838], + [106.73844, 28.554657], + [106.77786, 28.563068], + [106.756918, 28.607211], + [106.784636, 28.626649], + [106.807425, 28.589346], + [106.830831, 28.623497], + [106.866556, 28.624548], + [106.889345, 28.695966], + [106.86594, 28.690192], + [106.824056, 28.756319], + [106.845614, 28.780975], + [106.872099, 28.777304], + [106.923222, 28.809821], + [106.951555, 28.766812], + [106.988512, 28.776254], + [106.983584, 28.851239], + [107.019308, 28.861722], + [107.016229, 28.882685], + [107.14188, 28.887925], + [107.206554, 28.868535], + [107.194851, 28.838134], + [107.227496, 28.836037], + [107.210866, 28.817686], + [107.219489, 28.772582], + [107.24659, 28.76209], + [107.261373, 28.792514], + [107.327894, 28.810869], + [107.339597, 28.845997], + [107.383945, 28.848618], + [107.41351, 28.911502], + [107.441227, 28.943977], + [107.412894, 28.960211], + [107.396879, 28.993718], + [107.364235, 29.00942], + [107.395647, 29.041341], + [107.369778, 29.091558], + [107.412278, 29.094696], + [107.427676, 29.128682], + [107.408582, 29.138091], + [107.401807, 29.184603], + [107.441227, 29.203934], + [107.486806, 29.174153], + [107.570574, 29.218037], + [107.589052, 29.150113], + [107.605683, 29.164747], + [107.659885, 29.162656], + [107.700537, 29.141228], + [107.749197, 29.199754], + [107.810791, 29.139137], + [107.784921, 29.048143], + [107.823725, 29.034016], + [107.810175, 28.984295], + [107.867457, 28.960211], + [107.882855, 29.00628], + [107.908725, 29.007327], + [107.925971, 29.032446], + [108.026369, 29.039772], + [108.070717, 29.086328], + [108.150173, 29.053375], + [108.193289, 29.072207], + [108.256115, 29.040295], + [108.277673, 29.091558], + [108.306622, 29.079006], + [108.297999, 29.045527], + [108.319556, 28.961258], + [108.345426, 28.943453], + [108.357745, 28.893165], + [108.346658, 28.859625], + [108.352817, 28.815589], + [108.386078, 28.803003], + [108.385462, 28.772058], + [108.347274, 28.736381], + [108.332491, 28.679166], + [108.439049, 28.634003], + [108.501258, 28.626649], + [108.50249, 28.63768], + [108.575787, 28.659738], + [108.636149, 28.621396], + [108.604736, 28.590922], + [108.610896, 28.539412], + [108.573939, 28.531], + [108.586874, 28.463678], + [108.609664, 28.43579], + [108.609048, 28.407368], + [108.576403, 28.38631], + [108.580099, 28.343128], + [108.611512, 28.324691], + [108.667562, 28.334173], + [108.656475, 28.359981], + [108.697127, 28.401051], + [108.688504, 28.422106], + [108.640461, 28.456838], + [108.657091, 28.47683], + [108.700207, 28.48209], + [108.709446, 28.501026], + [108.746402, 28.45105], + [108.780279, 28.42579], + [108.759953, 28.389995], + [108.783359, 28.380518], + [108.761801, 28.304143], + [108.726692, 28.282011], + [108.738395, 28.228241], + [108.772888, 28.212949], + [108.821547, 28.245113], + [108.855424, 28.199764], + [108.89546, 28.219804], + [108.923793, 28.217167], + [108.929952, 28.19027], + [109.005713, 28.162837], + [109.026655, 28.220331], + [109.086401, 28.184467], + [109.101799, 28.202401], + [109.081473, 28.247749], + [109.117198, 28.277795], + [109.152306, 28.349975], + [109.153538, 28.417369], + [109.191726, 28.471043], + [109.23361, 28.474726], + [109.274262, 28.494714], + [109.273646, 28.53836], + [109.319842, 28.579886], + [109.306907, 28.62087], + [109.252089, 28.606685], + [109.235458, 28.61982], + [109.201581, 28.597753], + [109.192958, 28.636104], + [109.271183, 28.671816], + [109.252704, 28.691767], + [109.294588, 28.722211], + [109.2989, 28.7474], + [109.241002, 28.776779], + [109.246545, 28.80143], + [109.235458, 28.882161], + [109.261328, 28.952356], + [109.292741, 28.987436], + [109.294588, 29.015177], + [109.319842, 29.042388], + [109.312451, 29.066453], + [109.240386, 29.086328], + [109.232378, 29.119271], + [109.215748, 29.145409], + [109.162777, 29.180946], + [109.139372, 29.168927], + [109.110422, 29.21647], + [109.141835, 29.270256], + [109.106727, 29.288526], + [109.11227, 29.361053], + [109.060531, 29.403292], + [109.034662, 29.360531], + [108.999553, 29.36366], + [108.983539, 29.332883], + [108.919481, 29.3261], + [108.934264, 29.399643], + [108.927488, 29.435612], + [108.884373, 29.440824], + [108.866511, 29.470527], + [108.888684, 29.502305], + [108.878213, 29.539279], + [108.913322, 29.574679], + [108.901003, 29.604863], + [108.870206, 29.596537], + [108.888068, 29.628795], + [108.844337, 29.658443], + [108.781511, 29.635558], + [108.797525, 29.660003], + [108.786438, 29.691721], + [108.752562, 29.649082], + [108.690968, 29.689642], + [108.676801, 29.749412], + [108.680497, 29.800319], + [108.658939, 29.854833], + [108.601041, 29.863656], + [108.556077, 29.818493], + [108.52528, 29.770713], + [108.548686, 29.749412], + [108.504954, 29.728626], + [108.504338, 29.707836], + [108.460606, 29.741098], + [108.437201, 29.741098], + [108.442744, 29.778505], + [108.422418, 29.772791], + [108.424266, 29.815897], + [108.371295, 29.841337], + [108.433505, 29.880262], + [108.467998, 29.864175], + [108.516041, 29.885451], + [108.517889, 29.9394], + [108.536367, 29.983472], + [108.532055, 30.051873], + [108.513577, 30.057571], + [108.546222, 30.104178], + [108.56778, 30.157491], + [108.551766, 30.1637], + [108.581947, 30.255759], + [108.54499, 30.269716], + [108.524048, 30.309506], + [108.501258, 30.314673], + [108.460606, 30.35961], + [108.431041, 30.354446], + [108.402092, 30.376649], + [108.430425, 30.416397], + [108.411331, 30.438586], + [108.42673, 30.492233], + [108.472925, 30.487076], + [108.512961, 30.501515], + [108.556077, 30.487592], + [108.56778, 30.468508], + [108.6497, 30.53915], + [108.642925, 30.578831], + [108.688504, 30.58759], + [108.698975, 30.54482], + [108.743939, 30.494812], + [108.789518, 30.513374], + [108.808612, 30.491202], + [108.838793, 30.503062], + [108.893612, 30.565434], + [108.971836, 30.627766], + [109.006329, 30.626736], + [109.042669, 30.655571], + [109.071002, 30.640125], + [109.111654, 30.646303], + [109.106111, 30.61077], + [109.105495, 30.585529], + [109.102415, 30.580377], + [109.101183, 30.579346], + [109.106111, 30.570587], + [109.103647, 30.565949], + [109.143683, 30.521108], + [109.191726, 30.545851], + [109.191726, 30.545851], + [109.245313, 30.580892], + [109.299516, 30.630341], + [109.314298, 30.599953], + [109.36111, 30.551004], + [109.337088, 30.521623], + [109.35495, 30.487076], + [109.418392, 30.559766], + [109.435638, 30.595832], + [109.535421, 30.664837], + [109.543428, 30.63961], + [109.574225, 30.646818], + [109.590855, 30.69366], + [109.625348, 30.702923], + [109.661072, 30.738936], + [109.656761, 30.760538], + [109.701724, 30.783677], + [109.780564, 30.848437], + [109.828608, 30.864364], + [109.894513, 30.899803], + [109.943788, 30.878746], + [110.008462, 30.883369], + [110.019549, 30.829425], + [110.048498, 30.800642], + [110.082375, 30.799614], + [110.151976, 30.911613], + [110.153824, 30.953708], + [110.172918, 30.978853], + [110.140889, 30.987062], + [110.140273, 31.030661], + [110.120563, 31.0322], + [110.119947, 31.088592], + [110.147048, 31.116776], + [110.180309, 31.121899], + [110.200019, 31.158779], + [110.180309, 31.179774], + [110.155671, 31.279564], + [110.161831, 31.314338], + [110.118715, 31.409899], + [110.054042, 31.410921], + [110.036795, 31.436966], + [109.98752, 31.474744], + [109.94502, 31.47066], + [109.969658, 31.508935], + [109.894513, 31.519139], + [109.837847, 31.555354], + [109.727594, 31.548214], + [109.745456, 31.598182], + [109.76455, 31.602769], + [109.737449, 31.628761], + [109.731289, 31.700582], + [109.683246, 31.719929], + [109.622268, 31.711783], + [109.585928, 31.726546], + [109.549587, 31.73011], + [109.502776, 31.716365], + [109.446109, 31.722983], + [109.381436, 31.705165], + [109.281654, 31.716874], + [109.282885, 31.743343], + [109.253936, 31.759628], + [109.279806, 31.776418], + [109.27611, 31.79931], + [109.195422, 31.817618], + [109.191111, 31.85575], + [109.123357, 31.892851], + [109.085785, 31.929428], + [108.986619, 31.980205], + [108.902235, 31.984774], + [108.837561, 32.039072], + [108.78767, 32.04871], + [108.75133, 32.076098], + [108.734084, 32.106519], + [108.676801, 32.10297], + [108.585026, 32.17189], + [108.543758, 32.177969], + [108.509882, 32.201266], + [108.480317, 32.182527], + [108.399013, 32.194176], + [108.370063, 32.172397], + [108.379918, 32.154158], + [108.379918, 32.154158], + [108.379303, 32.153652], + [108.379303, 32.153652], + [108.399628, 32.147065], + [108.452599, 32.090296], + [108.42981, 32.061391], + [108.372527, 32.077112], + [108.344194, 32.067477], + [108.362056, 32.035521], + [108.329411, 32.020299], + [108.370063, 31.988835], + [108.351585, 31.971575], + [108.307238, 31.997463], + [108.259194, 31.967006], + [108.343578, 31.860834], + [108.386078, 31.854226], + [108.391005, 31.829822], + [108.429194, 31.809482], + [108.455063, 31.814059], + [108.462454, 31.780488], + [108.535135, 31.757592], + [108.50557, 31.734182], + [108.514809, 31.693963], + [108.546838, 31.665442], + [108.519121, 31.665952], + [108.468614, 31.636404], + [108.442744, 31.633856], + [108.390389, 31.591555], + [108.386078, 31.544134], + [108.339266, 31.539033], + [108.344194, 31.512506], + [108.254883, 31.49873], + [108.233941, 31.506894], + [108.191441, 31.492096], + [108.193289, 31.467598], + [108.224086, 31.464024], + [108.216079, 31.41041], + [108.153869, 31.371073], + [108.185898, 31.336831], + [108.095354, 31.268311], + [108.038688, 31.252964], + [108.031297, 31.217144], + [108.07626, 31.231985], + [108.089811, 31.204859], + [108.025753, 31.116263], + [108.009123, 31.109602], + [108.026985, 31.061938], + [108.060246, 31.052197], + [108.00358, 31.025533], + [107.983254, 30.983983], + [107.942602, 30.989114], + [107.948145, 30.918802], + [107.994956, 30.908533], + [107.956152, 30.882855], + [107.851443, 30.792931], + [107.788001, 30.81966], + [107.763979, 30.817091], + [107.760899, 30.862823], + [107.739957, 30.884396], + [107.693146, 30.875665], + [107.645103, 30.821202], + [107.57735, 30.847924], + [107.515756, 30.854603], + [107.483111, 30.838675], + [107.498509, 30.809381], + [107.454162, 30.771851], + [107.454162, 30.771851], + [107.424597, 30.74048], + [107.458473, 30.704981], + [107.477567, 30.664837], + [107.516987, 30.644759], + [107.485575, 30.598408], + [107.427676, 30.547397], + [107.443075, 30.53348], + [107.408582, 30.521623], + [107.368546, 30.468508], + [107.338981, 30.386459], + [107.288474, 30.337402], + [107.257677, 30.267131], + [107.221337, 30.213878], + [107.103076, 30.090198], + [107.080286, 30.094341], + [107.084598, 30.063786], + [107.058113, 30.043066], + [107.055649, 30.040476], + [107.054417, 30.040994], + [107.053801, 30.043584], + [107.02054, 30.036849], + [106.981736, 30.08502], + [106.976193, 30.083467], + [106.94478, 30.037367], + [106.913367, 30.025451], + [106.862244, 30.033223], + [106.83699, 30.049801], + [106.825904, 30.03115], + [106.825904, 30.03115], + [106.785252, 30.01716], + [106.732281, 30.027005], + [106.724274, 30.058607], + [106.699636, 30.074145], + [106.700252, 30.111944], + [106.672535, 30.122297], + [106.677462, 30.156974], + [106.631883, 30.186464], + [106.611557, 30.235596], + [106.612173, 30.235596], + [106.611557, 30.235596], + [106.612173, 30.235596], + [106.612173, 30.235596], + [106.612789, 30.235596], + [106.612789, 30.235596], + [106.642354, 30.246454], + [106.611557, 30.292455], + [106.560434, 30.31519], + [106.545035, 30.296589], + [106.49884, 30.295556], + [106.43971, 30.308473], + [106.428623, 30.254725], + [106.401521, 30.242318], + [106.349167, 30.24542], + [106.334384, 30.225772], + [106.306667, 30.238182], + [106.296196, 30.205603], + [106.264167, 30.20974], + [106.260471, 30.19681], + [106.232754, 30.185947], + [106.180399, 30.233011], + [106.168696, 30.303823], + [106.132356, 30.323972], + [106.132972, 30.30279], + [106.07261, 30.333786], + [106.031958, 30.373551], + [105.943263, 30.372002], + [105.900763, 30.405042], + [105.84656, 30.410203], + [105.825618, 30.436006], + [105.792357, 30.427234], + [105.760329, 30.384393], + [105.754785, 30.342567], + [105.714749, 30.322939], + [105.720292, 30.252657], + [105.720292, 30.252657], + [105.670401, 30.254208], + [105.624822, 30.275918], + [105.619894, 30.234045], + [105.662394, 30.210258], + [105.642684, 30.186464], + [105.56138, 30.183878], + [105.550909, 30.179222], + [105.536127, 30.152834], + [105.596489, 30.159043], + [105.574315, 30.130579], + [105.580474, 30.129544], + [105.582938, 30.127474], + [105.582938, 30.12385], + [105.642068, 30.101072], + [105.638988, 30.076216], + [105.676561, 30.06793], + [105.687032, 30.038922], + [105.719677, 30.042548], + [105.753553, 30.018196], + [105.723372, 29.975177], + [105.730763, 29.95755], + [105.70243, 29.924879], + [105.717213, 29.893753], + [105.738771, 29.891159], + [105.707974, 29.840818], + [105.610655, 29.837184], + [105.582938, 29.819013], + [105.574931, 29.744216], + [105.529351, 29.707836], + [105.481924, 29.718232], + [105.476996, 29.674564], + [105.419714, 29.688082], + [105.38091, 29.628275], + [105.347649, 29.621512], + [105.332867, 29.592374], + [105.296526, 29.571035], + [105.305149, 29.53199], + [105.337794, 29.459064], + [105.334099, 29.441345], + [105.387069, 29.455416], + [105.387069, 29.455416], + [105.399388, 29.43874], + [105.372903, 29.421018], + [105.426489, 29.419454], + [105.441888, 29.400686], + [105.418482, 29.352185], + [105.42033, 29.31149], + [105.465294, 29.322969], + [105.459134, 29.288526], + [105.513337, 29.283306], + [105.521344, 29.264513], + [105.557684, 29.278608], + [105.631597, 29.280174], + [105.647612, 29.253027], + [105.695039, 29.287482], + [105.712285, 29.219082], + [105.703662, 29.176766], + [105.728916, 29.134432], + [105.752321, 29.129727], + [105.728916, 29.1062], + [105.757865, 29.069068], + [105.74185, 29.039249], + [105.766488, 29.013607], + [105.762176, 28.9911], + [105.801596, 28.958116], + [105.797285, 28.936121], + [105.830546, 28.944501], + [105.852719, 28.927217], + [105.910002, 28.920407], + [105.969132, 28.965971], + [106.001161, 28.973824], + [106.040581, 28.955498], + [106.049204, 28.906263], + [106.070762, 28.919884], + [106.101559, 28.898928], + [106.14837, 28.901548], + [106.173008, 28.920407], + [106.206885, 28.904691], + [106.264783, 28.845997], + [106.245689, 28.817686], + [106.267863, 28.779402], + [106.274022, 28.739004], + [106.305435, 28.704365], + [106.304203, 28.64976], + [106.346703, 28.583565], + [106.33192, 28.55308], + [106.37442, 28.525742] + ] + ], + [ + [ + [109.105495, 30.585529], + [109.106111, 30.61077], + [109.09256, 30.578831], + [109.09872, 30.579346], + [109.101183, 30.579346], + [109.102415, 30.580377], + [109.105495, 30.585529] + ] + ], + [ + [ + [105.582938, 30.12385], + [105.582938, 30.127474], + [105.580474, 30.129544], + [105.574315, 30.130579], + [105.582938, 30.12385] + ] + ], + [ + [ + [109.09872, 30.579346], + [109.09256, 30.578831], + [109.103647, 30.565949], + [109.106111, 30.570587], + [109.09872, 30.579346] + ] + ], + [ + [ + [107.058113, 30.043066], + [107.053801, 30.043584], + [107.054417, 30.040994], + [107.055649, 30.040476], + [107.058113, 30.043066] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 510000, + "name": "四川省", + "center": [104.065735, 30.659462], + "centroid": [102.693453, 30.674545], + "childrenNum": 21, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 22, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [101.167885, 27.198311], + [101.170349, 27.175421], + [101.145095, 27.103523], + [101.157414, 27.094999], + [101.136472, 27.023584], + [101.228863, 26.981992], + [101.227015, 26.959057], + [101.264587, 26.955323], + [101.267667, 26.903034], + [101.311399, 26.903034], + [101.365602, 26.883819], + [101.399478, 26.841642], + [101.358826, 26.771669], + [101.387159, 26.753501], + [101.389623, 26.723036], + [101.435819, 26.740675], + [101.458608, 26.731054], + [101.445674, 26.77434], + [101.466, 26.786629], + [101.513427, 26.768463], + [101.453065, 26.692563], + [101.481398, 26.673313], + [101.461072, 26.640687], + [101.461688, 26.606447], + [101.402558, 26.604841], + [101.395783, 26.591998], + [101.422884, 26.53151], + [101.458608, 26.49563], + [101.506652, 26.499915], + [101.530057, 26.467239], + [101.565782, 26.454381], + [101.637847, 26.388995], + [101.635383, 26.357361], + [101.660636, 26.346635], + [101.64031, 26.318745], + [101.597195, 26.303187], + [101.586108, 26.279579], + [101.630455, 26.224832], + [101.690202, 26.241473], + [101.737013, 26.219463], + [101.773353, 26.168448], + [101.807846, 26.156093], + [101.796759, 26.114723], + [101.839875, 26.082477], + [101.835563, 26.04592], + [101.857737, 26.049146], + [101.899621, 26.099139], + [101.929186, 26.105588], + [101.954439, 26.084627], + [102.020961, 26.096451], + [102.080091, 26.065275], + [102.107808, 26.068501], + [102.152156, 26.10935], + [102.174946, 26.146961], + [102.242699, 26.190468], + [102.245163, 26.212483], + [102.349257, 26.244694], + [102.392372, 26.296749], + [102.440416, 26.300505], + [102.542046, 26.338591], + [102.570995, 26.362723], + [102.629509, 26.336982], + [102.638748, 26.307479], + [102.60056, 26.250598], + [102.659074, 26.221611], + [102.709581, 26.210336], + [102.739762, 26.268846], + [102.785342, 26.298895], + [102.833385, 26.306406], + [102.878964, 26.364332], + [102.893131, 26.338591], + [102.975667, 26.340736], + [102.998457, 26.371839], + [102.988602, 26.413117], + [102.989833, 26.482775], + [103.030485, 26.485989], + [103.052659, 26.514374], + [103.052659, 26.555602], + [103.035413, 26.556673], + [103.026174, 26.664221], + [103.005232, 26.679195], + [103.008312, 26.710741], + [102.983674, 26.76686], + [102.991681, 26.775409], + [102.966428, 26.837904], + [102.949181, 26.843244], + [102.896211, 26.91264], + [102.894979, 27.001724], + [102.870957, 27.026782], + [102.913457, 27.133886], + [102.904218, 27.227584], + [102.883276, 27.258444], + [102.883892, 27.299401], + [102.899906, 27.317481], + [102.941174, 27.405711], + [102.989833, 27.367983], + [103.055739, 27.40943], + [103.080992, 27.396679], + [103.141355, 27.420586], + [103.144434, 27.450331], + [103.19063, 27.523596], + [103.232514, 27.56976], + [103.2861, 27.561802], + [103.29226, 27.632872], + [103.349542, 27.678459], + [103.369868, 27.708664], + [103.393274, 27.709194], + [103.461027, 27.779638], + [103.487512, 27.794992], + [103.509686, 27.843687], + [103.502295, 27.910343], + [103.55465, 27.978543], + [103.515846, 27.965329], + [103.486281, 28.033495], + [103.459179, 28.021345], + [103.430846, 28.044587], + [103.470266, 28.122204], + [103.533092, 28.168641], + [103.573128, 28.230877], + [103.643961, 28.260401], + [103.692004, 28.232459], + [103.701859, 28.198709], + [103.740048, 28.23615], + [103.770845, 28.233514], + [103.828743, 28.285173], + [103.877402, 28.316262], + [103.85338, 28.356822], + [103.860156, 28.383677], + [103.828743, 28.44], + [103.829975, 28.459995], + [103.781931, 28.525216], + [103.802873, 28.563068], + [103.838598, 28.587244], + [103.833054, 28.605109], + [103.850917, 28.66709], + [103.887873, 28.61982], + [103.910047, 28.631377], + [103.953779, 28.600906], + [104.05972, 28.6277], + [104.09606, 28.603533], + [104.117618, 28.634003], + [104.170589, 28.642932], + [104.230951, 28.635579], + [104.252509, 28.660788], + [104.277147, 28.631902], + [104.314719, 28.615617], + [104.372617, 28.649235], + [104.425588, 28.626649], + [104.417581, 28.598279], + [104.375697, 28.5946], + [104.355987, 28.555183], + [104.323342, 28.540989], + [104.260516, 28.536257], + [104.267908, 28.499448], + [104.254357, 28.403683], + [104.282074, 28.343128], + [104.314103, 28.306778], + [104.343052, 28.334173], + [104.384936, 28.329959], + [104.392943, 28.291497], + [104.420045, 28.269889], + [104.44961, 28.269889], + [104.462544, 28.241422], + [104.442834, 28.211366], + [104.402182, 28.202928], + [104.406494, 28.173389], + [104.444682, 28.16231], + [104.448994, 28.113758], + [104.40095, 28.091586], + [104.373233, 28.051454], + [104.304248, 28.050926], + [104.30856, 28.036136], + [104.362762, 28.012891], + [104.40095, 27.952114], + [104.44961, 27.927794], + [104.508124, 27.878078], + [104.52537, 27.889187], + [104.573413, 27.840512], + [104.607906, 27.857974], + [104.63316, 27.850567], + [104.676275, 27.880723], + [104.743413, 27.901881], + [104.761891, 27.884426], + [104.796999, 27.901352], + [104.842579, 27.900294], + [104.888158, 27.914574], + [104.918339, 27.938897], + [104.903557, 27.962158], + [104.975006, 28.020816], + [104.980549, 28.063073], + [105.002107, 28.064129], + [105.061853, 28.096866], + [105.119752, 28.07205], + [105.168411, 28.071522], + [105.186889, 28.054623], + [105.167795, 28.021345], + [105.186273, 27.995454], + [105.218302, 27.990698], + [105.247867, 28.009193], + [105.270657, 27.99704], + [105.284823, 27.935725], + [105.233084, 27.895534], + [105.25957, 27.827811], + [105.313157, 27.810874], + [105.273736, 27.794992], + [105.293447, 27.770637], + [105.290367, 27.712373], + [105.308229, 27.704955], + [105.353809, 27.748924], + [105.44004, 27.775402], + [105.508409, 27.769048], + [105.560148, 27.71979], + [105.605112, 27.715552], + [105.62359, 27.666269], + [105.664242, 27.683759], + [105.720292, 27.683759], + [105.722756, 27.706015], + [105.76772, 27.7182], + [105.848408, 27.707074], + [105.868118, 27.732504], + [105.922937, 27.746805], + [105.92848, 27.729855], + [105.985146, 27.749983], + [106.023335, 27.746805], + [106.063987, 27.776991], + [106.120653, 27.779638], + [106.193334, 27.75422], + [106.242609, 27.767459], + [106.306667, 27.808756], + [106.337464, 27.859033], + [106.325145, 27.898708], + [106.304819, 27.899237], + [106.307899, 27.936782], + [106.328225, 27.952643], + [106.286341, 28.007079], + [106.246305, 28.011835], + [106.266631, 28.066769], + [106.206885, 28.134343], + [106.145291, 28.162837], + [106.093552, 28.162837], + [105.975907, 28.107952], + [105.943878, 28.143314], + [105.895219, 28.119565], + [105.860727, 28.159672], + [105.889676, 28.237732], + [105.848408, 28.255656], + [105.824386, 28.306251], + [105.78743, 28.335753], + [105.76464, 28.308359], + [105.76464, 28.308359], + [105.737539, 28.30309], + [105.730147, 28.271997], + [105.68888, 28.284119], + [105.639604, 28.324164], + [105.655003, 28.362615], + [105.643916, 28.431053], + [105.612503, 28.438947], + [105.62359, 28.517854], + [105.68272, 28.534154], + [105.693191, 28.58882], + [105.712901, 28.586718], + [105.74493, 28.616668], + [105.757249, 28.590397], + [105.78435, 28.610889], + [105.808372, 28.599855], + [105.884748, 28.595126], + [105.889676, 28.670765], + [105.937719, 28.686517], + [105.966668, 28.761041], + [106.001161, 28.743727], + [106.030726, 28.694917], + [106.085544, 28.681792], + [106.103407, 28.636104], + [106.14837, 28.642932], + [106.17116, 28.629275], + [106.184711, 28.58882], + [106.254928, 28.539412], + [106.2925, 28.537309], + [106.304819, 28.505233], + [106.349167, 28.473674], + [106.379348, 28.479986], + [106.37442, 28.525742], + [106.33192, 28.55308], + [106.346703, 28.583565], + [106.304203, 28.64976], + [106.305435, 28.704365], + [106.274022, 28.739004], + [106.267863, 28.779402], + [106.245689, 28.817686], + [106.264783, 28.845997], + [106.206885, 28.904691], + [106.173008, 28.920407], + [106.14837, 28.901548], + [106.101559, 28.898928], + [106.070762, 28.919884], + [106.049204, 28.906263], + [106.040581, 28.955498], + [106.001161, 28.973824], + [105.969132, 28.965971], + [105.910002, 28.920407], + [105.852719, 28.927217], + [105.830546, 28.944501], + [105.797285, 28.936121], + [105.801596, 28.958116], + [105.762176, 28.9911], + [105.766488, 29.013607], + [105.74185, 29.039249], + [105.757865, 29.069068], + [105.728916, 29.1062], + [105.752321, 29.129727], + [105.728916, 29.134432], + [105.703662, 29.176766], + [105.712285, 29.219082], + [105.695039, 29.287482], + [105.647612, 29.253027], + [105.631597, 29.280174], + [105.557684, 29.278608], + [105.521344, 29.264513], + [105.513337, 29.283306], + [105.459134, 29.288526], + [105.465294, 29.322969], + [105.42033, 29.31149], + [105.418482, 29.352185], + [105.441888, 29.400686], + [105.426489, 29.419454], + [105.372903, 29.421018], + [105.399388, 29.43874], + [105.387069, 29.455416], + [105.387069, 29.455416], + [105.334099, 29.441345], + [105.337794, 29.459064], + [105.305149, 29.53199], + [105.296526, 29.571035], + [105.332867, 29.592374], + [105.347649, 29.621512], + [105.38091, 29.628275], + [105.419714, 29.688082], + [105.476996, 29.674564], + [105.481924, 29.718232], + [105.529351, 29.707836], + [105.574931, 29.744216], + [105.582938, 29.819013], + [105.610655, 29.837184], + [105.707974, 29.840818], + [105.738771, 29.891159], + [105.717213, 29.893753], + [105.70243, 29.924879], + [105.730763, 29.95755], + [105.723372, 29.975177], + [105.753553, 30.018196], + [105.719677, 30.042548], + [105.687032, 30.038922], + [105.676561, 30.06793], + [105.638988, 30.076216], + [105.642068, 30.101072], + [105.582938, 30.12385], + [105.574315, 30.130579], + [105.596489, 30.159043], + [105.536127, 30.152834], + [105.550909, 30.179222], + [105.556453, 30.187499], + [105.558916, 30.18543], + [105.56138, 30.183878], + [105.642684, 30.186464], + [105.662394, 30.210258], + [105.619894, 30.234045], + [105.624822, 30.275918], + [105.670401, 30.254208], + [105.720292, 30.252657], + [105.720292, 30.252657], + [105.714749, 30.322939], + [105.754785, 30.342567], + [105.760329, 30.384393], + [105.792357, 30.427234], + [105.825618, 30.436006], + [105.84656, 30.410203], + [105.900763, 30.405042], + [105.943263, 30.372002], + [106.031958, 30.373551], + [106.07261, 30.333786], + [106.132972, 30.30279], + [106.132356, 30.323972], + [106.168696, 30.303823], + [106.180399, 30.233011], + [106.232754, 30.185947], + [106.260471, 30.19681], + [106.260471, 30.204051], + [106.260471, 30.207672], + [106.264167, 30.20974], + [106.296196, 30.205603], + [106.306667, 30.238182], + [106.334384, 30.225772], + [106.349167, 30.24542], + [106.401521, 30.242318], + [106.428623, 30.254725], + [106.43971, 30.308473], + [106.49884, 30.295556], + [106.545035, 30.296589], + [106.560434, 30.31519], + [106.611557, 30.292455], + [106.642354, 30.246454], + [106.612789, 30.235596], + [106.612789, 30.235596], + [106.612173, 30.235596], + [106.612173, 30.235596], + [106.611557, 30.235596], + [106.612173, 30.235596], + [106.611557, 30.235596], + [106.631883, 30.186464], + [106.677462, 30.156974], + [106.672535, 30.122297], + [106.700252, 30.111944], + [106.699636, 30.074145], + [106.724274, 30.058607], + [106.732281, 30.027005], + [106.785252, 30.01716], + [106.825904, 30.03115], + [106.825904, 30.03115], + [106.83699, 30.049801], + [106.862244, 30.033223], + [106.913367, 30.025451], + [106.94478, 30.037367], + [106.976193, 30.083467], + [106.975577, 30.088127], + [106.976809, 30.088127], + [106.977425, 30.087609], + [106.978656, 30.087609], + [106.979888, 30.088127], + [106.980504, 30.087609], + [106.981736, 30.08502], + [107.02054, 30.036849], + [107.053801, 30.043584], + [107.058113, 30.043066], + [107.084598, 30.063786], + [107.080286, 30.094341], + [107.103076, 30.090198], + [107.221337, 30.213878], + [107.257677, 30.267131], + [107.288474, 30.337402], + [107.338981, 30.386459], + [107.368546, 30.468508], + [107.408582, 30.521623], + [107.443075, 30.53348], + [107.427676, 30.547397], + [107.485575, 30.598408], + [107.516987, 30.644759], + [107.477567, 30.664837], + [107.458473, 30.704981], + [107.424597, 30.74048], + [107.454162, 30.771851], + [107.454162, 30.771851], + [107.498509, 30.809381], + [107.483111, 30.838675], + [107.515756, 30.854603], + [107.57735, 30.847924], + [107.645103, 30.821202], + [107.693146, 30.875665], + [107.739957, 30.884396], + [107.760899, 30.862823], + [107.763979, 30.817091], + [107.788001, 30.81966], + [107.851443, 30.792931], + [107.956152, 30.882855], + [107.994956, 30.908533], + [107.948145, 30.918802], + [107.942602, 30.989114], + [107.983254, 30.983983], + [108.00358, 31.025533], + [108.060246, 31.052197], + [108.026985, 31.061938], + [108.009123, 31.109602], + [108.025753, 31.116263], + [108.089811, 31.204859], + [108.07626, 31.231985], + [108.031297, 31.217144], + [108.038688, 31.252964], + [108.095354, 31.268311], + [108.185898, 31.336831], + [108.153869, 31.371073], + [108.216079, 31.41041], + [108.224086, 31.464024], + [108.193289, 31.467598], + [108.191441, 31.492096], + [108.233941, 31.506894], + [108.254883, 31.49873], + [108.344194, 31.512506], + [108.339266, 31.539033], + [108.386078, 31.544134], + [108.390389, 31.591555], + [108.442744, 31.633856], + [108.468614, 31.636404], + [108.519121, 31.665952], + [108.546838, 31.665442], + [108.514809, 31.693963], + [108.50557, 31.734182], + [108.535135, 31.757592], + [108.462454, 31.780488], + [108.455063, 31.814059], + [108.429194, 31.809482], + [108.391005, 31.829822], + [108.386078, 31.854226], + [108.343578, 31.860834], + [108.259194, 31.967006], + [108.307238, 31.997463], + [108.351585, 31.971575], + [108.370063, 31.988835], + [108.329411, 32.020299], + [108.362056, 32.035521], + [108.344194, 32.067477], + [108.372527, 32.077112], + [108.42981, 32.061391], + [108.452599, 32.090296], + [108.399628, 32.147065], + [108.379303, 32.153652], + [108.379303, 32.153652], + [108.379918, 32.154158], + [108.379918, 32.154158], + [108.370063, 32.172397], + [108.399013, 32.194176], + [108.480317, 32.182527], + [108.509882, 32.201266], + [108.507418, 32.245819], + [108.469846, 32.270618], + [108.414411, 32.252399], + [108.389773, 32.263533], + [108.310933, 32.232152], + [108.240716, 32.274666], + [108.179738, 32.221521], + [108.156948, 32.239239], + [108.143398, 32.219495], + [108.086731, 32.233165], + [108.018362, 32.2119], + [108.024521, 32.177462], + [107.979558, 32.146051], + [107.924739, 32.197215], + [107.890247, 32.214432], + [107.864377, 32.201266], + [107.812022, 32.247844], + [107.753508, 32.338399], + [107.707929, 32.331826], + [107.680827, 32.397035], + [107.648183, 32.413709], + [107.598291, 32.411688], + [107.527458, 32.38238], + [107.489886, 32.425328], + [107.456625, 32.41775], + [107.460937, 32.453612], + [107.438763, 32.465732], + [107.436299, 32.529835], + [107.382097, 32.54043], + [107.356843, 32.506622], + [107.313727, 32.489965], + [107.287858, 32.457147], + [107.263836, 32.403099], + [107.212097, 32.428864], + [107.189924, 32.468256], + [107.127098, 32.482393], + [107.080286, 32.542448], + [107.108004, 32.600951], + [107.098765, 32.649338], + [107.05996, 32.686115], + [107.066736, 32.708779], + [107.012533, 32.721367], + [106.912751, 32.704247], + [106.903512, 32.721367], + [106.854853, 32.724388], + [106.82344, 32.705254], + [106.793259, 32.712807], + [106.783404, 32.735967], + [106.733513, 32.739491], + [106.670071, 32.694678], + [106.626955, 32.682086], + [106.585687, 32.68813], + [106.517934, 32.668485], + [106.498224, 32.649338], + [106.451412, 32.65992], + [106.421231, 32.616579], + [106.389203, 32.62666], + [106.347935, 32.671003], + [106.301123, 32.680071], + [106.267863, 32.673522], + [106.254928, 32.693671], + [106.17424, 32.6977], + [106.120037, 32.719856], + [106.071378, 32.758114], + [106.07261, 32.76365], + [106.093552, 32.82402], + [106.071378, 32.828546], + [106.044277, 32.864747], + [106.011632, 32.829552], + [105.969132, 32.849162], + [105.93156, 32.826032], + [105.893371, 32.838603], + [105.849024, 32.817985], + [105.825002, 32.824523], + [105.822538, 32.770192], + [105.779423, 32.750061], + [105.768952, 32.767676], + [105.719061, 32.759624], + [105.677793, 32.726402], + [105.596489, 32.69921], + [105.585402, 32.728919], + [105.563844, 32.724891], + [105.555221, 32.794343], + [105.534279, 32.790822], + [105.524424, 32.847654], + [105.495475, 32.873292], + [105.49917, 32.911986], + [105.467757, 32.930071], + [105.414171, 32.922034], + [105.408011, 32.885857], + [105.38091, 32.876307], + [105.396308, 32.85067], + [105.396308, 32.85067], + [105.427721, 32.784281], + [105.454207, 32.767173], + [105.448663, 32.732946], + [105.368591, 32.712807], + [105.347033, 32.68259], + [105.297758, 32.656897], + [105.263265, 32.652362], + [105.219534, 32.666469], + [105.215222, 32.63674], + [105.185041, 32.617587], + [105.111128, 32.593893], + [105.0791, 32.637244], + [105.026745, 32.650346], + [104.925115, 32.607505], + [104.881999, 32.600951], + [104.845659, 32.653873], + [104.820405, 32.662943], + [104.795768, 32.643292], + [104.739717, 32.635228], + [104.696601, 32.673522], + [104.643015, 32.661935], + [104.592508, 32.695685], + [104.582653, 32.722374], + [104.526602, 32.728416], + [104.51182, 32.753585], + [104.458849, 32.748551], + [104.363994, 32.822511], + [104.294393, 32.835586], + [104.277147, 32.90244], + [104.288234, 32.942628], + [104.345516, 32.940117], + [104.378161, 32.953174], + [104.383704, 32.994343], + [104.426204, 33.010906], + [104.391711, 33.035493], + [104.337509, 33.038002], + [104.378161, 33.109214], + [104.351059, 33.158828], + [104.32827, 33.223934], + [104.323958, 33.26898], + [104.303632, 33.304499], + [104.333813, 33.315502], + [104.386168, 33.298497], + [104.420045, 33.327004], + [104.373849, 33.345004], + [104.292545, 33.336505], + [104.272219, 33.391486], + [104.22048, 33.404477], + [104.213089, 33.446932], + [104.180444, 33.472895], + [104.155191, 33.542755], + [104.176749, 33.5996], + [104.103452, 33.663381], + [104.046169, 33.686291], + [103.980264, 33.670852], + [103.861388, 33.682307], + [103.778236, 33.658898], + [103.690772, 33.69376], + [103.667983, 33.685793], + [103.645809, 33.708697], + [103.593454, 33.716164], + [103.563889, 33.699735], + [103.552186, 33.671351], + [103.520157, 33.678323], + [103.545411, 33.719649], + [103.518309, 33.807213], + [103.464723, 33.80224], + [103.434542, 33.752993], + [103.35447, 33.743539], + [103.278709, 33.774387], + [103.284868, 33.80224], + [103.24976, 33.814175], + [103.228202, 33.79478], + [103.165376, 33.805721], + [103.153673, 33.819147], + [103.181391, 33.900649], + [103.16476, 33.929454], + [103.1315, 33.931937], + [103.120413, 33.953286], + [103.157369, 33.998944], + [103.147514, 34.036644], + [103.119797, 34.03466], + [103.129652, 34.065899], + [103.178927, 34.079779], + [103.121644, 34.112487], + [103.124108, 34.162022], + [103.100087, 34.181828], + [103.052043, 34.195194], + [103.005848, 34.184798], + [102.973203, 34.205588], + [102.977515, 34.252595], + [102.949181, 34.292159], + [102.911609, 34.312923], + [102.85987, 34.301058], + [102.856791, 34.270895], + [102.798276, 34.272874], + [102.779798, 34.236764], + [102.728675, 34.235774], + [102.694799, 34.198659], + [102.664002, 34.192719], + [102.651067, 34.165983], + [102.598712, 34.14766], + [102.655994, 34.113478], + [102.649219, 34.080275], + [102.615958, 34.099604], + [102.511865, 34.086222], + [102.471213, 34.072839], + [102.437336, 34.087214], + [102.406539, 34.033172], + [102.392372, 33.971651], + [102.345561, 33.969666], + [102.315996, 33.993983], + [102.287047, 33.977607], + [102.248858, 33.98654], + [102.226069, 33.963214], + [102.16817, 33.983066], + [102.136142, 33.965199], + [102.25317, 33.861399], + [102.261177, 33.821136], + [102.243315, 33.786823], + [102.296286, 33.783838], + [102.324619, 33.754486], + [102.284583, 33.719151], + [102.342481, 33.725622], + [102.31538, 33.665374], + [102.346793, 33.605582], + [102.440416, 33.574673], + [102.477988, 33.543254], + [102.446575, 33.53228], + [102.461358, 33.501345], + [102.462589, 33.449429], + [102.447807, 33.454922], + [102.392988, 33.404477], + [102.368967, 33.41247], + [102.310452, 33.397982], + [102.296286, 33.413969], + [102.258098, 33.409472], + [102.218062, 33.349503], + [102.192192, 33.337005], + [102.217446, 33.247961], + [102.200815, 33.223434], + [102.160163, 33.242956], + [102.144765, 33.273983], + [102.117047, 33.288492], + [102.08933, 33.227439], + [102.08933, 33.204908], + [102.054838, 33.189884], + [101.99386, 33.1999], + [101.935345, 33.186879], + [101.921795, 33.153817], + [101.887302, 33.135778], + [101.865744, 33.103198], + [101.825708, 33.119239], + [101.841723, 33.184876], + [101.83002, 33.213921], + [101.770274, 33.248962], + [101.769658, 33.26898], + [101.877447, 33.314502], + [101.887302, 33.383991], + [101.915635, 33.425957], + [101.946432, 33.442937], + [101.906396, 33.48188], + [101.907012, 33.539264], + [101.884222, 33.578163], + [101.844186, 33.602591], + [101.831252, 33.554726], + [101.783208, 33.556721], + [101.769042, 33.538765], + [101.777665, 33.533776], + [101.769042, 33.45592], + [101.695745, 33.433948], + [101.663716, 33.383991], + [101.64955, 33.323004], + [101.677883, 33.297497], + [101.735781, 33.279987], + [101.709912, 33.21292], + [101.653861, 33.162835], + [101.661252, 33.135778], + [101.633535, 33.101193], + [101.557775, 33.167344], + [101.515275, 33.192889], + [101.487557, 33.226938], + [101.403174, 33.225436], + [101.386543, 33.207412], + [101.393935, 33.157826], + [101.381616, 33.153316], + [101.297232, 33.262475], + [101.217776, 33.256469], + [101.182668, 33.26948], + [101.156798, 33.236449], + [101.124769, 33.221431], + [101.11553, 33.194893], + [101.169733, 33.10019], + [101.143863, 33.086151], + [101.146327, 33.056563], + [101.184515, 33.041514], + [101.171581, 33.009902], + [101.183899, 32.984304], + [101.129081, 32.989324], + [101.134624, 32.95217], + [101.124153, 32.909976], + [101.178356, 32.892892], + [101.223935, 32.855698], + [101.237486, 32.825026], + [101.22332, 32.725898], + [101.157414, 32.661431], + [101.124769, 32.658408], + [101.077342, 32.68259], + [101.030531, 32.660424], + [100.99727, 32.627668], + [100.956618, 32.621116], + [100.93198, 32.600447], + [100.887633, 32.632708], + [100.834046, 32.648835], + [100.77122, 32.643795], + [100.690532, 32.678056], + [100.71209, 32.645307], + [100.710242, 32.610026], + [100.673286, 32.628172], + [100.661583, 32.616075], + [100.657887, 32.546484], + [100.645568, 32.526303], + [100.603069, 32.553547], + [100.54517, 32.569687], + [100.516837, 32.632204], + [100.470026, 32.694678], + [100.450932, 32.694678], + [100.420135, 32.73194], + [100.378251, 32.698707], + [100.399193, 32.756101], + [100.339447, 32.719353], + [100.258759, 32.742511], + [100.231041, 32.696189], + [100.229809, 32.650346], + [100.208252, 32.606497], + [100.189773, 32.630692], + [100.109701, 32.640268], + [100.088143, 32.668988], + [100.139266, 32.724388], + [100.117093, 32.802392], + [100.123252, 32.837095], + [100.064738, 32.895907], + [100.029629, 32.895907], + [100.038252, 32.929066], + [99.956332, 32.948152], + [99.947709, 32.986814], + [99.877492, 33.045527], + [99.877492, 32.993339], + [99.851007, 32.941623], + [99.805427, 32.940619], + [99.788181, 32.956689], + [99.764159, 32.924545], + [99.791877, 32.883344], + [99.766623, 32.826032], + [99.760464, 32.769689], + [99.717964, 32.732443], + [99.700718, 32.76667], + [99.646515, 32.774721], + [99.640355, 32.790822], + [99.589233, 32.789312], + [99.558436, 32.839106], + [99.45311, 32.862233], + [99.376118, 32.899927], + [99.353944, 32.885354], + [99.268944, 32.878318], + [99.24677, 32.924043], + [99.235067, 32.982296], + [99.214741, 32.991332], + [99.196263, 33.035493], + [99.124814, 33.046028], + [99.090322, 33.079131], + [99.024416, 33.094675], + [99.014561, 33.081137], + [98.971445, 33.098185], + [98.967134, 33.115229], + [98.92217, 33.118738], + [98.858728, 33.150811], + [98.804526, 33.219428], + [98.802062, 33.270481], + [98.759562, 33.276985], + [98.779888, 33.370497], + [98.736157, 33.406975], + [98.742316, 33.477887], + [98.725686, 33.503341], + [98.678258, 33.522801], + [98.648077, 33.548741], + [98.652389, 33.595114], + [98.622824, 33.610067], + [98.61728, 33.637476], + [98.6567, 33.64744], + [98.610505, 33.682805], + [98.582788, 33.731595], + [98.539672, 33.746525], + [98.51873, 33.77389], + [98.494092, 33.768915], + [98.492861, 33.796272], + [98.463295, 33.848477], + [98.434962, 33.843009], + [98.407245, 33.867362], + [98.425723, 33.913066], + [98.415252, 33.956761], + [98.440506, 33.981577], + [98.428187, 34.029204], + [98.396774, 34.053008], + [98.399854, 34.085231], + [98.344419, 34.094648], + [98.258188, 34.083249], + [98.206449, 34.08424], + [98.158405, 34.107037], + [98.098043, 34.122892], + [98.028442, 34.122892], + [97.95453, 34.190739], + [97.898479, 34.209548], + [97.8104, 34.207568], + [97.796849, 34.199154], + [97.796849, 34.199154], + [97.789458, 34.182818], + [97.789458, 34.182818], + [97.766668, 34.158555], + [97.665654, 34.126855], + [97.70261, 34.036644], + [97.652719, 33.998448], + [97.660111, 33.956264], + [97.629314, 33.919523], + [97.601596, 33.929951], + [97.52214, 33.903133], + [97.503662, 33.912073], + [97.460546, 33.887236], + [97.395257, 33.889224], + [97.398336, 33.848477], + [97.371851, 33.842015], + [97.373083, 33.817655], + [97.406344, 33.795278], + [97.422974, 33.754984], + [97.418046, 33.728608], + [97.435293, 33.682307], + [97.415583, 33.605582], + [97.450075, 33.582152], + [97.523372, 33.577166], + [97.511669, 33.520805], + [97.552321, 33.465906], + [97.625618, 33.461412], + [97.674893, 33.432949], + [97.754349, 33.409972], + [97.676125, 33.341004], + [97.622538, 33.337005], + [97.607756, 33.263976], + [97.548626, 33.203907], + [97.487648, 33.168346], + [97.498119, 33.137783], + [97.487032, 33.107209], + [97.517213, 33.097683], + [97.542466, 33.035995], + [97.499966, 33.011408], + [97.523988, 32.988822], + [97.438372, 32.976271], + [97.375547, 32.956689], + [97.347829, 32.895907], + [97.376163, 32.886359], + [97.392793, 32.828546], + [97.386018, 32.77925], + [97.429133, 32.714318], + [97.42359, 32.70475], + [97.48272, 32.654377], + [97.535075, 32.638252], + [97.543698, 32.62162], + [97.607756, 32.614059], + [97.616995, 32.586329], + [97.700763, 32.53488], + [97.730944, 32.527312], + [97.795617, 32.521257], + [97.80732, 32.50006], + [97.863986, 32.499051], + [97.880001, 32.486431], + [97.940363, 32.482393], + [98.079565, 32.415224], + [98.107283, 32.391476], + [98.125145, 32.401077], + [98.218768, 32.342444], + [98.208913, 32.318171], + [98.23047, 32.262521], + [98.218768, 32.234683], + [98.260035, 32.208862], + [98.303151, 32.121726], + [98.357354, 32.087253], + [98.404781, 32.045159], + [98.402933, 32.026896], + [98.434962, 32.007613], + [98.432498, 31.922825], + [98.399238, 31.895899], + [98.426339, 31.856767], + [98.414636, 31.832365], + [98.461448, 31.800327], + [98.508875, 31.751995], + [98.516882, 31.717383], + [98.545831, 31.717383], + [98.553839, 31.660349], + [98.619128, 31.591555], + [98.651157, 31.57881], + [98.696736, 31.538523], + [98.714599, 31.508935], + [98.844562, 31.429817], + [98.84333, 31.416028], + [98.887062, 31.37465], + [98.810685, 31.306668], + [98.805758, 31.279052], + [98.773113, 31.249382], + [98.691809, 31.333253], + [98.643766, 31.338876], + [98.616048, 31.3036], + [98.60373, 31.257568], + [98.62344, 31.221238], + [98.602498, 31.192062], + [98.675179, 31.15417], + [98.710287, 31.1178], + [98.712135, 31.082954], + [98.736772, 31.049121], + [98.774961, 31.031174], + [98.806374, 30.995783], + [98.797135, 30.948575], + [98.774345, 30.908019], + [98.797135, 30.87926], + [98.850105, 30.849465], + [98.904924, 30.782649], + [98.957895, 30.765166], + [98.963438, 30.728134], + [98.907388, 30.698292], + [98.92217, 30.609225], + [98.939417, 30.598923], + [98.926482, 30.569556], + [98.932025, 30.521623], + [98.965286, 30.449937], + [98.967134, 30.33482], + [98.986844, 30.280569], + [98.970829, 30.260928], + [98.993003, 30.215429], + [98.9813, 30.182843], + [98.989308, 30.151799], + [99.044742, 30.079842], + [99.036735, 30.053945], + [99.055213, 29.958587], + [99.068148, 29.931621], + [99.0238, 29.846009], + [99.018873, 29.792009], + [98.992387, 29.677163], + [99.014561, 29.607464], + [99.052133, 29.563748], + [99.044742, 29.520013], + [99.066916, 29.421018], + [99.058909, 29.417368], + [99.075539, 29.316186], + [99.114343, 29.243628], + [99.113727, 29.221171], + [99.105104, 29.162656], + [99.118039, 29.100971], + [99.113727, 29.07273], + [99.132206, 28.94869], + [99.123582, 28.890021], + [99.103872, 28.841803], + [99.114343, 28.765763], + [99.134053, 28.734806], + [99.126662, 28.698066], + [99.147604, 28.640831], + [99.183944, 28.58882], + [99.170394, 28.566221], + [99.191952, 28.494714], + [99.187024, 28.44], + [99.16485, 28.425264], + [99.200575, 28.365774], + [99.229524, 28.350502], + [99.237531, 28.317842], + [99.28927, 28.286227], + [99.306516, 28.227714], + [99.374886, 28.18183], + [99.412458, 28.295186], + [99.392748, 28.318369], + [99.437095, 28.398419], + [99.404451, 28.44421], + [99.426625, 28.454207], + [99.396444, 28.491032], + [99.403219, 28.546246], + [99.463581, 28.549401], + [99.466045, 28.579886], + [99.504233, 28.619294], + [99.540573, 28.623497], + [99.53195, 28.677591], + [99.553508, 28.710664], + [99.614486, 28.740054], + [99.609559, 28.784122], + [99.625573, 28.81454], + [99.676696, 28.810345], + [99.717964, 28.846521], + [99.722275, 28.757369], + [99.755536, 28.701216], + [99.79434, 28.699116], + [99.834992, 28.660788], + [99.834376, 28.628225], + [99.873181, 28.631902], + [99.875644, 28.611939], + [99.91876, 28.599329], + [99.985281, 28.529422], + [99.990209, 28.47683], + [100.073977, 28.426317], + [100.057346, 28.368934], + [100.136803, 28.349975], + [100.176223, 28.325218], + [100.147274, 28.288862], + [100.188541, 28.252493], + [100.153433, 28.208202], + [100.102926, 28.201873], + [100.091223, 28.181302], + [100.062274, 28.193962], + [100.033325, 28.184467], + [100.021006, 28.147008], + [100.05673, 28.097922], + [100.088759, 28.029269], + [100.120788, 28.018703], + [100.196549, 27.936254], + [100.170063, 27.907699], + [100.210715, 27.87702], + [100.30865, 27.861149], + [100.30865, 27.830457], + [100.28586, 27.80611], + [100.304954, 27.788639], + [100.311729, 27.724028], + [100.327744, 27.72032], + [100.350534, 27.755809], + [100.412127, 27.816167], + [100.442924, 27.86644], + [100.504518, 27.852154], + [100.511294, 27.827811], + [100.54517, 27.809286], + [100.609228, 27.859033], + [100.634482, 27.915631], + [100.681293, 27.923035], + [100.719481, 27.858503], + [100.707162, 27.800816], + [100.757053, 27.770107], + [100.775532, 27.743098], + [100.782307, 27.691708], + [100.848212, 27.672099], + [100.827886, 27.615904], + [100.854988, 27.623858], + [100.91227, 27.521473], + [100.901183, 27.453517], + [100.936908, 27.469448], + [100.95169, 27.426961], + [101.021907, 27.332899], + [101.026219, 27.270679], + [101.042233, 27.22173], + [101.071798, 27.194585], + [101.119226, 27.208957], + [101.167885, 27.198311], + [101.167885, 27.198311] + ] + ], + [ + [ + [106.264167, 30.20974], + [106.260471, 30.207672], + [106.260471, 30.204051], + [106.260471, 30.19681], + [106.264167, 30.20974] + ] + ], + [ + [ + [106.976809, 30.088127], + [106.975577, 30.088127], + [106.976193, 30.083467], + [106.981736, 30.08502], + [106.980504, 30.087609], + [106.979888, 30.088127], + [106.978656, 30.087609], + [106.977425, 30.087609], + [106.976809, 30.088127] + ] + ], + [ + [ + [105.558916, 30.18543], + [105.556453, 30.187499], + [105.550909, 30.179222], + [105.56138, 30.183878], + [105.558916, 30.18543] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 520000, + "name": "贵州省", + "center": [106.713478, 26.578343], + "centroid": [106.880455, 26.826368], + "childrenNum": 9, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 23, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [109.274262, 28.494714], + [109.23361, 28.474726], + [109.191726, 28.471043], + [109.153538, 28.417369], + [109.152306, 28.349975], + [109.117198, 28.277795], + [109.081473, 28.247749], + [109.101799, 28.202401], + [109.086401, 28.184467], + [109.026655, 28.220331], + [109.005713, 28.162837], + [108.929952, 28.19027], + [108.923793, 28.217167], + [108.89546, 28.219804], + [108.855424, 28.199764], + [108.821547, 28.245113], + [108.772888, 28.212949], + [108.738395, 28.228241], + [108.726692, 28.282011], + [108.761801, 28.304143], + [108.783359, 28.380518], + [108.759953, 28.389995], + [108.780279, 28.42579], + [108.746402, 28.45105], + [108.709446, 28.501026], + [108.700207, 28.48209], + [108.657091, 28.47683], + [108.640461, 28.456838], + [108.688504, 28.422106], + [108.697127, 28.401051], + [108.656475, 28.359981], + [108.667562, 28.334173], + [108.611512, 28.324691], + [108.580099, 28.343128], + [108.576403, 28.38631], + [108.609048, 28.407368], + [108.609664, 28.43579], + [108.586874, 28.463678], + [108.573939, 28.531], + [108.610896, 28.539412], + [108.604736, 28.590922], + [108.636149, 28.621396], + [108.575787, 28.659738], + [108.50249, 28.63768], + [108.501258, 28.626649], + [108.439049, 28.634003], + [108.332491, 28.679166], + [108.347274, 28.736381], + [108.385462, 28.772058], + [108.386078, 28.803003], + [108.352817, 28.815589], + [108.346658, 28.859625], + [108.357745, 28.893165], + [108.345426, 28.943453], + [108.319556, 28.961258], + [108.297999, 29.045527], + [108.306622, 29.079006], + [108.277673, 29.091558], + [108.256115, 29.040295], + [108.193289, 29.072207], + [108.150173, 29.053375], + [108.070717, 29.086328], + [108.026369, 29.039772], + [107.925971, 29.032446], + [107.908725, 29.007327], + [107.882855, 29.00628], + [107.867457, 28.960211], + [107.810175, 28.984295], + [107.823725, 29.034016], + [107.784921, 29.048143], + [107.810791, 29.139137], + [107.749197, 29.199754], + [107.700537, 29.141228], + [107.659885, 29.162656], + [107.605683, 29.164747], + [107.589052, 29.150113], + [107.570574, 29.218037], + [107.486806, 29.174153], + [107.441227, 29.203934], + [107.401807, 29.184603], + [107.408582, 29.138091], + [107.427676, 29.128682], + [107.412278, 29.094696], + [107.369778, 29.091558], + [107.395647, 29.041341], + [107.364235, 29.00942], + [107.396879, 28.993718], + [107.412894, 28.960211], + [107.441227, 28.943977], + [107.41351, 28.911502], + [107.383945, 28.848618], + [107.339597, 28.845997], + [107.327894, 28.810869], + [107.261373, 28.792514], + [107.24659, 28.76209], + [107.219489, 28.772582], + [107.210866, 28.817686], + [107.227496, 28.836037], + [107.194851, 28.838134], + [107.206554, 28.868535], + [107.14188, 28.887925], + [107.016229, 28.882685], + [107.019308, 28.861722], + [106.983584, 28.851239], + [106.988512, 28.776254], + [106.951555, 28.766812], + [106.923222, 28.809821], + [106.872099, 28.777304], + [106.845614, 28.780975], + [106.824056, 28.756319], + [106.86594, 28.690192], + [106.889345, 28.695966], + [106.866556, 28.624548], + [106.830831, 28.623497], + [106.807425, 28.589346], + [106.784636, 28.626649], + [106.756918, 28.607211], + [106.77786, 28.563068], + [106.73844, 28.554657], + [106.726121, 28.51838], + [106.747063, 28.467361], + [106.708259, 28.450524], + [106.697788, 28.47683], + [106.632499, 28.503655], + [106.564745, 28.485247], + [106.567825, 28.523638], + [106.615252, 28.549401], + [106.606629, 28.593024], + [106.63681, 28.622972], + [106.618332, 28.645033], + [106.651593, 28.649235], + [106.617716, 28.66709], + [106.6171, 28.691242], + [106.587535, 28.691767], + [106.56105, 28.719062], + [106.561666, 28.756319], + [106.474202, 28.832891], + [106.45326, 28.817162], + [106.461883, 28.761041], + [106.492064, 28.742153], + [106.528405, 28.677591], + [106.502535, 28.661313], + [106.49268, 28.591448], + [106.466811, 28.586193], + [106.504999, 28.544669], + [106.477282, 28.530474], + [106.403369, 28.569901], + [106.37442, 28.525742], + [106.379348, 28.479986], + [106.349167, 28.473674], + [106.304819, 28.505233], + [106.2925, 28.537309], + [106.254928, 28.539412], + [106.184711, 28.58882], + [106.17116, 28.629275], + [106.14837, 28.642932], + [106.103407, 28.636104], + [106.085544, 28.681792], + [106.030726, 28.694917], + [106.001161, 28.743727], + [105.966668, 28.761041], + [105.937719, 28.686517], + [105.889676, 28.670765], + [105.884748, 28.595126], + [105.808372, 28.599855], + [105.78435, 28.610889], + [105.757249, 28.590397], + [105.74493, 28.616668], + [105.712901, 28.586718], + [105.693191, 28.58882], + [105.68272, 28.534154], + [105.62359, 28.517854], + [105.612503, 28.438947], + [105.643916, 28.431053], + [105.655003, 28.362615], + [105.639604, 28.324164], + [105.68888, 28.284119], + [105.730147, 28.271997], + [105.737539, 28.30309], + [105.76464, 28.308359], + [105.76464, 28.308359], + [105.78743, 28.335753], + [105.824386, 28.306251], + [105.848408, 28.255656], + [105.889676, 28.237732], + [105.860727, 28.159672], + [105.895219, 28.119565], + [105.943878, 28.143314], + [105.975907, 28.107952], + [106.093552, 28.162837], + [106.145291, 28.162837], + [106.206885, 28.134343], + [106.266631, 28.066769], + [106.246305, 28.011835], + [106.286341, 28.007079], + [106.328225, 27.952643], + [106.307899, 27.936782], + [106.304819, 27.899237], + [106.325145, 27.898708], + [106.337464, 27.859033], + [106.306667, 27.808756], + [106.242609, 27.767459], + [106.193334, 27.75422], + [106.120653, 27.779638], + [106.063987, 27.776991], + [106.023335, 27.746805], + [105.985146, 27.749983], + [105.92848, 27.729855], + [105.922937, 27.746805], + [105.868118, 27.732504], + [105.848408, 27.707074], + [105.76772, 27.7182], + [105.722756, 27.706015], + [105.720292, 27.683759], + [105.664242, 27.683759], + [105.62359, 27.666269], + [105.605112, 27.715552], + [105.560148, 27.71979], + [105.508409, 27.769048], + [105.44004, 27.775402], + [105.353809, 27.748924], + [105.308229, 27.704955], + [105.29591, 27.631811], + [105.304533, 27.611661], + [105.25649, 27.582491], + [105.232469, 27.546945], + [105.260186, 27.514573], + [105.234316, 27.489093], + [105.233084, 27.436522], + [105.182577, 27.367451], + [105.184425, 27.392959], + [105.120984, 27.418461], + [105.068013, 27.418461], + [105.01073, 27.379143], + [104.913412, 27.327051], + [104.871528, 27.290891], + [104.851818, 27.299401], + [104.856746, 27.332368], + [104.824717, 27.3531], + [104.77113, 27.317481], + [104.7545, 27.345658], + [104.611602, 27.306846], + [104.570334, 27.331836], + [104.539537, 27.327583], + [104.497037, 27.414743], + [104.467472, 27.414211], + [104.363378, 27.467855], + [104.30856, 27.407305], + [104.295625, 27.37436], + [104.247582, 27.336621], + [104.248813, 27.291955], + [104.210625, 27.297273], + [104.173053, 27.263232], + [104.113923, 27.338216], + [104.084358, 27.330773], + [104.01722, 27.383926], + [104.015372, 27.429086], + [103.956242, 27.425367], + [103.932221, 27.443958], + [103.905119, 27.38552], + [103.903271, 27.347785], + [103.874322, 27.331304], + [103.865699, 27.28185], + [103.80041, 27.26536], + [103.801641, 27.250464], + [103.748671, 27.210021], + [103.696316, 27.126429], + [103.63349, 27.12057], + [103.620555, 27.096598], + [103.652584, 27.092868], + [103.659975, 27.065692], + [103.614396, 27.079548], + [103.601461, 27.061962], + [103.623635, 27.035312], + [103.623019, 27.007056], + [103.675374, 27.051836], + [103.704939, 27.049171], + [103.73204, 27.018785], + [103.753598, 26.963858], + [103.775156, 26.951056], + [103.763453, 26.905702], + [103.779468, 26.87421], + [103.722185, 26.851253], + [103.705555, 26.794642], + [103.725265, 26.742812], + [103.773308, 26.716621], + [103.759142, 26.689355], + [103.748671, 26.623568], + [103.763453, 26.585041], + [103.815808, 26.55239], + [103.819504, 26.529903], + [103.865699, 26.512232], + [103.953163, 26.521336], + [104.008597, 26.511697], + [104.067727, 26.51491], + [104.068343, 26.573266], + [104.121314, 26.638012], + [104.160734, 26.646571], + [104.222328, 26.620358], + [104.268524, 26.617683], + [104.274683, 26.633733], + [104.313487, 26.612867], + [104.353523, 26.620893], + [104.398487, 26.686147], + [104.424356, 26.709137], + [104.468088, 26.644431], + [104.459465, 26.602701], + [104.488414, 26.579689], + [104.556783, 26.590393], + [104.579573, 26.568449], + [104.57095, 26.524549], + [104.598667, 26.520801], + [104.638703, 26.477954], + [104.631928, 26.451702], + [104.665804, 26.434019], + [104.664572, 26.397572], + [104.684283, 26.3772], + [104.659645, 26.335373], + [104.592508, 26.317672], + [104.542616, 26.253282], + [104.548776, 26.226979], + [104.518595, 26.165762], + [104.52845, 26.114186], + [104.499501, 26.070651], + [104.460081, 26.085702], + [104.470552, 26.009352], + [104.438523, 25.92757], + [104.414501, 25.909807], + [104.441602, 25.868889], + [104.42374, 25.841961], + [104.397871, 25.76168], + [104.370769, 25.730415], + [104.328886, 25.760602], + [104.310407, 25.647901], + [104.332581, 25.598796], + [104.389248, 25.595558], + [104.428668, 25.576126], + [104.436059, 25.520512], + [104.418813, 25.499447], + [104.434827, 25.472436], + [104.44961, 25.495126], + [104.483486, 25.494585], + [104.524138, 25.526992], + [104.556783, 25.524832], + [104.543232, 25.400556], + [104.566638, 25.402719], + [104.615913, 25.364871], + [104.646094, 25.356759], + [104.639935, 25.295632], + [104.689826, 25.296173], + [104.736021, 25.268034], + [104.816094, 25.262622], + [104.826565, 25.235558], + [104.806854, 25.224189], + [104.822869, 25.170037], + [104.801927, 25.163537], + [104.753884, 25.214443], + [104.724319, 25.195491], + [104.732326, 25.167871], + [104.695369, 25.122364], + [104.685514, 25.078466], + [104.619609, 25.060577], + [104.684898, 25.054072], + [104.713232, 24.996048], + [104.663957, 24.964584], + [104.635623, 24.903803], + [104.586964, 24.872859], + [104.539537, 24.813663], + [104.542616, 24.75607], + [104.529682, 24.731611], + [104.595587, 24.709323], + [104.628848, 24.660927], + [104.703377, 24.645698], + [104.729246, 24.617953], + [104.771746, 24.659839], + [104.841963, 24.676155], + [104.865985, 24.730524], + [104.899245, 24.752809], + [105.03352, 24.787586], + [105.026745, 24.815836], + [105.039064, 24.872859], + [105.077868, 24.918459], + [105.09573, 24.92877], + [105.131454, 24.959701], + [105.157324, 24.958616], + [105.178266, 24.985199], + [105.212758, 24.995505], + [105.251563, 24.967296], + [105.267577, 24.929313], + [105.334099, 24.9266], + [105.365511, 24.943423], + [105.428337, 24.930941], + [105.457286, 24.87123], + [105.493011, 24.833217], + [105.497322, 24.809318], + [105.573083, 24.797366], + [105.607576, 24.803885], + [105.617431, 24.78161], + [105.70551, 24.768569], + [105.767104, 24.719109], + [105.827466, 24.702799], + [105.863806, 24.729437], + [105.942031, 24.725088], + [105.961741, 24.677786], + [106.024566, 24.633186], + [106.047356, 24.684312], + [106.113878, 24.714216], + [106.150218, 24.762591], + [106.173008, 24.760417], + [106.206269, 24.851139], + [106.197645, 24.885889], + [106.145291, 24.954275], + [106.191486, 24.95319], + [106.215508, 24.981944], + [106.253696, 24.971094], + [106.304819, 24.973807], + [106.332536, 24.988454], + [106.442173, 25.019369], + [106.450181, 25.033468], + [106.519782, 25.054072], + [106.551195, 25.082802], + [106.590615, 25.08768], + [106.63989, 25.132658], + [106.644817, 25.164621], + [106.691013, 25.179245], + [106.732281, 25.162454], + [106.764926, 25.183036], + [106.787715, 25.17112], + [106.853005, 25.186827], + [106.888113, 25.181953], + [106.904128, 25.231768], + [106.933077, 25.250714], + [106.975577, 25.232851], + [107.013765, 25.275611], + [107.012533, 25.352973], + [106.987896, 25.358922], + [106.963874, 25.437852], + [106.996519, 25.442716], + [107.015613, 25.495666], + [107.066736, 25.50917], + [107.064272, 25.559391], + [107.185612, 25.578825], + [107.205322, 25.607971], + [107.228728, 25.604733], + [107.232423, 25.556691], + [107.263836, 25.543193], + [107.336517, 25.461089], + [107.308184, 25.432988], + [107.318039, 25.401637], + [107.358691, 25.393528], + [107.375937, 25.411908], + [107.420901, 25.392987], + [107.409198, 25.347024], + [107.432604, 25.289139], + [107.481263, 25.299961], + [107.489886, 25.276693], + [107.472024, 25.213902], + [107.512676, 25.209029], + [107.576734, 25.256668], + [107.599523, 25.250714], + [107.632168, 25.310241], + [107.659885, 25.316192], + [107.661733, 25.258833], + [107.696226, 25.219858], + [107.700537, 25.194408], + [107.741805, 25.24043], + [107.762131, 25.229061], + [107.760283, 25.188451], + [107.789233, 25.15487], + [107.762747, 25.125073], + [107.839124, 25.115861], + [107.872384, 25.141327], + [107.928435, 25.155954], + [108.001732, 25.196574], + [108.080572, 25.193867], + [108.115065, 25.210112], + [108.143398, 25.269658], + [108.152021, 25.324306], + [108.142782, 25.390825], + [108.193289, 25.405421], + [108.162492, 25.444878], + [108.192673, 25.458928], + [108.251803, 25.430286], + [108.241332, 25.46217], + [108.280752, 25.48], + [108.308469, 25.525912], + [108.348506, 25.536173], + [108.359592, 25.513491], + [108.400244, 25.491344], + [108.418723, 25.443257], + [108.471693, 25.458928], + [108.585642, 25.365952], + [108.589338, 25.335125], + [108.625062, 25.308076], + [108.62999, 25.335666], + [108.600425, 25.432448], + [108.6072, 25.491885], + [108.634917, 25.520512], + [108.68912, 25.533473], + [108.658323, 25.550212], + [108.660787, 25.584763], + [108.68604, 25.587462], + [108.68912, 25.623081], + [108.724844, 25.634952], + [108.783975, 25.628477], + [108.799989, 25.576666], + [108.781511, 25.554531], + [108.814772, 25.526992], + [108.826474, 25.550212], + [108.890532, 25.556151], + [108.8893, 25.543193], + [108.949046, 25.557231], + [109.024807, 25.51241], + [109.088249, 25.550752], + [109.051908, 25.566949], + [109.030966, 25.629556], + [109.075314, 25.693749], + [109.07901, 25.72071], + [109.043285, 25.738502], + [109.007561, 25.734728], + [108.953974, 25.686738], + [108.953974, 25.686738], + [108.900387, 25.682423], + [108.896076, 25.71424], + [108.940423, 25.740119], + [108.963829, 25.732572], + [108.999553, 25.765453], + [108.989698, 25.778926], + [109.048213, 25.790781], + [109.077778, 25.776771], + [109.095024, 25.80533], + [109.143683, 25.795092], + [109.13198, 25.762758], + [109.147995, 25.741736], + [109.206509, 25.788087], + [109.207125, 25.740119], + [109.296436, 25.71424], + [109.340168, 25.731493], + [109.327849, 25.76168], + [109.339552, 25.83442], + [109.359262, 25.836036], + [109.396834, 25.900117], + [109.435022, 25.93349], + [109.408537, 25.967392], + [109.473211, 26.006663], + [109.48245, 26.029788], + [109.452885, 26.055598], + [109.449805, 26.101826], + [109.502776, 26.096451], + [109.513863, 26.128157], + [109.47629, 26.148035], + [109.439334, 26.238789], + [109.467051, 26.313917], + [109.442414, 26.289774], + [109.369733, 26.277432], + [109.351255, 26.264016], + [109.325385, 26.29031], + [109.285965, 26.295676], + [109.271183, 26.327863], + [109.29582, 26.350389], + [109.319842, 26.418477], + [109.38082, 26.454381], + [109.362342, 26.472061], + [109.385747, 26.493487], + [109.381436, 26.518659], + [109.407305, 26.533116], + [109.390675, 26.598955], + [109.35495, 26.658873], + [109.334008, 26.646036], + [109.306291, 26.661012], + [109.283501, 26.698445], + [109.35495, 26.693098], + [109.407305, 26.719829], + [109.447957, 26.759913], + [109.486761, 26.759913], + [109.47629, 26.829894], + [109.467051, 26.83203], + [109.452885, 26.861932], + [109.436254, 26.892359], + [109.555131, 26.946788], + [109.520022, 27.058764], + [109.497848, 27.079548], + [109.486761, 27.053968], + [109.454733, 27.069423], + [109.472595, 27.134951], + [109.441182, 27.117907], + [109.415312, 27.154123], + [109.358646, 27.153058], + [109.33524, 27.139212], + [109.264407, 27.131755], + [109.239154, 27.14933], + [109.21698, 27.114711], + [109.165857, 27.066758], + [109.101183, 27.06889], + [109.128901, 27.122701], + [109.032814, 27.104056], + [109.007561, 27.08008], + [108.940423, 27.044907], + [108.942887, 27.017186], + [108.942887, 27.017186], + [108.877597, 27.01612], + [108.79075, 27.084343], + [108.878829, 27.106187], + [108.926873, 27.160512], + [108.907778, 27.204699], + [108.963213, 27.235565], + [108.983539, 27.26802], + [109.053756, 27.293551], + [109.044517, 27.331304], + [109.103647, 27.336621], + [109.142451, 27.418461], + [109.141835, 27.448207], + [109.167089, 27.41793], + [109.202197, 27.450331], + [109.245313, 27.41793], + [109.300132, 27.423774], + [109.303211, 27.47582], + [109.404841, 27.55066], + [109.461508, 27.567637], + [109.451037, 27.586204], + [109.470131, 27.62863], + [109.45658, 27.673689], + [109.470747, 27.680049], + [109.414081, 27.725087], + [109.366653, 27.721909], + [109.37774, 27.736741], + [109.332777, 27.782815], + [109.346943, 27.838396], + [109.32169, 27.868027], + [109.30198, 27.956343], + [109.319842, 27.988585], + [109.362342, 28.007608], + [109.378972, 28.034551], + [109.335856, 28.063073], + [109.298284, 28.036136], + [109.314298, 28.103729], + [109.33832, 28.141731], + [109.340168, 28.19027], + [109.367885, 28.254602], + [109.388211, 28.268307], + [109.33524, 28.293605], + [109.317994, 28.277795], + [109.275494, 28.313101], + [109.268719, 28.33786], + [109.289045, 28.373673], + [109.264407, 28.392628], + [109.260712, 28.46473], + [109.274262, 28.494714] + ] + ], + [ + [ + [109.47629, 26.829894], + [109.486761, 26.759913], + [109.52187, 26.749226], + [109.522486, 26.749226], + [109.497232, 26.815474], + [109.513247, 26.84004], + [109.509551, 26.877947], + [109.486761, 26.895562], + [109.452885, 26.861932], + [109.467051, 26.83203], + [109.47629, 26.829894] + ] + ], + [ + [ + [109.528645, 26.743881], + [109.568065, 26.726243], + [109.597015, 26.756173], + [109.554515, 26.73533], + [109.528645, 26.743881] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 530000, + "name": "云南省", + "center": [102.712251, 25.040609], + "centroid": [101.485106, 25.008643], + "childrenNum": 16, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 24, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [105.308229, 27.704955], + [105.290367, 27.712373], + [105.293447, 27.770637], + [105.273736, 27.794992], + [105.313157, 27.810874], + [105.25957, 27.827811], + [105.233084, 27.895534], + [105.284823, 27.935725], + [105.270657, 27.99704], + [105.247867, 28.009193], + [105.218302, 27.990698], + [105.186273, 27.995454], + [105.167795, 28.021345], + [105.186889, 28.054623], + [105.168411, 28.071522], + [105.119752, 28.07205], + [105.061853, 28.096866], + [105.002107, 28.064129], + [104.980549, 28.063073], + [104.975006, 28.020816], + [104.903557, 27.962158], + [104.918339, 27.938897], + [104.888158, 27.914574], + [104.842579, 27.900294], + [104.796999, 27.901352], + [104.761891, 27.884426], + [104.743413, 27.901881], + [104.676275, 27.880723], + [104.63316, 27.850567], + [104.607906, 27.857974], + [104.573413, 27.840512], + [104.52537, 27.889187], + [104.508124, 27.878078], + [104.44961, 27.927794], + [104.40095, 27.952114], + [104.362762, 28.012891], + [104.30856, 28.036136], + [104.304248, 28.050926], + [104.373233, 28.051454], + [104.40095, 28.091586], + [104.448994, 28.113758], + [104.444682, 28.16231], + [104.406494, 28.173389], + [104.402182, 28.202928], + [104.442834, 28.211366], + [104.462544, 28.241422], + [104.44961, 28.269889], + [104.420045, 28.269889], + [104.392943, 28.291497], + [104.384936, 28.329959], + [104.343052, 28.334173], + [104.314103, 28.306778], + [104.282074, 28.343128], + [104.254357, 28.403683], + [104.267908, 28.499448], + [104.260516, 28.536257], + [104.323342, 28.540989], + [104.355987, 28.555183], + [104.375697, 28.5946], + [104.417581, 28.598279], + [104.425588, 28.626649], + [104.372617, 28.649235], + [104.314719, 28.615617], + [104.277147, 28.631902], + [104.252509, 28.660788], + [104.230951, 28.635579], + [104.170589, 28.642932], + [104.117618, 28.634003], + [104.09606, 28.603533], + [104.05972, 28.6277], + [103.953779, 28.600906], + [103.910047, 28.631377], + [103.887873, 28.61982], + [103.850917, 28.66709], + [103.833054, 28.605109], + [103.838598, 28.587244], + [103.802873, 28.563068], + [103.781931, 28.525216], + [103.829975, 28.459995], + [103.828743, 28.44], + [103.860156, 28.383677], + [103.85338, 28.356822], + [103.877402, 28.316262], + [103.828743, 28.285173], + [103.770845, 28.233514], + [103.740048, 28.23615], + [103.701859, 28.198709], + [103.692004, 28.232459], + [103.643961, 28.260401], + [103.573128, 28.230877], + [103.533092, 28.168641], + [103.470266, 28.122204], + [103.430846, 28.044587], + [103.459179, 28.021345], + [103.486281, 28.033495], + [103.515846, 27.965329], + [103.55465, 27.978543], + [103.502295, 27.910343], + [103.509686, 27.843687], + [103.487512, 27.794992], + [103.461027, 27.779638], + [103.393274, 27.709194], + [103.369868, 27.708664], + [103.349542, 27.678459], + [103.29226, 27.632872], + [103.2861, 27.561802], + [103.232514, 27.56976], + [103.19063, 27.523596], + [103.144434, 27.450331], + [103.141355, 27.420586], + [103.080992, 27.396679], + [103.055739, 27.40943], + [102.989833, 27.367983], + [102.941174, 27.405711], + [102.899906, 27.317481], + [102.883892, 27.299401], + [102.883276, 27.258444], + [102.904218, 27.227584], + [102.913457, 27.133886], + [102.870957, 27.026782], + [102.894979, 27.001724], + [102.896211, 26.91264], + [102.949181, 26.843244], + [102.966428, 26.837904], + [102.991681, 26.775409], + [102.983674, 26.76686], + [103.008312, 26.710741], + [103.005232, 26.679195], + [103.026174, 26.664221], + [103.035413, 26.556673], + [103.052659, 26.555602], + [103.052659, 26.514374], + [103.030485, 26.485989], + [102.989833, 26.482775], + [102.988602, 26.413117], + [102.998457, 26.371839], + [102.975667, 26.340736], + [102.893131, 26.338591], + [102.878964, 26.364332], + [102.833385, 26.306406], + [102.785342, 26.298895], + [102.739762, 26.268846], + [102.709581, 26.210336], + [102.659074, 26.221611], + [102.60056, 26.250598], + [102.638748, 26.307479], + [102.629509, 26.336982], + [102.570995, 26.362723], + [102.542046, 26.338591], + [102.440416, 26.300505], + [102.392372, 26.296749], + [102.349257, 26.244694], + [102.245163, 26.212483], + [102.242699, 26.190468], + [102.174946, 26.146961], + [102.152156, 26.10935], + [102.107808, 26.068501], + [102.080091, 26.065275], + [102.020961, 26.096451], + [101.954439, 26.084627], + [101.929186, 26.105588], + [101.899621, 26.099139], + [101.857737, 26.049146], + [101.835563, 26.04592], + [101.839875, 26.082477], + [101.796759, 26.114723], + [101.807846, 26.156093], + [101.773353, 26.168448], + [101.737013, 26.219463], + [101.690202, 26.241473], + [101.630455, 26.224832], + [101.586108, 26.279579], + [101.597195, 26.303187], + [101.64031, 26.318745], + [101.660636, 26.346635], + [101.635383, 26.357361], + [101.637847, 26.388995], + [101.565782, 26.454381], + [101.530057, 26.467239], + [101.506652, 26.499915], + [101.458608, 26.49563], + [101.422884, 26.53151], + [101.395783, 26.591998], + [101.402558, 26.604841], + [101.461688, 26.606447], + [101.461072, 26.640687], + [101.481398, 26.673313], + [101.453065, 26.692563], + [101.513427, 26.768463], + [101.466, 26.786629], + [101.445674, 26.77434], + [101.458608, 26.731054], + [101.435819, 26.740675], + [101.389623, 26.723036], + [101.387159, 26.753501], + [101.358826, 26.771669], + [101.399478, 26.841642], + [101.365602, 26.883819], + [101.311399, 26.903034], + [101.267667, 26.903034], + [101.264587, 26.955323], + [101.227015, 26.959057], + [101.228863, 26.981992], + [101.136472, 27.023584], + [101.157414, 27.094999], + [101.145095, 27.103523], + [101.170349, 27.175421], + [101.167885, 27.198311], + [101.167885, 27.198311], + [101.119226, 27.208957], + [101.071798, 27.194585], + [101.042233, 27.22173], + [101.026219, 27.270679], + [101.021907, 27.332899], + [100.95169, 27.426961], + [100.936908, 27.469448], + [100.901183, 27.453517], + [100.91227, 27.521473], + [100.854988, 27.623858], + [100.827886, 27.615904], + [100.848212, 27.672099], + [100.782307, 27.691708], + [100.775532, 27.743098], + [100.757053, 27.770107], + [100.707162, 27.800816], + [100.719481, 27.858503], + [100.681293, 27.923035], + [100.634482, 27.915631], + [100.609228, 27.859033], + [100.54517, 27.809286], + [100.511294, 27.827811], + [100.504518, 27.852154], + [100.442924, 27.86644], + [100.412127, 27.816167], + [100.350534, 27.755809], + [100.327744, 27.72032], + [100.311729, 27.724028], + [100.304954, 27.788639], + [100.28586, 27.80611], + [100.30865, 27.830457], + [100.30865, 27.861149], + [100.210715, 27.87702], + [100.170063, 27.907699], + [100.196549, 27.936254], + [100.120788, 28.018703], + [100.088759, 28.029269], + [100.05673, 28.097922], + [100.021006, 28.147008], + [100.033325, 28.184467], + [100.062274, 28.193962], + [100.091223, 28.181302], + [100.102926, 28.201873], + [100.153433, 28.208202], + [100.188541, 28.252493], + [100.147274, 28.288862], + [100.176223, 28.325218], + [100.136803, 28.349975], + [100.057346, 28.368934], + [100.073977, 28.426317], + [99.990209, 28.47683], + [99.985281, 28.529422], + [99.91876, 28.599329], + [99.875644, 28.611939], + [99.873181, 28.631902], + [99.834376, 28.628225], + [99.834992, 28.660788], + [99.79434, 28.699116], + [99.755536, 28.701216], + [99.722275, 28.757369], + [99.717964, 28.846521], + [99.676696, 28.810345], + [99.625573, 28.81454], + [99.609559, 28.784122], + [99.614486, 28.740054], + [99.553508, 28.710664], + [99.53195, 28.677591], + [99.540573, 28.623497], + [99.504233, 28.619294], + [99.466045, 28.579886], + [99.463581, 28.549401], + [99.403219, 28.546246], + [99.396444, 28.491032], + [99.426625, 28.454207], + [99.404451, 28.44421], + [99.437095, 28.398419], + [99.392748, 28.318369], + [99.412458, 28.295186], + [99.374886, 28.18183], + [99.306516, 28.227714], + [99.28927, 28.286227], + [99.237531, 28.317842], + [99.229524, 28.350502], + [99.200575, 28.365774], + [99.16485, 28.425264], + [99.187024, 28.44], + [99.191952, 28.494714], + [99.170394, 28.566221], + [99.183944, 28.58882], + [99.147604, 28.640831], + [99.126662, 28.698066], + [99.134053, 28.734806], + [99.114343, 28.765763], + [99.103872, 28.841803], + [99.123582, 28.890021], + [99.132206, 28.94869], + [99.113727, 29.07273], + [99.118039, 29.100971], + [99.105104, 29.162656], + [99.113727, 29.221171], + [99.037351, 29.20759], + [99.024416, 29.188783], + [98.9813, 29.204978], + [98.960974, 29.165792], + [98.967134, 29.128159], + [98.991771, 29.105677], + [99.013329, 29.036632], + [98.925866, 28.978536], + [98.917859, 28.886877], + [98.973909, 28.864867], + [98.972677, 28.832367], + [98.922786, 28.823978], + [98.912931, 28.800906], + [98.852569, 28.798283], + [98.827932, 28.821356], + [98.821772, 28.920931], + [98.786048, 28.998952], + [98.757714, 29.004186], + [98.70228, 28.9644], + [98.655469, 28.976966], + [98.624056, 28.95864], + [98.6567, 28.910454], + [98.643766, 28.895261], + [98.668403, 28.843376], + [98.652389, 28.817162], + [98.683802, 28.740054], + [98.666555, 28.712239], + [98.594491, 28.667615], + [98.637606, 28.552029], + [98.619128, 28.50944], + [98.625903, 28.489455], + [98.673947, 28.478934], + [98.693041, 28.43158], + [98.740468, 28.348395], + [98.746628, 28.321003], + [98.710287, 28.288862], + [98.712135, 28.229296], + [98.649925, 28.200291], + [98.625903, 28.165475], + [98.559382, 28.182885], + [98.494092, 28.141203], + [98.464527, 28.151229], + [98.428803, 28.104785], + [98.389383, 28.114814], + [98.389999, 28.16442], + [98.370289, 28.18394], + [98.37768, 28.246167], + [98.353042, 28.293078], + [98.317934, 28.324691], + [98.301303, 28.384204], + [98.208913, 28.358401], + [98.207681, 28.330486], + [98.231702, 28.314681], + [98.266811, 28.242477], + [98.21692, 28.212949], + [98.169492, 28.206093], + [98.17442, 28.163365], + [98.139311, 28.142259], + [98.160253, 28.101089], + [98.133152, 27.990698], + [98.143007, 27.948942], + [98.187355, 27.939426], + [98.205217, 27.889716], + [98.169492, 27.851096], + [98.215688, 27.810874], + [98.234166, 27.690648], + [98.283441, 27.654608], + [98.310542, 27.583552], + [98.317318, 27.51935], + [98.337644, 27.508734], + [98.388767, 27.515104], + [98.429419, 27.549068], + [98.430035, 27.653547], + [98.444201, 27.665209], + [98.474998, 27.634462], + [98.53536, 27.620676], + [98.554454, 27.646126], + [98.587099, 27.587265], + [98.583404, 27.571351], + [98.650541, 27.567637], + [98.662244, 27.586734], + [98.706591, 27.553313], + [98.685034, 27.484315], + [98.704744, 27.462014], + [98.686881, 27.425367], + [98.702896, 27.412618], + [98.706591, 27.362136], + [98.741084, 27.330241], + [98.734925, 27.287168], + [98.717062, 27.271211], + [98.723222, 27.221198], + [98.696121, 27.211086], + [98.713983, 27.139744], + [98.712751, 27.075817], + [98.765722, 27.05077], + [98.762642, 27.018252], + [98.732461, 27.002257], + [98.757098, 26.877947], + [98.730613, 26.851253], + [98.762026, 26.798916], + [98.746012, 26.696841], + [98.770033, 26.690424], + [98.762642, 26.660478], + [98.781736, 26.620893], + [98.773113, 26.578083], + [98.753403, 26.559349], + [98.757098, 26.491881], + [98.741084, 26.432947], + [98.750323, 26.424372], + [98.733693, 26.350926], + [98.681338, 26.308016], + [98.672715, 26.239863], + [98.713367, 26.231274], + [98.735541, 26.185097], + [98.712751, 26.156093], + [98.720142, 26.127082], + [98.661012, 26.087852], + [98.656084, 26.139977], + [98.632679, 26.145887], + [98.575396, 26.118485], + [98.602498, 26.054523], + [98.614201, 25.968468], + [98.637606, 25.971696], + [98.686881, 25.925955], + [98.705976, 25.855426], + [98.677642, 25.816105], + [98.640686, 25.798864], + [98.553839, 25.845731], + [98.529201, 25.840884], + [98.476846, 25.77731], + [98.461448, 25.735267], + [98.457752, 25.682963], + [98.409709, 25.664084], + [98.402317, 25.593939], + [98.326557, 25.566409], + [98.314854, 25.543193], + [98.247717, 25.607971], + [98.170724, 25.620383], + [98.189818, 25.569108], + [98.163949, 25.524292], + [98.131304, 25.51025], + [98.15779, 25.457307], + [98.137464, 25.381633], + [98.101123, 25.388662], + [98.099891, 25.354055], + [98.06971, 25.311864], + [98.006884, 25.298338], + [98.0075, 25.279399], + [97.940363, 25.214985], + [97.904023, 25.216609], + [97.875689, 25.25721], + [97.839349, 25.27074], + [97.796233, 25.155954], + [97.743262, 25.078466], + [97.719857, 25.080634], + [97.727864, 25.04377], + [97.716777, 24.978147], + [97.729712, 24.908689], + [97.785762, 24.876117], + [97.797465, 24.845709], + [97.765436, 24.823984], + [97.680437, 24.827243], + [97.652103, 24.790846], + [97.569567, 24.765852], + [97.547394, 24.739221], + [97.569567, 24.708236], + [97.570799, 24.602719], + [97.554785, 24.490577], + [97.530147, 24.443187], + [97.588662, 24.435559], + [97.669966, 24.452993], + [97.679821, 24.401228], + [97.716161, 24.358711], + [97.662574, 24.339083], + [97.665038, 24.296544], + [97.721089, 24.295999], + [97.767284, 24.258357], + [97.729712, 24.227252], + [97.72848, 24.183585], + [97.754349, 24.163929], + [97.748806, 24.160653], + [97.743262, 24.159561], + [97.730944, 24.113685], + [97.700763, 24.093473], + [97.697067, 24.092927], + [97.637321, 24.04812], + [97.628698, 24.004938], + [97.572647, 23.983068], + [97.529531, 23.943146], + [97.5283, 23.926736], + [97.618227, 23.888438], + [97.640401, 23.866001], + [97.647176, 23.840823], + [97.684132, 23.876946], + [97.718009, 23.867643], + [97.72848, 23.895551], + [97.763588, 23.907041], + [97.795617, 23.951897], + [97.8104, 23.943146], + [97.863371, 23.978693], + [97.896015, 23.974319], + [97.902175, 24.014231], + [97.984095, 24.031177], + [97.995182, 24.04648], + [98.091268, 24.085824], + [98.096196, 24.08637], + [98.123297, 24.092927], + [98.125761, 24.092927], + [98.132536, 24.09238], + [98.19721, 24.09839], + [98.219999, 24.113685], + [98.343187, 24.098936], + [98.37768, 24.114232], + [98.48239, 24.122425], + [98.487933, 24.123517], + [98.547063, 24.128433], + [98.593875, 24.08036], + [98.646229, 24.106038], + [98.681954, 24.100029], + [98.71891, 24.127887], + [98.818692, 24.133348], + [98.841482, 24.126794], + [98.876591, 24.15137], + [98.895069, 24.098936], + [98.807606, 24.025164], + [98.773729, 24.022431], + [98.727533, 23.970491], + [98.701048, 23.981427], + [98.673331, 23.960647], + [98.701048, 23.946427], + [98.68565, 23.90157], + [98.701664, 23.834254], + [98.669019, 23.800857], + [98.696121, 23.784429], + [98.784816, 23.781691], + [98.824236, 23.727462], + [98.811917, 23.703354], + [98.835939, 23.683625], + [98.847026, 23.632097], + [98.882134, 23.620035], + [98.882134, 23.595358], + [98.844562, 23.578904], + [98.80391, 23.540504], + [98.826084, 23.470257], + [98.874743, 23.483431], + [98.912315, 23.426333], + [98.920938, 23.360971], + [98.872895, 23.329651], + [98.906772, 23.331849], + [98.936953, 23.309866], + [98.928946, 23.26589], + [98.889525, 23.209249], + [98.906772, 23.185595], + [99.002242, 23.160287], + [99.057677, 23.164689], + [99.048438, 23.11461], + [99.106336, 23.086536], + [99.187024, 23.100299], + [99.255393, 23.077727], + [99.281879, 23.101399], + [99.3484, 23.12892], + [99.380429, 23.099748], + [99.440791, 23.079379], + [99.477747, 23.083233], + [99.528255, 23.065614], + [99.517168, 23.006685], + [99.533798, 22.961507], + [99.563363, 22.925684], + [99.531334, 22.897019], + [99.446951, 22.934503], + [99.43648, 22.913557], + [99.462965, 22.844635], + [99.401371, 22.826434], + [99.385357, 22.761882], + [99.326842, 22.751396], + [99.31514, 22.737598], + [99.339777, 22.708894], + [99.385973, 22.57136], + [99.359487, 22.535435], + [99.382277, 22.493418], + [99.297277, 22.41156], + [99.251698, 22.393301], + [99.278183, 22.34626], + [99.233836, 22.296434], + [99.235683, 22.250468], + [99.207966, 22.232188], + [99.175321, 22.185647], + [99.188256, 22.162924], + [99.156227, 22.159599], + [99.219669, 22.110816], + [99.294814, 22.109152], + [99.35456, 22.095845], + [99.400139, 22.100281], + [99.486987, 22.128557], + [99.516552, 22.099726], + [99.562747, 22.113034], + [99.578762, 22.098617], + [99.581841, 22.103053], + [99.648979, 22.100835], + [99.696406, 22.067562], + [99.762927, 22.068117], + [99.870101, 22.029288], + [99.871333, 22.067007], + [99.972347, 22.053141], + [99.965571, 22.014309], + [100.000064, 21.973245], + [99.982202, 21.919401], + [99.960028, 21.907186], + [99.944014, 21.821097], + [99.991441, 21.703821], + [100.049339, 21.669899], + [100.094303, 21.702709], + [100.131875, 21.699929], + [100.169447, 21.663225], + [100.107853, 21.585337], + [100.123252, 21.565302], + [100.131259, 21.504066], + [100.168831, 21.482906], + [100.184846, 21.516315], + [100.206404, 21.509634], + [100.235353, 21.466756], + [100.298795, 21.477894], + [100.349302, 21.528564], + [100.437381, 21.533017], + [100.48296, 21.458958], + [100.526692, 21.471211], + [100.579047, 21.451717], + [100.691764, 21.510748], + [100.730568, 21.518542], + [100.753358, 21.555283], + [100.789082, 21.570867], + [100.804481, 21.609821], + [100.847597, 21.634856], + [100.870386, 21.67268], + [100.896872, 21.68269], + [100.899335, 21.684915], + [100.936292, 21.694368], + [100.937524, 21.693812], + [101.015132, 21.707157], + [101.089661, 21.773865], + [101.123537, 21.771642], + [101.111835, 21.746074], + [101.116762, 21.691032], + [101.153102, 21.669343], + [101.169117, 21.590345], + [101.146943, 21.560293], + [101.209153, 21.55751], + [101.210385, 21.509077], + [101.225167, 21.499055], + [101.193138, 21.473996], + [101.194986, 21.424979], + [101.142631, 21.409379], + [101.183899, 21.334699], + [101.244877, 21.302364], + [101.246725, 21.275598], + [101.222088, 21.234324], + [101.290457, 21.17853], + [101.387775, 21.225956], + [101.439514, 21.227072], + [101.532521, 21.252174], + [101.601506, 21.233208], + [101.588572, 21.191365], + [101.605818, 21.172392], + [101.672339, 21.194713], + [101.703136, 21.14616], + [101.76473, 21.147835], + [101.794911, 21.208104], + [101.834331, 21.204756], + [101.833715, 21.252731], + [101.791832, 21.285636], + [101.745636, 21.297345], + [101.730238, 21.336929], + [101.749948, 21.409379], + [101.741324, 21.482906], + [101.772737, 21.512975], + [101.755491, 21.538027], + [101.754875, 21.58478], + [101.804766, 21.577546], + [101.828788, 21.617054], + [101.807846, 21.644313], + [101.780129, 21.640975], + [101.76781, 21.716054], + [101.747484, 21.729953], + [101.771506, 21.833319], + [101.740093, 21.845541], + [101.735165, 21.875534], + [101.700057, 21.897191], + [101.701288, 21.938832], + [101.666796, 21.934391], + [101.606434, 21.967695], + [101.626144, 22.005986], + [101.573789, 22.115251], + [101.602738, 22.131883], + [101.596579, 22.161262], + [101.547304, 22.238282], + [101.56455, 22.269299], + [101.625528, 22.28259], + [101.671723, 22.372826], + [101.648318, 22.400494], + [101.672339, 22.47517], + [101.715455, 22.477935], + [101.774585, 22.506135], + [101.824476, 22.45692], + [101.823244, 22.42705], + [101.862665, 22.389427], + [101.901469, 22.384447], + [101.907628, 22.437007], + [101.978461, 22.427603], + [102.046214, 22.458026], + [102.131214, 22.430922], + [102.145381, 22.397727], + [102.179257, 22.430369], + [102.270416, 22.419858], + [102.25625, 22.457473], + [102.322771, 22.554227], + [102.356648, 22.563623], + [102.404691, 22.629925], + [102.384365, 22.679631], + [102.43672, 22.699508], + [102.45951, 22.762986], + [102.510633, 22.774574], + [102.551285, 22.743669], + [102.569763, 22.701164], + [102.607335, 22.730975], + [102.657226, 22.687913], + [102.688639, 22.70006], + [102.80074, 22.620534], + [102.82353, 22.623296], + [102.880196, 22.586832], + [102.892515, 22.533223], + [102.930703, 22.482359], + [102.986754, 22.477935], + [103.030485, 22.441432], + [103.081608, 22.454154], + [103.071753, 22.488441], + [103.183238, 22.558649], + [103.161065, 22.590147], + [103.195557, 22.648153], + [103.220195, 22.643734], + [103.283021, 22.678526], + [103.288564, 22.732078], + [103.321209, 22.777885], + [103.323057, 22.807678], + [103.375411, 22.794989], + [103.441317, 22.753052], + [103.436389, 22.6973], + [103.457947, 22.658646], + [103.50907, 22.601198], + [103.529396, 22.59291], + [103.580519, 22.66693], + [103.567585, 22.701164], + [103.642113, 22.794989], + [103.740048, 22.709446], + [103.743127, 22.697852], + [103.766533, 22.688465], + [103.825047, 22.615562], + [103.863851, 22.584069], + [103.875554, 22.565833], + [103.894032, 22.564728], + [103.964865, 22.502265], + [104.009213, 22.517745], + [104.009213, 22.575228], + [104.022148, 22.593463], + [104.04309, 22.67687], + [104.045553, 22.728215], + [104.089901, 22.768504], + [104.117618, 22.808781], + [104.224176, 22.826434], + [104.261748, 22.841877], + [104.274067, 22.828088], + [104.256821, 22.77347], + [104.272835, 22.73815], + [104.323342, 22.728767], + [104.375697, 22.690122], + [104.422508, 22.734838], + [104.498885, 22.774574], + [104.527834, 22.814298], + [104.596203, 22.846289], + [104.674428, 22.817056], + [104.737869, 22.825882], + [104.732942, 22.852356], + [104.760659, 22.862282], + [104.772362, 22.893711], + [104.846275, 22.926235], + [104.860441, 22.970874], + [104.821021, 23.032022], + [104.804391, 23.110207], + [104.874608, 23.123417], + [104.882615, 23.163589], + [104.912796, 23.175693], + [104.949136, 23.152033], + [104.958991, 23.188896], + [105.093266, 23.260942], + [105.122215, 23.247745], + [105.181962, 23.279084], + [105.238012, 23.26424], + [105.260186, 23.31811], + [105.325475, 23.390086], + [105.353809, 23.362069], + [105.372903, 23.317561], + [105.416018, 23.283482], + [105.445584, 23.292827], + [105.50225, 23.202648], + [105.542902, 23.184495], + [105.526272, 23.234548], + [105.560148, 23.257093], + [105.593409, 23.312614], + [105.649459, 23.346136], + [105.699966, 23.327453], + [105.694423, 23.363168], + [105.637757, 23.404366], + [105.699966, 23.40162], + [105.758481, 23.459826], + [105.805908, 23.467512], + [105.815763, 23.507031], + [105.852103, 23.526786], + [105.89214, 23.52514], + [105.913081, 23.499348], + [105.935871, 23.508678], + [105.986378, 23.489469], + [105.999929, 23.447748], + [106.039965, 23.484529], + [106.071994, 23.495506], + [106.08616, 23.524043], + [106.141595, 23.569579], + [106.120653, 23.605229], + [106.149602, 23.665538], + [106.157609, 23.724175], + [106.136667, 23.795381], + [106.192102, 23.824947], + [106.173008, 23.861622], + [106.192718, 23.879135], + [106.157609, 23.891174], + [106.128044, 23.956819], + [106.091088, 23.998924], + [106.096631, 24.018058], + [106.053516, 24.051399], + [106.04982, 24.089649], + [106.011632, 24.099482], + [105.998081, 24.120786], + [105.963589, 24.110954], + [105.919241, 24.122425], + [105.901995, 24.099482], + [105.908154, 24.069432], + [105.89214, 24.040468], + [105.859495, 24.056864], + [105.841633, 24.03063], + [105.796669, 24.023524], + [105.802212, 24.051945], + [105.765256, 24.073804], + [105.739387, 24.059596], + [105.704278, 24.0667], + [105.649459, 24.032816], + [105.628518, 24.126794], + [105.594641, 24.137718], + [105.533663, 24.130071], + [105.493011, 24.016965], + [105.406163, 24.043748], + [105.395692, 24.065607], + [105.334099, 24.094566], + [105.320548, 24.116416], + [105.273121, 24.092927], + [105.292831, 24.074896], + [105.260186, 24.061236], + [105.20044, 24.105491], + [105.182577, 24.167205], + [105.229389, 24.165567], + [105.24294, 24.208695], + [105.215222, 24.214699], + [105.164715, 24.288362], + [105.196744, 24.326541], + [105.188121, 24.347261], + [105.138846, 24.376701], + [105.111744, 24.37234], + [105.106817, 24.414853], + [105.042759, 24.442097], + [104.979933, 24.412673], + [104.930042, 24.411038], + [104.914028, 24.426296], + [104.83642, 24.446456], + [104.784681, 24.443732], + [104.765587, 24.45953], + [104.74834, 24.435559], + [104.715695, 24.441552], + [104.703377, 24.419757], + [104.721239, 24.340173], + [104.70892, 24.321087], + [104.641783, 24.367979], + [104.610986, 24.377246], + [104.63008, 24.397958], + [104.616529, 24.421937], + [104.575877, 24.424661], + [104.550008, 24.518894], + [104.520443, 24.535228], + [104.489646, 24.653313], + [104.529682, 24.731611], + [104.542616, 24.75607], + [104.539537, 24.813663], + [104.586964, 24.872859], + [104.635623, 24.903803], + [104.663957, 24.964584], + [104.713232, 24.996048], + [104.684898, 25.054072], + [104.619609, 25.060577], + [104.685514, 25.078466], + [104.695369, 25.122364], + [104.732326, 25.167871], + [104.724319, 25.195491], + [104.753884, 25.214443], + [104.801927, 25.163537], + [104.822869, 25.170037], + [104.806854, 25.224189], + [104.826565, 25.235558], + [104.816094, 25.262622], + [104.736021, 25.268034], + [104.689826, 25.296173], + [104.639935, 25.295632], + [104.646094, 25.356759], + [104.615913, 25.364871], + [104.566638, 25.402719], + [104.543232, 25.400556], + [104.556783, 25.524832], + [104.524138, 25.526992], + [104.483486, 25.494585], + [104.44961, 25.495126], + [104.434827, 25.472436], + [104.418813, 25.499447], + [104.436059, 25.520512], + [104.428668, 25.576126], + [104.389248, 25.595558], + [104.332581, 25.598796], + [104.310407, 25.647901], + [104.328886, 25.760602], + [104.370769, 25.730415], + [104.397871, 25.76168], + [104.42374, 25.841961], + [104.441602, 25.868889], + [104.414501, 25.909807], + [104.438523, 25.92757], + [104.470552, 26.009352], + [104.460081, 26.085702], + [104.499501, 26.070651], + [104.52845, 26.114186], + [104.518595, 26.165762], + [104.548776, 26.226979], + [104.542616, 26.253282], + [104.592508, 26.317672], + [104.659645, 26.335373], + [104.684283, 26.3772], + [104.664572, 26.397572], + [104.665804, 26.434019], + [104.631928, 26.451702], + [104.638703, 26.477954], + [104.598667, 26.520801], + [104.57095, 26.524549], + [104.579573, 26.568449], + [104.556783, 26.590393], + [104.488414, 26.579689], + [104.459465, 26.602701], + [104.468088, 26.644431], + [104.424356, 26.709137], + [104.398487, 26.686147], + [104.353523, 26.620893], + [104.313487, 26.612867], + [104.274683, 26.633733], + [104.268524, 26.617683], + [104.222328, 26.620358], + [104.160734, 26.646571], + [104.121314, 26.638012], + [104.068343, 26.573266], + [104.067727, 26.51491], + [104.008597, 26.511697], + [103.953163, 26.521336], + [103.865699, 26.512232], + [103.819504, 26.529903], + [103.815808, 26.55239], + [103.763453, 26.585041], + [103.748671, 26.623568], + [103.759142, 26.689355], + [103.773308, 26.716621], + [103.725265, 26.742812], + [103.705555, 26.794642], + [103.722185, 26.851253], + [103.779468, 26.87421], + [103.763453, 26.905702], + [103.775156, 26.951056], + [103.753598, 26.963858], + [103.73204, 27.018785], + [103.704939, 27.049171], + [103.675374, 27.051836], + [103.623019, 27.007056], + [103.623635, 27.035312], + [103.601461, 27.061962], + [103.614396, 27.079548], + [103.659975, 27.065692], + [103.652584, 27.092868], + [103.620555, 27.096598], + [103.63349, 27.12057], + [103.696316, 27.126429], + [103.748671, 27.210021], + [103.801641, 27.250464], + [103.80041, 27.26536], + [103.865699, 27.28185], + [103.874322, 27.331304], + [103.903271, 27.347785], + [103.905119, 27.38552], + [103.932221, 27.443958], + [103.956242, 27.425367], + [104.015372, 27.429086], + [104.01722, 27.383926], + [104.084358, 27.330773], + [104.113923, 27.338216], + [104.173053, 27.263232], + [104.210625, 27.297273], + [104.248813, 27.291955], + [104.247582, 27.336621], + [104.295625, 27.37436], + [104.30856, 27.407305], + [104.363378, 27.467855], + [104.467472, 27.414211], + [104.497037, 27.414743], + [104.539537, 27.327583], + [104.570334, 27.331836], + [104.611602, 27.306846], + [104.7545, 27.345658], + [104.77113, 27.317481], + [104.824717, 27.3531], + [104.856746, 27.332368], + [104.851818, 27.299401], + [104.871528, 27.290891], + [104.913412, 27.327051], + [105.01073, 27.379143], + [105.068013, 27.418461], + [105.120984, 27.418461], + [105.184425, 27.392959], + [105.182577, 27.367451], + [105.233084, 27.436522], + [105.234316, 27.489093], + [105.260186, 27.514573], + [105.232469, 27.546945], + [105.25649, 27.582491], + [105.304533, 27.611661], + [105.29591, 27.631811], + [105.308229, 27.704955] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 540000, + "name": "西藏自治区", + "center": [91.132212, 29.660361], + "centroid": [88.388277, 31.56375], + "childrenNum": 7, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 25, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [89.711414, 36.093272], + [89.614711, 36.109712], + [89.594385, 36.126632], + [89.490291, 36.151281], + [89.375727, 36.228078], + [89.335075, 36.23725], + [89.292575, 36.231457], + [89.232213, 36.295636], + [89.198952, 36.260417], + [89.126887, 36.254626], + [89.10225, 36.281164], + [89.054822, 36.291777], + [89.013554, 36.315409], + [88.964279, 36.318785], + [88.926091, 36.36458], + [88.870657, 36.348193], + [88.838628, 36.353496], + [88.802903, 36.33807], + [88.783809, 36.291777], + [88.766563, 36.292259], + [88.690186, 36.367954], + [88.623665, 36.389636], + [88.618121, 36.428168], + [88.573158, 36.461386], + [88.498629, 36.446463], + [88.470912, 36.48208], + [88.41055, 36.473418], + [88.356963, 36.477268], + [88.366202, 36.458016], + [88.282434, 36.470049], + [88.241782, 36.468605], + [88.222688, 36.447426], + [88.182652, 36.452721], + [88.134609, 36.427205], + [88.092109, 36.43539], + [88.006494, 36.430575], + [87.983088, 36.437797], + [87.95845, 36.408423], + [87.919646, 36.39349], + [87.838342, 36.383855], + [87.826023, 36.391563], + [87.767509, 36.3747], + [87.731785, 36.384818], + [87.6203, 36.360243], + [87.570409, 36.342409], + [87.470626, 36.354459], + [87.460155, 36.409868], + [87.426895, 36.42576], + [87.386859, 36.412757], + [87.363453, 36.420463], + [87.348055, 36.393008], + [87.292004, 36.358797], + [87.193454, 36.349158], + [87.161425, 36.325535], + [87.149106, 36.297565], + [87.08628, 36.310587], + [87.051788, 36.2966], + [86.996353, 36.308658], + [86.943998, 36.284058], + [86.931064, 36.265242], + [86.887332, 36.262829], + [86.86331, 36.299977], + [86.836209, 36.291294], + [86.746282, 36.291777], + [86.69947, 36.24449], + [86.599072, 36.222285], + [86.531935, 36.227113], + [86.515305, 36.205385], + [86.454943, 36.221319], + [86.392733, 36.206834], + [86.35824, 36.168676], + [86.2794, 36.170608], + [86.248603, 36.141616], + [86.187625, 36.130983], + [86.182081, 36.064734], + [86.199944, 36.047801], + [86.173458, 36.008113], + [86.150668, 36.00424], + [86.129111, 35.941761], + [86.093386, 35.906868], + [86.090306, 35.876809], + [86.05335, 35.842857], + [86.035488, 35.846738], + [85.949256, 35.778794], + [85.903677, 35.78462], + [85.835308, 35.771996], + [85.811286, 35.778794], + [85.691178, 35.751114], + [85.65299, 35.731199], + [85.612953, 35.651486], + [85.566142, 35.6403], + [85.518715, 35.680658], + [85.373969, 35.700101], + [85.341324, 35.753543], + [85.271107, 35.788989], + [85.146071, 35.742371], + [85.053065, 35.752086], + [84.99455, 35.737028], + [84.973608, 35.709334], + [84.920022, 35.696213], + [84.798066, 35.647595], + [84.729081, 35.613546], + [84.704443, 35.616951], + [84.628067, 35.595055], + [84.570168, 35.588242], + [84.513502, 35.564391], + [84.448828, 35.550272], + [84.475929, 35.516181], + [84.45314, 35.473303], + [84.424191, 35.466479], + [84.333032, 35.413821], + [84.274517, 35.404065], + [84.200605, 35.381135], + [84.160569, 35.359663], + [84.140859, 35.379184], + [84.095895, 35.362592], + [84.077417, 35.400163], + [84.005968, 35.422599], + [83.906186, 35.40309], + [83.885244, 35.367472], + [83.79778, 35.354783], + [83.785462, 35.36308], + [83.677672, 35.361128], + [83.622238, 35.335256], + [83.599448, 35.351366], + [83.54155, 35.341603], + [83.540318, 35.364056], + [83.502745, 35.360639], + [83.449159, 35.382111], + [83.405427, 35.380648], + [83.333978, 35.397236], + [83.280391, 35.401138], + [83.251442, 35.417722], + [83.178145, 35.38943], + [83.127022, 35.398699], + [83.088834, 35.425526], + [83.067892, 35.46258], + [82.998907, 35.484512], + [82.971806, 35.548324], + [82.981661, 35.599922], + [82.956407, 35.636409], + [82.967494, 35.667532], + [82.894813, 35.673852], + [82.873871, 35.688922], + [82.795031, 35.688436], + [82.780249, 35.666073], + [82.731589, 35.637868], + [82.652133, 35.67288], + [82.628727, 35.692324], + [82.546192, 35.708362], + [82.501844, 35.701073], + [82.468583, 35.717595], + [82.424852, 35.712736], + [82.392823, 35.656349], + [82.336156, 35.651486], + [82.350323, 35.611113], + [82.328149, 35.559523], + [82.2992, 35.544916], + [82.263475, 35.547837], + [82.234526, 35.520565], + [82.189563, 35.513258], + [82.164925, 35.495719], + [82.086701, 35.467454], + [82.071302, 35.450393], + [82.034346, 35.451855], + [82.029419, 35.426013], + [82.05344, 35.35039], + [82.030034, 35.321585], + [81.99123, 35.30547], + [81.955506, 35.307423], + [81.927789, 35.271275], + [81.853876, 35.25857], + [81.804601, 35.270786], + [81.736847, 35.26248], + [81.68634, 35.235599], + [81.513261, 35.23511], + [81.504638, 35.279092], + [81.447972, 35.318167], + [81.441196, 35.333303], + [81.385762, 35.335256], + [81.363588, 35.354783], + [81.314313, 35.337209], + [81.285364, 35.345508], + [81.26627, 35.322562], + [81.219458, 35.319144], + [81.191741, 35.36552], + [81.142466, 35.365032], + [81.103662, 35.386015], + [81.09935, 35.40748], + [81.054387, 35.402602], + [81.031597, 35.380648], + [81.030981, 35.337209], + [81.002648, 35.334768], + [81.026053, 35.31133], + [80.963844, 35.310842], + [80.924423, 35.330862], + [80.894242, 35.324027], + [80.844351, 35.345508], + [80.759968, 35.334768], + [80.689135, 35.339162], + [80.690982, 35.364544], + [80.65649, 35.393821], + [80.599823, 35.409431], + [80.56841, 35.391381], + [80.532686, 35.404553], + [80.514824, 35.391869], + [80.444607, 35.417235], + [80.432904, 35.449418], + [80.375006, 35.387966], + [80.321419, 35.38699], + [80.286926, 35.35283], + [80.267832, 35.295701], + [80.362687, 35.20871], + [80.257977, 35.203331], + [80.223484, 35.177409], + [80.23026, 35.147565], + [80.118159, 35.066293], + [80.078123, 35.076578], + [80.031311, 35.034447], + [80.04363, 35.022196], + [80.02392, 34.971209], + [80.041782, 34.943252], + [80.034391, 34.902033], + [80.003594, 34.895162], + [79.996819, 34.856375], + [79.961094, 34.862759], + [79.926602, 34.849499], + [79.947544, 34.821008], + [79.898268, 34.732035], + [79.906892, 34.683821], + [79.866856, 34.671517], + [79.88595, 34.642965], + [79.84345, 34.55725], + [79.861312, 34.528166], + [79.801566, 34.478847], + [79.735661, 34.471447], + [79.699936, 34.477861], + [79.675914, 34.451216], + [79.58106, 34.456151], + [79.545335, 34.476381], + [79.504683, 34.45467], + [79.435082, 34.447761], + [79.363017, 34.428018], + [79.326677, 34.44332], + [79.274322, 34.435916], + [79.241677, 34.415183], + [79.179467, 34.422588], + [79.161605, 34.441345], + [79.072294, 34.412714], + [79.039033, 34.421601], + [79.0107, 34.399877], + [79.048888, 34.348506], + [79.039649, 34.33467], + [79.019939, 34.313417], + [78.981751, 34.31836], + [78.958345, 34.230827], + [78.941099, 34.212022], + [78.9257, 34.155584], + [78.910302, 34.143202], + [78.878273, 34.163012], + [78.828998, 34.125369], + [78.801897, 34.137258], + [78.737223, 34.089692], + [78.661462, 34.086718], + [78.656535, 34.030196], + [78.736607, 33.999937], + [78.744614, 33.980585], + [78.734143, 33.918529], + [78.762476, 33.90959], + [78.756317, 33.8773], + [78.766172, 33.823124], + [78.758165, 33.790802], + [78.779723, 33.73259], + [78.692259, 33.676331], + [78.684868, 33.654415], + [78.713201, 33.623025], + [78.755085, 33.623025], + [78.74215, 33.55323], + [78.816679, 33.480882], + [78.84994, 33.419963], + [78.896751, 33.41247], + [78.949722, 33.376495], + [78.9682, 33.334505], + [79.022403, 33.323504], + [79.041497, 33.268479], + [79.083997, 33.245459], + [79.072294, 33.22844], + [79.10925, 33.200401], + [79.152366, 33.184375], + [79.162221, 33.165841], + [79.139431, 33.117735], + [79.162837, 33.01191], + [79.204721, 32.964724], + [79.255844, 32.942628], + [79.227511, 32.89038], + [79.237982, 32.846145], + [79.225047, 32.784281], + [79.275554, 32.778746], + [79.301423, 32.728919], + [79.27309, 32.678056], + [79.299575, 32.637244], + [79.308199, 32.596918], + [79.272474, 32.561113], + [79.252148, 32.516715], + [79.190554, 32.511669], + [79.180083, 32.492994], + [79.135736, 32.472295], + [79.124649, 32.416235], + [79.103091, 32.369744], + [79.067982, 32.380863], + [79.005772, 32.375304], + [78.970664, 32.331826], + [78.904142, 32.374798], + [78.87273, 32.40512], + [78.81052, 32.436441], + [78.782186, 32.480373], + [78.760629, 32.563635], + [78.781571, 32.608009], + [78.74215, 32.654881], + [78.741534, 32.703743], + [78.6861, 32.680071], + [78.675013, 32.658408], + [78.628202, 32.630188], + [78.588782, 32.637748], + [78.577695, 32.615067], + [78.518564, 32.605993], + [78.500086, 32.580782], + [78.424942, 32.565652], + [78.395377, 32.530339], + [78.426174, 32.502584], + [78.472985, 32.435431], + [78.458818, 32.379853], + [78.483456, 32.357106], + [78.480992, 32.329297], + [78.508709, 32.297939], + [78.475449, 32.236708], + [78.430485, 32.212407], + [78.429869, 32.194683], + [78.469905, 32.127808], + [78.509941, 32.147065], + [78.527188, 32.11463], + [78.609107, 32.052768], + [78.60726, 32.023851], + [78.705194, 31.988835], + [78.762476, 31.947203], + [78.768636, 31.92638], + [78.739687, 31.885228], + [78.665158, 31.851684], + [78.654687, 31.819144], + [78.706426, 31.778453], + [78.763092, 31.668499], + [78.798817, 31.675629], + [78.806824, 31.64099], + [78.845628, 31.609905], + [78.833925, 31.584927], + [78.779723, 31.545154], + [78.740303, 31.532912], + [78.729832, 31.478316], + [78.755701, 31.478316], + [78.792041, 31.435944], + [78.760013, 31.392531], + [78.755085, 31.355742], + [78.795121, 31.301043], + [78.859179, 31.289281], + [78.865338, 31.312804], + [78.884432, 31.277006], + [78.923852, 31.246824], + [78.930628, 31.220726], + [78.997765, 31.158779], + [78.97436, 31.115751], + [79.010084, 31.043994], + [79.059359, 31.028097], + [79.096931, 30.992192], + [79.181931, 31.015788], + [79.205953, 31.0004], + [79.227511, 30.949088], + [79.33222, 30.969103], + [79.316206, 31.01784], + [79.35809, 31.031174], + [79.404901, 31.071678], + [79.424611, 31.061425], + [79.427075, 31.018353], + [79.505915, 31.027584], + [79.550879, 30.957813], + [79.59769, 30.925989], + [79.660516, 30.956787], + [79.668523, 30.980392], + [79.729501, 30.941389], + [79.75845, 30.936769], + [79.835443, 30.851006], + [79.890877, 30.855116], + [79.913051, 30.833022], + [79.900732, 30.7991], + [79.961094, 30.771337], + [79.955551, 30.738422], + [79.970333, 30.685941], + [80.014065, 30.661748], + [80.04363, 30.603559], + [80.143412, 30.55822], + [80.214245, 30.586044], + [80.261673, 30.566465], + [80.322035, 30.564403], + [80.357759, 30.520592], + [80.43044, 30.515952], + [80.446454, 30.495327], + [80.504969, 30.483466], + [80.549316, 30.448905], + [80.585041, 30.463866], + [80.633084, 30.458707], + [80.692214, 30.416913], + [80.719316, 30.414848], + [80.81725, 30.321389], + [80.910873, 30.30279], + [80.933662, 30.266614], + [80.996488, 30.267648], + [81.034677, 30.246971], + [81.038372, 30.205086], + [81.082104, 30.151281], + [81.085799, 30.100554], + [81.110437, 30.085538], + [81.09627, 30.052909], + [81.131995, 30.016124], + [81.225618, 30.005759], + [81.256415, 30.011978], + [81.247792, 30.032705], + [81.2829, 30.061197], + [81.293371, 30.094859], + [81.269349, 30.153351], + [81.335871, 30.149729], + [81.393769, 30.199396], + [81.397465, 30.240767], + [81.419023, 30.270232], + [81.406088, 30.291938], + [81.427646, 30.305373], + [81.399929, 30.319323], + [81.406088, 30.369421], + [81.432573, 30.379231], + [81.406704, 30.40401], + [81.418407, 30.420525], + [81.454131, 30.412268], + [81.494783, 30.381296], + [81.555761, 30.369421], + [81.566232, 30.428782], + [81.613044, 30.412784], + [81.63029, 30.446842], + [81.723913, 30.407623], + [81.759021, 30.385426], + [81.872354, 30.373035], + [81.939491, 30.344633], + [81.954274, 30.355995], + [81.99123, 30.322939], + [82.022027, 30.339468], + [82.060215, 30.332237], + [82.104563, 30.346182], + [82.132896, 30.30434], + [82.11873, 30.279019], + [82.114418, 30.226806], + [82.142135, 30.200948], + [82.188947, 30.18543], + [82.207425, 30.143519], + [82.183403, 30.12178], + [82.17786, 30.06793], + [82.246845, 30.071555], + [82.311519, 30.035813], + [82.333693, 30.045138], + [82.368185, 30.014051], + [82.412533, 30.011978], + [82.431011, 29.989692], + [82.474743, 29.973622], + [82.498148, 29.947698], + [82.560974, 29.955476], + [82.609017, 29.886489], + [82.64351, 29.868846], + [82.6238, 29.834588], + [82.703872, 29.847566], + [82.737749, 29.80655], + [82.691553, 29.766037], + [82.757459, 29.761881], + [82.774089, 29.726548], + [82.816589, 29.717192], + [82.830756, 29.687562], + [82.885574, 29.689122], + [82.9484, 29.704718], + [82.966878, 29.658963], + [83.011226, 29.667804], + [83.088834, 29.604863], + [83.12887, 29.623593], + [83.159667, 29.61735], + [83.164595, 29.595496], + [83.217565, 29.60018], + [83.266841, 29.571035], + [83.27608, 29.505951], + [83.325355, 29.502826], + [83.383253, 29.42206], + [83.415898, 29.420496], + [83.423289, 29.361053], + [83.450391, 29.332883], + [83.463941, 29.285916], + [83.492274, 29.280174], + [83.548941, 29.201322], + [83.57789, 29.203934], + [83.596368, 29.174153], + [83.656114, 29.16736], + [83.667201, 29.200277], + [83.727563, 29.244672], + [83.800244, 29.249372], + [83.82057, 29.294267], + [83.851367, 29.294789], + [83.911729, 29.323491], + [83.949301, 29.312533], + [83.986874, 29.325057], + [84.002272, 29.291658], + [84.052163, 29.296877], + [84.116837, 29.286438], + [84.130388, 29.239972], + [84.203068, 29.239972], + [84.197525, 29.210202], + [84.17104, 29.19453], + [84.176583, 29.133909], + [84.20738, 29.118749], + [84.192597, 29.084236], + [84.194445, 29.045004], + [84.224626, 29.049189], + [84.248648, 29.030353], + [84.228322, 28.949738], + [84.234481, 28.889497], + [84.268358, 28.895261], + [84.330568, 28.859101], + [84.340423, 28.866963], + [84.408176, 28.85386], + [84.404481, 28.828173], + [84.434046, 28.823978], + [84.445133, 28.764189], + [84.483321, 28.735331], + [84.557233, 28.74635], + [84.620059, 28.732182], + [84.650856, 28.714338], + [84.669334, 28.680742], + [84.699515, 28.671816], + [84.698284, 28.633478], + [84.773428, 28.610363], + [84.857196, 28.567798], + [84.896616, 28.587244], + [84.981616, 28.586193], + [84.995782, 28.611414], + [85.05676, 28.674441], + [85.126361, 28.676016], + [85.155926, 28.643983], + [85.195963, 28.624022], + [85.18426, 28.587244], + [85.189803, 28.544669], + [85.160238, 28.49261], + [85.108499, 28.461047], + [85.129441, 28.377885], + [85.113427, 28.344708], + [85.179948, 28.324164], + [85.209513, 28.338914], + [85.272339, 28.282538], + [85.349947, 28.298347], + [85.379512, 28.274105], + [85.415853, 28.321003], + [85.458969, 28.332593], + [85.520563, 28.326798], + [85.602483, 28.295712], + [85.601251, 28.254075], + [85.650526, 28.283592], + [85.682555, 28.375779], + [85.720743, 28.372093], + [85.753388, 28.227714], + [85.791576, 28.195544], + [85.854402, 28.172334], + [85.871648, 28.124843], + [85.898749, 28.101617], + [85.901213, 28.053566], + [85.980053, 27.984357], + [85.949256, 27.937311], + [86.002227, 27.90717], + [86.053966, 27.900823], + [86.125415, 27.923035], + [86.082915, 28.018175], + [86.086611, 28.090002], + [86.128495, 28.086835], + [86.140198, 28.114814], + [86.19132, 28.167058], + [86.223965, 28.092642], + [86.206103, 28.084195], + [86.231972, 27.974315], + [86.27324, 27.976958], + [86.308965, 27.950528], + [86.393349, 27.926736], + [86.414906, 27.904526], + [86.450015, 27.908757], + [86.475884, 27.944713], + [86.514689, 27.954757], + [86.513457, 27.996511], + [86.537478, 28.044587], + [86.55842, 28.047757], + [86.568891, 28.103201], + [86.60092, 28.097922], + [86.611391, 28.069938], + [86.647732, 28.06941], + [86.662514, 28.092114], + [86.700086, 28.101617], + [86.74813, 28.089474], + [86.768456, 28.06941], + [86.756753, 28.032967], + [86.827586, 28.012363], + [86.864542, 28.022401], + [86.885484, 27.995983], + [86.926752, 27.985942], + [86.935375, 27.955286], + [87.035157, 27.946299], + [87.080737, 27.910872], + [87.118309, 27.840512], + [87.173744, 27.818284], + [87.227946, 27.812991], + [87.249504, 27.839454], + [87.280917, 27.845275], + [87.317258, 27.826753], + [87.364069, 27.824106], + [87.421967, 27.856916], + [87.418272, 27.825694], + [87.45954, 27.820931], + [87.58088, 27.859562], + [87.598126, 27.814579], + [87.670191, 27.832045], + [87.668343, 27.809815], + [87.727473, 27.802933], + [87.77798, 27.860091], + [87.782292, 27.890774], + [87.826639, 27.927794], + [87.930733, 27.909285], + [87.982472, 27.884426], + [88.037291, 27.901881], + [88.090877, 27.885484], + [88.111819, 27.864852], + [88.137689, 27.878607], + [88.120442, 27.915103], + [88.156783, 27.957929], + [88.203594, 27.943127], + [88.242398, 27.967444], + [88.254101, 27.939426], + [88.357579, 27.986471], + [88.401311, 27.976958], + [88.43334, 28.002852], + [88.469064, 28.009721], + [88.498013, 28.04089], + [88.554064, 28.027684], + [88.565151, 28.083139], + [88.620585, 28.091586], + [88.645223, 28.111119], + [88.67602, 28.068353], + [88.764099, 28.068353], + [88.812142, 28.018175], + [88.842939, 28.006023], + [88.846635, 27.921448], + [88.864497, 27.921448], + [88.888519, 27.846863], + [88.863265, 27.811932], + [88.870657, 27.743098], + [88.850331, 27.710783], + [88.852178, 27.671039], + [88.816454, 27.641354], + [88.813374, 27.606889], + [88.770874, 27.563924], + [88.797976, 27.521473], + [88.783193, 27.467324], + [88.809063, 27.405711], + [88.838012, 27.37808], + [88.867577, 27.3818], + [88.901453, 27.327583], + [88.920548, 27.325456], + [88.911924, 27.272807], + [88.942105, 27.261636], + [88.984605, 27.208957], + [89.067757, 27.240354], + [89.077612, 27.287168], + [89.152757, 27.319076], + [89.182938, 27.373829], + [89.132431, 27.441302], + [89.095474, 27.471572], + [89.109025, 27.537925], + [89.163228, 27.574534], + [89.128735, 27.611131], + [89.131815, 27.633402], + [89.184786, 27.673689], + [89.238988, 27.796581], + [89.295655, 27.84845], + [89.375727, 27.875962], + [89.44348, 27.968501], + [89.461958, 28.03191], + [89.511233, 28.086307], + [89.541414, 28.088418], + [89.605472, 28.161782], + [89.720037, 28.170224], + [89.779167, 28.197127], + [89.789638, 28.240895], + [89.869094, 28.221386], + [89.901739, 28.18183], + [89.976268, 28.189215], + [90.017536, 28.162837], + [90.03355, 28.136981], + [90.07297, 28.155451], + [90.103151, 28.141731], + [90.124709, 28.190797], + [90.166593, 28.187632], + [90.189999, 28.161782], + [90.231882, 28.144897], + [90.297172, 28.153868], + [90.367389, 28.088946], + [90.384019, 28.06096], + [90.43699, 28.063073], + [90.47949, 28.044587], + [90.513983, 28.062016], + [90.569417, 28.044059], + [90.591591, 28.021345], + [90.701844, 28.076274], + [90.741264, 28.053038], + [90.802242, 28.040362], + [90.806554, 28.015005], + [90.853365, 27.969029], + [90.896481, 27.946299], + [90.96177, 27.9537], + [90.976553, 27.935725], + [90.96485, 27.900294], + [91.025828, 27.857445], + [91.113292, 27.846333], + [91.155175, 27.894476], + [91.147784, 27.927794], + [91.162567, 27.968501], + [91.216153, 27.989113], + [91.251878, 27.970615], + [91.309776, 28.057791], + [91.464993, 28.002852], + [91.490246, 27.971672], + [91.486551, 27.937311], + [91.552456, 27.90717], + [91.611586, 27.891303], + [91.618978, 27.856916], + [91.561079, 27.855329], + [91.544449, 27.820401], + [91.610355, 27.819343], + [91.642383, 27.7664], + [91.622673, 27.692238], + [91.570934, 27.650897], + [91.562311, 27.627569], + [91.582637, 27.598933], + [91.564775, 27.58196], + [91.585101, 27.540578], + [91.626985, 27.509265], + [91.663325, 27.507142], + [91.71876, 27.467324], + [91.753868, 27.462545], + [91.839484, 27.489624], + [91.946657, 27.464138], + [92.010715, 27.474758], + [92.021802, 27.444489], + [92.064918, 27.391365], + [92.125896, 27.273339], + [92.091403, 27.264296], + [92.071077, 27.237694], + [92.061222, 27.190327], + [92.032273, 27.167967], + [92.02673, 27.108318], + [92.043976, 27.052902], + [92.076005, 27.041175], + [92.124664, 26.960124], + [92.109265, 26.854991], + [92.197961, 26.86994], + [92.28604, 26.892359], + [92.404916, 26.9025], + [92.496691, 26.921711], + [92.549046, 26.941453], + [92.64698, 26.952656], + [92.682089, 26.947855], + [92.802813, 26.895028], + [92.909371, 26.914241], + [93.050421, 26.883819], + [93.111399, 26.880082], + [93.232739, 26.906769], + [93.56781, 26.938252], + [93.625092, 26.955323], + [93.747048, 27.015587], + [93.817265, 27.025183], + [93.841903, 27.045973], + [93.849294, 27.168499], + [93.970634, 27.30525], + [94.056866, 27.375423], + [94.147409, 27.458297], + [94.220705, 27.536333], + [94.277372, 27.58143], + [94.353132, 27.578778], + [94.399944, 27.589386], + [94.443675, 27.585143], + [94.478168, 27.602116], + [94.524979, 27.596282], + [94.660486, 27.650367], + [94.722696, 27.683759], + [94.78121, 27.699127], + [94.836645, 27.728796], + [94.88592, 27.743098], + [94.947514, 27.792345], + [95.015267, 27.82887], + [95.067006, 27.840512], + [95.28628, 27.939955], + [95.32878, 28.017646], + [95.352802, 28.04089], + [95.371896, 28.110063], + [95.39715, 28.142259], + [95.437802, 28.161782], + [95.528345, 28.182885], + [95.674322, 28.254075], + [95.740228, 28.275159], + [95.787655, 28.270416], + [95.832003, 28.295186], + [95.874502, 28.29782], + [95.899756, 28.278322], + [95.907763, 28.241422], + [95.936096, 28.240368], + [95.989067, 28.198181], + [96.074683, 28.193434], + [96.098088, 28.212421], + [96.194175, 28.212949], + [96.275479, 28.228241], + [96.298269, 28.140148], + [96.367254, 28.118509], + [96.398667, 28.118509], + [96.395587, 28.143842], + [96.426384, 28.161782], + [96.46334, 28.143314], + [96.499681, 28.067297], + [96.538485, 28.075218], + [96.623485, 28.024514], + [96.635188, 27.994926], + [96.690622, 27.948942], + [96.711564, 27.9574], + [96.784245, 27.931495], + [96.810114, 27.890245], + [96.849534, 27.874375], + [96.908049, 27.884426], + [96.972722, 27.861149], + [97.008447, 27.807698], + [97.049099, 27.81405], + [97.062649, 27.742568], + [97.097758, 27.740979], + [97.103301, 27.780697], + [97.167975, 27.811932], + [97.253591, 27.891832], + [97.303482, 27.913516], + [97.324424, 27.880723], + [97.386634, 27.882839], + [97.372467, 27.907699], + [97.379242, 27.970087], + [97.413119, 28.01342], + [97.378626, 28.031382], + [97.375547, 28.062545], + [97.320728, 28.054095], + [97.305945, 28.071522], + [97.340438, 28.104785], + [97.326887, 28.132759], + [97.352757, 28.149646], + [97.362612, 28.199236], + [97.349677, 28.235623], + [97.398336, 28.238786], + [97.402032, 28.279903], + [97.422358, 28.297293], + [97.461162, 28.26778], + [97.469169, 28.30309], + [97.518445, 28.327852], + [97.488879, 28.347341], + [97.485184, 28.38631], + [97.499966, 28.428948], + [97.521524, 28.444736], + [97.507974, 28.46473], + [97.521524, 28.495766], + [97.569567, 28.541515], + [97.60406, 28.515225], + [97.634857, 28.532051], + [97.68598, 28.519958], + [97.737103, 28.465782], + [97.738335, 28.396313], + [97.769748, 28.3742], + [97.801161, 28.326798], + [97.842429, 28.326798], + [97.871378, 28.361561], + [97.907718, 28.363141], + [98.020435, 28.253548], + [98.008116, 28.214003], + [98.03337, 28.187105], + [98.056775, 28.202401], + [98.090036, 28.195544], + [98.097427, 28.166531], + [98.139311, 28.142259], + [98.17442, 28.163365], + [98.169492, 28.206093], + [98.21692, 28.212949], + [98.266811, 28.242477], + [98.231702, 28.314681], + [98.207681, 28.330486], + [98.208913, 28.358401], + [98.301303, 28.384204], + [98.317934, 28.324691], + [98.353042, 28.293078], + [98.37768, 28.246167], + [98.370289, 28.18394], + [98.389999, 28.16442], + [98.389383, 28.114814], + [98.428803, 28.104785], + [98.464527, 28.151229], + [98.494092, 28.141203], + [98.559382, 28.182885], + [98.625903, 28.165475], + [98.649925, 28.200291], + [98.712135, 28.229296], + [98.710287, 28.288862], + [98.746628, 28.321003], + [98.740468, 28.348395], + [98.693041, 28.43158], + [98.673947, 28.478934], + [98.625903, 28.489455], + [98.619128, 28.50944], + [98.637606, 28.552029], + [98.594491, 28.667615], + [98.666555, 28.712239], + [98.683802, 28.740054], + [98.652389, 28.817162], + [98.668403, 28.843376], + [98.643766, 28.895261], + [98.6567, 28.910454], + [98.624056, 28.95864], + [98.655469, 28.976966], + [98.70228, 28.9644], + [98.757714, 29.004186], + [98.786048, 28.998952], + [98.821772, 28.920931], + [98.827932, 28.821356], + [98.852569, 28.798283], + [98.912931, 28.800906], + [98.922786, 28.823978], + [98.972677, 28.832367], + [98.973909, 28.864867], + [98.917859, 28.886877], + [98.925866, 28.978536], + [99.013329, 29.036632], + [98.991771, 29.105677], + [98.967134, 29.128159], + [98.960974, 29.165792], + [98.9813, 29.204978], + [99.024416, 29.188783], + [99.037351, 29.20759], + [99.113727, 29.221171], + [99.114343, 29.243628], + [99.075539, 29.316186], + [99.058909, 29.417368], + [99.066916, 29.421018], + [99.044742, 29.520013], + [99.052133, 29.563748], + [99.014561, 29.607464], + [98.992387, 29.677163], + [99.018873, 29.792009], + [99.0238, 29.846009], + [99.068148, 29.931621], + [99.055213, 29.958587], + [99.036735, 30.053945], + [99.044742, 30.079842], + [98.989308, 30.151799], + [98.9813, 30.182843], + [98.993003, 30.215429], + [98.970829, 30.260928], + [98.986844, 30.280569], + [98.967134, 30.33482], + [98.965286, 30.449937], + [98.932025, 30.521623], + [98.926482, 30.569556], + [98.939417, 30.598923], + [98.92217, 30.609225], + [98.907388, 30.698292], + [98.963438, 30.728134], + [98.957895, 30.765166], + [98.904924, 30.782649], + [98.850105, 30.849465], + [98.797135, 30.87926], + [98.774345, 30.908019], + [98.797135, 30.948575], + [98.806374, 30.995783], + [98.774961, 31.031174], + [98.736772, 31.049121], + [98.712135, 31.082954], + [98.710287, 31.1178], + [98.675179, 31.15417], + [98.602498, 31.192062], + [98.62344, 31.221238], + [98.60373, 31.257568], + [98.616048, 31.3036], + [98.643766, 31.338876], + [98.691809, 31.333253], + [98.773113, 31.249382], + [98.805758, 31.279052], + [98.810685, 31.306668], + [98.887062, 31.37465], + [98.84333, 31.416028], + [98.844562, 31.429817], + [98.714599, 31.508935], + [98.696736, 31.538523], + [98.651157, 31.57881], + [98.619128, 31.591555], + [98.553839, 31.660349], + [98.545831, 31.717383], + [98.516882, 31.717383], + [98.508875, 31.751995], + [98.461448, 31.800327], + [98.414636, 31.832365], + [98.426339, 31.856767], + [98.399238, 31.895899], + [98.432498, 31.922825], + [98.434962, 32.007613], + [98.402933, 32.026896], + [98.404781, 32.045159], + [98.357354, 32.087253], + [98.303151, 32.121726], + [98.260035, 32.208862], + [98.218768, 32.234683], + [98.23047, 32.262521], + [98.208913, 32.318171], + [98.218768, 32.342444], + [98.125145, 32.401077], + [98.107283, 32.391476], + [98.079565, 32.415224], + [97.940363, 32.482393], + [97.880001, 32.486431], + [97.863986, 32.499051], + [97.80732, 32.50006], + [97.795617, 32.521257], + [97.730944, 32.527312], + [97.684132, 32.530339], + [97.670582, 32.51722], + [97.540618, 32.536899], + [97.50243, 32.530844], + [97.463626, 32.55506], + [97.448843, 32.586833], + [97.411887, 32.575235], + [97.374315, 32.546484], + [97.3583, 32.563635], + [97.332431, 32.542448], + [97.334895, 32.514192], + [97.388481, 32.501575], + [97.341054, 32.440987], + [97.387865, 32.427349], + [97.424822, 32.322723], + [97.415583, 32.296421], + [97.371235, 32.273148], + [97.32196, 32.303503], + [97.299786, 32.294904], + [97.264062, 32.182527], + [97.271453, 32.139971], + [97.313953, 32.130342], + [97.293011, 32.096887], + [97.308409, 32.076605], + [97.258518, 32.072041], + [97.219714, 32.109054], + [97.201852, 32.090296], + [97.233881, 32.063927], + [97.214786, 32.042623], + [97.188301, 32.055304], + [97.169823, 32.032984], + [97.127323, 32.044145], + [97.028773, 32.04871], + [97.006599, 32.067984], + [96.935766, 32.048203], + [96.965947, 32.008628], + [96.941925, 31.986297], + [96.894498, 32.013703], + [96.863085, 31.996448], + [96.868629, 31.964975], + [96.824281, 32.007613], + [96.722651, 32.013195], + [96.742977, 32.001016], + [96.753448, 31.944156], + [96.776238, 31.935015], + [96.81073, 31.894375], + [96.794716, 31.869474], + [96.760223, 31.860325], + [96.765767, 31.819144], + [96.799027, 31.792188], + [96.840295, 31.720438], + [96.790404, 31.698545], + [96.778701, 31.675629], + [96.722651, 31.686833], + [96.691854, 31.722474], + [96.661057, 31.705674], + [96.615477, 31.737236], + [96.56805, 31.711783], + [96.519391, 31.74945], + [96.468884, 31.769804], + [96.435623, 31.796258], + [96.407906, 31.845583], + [96.389428, 31.919777], + [96.288414, 31.919777], + [96.253305, 31.929936], + [96.220044, 31.905553], + [96.188632, 31.904028], + [96.214501, 31.876589], + [96.202798, 31.841008], + [96.183088, 31.835924], + [96.178161, 31.775401], + [96.231131, 31.749959], + [96.222508, 31.733164], + [96.252073, 31.697527], + [96.245298, 31.657802], + [96.221892, 31.647613], + [96.207726, 31.598691], + [96.156603, 31.602769], + [96.148595, 31.686324], + [96.135661, 31.70211], + [96.064828, 31.720438], + [95.989067, 31.78761], + [95.983524, 31.816601], + [95.89914, 31.81711], + [95.846169, 31.736218], + [95.853561, 31.714329], + [95.823995, 31.68225], + [95.779648, 31.748941], + [95.634286, 31.782523], + [95.580083, 31.76726], + [95.546823, 31.73978], + [95.511714, 31.750468], + [95.480301, 31.795749], + [95.456896, 31.801853], + [95.406389, 31.896915], + [95.408852, 31.918761], + [95.3682, 31.92892], + [95.360809, 31.95939], + [95.395918, 32.001523], + [95.454432, 32.007613], + [95.421171, 32.033999], + [95.454432, 32.061898], + [95.440265, 32.157705], + [95.406389, 32.182021], + [95.367584, 32.178982], + [95.366968, 32.151118], + [95.31523, 32.148585], + [95.270266, 32.194683], + [95.270266, 32.194683], + [95.239469, 32.287315], + [95.241317, 32.3207], + [95.214216, 32.321712], + [95.20744, 32.297433], + [95.10581, 32.258979], + [95.079325, 32.279726], + [95.096571, 32.322217], + [95.193274, 32.332331], + [95.261643, 32.348006], + [95.228382, 32.363678], + [95.218527, 32.397035], + [95.153853, 32.386423], + [95.081789, 32.384907], + [95.075013, 32.376315], + [95.075013, 32.376315], + [95.057151, 32.395014], + [94.988166, 32.422802], + [94.944434, 32.404109], + [94.912405, 32.41573], + [94.889616, 32.472295], + [94.852043, 32.463712], + [94.80708, 32.486431], + [94.78737, 32.522266], + [94.762116, 32.526303], + [94.737479, 32.587338], + [94.638312, 32.645307], + [94.614291, 32.673522], + [94.591501, 32.640772], + [94.522516, 32.595909], + [94.459074, 32.599439], + [94.463386, 32.572209], + [94.435052, 32.562626], + [94.395016, 32.594397], + [94.371611, 32.524789], + [94.350053, 32.533871], + [94.294002, 32.519743], + [94.292154, 32.502584], + [94.250886, 32.51722], + [94.196684, 32.51621], + [94.176974, 32.454117], + [94.137554, 32.433915], + [94.091974, 32.463207], + [94.049474, 32.469771], + [94.03038, 32.448057], + [93.978641, 32.459672], + [93.960163, 32.484917], + [93.90904, 32.463207], + [93.861613, 32.466237], + [93.851142, 32.50965], + [93.820345, 32.549511], + [93.75136, 32.56313], + [93.721795, 32.578261], + [93.651577, 32.571705], + [93.618933, 32.522771], + [93.516687, 32.47583], + [93.501904, 32.503593], + [93.476651, 32.504603], + [93.4631, 32.556069], + [93.411977, 32.558086], + [93.385492, 32.525294], + [93.33868, 32.5712], + [93.308499, 32.580278], + [93.300492, 32.619604], + [93.260456, 32.62666], + [93.239514, 32.662439], + [93.210565, 32.655385], + [93.176688, 32.6705], + [93.159442, 32.644803], + [93.087993, 32.63674], + [93.069515, 32.626156], + [93.023935, 32.703239], + [93.019624, 32.737477], + [93.00053, 32.741001], + [92.964189, 32.714821], + [92.933392, 32.719353], + [92.866871, 32.698203], + [92.822523, 32.729926], + [92.789262, 32.719856], + [92.756618, 32.743014], + [92.686401, 32.76516], + [92.667922, 32.73194], + [92.634662, 32.720863], + [92.574916, 32.741001], + [92.56814, 32.73194], + [92.484372, 32.745028], + [92.459119, 32.76365], + [92.411076, 32.748048], + [92.355641, 32.764657], + [92.343938, 32.738484], + [92.310062, 32.751571], + [92.255243, 32.720863], + [92.198577, 32.754591], + [92.211511, 32.788306], + [92.193649, 32.801889], + [92.227526, 32.821003], + [92.205352, 32.866255], + [92.145606, 32.885857], + [92.101874, 32.860222], + [92.038432, 32.860725], + [92.018722, 32.829552], + [91.955897, 32.8205], + [91.896766, 32.907967], + [91.857962, 32.90244], + [91.839484, 32.948152], + [91.799448, 32.942126], + [91.752637, 32.969242], + [91.685499, 32.989324], + [91.664557, 33.012913], + [91.583253, 33.0375], + [91.55492, 33.060074], + [91.535826, 33.10019], + [91.49579, 33.109214], + [91.436044, 33.066092], + [91.370138, 33.100691], + [91.311624, 33.108211], + [91.261733, 33.141291], + [91.226624, 33.141792], + [91.18782, 33.106206], + [91.161335, 33.108712], + [91.147784, 33.07211], + [91.072024, 33.113224], + [91.037531, 33.098686], + [91.001807, 33.11573], + [90.927894, 33.120241], + [90.902024, 33.083143], + [90.88293, 33.120241], + [90.803474, 33.114227], + [90.740032, 33.142293], + [90.704308, 33.135778], + [90.627315, 33.180368], + [90.562642, 33.229441], + [90.490577, 33.264977], + [90.405577, 33.260473], + [90.363077, 33.279487], + [90.332896, 33.310501], + [90.246665, 33.423959], + [90.22018, 33.437943], + [90.107463, 33.460913], + [90.088984, 33.478885], + [90.083441, 33.525295], + [90.01076, 33.553728], + [89.984275, 33.612061], + [90.008296, 33.687785], + [89.981195, 33.70322], + [89.983659, 33.725622], + [89.907282, 33.741051], + [89.902355, 33.758467], + [89.942391, 33.801246], + [89.899891, 33.80771], + [89.837065, 33.868853], + [89.795181, 33.865374], + [89.73174, 33.921509], + [89.718805, 33.946832], + [89.688008, 33.959739], + [89.684928, 33.990013], + [89.635037, 34.049537], + [89.656595, 34.057966], + [89.655979, 34.097126], + [89.71203, 34.131809], + [89.756993, 34.124874], + [89.760073, 34.152613], + [89.789638, 34.150632], + [89.816739, 34.16945], + [89.838297, 34.263477], + [89.825362, 34.293642], + [89.86663, 34.324785], + [89.858623, 34.359375], + [89.820435, 34.369255], + [89.799493, 34.39642], + [89.819819, 34.420614], + [89.823515, 34.455657], + [89.814891, 34.548871], + [89.777935, 34.574499], + [89.798877, 34.628686], + [89.74837, 34.641981], + [89.72558, 34.660689], + [89.732356, 34.732035], + [89.799493, 34.743838], + [89.825978, 34.796931], + [89.867862, 34.81069], + [89.838913, 34.865705], + [89.814891, 34.86816], + [89.821051, 34.902033], + [89.78779, 34.921664], + [89.747138, 34.903506], + [89.707102, 34.919701], + [89.670146, 34.887798], + [89.578987, 34.895162], + [89.560509, 34.938836], + [89.59069, 35.057965], + [89.593153, 35.104491], + [89.579603, 35.118688], + [89.519241, 35.133862], + [89.46935, 35.214577], + [89.450255, 35.223867], + [89.48598, 35.256616], + [89.531559, 35.276161], + [89.494603, 35.298632], + [89.516161, 35.330862], + [89.497067, 35.361128], + [89.58761, 35.383575], + [89.619639, 35.412357], + [89.658443, 35.425526], + [89.685544, 35.416259], + [89.739131, 35.468429], + [89.765, 35.482563], + [89.740979, 35.507412], + [89.720037, 35.501566], + [89.699711, 35.544916], + [89.71203, 35.581915], + [89.75145, 35.580942], + [89.765616, 35.599922], + [89.726196, 35.648082], + [89.748986, 35.66267], + [89.747138, 35.7516], + [89.782863, 35.773453], + [89.767464, 35.799183], + [89.801957, 35.848193], + [89.778551, 35.861775], + [89.707718, 35.849163], + [89.654747, 35.848193], + [89.62395, 35.859349], + [89.550654, 35.856924], + [89.554965, 35.873414], + [89.489676, 35.903475], + [89.428082, 35.917531], + [89.434857, 35.992136], + [89.404676, 36.016827], + [89.417611, 36.044897], + [89.474893, 36.022151], + [89.605472, 36.038123], + [89.688624, 36.091337], + [89.711414, 36.093272] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 610000, + "name": "陕西省", + "center": [108.948024, 34.263161], + "centroid": [108.887114, 35.263661], + "childrenNum": 10, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 26, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [110.379257, 34.600612], + [110.29549, 34.610956], + [110.269004, 34.629671], + [110.229584, 34.692679], + [110.243135, 34.725641], + [110.246831, 34.789068], + [110.230816, 34.880925], + [110.262229, 34.944233], + [110.320743, 35.00504], + [110.373714, 35.134351], + [110.364475, 35.197952], + [110.378642, 35.210666], + [110.374946, 35.251728], + [110.45009, 35.327933], + [110.477808, 35.413821], + [110.531394, 35.511309], + [110.567735, 35.539559], + [110.589293, 35.602355], + [110.609619, 35.632031], + [110.57759, 35.701559], + [110.571431, 35.800639], + [110.550489, 35.838005], + [110.549257, 35.877778], + [110.511684, 35.879718], + [110.516612, 35.918501], + [110.502445, 35.947575], + [110.516612, 35.971796], + [110.49259, 35.994073], + [110.491974, 36.034735], + [110.467953, 36.074893], + [110.447011, 36.164328], + [110.45625, 36.22663], + [110.474112, 36.248352], + [110.474112, 36.306729], + [110.459946, 36.327946], + [110.487047, 36.393972], + [110.489511, 36.430094], + [110.47288, 36.453203], + [110.503677, 36.488335], + [110.488895, 36.556628], + [110.496902, 36.582102], + [110.447627, 36.621018], + [110.426685, 36.657514], + [110.394656, 36.676716], + [110.402663, 36.697352], + [110.438388, 36.685835], + [110.447011, 36.737649], + [110.407591, 36.776007], + [110.423605, 36.818179], + [110.406975, 36.824886], + [110.424221, 36.855539], + [110.376178, 36.882351], + [110.408823, 36.892403], + [110.424221, 36.963685], + [110.381721, 37.002408], + [110.382953, 37.022001], + [110.426685, 37.008621], + [110.417446, 37.027257], + [110.460561, 37.044932], + [110.49567, 37.086956], + [110.535706, 37.115118], + [110.53509, 37.138021], + [110.590525, 37.187145], + [110.651503, 37.256722], + [110.661974, 37.281963], + [110.690307, 37.287201], + [110.678604, 37.317668], + [110.695234, 37.34955], + [110.641648, 37.360015], + [110.630561, 37.372858], + [110.644111, 37.435135], + [110.740198, 37.44939], + [110.759292, 37.474567], + [110.770995, 37.538184], + [110.795017, 37.558586], + [110.771611, 37.594634], + [110.763604, 37.639668], + [110.793169, 37.650567], + [110.775306, 37.680886], + [110.706321, 37.705511], + [110.716792, 37.728708], + [110.750669, 37.736281], + [110.735886, 37.77035], + [110.680452, 37.790216], + [110.59422, 37.922049], + [110.522771, 37.955088], + [110.528315, 37.990471], + [110.507989, 38.013107], + [110.501829, 38.097929], + [110.519692, 38.130889], + [110.509221, 38.192061], + [110.528315, 38.211814], + [110.565887, 38.215105], + [110.57759, 38.297345], + [110.601612, 38.308147], + [110.661358, 38.308617], + [110.701394, 38.353215], + [110.746973, 38.366355], + [110.77777, 38.440924], + [110.796864, 38.453579], + [110.840596, 38.439986], + [110.874473, 38.453579], + [110.870777, 38.510265], + [110.907733, 38.521035], + [110.920052, 38.581878], + [110.898494, 38.587024], + [110.880632, 38.626776], + [110.916357, 38.673981], + [110.915125, 38.704345], + [110.965016, 38.755699], + [111.009363, 38.847579], + [110.995813, 38.868084], + [111.016755, 38.889981], + [111.009979, 38.932823], + [110.980414, 38.970056], + [110.998276, 38.998433], + [111.038313, 39.020289], + [111.094363, 39.030053], + [111.138095, 39.064447], + [111.147334, 39.100681], + [111.173819, 39.135041], + [111.163348, 39.152678], + [111.219399, 39.244044], + [111.213239, 39.257021], + [111.247732, 39.302419], + [111.202152, 39.305197], + [111.179363, 39.326959], + [111.186138, 39.35149], + [111.155341, 39.338531], + [111.159037, 39.362596], + [111.125776, 39.366297], + [111.087588, 39.376013], + [111.098059, 39.401914], + [111.064182, 39.400989], + [111.058639, 39.447681], + [111.10545, 39.472631], + [111.10545, 39.497573], + [111.148566, 39.531277], + [111.154725, 39.569116], + [111.136863, 39.587106], + [111.101138, 39.559428], + [111.017371, 39.552045], + [110.958856, 39.519275], + [110.891103, 39.509118], + [110.869545, 39.494341], + [110.782698, 39.38804], + [110.73835, 39.348713], + [110.731575, 39.30705], + [110.702626, 39.273701], + [110.626249, 39.266751], + [110.596684, 39.282966], + [110.566503, 39.320014], + [110.559728, 39.351027], + [110.524003, 39.382952], + [110.482735, 39.360745], + [110.434692, 39.381101], + [110.429764, 39.341308], + [110.385417, 39.310291], + [110.257917, 39.407001], + [110.243751, 39.423645], + [110.152592, 39.45415], + [110.12549, 39.432891], + [110.136577, 39.39174], + [110.161831, 39.387115], + [110.184005, 39.355192], + [110.217881, 39.281113], + [110.109476, 39.249606], + [110.041107, 39.21623], + [109.962267, 39.212056], + [109.90252, 39.271848], + [109.871723, 39.243581], + [109.961035, 39.191651], + [109.893897, 39.141075], + [109.92223, 39.107183], + [109.890818, 39.103932], + [109.851397, 39.122971], + [109.793499, 39.074204], + [109.762086, 39.057476], + [109.72513, 39.018429], + [109.665384, 38.981687], + [109.685094, 38.968195], + [109.672159, 38.928167], + [109.624116, 38.85457], + [109.549587, 38.805618], + [109.511399, 38.833595], + [109.444262, 38.782763], + [109.404226, 38.720689], + [109.338936, 38.701542], + [109.329081, 38.66043], + [109.367269, 38.627711], + [109.331545, 38.597783], + [109.276726, 38.623035], + [109.196654, 38.552867], + [109.175712, 38.518694], + [109.128901, 38.480288], + [109.054372, 38.433892], + [109.051292, 38.385122], + [109.007561, 38.359316], + [108.961981, 38.26493], + [108.976148, 38.245192], + [108.938575, 38.207582], + [108.964445, 38.154894], + [109.069155, 38.091336], + [109.050676, 38.055059], + [109.06977, 38.023008], + [109.037742, 38.021593], + [109.018648, 37.971602], + [108.982923, 37.964053], + [108.9743, 37.931962], + [108.93488, 37.922521], + [108.893612, 37.978207], + [108.883141, 38.01405], + [108.830786, 38.049875], + [108.797525, 38.04799], + [108.82709, 37.989056], + [108.798141, 37.93385], + [108.791982, 37.872934], + [108.799989, 37.784068], + [108.784591, 37.764673], + [108.791982, 37.700303], + [108.777815, 37.683728], + [108.720533, 37.683728], + [108.699591, 37.669518], + [108.628142, 37.651988], + [108.532671, 37.690832], + [108.485244, 37.678044], + [108.422418, 37.648672], + [108.301078, 37.640616], + [108.293071, 37.656726], + [108.24626, 37.665728], + [108.205608, 37.655779], + [108.193905, 37.638246], + [108.134159, 37.622131], + [108.055318, 37.652462], + [108.025137, 37.649619], + [108.012819, 37.66857], + [108.025753, 37.696041], + [107.993109, 37.735335], + [107.982022, 37.787378], + [107.884703, 37.808186], + [107.842819, 37.828987], + [107.732566, 37.84931], + [107.684523, 37.888522], + [107.65003, 37.86443], + [107.659269, 37.844112], + [107.646335, 37.805349], + [107.620465, 37.776026], + [107.599523, 37.791162], + [107.57119, 37.776499], + [107.499125, 37.765619], + [107.484959, 37.706458], + [107.425828, 37.684201], + [107.387024, 37.691305], + [107.389488, 37.671413], + [107.422133, 37.665254], + [107.361155, 37.613125], + [107.311264, 37.609806], + [107.330358, 37.584201], + [107.369162, 37.58752], + [107.345756, 37.518725], + [107.284162, 37.481691], + [107.282931, 37.437036], + [107.257677, 37.337179], + [107.273075, 37.29101], + [107.309416, 37.239095], + [107.270612, 37.229089], + [107.317423, 37.200017], + [107.336517, 37.165687], + [107.334669, 37.138975], + [107.306952, 37.100799], + [107.281083, 37.127047], + [107.268764, 37.099367], + [107.28601, 37.054963], + [107.288474, 37.008143], + [107.288474, 37.008143], + [107.291554, 36.979463], + [107.291554, 36.979463], + [107.310032, 36.912502], + [107.336517, 36.925899], + [107.365466, 36.905324], + [107.478183, 36.908196], + [107.533618, 36.867031], + [107.540393, 36.828718], + [107.5909, 36.836382], + [107.642023, 36.819137], + [107.670356, 36.83303], + [107.722095, 36.802367], + [107.742421, 36.811951], + [107.768291, 36.792783], + [107.866841, 36.766899], + [107.907493, 36.750118], + [107.914268, 36.720861], + [107.940754, 36.694953], + [107.938906, 36.655594], + [108.006659, 36.683435], + [108.02329, 36.647912], + [108.001732, 36.639269], + [108.060862, 36.592194], + [108.079956, 36.614294], + [108.092891, 36.587388], + [108.163724, 36.563839], + [108.1976, 36.630144], + [108.222854, 36.631105], + [108.204992, 36.606607], + [108.204992, 36.606607], + [108.210535, 36.577296], + [108.245644, 36.571048], + [108.262274, 36.549417], + [108.340498, 36.559032], + [108.365136, 36.519603], + [108.391621, 36.505654], + [108.408252, 36.45946], + [108.460606, 36.422871], + [108.495099, 36.422389], + [108.514809, 36.445501], + [108.510498, 36.47438], + [108.562852, 36.43876], + [108.618903, 36.433946], + [108.651548, 36.384818], + [108.641693, 36.359279], + [108.646004, 36.254143], + [108.712526, 36.138716], + [108.682345, 36.062316], + [108.688504, 36.021183], + [108.659555, 35.990683], + [108.652164, 35.94806], + [108.593649, 35.950967], + [108.562852, 35.921409], + [108.518505, 35.905414], + [108.499411, 35.872444], + [108.527744, 35.82442], + [108.533903, 35.746257], + [108.517889, 35.699615], + [108.539447, 35.605761], + [108.618287, 35.557088], + [108.625678, 35.537124], + [108.605968, 35.503028], + [108.631222, 35.418698], + [108.61028, 35.355271], + [108.614591, 35.328909], + [108.583178, 35.294724], + [108.547454, 35.304981], + [108.48894, 35.275184], + [108.36144, 35.279581], + [108.345426, 35.300586], + [108.296767, 35.267855], + [108.239484, 35.256127], + [108.221622, 35.296678], + [108.174811, 35.304981], + [108.094739, 35.280069], + [108.049159, 35.253683], + [107.949993, 35.245375], + [107.960464, 35.263457], + [107.867457, 35.256127], + [107.841587, 35.276649], + [107.745501, 35.311819], + [107.737494, 35.267366], + [107.667277, 35.257104], + [107.652494, 35.244886], + [107.686371, 35.218], + [107.715936, 35.168114], + [107.727639, 35.120157], + [107.769523, 35.064333], + [107.769523, 35.064333], + [107.773218, 35.060904], + [107.773218, 35.060904], + [107.814486, 35.024646], + [107.846515, 35.024646], + [107.863145, 34.999158], + [107.842203, 34.979056], + [107.741805, 34.953553], + [107.675284, 34.9511], + [107.638943, 34.935402], + [107.619849, 34.964834], + [107.564415, 34.968757], + [107.523763, 34.909886], + [107.455394, 34.916757], + [107.400575, 34.932949], + [107.369162, 34.917738], + [107.350068, 34.93393], + [107.286626, 34.931968], + [107.252749, 34.880925], + [107.189308, 34.893198], + [107.162206, 34.944233], + [107.119707, 34.950119], + [107.089526, 34.976604], + [107.08275, 35.024156], + [107.012533, 35.029547], + [106.990975, 35.068252], + [106.950323, 35.066782], + [106.901664, 35.094698], + [106.838222, 35.080007], + [106.710723, 35.100574], + [106.706411, 35.081966], + [106.615252, 35.071191], + [106.577064, 35.089312], + [106.541956, 35.083925], + [106.52163, 35.027587], + [106.494528, 35.006021], + [106.494528, 35.006021], + [106.484673, 34.983959], + [106.493296, 34.941289], + [106.527789, 34.876507], + [106.556122, 34.861285], + [106.550579, 34.82936], + [106.575216, 34.769897], + [106.539492, 34.745805], + [106.505615, 34.746789], + [106.487137, 34.715311], + [106.456956, 34.703996], + [106.442173, 34.675455], + [106.471122, 34.634102], + [106.419384, 34.643458], + [106.314058, 34.578934], + [106.341159, 34.568093], + [106.334384, 34.517811], + [106.455108, 34.531617], + [106.514238, 34.511894], + [106.513622, 34.498085], + [106.558586, 34.48822], + [106.610941, 34.454177], + [106.638042, 34.391481], + [106.717498, 34.369255], + [106.691013, 34.337635], + [106.705179, 34.299575], + [106.68239, 34.256057], + [106.652825, 34.24369], + [106.63373, 34.260014], + [106.589383, 34.253584], + [106.577064, 34.280786], + [106.526557, 34.292159], + [106.496376, 34.238248], + [106.5321, 34.254079], + [106.55797, 34.229837], + [106.585071, 34.149641], + [106.560434, 34.109514], + [106.501919, 34.105055], + [106.505615, 34.056479], + [106.471738, 34.024244], + [106.474202, 33.970659], + [106.41076, 33.909093], + [106.428007, 33.866368], + [106.475434, 33.875809], + [106.491448, 33.834559], + [106.461883, 33.789807], + [106.488369, 33.757969], + [106.482825, 33.707203], + [106.534564, 33.695254], + [106.575832, 33.631497], + [106.58076, 33.576169], + [106.540108, 33.512822], + [106.456956, 33.532779], + [106.447101, 33.613058], + [106.384891, 33.612061], + [106.35163, 33.587137], + [106.303587, 33.604585], + [106.237681, 33.564201], + [106.187174, 33.546746], + [106.108334, 33.569686], + [106.117573, 33.602591], + [106.086776, 33.617045], + [106.047356, 33.610067], + [105.971596, 33.613058], + [105.940183, 33.570684], + [105.902611, 33.556222], + [105.871198, 33.511325], + [105.842248, 33.489866], + [105.831162, 33.451926], + [105.837937, 33.410971], + [105.827466, 33.379993], + [105.709822, 33.382991], + [105.755401, 33.329004], + [105.752937, 33.291994], + [105.791741, 33.278486], + [105.799133, 33.258471], + [105.862574, 33.234447], + [105.917393, 33.237951], + [105.965436, 33.204407], + [105.968516, 33.154318], + [105.93156, 33.178365], + [105.897067, 33.146803], + [105.923552, 33.147805], + [105.934639, 33.112221], + [105.914929, 33.066092], + [105.926632, 33.042517], + [105.917393, 32.993841], + [105.861959, 32.939112], + [105.82685, 32.950663], + [105.735691, 32.905454], + [105.656851, 32.895405], + [105.638373, 32.879323], + [105.590329, 32.87681], + [105.565692, 32.906962], + [105.528119, 32.919019], + [105.49917, 32.911986], + [105.495475, 32.873292], + [105.524424, 32.847654], + [105.534279, 32.790822], + [105.555221, 32.794343], + [105.563844, 32.724891], + [105.585402, 32.728919], + [105.596489, 32.69921], + [105.677793, 32.726402], + [105.719061, 32.759624], + [105.768952, 32.767676], + [105.779423, 32.750061], + [105.822538, 32.770192], + [105.825002, 32.824523], + [105.849024, 32.817985], + [105.893371, 32.838603], + [105.93156, 32.826032], + [105.969132, 32.849162], + [106.011632, 32.829552], + [106.044277, 32.864747], + [106.071378, 32.828546], + [106.093552, 32.82402], + [106.07261, 32.76365], + [106.076921, 32.76365], + [106.076305, 32.759121], + [106.071378, 32.758114], + [106.120037, 32.719856], + [106.17424, 32.6977], + [106.254928, 32.693671], + [106.267863, 32.673522], + [106.301123, 32.680071], + [106.347935, 32.671003], + [106.389203, 32.62666], + [106.421231, 32.616579], + [106.451412, 32.65992], + [106.498224, 32.649338], + [106.517934, 32.668485], + [106.585687, 32.68813], + [106.626955, 32.682086], + [106.670071, 32.694678], + [106.733513, 32.739491], + [106.783404, 32.735967], + [106.793259, 32.712807], + [106.82344, 32.705254], + [106.854853, 32.724388], + [106.903512, 32.721367], + [106.912751, 32.704247], + [107.012533, 32.721367], + [107.066736, 32.708779], + [107.05996, 32.686115], + [107.098765, 32.649338], + [107.108004, 32.600951], + [107.080286, 32.542448], + [107.127098, 32.482393], + [107.189924, 32.468256], + [107.212097, 32.428864], + [107.263836, 32.403099], + [107.287858, 32.457147], + [107.313727, 32.489965], + [107.356843, 32.506622], + [107.382097, 32.54043], + [107.436299, 32.529835], + [107.438763, 32.465732], + [107.460937, 32.453612], + [107.456625, 32.41775], + [107.489886, 32.425328], + [107.527458, 32.38238], + [107.598291, 32.411688], + [107.648183, 32.413709], + [107.680827, 32.397035], + [107.707929, 32.331826], + [107.753508, 32.338399], + [107.812022, 32.247844], + [107.864377, 32.201266], + [107.890247, 32.214432], + [107.924739, 32.197215], + [107.979558, 32.146051], + [108.024521, 32.177462], + [108.018362, 32.2119], + [108.086731, 32.233165], + [108.143398, 32.219495], + [108.156948, 32.239239], + [108.179738, 32.221521], + [108.240716, 32.274666], + [108.310933, 32.232152], + [108.389773, 32.263533], + [108.414411, 32.252399], + [108.469846, 32.270618], + [108.507418, 32.245819], + [108.509882, 32.201266], + [108.543758, 32.177969], + [108.585026, 32.17189], + [108.676801, 32.10297], + [108.734084, 32.106519], + [108.75133, 32.076098], + [108.78767, 32.04871], + [108.837561, 32.039072], + [108.902235, 31.984774], + [108.986619, 31.980205], + [109.085785, 31.929428], + [109.123357, 31.892851], + [109.191111, 31.85575], + [109.195422, 31.817618], + [109.27611, 31.79931], + [109.279806, 31.776418], + [109.253936, 31.759628], + [109.282885, 31.743343], + [109.281654, 31.716874], + [109.381436, 31.705165], + [109.446109, 31.722983], + [109.502776, 31.716365], + [109.549587, 31.73011], + [109.585928, 31.726546], + [109.592087, 31.789136], + [109.633971, 31.804396], + [109.633971, 31.824738], + [109.60379, 31.885737], + [109.584696, 31.900472], + [109.62042, 31.928412], + [109.631507, 31.962436], + [109.590855, 32.012688], + [109.590855, 32.047696], + [109.621652, 32.106519], + [109.58716, 32.161251], + [109.604406, 32.199241], + [109.592703, 32.219495], + [109.550203, 32.225065], + [109.528645, 32.270112], + [109.495385, 32.300468], + [109.513247, 32.342444], + [109.502776, 32.38895], + [109.529877, 32.405625], + [109.526797, 32.43341], + [109.575457, 32.506622], + [109.637051, 32.540935], + [109.619804, 32.56767], + [109.631507, 32.599943], + [109.726978, 32.608513], + [109.746072, 32.594901], + [109.816905, 32.577252], + [109.910528, 32.592884], + [109.97089, 32.577756], + [110.017701, 32.546989], + [110.084223, 32.580782], + [110.090382, 32.617083], + [110.124259, 32.616579], + [110.153824, 32.593388], + [110.206179, 32.633212], + [110.156903, 32.683093], + [110.159367, 32.767173], + [110.127338, 32.77774], + [110.142121, 32.802895], + [110.105164, 32.832569], + [110.051578, 32.851676], + [109.988752, 32.886359], + [109.927158, 32.887364], + [109.907448, 32.903947], + [109.856941, 32.910479], + [109.847702, 32.893395], + [109.789804, 32.882339], + [109.76455, 32.909474], + [109.785492, 32.987316], + [109.794731, 33.067095], + [109.704188, 33.101694], + [109.688174, 33.116733], + [109.576073, 33.110216], + [109.522486, 33.138785], + [109.468283, 33.140288], + [109.438718, 33.152314], + [109.498464, 33.207412], + [109.514479, 33.237951], + [109.60687, 33.235949], + [109.619804, 33.275484], + [109.649985, 33.251465], + [109.693101, 33.254468], + [109.732521, 33.231443], + [109.813209, 33.236449], + [109.852013, 33.247961], + [109.916687, 33.229942], + [109.973353, 33.203907], + [109.999223, 33.212419], + [110.031252, 33.191888], + [110.164911, 33.209415], + [110.218497, 33.163336], + [110.285635, 33.171352], + [110.33799, 33.160331], + [110.372482, 33.186379], + [110.398352, 33.176862], + [110.398352, 33.176862], + [110.471032, 33.171352], + [110.54125, 33.255469], + [110.57759, 33.250464], + [110.59422, 33.168346], + [110.623785, 33.143796], + [110.650887, 33.157324], + [110.702626, 33.097182], + [110.753133, 33.15031], + [110.824582, 33.158327], + [110.828893, 33.201403], + [110.865234, 33.213921], + [110.9219, 33.203907], + [110.960704, 33.253967], + [110.984726, 33.255469], + [111.025994, 33.330504], + [111.025994, 33.375495], + [110.996429, 33.435946], + [111.02661, 33.467903], + [111.021066, 33.471397], + [111.021682, 33.476389], + [111.02661, 33.478386], + [111.002588, 33.535772], + [111.00382, 33.578662], + [110.966864, 33.609071], + [110.878784, 33.634486], + [110.823966, 33.685793], + [110.831973, 33.713675], + [110.81719, 33.751003], + [110.782082, 33.796272], + [110.74143, 33.798759], + [110.712481, 33.833564], + [110.66259, 33.85295], + [110.612083, 33.852453], + [110.587445, 33.887733], + [110.628713, 33.910086], + [110.627481, 33.925482], + [110.665669, 33.937895], + [110.671213, 33.966192], + [110.620706, 34.035652], + [110.587445, 34.023252], + [110.591757, 34.101586], + [110.61393, 34.113478], + [110.642264, 34.161032], + [110.621938, 34.177372], + [110.55788, 34.193214], + [110.55172, 34.213012], + [110.507989, 34.217466], + [110.43962, 34.243196], + [110.428533, 34.288203], + [110.451938, 34.292653], + [110.503677, 34.33714], + [110.473496, 34.393457], + [110.403279, 34.433448], + [110.403279, 34.433448], + [110.360779, 34.516825], + [110.372482, 34.544435], + [110.404511, 34.557743], + [110.366939, 34.566614], + [110.379257, 34.600612] + ] + ], + [ + [ + [111.02661, 33.478386], + [111.021682, 33.476389], + [111.021066, 33.471397], + [111.02661, 33.467903], + [111.02661, 33.478386] + ] + ], + [ + [ + [106.076921, 32.76365], + [106.07261, 32.76365], + [106.071378, 32.758114], + [106.076305, 32.759121], + [106.076921, 32.76365] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 620000, + "name": "甘肃省", + "center": [103.823557, 36.058039], + "childrenNum": 14, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 27, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [106.506231, 35.737514], + [106.504383, 35.736057], + [106.498224, 35.732656], + [106.49268, 35.732656], + [106.434782, 35.688436], + [106.460036, 35.643705], + [106.47913, 35.575101], + [106.460036, 35.578995], + [106.440941, 35.52641], + [106.465579, 35.481101], + [106.490217, 35.480613], + [106.483441, 35.450393], + [106.503767, 35.415284], + [106.501304, 35.364056], + [106.472354, 35.310842], + [106.415688, 35.276161], + [106.368261, 35.273718], + [106.363333, 35.238532], + [106.319601, 35.265411], + [106.241377, 35.358687], + [106.237681, 35.409431], + [106.196414, 35.409919], + [106.173008, 35.437716], + [106.129892, 35.393333], + [106.113262, 35.361616], + [106.083081, 35.421624], + [106.073226, 35.420649], + [106.067682, 35.436254], + [106.073226, 35.447468], + [106.071378, 35.449418], + [106.06953, 35.458193], + [106.071994, 35.463555], + [106.054132, 35.45478], + [106.034422, 35.469404], + [106.002393, 35.438692], + [105.894603, 35.413821], + [105.897683, 35.451368], + [106.048588, 35.488898], + [106.047356, 35.498155], + [106.023335, 35.49377], + [106.017175, 35.519103], + [105.900147, 35.54735], + [105.868734, 35.540046], + [105.847176, 35.490359], + [105.816379, 35.575101], + [105.800365, 35.564878], + [105.762176, 35.602841], + [105.759097, 35.634464], + [105.713517, 35.650513], + [105.722756, 35.673366], + [105.690727, 35.698643], + [105.723988, 35.725854], + [105.740618, 35.698643], + [105.759097, 35.724883], + [105.70243, 35.733142], + [105.667322, 35.749657], + [105.595873, 35.715651], + [105.481924, 35.727312], + [105.457286, 35.771511], + [105.432033, 35.787533], + [105.428953, 35.819082], + [105.408627, 35.822479], + [105.38091, 35.792873], + [105.371055, 35.844312], + [105.39754, 35.857409], + [105.350113, 35.875839], + [105.324859, 35.941761], + [105.343954, 36.033767], + [105.406163, 36.074409], + [105.430801, 36.10391], + [105.491163, 36.101009], + [105.515185, 36.147415], + [105.478844, 36.213111], + [105.460366, 36.223733], + [105.45975, 36.268137], + [105.476381, 36.293224], + [105.455439, 36.321678], + [105.425873, 36.330357], + [105.401236, 36.369881], + [105.398156, 36.430575], + [105.363048, 36.443093], + [105.362432, 36.496514], + [105.322396, 36.535954], + [105.281744, 36.522489], + [105.252179, 36.553263], + [105.2762, 36.563358], + [105.261418, 36.602764], + [105.22015, 36.631105], + [105.225693, 36.664716], + [105.201056, 36.700711], + [105.218302, 36.730455], + [105.272505, 36.739567], + [105.275584, 36.752515], + [105.319932, 36.742924], + [105.340874, 36.764502], + [105.334714, 36.80093], + [105.303302, 36.820575], + [105.279896, 36.86751], + [105.244787, 36.894796], + [105.178882, 36.892403], + [105.185657, 36.942164], + [105.165331, 36.99476], + [105.128991, 36.996194], + [105.05939, 37.022956], + [105.03968, 37.007187], + [105.004571, 37.035378], + [104.95468, 37.040156], + [104.954064, 37.077407], + [104.914644, 37.097935], + [104.888158, 37.15901], + [104.864753, 37.17284], + [104.85613, 37.211933], + [104.776673, 37.246718], + [104.717543, 37.208597], + [104.638087, 37.201923], + [104.600515, 37.242907], + [104.624536, 37.298627], + [104.651022, 37.290534], + [104.673812, 37.317668], + [104.713848, 37.329566], + [104.662109, 37.367626], + [104.679971, 37.408044], + [104.521059, 37.43466], + [104.499501, 37.421353], + [104.448994, 37.42468], + [104.437907, 37.445589], + [104.365226, 37.418026], + [104.298705, 37.414223], + [104.287002, 37.428007], + [104.237727, 37.411847], + [104.183524, 37.406618], + [104.089285, 37.465067], + [103.935916, 37.572818], + [103.874938, 37.604117], + [103.841062, 37.64725], + [103.683381, 37.777919], + [103.627947, 37.797783], + [103.40744, 37.860651], + [103.362477, 38.037621], + [103.368636, 38.08898], + [103.53494, 38.156776], + [103.507838, 38.280905], + [103.465339, 38.353215], + [103.416063, 38.404821], + [103.85954, 38.64454], + [104.011677, 38.85923], + [104.044322, 38.895105], + [104.173053, 38.94446], + [104.196459, 38.9882], + [104.190915, 39.042139], + [104.207546, 39.083495], + [104.171205, 39.160567], + [104.047401, 39.297788], + [104.073271, 39.351953], + [104.089901, 39.419947], + [103.955626, 39.456923], + [103.85338, 39.461543], + [103.728961, 39.430117], + [103.595302, 39.386652], + [103.428998, 39.353341], + [103.344615, 39.331588], + [103.259615, 39.263971], + [103.188166, 39.215302], + [103.133347, 39.192579], + [103.007696, 39.099753], + [102.883892, 39.120649], + [102.616574, 39.171703], + [102.579002, 39.183301], + [102.45335, 39.255167], + [102.3548, 39.231993], + [102.276576, 39.188868], + [102.050526, 39.141075], + [102.012338, 39.127149], + [101.902701, 39.111827], + [101.833715, 39.08907], + [101.926106, 39.000758], + [101.955055, 38.985874], + [102.045599, 38.904885], + [102.075164, 38.891378], + [101.941505, 38.808883], + [101.873751, 38.733761], + [101.777049, 38.66043], + [101.672955, 38.6908], + [101.601506, 38.65529], + [101.562702, 38.713218], + [101.412413, 38.764099], + [101.331109, 38.777164], + [101.307087, 38.80282], + [101.34158, 38.822406], + [101.33542, 38.847113], + [101.24303, 38.860628], + [101.237486, 38.907214], + [101.198682, 38.943064], + [101.228863, 39.020754], + [101.117378, 38.975174], + [100.969553, 38.946788], + [100.961545, 39.005874], + [100.901799, 39.030053], + [100.875314, 39.002619], + [100.835278, 39.025869], + [100.829118, 39.075133], + [100.864227, 39.106719], + [100.842669, 39.199999], + [100.842053, 39.405614], + [100.707778, 39.404689], + [100.606764, 39.387577], + [100.498975, 39.400527], + [100.500823, 39.481408], + [100.44354, 39.485565], + [100.326512, 39.509118], + [100.301258, 39.572345], + [100.314193, 39.606935], + [100.250135, 39.685274], + [100.128179, 39.702312], + [100.040716, 39.757083], + [99.958796, 39.769504], + [99.904593, 39.785601], + [99.822058, 39.860063], + [99.672384, 39.888079], + [99.469124, 39.875221], + [99.440791, 39.885783], + [99.459885, 39.898181], + [99.491298, 39.884406], + [99.533182, 39.891753], + [99.714268, 39.972061], + [99.751225, 40.006909], + [99.841152, 40.013326], + [99.927383, 40.063727], + [99.955716, 40.150695], + [100.007455, 40.20008], + [100.169447, 40.277743], + [100.169447, 40.541131], + [100.242744, 40.618855], + [100.237201, 40.716905], + [100.224882, 40.727337], + [100.107853, 40.875475], + [100.057346, 40.908049], + [99.985897, 40.909858], + [99.673, 40.93292], + [99.565827, 40.846961], + [99.174705, 40.858278], + [99.172858, 40.747289], + [99.12543, 40.715091], + [99.102025, 40.676522], + [99.041662, 40.693767], + [98.984996, 40.782644], + [98.790975, 40.705564], + [98.80699, 40.660181], + [98.802678, 40.607043], + [98.762642, 40.639748], + [98.72199, 40.657911], + [98.689345, 40.691952], + [98.668403, 40.773128], + [98.569853, 40.746836], + [98.627751, 40.677884], + [98.344419, 40.568413], + [98.333332, 40.918903], + [98.25018, 40.93925], + [98.184891, 40.988056], + [98.142391, 41.001607], + [97.971776, 41.09774], + [97.903407, 41.168057], + [97.629314, 41.440498], + [97.613915, 41.477276], + [97.84674, 41.656379], + [97.653335, 41.986856], + [97.500582, 42.243894], + [97.371235, 42.457076], + [97.172903, 42.795257], + [96.968411, 42.756161], + [96.742361, 42.75704], + [96.386348, 42.727592], + [96.166458, 42.623314], + [96.103632, 42.604375], + [96.072219, 42.569566], + [96.02356, 42.542675], + [96.0174, 42.482239], + [95.978596, 42.436762], + [96.06606, 42.414674], + [96.042038, 42.352787], + [96.040806, 42.326688], + [96.178161, 42.21775], + [96.077147, 42.149457], + [96.13874, 42.05399], + [96.137509, 42.019765], + [96.117183, 41.985966], + [96.054973, 41.936124], + [95.998306, 41.906289], + [95.855408, 41.849699], + [95.801206, 41.848361], + [95.759322, 41.835878], + [95.65646, 41.826067], + [95.57146, 41.796181], + [95.445193, 41.719841], + [95.39407, 41.693481], + [95.335556, 41.644305], + [95.299831, 41.565994], + [95.247476, 41.61344], + [95.194505, 41.694821], + [95.199433, 41.719395], + [95.16494, 41.735474], + [95.135991, 41.772976], + [95.110738, 41.768513], + [95.011572, 41.726541], + [94.969072, 41.718948], + [94.861898, 41.668451], + [94.809543, 41.619256], + [94.750413, 41.538227], + [94.534219, 41.505966], + [94.184365, 41.268444], + [94.01067, 41.114875], + [93.908424, 40.983539], + [93.809874, 40.879548], + [93.820961, 40.793519], + [93.760599, 40.664721], + [93.506216, 40.648376], + [92.928465, 40.572504], + [92.920458, 40.391792], + [92.906907, 40.310609], + [92.796654, 40.153897], + [92.745531, 39.868331], + [92.687632, 39.657174], + [92.639589, 39.514196], + [92.52564, 39.368611], + [92.378431, 39.258411], + [92.339011, 39.236628], + [92.343938, 39.146181], + [92.366112, 39.096037], + [92.366728, 39.059335], + [92.41046, 39.03842], + [92.459119, 39.042604], + [92.459119, 39.063982], + [92.489916, 39.099753], + [92.545966, 39.111362], + [92.659299, 39.109969], + [92.765857, 39.136898], + [92.866871, 39.138754], + [92.889045, 39.160103], + [92.938936, 39.169848], + [92.978356, 39.143396], + [93.043029, 39.146645], + [93.115094, 39.17959], + [93.142196, 39.160567], + [93.131725, 39.108112], + [93.165601, 39.090928], + [93.198246, 39.045857], + [93.179152, 38.923977], + [93.237666, 38.916062], + [93.274007, 38.896036], + [93.453245, 38.915596], + [93.729186, 38.924443], + [93.834511, 38.867618], + [93.884403, 38.867618], + [93.884403, 38.826136], + [93.769838, 38.821007], + [93.756287, 38.807484], + [93.773533, 38.771099], + [93.800019, 38.750566], + [93.885018, 38.720689], + [93.95154, 38.715086], + [93.973098, 38.724891], + [94.281067, 38.7599], + [94.370379, 38.7627], + [94.511429, 38.445142], + [94.527443, 38.425922], + [94.527443, 38.365416], + [94.56132, 38.351807], + [94.582878, 38.36917], + [94.672805, 38.386998], + [94.812623, 38.385591], + [94.861282, 38.393565], + [94.884072, 38.414669], + [94.973999, 38.430142], + [95.045448, 38.418889], + [95.072549, 38.402476], + [95.122441, 38.417014], + [95.140919, 38.392158], + [95.185266, 38.379492], + [95.209904, 38.327868], + [95.229614, 38.330685], + [95.259179, 38.302981], + [95.315846, 38.318947], + [95.408236, 38.300163], + [95.440881, 38.310965], + [95.455664, 38.291709], + [95.487693, 38.314721], + [95.51849, 38.294997], + [95.585011, 38.343359], + [95.608417, 38.339134], + [95.671858, 38.388405], + [95.703887, 38.400131], + [95.723597, 38.378554], + [95.775952, 38.356031], + [95.83693, 38.344298], + [95.852945, 38.287481], + [95.89606, 38.2903], + [95.932401, 38.259291], + [95.93856, 38.237202], + [96.006929, 38.207582], + [96.06606, 38.173245], + [96.109175, 38.187358], + [96.221892, 38.149246], + [96.252689, 38.167599], + [96.264392, 38.145952], + [96.313051, 38.161952], + [96.301964, 38.183124], + [96.335841, 38.246132], + [96.378341, 38.277146], + [96.46334, 38.277616], + [96.665369, 38.23015], + [96.655514, 38.295936], + [96.638883, 38.307208], + [96.626564, 38.356031], + [96.698013, 38.422172], + [96.707868, 38.459203], + [96.6666, 38.483567], + [96.706637, 38.505582], + [96.780549, 38.504177], + [96.800259, 38.52759], + [96.767614, 38.552399], + [96.808882, 38.582346], + [96.7941, 38.608072], + [96.847071, 38.599186], + [96.876636, 38.580475], + [96.961019, 38.558015], + [97.055874, 38.594508], + [97.047251, 38.653888], + [97.057722, 38.67258], + [97.009063, 38.702477], + [97.023229, 38.755699], + [97.00044, 38.7613], + [96.987505, 38.793025], + [96.993664, 38.834993], + [96.983809, 38.869016], + [96.940693, 38.90768], + [96.938846, 38.95563], + [96.965331, 39.017034], + [96.95794, 39.041674], + [96.969643, 39.097895], + [97.012142, 39.142004], + [96.962251, 39.198144], + [97.017686, 39.208347], + [97.060186, 39.19768], + [97.14149, 39.199999], + [97.220946, 39.193042], + [97.315185, 39.164744], + [97.347213, 39.167528], + [97.371235, 39.140611], + [97.401416, 39.146645], + [97.458698, 39.117863], + [97.504894, 39.076527], + [97.58127, 39.052364], + [97.679205, 39.010524], + [97.701379, 38.963076], + [97.828878, 38.93003], + [97.875689, 38.898365], + [98.009348, 38.85923], + [98.029058, 38.834061], + [98.068478, 38.816344], + [98.091884, 38.786495], + [98.167645, 38.840121], + [98.242173, 38.880664], + [98.235398, 38.918855], + [98.276666, 38.963541], + [98.287753, 38.992386], + [98.280977, 39.027263], + [98.316702, 39.040744], + [98.383839, 39.029588], + [98.401086, 39.001688], + [98.432498, 38.996107], + [98.428187, 38.976104], + [98.457752, 38.952838], + [98.526737, 38.95563], + [98.584635, 38.93003], + [98.624056, 38.959353], + [98.612353, 38.977035], + [98.661628, 38.993782], + [98.70536, 39.043533], + [98.730613, 39.057011], + [98.743548, 39.086747], + [98.816845, 39.085818], + [98.818076, 39.064911], + [98.886446, 39.040744], + [98.903076, 39.012384], + [98.951735, 38.987735], + [99.054597, 38.97657], + [99.107568, 38.951907], + [99.071843, 38.921184], + [99.068764, 38.896968], + [99.141445, 38.852706], + [99.222133, 38.788827], + [99.291118, 38.765966], + [99.361951, 38.718354], + [99.375502, 38.684727], + [99.412458, 38.665571], + [99.450646, 38.60433], + [99.501769, 38.612281], + [99.52887, 38.546314], + [99.585537, 38.498556], + [99.63974, 38.474666], + [99.65945, 38.449361], + [99.727203, 38.415607], + [99.758, 38.410449], + [99.826985, 38.370109], + [99.960028, 38.320825], + [100.001912, 38.315191], + [100.049955, 38.283254], + [100.071513, 38.284663], + [100.117093, 38.253652], + [100.126332, 38.231561], + [100.182998, 38.222158], + [100.159592, 38.291239], + [100.163904, 38.328337], + [100.136803, 38.33444], + [100.093071, 38.407166], + [100.022238, 38.432017], + [100.001296, 38.467169], + [100.025933, 38.507923], + [100.064122, 38.518694], + [100.086911, 38.492936], + [100.113397, 38.497151], + [100.163288, 38.461546], + [100.24028, 38.441861], + [100.259374, 38.366355], + [100.301874, 38.388405], + [100.331439, 38.337257], + [100.318505, 38.329276], + [100.396729, 38.293118], + [100.424446, 38.307208], + [100.432453, 38.275267], + [100.459555, 38.2654], + [100.474953, 38.288891], + [100.516837, 38.272448], + [100.545786, 38.247072], + [100.595061, 38.242372], + [100.619083, 38.26587], + [100.71517, 38.253652], + [100.752126, 38.238612], + [100.825423, 38.158658], + [100.860531, 38.148305], + [100.913502, 38.17889], + [100.93814, 38.16007], + [100.91843, 38.129006], + [100.922125, 38.084741], + [100.888864, 38.056001], + [100.895024, 38.013107], + [100.91843, 37.999432], + [100.964009, 38.011221], + [101.077342, 37.941874], + [101.103211, 37.946593], + [101.114298, 37.92016], + [101.152486, 37.891356], + [101.159262, 37.86821], + [101.202994, 37.84742], + [101.276906, 37.83655], + [101.362522, 37.791162], + [101.382848, 37.822369], + [101.459224, 37.86632], + [101.551615, 37.835604], + [101.598427, 37.827569], + [101.670491, 37.754264], + [101.659405, 37.733441], + [101.791832, 37.696041], + [101.815853, 37.654357], + [101.854657, 37.664781], + [101.873135, 37.686569], + [101.946432, 37.728235], + [101.998787, 37.724921], + [102.036359, 37.685149], + [102.048678, 37.651515], + [102.035128, 37.627819], + [102.102265, 37.582304], + [102.131214, 37.54625], + [102.103497, 37.482641], + [102.125055, 37.48549], + [102.176794, 37.458892], + [102.19712, 37.420403], + [102.299981, 37.391404], + [102.29875, 37.370004], + [102.368351, 37.327662], + [102.428097, 37.308624], + [102.419474, 37.294343], + [102.45335, 37.271487], + [102.457662, 37.248147], + [102.490307, 37.223371], + [102.533422, 37.217176], + [102.578386, 37.17284], + [102.599944, 37.174748], + [102.642444, 37.099845], + [102.583314, 37.104618], + [102.488459, 37.078362], + [102.506321, 37.019134], + [102.450271, 36.968467], + [102.499546, 36.954599], + [102.526031, 36.928291], + [102.56114, 36.91968], + [102.587009, 36.869904], + [102.639364, 36.852666], + [102.720052, 36.767858], + [102.692335, 36.775528], + [102.639364, 36.732853], + [102.612879, 36.738129], + [102.601176, 36.710307], + [102.630741, 36.650793], + [102.684328, 36.619097], + [102.724364, 36.613813], + [102.714509, 36.599401], + [102.761936, 36.568645], + [102.734219, 36.562396], + [102.753313, 36.525855], + [102.793349, 36.497957], + [102.771791, 36.47438], + [102.829689, 36.365544], + [102.831537, 36.365544], + [102.838928, 36.345783], + [102.836465, 36.344819], + [102.845704, 36.331803], + [102.896827, 36.331803], + [102.922696, 36.298047], + [103.024942, 36.256556], + [103.021246, 36.232906], + [103.066826, 36.216974], + [103.048964, 36.199107], + [102.986754, 36.193312], + [102.965812, 36.151765], + [102.948566, 36.150798], + [102.941174, 36.104877], + [102.882044, 36.082632], + [102.932551, 36.048285], + [102.968276, 36.044414], + [102.951645, 36.021667], + [102.971971, 35.995525], + [102.942406, 35.92674], + [102.954725, 35.858864], + [102.94487, 35.829757], + [102.914073, 35.845282], + [102.81737, 35.850133], + [102.787189, 35.862745], + [102.739146, 35.821023], + [102.715125, 35.815685], + [102.686175, 35.771996], + [102.707733, 35.70496], + [102.744074, 35.657807], + [102.7644, 35.653431], + [102.763168, 35.612086], + [102.808747, 35.560496], + [102.746537, 35.545403], + [102.729291, 35.523487], + [102.782878, 35.527871], + [102.743458, 35.494745], + [102.695414, 35.528358], + [102.570995, 35.548324], + [102.531575, 35.580455], + [102.503241, 35.585322], + [102.49893, 35.545403], + [102.437952, 35.455268], + [102.447807, 35.437229], + [102.408387, 35.409431], + [102.314764, 35.434303], + [102.293822, 35.424063], + [102.287663, 35.36552], + [102.317844, 35.343067], + [102.311684, 35.31426], + [102.280887, 35.303028], + [102.3123, 35.282512], + [102.370199, 35.263946], + [102.365887, 35.235599], + [102.404075, 35.179366], + [102.346793, 35.164201], + [102.310452, 35.128967], + [102.29567, 35.071681], + [102.252554, 35.048657], + [102.218062, 35.057475], + [102.211286, 35.034937], + [102.176178, 35.032977], + [102.157699, 35.010923], + [102.133678, 35.014844], + [102.094874, 34.986901], + [102.048062, 34.910868], + [102.068388, 34.887798], + [101.985852, 34.90007], + [101.916867, 34.873561], + [101.923027, 34.835746], + [101.917483, 34.705964], + [101.919947, 34.621791], + [101.934729, 34.58731], + [101.956287, 34.582876], + [101.97415, 34.548871], + [102.001867, 34.538519], + [102.093026, 34.536547], + [102.139837, 34.50351], + [102.155852, 34.507456], + [102.169402, 34.457631], + [102.205743, 34.407777], + [102.259329, 34.355917], + [102.237156, 34.34307], + [102.237156, 34.34307], + [102.186649, 34.352952], + [102.149692, 34.271885], + [102.067772, 34.293642], + [102.062229, 34.227858], + [102.01357, 34.218456], + [102.030816, 34.190739], + [102.003099, 34.162022], + [101.965526, 34.167469], + [101.955055, 34.109514], + [101.897773, 34.133791], + [101.874367, 34.130323], + [101.851578, 34.153108], + [101.836795, 34.124378], + [101.788136, 34.131809], + [101.764114, 34.122892], + [101.736397, 34.080275], + [101.718535, 34.083249], + [101.703136, 34.119424], + [101.674187, 34.110506], + [101.6206, 34.178857], + [101.53868, 34.212022], + [101.492485, 34.195689], + [101.482014, 34.218951], + [101.417956, 34.227858], + [101.369913, 34.248143], + [101.327413, 34.24468], + [101.325565, 34.268423], + [101.268899, 34.278808], + [101.228863, 34.298586], + [101.235022, 34.325279], + [101.193754, 34.336646], + [101.178356, 34.320831], + [101.098284, 34.329233], + [101.054552, 34.322808], + [100.986799, 34.374689], + [100.951074, 34.38358], + [100.895024, 34.375183], + [100.868538, 34.332693], + [100.821727, 34.317371], + [100.798321, 34.260014], + [100.809408, 34.247153], + [100.764445, 34.178857], + [100.806329, 34.155584], + [100.848828, 34.089692], + [100.870386, 34.083744], + [100.880857, 34.036644], + [100.93506, 33.990013], + [100.927669, 33.975126], + [100.965857, 33.946832], + [100.994806, 33.891707], + [101.023139, 33.896178], + [101.054552, 33.863386], + [101.153718, 33.8445], + [101.153102, 33.823124], + [101.190675, 33.791796], + [101.186363, 33.741051], + [101.162957, 33.719649], + [101.177124, 33.685295], + [101.166653, 33.659894], + [101.217776, 33.669856], + [101.23687, 33.685793], + [101.302776, 33.657902], + [101.385312, 33.644949], + [101.424732, 33.655411], + [101.428427, 33.680315], + [101.501724, 33.702723], + [101.58426, 33.674339], + [101.585492, 33.645448], + [101.616905, 33.598603], + [101.611977, 33.565199], + [101.622448, 33.502343], + [101.718535, 33.494857], + [101.748716, 33.505337], + [101.769042, 33.538765], + [101.783208, 33.556721], + [101.831252, 33.554726], + [101.844186, 33.602591], + [101.884222, 33.578163], + [101.907012, 33.539264], + [101.906396, 33.48188], + [101.946432, 33.442937], + [101.915635, 33.425957], + [101.887302, 33.383991], + [101.877447, 33.314502], + [101.769658, 33.26898], + [101.770274, 33.248962], + [101.83002, 33.213921], + [101.841723, 33.184876], + [101.825708, 33.119239], + [101.865744, 33.103198], + [101.887302, 33.135778], + [101.921795, 33.153817], + [101.935345, 33.186879], + [101.99386, 33.1999], + [102.054838, 33.189884], + [102.08933, 33.204908], + [102.08933, 33.227439], + [102.117047, 33.288492], + [102.144765, 33.273983], + [102.160163, 33.242956], + [102.200815, 33.223434], + [102.217446, 33.247961], + [102.192192, 33.337005], + [102.218062, 33.349503], + [102.258098, 33.409472], + [102.296286, 33.413969], + [102.310452, 33.397982], + [102.368967, 33.41247], + [102.392988, 33.404477], + [102.447807, 33.454922], + [102.462589, 33.449429], + [102.461358, 33.501345], + [102.446575, 33.53228], + [102.477988, 33.543254], + [102.440416, 33.574673], + [102.346793, 33.605582], + [102.31538, 33.665374], + [102.342481, 33.725622], + [102.284583, 33.719151], + [102.324619, 33.754486], + [102.296286, 33.783838], + [102.243315, 33.786823], + [102.261177, 33.821136], + [102.25317, 33.861399], + [102.136142, 33.965199], + [102.16817, 33.983066], + [102.226069, 33.963214], + [102.248858, 33.98654], + [102.287047, 33.977607], + [102.315996, 33.993983], + [102.345561, 33.969666], + [102.392372, 33.971651], + [102.406539, 34.033172], + [102.437336, 34.087214], + [102.471213, 34.072839], + [102.511865, 34.086222], + [102.615958, 34.099604], + [102.649219, 34.080275], + [102.655994, 34.113478], + [102.598712, 34.14766], + [102.651067, 34.165983], + [102.664002, 34.192719], + [102.694799, 34.198659], + [102.728675, 34.235774], + [102.779798, 34.236764], + [102.798276, 34.272874], + [102.856791, 34.270895], + [102.85987, 34.301058], + [102.911609, 34.312923], + [102.949181, 34.292159], + [102.977515, 34.252595], + [102.973203, 34.205588], + [103.005848, 34.184798], + [103.052043, 34.195194], + [103.100087, 34.181828], + [103.124108, 34.162022], + [103.121644, 34.112487], + [103.178927, 34.079779], + [103.129652, 34.065899], + [103.119797, 34.03466], + [103.147514, 34.036644], + [103.157369, 33.998944], + [103.120413, 33.953286], + [103.1315, 33.931937], + [103.16476, 33.929454], + [103.181391, 33.900649], + [103.153673, 33.819147], + [103.165376, 33.805721], + [103.228202, 33.79478], + [103.24976, 33.814175], + [103.284868, 33.80224], + [103.278709, 33.774387], + [103.35447, 33.743539], + [103.434542, 33.752993], + [103.464723, 33.80224], + [103.518309, 33.807213], + [103.545411, 33.719649], + [103.520157, 33.678323], + [103.552186, 33.671351], + [103.563889, 33.699735], + [103.593454, 33.716164], + [103.645809, 33.708697], + [103.667983, 33.685793], + [103.690772, 33.69376], + [103.778236, 33.658898], + [103.861388, 33.682307], + [103.980264, 33.670852], + [104.046169, 33.686291], + [104.103452, 33.663381], + [104.176749, 33.5996], + [104.155191, 33.542755], + [104.180444, 33.472895], + [104.213089, 33.446932], + [104.22048, 33.404477], + [104.272219, 33.391486], + [104.292545, 33.336505], + [104.373849, 33.345004], + [104.420045, 33.327004], + [104.386168, 33.298497], + [104.333813, 33.315502], + [104.303632, 33.304499], + [104.323958, 33.26898], + [104.32827, 33.223934], + [104.351059, 33.158828], + [104.378161, 33.109214], + [104.337509, 33.038002], + [104.391711, 33.035493], + [104.426204, 33.010906], + [104.383704, 32.994343], + [104.378161, 32.953174], + [104.345516, 32.940117], + [104.288234, 32.942628], + [104.277147, 32.90244], + [104.294393, 32.835586], + [104.363994, 32.822511], + [104.458849, 32.748551], + [104.51182, 32.753585], + [104.526602, 32.728416], + [104.582653, 32.722374], + [104.592508, 32.695685], + [104.643015, 32.661935], + [104.696601, 32.673522], + [104.739717, 32.635228], + [104.795768, 32.643292], + [104.820405, 32.662943], + [104.845659, 32.653873], + [104.881999, 32.600951], + [104.925115, 32.607505], + [105.026745, 32.650346], + [105.0791, 32.637244], + [105.111128, 32.593893], + [105.185041, 32.617587], + [105.215222, 32.63674], + [105.219534, 32.666469], + [105.263265, 32.652362], + [105.297758, 32.656897], + [105.347033, 32.68259], + [105.368591, 32.712807], + [105.448663, 32.732946], + [105.454207, 32.767173], + [105.427721, 32.784281], + [105.396308, 32.85067], + [105.396308, 32.85067], + [105.38091, 32.876307], + [105.408011, 32.885857], + [105.414171, 32.922034], + [105.467757, 32.930071], + [105.49917, 32.911986], + [105.528119, 32.919019], + [105.565692, 32.906962], + [105.590329, 32.87681], + [105.638373, 32.879323], + [105.656851, 32.895405], + [105.735691, 32.905454], + [105.82685, 32.950663], + [105.861959, 32.939112], + [105.917393, 32.993841], + [105.926632, 33.042517], + [105.914929, 33.066092], + [105.934639, 33.112221], + [105.923552, 33.147805], + [105.897067, 33.146803], + [105.93156, 33.178365], + [105.968516, 33.154318], + [105.965436, 33.204407], + [105.917393, 33.237951], + [105.862574, 33.234447], + [105.799133, 33.258471], + [105.791741, 33.278486], + [105.752937, 33.291994], + [105.755401, 33.329004], + [105.709822, 33.382991], + [105.827466, 33.379993], + [105.837937, 33.410971], + [105.831162, 33.451926], + [105.842248, 33.489866], + [105.871198, 33.511325], + [105.902611, 33.556222], + [105.940183, 33.570684], + [105.971596, 33.613058], + [106.047356, 33.610067], + [106.086776, 33.617045], + [106.117573, 33.602591], + [106.108334, 33.569686], + [106.187174, 33.546746], + [106.237681, 33.564201], + [106.303587, 33.604585], + [106.35163, 33.587137], + [106.384891, 33.612061], + [106.447101, 33.613058], + [106.456956, 33.532779], + [106.540108, 33.512822], + [106.58076, 33.576169], + [106.575832, 33.631497], + [106.534564, 33.695254], + [106.482825, 33.707203], + [106.488369, 33.757969], + [106.461883, 33.789807], + [106.491448, 33.834559], + [106.475434, 33.875809], + [106.428007, 33.866368], + [106.41076, 33.909093], + [106.474202, 33.970659], + [106.471738, 34.024244], + [106.505615, 34.056479], + [106.501919, 34.105055], + [106.560434, 34.109514], + [106.585071, 34.149641], + [106.55797, 34.229837], + [106.5321, 34.254079], + [106.496376, 34.238248], + [106.526557, 34.292159], + [106.577064, 34.280786], + [106.589383, 34.253584], + [106.63373, 34.260014], + [106.652825, 34.24369], + [106.68239, 34.256057], + [106.705179, 34.299575], + [106.691013, 34.337635], + [106.717498, 34.369255], + [106.638042, 34.391481], + [106.610941, 34.454177], + [106.558586, 34.48822], + [106.513622, 34.498085], + [106.514238, 34.511894], + [106.455108, 34.531617], + [106.334384, 34.517811], + [106.341159, 34.568093], + [106.314058, 34.578934], + [106.419384, 34.643458], + [106.471122, 34.634102], + [106.442173, 34.675455], + [106.456956, 34.703996], + [106.487137, 34.715311], + [106.505615, 34.746789], + [106.539492, 34.745805], + [106.575216, 34.769897], + [106.550579, 34.82936], + [106.556122, 34.861285], + [106.527789, 34.876507], + [106.493296, 34.941289], + [106.484673, 34.983959], + [106.494528, 35.006021], + [106.494528, 35.006021], + [106.52163, 35.027587], + [106.541956, 35.083925], + [106.577064, 35.089312], + [106.615252, 35.071191], + [106.706411, 35.081966], + [106.710723, 35.100574], + [106.838222, 35.080007], + [106.901664, 35.094698], + [106.950323, 35.066782], + [106.990975, 35.068252], + [107.012533, 35.029547], + [107.08275, 35.024156], + [107.089526, 34.976604], + [107.119707, 34.950119], + [107.162206, 34.944233], + [107.189308, 34.893198], + [107.252749, 34.880925], + [107.286626, 34.931968], + [107.350068, 34.93393], + [107.369162, 34.917738], + [107.400575, 34.932949], + [107.455394, 34.916757], + [107.523763, 34.909886], + [107.564415, 34.968757], + [107.619849, 34.964834], + [107.638943, 34.935402], + [107.675284, 34.9511], + [107.741805, 34.953553], + [107.842203, 34.979056], + [107.863145, 34.999158], + [107.846515, 35.024646], + [107.814486, 35.024646], + [107.773218, 35.060904], + [107.773218, 35.060904], + [107.769523, 35.064333], + [107.769523, 35.064333], + [107.727639, 35.120157], + [107.715936, 35.168114], + [107.686371, 35.218], + [107.652494, 35.244886], + [107.667277, 35.257104], + [107.737494, 35.267366], + [107.745501, 35.311819], + [107.841587, 35.276649], + [107.867457, 35.256127], + [107.960464, 35.263457], + [107.949993, 35.245375], + [108.049159, 35.253683], + [108.094739, 35.280069], + [108.174811, 35.304981], + [108.221622, 35.296678], + [108.239484, 35.256127], + [108.296767, 35.267855], + [108.345426, 35.300586], + [108.36144, 35.279581], + [108.48894, 35.275184], + [108.547454, 35.304981], + [108.583178, 35.294724], + [108.614591, 35.328909], + [108.61028, 35.355271], + [108.631222, 35.418698], + [108.605968, 35.503028], + [108.625678, 35.537124], + [108.618287, 35.557088], + [108.539447, 35.605761], + [108.517889, 35.699615], + [108.533903, 35.746257], + [108.527744, 35.82442], + [108.499411, 35.872444], + [108.518505, 35.905414], + [108.562852, 35.921409], + [108.593649, 35.950967], + [108.652164, 35.94806], + [108.659555, 35.990683], + [108.688504, 36.021183], + [108.682345, 36.062316], + [108.712526, 36.138716], + [108.646004, 36.254143], + [108.641693, 36.359279], + [108.651548, 36.384818], + [108.618903, 36.433946], + [108.562852, 36.43876], + [108.510498, 36.47438], + [108.514809, 36.445501], + [108.495099, 36.422389], + [108.460606, 36.422871], + [108.408252, 36.45946], + [108.391621, 36.505654], + [108.365136, 36.519603], + [108.340498, 36.559032], + [108.262274, 36.549417], + [108.245644, 36.571048], + [108.210535, 36.577296], + [108.204992, 36.606607], + [108.204992, 36.606607], + [108.222854, 36.631105], + [108.1976, 36.630144], + [108.163724, 36.563839], + [108.092891, 36.587388], + [108.079956, 36.614294], + [108.060862, 36.592194], + [108.001732, 36.639269], + [108.02329, 36.647912], + [108.006659, 36.683435], + [107.938906, 36.655594], + [107.940754, 36.694953], + [107.914268, 36.720861], + [107.907493, 36.750118], + [107.866841, 36.766899], + [107.768291, 36.792783], + [107.742421, 36.811951], + [107.722095, 36.802367], + [107.670356, 36.83303], + [107.642023, 36.819137], + [107.5909, 36.836382], + [107.540393, 36.828718], + [107.533618, 36.867031], + [107.478183, 36.908196], + [107.365466, 36.905324], + [107.336517, 36.925899], + [107.310032, 36.912502], + [107.291554, 36.979463], + [107.291554, 36.979463], + [107.288474, 37.008143], + [107.288474, 37.008143], + [107.28601, 37.054963], + [107.268764, 37.099367], + [107.234887, 37.096503], + [107.181916, 37.143269], + [107.133873, 37.134681], + [107.095685, 37.115595], + [107.030395, 37.140883], + [107.031011, 37.108436], + [106.998367, 37.106527], + [106.905976, 37.151378], + [106.912135, 37.110345], + [106.891193, 37.098413], + [106.818512, 37.141838], + [106.776012, 37.158056], + [106.772933, 37.120367], + [106.750143, 37.09889], + [106.728585, 37.121321], + [106.687933, 37.12991], + [106.673151, 37.1113], + [106.6171, 37.135158], + [106.605397, 37.127524], + [106.645433, 37.064992], + [106.666991, 37.016745], + [106.646665, 37.000496], + [106.64297, 36.962729], + [106.594926, 36.967988], + [106.595542, 36.94025], + [106.540108, 36.984244], + [106.549347, 36.941685], + [106.601702, 36.918244], + [106.609709, 36.878521], + [106.609709, 36.878521], + [106.626955, 36.892403], + [106.637426, 36.867031], + [106.637426, 36.867031], + [106.657752, 36.820575], + [106.627571, 36.752995], + [106.644817, 36.72278], + [106.59431, 36.750118], + [106.514238, 36.715584], + [106.519782, 36.708868], + [106.519782, 36.708868], + [106.530869, 36.690154], + [106.490833, 36.685835], + [106.491448, 36.628703], + [106.444637, 36.624861], + [106.465579, 36.583063], + [106.444637, 36.557109], + [106.397826, 36.576816], + [106.392282, 36.556628], + [106.363949, 36.577296], + [106.37134, 36.549417], + [106.39721, 36.548455], + [106.455724, 36.496995], + [106.494528, 36.494589], + [106.523477, 36.468605], + [106.492064, 36.422389], + [106.510543, 36.379037], + [106.497608, 36.31348], + [106.470507, 36.306246], + [106.504383, 36.266207], + [106.54134, 36.25366], + [106.559202, 36.292259], + [106.647897, 36.259451], + [106.685469, 36.273445], + [106.698404, 36.244008], + [106.735976, 36.23725], + [106.772933, 36.212628], + [106.808657, 36.21118], + [106.833295, 36.229044], + [106.858548, 36.206834], + [106.858548, 36.206834], + [106.873947, 36.178338], + [106.873947, 36.178338], + [106.930613, 36.138716], + [106.925686, 36.115997], + [106.957715, 36.091337], + [106.940468, 36.064734], + [106.928149, 36.011502], + [106.94786, 35.988262], + [106.90228, 35.943699], + [106.93862, 35.952905], + [106.940468, 35.931101], + [106.912751, 35.93207], + [106.849925, 35.887476], + [106.927534, 35.810346], + [106.897353, 35.759856], + [106.868403, 35.771996], + [106.867171, 35.738485], + [106.819128, 35.7448], + [106.806193, 35.70982], + [106.750759, 35.725369], + [106.750759, 35.689408], + [106.674998, 35.728284], + [106.66268, 35.70739], + [106.633115, 35.714679], + [106.620796, 35.743829], + [106.595542, 35.727312], + [106.566593, 35.738971], + [106.506231, 35.737514] + ] + ], + [ + [ + [106.047356, 35.498155], + [106.048588, 35.488898], + [106.054132, 35.45478], + [106.071994, 35.463555], + [106.078769, 35.509848], + [106.047356, 35.498155] + ] + ], + [ + [ + [102.831537, 36.365544], + [102.829689, 36.365544], + [102.836465, 36.344819], + [102.838928, 36.345783], + [102.831537, 36.365544] + ] + ], + [ + [ + [106.073226, 35.447468], + [106.067682, 35.436254], + [106.073226, 35.420649], + [106.083081, 35.421624], + [106.073226, 35.447468] + ] + ], + [ + [ + [106.504383, 35.736057], + [106.506231, 35.737514], + [106.49268, 35.732656], + [106.498224, 35.732656], + [106.504383, 35.736057] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 630000, + "name": "青海省", + "center": [101.778916, 36.623178], + "centroid": [96.043533, 35.726403], + "childrenNum": 8, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 28, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [102.829689, 36.365544], + [102.771791, 36.47438], + [102.793349, 36.497957], + [102.753313, 36.525855], + [102.734219, 36.562396], + [102.761936, 36.568645], + [102.714509, 36.599401], + [102.724364, 36.613813], + [102.684328, 36.619097], + [102.630741, 36.650793], + [102.601176, 36.710307], + [102.612879, 36.738129], + [102.639364, 36.732853], + [102.692335, 36.775528], + [102.720052, 36.767858], + [102.639364, 36.852666], + [102.587009, 36.869904], + [102.56114, 36.91968], + [102.526031, 36.928291], + [102.499546, 36.954599], + [102.450271, 36.968467], + [102.506321, 37.019134], + [102.488459, 37.078362], + [102.583314, 37.104618], + [102.642444, 37.099845], + [102.599944, 37.174748], + [102.578386, 37.17284], + [102.533422, 37.217176], + [102.490307, 37.223371], + [102.457662, 37.248147], + [102.45335, 37.271487], + [102.419474, 37.294343], + [102.428097, 37.308624], + [102.368351, 37.327662], + [102.29875, 37.370004], + [102.299981, 37.391404], + [102.19712, 37.420403], + [102.176794, 37.458892], + [102.125055, 37.48549], + [102.103497, 37.482641], + [102.131214, 37.54625], + [102.102265, 37.582304], + [102.035128, 37.627819], + [102.048678, 37.651515], + [102.036359, 37.685149], + [101.998787, 37.724921], + [101.946432, 37.728235], + [101.873135, 37.686569], + [101.854657, 37.664781], + [101.815853, 37.654357], + [101.791832, 37.696041], + [101.659405, 37.733441], + [101.670491, 37.754264], + [101.598427, 37.827569], + [101.551615, 37.835604], + [101.459224, 37.86632], + [101.382848, 37.822369], + [101.362522, 37.791162], + [101.276906, 37.83655], + [101.202994, 37.84742], + [101.159262, 37.86821], + [101.152486, 37.891356], + [101.114298, 37.92016], + [101.103211, 37.946593], + [101.077342, 37.941874], + [100.964009, 38.011221], + [100.91843, 37.999432], + [100.895024, 38.013107], + [100.888864, 38.056001], + [100.922125, 38.084741], + [100.91843, 38.129006], + [100.93814, 38.16007], + [100.913502, 38.17889], + [100.860531, 38.148305], + [100.825423, 38.158658], + [100.752126, 38.238612], + [100.71517, 38.253652], + [100.619083, 38.26587], + [100.595061, 38.242372], + [100.545786, 38.247072], + [100.516837, 38.272448], + [100.474953, 38.288891], + [100.459555, 38.2654], + [100.432453, 38.275267], + [100.424446, 38.307208], + [100.396729, 38.293118], + [100.318505, 38.329276], + [100.331439, 38.337257], + [100.301874, 38.388405], + [100.259374, 38.366355], + [100.24028, 38.441861], + [100.163288, 38.461546], + [100.113397, 38.497151], + [100.086911, 38.492936], + [100.064122, 38.518694], + [100.025933, 38.507923], + [100.001296, 38.467169], + [100.022238, 38.432017], + [100.093071, 38.407166], + [100.136803, 38.33444], + [100.163904, 38.328337], + [100.159592, 38.291239], + [100.182998, 38.222158], + [100.126332, 38.231561], + [100.117093, 38.253652], + [100.071513, 38.284663], + [100.049955, 38.283254], + [100.001912, 38.315191], + [99.960028, 38.320825], + [99.826985, 38.370109], + [99.758, 38.410449], + [99.727203, 38.415607], + [99.65945, 38.449361], + [99.63974, 38.474666], + [99.585537, 38.498556], + [99.52887, 38.546314], + [99.501769, 38.612281], + [99.450646, 38.60433], + [99.412458, 38.665571], + [99.375502, 38.684727], + [99.361951, 38.718354], + [99.291118, 38.765966], + [99.222133, 38.788827], + [99.141445, 38.852706], + [99.068764, 38.896968], + [99.071843, 38.921184], + [99.107568, 38.951907], + [99.054597, 38.97657], + [98.951735, 38.987735], + [98.903076, 39.012384], + [98.886446, 39.040744], + [98.818076, 39.064911], + [98.816845, 39.085818], + [98.743548, 39.086747], + [98.730613, 39.057011], + [98.70536, 39.043533], + [98.661628, 38.993782], + [98.612353, 38.977035], + [98.624056, 38.959353], + [98.584635, 38.93003], + [98.526737, 38.95563], + [98.457752, 38.952838], + [98.428187, 38.976104], + [98.432498, 38.996107], + [98.401086, 39.001688], + [98.383839, 39.029588], + [98.316702, 39.040744], + [98.280977, 39.027263], + [98.287753, 38.992386], + [98.276666, 38.963541], + [98.235398, 38.918855], + [98.242173, 38.880664], + [98.167645, 38.840121], + [98.091884, 38.786495], + [98.068478, 38.816344], + [98.029058, 38.834061], + [98.009348, 38.85923], + [97.875689, 38.898365], + [97.828878, 38.93003], + [97.701379, 38.963076], + [97.679205, 39.010524], + [97.58127, 39.052364], + [97.504894, 39.076527], + [97.458698, 39.117863], + [97.401416, 39.146645], + [97.371235, 39.140611], + [97.347213, 39.167528], + [97.315185, 39.164744], + [97.220946, 39.193042], + [97.14149, 39.199999], + [97.060186, 39.19768], + [97.017686, 39.208347], + [96.962251, 39.198144], + [97.012142, 39.142004], + [96.969643, 39.097895], + [96.95794, 39.041674], + [96.965331, 39.017034], + [96.938846, 38.95563], + [96.940693, 38.90768], + [96.983809, 38.869016], + [96.993664, 38.834993], + [96.987505, 38.793025], + [97.00044, 38.7613], + [97.023229, 38.755699], + [97.009063, 38.702477], + [97.057722, 38.67258], + [97.047251, 38.653888], + [97.055874, 38.594508], + [96.961019, 38.558015], + [96.876636, 38.580475], + [96.847071, 38.599186], + [96.7941, 38.608072], + [96.808882, 38.582346], + [96.767614, 38.552399], + [96.800259, 38.52759], + [96.780549, 38.504177], + [96.706637, 38.505582], + [96.6666, 38.483567], + [96.707868, 38.459203], + [96.698013, 38.422172], + [96.626564, 38.356031], + [96.638883, 38.307208], + [96.655514, 38.295936], + [96.665369, 38.23015], + [96.46334, 38.277616], + [96.378341, 38.277146], + [96.335841, 38.246132], + [96.301964, 38.183124], + [96.313051, 38.161952], + [96.264392, 38.145952], + [96.252689, 38.167599], + [96.221892, 38.149246], + [96.109175, 38.187358], + [96.06606, 38.173245], + [96.006929, 38.207582], + [95.93856, 38.237202], + [95.932401, 38.259291], + [95.89606, 38.2903], + [95.852945, 38.287481], + [95.83693, 38.344298], + [95.775952, 38.356031], + [95.723597, 38.378554], + [95.703887, 38.400131], + [95.671858, 38.388405], + [95.608417, 38.339134], + [95.585011, 38.343359], + [95.51849, 38.294997], + [95.487693, 38.314721], + [95.455664, 38.291709], + [95.440881, 38.310965], + [95.408236, 38.300163], + [95.315846, 38.318947], + [95.259179, 38.302981], + [95.229614, 38.330685], + [95.209904, 38.327868], + [95.185266, 38.379492], + [95.140919, 38.392158], + [95.122441, 38.417014], + [95.072549, 38.402476], + [95.045448, 38.418889], + [94.973999, 38.430142], + [94.884072, 38.414669], + [94.861282, 38.393565], + [94.812623, 38.385591], + [94.672805, 38.386998], + [94.582878, 38.36917], + [94.56132, 38.351807], + [94.527443, 38.365416], + [94.527443, 38.425922], + [94.511429, 38.445142], + [94.370379, 38.7627], + [94.281067, 38.7599], + [93.973098, 38.724891], + [93.95154, 38.715086], + [93.885018, 38.720689], + [93.800019, 38.750566], + [93.773533, 38.771099], + [93.756287, 38.807484], + [93.769838, 38.821007], + [93.884403, 38.826136], + [93.884403, 38.867618], + [93.834511, 38.867618], + [93.729186, 38.924443], + [93.453245, 38.915596], + [93.274007, 38.896036], + [93.237666, 38.916062], + [93.179152, 38.923977], + [93.198246, 39.045857], + [93.165601, 39.090928], + [93.131725, 39.108112], + [93.142196, 39.160567], + [93.115094, 39.17959], + [93.043029, 39.146645], + [92.978356, 39.143396], + [92.938936, 39.169848], + [92.889045, 39.160103], + [92.866871, 39.138754], + [92.765857, 39.136898], + [92.659299, 39.109969], + [92.545966, 39.111362], + [92.489916, 39.099753], + [92.459119, 39.063982], + [92.459119, 39.042604], + [92.41046, 39.03842], + [92.416003, 39.010524], + [92.380279, 38.999828], + [92.263866, 39.002153], + [92.197961, 38.983548], + [92.173323, 38.960749], + [92.10865, 38.963541], + [91.966368, 38.930961], + [91.880752, 38.899297], + [91.87952, 38.884391], + [91.806223, 38.872744], + [91.694738, 38.86622], + [91.681188, 38.852706], + [91.501333, 38.815411], + [91.446515, 38.813546], + [91.298689, 38.746365], + [91.242639, 38.752433], + [91.188436, 38.73096], + [90.992567, 38.695003], + [90.970394, 38.697806], + [90.899561, 38.679588], + [90.724634, 38.658094], + [90.65996, 38.674449], + [90.619308, 38.664636], + [90.645794, 38.635191], + [90.606374, 38.610878], + [90.608837, 38.594508], + [90.560794, 38.593573], + [90.525685, 38.561291], + [90.463476, 38.556611], + [90.465323, 38.521971], + [90.427135, 38.493873], + [90.353222, 38.482162], + [90.315034, 38.501835], + [90.248513, 38.491531], + [90.130868, 38.494341], + [90.111774, 38.477945], + [90.111774, 38.418889], + [90.129636, 38.400131], + [90.179528, 38.396848], + [90.137644, 38.340543], + [90.280542, 38.238142], + [90.352607, 38.233441], + [90.361846, 38.300163], + [90.401882, 38.311434], + [90.531229, 38.319886], + [90.516446, 38.207111], + [90.519526, 37.730601], + [90.579272, 37.720661], + [90.586663, 37.703144], + [90.643946, 37.696988], + [90.777605, 37.648672], + [90.820104, 37.613599], + [90.854597, 37.604117], + [90.882314, 37.575664], + [90.865684, 37.53059], + [90.911879, 37.519674], + [90.958075, 37.477891], + [91.019669, 37.493088], + [91.073256, 37.475992], + [91.099741, 37.447965], + [91.113292, 37.387124], + [91.136081, 37.355734], + [91.134849, 37.324331], + [91.194596, 37.273868], + [91.1909, 37.205737], + [91.280211, 37.163779], + [91.286371, 37.105095], + [91.303617, 37.083136], + [91.291298, 37.042544], + [91.303617, 37.012444], + [91.216153, 37.010054], + [91.181045, 37.025345], + [91.133618, 37.007665], + [91.126842, 36.978507], + [91.051698, 36.96751], + [91.036915, 36.929727], + [90.983944, 36.913459], + [90.924198, 36.921115], + [90.853981, 36.915373], + [90.758511, 36.825844], + [90.732025, 36.825844], + [90.727098, 36.755872], + [90.754815, 36.721341], + [90.720938, 36.708868], + [90.706156, 36.658955], + [90.730793, 36.655594], + [90.72217, 36.620058], + [90.741264, 36.585947], + [90.810865, 36.585466], + [90.831191, 36.55807], + [90.905104, 36.560474], + [91.011662, 36.539801], + [91.035683, 36.529703], + [91.039995, 36.474861], + [91.028292, 36.443093], + [91.051698, 36.433946], + [91.026444, 36.323607], + [91.07264, 36.299012], + [91.051698, 36.238215], + [91.096045, 36.219871], + [91.09235, 36.163844], + [91.124994, 36.115514], + [91.081263, 36.088436], + [90.979017, 36.106811], + [90.922966, 36.028927], + [90.850285, 36.016827], + [90.815793, 36.035703], + [90.776373, 36.086501], + [90.659344, 36.13485], + [90.613149, 36.126632], + [90.534925, 36.147899], + [90.478258, 36.13195], + [90.424055, 36.133883], + [90.325505, 36.159496], + [90.23681, 36.160462], + [90.198006, 36.187516], + [90.130252, 36.2078], + [90.145651, 36.239181], + [90.058188, 36.255591], + [90.043405, 36.276822], + [90.003369, 36.278752], + [90.028006, 36.258486], + [90.019999, 36.213594], + [89.997825, 36.168193], + [89.944855, 36.140649], + [89.941159, 36.067637], + [89.914058, 36.079246], + [89.819819, 36.080697], + [89.766848, 36.073925], + [89.711414, 36.093272], + [89.688624, 36.091337], + [89.605472, 36.038123], + [89.474893, 36.022151], + [89.417611, 36.044897], + [89.404676, 36.016827], + [89.434857, 35.992136], + [89.428082, 35.917531], + [89.489676, 35.903475], + [89.554965, 35.873414], + [89.550654, 35.856924], + [89.62395, 35.859349], + [89.654747, 35.848193], + [89.707718, 35.849163], + [89.778551, 35.861775], + [89.801957, 35.848193], + [89.767464, 35.799183], + [89.782863, 35.773453], + [89.747138, 35.7516], + [89.748986, 35.66267], + [89.726196, 35.648082], + [89.765616, 35.599922], + [89.75145, 35.580942], + [89.71203, 35.581915], + [89.699711, 35.544916], + [89.720037, 35.501566], + [89.740979, 35.507412], + [89.765, 35.482563], + [89.739131, 35.468429], + [89.685544, 35.416259], + [89.658443, 35.425526], + [89.619639, 35.412357], + [89.58761, 35.383575], + [89.497067, 35.361128], + [89.516161, 35.330862], + [89.494603, 35.298632], + [89.531559, 35.276161], + [89.48598, 35.256616], + [89.450255, 35.223867], + [89.46935, 35.214577], + [89.519241, 35.133862], + [89.579603, 35.118688], + [89.593153, 35.104491], + [89.59069, 35.057965], + [89.560509, 34.938836], + [89.578987, 34.895162], + [89.670146, 34.887798], + [89.707102, 34.919701], + [89.747138, 34.903506], + [89.78779, 34.921664], + [89.821051, 34.902033], + [89.814891, 34.86816], + [89.838913, 34.865705], + [89.867862, 34.81069], + [89.825978, 34.796931], + [89.799493, 34.743838], + [89.732356, 34.732035], + [89.72558, 34.660689], + [89.74837, 34.641981], + [89.798877, 34.628686], + [89.777935, 34.574499], + [89.814891, 34.548871], + [89.823515, 34.455657], + [89.819819, 34.420614], + [89.799493, 34.39642], + [89.820435, 34.369255], + [89.858623, 34.359375], + [89.86663, 34.324785], + [89.825362, 34.293642], + [89.838297, 34.263477], + [89.816739, 34.16945], + [89.789638, 34.150632], + [89.760073, 34.152613], + [89.756993, 34.124874], + [89.71203, 34.131809], + [89.655979, 34.097126], + [89.656595, 34.057966], + [89.635037, 34.049537], + [89.684928, 33.990013], + [89.688008, 33.959739], + [89.718805, 33.946832], + [89.73174, 33.921509], + [89.795181, 33.865374], + [89.837065, 33.868853], + [89.899891, 33.80771], + [89.942391, 33.801246], + [89.902355, 33.758467], + [89.907282, 33.741051], + [89.983659, 33.725622], + [89.981195, 33.70322], + [90.008296, 33.687785], + [89.984275, 33.612061], + [90.01076, 33.553728], + [90.083441, 33.525295], + [90.088984, 33.478885], + [90.107463, 33.460913], + [90.22018, 33.437943], + [90.246665, 33.423959], + [90.332896, 33.310501], + [90.363077, 33.279487], + [90.405577, 33.260473], + [90.490577, 33.264977], + [90.562642, 33.229441], + [90.627315, 33.180368], + [90.704308, 33.135778], + [90.740032, 33.142293], + [90.803474, 33.114227], + [90.88293, 33.120241], + [90.902024, 33.083143], + [90.927894, 33.120241], + [91.001807, 33.11573], + [91.037531, 33.098686], + [91.072024, 33.113224], + [91.147784, 33.07211], + [91.161335, 33.108712], + [91.18782, 33.106206], + [91.226624, 33.141792], + [91.261733, 33.141291], + [91.311624, 33.108211], + [91.370138, 33.100691], + [91.436044, 33.066092], + [91.49579, 33.109214], + [91.535826, 33.10019], + [91.55492, 33.060074], + [91.583253, 33.0375], + [91.664557, 33.012913], + [91.685499, 32.989324], + [91.752637, 32.969242], + [91.799448, 32.942126], + [91.839484, 32.948152], + [91.857962, 32.90244], + [91.896766, 32.907967], + [91.955897, 32.8205], + [92.018722, 32.829552], + [92.038432, 32.860725], + [92.101874, 32.860222], + [92.145606, 32.885857], + [92.205352, 32.866255], + [92.227526, 32.821003], + [92.193649, 32.801889], + [92.211511, 32.788306], + [92.198577, 32.754591], + [92.255243, 32.720863], + [92.310062, 32.751571], + [92.343938, 32.738484], + [92.355641, 32.764657], + [92.411076, 32.748048], + [92.459119, 32.76365], + [92.484372, 32.745028], + [92.56814, 32.73194], + [92.574916, 32.741001], + [92.634662, 32.720863], + [92.667922, 32.73194], + [92.686401, 32.76516], + [92.756618, 32.743014], + [92.789262, 32.719856], + [92.822523, 32.729926], + [92.866871, 32.698203], + [92.933392, 32.719353], + [92.964189, 32.714821], + [93.00053, 32.741001], + [93.019624, 32.737477], + [93.023935, 32.703239], + [93.069515, 32.626156], + [93.087993, 32.63674], + [93.159442, 32.644803], + [93.176688, 32.6705], + [93.210565, 32.655385], + [93.239514, 32.662439], + [93.260456, 32.62666], + [93.300492, 32.619604], + [93.308499, 32.580278], + [93.33868, 32.5712], + [93.385492, 32.525294], + [93.411977, 32.558086], + [93.4631, 32.556069], + [93.476651, 32.504603], + [93.501904, 32.503593], + [93.516687, 32.47583], + [93.618933, 32.522771], + [93.651577, 32.571705], + [93.721795, 32.578261], + [93.75136, 32.56313], + [93.820345, 32.549511], + [93.851142, 32.50965], + [93.861613, 32.466237], + [93.90904, 32.463207], + [93.960163, 32.484917], + [93.978641, 32.459672], + [94.03038, 32.448057], + [94.049474, 32.469771], + [94.091974, 32.463207], + [94.137554, 32.433915], + [94.176974, 32.454117], + [94.196684, 32.51621], + [94.250886, 32.51722], + [94.292154, 32.502584], + [94.294002, 32.519743], + [94.350053, 32.533871], + [94.371611, 32.524789], + [94.395016, 32.594397], + [94.435052, 32.562626], + [94.463386, 32.572209], + [94.459074, 32.599439], + [94.522516, 32.595909], + [94.591501, 32.640772], + [94.614291, 32.673522], + [94.638312, 32.645307], + [94.737479, 32.587338], + [94.762116, 32.526303], + [94.78737, 32.522266], + [94.80708, 32.486431], + [94.852043, 32.463712], + [94.889616, 32.472295], + [94.912405, 32.41573], + [94.944434, 32.404109], + [94.988166, 32.422802], + [95.057151, 32.395014], + [95.075013, 32.376315], + [95.075013, 32.376315], + [95.081789, 32.384907], + [95.153853, 32.386423], + [95.218527, 32.397035], + [95.228382, 32.363678], + [95.261643, 32.348006], + [95.193274, 32.332331], + [95.096571, 32.322217], + [95.079325, 32.279726], + [95.10581, 32.258979], + [95.20744, 32.297433], + [95.214216, 32.321712], + [95.241317, 32.3207], + [95.239469, 32.287315], + [95.270266, 32.194683], + [95.270266, 32.194683], + [95.31523, 32.148585], + [95.366968, 32.151118], + [95.367584, 32.178982], + [95.406389, 32.182021], + [95.440265, 32.157705], + [95.454432, 32.061898], + [95.421171, 32.033999], + [95.454432, 32.007613], + [95.395918, 32.001523], + [95.360809, 31.95939], + [95.3682, 31.92892], + [95.408852, 31.918761], + [95.406389, 31.896915], + [95.456896, 31.801853], + [95.480301, 31.795749], + [95.511714, 31.750468], + [95.546823, 31.73978], + [95.580083, 31.76726], + [95.634286, 31.782523], + [95.779648, 31.748941], + [95.823995, 31.68225], + [95.853561, 31.714329], + [95.846169, 31.736218], + [95.89914, 31.81711], + [95.983524, 31.816601], + [95.989067, 31.78761], + [96.064828, 31.720438], + [96.135661, 31.70211], + [96.148595, 31.686324], + [96.156603, 31.602769], + [96.207726, 31.598691], + [96.221892, 31.647613], + [96.245298, 31.657802], + [96.252073, 31.697527], + [96.222508, 31.733164], + [96.231131, 31.749959], + [96.178161, 31.775401], + [96.183088, 31.835924], + [96.202798, 31.841008], + [96.214501, 31.876589], + [96.188632, 31.904028], + [96.220044, 31.905553], + [96.253305, 31.929936], + [96.288414, 31.919777], + [96.389428, 31.919777], + [96.407906, 31.845583], + [96.435623, 31.796258], + [96.468884, 31.769804], + [96.519391, 31.74945], + [96.56805, 31.711783], + [96.615477, 31.737236], + [96.661057, 31.705674], + [96.691854, 31.722474], + [96.722651, 31.686833], + [96.778701, 31.675629], + [96.790404, 31.698545], + [96.840295, 31.720438], + [96.799027, 31.792188], + [96.765767, 31.819144], + [96.760223, 31.860325], + [96.794716, 31.869474], + [96.81073, 31.894375], + [96.776238, 31.935015], + [96.753448, 31.944156], + [96.742977, 32.001016], + [96.722651, 32.013195], + [96.824281, 32.007613], + [96.868629, 31.964975], + [96.863085, 31.996448], + [96.894498, 32.013703], + [96.941925, 31.986297], + [96.965947, 32.008628], + [96.935766, 32.048203], + [97.006599, 32.067984], + [97.028773, 32.04871], + [97.127323, 32.044145], + [97.169823, 32.032984], + [97.188301, 32.055304], + [97.214786, 32.042623], + [97.233881, 32.063927], + [97.201852, 32.090296], + [97.219714, 32.109054], + [97.258518, 32.072041], + [97.308409, 32.076605], + [97.293011, 32.096887], + [97.313953, 32.130342], + [97.271453, 32.139971], + [97.264062, 32.182527], + [97.299786, 32.294904], + [97.32196, 32.303503], + [97.371235, 32.273148], + [97.415583, 32.296421], + [97.424822, 32.322723], + [97.387865, 32.427349], + [97.341054, 32.440987], + [97.388481, 32.501575], + [97.334895, 32.514192], + [97.332431, 32.542448], + [97.3583, 32.563635], + [97.374315, 32.546484], + [97.411887, 32.575235], + [97.448843, 32.586833], + [97.463626, 32.55506], + [97.50243, 32.530844], + [97.540618, 32.536899], + [97.670582, 32.51722], + [97.684132, 32.530339], + [97.730944, 32.527312], + [97.700763, 32.53488], + [97.616995, 32.586329], + [97.607756, 32.614059], + [97.543698, 32.62162], + [97.535075, 32.638252], + [97.48272, 32.654377], + [97.42359, 32.70475], + [97.429133, 32.714318], + [97.386018, 32.77925], + [97.392793, 32.828546], + [97.376163, 32.886359], + [97.347829, 32.895907], + [97.375547, 32.956689], + [97.438372, 32.976271], + [97.523988, 32.988822], + [97.499966, 33.011408], + [97.542466, 33.035995], + [97.517213, 33.097683], + [97.487032, 33.107209], + [97.498119, 33.137783], + [97.487648, 33.168346], + [97.548626, 33.203907], + [97.607756, 33.263976], + [97.622538, 33.337005], + [97.676125, 33.341004], + [97.754349, 33.409972], + [97.674893, 33.432949], + [97.625618, 33.461412], + [97.552321, 33.465906], + [97.511669, 33.520805], + [97.523372, 33.577166], + [97.450075, 33.582152], + [97.415583, 33.605582], + [97.435293, 33.682307], + [97.418046, 33.728608], + [97.422974, 33.754984], + [97.406344, 33.795278], + [97.373083, 33.817655], + [97.371851, 33.842015], + [97.398336, 33.848477], + [97.395257, 33.889224], + [97.460546, 33.887236], + [97.503662, 33.912073], + [97.52214, 33.903133], + [97.601596, 33.929951], + [97.629314, 33.919523], + [97.660111, 33.956264], + [97.652719, 33.998448], + [97.70261, 34.036644], + [97.665654, 34.126855], + [97.766668, 34.158555], + [97.789458, 34.182818], + [97.789458, 34.182818], + [97.796849, 34.199154], + [97.796849, 34.199154], + [97.8104, 34.207568], + [97.898479, 34.209548], + [97.95453, 34.190739], + [98.028442, 34.122892], + [98.098043, 34.122892], + [98.158405, 34.107037], + [98.206449, 34.08424], + [98.258188, 34.083249], + [98.344419, 34.094648], + [98.399854, 34.085231], + [98.396774, 34.053008], + [98.428187, 34.029204], + [98.440506, 33.981577], + [98.415252, 33.956761], + [98.425723, 33.913066], + [98.407245, 33.867362], + [98.434962, 33.843009], + [98.463295, 33.848477], + [98.492861, 33.796272], + [98.494092, 33.768915], + [98.51873, 33.77389], + [98.539672, 33.746525], + [98.582788, 33.731595], + [98.610505, 33.682805], + [98.6567, 33.64744], + [98.61728, 33.637476], + [98.622824, 33.610067], + [98.652389, 33.595114], + [98.648077, 33.548741], + [98.678258, 33.522801], + [98.725686, 33.503341], + [98.742316, 33.477887], + [98.736157, 33.406975], + [98.779888, 33.370497], + [98.759562, 33.276985], + [98.802062, 33.270481], + [98.804526, 33.219428], + [98.858728, 33.150811], + [98.92217, 33.118738], + [98.967134, 33.115229], + [98.971445, 33.098185], + [99.014561, 33.081137], + [99.024416, 33.094675], + [99.090322, 33.079131], + [99.124814, 33.046028], + [99.196263, 33.035493], + [99.214741, 32.991332], + [99.235067, 32.982296], + [99.24677, 32.924043], + [99.268944, 32.878318], + [99.353944, 32.885354], + [99.376118, 32.899927], + [99.45311, 32.862233], + [99.558436, 32.839106], + [99.589233, 32.789312], + [99.640355, 32.790822], + [99.646515, 32.774721], + [99.700718, 32.76667], + [99.717964, 32.732443], + [99.760464, 32.769689], + [99.766623, 32.826032], + [99.791877, 32.883344], + [99.764159, 32.924545], + [99.788181, 32.956689], + [99.805427, 32.940619], + [99.851007, 32.941623], + [99.877492, 32.993339], + [99.877492, 33.045527], + [99.947709, 32.986814], + [99.956332, 32.948152], + [100.038252, 32.929066], + [100.029629, 32.895907], + [100.064738, 32.895907], + [100.123252, 32.837095], + [100.117093, 32.802392], + [100.139266, 32.724388], + [100.088143, 32.668988], + [100.109701, 32.640268], + [100.189773, 32.630692], + [100.208252, 32.606497], + [100.229809, 32.650346], + [100.231041, 32.696189], + [100.258759, 32.742511], + [100.339447, 32.719353], + [100.399193, 32.756101], + [100.378251, 32.698707], + [100.420135, 32.73194], + [100.450932, 32.694678], + [100.470026, 32.694678], + [100.516837, 32.632204], + [100.54517, 32.569687], + [100.603069, 32.553547], + [100.645568, 32.526303], + [100.657887, 32.546484], + [100.661583, 32.616075], + [100.673286, 32.628172], + [100.710242, 32.610026], + [100.71209, 32.645307], + [100.690532, 32.678056], + [100.77122, 32.643795], + [100.834046, 32.648835], + [100.887633, 32.632708], + [100.93198, 32.600447], + [100.956618, 32.621116], + [100.99727, 32.627668], + [101.030531, 32.660424], + [101.077342, 32.68259], + [101.124769, 32.658408], + [101.157414, 32.661431], + [101.22332, 32.725898], + [101.237486, 32.825026], + [101.223935, 32.855698], + [101.178356, 32.892892], + [101.124153, 32.909976], + [101.134624, 32.95217], + [101.129081, 32.989324], + [101.183899, 32.984304], + [101.171581, 33.009902], + [101.184515, 33.041514], + [101.146327, 33.056563], + [101.143863, 33.086151], + [101.169733, 33.10019], + [101.11553, 33.194893], + [101.124769, 33.221431], + [101.156798, 33.236449], + [101.182668, 33.26948], + [101.217776, 33.256469], + [101.297232, 33.262475], + [101.381616, 33.153316], + [101.393935, 33.157826], + [101.386543, 33.207412], + [101.403174, 33.225436], + [101.487557, 33.226938], + [101.515275, 33.192889], + [101.557775, 33.167344], + [101.633535, 33.101193], + [101.661252, 33.135778], + [101.653861, 33.162835], + [101.709912, 33.21292], + [101.735781, 33.279987], + [101.677883, 33.297497], + [101.64955, 33.323004], + [101.663716, 33.383991], + [101.695745, 33.433948], + [101.769042, 33.45592], + [101.777665, 33.533776], + [101.769042, 33.538765], + [101.748716, 33.505337], + [101.718535, 33.494857], + [101.622448, 33.502343], + [101.611977, 33.565199], + [101.616905, 33.598603], + [101.585492, 33.645448], + [101.58426, 33.674339], + [101.501724, 33.702723], + [101.428427, 33.680315], + [101.424732, 33.655411], + [101.385312, 33.644949], + [101.302776, 33.657902], + [101.23687, 33.685793], + [101.217776, 33.669856], + [101.166653, 33.659894], + [101.177124, 33.685295], + [101.162957, 33.719649], + [101.186363, 33.741051], + [101.190675, 33.791796], + [101.153102, 33.823124], + [101.153718, 33.8445], + [101.054552, 33.863386], + [101.023139, 33.896178], + [100.994806, 33.891707], + [100.965857, 33.946832], + [100.927669, 33.975126], + [100.93506, 33.990013], + [100.880857, 34.036644], + [100.870386, 34.083744], + [100.848828, 34.089692], + [100.806329, 34.155584], + [100.764445, 34.178857], + [100.809408, 34.247153], + [100.798321, 34.260014], + [100.821727, 34.317371], + [100.868538, 34.332693], + [100.895024, 34.375183], + [100.951074, 34.38358], + [100.986799, 34.374689], + [101.054552, 34.322808], + [101.098284, 34.329233], + [101.178356, 34.320831], + [101.193754, 34.336646], + [101.235022, 34.325279], + [101.228863, 34.298586], + [101.268899, 34.278808], + [101.325565, 34.268423], + [101.327413, 34.24468], + [101.369913, 34.248143], + [101.417956, 34.227858], + [101.482014, 34.218951], + [101.492485, 34.195689], + [101.53868, 34.212022], + [101.6206, 34.178857], + [101.674187, 34.110506], + [101.703136, 34.119424], + [101.718535, 34.083249], + [101.736397, 34.080275], + [101.764114, 34.122892], + [101.788136, 34.131809], + [101.836795, 34.124378], + [101.851578, 34.153108], + [101.874367, 34.130323], + [101.897773, 34.133791], + [101.955055, 34.109514], + [101.965526, 34.167469], + [102.003099, 34.162022], + [102.030816, 34.190739], + [102.01357, 34.218456], + [102.062229, 34.227858], + [102.067772, 34.293642], + [102.149692, 34.271885], + [102.186649, 34.352952], + [102.237156, 34.34307], + [102.237156, 34.34307], + [102.259329, 34.355917], + [102.205743, 34.407777], + [102.169402, 34.457631], + [102.155852, 34.507456], + [102.139837, 34.50351], + [102.093026, 34.536547], + [102.001867, 34.538519], + [101.97415, 34.548871], + [101.956287, 34.582876], + [101.934729, 34.58731], + [101.919947, 34.621791], + [101.917483, 34.705964], + [101.923027, 34.835746], + [101.916867, 34.873561], + [101.985852, 34.90007], + [102.068388, 34.887798], + [102.048062, 34.910868], + [102.094874, 34.986901], + [102.133678, 35.014844], + [102.157699, 35.010923], + [102.176178, 35.032977], + [102.211286, 35.034937], + [102.218062, 35.057475], + [102.252554, 35.048657], + [102.29567, 35.071681], + [102.310452, 35.128967], + [102.346793, 35.164201], + [102.404075, 35.179366], + [102.365887, 35.235599], + [102.370199, 35.263946], + [102.3123, 35.282512], + [102.280887, 35.303028], + [102.311684, 35.31426], + [102.317844, 35.343067], + [102.287663, 35.36552], + [102.293822, 35.424063], + [102.314764, 35.434303], + [102.408387, 35.409431], + [102.447807, 35.437229], + [102.437952, 35.455268], + [102.49893, 35.545403], + [102.503241, 35.585322], + [102.531575, 35.580455], + [102.570995, 35.548324], + [102.695414, 35.528358], + [102.743458, 35.494745], + [102.782878, 35.527871], + [102.729291, 35.523487], + [102.746537, 35.545403], + [102.808747, 35.560496], + [102.763168, 35.612086], + [102.7644, 35.653431], + [102.744074, 35.657807], + [102.707733, 35.70496], + [102.686175, 35.771996], + [102.715125, 35.815685], + [102.739146, 35.821023], + [102.787189, 35.862745], + [102.81737, 35.850133], + [102.914073, 35.845282], + [102.94487, 35.829757], + [102.954725, 35.858864], + [102.942406, 35.92674], + [102.971971, 35.995525], + [102.951645, 36.021667], + [102.968276, 36.044414], + [102.932551, 36.048285], + [102.882044, 36.082632], + [102.941174, 36.104877], + [102.948566, 36.150798], + [102.965812, 36.151765], + [102.986754, 36.193312], + [103.048964, 36.199107], + [103.066826, 36.216974], + [103.021246, 36.232906], + [103.024942, 36.256556], + [102.922696, 36.298047], + [102.896827, 36.331803], + [102.845704, 36.331803], + [102.836465, 36.344819], + [102.829689, 36.365544] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 640000, + "name": "宁夏回族自治区", + "center": [106.278179, 38.46637], + "centroid": [106.169866, 37.291332], + "childrenNum": 5, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 29, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [107.268764, 37.099367], + [107.281083, 37.127047], + [107.306952, 37.100799], + [107.334669, 37.138975], + [107.336517, 37.165687], + [107.317423, 37.200017], + [107.270612, 37.229089], + [107.309416, 37.239095], + [107.273075, 37.29101], + [107.257677, 37.337179], + [107.282931, 37.437036], + [107.284162, 37.481691], + [107.345756, 37.518725], + [107.369162, 37.58752], + [107.330358, 37.584201], + [107.311264, 37.609806], + [107.361155, 37.613125], + [107.422133, 37.665254], + [107.389488, 37.671413], + [107.387024, 37.691305], + [107.425828, 37.684201], + [107.484959, 37.706458], + [107.499125, 37.765619], + [107.57119, 37.776499], + [107.599523, 37.791162], + [107.620465, 37.776026], + [107.646335, 37.805349], + [107.659269, 37.844112], + [107.65003, 37.86443], + [107.560719, 37.893717], + [107.49235, 37.944706], + [107.448618, 37.933378], + [107.411662, 37.948009], + [107.440611, 37.995659], + [107.3938, 38.014993], + [107.33159, 38.086625], + [107.240431, 38.111586], + [107.19054, 38.153953], + [107.138801, 38.161011], + [107.119091, 38.134185], + [107.071047, 38.138892], + [107.051337, 38.122886], + [107.010069, 38.120532], + [106.942316, 38.132302], + [106.858548, 38.156306], + [106.779092, 38.171833], + [106.737824, 38.197706], + [106.654672, 38.22921], + [106.627571, 38.232501], + [106.555506, 38.263521], + [106.482209, 38.319417], + [106.599854, 38.389812], + [106.647897, 38.470917], + [106.66268, 38.601524], + [106.709491, 38.718821], + [106.756302, 38.748699], + [106.837606, 38.847579], + [106.954019, 38.941202], + [106.971881, 39.026333], + [106.96757, 39.054688], + [106.933693, 39.076527], + [106.878874, 39.091392], + [106.859164, 39.107648], + [106.825288, 39.19397], + [106.795723, 39.214375], + [106.790795, 39.241263], + [106.806193, 39.277407], + [106.806809, 39.318625], + [106.781556, 39.371849], + [106.751375, 39.381564], + [106.683622, 39.357506], + [106.643586, 39.357969], + [106.602318, 39.37555], + [106.556122, 39.322329], + [106.525325, 39.308439], + [106.511774, 39.272311], + [106.402753, 39.291767], + [106.280181, 39.262118], + [106.29558, 39.167992], + [106.285109, 39.146181], + [106.251232, 39.131327], + [106.192718, 39.142932], + [106.170544, 39.163352], + [106.145907, 39.153142], + [106.096631, 39.084889], + [106.078153, 39.026333], + [106.087392, 39.006339], + [106.060907, 38.96866], + [106.021487, 38.953769], + [105.97098, 38.909077], + [105.992538, 38.857366], + [105.909386, 38.791159], + [105.908154, 38.737496], + [105.88598, 38.716953], + [105.894603, 38.696405], + [105.852719, 38.641735], + [105.874277, 38.593105], + [105.856415, 38.569714], + [105.863806, 38.53508], + [105.836705, 38.476071], + [105.850872, 38.443736], + [105.827466, 38.432486], + [105.835473, 38.387467], + [105.821307, 38.366824], + [105.86627, 38.296406], + [105.842248, 38.240962], + [105.802828, 38.220277], + [105.775111, 38.186887], + [105.76772, 38.121474], + [105.780655, 38.084741], + [105.840401, 38.004147], + [105.799749, 37.939986], + [105.80406, 37.862068], + [105.760944, 37.799674], + [105.677177, 37.771769], + [105.622358, 37.777919], + [105.616199, 37.722555], + [105.598952, 37.699356], + [105.467141, 37.695094], + [105.4037, 37.710246], + [105.315004, 37.702197], + [105.221998, 37.677097], + [105.187505, 37.657674], + [105.111128, 37.633981], + [105.027977, 37.580881], + [104.866601, 37.566651], + [104.805007, 37.539133], + [104.623305, 37.522522], + [104.433595, 37.515402], + [104.419429, 37.511604], + [104.407726, 37.464592], + [104.322726, 37.44844], + [104.287002, 37.428007], + [104.298705, 37.414223], + [104.365226, 37.418026], + [104.437907, 37.445589], + [104.448994, 37.42468], + [104.499501, 37.421353], + [104.521059, 37.43466], + [104.679971, 37.408044], + [104.662109, 37.367626], + [104.713848, 37.329566], + [104.673812, 37.317668], + [104.651022, 37.290534], + [104.624536, 37.298627], + [104.600515, 37.242907], + [104.638087, 37.201923], + [104.717543, 37.208597], + [104.776673, 37.246718], + [104.85613, 37.211933], + [104.864753, 37.17284], + [104.888158, 37.15901], + [104.914644, 37.097935], + [104.954064, 37.077407], + [104.95468, 37.040156], + [105.004571, 37.035378], + [105.03968, 37.007187], + [105.05939, 37.022956], + [105.128991, 36.996194], + [105.165331, 36.99476], + [105.185657, 36.942164], + [105.178882, 36.892403], + [105.244787, 36.894796], + [105.279896, 36.86751], + [105.303302, 36.820575], + [105.334714, 36.80093], + [105.340874, 36.764502], + [105.319932, 36.742924], + [105.275584, 36.752515], + [105.272505, 36.739567], + [105.218302, 36.730455], + [105.201056, 36.700711], + [105.225693, 36.664716], + [105.22015, 36.631105], + [105.261418, 36.602764], + [105.2762, 36.563358], + [105.252179, 36.553263], + [105.281744, 36.522489], + [105.322396, 36.535954], + [105.362432, 36.496514], + [105.363048, 36.443093], + [105.398156, 36.430575], + [105.401236, 36.369881], + [105.425873, 36.330357], + [105.455439, 36.321678], + [105.476381, 36.293224], + [105.45975, 36.268137], + [105.460366, 36.223733], + [105.478844, 36.213111], + [105.515185, 36.147415], + [105.491163, 36.101009], + [105.430801, 36.10391], + [105.406163, 36.074409], + [105.343954, 36.033767], + [105.324859, 35.941761], + [105.350113, 35.875839], + [105.39754, 35.857409], + [105.371055, 35.844312], + [105.38091, 35.792873], + [105.408627, 35.822479], + [105.428953, 35.819082], + [105.432033, 35.787533], + [105.457286, 35.771511], + [105.481924, 35.727312], + [105.595873, 35.715651], + [105.667322, 35.749657], + [105.70243, 35.733142], + [105.759097, 35.724883], + [105.740618, 35.698643], + [105.723988, 35.725854], + [105.690727, 35.698643], + [105.722756, 35.673366], + [105.713517, 35.650513], + [105.759097, 35.634464], + [105.762176, 35.602841], + [105.800365, 35.564878], + [105.816379, 35.575101], + [105.847176, 35.490359], + [105.868734, 35.540046], + [105.900147, 35.54735], + [106.017175, 35.519103], + [106.023335, 35.49377], + [106.047356, 35.498155], + [106.078769, 35.509848], + [106.071994, 35.463555], + [106.06953, 35.458193], + [106.073842, 35.45478], + [106.073226, 35.450393], + [106.071378, 35.449418], + [106.073226, 35.447468], + [106.083081, 35.421624], + [106.113262, 35.361616], + [106.129892, 35.393333], + [106.173008, 35.437716], + [106.196414, 35.409919], + [106.237681, 35.409431], + [106.241377, 35.358687], + [106.319601, 35.265411], + [106.363333, 35.238532], + [106.368261, 35.273718], + [106.415688, 35.276161], + [106.472354, 35.310842], + [106.501304, 35.364056], + [106.503767, 35.415284], + [106.483441, 35.450393], + [106.490217, 35.480613], + [106.465579, 35.481101], + [106.440941, 35.52641], + [106.460036, 35.578995], + [106.47913, 35.575101], + [106.460036, 35.643705], + [106.434782, 35.688436], + [106.49268, 35.732656], + [106.506231, 35.737514], + [106.566593, 35.738971], + [106.595542, 35.727312], + [106.620796, 35.743829], + [106.633115, 35.714679], + [106.66268, 35.70739], + [106.674998, 35.728284], + [106.750759, 35.689408], + [106.750759, 35.725369], + [106.806193, 35.70982], + [106.819128, 35.7448], + [106.867171, 35.738485], + [106.868403, 35.771996], + [106.897353, 35.759856], + [106.927534, 35.810346], + [106.849925, 35.887476], + [106.912751, 35.93207], + [106.940468, 35.931101], + [106.93862, 35.952905], + [106.90228, 35.943699], + [106.94786, 35.988262], + [106.928149, 36.011502], + [106.940468, 36.064734], + [106.957715, 36.091337], + [106.925686, 36.115997], + [106.930613, 36.138716], + [106.873947, 36.178338], + [106.873947, 36.178338], + [106.858548, 36.206834], + [106.858548, 36.206834], + [106.833295, 36.229044], + [106.808657, 36.21118], + [106.772933, 36.212628], + [106.735976, 36.23725], + [106.698404, 36.244008], + [106.685469, 36.273445], + [106.647897, 36.259451], + [106.559202, 36.292259], + [106.54134, 36.25366], + [106.504383, 36.266207], + [106.470507, 36.306246], + [106.497608, 36.31348], + [106.510543, 36.379037], + [106.492064, 36.422389], + [106.523477, 36.468605], + [106.494528, 36.494589], + [106.455724, 36.496995], + [106.39721, 36.548455], + [106.37134, 36.549417], + [106.363949, 36.577296], + [106.392282, 36.556628], + [106.397826, 36.576816], + [106.444637, 36.557109], + [106.465579, 36.583063], + [106.444637, 36.624861], + [106.491448, 36.628703], + [106.490833, 36.685835], + [106.530869, 36.690154], + [106.519782, 36.708868], + [106.519782, 36.708868], + [106.514238, 36.715584], + [106.59431, 36.750118], + [106.644817, 36.72278], + [106.627571, 36.752995], + [106.657752, 36.820575], + [106.637426, 36.867031], + [106.637426, 36.867031], + [106.626955, 36.892403], + [106.609709, 36.878521], + [106.609709, 36.878521], + [106.601702, 36.918244], + [106.549347, 36.941685], + [106.540108, 36.984244], + [106.595542, 36.94025], + [106.594926, 36.967988], + [106.64297, 36.962729], + [106.646665, 37.000496], + [106.666991, 37.016745], + [106.645433, 37.064992], + [106.605397, 37.127524], + [106.6171, 37.135158], + [106.673151, 37.1113], + [106.687933, 37.12991], + [106.728585, 37.121321], + [106.750143, 37.09889], + [106.772933, 37.120367], + [106.776012, 37.158056], + [106.818512, 37.141838], + [106.891193, 37.098413], + [106.912135, 37.110345], + [106.905976, 37.151378], + [106.998367, 37.106527], + [107.031011, 37.108436], + [107.030395, 37.140883], + [107.095685, 37.115595], + [107.133873, 37.134681], + [107.181916, 37.143269], + [107.234887, 37.096503], + [107.268764, 37.099367] + ] + ], + [ + [ + [106.048588, 35.488898], + [105.897683, 35.451368], + [105.894603, 35.413821], + [106.002393, 35.438692], + [106.034422, 35.469404], + [106.054132, 35.45478], + [106.048588, 35.488898] + ] + ], + [ + [ + [106.073842, 35.45478], + [106.06953, 35.458193], + [106.071378, 35.449418], + [106.073226, 35.450393], + [106.073842, 35.45478] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 650000, + "name": "新疆维吾尔自治区", + "center": [87.617733, 43.792818], + "centroid": [85.294711, 41.371801], + "childrenNum": 24, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 30, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [96.386348, 42.727592], + [96.363558, 42.900562], + [95.921314, 43.229789], + [95.880046, 43.28035], + [95.857872, 43.417436], + [95.735916, 43.597569], + [95.705735, 43.67077], + [95.645373, 43.787966], + [95.623199, 43.855756], + [95.527113, 44.007466], + [95.426099, 44.009618], + [95.377439, 44.025972], + [95.326932, 44.028554], + [95.35157, 44.090054], + [95.355882, 44.166087], + [95.376208, 44.227444], + [95.4107, 44.245024], + [95.43041, 44.281882], + [95.41378, 44.298589], + [95.238853, 44.277169], + [95.1286, 44.269884], + [94.998637, 44.253169], + [94.945666, 44.292592], + [94.826174, 44.320001], + [94.768275, 44.34055], + [94.722696, 44.34055], + [94.673421, 44.397021], + [94.606283, 44.448311], + [94.557008, 44.462408], + [94.470777, 44.509373], + [94.390705, 44.521749], + [94.359292, 44.515775], + [94.329727, 44.582734], + [94.279836, 44.603617], + [94.227481, 44.645785], + [94.215162, 44.667921], + [94.152336, 44.684944], + [94.066105, 44.732154], + [93.723642, 44.865498], + [93.716251, 44.894334], + [93.613389, 44.926546], + [93.509296, 44.968055], + [93.434767, 44.955351], + [93.376869, 44.985412], + [93.314659, 44.995147], + [93.314043, 44.980333], + [93.252449, 44.991761], + [93.174225, 45.015458], + [93.100312, 45.007419], + [93.062124, 45.018419], + [93.002377, 45.009958], + [92.932776, 45.017573], + [92.922921, 45.03703], + [92.884117, 45.046756], + [92.847777, 45.038721], + [92.779407, 45.050561], + [92.683937, 45.02561], + [92.547814, 45.018419], + [92.501003, 45.001072], + [92.414155, 45.018419], + [92.348866, 45.014188], + [92.315605, 45.028994], + [92.240461, 45.015881], + [92.100026, 45.081417], + [92.056911, 45.086911], + [91.885679, 45.078882], + [91.803144, 45.082685], + [91.694738, 45.065357], + [91.561695, 45.075501], + [91.500101, 45.103809], + [91.448978, 45.156586], + [91.429268, 45.156586], + [91.37753, 45.11099], + [91.33503, 45.129571], + [91.242023, 45.13717], + [91.230936, 45.153632], + [91.195827, 45.159118], + [91.17119, 45.199616], + [91.129922, 45.21606], + [91.050466, 45.208892], + [91.007966, 45.218589], + [90.96177, 45.201303], + [90.881698, 45.192025], + [90.866916, 45.209314], + [90.897713, 45.249776], + [90.877387, 45.280946], + [90.831807, 45.300313], + [90.804706, 45.29484], + [90.813329, 45.32851], + [90.773909, 45.405874], + [90.772677, 45.432338], + [90.723402, 45.464667], + [90.671047, 45.487747], + [90.676591, 45.582488], + [90.714779, 45.728895], + [90.799778, 45.834905], + [90.890937, 45.921566], + [91.028292, 46.023054], + [91.014741, 46.06667], + [91.021517, 46.121038], + [90.98456, 46.160431], + [90.94822, 46.219262], + [90.955611, 46.233752], + [90.900177, 46.31235], + [90.983328, 46.374734], + [90.996263, 46.419309], + [91.025828, 46.444057], + [91.038147, 46.500936], + [91.060937, 46.516999], + [91.079415, 46.558989], + [91.068328, 46.579149], + [91.017821, 46.58244], + [91.036299, 46.670393], + [91.054161, 46.717598], + [91.019053, 46.766402], + [90.992567, 46.769682], + [90.992567, 46.790583], + [90.942676, 46.82581], + [90.958075, 46.879425], + [90.929742, 46.893331], + [90.92235, 46.938707], + [90.901408, 46.960768], + [90.830575, 46.995883], + [90.767134, 46.992617], + [90.691989, 47.080717], + [90.653801, 47.111681], + [90.579888, 47.198364], + [90.56141, 47.206903], + [90.521374, 47.2845], + [90.488113, 47.317374], + [90.526301, 47.379007], + [90.507823, 47.400076], + [90.468403, 47.404937], + [90.459164, 47.43895], + [90.474562, 47.462422], + [90.468403, 47.497611], + [90.398186, 47.547724], + [90.376012, 47.603036], + [90.346447, 47.637324], + [90.384635, 47.644179], + [90.331665, 47.681663], + [90.216484, 47.70543], + [90.180144, 47.72516], + [90.13518, 47.723147], + [90.07605, 47.777469], + [90.070506, 47.820483], + [90.086521, 47.86547], + [90.066195, 47.883534], + [90.040941, 47.874704], + [89.960253, 47.885942], + [89.957789, 47.842982], + [89.86971, 47.834144], + [89.761921, 47.835751], + [89.735435, 47.89758], + [89.651052, 47.913627], + [89.645508, 47.947711], + [89.595617, 47.973359], + [89.599313, 48.015811], + [89.569132, 48.037825], + [89.498299, 48.02822], + [89.38127, 48.046227], + [89.359712, 48.026219], + [89.308589, 48.021816], + [89.282104, 47.994189], + [89.231597, 47.98017], + [89.156452, 47.996992], + [89.078228, 47.98698], + [89.044967, 48.009806], + [89.027105, 48.051028], + [88.953808, 48.090618], + [88.939026, 48.115396], + [88.824461, 48.107005], + [88.79736, 48.133772], + [88.721599, 48.160526], + [88.700657, 48.180881], + [88.668628, 48.171303], + [88.638447, 48.183674], + [88.601491, 48.221567], + [88.594716, 48.259831], + [88.575006, 48.277757], + [88.605803, 48.337863], + [88.573774, 48.351785], + [88.573158, 48.369679], + [88.535586, 48.368884], + [88.523267, 48.403461], + [88.503557, 48.412996], + [88.462289, 48.392335], + [88.438267, 48.393528], + [88.360659, 48.433251], + [88.363123, 48.460641], + [88.318159, 48.478497], + [88.229464, 48.498329], + [88.196819, 48.493967], + [88.151855, 48.526478], + [88.130297, 48.521721], + [88.10874, 48.545895], + [88.041602, 48.548272], + [87.973233, 48.575997], + [87.96153, 48.599353], + [88.010805, 48.618742], + [88.02682, 48.65315], + [88.089645, 48.69504], + [88.090877, 48.71992], + [88.064392, 48.712813], + [88.029283, 48.750313], + [87.96153, 48.773588], + [87.93874, 48.757809], + [87.872219, 48.799612], + [87.826639, 48.800795], + [87.803234, 48.824835], + [87.829103, 48.825623], + [87.792147, 48.849258], + [87.78106, 48.872094], + [87.742256, 48.881146], + [87.760118, 48.925992], + [87.793995, 48.927565], + [87.814321, 48.945256], + [87.87653, 48.949186], + [87.871603, 48.963726], + [87.911639, 48.979833], + [87.883922, 48.993971], + [87.883306, 49.023806], + [87.835263, 49.054406], + [87.858052, 49.07362], + [87.844502, 49.090084], + [87.867291, 49.108892], + [87.845733, 49.146096], + [87.82048, 49.148445], + [87.821096, 49.173883], + [87.793379, 49.18249], + [87.762582, 49.172709], + [87.700372, 49.175839], + [87.67635, 49.15549], + [87.602437, 49.152359], + [87.563017, 49.142572], + [87.517438, 49.145704], + [87.49588, 49.132001], + [87.511894, 49.10184], + [87.43675, 49.075188], + [87.388707, 49.097921], + [87.304939, 49.112418], + [87.239033, 49.114376], + [87.211932, 49.140615], + [87.112766, 49.15549], + [87.088128, 49.133567], + [87.000049, 49.142572], + [86.953853, 49.131218], + [86.887948, 49.132001], + [86.854071, 49.109284], + [86.84976, 49.066563], + [86.836209, 49.051269], + [86.772151, 49.02773], + [86.732115, 48.994757], + [86.730267, 48.959797], + [86.757985, 48.894919], + [86.782006, 48.887049], + [86.821426, 48.850439], + [86.818963, 48.831139], + [86.770303, 48.810255], + [86.754289, 48.78463], + [86.780774, 48.731369], + [86.771535, 48.717156], + [86.70255, 48.666195], + [86.693311, 48.64366], + [86.640956, 48.629027], + [86.635413, 48.612016], + [86.594761, 48.576789], + [86.579978, 48.538763], + [86.416138, 48.481671], + [86.38103, 48.49357], + [86.305269, 48.491984], + [86.270161, 48.452307], + [86.225813, 48.432456], + [86.053966, 48.441192], + [85.916612, 48.438015], + [85.791576, 48.418954], + [85.758315, 48.403064], + [85.695489, 48.335078], + [85.695489, 48.302445], + [85.678243, 48.266205], + [85.633895, 48.232731], + [85.622193, 48.202824], + [85.587084, 48.191654], + [85.576613, 48.15853], + [85.55136, 48.127781], + [85.551975, 48.081423], + [85.531649, 48.046227], + [85.547048, 48.008205], + [85.617881, 47.550552], + [85.614801, 47.498015], + [85.685018, 47.428829], + [85.701649, 47.384275], + [85.675779, 47.321837], + [85.701033, 47.28856], + [85.682555, 47.249982], + [85.682555, 47.222757], + [85.641903, 47.18413], + [85.582772, 47.142626], + [85.547048, 47.096609], + [85.545816, 47.057891], + [85.441106, 47.063191], + [85.355491, 47.054629], + [85.325926, 47.044842], + [85.276651, 47.068898], + [85.213825, 47.041172], + [85.175637, 46.997924], + [85.102956, 46.968936], + [85.082014, 46.939933], + [84.987159, 46.918272], + [84.979768, 46.883106], + [84.95513, 46.861013], + [84.934188, 46.863878], + [84.867051, 46.927673], + [84.849189, 46.957092], + [84.781435, 46.979962], + [84.748175, 47.009759], + [84.699515, 47.008535], + [84.668718, 46.995067], + [84.563393, 46.991801], + [84.506726, 46.97302], + [84.425422, 47.008943], + [84.37122, 46.993434], + [84.336727, 47.00527], + [84.2893, 46.994658], + [84.195061, 47.003638], + [84.150098, 46.977512], + [84.086656, 46.965261], + [84.038613, 46.973428], + [84.002888, 46.990576], + [83.951765, 46.98731], + [83.932671, 46.970161], + [83.88586, 46.982003], + [83.766367, 47.026896], + [83.69923, 47.015472], + [83.700462, 47.032199], + [83.576042, 47.059114], + [83.566803, 47.080717], + [83.53847, 47.083977], + [83.463325, 47.132042], + [83.418978, 47.119012], + [83.370318, 47.178436], + [83.324739, 47.167858], + [83.306261, 47.179656], + [83.257602, 47.173147], + [83.221877, 47.186977], + [83.207094, 47.213814], + [83.17445, 47.218286], + [83.15474, 47.236168], + [83.108544, 47.221944], + [83.02724, 47.21544], + [83.031552, 47.168265], + [82.993364, 47.065229], + [82.937929, 47.014248], + [82.923762, 46.932169], + [82.876335, 46.823762], + [82.878183, 46.797138], + [82.829524, 46.772551], + [82.788872, 46.677784], + [82.774089, 46.600124], + [82.726662, 46.494756], + [82.609017, 46.294985], + [82.518474, 46.153798], + [82.461808, 45.97982], + [82.401446, 45.972333], + [82.342932, 45.935303], + [82.336156, 45.882418], + [82.349707, 45.822811], + [82.340468, 45.772742], + [82.289961, 45.71636], + [82.288729, 45.655321], + [82.266555, 45.620172], + [82.281954, 45.53891], + [82.448257, 45.461309], + [82.546808, 45.426038], + [82.60101, 45.346178], + [82.58746, 45.224069], + [82.562822, 45.204676], + [82.487061, 45.181058], + [82.344779, 45.219011], + [82.294272, 45.247669], + [82.206809, 45.236713], + [82.109491, 45.211422], + [82.091012, 45.222383], + [82.09594, 45.249776], + [82.052824, 45.255674], + [81.993078, 45.237978], + [81.921013, 45.233342], + [81.879745, 45.284314], + [81.832318, 45.319673], + [81.78797, 45.3836], + [81.677101, 45.35459], + [81.645072, 45.359216], + [81.582863, 45.336503], + [81.575471, 45.30789], + [81.536667, 45.304101], + [81.52866, 45.285999], + [81.462754, 45.264099], + [81.437501, 45.28263], + [81.398697, 45.275471], + [81.382066, 45.257781], + [81.327864, 45.260729], + [81.284748, 45.23882], + [81.236705, 45.247248], + [81.175111, 45.227863], + [81.170183, 45.211001], + [81.111669, 45.218168], + [81.080872, 45.182745], + [81.024821, 45.162916], + [80.966307, 45.168402], + [80.93551, 45.160384], + [80.897938, 45.127459], + [80.862214, 45.127037], + [80.816634, 45.152788], + [80.731634, 45.156164], + [80.686055, 45.129148], + [80.599207, 45.105921], + [80.519135, 45.108878], + [80.493882, 45.127037], + [80.445839, 45.097895], + [80.443991, 45.077614], + [80.404571, 45.049293], + [80.358375, 45.040836], + [80.328194, 45.070007], + [80.291854, 45.06578], + [80.24381, 45.031532], + [80.195767, 45.030686], + [80.144644, 45.059017], + [80.136021, 45.041259], + [80.111999, 45.052675], + [80.060876, 45.026033], + [80.056565, 45.011227], + [79.98142, 44.964244], + [79.951855, 44.957892], + [79.944464, 44.937985], + [79.887798, 44.90917], + [79.969102, 44.877797], + [79.953703, 44.849377], + [79.991891, 44.830281], + [79.999283, 44.793768], + [80.087978, 44.817122], + [80.115695, 44.815424], + [80.169898, 44.84471], + [80.18776, 44.825612], + [80.178521, 44.796741], + [80.200695, 44.756808], + [80.238883, 44.7228], + [80.313412, 44.704938], + [80.400259, 44.628751], + [80.411962, 44.605321], + [80.350368, 44.484615], + [80.383013, 44.401297], + [80.399027, 44.30587], + [80.413194, 44.264741], + [80.400875, 44.198704], + [80.407034, 44.149772], + [80.3941, 44.127009], + [80.449534, 44.078017], + [80.458773, 44.047054], + [80.457541, 43.981203], + [80.485259, 43.95579], + [80.475404, 43.938124], + [80.511128, 43.906657], + [80.522215, 43.816473], + [80.75504, 43.494329], + [80.761199, 43.446554], + [80.746417, 43.439167], + [80.735946, 43.389609], + [80.686055, 43.333916], + [80.69283, 43.32042], + [80.777214, 43.308227], + [80.769207, 43.265535], + [80.788917, 43.242433], + [80.789533, 43.201876], + [80.804315, 43.178314], + [80.79446, 43.137277], + [80.752576, 43.148194], + [80.73225, 43.131163], + [80.706997, 43.143828], + [80.650946, 43.147321], + [80.593048, 43.133347], + [80.556092, 43.104515], + [80.482795, 43.06955], + [80.416889, 43.05687], + [80.378701, 43.031502], + [80.397795, 42.996933], + [80.487106, 42.948766], + [80.5912, 42.923354], + [80.602903, 42.894424], + [80.503737, 42.882146], + [80.450766, 42.861971], + [80.407034, 42.834767], + [80.338049, 42.831695], + [80.280151, 42.838278], + [80.262289, 42.828623], + [80.259209, 42.790865], + [80.225948, 42.713083], + [80.228412, 42.692852], + [80.179753, 42.670415], + [80.163738, 42.629919], + [80.180985, 42.590718], + [80.221637, 42.533415], + [80.265368, 42.502097], + [80.225948, 42.485769], + [80.206238, 42.431462], + [80.239499, 42.389927], + [80.229028, 42.358536], + [80.283847, 42.320493], + [80.272144, 42.281984], + [80.29247, 42.259842], + [80.28631, 42.233261], + [80.233339, 42.210215], + [80.168666, 42.200462], + [80.163738, 42.152563], + [80.139717, 42.151232], + [80.16805, 42.096635], + [80.193303, 42.081535], + [80.14218, 42.03488], + [80.089826, 42.047325], + [79.923522, 42.042436], + [79.852689, 42.015319], + [79.854537, 41.984186], + [79.822508, 41.963275], + [79.776313, 41.89248], + [79.724574, 41.896935], + [79.640806, 41.884907], + [79.616784, 41.856385], + [79.550879, 41.834094], + [79.500988, 41.835432], + [79.457256, 41.847915], + [79.415372, 41.836769], + [79.356242, 41.795735], + [79.326061, 41.809565], + [79.276786, 41.78101], + [79.271858, 41.767174], + [79.21704, 41.725648], + [79.138199, 41.722968], + [79.10925, 41.697503], + [79.043345, 41.681414], + [79.021787, 41.657273], + [78.99407, 41.664427], + [78.957729, 41.65146], + [78.891824, 41.597777], + [78.86657, 41.593749], + [78.825302, 41.560173], + [78.739071, 41.555695], + [78.696571, 41.54181], + [78.707042, 41.522098], + [78.675629, 41.50238], + [78.650375, 41.467411], + [78.580774, 41.481759], + [78.527188, 41.440947], + [78.454507, 41.412228], + [78.391681, 41.408189], + [78.385522, 41.394721], + [78.338094, 41.397415], + [78.324544, 41.384395], + [78.235232, 41.399211], + [78.163783, 41.383497], + [78.149617, 41.368228], + [78.165015, 41.340825], + [78.136682, 41.279239], + [78.129291, 41.228398], + [78.094798, 41.224347], + [77.972842, 41.173013], + [77.905089, 41.185174], + [77.836104, 41.153189], + [77.814546, 41.13426], + [77.807155, 41.091876], + [77.829328, 41.059394], + [77.796068, 41.049014], + [77.780669, 41.022832], + [77.737553, 41.032313], + [77.684583, 41.00793], + [77.654402, 41.016059], + [77.597119, 41.005221], + [77.591576, 40.992122], + [77.540453, 41.006575], + [77.476395, 40.999349], + [77.473931, 41.022832], + [77.415417, 41.038633], + [77.363062, 41.04089], + [77.296541, 41.004769], + [77.236795, 41.027798], + [77.169041, 41.009285], + [77.108063, 41.038181], + [77.091433, 41.062553], + [77.023064, 41.059394], + [77.002122, 41.073381], + [76.940528, 41.028701], + [76.885709, 41.027347], + [76.85368, 40.97631], + [76.817956, 40.975406], + [76.761905, 40.954167], + [76.741579, 40.912119], + [76.731724, 40.818887], + [76.693536, 40.779472], + [76.646725, 40.759983], + [76.646725, 40.73686], + [76.676906, 40.696036], + [76.654732, 40.652917], + [76.657196, 40.620218], + [76.611, 40.601591], + [76.601145, 40.578868], + [76.556798, 40.542495], + [76.543247, 40.513837], + [76.539551, 40.464226], + [76.508754, 40.429613], + [76.470566, 40.422779], + [76.442233, 40.391336], + [76.390494, 40.37766], + [76.381871, 40.39088], + [76.333212, 40.343459], + [76.327668, 40.391336], + [76.283321, 40.415034], + [76.279625, 40.439179], + [76.22419, 40.401819], + [76.176147, 40.381307], + [76.144118, 40.393615], + [76.081293, 40.39635], + [76.048648, 40.388601], + [76.048648, 40.357141], + [76.026474, 40.355317], + [75.986438, 40.381763], + [75.932235, 40.339353], + [75.921764, 40.291439], + [75.890351, 40.30924], + [75.84046, 40.312434], + [75.831221, 40.327492], + [75.785642, 40.301025], + [75.739446, 40.299199], + [75.709265, 40.280939], + [75.688323, 40.343915], + [75.669845, 40.363982], + [75.686475, 40.418223], + [75.717272, 40.443278], + [75.733287, 40.474242], + [75.646439, 40.516567], + [75.631041, 40.548862], + [75.627345, 40.605226], + [75.636584, 40.624306], + [75.599628, 40.659727], + [75.550353, 40.64883], + [75.467817, 40.599773], + [75.432093, 40.563412], + [75.355716, 40.537947], + [75.292274, 40.483802], + [75.268869, 40.483802], + [75.242383, 40.448743], + [75.206659, 40.447833], + [75.13521, 40.463315], + [75.102565, 40.44009], + [75.051442, 40.449654], + [75.021877, 40.466958], + [74.995392, 40.455119], + [74.963363, 40.464681], + [74.891914, 40.507467], + [74.844486, 40.521117], + [74.819233, 40.505647], + [74.814921, 40.461039], + [74.795211, 40.443278], + [74.908544, 40.338897], + [74.862965, 40.32658], + [74.824776, 40.344371], + [74.700357, 40.346195], + [74.697893, 40.310153], + [74.673255, 40.278656], + [74.618437, 40.27957], + [74.577169, 40.260391], + [74.534669, 40.207851], + [74.485394, 40.182251], + [74.433039, 40.13148], + [74.356662, 40.089371], + [74.316626, 40.106767], + [74.280902, 40.09807], + [74.26304, 40.125074], + [74.126301, 40.104479], + [74.113366, 40.086624], + [74.023439, 40.085251], + [74.008041, 40.050901], + [73.943367, 40.016076], + [73.980324, 40.004617], + [73.910722, 39.934443], + [73.907027, 39.873843], + [73.845433, 39.831115], + [73.841737, 39.756163], + [73.905795, 39.741899], + [73.924273, 39.722108], + [73.953838, 39.600018], + [73.916266, 39.586644], + [73.914418, 39.564041], + [73.883621, 39.540969], + [73.893476, 39.528046], + [73.868223, 39.482794], + [73.836194, 39.472169], + [73.745651, 39.462005], + [73.6471, 39.474479], + [73.61076, 39.465702], + [73.592898, 39.412087], + [73.502355, 39.383877], + [73.554094, 39.350102], + [73.554709, 39.295935], + [73.542391, 39.269531], + [73.564564, 39.266288], + [73.580579, 39.237555], + [73.623079, 39.235237], + [73.639709, 39.220402], + [73.657571, 39.166136], + [73.688368, 39.154999], + [73.719781, 39.108112], + [73.720397, 39.071881], + [73.743187, 39.029588], + [73.780143, 39.026798], + [73.820179, 39.041674], + [73.839889, 39.008199], + [73.846665, 38.962145], + [73.826339, 38.916993], + [73.767824, 38.941202], + [73.742571, 38.933754], + [73.70931, 38.893241], + [73.699455, 38.857832], + [73.729636, 38.837324], + [73.769056, 38.775765], + [73.757353, 38.719755], + [73.809092, 38.634256], + [73.799237, 38.610878], + [73.852208, 38.584217], + [73.89902, 38.579071], + [73.926121, 38.536016], + [74.011736, 38.52478], + [74.034526, 38.541634], + [74.090577, 38.542102], + [74.068403, 38.585621], + [74.088113, 38.610878], + [74.11275, 38.611345], + [74.147859, 38.676785], + [74.229779, 38.656224], + [74.353583, 38.655757], + [74.421952, 38.647812], + [74.455829, 38.632853], + [74.506336, 38.637528], + [74.546988, 38.607604], + [74.613509, 38.593105], + [74.639995, 38.599653], + [74.717603, 38.542102], + [74.78474, 38.538357], + [74.821697, 38.491062], + [74.862965, 38.484035], + [74.868508, 38.403883], + [74.834015, 38.361193], + [74.789668, 38.324581], + [74.806914, 38.285602], + [74.793363, 38.271039], + [74.816769, 38.215576], + [74.80445, 38.167128], + [74.821697, 38.10311], + [74.879595, 38.021122], + [74.92579, 38.01735], + [74.911008, 37.966884], + [74.919015, 37.908357], + [74.936877, 37.876241], + [74.917167, 37.845057], + [74.989848, 37.797783], + [75.006478, 37.770823], + [74.949196, 37.725395], + [74.923327, 37.717347], + [74.920863, 37.684675], + [74.891914, 37.668097], + [74.940573, 37.559061], + [75.000935, 37.53059], + [75.002167, 37.511604], + [75.035428, 37.500685], + [75.078543, 37.511129], + [75.090862, 37.486915], + [75.129666, 37.459367], + [75.153072, 37.414223], + [75.125971, 37.388075], + [75.140137, 37.355258], + [75.125971, 37.322427], + [75.078543, 37.318144], + [75.018181, 37.293867], + [74.927022, 37.277678], + [74.911008, 37.233378], + [74.816153, 37.216699], + [74.800139, 37.248147], + [74.753943, 37.281011], + [74.727458, 37.282916], + [74.665864, 37.23576], + [74.642458, 37.261485], + [74.598727, 37.258151], + [74.578401, 37.231472], + [74.54514, 37.2491], + [74.511263, 37.240048], + [74.477387, 37.19954], + [74.487858, 37.161871], + [74.465068, 37.147085], + [74.496481, 37.116072], + [74.498944, 37.072155], + [74.530357, 37.082182], + [74.56793, 37.032512], + [74.617205, 37.043499], + [74.632603, 37.066425], + [74.70898, 37.084569], + [74.739161, 37.028212], + [74.792747, 37.027257], + [74.806914, 37.054485], + [74.84695, 37.056873], + [74.84387, 37.0134], + [74.86974, 36.990458], + [74.893762, 36.939772], + [74.938725, 36.94312], + [74.927638, 36.978029], + [75.005862, 36.99476], + [75.032348, 37.016745], + [75.063145, 37.006231], + [75.172166, 37.013877], + [75.16847, 36.991892], + [75.244847, 36.963207], + [75.288579, 36.974682], + [75.345861, 36.960816], + [75.413614, 36.954599], + [75.396368, 36.904367], + [75.430245, 36.873255], + [75.434556, 36.83303], + [75.425933, 36.778883], + [75.458578, 36.720861], + [75.504773, 36.743404], + [75.536802, 36.729975], + [75.537418, 36.773131], + [75.588541, 36.762584], + [75.634121, 36.771693], + [75.724048, 36.750597], + [75.8072, 36.707908], + [75.871257, 36.666636], + [75.947018, 36.590752], + [75.924228, 36.566242], + [75.991981, 36.505654], + [76.035097, 36.409386], + [75.991365, 36.35205], + [75.998757, 36.312034], + [76.055423, 36.252695], + [76.060967, 36.225182], + [76.011691, 36.229044], + [76.016619, 36.165294], + [75.96796, 36.159013], + [75.936547, 36.13485], + [75.949482, 36.070056], + [75.982742, 36.031347], + [76.028322, 36.016827], + [76.044336, 36.026991], + [76.097307, 36.022635], + [76.117017, 35.975186], + [76.16506, 35.908807], + [76.146582, 35.839946], + [76.160133, 35.82442], + [76.221727, 35.823449], + [76.228502, 35.837035], + [76.298719, 35.841401], + [76.365857, 35.82442], + [76.369552, 35.86323], + [76.431762, 35.851589], + [76.471798, 35.886021], + [76.51553, 35.881173], + [76.55803, 35.923347], + [76.59745, 35.895718], + [76.579587, 35.866625], + [76.587595, 35.840431], + [76.566037, 35.819082], + [76.593754, 35.771996], + [76.69292, 35.747714], + [76.769297, 35.653917], + [76.848753, 35.668018], + [76.906651, 35.615005], + [76.967013, 35.591649], + [76.99781, 35.611113], + [77.072339, 35.591162], + [77.093281, 35.569746], + [77.195527, 35.519103], + [77.307628, 35.540533], + [77.331649, 35.530793], + [77.355055, 35.494257], + [77.396939, 35.467942], + [77.451758, 35.46063], + [77.518895, 35.482075], + [77.578025, 35.47574], + [77.590344, 35.460143], + [77.639619, 35.45478], + [77.657481, 35.477689], + [77.690742, 35.448443], + [77.735706, 35.461605], + [77.757879, 35.497181], + [77.797299, 35.491334], + [77.816394, 35.518616], + [77.85643, 35.487436], + [77.870596, 35.495232], + [77.914944, 35.465017], + [77.917408, 35.490847], + [77.951284, 35.478664], + [78.009799, 35.491821], + [78.029509, 35.469404], + [78.048603, 35.491334], + [78.140378, 35.494745], + [78.113892, 35.466967], + [78.107117, 35.437229], + [78.046755, 35.384063], + [78.013494, 35.366008], + [78.020885, 35.315237], + [78.01719, 35.228267], + [78.060306, 35.180344], + [78.062769, 35.114772], + [78.078784, 35.100084], + [78.124979, 35.108407], + [78.150849, 35.069721], + [78.123131, 35.036897], + [78.160704, 34.990823], + [78.201972, 34.974642], + [78.182262, 34.936874], + [78.206283, 34.891726], + [78.237696, 34.882398], + [78.230921, 34.776288], + [78.21429, 34.760556], + [78.213059, 34.717771], + [78.267261, 34.705472], + [78.265413, 34.651335], + [78.280812, 34.623269], + [78.346101, 34.60406], + [78.397224, 34.605538], + [78.427405, 34.594207], + [78.436029, 34.543942], + [78.492695, 34.578441], + [78.542586, 34.574499], + [78.559832, 34.55725], + [78.562912, 34.51288], + [78.58139, 34.505483], + [78.634977, 34.538026], + [78.708274, 34.522249], + [78.715049, 34.502031], + [78.758781, 34.481807], + [78.742766, 34.45467], + [78.809288, 34.432955], + [78.878273, 34.391481], + [78.899831, 34.354929], + [78.958961, 34.386049], + [78.973128, 34.362833], + [79.039649, 34.33467], + [79.048888, 34.348506], + [79.0107, 34.399877], + [79.039033, 34.421601], + [79.072294, 34.412714], + [79.161605, 34.441345], + [79.179467, 34.422588], + [79.241677, 34.415183], + [79.274322, 34.435916], + [79.326677, 34.44332], + [79.363017, 34.428018], + [79.435082, 34.447761], + [79.504683, 34.45467], + [79.545335, 34.476381], + [79.58106, 34.456151], + [79.675914, 34.451216], + [79.699936, 34.477861], + [79.735661, 34.471447], + [79.801566, 34.478847], + [79.861312, 34.528166], + [79.84345, 34.55725], + [79.88595, 34.642965], + [79.866856, 34.671517], + [79.906892, 34.683821], + [79.898268, 34.732035], + [79.947544, 34.821008], + [79.926602, 34.849499], + [79.961094, 34.862759], + [79.996819, 34.856375], + [80.003594, 34.895162], + [80.034391, 34.902033], + [80.041782, 34.943252], + [80.02392, 34.971209], + [80.04363, 35.022196], + [80.031311, 35.034447], + [80.078123, 35.076578], + [80.118159, 35.066293], + [80.23026, 35.147565], + [80.223484, 35.177409], + [80.257977, 35.203331], + [80.362687, 35.20871], + [80.267832, 35.295701], + [80.286926, 35.35283], + [80.321419, 35.38699], + [80.375006, 35.387966], + [80.432904, 35.449418], + [80.444607, 35.417235], + [80.514824, 35.391869], + [80.532686, 35.404553], + [80.56841, 35.391381], + [80.599823, 35.409431], + [80.65649, 35.393821], + [80.690982, 35.364544], + [80.689135, 35.339162], + [80.759968, 35.334768], + [80.844351, 35.345508], + [80.894242, 35.324027], + [80.924423, 35.330862], + [80.963844, 35.310842], + [81.026053, 35.31133], + [81.002648, 35.334768], + [81.030981, 35.337209], + [81.031597, 35.380648], + [81.054387, 35.402602], + [81.09935, 35.40748], + [81.103662, 35.386015], + [81.142466, 35.365032], + [81.191741, 35.36552], + [81.219458, 35.319144], + [81.26627, 35.322562], + [81.285364, 35.345508], + [81.314313, 35.337209], + [81.363588, 35.354783], + [81.385762, 35.335256], + [81.441196, 35.333303], + [81.447972, 35.318167], + [81.504638, 35.279092], + [81.513261, 35.23511], + [81.68634, 35.235599], + [81.736847, 35.26248], + [81.804601, 35.270786], + [81.853876, 35.25857], + [81.927789, 35.271275], + [81.955506, 35.307423], + [81.99123, 35.30547], + [82.030034, 35.321585], + [82.05344, 35.35039], + [82.029419, 35.426013], + [82.034346, 35.451855], + [82.071302, 35.450393], + [82.086701, 35.467454], + [82.164925, 35.495719], + [82.189563, 35.513258], + [82.234526, 35.520565], + [82.263475, 35.547837], + [82.2992, 35.544916], + [82.328149, 35.559523], + [82.350323, 35.611113], + [82.336156, 35.651486], + [82.392823, 35.656349], + [82.424852, 35.712736], + [82.468583, 35.717595], + [82.501844, 35.701073], + [82.546192, 35.708362], + [82.628727, 35.692324], + [82.652133, 35.67288], + [82.731589, 35.637868], + [82.780249, 35.666073], + [82.795031, 35.688436], + [82.873871, 35.688922], + [82.894813, 35.673852], + [82.967494, 35.667532], + [82.956407, 35.636409], + [82.981661, 35.599922], + [82.971806, 35.548324], + [82.998907, 35.484512], + [83.067892, 35.46258], + [83.088834, 35.425526], + [83.127022, 35.398699], + [83.178145, 35.38943], + [83.251442, 35.417722], + [83.280391, 35.401138], + [83.333978, 35.397236], + [83.405427, 35.380648], + [83.449159, 35.382111], + [83.502745, 35.360639], + [83.540318, 35.364056], + [83.54155, 35.341603], + [83.599448, 35.351366], + [83.622238, 35.335256], + [83.677672, 35.361128], + [83.785462, 35.36308], + [83.79778, 35.354783], + [83.885244, 35.367472], + [83.906186, 35.40309], + [84.005968, 35.422599], + [84.077417, 35.400163], + [84.095895, 35.362592], + [84.140859, 35.379184], + [84.160569, 35.359663], + [84.200605, 35.381135], + [84.274517, 35.404065], + [84.333032, 35.413821], + [84.424191, 35.466479], + [84.45314, 35.473303], + [84.475929, 35.516181], + [84.448828, 35.550272], + [84.513502, 35.564391], + [84.570168, 35.588242], + [84.628067, 35.595055], + [84.704443, 35.616951], + [84.729081, 35.613546], + [84.798066, 35.647595], + [84.920022, 35.696213], + [84.973608, 35.709334], + [84.99455, 35.737028], + [85.053065, 35.752086], + [85.146071, 35.742371], + [85.271107, 35.788989], + [85.341324, 35.753543], + [85.373969, 35.700101], + [85.518715, 35.680658], + [85.566142, 35.6403], + [85.612953, 35.651486], + [85.65299, 35.731199], + [85.691178, 35.751114], + [85.811286, 35.778794], + [85.835308, 35.771996], + [85.903677, 35.78462], + [85.949256, 35.778794], + [86.035488, 35.846738], + [86.05335, 35.842857], + [86.090306, 35.876809], + [86.093386, 35.906868], + [86.129111, 35.941761], + [86.150668, 36.00424], + [86.173458, 36.008113], + [86.199944, 36.047801], + [86.182081, 36.064734], + [86.187625, 36.130983], + [86.248603, 36.141616], + [86.2794, 36.170608], + [86.35824, 36.168676], + [86.392733, 36.206834], + [86.454943, 36.221319], + [86.515305, 36.205385], + [86.531935, 36.227113], + [86.599072, 36.222285], + [86.69947, 36.24449], + [86.746282, 36.291777], + [86.836209, 36.291294], + [86.86331, 36.299977], + [86.887332, 36.262829], + [86.931064, 36.265242], + [86.943998, 36.284058], + [86.996353, 36.308658], + [87.051788, 36.2966], + [87.08628, 36.310587], + [87.149106, 36.297565], + [87.161425, 36.325535], + [87.193454, 36.349158], + [87.292004, 36.358797], + [87.348055, 36.393008], + [87.363453, 36.420463], + [87.386859, 36.412757], + [87.426895, 36.42576], + [87.460155, 36.409868], + [87.470626, 36.354459], + [87.570409, 36.342409], + [87.6203, 36.360243], + [87.731785, 36.384818], + [87.767509, 36.3747], + [87.826023, 36.391563], + [87.838342, 36.383855], + [87.919646, 36.39349], + [87.95845, 36.408423], + [87.983088, 36.437797], + [88.006494, 36.430575], + [88.092109, 36.43539], + [88.134609, 36.427205], + [88.182652, 36.452721], + [88.222688, 36.447426], + [88.241782, 36.468605], + [88.282434, 36.470049], + [88.366202, 36.458016], + [88.356963, 36.477268], + [88.41055, 36.473418], + [88.470912, 36.48208], + [88.498629, 36.446463], + [88.573158, 36.461386], + [88.618121, 36.428168], + [88.623665, 36.389636], + [88.690186, 36.367954], + [88.766563, 36.292259], + [88.783809, 36.291777], + [88.802903, 36.33807], + [88.838628, 36.353496], + [88.870657, 36.348193], + [88.926091, 36.36458], + [88.964279, 36.318785], + [89.013554, 36.315409], + [89.054822, 36.291777], + [89.10225, 36.281164], + [89.126887, 36.254626], + [89.198952, 36.260417], + [89.232213, 36.295636], + [89.292575, 36.231457], + [89.335075, 36.23725], + [89.375727, 36.228078], + [89.490291, 36.151281], + [89.594385, 36.126632], + [89.614711, 36.109712], + [89.711414, 36.093272], + [89.766848, 36.073925], + [89.819819, 36.080697], + [89.914058, 36.079246], + [89.941159, 36.067637], + [89.944855, 36.140649], + [89.997825, 36.168193], + [90.019999, 36.213594], + [90.028006, 36.258486], + [90.003369, 36.278752], + [90.043405, 36.276822], + [90.058188, 36.255591], + [90.145651, 36.239181], + [90.130252, 36.2078], + [90.198006, 36.187516], + [90.23681, 36.160462], + [90.325505, 36.159496], + [90.424055, 36.133883], + [90.478258, 36.13195], + [90.534925, 36.147899], + [90.613149, 36.126632], + [90.659344, 36.13485], + [90.776373, 36.086501], + [90.815793, 36.035703], + [90.850285, 36.016827], + [90.922966, 36.028927], + [90.979017, 36.106811], + [91.081263, 36.088436], + [91.124994, 36.115514], + [91.09235, 36.163844], + [91.096045, 36.219871], + [91.051698, 36.238215], + [91.07264, 36.299012], + [91.026444, 36.323607], + [91.051698, 36.433946], + [91.028292, 36.443093], + [91.039995, 36.474861], + [91.035683, 36.529703], + [91.011662, 36.539801], + [90.905104, 36.560474], + [90.831191, 36.55807], + [90.810865, 36.585466], + [90.741264, 36.585947], + [90.72217, 36.620058], + [90.730793, 36.655594], + [90.706156, 36.658955], + [90.720938, 36.708868], + [90.754815, 36.721341], + [90.727098, 36.755872], + [90.732025, 36.825844], + [90.758511, 36.825844], + [90.853981, 36.915373], + [90.924198, 36.921115], + [90.983944, 36.913459], + [91.036915, 36.929727], + [91.051698, 36.96751], + [91.126842, 36.978507], + [91.133618, 37.007665], + [91.181045, 37.025345], + [91.216153, 37.010054], + [91.303617, 37.012444], + [91.291298, 37.042544], + [91.303617, 37.083136], + [91.286371, 37.105095], + [91.280211, 37.163779], + [91.1909, 37.205737], + [91.194596, 37.273868], + [91.134849, 37.324331], + [91.136081, 37.355734], + [91.113292, 37.387124], + [91.099741, 37.447965], + [91.073256, 37.475992], + [91.019669, 37.493088], + [90.958075, 37.477891], + [90.911879, 37.519674], + [90.865684, 37.53059], + [90.882314, 37.575664], + [90.854597, 37.604117], + [90.820104, 37.613599], + [90.777605, 37.648672], + [90.643946, 37.696988], + [90.586663, 37.703144], + [90.579272, 37.720661], + [90.519526, 37.730601], + [90.516446, 38.207111], + [90.531229, 38.319886], + [90.401882, 38.311434], + [90.361846, 38.300163], + [90.352607, 38.233441], + [90.280542, 38.238142], + [90.137644, 38.340543], + [90.179528, 38.396848], + [90.129636, 38.400131], + [90.111774, 38.418889], + [90.111774, 38.477945], + [90.130868, 38.494341], + [90.248513, 38.491531], + [90.315034, 38.501835], + [90.353222, 38.482162], + [90.427135, 38.493873], + [90.465323, 38.521971], + [90.463476, 38.556611], + [90.525685, 38.561291], + [90.560794, 38.593573], + [90.608837, 38.594508], + [90.606374, 38.610878], + [90.645794, 38.635191], + [90.619308, 38.664636], + [90.65996, 38.674449], + [90.724634, 38.658094], + [90.899561, 38.679588], + [90.970394, 38.697806], + [90.992567, 38.695003], + [91.188436, 38.73096], + [91.242639, 38.752433], + [91.298689, 38.746365], + [91.446515, 38.813546], + [91.501333, 38.815411], + [91.681188, 38.852706], + [91.694738, 38.86622], + [91.806223, 38.872744], + [91.87952, 38.884391], + [91.880752, 38.899297], + [91.966368, 38.930961], + [92.10865, 38.963541], + [92.173323, 38.960749], + [92.197961, 38.983548], + [92.263866, 39.002153], + [92.380279, 38.999828], + [92.416003, 39.010524], + [92.41046, 39.03842], + [92.366728, 39.059335], + [92.366112, 39.096037], + [92.343938, 39.146181], + [92.339011, 39.236628], + [92.378431, 39.258411], + [92.52564, 39.368611], + [92.639589, 39.514196], + [92.687632, 39.657174], + [92.745531, 39.868331], + [92.796654, 40.153897], + [92.906907, 40.310609], + [92.920458, 40.391792], + [92.928465, 40.572504], + [93.506216, 40.648376], + [93.760599, 40.664721], + [93.820961, 40.793519], + [93.809874, 40.879548], + [93.908424, 40.983539], + [94.01067, 41.114875], + [94.184365, 41.268444], + [94.534219, 41.505966], + [94.750413, 41.538227], + [94.809543, 41.619256], + [94.861898, 41.668451], + [94.969072, 41.718948], + [95.011572, 41.726541], + [95.110738, 41.768513], + [95.135991, 41.772976], + [95.16494, 41.735474], + [95.199433, 41.719395], + [95.194505, 41.694821], + [95.247476, 41.61344], + [95.299831, 41.565994], + [95.335556, 41.644305], + [95.39407, 41.693481], + [95.445193, 41.719841], + [95.57146, 41.796181], + [95.65646, 41.826067], + [95.759322, 41.835878], + [95.801206, 41.848361], + [95.855408, 41.849699], + [95.998306, 41.906289], + [96.054973, 41.936124], + [96.117183, 41.985966], + [96.137509, 42.019765], + [96.13874, 42.05399], + [96.077147, 42.149457], + [96.178161, 42.21775], + [96.040806, 42.326688], + [96.042038, 42.352787], + [96.06606, 42.414674], + [95.978596, 42.436762], + [96.0174, 42.482239], + [96.02356, 42.542675], + [96.072219, 42.569566], + [96.103632, 42.604375], + [96.166458, 42.623314], + [96.386348, 42.727592] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 710000, + "name": "台湾省", + "center": [121.509062, 25.044332], + "centroid": [120.971485, 23.749452], + "childrenNum": 0, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 31, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [120.443706, 22.441432], + [120.517619, 22.408793], + [120.569973, 22.361757], + [120.640806, 22.241605], + [120.659285, 22.154056], + [120.661748, 22.067007], + [120.651277, 22.033171], + [120.667908, 21.983235], + [120.701784, 21.927174], + [120.743052, 21.915515], + [120.781857, 21.923843], + [120.854537, 21.883309], + [120.873016, 21.897191], + [120.86624, 21.984345], + [120.907508, 22.033171], + [120.912436, 22.086418], + [120.903197, 22.12634], + [120.914899, 22.302525], + [120.981421, 22.528248], + [121.014682, 22.584069], + [121.03316, 22.650914], + [121.078739, 22.669691], + [121.170514, 22.723247], + [121.21055, 22.770711], + [121.237652, 22.836362], + [121.276456, 22.877171], + [121.324499, 22.945526], + [121.35468, 23.00999], + [121.370695, 23.084334], + [121.409499, 23.1025], + [121.430441, 23.137175], + [121.415042, 23.196047], + [121.440296, 23.271937], + [121.479716, 23.322507], + [121.497578, 23.419744], + [121.5216, 23.483431], + [121.522832, 23.538858], + [121.587505, 23.760878], + [121.621382, 23.920718], + [121.65957, 24.007125], + [121.63986, 24.064514], + [121.643556, 24.097843], + [121.678048, 24.133895], + [121.689135, 24.174303], + [121.809243, 24.339083], + [121.82649, 24.423572], + [121.867758, 24.47914], + [121.88562, 24.529784], + [121.892395, 24.617953], + [121.86283, 24.671261], + [121.841272, 24.734329], + [121.844968, 24.836476], + [121.933047, 24.938539], + [122.012503, 25.001471], + [121.98109, 25.030757], + [121.947214, 25.031841], + [121.917033, 25.138076], + [121.841888, 25.135367], + [121.782142, 25.160287], + [121.745186, 25.161912], + [121.707613, 25.191701], + [121.700222, 25.226896], + [121.655259, 25.242054], + [121.62323, 25.29455], + [121.585041, 25.309159], + [121.53515, 25.307535], + [121.444607, 25.27074], + [121.413194, 25.238806], + [121.371926, 25.159746], + [121.319572, 25.140785], + [121.209318, 25.12724], + [121.132942, 25.078466], + [121.102145, 25.075214], + [121.024537, 25.040517], + [121.009754, 24.993878], + [120.961095, 24.940167], + [120.914899, 24.864715], + [120.89211, 24.767482], + [120.82374, 24.688118], + [120.762147, 24.658208], + [120.68885, 24.600542], + [120.642654, 24.490033], + [120.589068, 24.43229], + [120.546568, 24.370159], + [120.520698, 24.311816], + [120.470807, 24.242533], + [120.451713, 24.182493], + [120.391967, 24.118055], + [120.316206, 23.984708], + [120.278018, 23.92783], + [120.245989, 23.840276], + [120.175156, 23.807427], + [120.102476, 23.701162], + [120.095084, 23.58768], + [120.12157, 23.504836], + [120.108019, 23.341191], + [120.081534, 23.291728], + [120.018708, 23.073322], + [120.029795, 23.048544], + [120.133272, 23.000625], + [120.149287, 22.896468], + [120.20041, 22.721039], + [120.274323, 22.560307], + [120.297112, 22.531565], + [120.443706, 22.441432] + ] + ], + [ + [ + [124.542782, 25.903886], + [124.584666, 25.908731], + [124.566804, 25.941563], + [124.542782, 25.903886] + ] + ], + [ + [ + [123.445178, 25.726102], + [123.469816, 25.712623], + [123.50862, 25.722867], + [123.512316, 25.755212], + [123.479055, 25.768687], + [123.445794, 25.749822], + [123.445178, 25.726102] + ] + ], + [ + [ + [119.646064, 23.550928], + [119.691028, 23.547087], + [119.678093, 23.600294], + [119.61034, 23.604132], + [119.601717, 23.575613], + [119.566608, 23.584937], + [119.562297, 23.530627], + [119.578927, 23.502641], + [119.609108, 23.503738], + [119.646064, 23.550928] + ] + ], + [ + [ + [123.666916, 25.914114], + [123.706952, 25.91519], + [123.689706, 25.939949], + [123.666916, 25.914114] + ] + ], + [ + [ + [119.506246, 23.625518], + [119.506246, 23.577259], + [119.47237, 23.556962], + [119.519181, 23.559705], + [119.52534, 23.62497], + [119.506246, 23.625518] + ] + ], + [ + [ + [119.497623, 23.38679], + [119.495159, 23.349982], + [119.516717, 23.349982], + [119.497623, 23.38679] + ] + ], + [ + [ + [119.557369, 23.666634], + [119.608492, 23.620035], + [119.615268, 23.661153], + [119.586318, 23.675952], + [119.557369, 23.666634] + ] + ], + [ + [ + [122.066706, 25.6247], + [122.087032, 25.61067], + [122.092575, 25.639268], + [122.066706, 25.6247] + ] + ], + [ + [ + [121.468013, 22.67687], + [121.474788, 22.643734], + [121.513592, 22.631582], + [121.514824, 22.676318], + [121.468013, 22.67687] + ] + ], + [ + [ + [121.510513, 22.086972], + [121.507433, 22.048704], + [121.533918, 22.022076], + [121.594281, 21.995443], + [121.604752, 22.022631], + [121.575186, 22.037055], + [121.575802, 22.0842], + [121.510513, 22.086972] + ] + ], + [ + [ + [122.097503, 25.499987], + [122.110438, 25.465952], + [122.122141, 25.495666], + [122.097503, 25.499987] + ] + ], + [ + [ + [119.421247, 23.216949], + [119.436029, 23.186146], + [119.453275, 23.216399], + [119.421247, 23.216949] + ] + ], + [ + [ + [120.355011, 22.327439], + [120.395663, 22.342385], + [120.383344, 22.355669], + [120.355011, 22.327439] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 810000, + "name": "香港特别行政区", + "center": [114.173355, 22.320048], + "centroid": [114.134357, 22.377366], + "childrenNum": 18, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 32, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [114.031778, 22.503923], + [114.000981, 22.491206], + [113.977575, 22.45692], + [113.918445, 22.418199], + [113.920293, 22.367845], + [113.951706, 22.355116], + [113.956633, 22.359543], + [113.980039, 22.366185], + [114.026234, 22.34792], + [113.955401, 22.298649], + [113.969568, 22.321349], + [113.898119, 22.308615], + [113.889496, 22.271514], + [113.8433, 22.229418], + [113.84946, 22.191188], + [113.899351, 22.215568], + [113.935691, 22.205041], + [113.981271, 22.229972], + [113.996669, 22.206149], + [114.026234, 22.229418], + [114.004676, 22.239389], + [114.02993, 22.263207], + [114.034857, 22.300864], + [114.069966, 22.326885], + [114.121089, 22.320795], + [114.145726, 22.300864], + [114.120473, 22.272068], + [114.164821, 22.226648], + [114.200545, 22.232188], + [114.203009, 22.206703], + [114.265835, 22.200608], + [114.248588, 22.274837], + [114.262139, 22.294773], + [114.284929, 22.263761], + [114.313262, 22.264315], + [114.315726, 22.299203], + [114.315726, 22.299756], + [114.278153, 22.328546], + [114.283081, 22.386661], + [114.322501, 22.385554], + [114.323117, 22.385554], + [114.323733, 22.385001], + [114.323733, 22.384447], + [114.356994, 22.340171], + [114.394566, 22.361757], + [114.385327, 22.41156], + [114.406269, 22.432582], + [114.406269, 22.433688], + [114.376088, 22.436454], + [114.325581, 22.479041], + [114.278769, 22.435901], + [114.220255, 22.427603], + [114.205473, 22.449729], + [114.23319, 22.466875], + [114.2529, 22.445304], + [114.340979, 22.50337], + [114.309566, 22.497288], + [114.28924, 22.52272], + [114.263987, 22.541515], + [114.263371, 22.541515], + [114.260291, 22.547595], + [114.232574, 22.528801], + [114.232574, 22.539857], + [114.222719, 22.553122], + [114.166052, 22.559201], + [114.156813, 22.543726], + [114.095219, 22.534329], + [114.082285, 22.512216], + [114.031778, 22.503923] + ] + ], + [ + [ + [114.142647, 22.213906], + [114.123553, 22.238836], + [114.120473, 22.177888], + [114.154965, 22.177888], + [114.166668, 22.205041], + [114.142647, 22.213906] + ] + ], + [ + [ + [114.305871, 22.372273], + [114.313878, 22.340724], + [114.332972, 22.353455], + [114.305255, 22.372826], + [114.305871, 22.372273] + ] + ], + [ + [ + [114.320037, 22.381127], + [114.323733, 22.384447], + [114.323733, 22.385001], + [114.323117, 22.385554], + [114.322501, 22.385554], + [114.319421, 22.382234], + [114.320037, 22.38168], + [114.320037, 22.381127] + ] + ], + [ + [ + [114.305871, 22.369506], + [114.305871, 22.372273], + [114.305255, 22.372826], + [114.305871, 22.369506] + ] + ], + [ + [ + [114.315726, 22.299203], + [114.316958, 22.298649], + [114.316342, 22.30031], + [114.315726, 22.299756], + [114.315726, 22.299203] + ] + ], + [ + [ + [114.319421, 22.382234], + [114.320037, 22.381127], + [114.320037, 22.38168], + [114.319421, 22.382234] + ] + ], + [ + [ + [114.372392, 22.32301], + [114.373008, 22.323564], + [114.372392, 22.323564], + [114.372392, 22.32301] + ] + ], + [ + [ + [114.323733, 22.297541], + [114.324349, 22.297541], + [114.323733, 22.298095], + [114.323733, 22.297541] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "adcode": 820000, + "name": "澳门特别行政区", + "center": [113.54909, 22.198951], + "centroid": [113.566988, 22.159307], + "childrenNum": 8, + "level": "province", + "parent": { + "adcode": 100000 + }, + "subFeatureIndex": 33, + "acroutes": [100000] + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [113.554425, 22.107489], + [113.6037, 22.132438], + [113.575983, 22.194513], + [113.558736, 22.212244], + [113.53841, 22.209473], + [113.534715, 22.174009], + [113.554425, 22.142416], + [113.554425, 22.107489] + ] + ], + [ + [ + [113.586453, 22.201162], + [113.575983, 22.201162], + [113.575983, 22.194513], + [113.586453, 22.201162] + ] + ] + ] + } + } + ] +} diff --git a/src/packages/components/Charts/Maps/index.ts b/src/packages/components/Charts/Maps/index.ts new file mode 100644 index 0000000..6fa94dc --- /dev/null +++ b/src/packages/components/Charts/Maps/index.ts @@ -0,0 +1,4 @@ +import { MapBaseConfig } from './MapBase/index' +import { MapAmapConfig } from './MapAmap/index' + +export default [MapBaseConfig, MapAmapConfig] diff --git a/src/packages/components/Charts/Mores/Funnel/config.ts b/src/packages/components/Charts/Mores/Funnel/config.ts new file mode 100644 index 0000000..c0f5ab0 --- /dev/null +++ b/src/packages/components/Charts/Mores/Funnel/config.ts @@ -0,0 +1,62 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { FunnelConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend'] + +// 排序枚举 +export const FunnelOrderEnumList = [ + { label: '倒三角', value: 'descending' }, + { label: '正三角', value: 'ascending' } +] +// 标签位置枚举 +export const FunnelLabelPositionEnumList = [ + { label: '内部', value: 'inside' }, + { label: '外部', value: 'outside' }, + { label: '内部左侧', value: 'insideLeft' }, + { label: '内部右侧', value: 'insideRight' } +] + +export const option = { + tooltip: {}, + legend: {}, + dataset: { ...dataJson }, + series: [ + { + name: 'Funnel', + type: 'funnel', + top: 70, + left: '10%', + width: '80%', + min: 0, + minSize: '0%', + maxSize: '100%', + sort: 'descending', // descending | ascending + gap: 5, + label: { + show: true, + position: 'inside', + fontSize: 12 + }, + itemStyle: { + borderColor: '#fff', + borderWidth: 0 + }, + emphasis: { + label: { + fontSize: 20 + } + } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = FunnelConfig.key + public chartConfig = cloneDeep(FunnelConfig) + + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Mores/Funnel/config.vue b/src/packages/components/Charts/Mores/Funnel/config.vue new file mode 100644 index 0000000..f8f56d6 --- /dev/null +++ b/src/packages/components/Charts/Mores/Funnel/config.vue @@ -0,0 +1,67 @@ + + + diff --git a/src/packages/components/Charts/Mores/Funnel/data.json b/src/packages/components/Charts/Mores/Funnel/data.json new file mode 100644 index 0000000..a2ef37f --- /dev/null +++ b/src/packages/components/Charts/Mores/Funnel/data.json @@ -0,0 +1,10 @@ +{ + "dimensions": ["product", "dataOne"], + "source": [ + { "product": "data1", "dataOne": 20 }, + { "product": "data2", "dataOne": 40 }, + { "product": "data3", "dataOne": 60 }, + { "product": "data4", "dataOne": 80 }, + { "product": "data5", "dataOne": 100 } + ] +} diff --git a/src/packages/components/Charts/Mores/Funnel/index.ts b/src/packages/components/Charts/Mores/Funnel/index.ts new file mode 100644 index 0000000..d553eda --- /dev/null +++ b/src/packages/components/Charts/Mores/Funnel/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const FunnelConfig: ConfigType = { + key: 'Funnel', + chartKey: 'VFunnel', + conKey: 'VCFunnel', + title: '漏斗图', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'funnel.png' +} diff --git a/src/packages/components/Charts/Mores/Funnel/index.vue b/src/packages/components/Charts/Mores/Funnel/index.vue new file mode 100644 index 0000000..45726ae --- /dev/null +++ b/src/packages/components/Charts/Mores/Funnel/index.vue @@ -0,0 +1,41 @@ + + + diff --git a/src/packages/components/Charts/Mores/Heatmap/config.ts b/src/packages/components/Charts/Mores/Heatmap/config.ts new file mode 100644 index 0000000..089cfcc --- /dev/null +++ b/src/packages/components/Charts/Mores/Heatmap/config.ts @@ -0,0 +1,61 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { HeatmapConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import { cloneDeep } from 'lodash' +import dataJson from './data.json' + +export const includes = ['xAxis', 'yAxis', 'grid'] + +export const option = { + dataset: { ...dataJson }, + tooltip: { + position: 'top' + }, + xAxis: { + data: dataJson.xAxis + }, + yAxis: { + data: dataJson.yAxis + }, + visualMap: { + show: true, + min: 0, + max: 10, + itemWidth: 20, + itemHeight: 140, + calculable: true, + orient: 'horizontal', + inRange: { + // 高 -> 低 + color: ['#4661c2', '#263253'] + } + }, + series: [ + { + name: '', + type: 'heatmap', + data: dataJson.seriesData, + label: { + show: true + }, + emphasis: { + itemStyle: { + borderColor: '#333', + borderWidth: 1, + shadowBlur: 10, + shadowColor: 'rgba(0, 0, 0, 0.5)' + } + }, + progressive: 1000, + animation: false + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = HeatmapConfig.key + public chartConfig = cloneDeep(HeatmapConfig) + + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Mores/Heatmap/config.vue b/src/packages/components/Charts/Mores/Heatmap/config.vue new file mode 100644 index 0000000..88118c5 --- /dev/null +++ b/src/packages/components/Charts/Mores/Heatmap/config.vue @@ -0,0 +1,21 @@ + + + diff --git a/src/packages/components/Charts/Mores/Heatmap/data.json b/src/packages/components/Charts/Mores/Heatmap/data.json new file mode 100644 index 0000000..4c2975c --- /dev/null +++ b/src/packages/components/Charts/Mores/Heatmap/data.json @@ -0,0 +1,199 @@ +{ + "xAxis": [ + "12a", + "1a", + "2a", + "3a", + "4a", + "5a", + "6a", + "7a", + "8a", + "9a", + "10a", + "11a", + "12p", + "1p", + "2p", + "3p", + "4p", + "5p", + "6p", + "7p", + "8p", + "9p", + "10p", + "11p" + ], + "yAxis": ["Saturday", "Friday", "Thursday", "Wednesday", "Tuesday", "Monday", "Sunday"], + "seriesData": [ + [0, 0, 5], + [1, 0, 1], + [2, 0, "-"], + [3, 0, "-"], + [4, 0, "-"], + [5, 0, "-"], + [6, 0, "-"], + [7, 0, "-"], + [8, 0, "-"], + [9, 0, "-"], + [10, 0, "-"], + [11, 0, 2], + [12, 0, 4], + [13, 0, 1], + [14, 0, 1], + [15, 0, 3], + [16, 0, 4], + [17, 0, 6], + [18, 0, 4], + [19, 0, 4], + [20, 0, 3], + [21, 0, 3], + [22, 0, 2], + [23, 0, 5], + [0, 1, 7], + [1, 1, "-"], + [2, 1, "-"], + [3, 1, "-"], + [4, 1, "-"], + [5, 1, "-"], + [6, 1, "-"], + [7, 1, "-"], + [8, 1, "-"], + [9, 1, "-"], + [10, 1, 5], + [11, 1, 2], + [12, 1, 2], + [13, 1, 6], + [14, 1, 9], + [15, 1, 11], + [16, 1, 6], + [17, 1, 7], + [18, 1, 8], + [19, 1, 12], + [20, 1, 5], + [21, 1, 5], + [22, 1, 7], + [23, 1, 2], + [0, 2, 1], + [1, 2, 1], + [2, 2, "-"], + [3, 2, "-"], + [4, 2, "-"], + [5, 2, "-"], + [6, 2, "-"], + [7, 2, "-"], + [8, 2, "-"], + [9, 2, "-"], + [10, 2, 3], + [11, 2, 2], + [12, 2, 1], + [13, 2, 9], + [14, 2, 8], + [15, 2, 10], + [16, 2, 6], + [17, 2, 5], + [18, 2, 5], + [19, 2, 5], + [20, 2, 7], + [21, 2, 4], + [22, 2, 2], + [23, 2, 4], + [0, 3, 7], + [1, 3, 3], + [2, 3, "-"], + [3, 3, "-"], + [4, 3, "-"], + [5, 3, "-"], + [6, 3, "-"], + [7, 3, "-"], + [8, 3, 1], + [9, 3, "-"], + [10, 3, 5], + [11, 3, 4], + [12, 3, 7], + [13, 3, 14], + [14, 3, 13], + [15, 3, 12], + [16, 3, 9], + [17, 3, 5], + [18, 3, 5], + [19, 3, 10], + [20, 3, 6], + [21, 3, 4], + [22, 3, 4], + [23, 3, 1], + [0, 4, 1], + [1, 4, 3], + [2, 4, "-"], + [3, 4, "-"], + [4, 4, "-"], + [5, 4, 1], + [6, 4, "-"], + [7, 4, "-"], + [8, 4, "-"], + [9, 4, 2], + [10, 4, 4], + [11, 4, 4], + [12, 4, 2], + [13, 4, 4], + [14, 4, 4], + [15, 4, 14], + [16, 4, 12], + [17, 4, 1], + [18, 4, 8], + [19, 4, 5], + [20, 4, 3], + [21, 4, 7], + [22, 4, 3], + [23, 4, "-"], + [0, 5, 2], + [1, 5, 1], + [2, 5, "-"], + [3, 5, 3], + [4, 5, "-"], + [5, 5, "-"], + [6, 5, "-"], + [7, 5, "-"], + [8, 5, 2], + [9, 5, "-"], + [10, 5, 4], + [11, 5, 1], + [12, 5, 5], + [13, 5, 10], + [14, 5, 5], + [15, 5, 7], + [16, 5, 11], + [17, 5, 6], + [18, 5, "-"], + [19, 5, 5], + [20, 5, 3], + [21, 5, 4], + [22, 5, 2], + [23, 5, "-"], + [0, 6, 1], + [1, 6, "-"], + [2, 6, "-"], + [3, 6, "-"], + [4, 6, "-"], + [5, 6, "-"], + [6, 6, "-"], + [7, 6, "-"], + [8, 6, "-"], + [9, 6, "-"], + [10, 6, 1], + [11, 6, "-"], + [12, 6, 2], + [13, 6, 1], + [14, 6, 3], + [15, 6, 4], + [16, 6, "-"], + [17, 6, "-"], + [18, 6, "-"], + [19, 6, "-"], + [20, 6, 1], + [21, 6, 2], + [22, 6, 2], + [23, 6, 6] + ] +} diff --git a/src/packages/components/Charts/Mores/Heatmap/index.ts b/src/packages/components/Charts/Mores/Heatmap/index.ts new file mode 100644 index 0000000..d8c833b --- /dev/null +++ b/src/packages/components/Charts/Mores/Heatmap/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const HeatmapConfig: ConfigType = { + key: 'Heatmap', + chartKey: 'VHeatmap', + conKey: 'VCHeatmap', + title: '热力图', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'heatmap.png' +} diff --git a/src/packages/components/Charts/Mores/Heatmap/index.vue b/src/packages/components/Charts/Mores/Heatmap/index.vue new file mode 100644 index 0000000..45cb810 --- /dev/null +++ b/src/packages/components/Charts/Mores/Heatmap/index.vue @@ -0,0 +1,92 @@ + + + diff --git a/src/packages/components/Charts/Mores/Process/config.ts b/src/packages/components/Charts/Mores/Process/config.ts new file mode 100644 index 0000000..661b096 --- /dev/null +++ b/src/packages/components/Charts/Mores/Process/config.ts @@ -0,0 +1,61 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { ProcessConfig } from './index' +import { chartInitConfig } from '@/settings/designSetting' +import cloneDeep from 'lodash/cloneDeep' + + +export const types = [ + { + label: '线形', + value: 'line' + }, + { + label: '圆形', + value: 'circle' + }, + { + label: '仪表盘', + value: 'dashboard' + }, +] + +export const indicatorPlacements = [ + { + label: '内部', + value: 'inside' + }, + { + label: '外部', + value: 'outside' + } +] + +export const option = { + dataset: 36, + // 默认类型 + type: types[2].value, + // 进行时效果 + processing: true, + // 主颜色 + color: '#4992FFFF', + // 轨道颜色 + railColor: '#3e3e3f', + // 指标 + unit: '%', + // 指标大小 + indicatorTextSize: 34, + // 指标位置(线条时可用) + indicatorPlacement: 'outside', + // 指标颜色 + indicatorTextColor: '#FFFFFFFF', + // 偏移角度 + offsetDegree: 0 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = ProcessConfig.key + public attr = { ...chartInitConfig, h: 500, zIndex: -1 } + public chartConfig = cloneDeep(ProcessConfig) + public option = cloneDeep(option) +} \ No newline at end of file diff --git a/src/packages/components/Charts/Mores/Process/config.vue b/src/packages/components/Charts/Mores/Process/config.vue new file mode 100644 index 0000000..2842d91 --- /dev/null +++ b/src/packages/components/Charts/Mores/Process/config.vue @@ -0,0 +1,65 @@ + + + diff --git a/src/packages/components/Charts/Mores/Process/index.ts b/src/packages/components/Charts/Mores/Process/index.ts new file mode 100644 index 0000000..c4591ea --- /dev/null +++ b/src/packages/components/Charts/Mores/Process/index.ts @@ -0,0 +1,23 @@ +// 公共类型声明 +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +// 当前[信息模块]分类声明 +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const ProcessConfig: ConfigType = { + // 唯一key + key: 'Process', + // 图表组件渲染 Components 格式: V + key + chartKey: 'VProcess', + // 配置组件渲染 Components 格式: VC + key + conKey: 'VCProcess', + // 名称 + title: 'NaiveUI-进度', + // 子分类目录 + category: ChatCategoryEnum.MORE, + // 子分类目录 + categoryName: ChatCategoryEnumName.MORE, + // 包分类 + package: PackagesCategoryEnum.CHARTS, + // 图片 + image: 'process.png' +} \ No newline at end of file diff --git a/src/packages/components/Charts/Mores/Process/index.vue b/src/packages/components/Charts/Mores/Process/index.vue new file mode 100644 index 0000000..5faf79b --- /dev/null +++ b/src/packages/components/Charts/Mores/Process/index.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/packages/components/Charts/Mores/Radar/config.ts b/src/packages/components/Charts/Mores/Radar/config.ts new file mode 100644 index 0000000..10e9e39 --- /dev/null +++ b/src/packages/components/Charts/Mores/Radar/config.ts @@ -0,0 +1,51 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { RadarConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend'] + +// 雷达形状 +export const RadarShapeEnumList = [ + { label: '多边形', value: 'polygon' }, + { label: '圆形', value: 'circle' } +] + +export const option = { + tooltip: { + show: true + }, + legend: { + data: dataJson.seriesData.map(i => i.name) + }, + dataset: { ...dataJson }, + radar: { + shape: 'polygon', + radius: ['0%', '60%'], + center: ['50%', '55%'], + splitArea: { show: true }, + splitLine: { show: true }, + axisName: { show: true, color: '#eee', fontSize: 12 }, + axisLine: { show: true }, + axisTick: { show: true }, + indicator: dataJson.radarIndicator + }, + series: [ + { + name: 'radar', + type: 'radar', + areaStyle: { + opacity: 0.1 + }, + data: dataJson.seriesData + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = RadarConfig.key + public chartConfig = cloneDeep(RadarConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Mores/Radar/config.vue b/src/packages/components/Charts/Mores/Radar/config.vue new file mode 100644 index 0000000..52156e2 --- /dev/null +++ b/src/packages/components/Charts/Mores/Radar/config.vue @@ -0,0 +1,145 @@ + + + diff --git a/src/packages/components/Charts/Mores/Radar/data.json b/src/packages/components/Charts/Mores/Radar/data.json new file mode 100644 index 0000000..3ee8ebc --- /dev/null +++ b/src/packages/components/Charts/Mores/Radar/data.json @@ -0,0 +1,20 @@ +{ + "radarIndicator": [ + { "name": "数据1", "max": 6500 }, + { "name": "数据2", "max": 16000 }, + { "name": "数据3", "max": 30000 }, + { "name": "数据4", "max": 38000 }, + { "name": "数据5", "max": 52000 }, + { "name": "数据6", "max": 25000 } + ], + "seriesData": [ + { + "name": "data1", + "value": [4200, 3000, 20000, 35000, 50000, 18000] + }, + { + "name": "data2", + "value": [5000, 14000, 28000, 26000, 42000, 21000] + } + ] +} diff --git a/src/packages/components/Charts/Mores/Radar/index.ts b/src/packages/components/Charts/Mores/Radar/index.ts new file mode 100644 index 0000000..d7b9f2f --- /dev/null +++ b/src/packages/components/Charts/Mores/Radar/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const RadarConfig: ConfigType = { + key: 'Radar', + chartKey: 'VRadar', + conKey: 'VCRadar', + title: '雷达图', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'radar.png' +} diff --git a/src/packages/components/Charts/Mores/Radar/index.vue b/src/packages/components/Charts/Mores/Radar/index.vue new file mode 100644 index 0000000..2e52326 --- /dev/null +++ b/src/packages/components/Charts/Mores/Radar/index.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/packages/components/Charts/Mores/TreeMap/config.ts b/src/packages/components/Charts/Mores/TreeMap/config.ts new file mode 100644 index 0000000..8bf6a71 --- /dev/null +++ b/src/packages/components/Charts/Mores/TreeMap/config.ts @@ -0,0 +1,27 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { TreeMapConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = [] + +export const option = { + dataset: dataJson, + series: [ + { + name: 'treemap', + type: 'treemap', + leafDepth: 1, + roam: false, + data: dataJson + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TreeMapConfig.key + public chartConfig = cloneDeep(TreeMapConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Mores/TreeMap/config.vue b/src/packages/components/Charts/Mores/TreeMap/config.vue new file mode 100644 index 0000000..c0fa276 --- /dev/null +++ b/src/packages/components/Charts/Mores/TreeMap/config.vue @@ -0,0 +1,17 @@ + + + diff --git a/src/packages/components/Charts/Mores/TreeMap/data.json b/src/packages/components/Charts/Mores/TreeMap/data.json new file mode 100644 index 0000000..8c41663 --- /dev/null +++ b/src/packages/components/Charts/Mores/TreeMap/data.json @@ -0,0 +1,50 @@ +[ + { + "name": "nodeA", + "value": 10, + "children": [ + { + "name": "nodeAa", + "value": 4 + }, + { + "name": "nodeAb", + "value": 6 + } + ] + }, + { + "name": "nodeA", + "value": 10, + "children": [ + { + "name": "nodeAa", + "value": 4 + }, + { + "name": "nodeAb", + "value": 6 + } + ] + }, + { + "name": "nodeB", + "value": 20, + "children": [ + { + "name": "nodeba", + "value": 20 + } + ] + }, + { + "name": "nodeC", + "value": 20, + "children": [ + { + "name": "nodeca", + "value": 20 + } + ] + } +] diff --git a/src/packages/components/Charts/Mores/TreeMap/index.ts b/src/packages/components/Charts/Mores/TreeMap/index.ts new file mode 100644 index 0000000..614b58d --- /dev/null +++ b/src/packages/components/Charts/Mores/TreeMap/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const TreeMapConfig: ConfigType = { + key: 'TreeMap', + chartKey: 'VTreeMap', + conKey: 'VCTreeMap', + title: '树形分布', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'tree_map.png' +} diff --git a/src/packages/components/Charts/Mores/TreeMap/index.vue b/src/packages/components/Charts/Mores/TreeMap/index.vue new file mode 100644 index 0000000..7964f17 --- /dev/null +++ b/src/packages/components/Charts/Mores/TreeMap/index.vue @@ -0,0 +1,67 @@ + + + diff --git a/src/packages/components/Charts/Mores/WaterPolo/config.ts b/src/packages/components/Charts/Mores/WaterPolo/config.ts new file mode 100644 index 0000000..ee45be1 --- /dev/null +++ b/src/packages/components/Charts/Mores/WaterPolo/config.ts @@ -0,0 +1,97 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { WaterPoloConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const shapes = [ + { + label: '圆形', + value: 'circle' + }, + { + label: '正方形', + value: 'rect' + }, + { + label: '带圆角的正方形', + value: 'roundRect' + }, + { + label: '正三角形', + value: 'triangle' + }, + { + label: '菱形', + value: 'diamond' + }, + { + label: '水滴', + value: 'pin' + }, + { + label: '箭头', + value: 'arrow' + }, +] + +export const includes = [] + +export const option = { + dataset: 0.5, + series: [ + { + type: 'liquidFill', + shape: shapes[0].value, + radius: '90%', + data: [0], + center: ['50%', '50%'], + color: [ + { + type: 'linear', + x: 0, + y: 0, + x2: 0, + y2: 1, + colorStops: [ + { + offset: 0, + color: '#446bf5', + }, + { + offset: 1, + color: '#2ca3e2', + }, + ], + globalCoord: false, + }, + ], + backgroundStyle: { + borderWidth: 1, + color: 'rgba(51, 66, 127, 0.7)', + }, + label: { + normal: { + textStyle: { + fontSize: 50, + color: '#fff', + }, + }, + }, + outline: { + show: false, + borderDistance: 10, + itemStyle: { + borderWidth: 2, + borderColor: '#112165' + } + } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType +{ + public key = WaterPoloConfig.key + public chartConfig = cloneDeep(WaterPoloConfig) + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Mores/WaterPolo/config.vue b/src/packages/components/Charts/Mores/WaterPolo/config.vue new file mode 100644 index 0000000..4121b38 --- /dev/null +++ b/src/packages/components/Charts/Mores/WaterPolo/config.vue @@ -0,0 +1,71 @@ + + + diff --git a/src/packages/components/Charts/Mores/WaterPolo/index.ts b/src/packages/components/Charts/Mores/WaterPolo/index.ts new file mode 100644 index 0000000..0fd42de --- /dev/null +++ b/src/packages/components/Charts/Mores/WaterPolo/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const WaterPoloConfig: ConfigType = { + key: 'WaterPolo', + chartKey: 'VWaterPolo', + conKey: 'VCWaterPolo', + title: '水球图', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.COMMON, + image: 'water_WaterPolo.png' +} diff --git a/src/packages/components/Charts/Mores/WaterPolo/index.vue b/src/packages/components/Charts/Mores/WaterPolo/index.vue new file mode 100644 index 0000000..f5aa4f7 --- /dev/null +++ b/src/packages/components/Charts/Mores/WaterPolo/index.vue @@ -0,0 +1,97 @@ + + + diff --git a/src/packages/components/Charts/Mores/index.ts b/src/packages/components/Charts/Mores/index.ts new file mode 100644 index 0000000..7539cf2 --- /dev/null +++ b/src/packages/components/Charts/Mores/index.ts @@ -0,0 +1,8 @@ +import { ProcessConfig } from './Process/index' +import { RadarConfig } from './Radar/index' +import { FunnelConfig } from './Funnel/index' +import { HeatmapConfig } from './Heatmap/index' +import { WaterPoloConfig } from './WaterPolo/index' +import { TreeMapConfig } from './TreeMap/index' + +export default [ProcessConfig, RadarConfig, FunnelConfig, HeatmapConfig, WaterPoloConfig, TreeMapConfig] diff --git a/src/packages/components/Charts/Pies/PieCircle/config.ts b/src/packages/components/Charts/Pies/PieCircle/config.ts new file mode 100644 index 0000000..cbee497 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCircle/config.ts @@ -0,0 +1,65 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { PieCircleConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' + +export const includes = [] + +const option = { + tooltip: { + show: true, + trigger: 'item' + }, + legend: { + show: true, + }, + dataset: 0.25, + title: { + text: 25 + "%", + x: "center", + y: "center", + textStyle: { + color: "#56B9F8", + fontSize: 30 + } + }, + series: [ + { + type: "pie", + radius: ["75%", "80%"], + center: ["50%", "50%"], + hoverAnimation: true, + color: ["#00bcd44a", "transparent"], + label: { + show: false + }, + data: [ + { + value: [25], + itemStyle: { + color: "#03a9f4", + shadowBlur: 10, + shadowColor:"#97e2f5" + } + }, + { + value: [75], + itemStyle: { + color: "#00bcd44a", + shadowBlur: 0, + shadowColor:"#00bcd44a" + } + } + ] + }, + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = PieCircleConfig.key + + public chartConfig = cloneDeep(PieCircleConfig) + + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Pies/PieCircle/config.vue b/src/packages/components/Charts/Pies/PieCircle/config.vue new file mode 100644 index 0000000..a320694 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCircle/config.vue @@ -0,0 +1,92 @@ + + + diff --git a/src/packages/components/Charts/Pies/PieCircle/index.ts b/src/packages/components/Charts/Pies/PieCircle/index.ts new file mode 100644 index 0000000..079bf60 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCircle/index.ts @@ -0,0 +1,15 @@ +import image from '@/assets/images/chart/charts/pie-circle.png' +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const PieCircleConfig: ConfigType = { + key: 'PieCircle', + chartKey: 'VPieCircle', + conKey: 'VCPieCircle', + title: '饼图-环形', + category: ChatCategoryEnum.PIE, + categoryName: ChatCategoryEnumName.PIE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'pie-circle.png' +} diff --git a/src/packages/components/Charts/Pies/PieCircle/index.vue b/src/packages/components/Charts/Pies/PieCircle/index.vue new file mode 100644 index 0000000..60f5c92 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCircle/index.vue @@ -0,0 +1,74 @@ + + + diff --git a/src/packages/components/Charts/Pies/PieCommon/config.ts b/src/packages/components/Charts/Pies/PieCommon/config.ts new file mode 100644 index 0000000..7350588 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCommon/config.ts @@ -0,0 +1,71 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { PieCommonConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend'] + +export enum PieTypeEnum { + NORMAL = '常规图', + RING = '环形图', + ROSE = '玫瑰图' +} + +export const PieTypeObject = { + [PieTypeEnum.NORMAL]: 'nomal', + [PieTypeEnum.RING]: 'ring', + [PieTypeEnum.ROSE]: 'rose' +} + +const option = { + type: 'ring', + tooltip: { + show: true, + trigger: 'item' + }, + legend: { + show: true + }, + dataset: { ...dataJson }, + series: [ + { + type: 'pie', + radius: ['40%', '65%'], + center: ['50%', '60%'], + roseType: false, + avoidLabelOverlap: false, + itemStyle: { + show: true, + borderRadius: 10, + borderColor: '#fff', + borderWidth: 2 + }, + label: { + show: false, + position: 'center', + formatter: '{b}', + fontSize:12 + }, + emphasis: { + label: { + show: true, + fontSize: '40', + fontWeight: 'bold' + } + }, + labelLine: { + show: false + } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key: string = PieCommonConfig.key + + public chartConfig = cloneDeep(PieCommonConfig) + + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Pies/PieCommon/config.vue b/src/packages/components/Charts/Pies/PieCommon/config.vue new file mode 100644 index 0000000..eaa91dd --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCommon/config.vue @@ -0,0 +1,88 @@ + + + diff --git a/src/packages/components/Charts/Pies/PieCommon/data.json b/src/packages/components/Charts/Pies/PieCommon/data.json new file mode 100644 index 0000000..b0dbe05 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCommon/data.json @@ -0,0 +1,33 @@ +{ + "dimensions": ["product", "data1"], + "source": [ + { + "product": "Mon", + "data1": 120 + }, + { + "product": "Tue", + "data1": 200 + }, + { + "product": "Wed", + "data1": 150 + }, + { + "product": "Thu", + "data1": 80 + }, + { + "product": "Fri", + "data1": 70 + }, + { + "product": "Sat", + "data1": 110 + }, + { + "product": "Sun", + "data1": 130 + } + ] +} diff --git a/src/packages/components/Charts/Pies/PieCommon/index.ts b/src/packages/components/Charts/Pies/PieCommon/index.ts new file mode 100644 index 0000000..85d9bda --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCommon/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const PieCommonConfig: ConfigType = { + key: 'PieCommon', + chartKey: 'VPieCommon', + conKey: 'VCPieCommon', + title: '饼图', + category: ChatCategoryEnum.PIE, + categoryName: ChatCategoryEnumName.PIE, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'pie.png' +} diff --git a/src/packages/components/Charts/Pies/PieCommon/index.vue b/src/packages/components/Charts/Pies/PieCommon/index.vue new file mode 100644 index 0000000..eb99da9 --- /dev/null +++ b/src/packages/components/Charts/Pies/PieCommon/index.vue @@ -0,0 +1,61 @@ + + + diff --git a/src/packages/components/Charts/Pies/index.ts b/src/packages/components/Charts/Pies/index.ts new file mode 100644 index 0000000..f89116f --- /dev/null +++ b/src/packages/components/Charts/Pies/index.ts @@ -0,0 +1,4 @@ +import { PieCommonConfig } from './PieCommon/index' +import { PieCircleConfig } from './PieCircle/index' + +export default [PieCommonConfig, PieCircleConfig] \ No newline at end of file diff --git a/src/packages/components/Charts/Scatters/ScatterCommon/config.ts b/src/packages/components/Charts/Scatters/ScatterCommon/config.ts new file mode 100644 index 0000000..e0a847e --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterCommon/config.ts @@ -0,0 +1,81 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { ScatterCommonConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] + +export const seriesItem = { + type: 'scatter', + emphasis: { + focus: 'series' + }, + symbolSize: 12, + markArea: { + silent: true, + itemStyle: { + color: 'transparent', + borderWidth: 1, + borderType: 'dashed' + }, + data: [ + [ + { + xAxis: 'min', + yAxis: 'min' + }, + { + xAxis: 'max', + yAxis: 'max' + } + ] + ] + }, + markPoint: { + symbol: 'pin', + symbolSize: 50, + data: [ + { type: 'max', name: 'Max' }, + { type: 'min', name: 'Min' } + ] + } +} + +export const option = { + dataset: dataJson, + tooltip: { + showDelay: 0, + formatter: (params: { value: string | any[]; seriesName: string; name: string }) => { + // console.log(params) + return params.value.length > 1 + ? `${params.seriesName}:
${params.value[0]} ${params.value[1]}` + : `${params.seriesName}:
${params.name} ${params.value}` + }, + axisPointer: { + show: true, + type: 'cross', + lineStyle: { + type: 'dashed', + width: 1 + } + } + }, + xAxis: { + scale: true + }, + yAxis: { + scale: true + }, + series: dataJson.map((item, index) => ({ + ...seriesItem, + datasetIndex: index + })) +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = ScatterCommonConfig.key + public chartConfig = cloneDeep(ScatterCommonConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Scatters/ScatterCommon/config.vue b/src/packages/components/Charts/Scatters/ScatterCommon/config.vue new file mode 100644 index 0000000..3c6ed56 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterCommon/config.vue @@ -0,0 +1,55 @@ + + + diff --git a/src/packages/components/Charts/Scatters/ScatterCommon/data.json b/src/packages/components/Charts/Scatters/ScatterCommon/data.json new file mode 100644 index 0000000..9095156 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterCommon/data.json @@ -0,0 +1,110 @@ +[ + { + "dimensions": ["data1"], + "source": [ + [161.2, 51.6], + [167.5, 59.0], + [159.5, 49.2], + [157.0, 63.0], + [155.8, 53.6], + [170.0, 59.0], + [159.1, 47.6], + [166.0, 69.8], + [176.2, 66.8], + [160.2, 75.2], + [172.5, 55.2], + [170.9, 54.2], + [172.9, 62.5], + [153.4, 42.0], + [160.0, 50.0], + [147.2, 49.8], + [168.2, 49.2], + [175.0, 73.2], + [157.0, 47.8], + [170.2, 72.8], + [174.0, 54.5], + [173.0, 59.8], + [179.9, 67.3], + [170.5, 67.8], + [160.0, 47.0], + [154.4, 46.2], + [162.0, 55.0], + [176.5, 83.0], + [160.0, 54.4], + [152.0, 45.8], + [162.1, 53.6], + [170.0, 73.2], + [160.2, 52.1], + [161.3, 67.9], + [166.4, 56.6], + [168.9, 62.3], + [163.8, 58.5], + [167.6, 54.5], + [160.0, 50.2], + [161.3, 60.3], + [167.6, 58.3], + [165.1, 56.2], + [160.0, 50.2], + [170.0, 72.9], + [157.5, 59.8], + [167.6, 61.0], + [160.7, 69.1], + [163.2, 55.9], + [152.4, 46.5], + [157.5, 54.3], + [168.3, 54.8], + [180.3, 60.7], + [165.5, 60.0], + [165.0, 62.0], + [164.5, 60.3], + [156.0, 52.7], + [160.0, 74.3] + ] + }, + { + "dimensions": ["data2"], + "source": [ + [174.0, 65.6], + [175.3, 71.8], + [193.5, 80.7], + [186.5, 72.6], + [187.2, 78.8], + [181.5, 74.8], + [184.0, 86.4], + [184.5, 78.4], + [175.0, 62.0], + [184.0, 81.6], + [180.0, 76.6], + [177.8, 83.6], + [192.0, 90.0], + [176.0, 74.6], + [174.0, 71.0], + [184.0, 79.6], + [192.7, 93.8], + [142.7, 93.8], + [152.7, 93.8], + [170.0, 61.3], + [177.8, 68.6], + [184.2, 80.1], + [186.7, 87.8], + [171.4, 84.7], + [172.7, 73.4], + [175.3, 72.1], + [180.3, 82.6], + [182.9, 88.7], + [188.0, 84.1], + [177.2, 94.1], + [172.1, 74.9], + [167.0, 59.1], + [169.5, 75.6], + [174.0, 86.2], + [172.7, 75.3], + [182.2, 87.1], + [164.1, 55.2], + [163.0, 57.0], + [171.5, 61.4], + [184.2, 76.8], + [174.0, 86.8] + ] + } +] diff --git a/src/packages/components/Charts/Scatters/ScatterCommon/index.ts b/src/packages/components/Charts/Scatters/ScatterCommon/index.ts new file mode 100644 index 0000000..08a9f04 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterCommon/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const ScatterCommonConfig: ConfigType = { + key: 'ScatterCommon', + chartKey: 'VScatterCommon', + conKey: 'VCScatterCommon', + title: '散点图', + category: ChatCategoryEnum.SCATTER, + categoryName: ChatCategoryEnumName.SCATTER, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'scatter-multi.png' +} diff --git a/src/packages/components/Charts/Scatters/ScatterCommon/index.vue b/src/packages/components/Charts/Scatters/ScatterCommon/index.vue new file mode 100644 index 0000000..fd69109 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterCommon/index.vue @@ -0,0 +1,95 @@ + + + diff --git a/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/config.ts b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/config.ts new file mode 100644 index 0000000..c1902a8 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/config.ts @@ -0,0 +1,93 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { ScatterLogarithmicRegressionConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = ['legend', 'xAxis', 'yAxis', 'grid'] + +export const option = { + dataset: dataJson, + + tooltip: { + showDelay: 0, + formatter: (params: { value: string | any[]; seriesName: string; name: string }) => { + // console.log(params) + return params.value.length > 1 + ? `${params.seriesName}:
${params.value[0]} ${params.value[1]}` + : `${params.seriesName}:
${params.name} ${params.value}` + }, + axisPointer: { + show: true, + type: 'cross', + lineStyle: { + type: 'dashed', + width: 1 + } + } + }, + + legend: { + data: dataJson + .filter(i => i?.transform?.type === 'filter' && i?.transform?.config?.eq) + .map(i => i.transform?.config?.eq?.toString()) + }, + + xAxis: { + show: true, + type: 'value', + splitLine: { + lineStyle: { + type: 'dashed' + } + } + }, + yAxis: { + show: true, + type: 'value', + splitLine: { + lineStyle: { + type: 'dashed' + } + } + }, + + visualMap: { + show: false, + dimension: 2, + min: 20000, + max: 1500000000, + seriesIndex: [0, 1], + inRange: { + symbolSize: [10, 70] + } + }, + + series: [ + { + type: 'scatter', + datasetIndex: 1 + }, + { + type: 'scatter', + datasetIndex: 2 + }, + { + type: 'line', + smooth: true, + datasetIndex: 3, + symbolSize: 0.1, + symbol: 'circle', + label: { show: true, fontSize: 16 }, + labelLayout: { dx: -20 }, + encode: { label: 2, tooltip: 1 } + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = ScatterLogarithmicRegressionConfig.key + public chartConfig = cloneDeep(ScatterLogarithmicRegressionConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/config.vue b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/config.vue new file mode 100644 index 0000000..c8e59af --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/config.vue @@ -0,0 +1,18 @@ + + + diff --git a/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/data.json b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/data.json new file mode 100644 index 0000000..252ccef --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/data.json @@ -0,0 +1,64 @@ +[ + { + "source": [ + [28604, 77, 17096869, "Australia", 1990], + [31163, 77.4, 27662440, "Canada", 1990], + [1516, 68, 1154605773, "China", 1990], + [13670, 74.7, 10582082, "Cuba", 1990], + [28599, 75, 4986705, "Finland", 1990], + [29476, 77.1, 56943299, "France", 1990], + [31476, 75.4, 78958237, "Germany", 1990], + [28666, 78.1, 254830, "Iceland", 1990], + [1777, 57.7, 870601776, "India", 1990], + [29550, 79.1, 122249285, "Japan", 1990], + [2076, 67.9, 20194354, "North Korea", 1990], + [12087, 72, 42972254, "South Korea", 1990], + [24021, 75.4, 3397534, "New Zealand", 1990], + [43296, 76.8, 4240375, "Norway", 1990], + [10088, 70.8, 38195258, "Poland", 1990], + [19349, 69.6, 147568552, "Russia", 1990], + [10670, 67.3, 53994605, "Turkey", 1990], + [26424, 75.7, 57110117, "United Kingdom", 1990], + [37062, 75.4, 252847810, "United States", 1990], + [44056, 81.8, 23968973, "Australia", 2015], + [43294, 81.7, 35939927, "Canada", 2015], + [13334, 76.9, 1376048943, "China", 2015], + [21291, 78.5, 11389562, "Cuba", 2015], + [38923, 80.8, 5503457, "Finland", 2015], + [37599, 81.9, 64395345, "France", 2015], + [44053, 81.1, 80688545, "Germany", 2015], + [42182, 82.8, 329425, "Iceland", 2015], + [5903, 66.8, 1311050527, "India", 2015], + [36162, 83.5, 126573481, "Japan", 2015], + [1390, 71.4, 25155317, "North Korea", 2015], + [34644, 80.7, 50293439, "South Korea", 2015], + [34186, 80.6, 4528526, "New Zealand", 2015], + [64304, 81.6, 5210967, "Norway", 2015], + [24787, 77.3, 38611794, "Poland", 2015], + [23038, 73.13, 143456918, "Russia", 2015], + [19360, 76.5, 78665830, "Turkey", 2015], + [38225, 81.4, 64715810, "United Kingdom", 2015], + [53354, 79.1, 321773631, "United States", 2015] + ] + }, + { + "transform": { + "type": "filter", + "config": { "dimension": 4, "eq": 1990 } + } + }, + { + "transform": { + "type": "filter", + "config": { "dimension": 4, "eq": 2015 } + } + }, + { + "transform": { + "type": "ecStat:regression", + "config": { + "method": "logarithmic" + } + } + } +] diff --git a/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/index.ts b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/index.ts new file mode 100644 index 0000000..3fe75d8 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const ScatterLogarithmicRegressionConfig: ConfigType = { + key: 'ScatterLogarithmicRegression', + chartKey: 'VScatterLogarithmicRegression', + conKey: 'VCScatterLogarithmicRegression', + title: '对数回归散点图', + category: ChatCategoryEnum.SCATTER, + categoryName: ChatCategoryEnumName.SCATTER, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'scatter-logarithmic-regression.png' +} diff --git a/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/index.vue b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/index.vue new file mode 100644 index 0000000..d1c9255 --- /dev/null +++ b/src/packages/components/Charts/Scatters/ScatterLogarithmicRegression/index.vue @@ -0,0 +1,73 @@ + + + diff --git a/src/packages/components/Charts/Scatters/index.ts b/src/packages/components/Charts/Scatters/index.ts new file mode 100644 index 0000000..4f0e36a --- /dev/null +++ b/src/packages/components/Charts/Scatters/index.ts @@ -0,0 +1,4 @@ +import { ScatterCommonConfig } from './ScatterCommon/index' +import { ScatterLogarithmicRegressionConfig } from './ScatterLogarithmicRegression/index' + +export default [ScatterCommonConfig, ScatterLogarithmicRegressionConfig] diff --git a/src/packages/components/Charts/Scatters/shard.ts b/src/packages/components/Charts/Scatters/shard.ts new file mode 100644 index 0000000..7896843 --- /dev/null +++ b/src/packages/components/Charts/Scatters/shard.ts @@ -0,0 +1,15 @@ +export const ScatterEffectTypeEnumList = [ + { label: '普通', value: 'scatter' }, + { label: '特效', value: 'effectScatter' } +] + +export const SymbolEnumList = [ + { label: '圆形', value: 'circle' }, + { label: '正方形', value: 'rect' }, + { label: '圆角正方形', value: 'roundRect' }, + { label: '三角形', value: 'triangle' }, + { label: '菱形', value: 'diamond' }, + { label: '水滴', value: 'pin' }, + { label: '箭头', value: 'arrow' }, + { label: '无', value: 'none' } +] diff --git a/src/packages/components/Charts/index.d.ts b/src/packages/components/Charts/index.d.ts new file mode 100644 index 0000000..c033c29 --- /dev/null +++ b/src/packages/components/Charts/index.d.ts @@ -0,0 +1,18 @@ +/* eslint-disable no-unused-vars */ +export enum ChatCategoryEnum { + BAR = 'Bars', + PIE = 'Pies', + LINE = 'Lines', + SCATTER = 'Scatters', + MAP = 'Maps', + MORE = 'Mores' +} + +export enum ChatCategoryEnumName { + BAR = '柱状图', + PIE = '饼图', + LINE = '折线图', + SCATTER = '散点图', + MAP = '地图', + MORE = '更多' +} diff --git a/src/packages/components/Charts/index.ts b/src/packages/components/Charts/index.ts new file mode 100644 index 0000000..20ffcc6 --- /dev/null +++ b/src/packages/components/Charts/index.ts @@ -0,0 +1,8 @@ +import Bars from './Bars' +import Pies from './Pies' +import Lines from './Lines' +import Scatters from './Scatters' +import Mores from './Mores' +import Maps from './Maps' + +export const ChartList = [...Bars, ...Lines, ...Pies, ...Scatters, ...Maps, ...Mores] diff --git a/src/packages/components/Decorates/Borders/Border01/config.ts b/src/packages/components/Decorates/Borders/Border01/config.ts new file mode 100644 index 0000000..acfd636 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border01/config.ts @@ -0,0 +1,16 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border01Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + dur: 0.5, + colors: ['#4fd2dd', '#235fa7'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border01Config.key + public chartConfig = cloneDeep(Border01Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border01/config.vue b/src/packages/components/Decorates/Borders/Border01/config.vue new file mode 100644 index 0000000..70a14cf --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border01/config.vue @@ -0,0 +1,67 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border01/index.ts b/src/packages/components/Decorates/Borders/Border01/index.ts new file mode 100644 index 0000000..4cc33f6 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border01/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border01Config: ConfigType = { + key: 'Border01', + chartKey: 'VBorder01', + conKey: 'VCBorder01', + title: '边框-01', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border01.png' +} diff --git a/src/packages/components/Decorates/Borders/Border01/index.vue b/src/packages/components/Decorates/Borders/Border01/index.vue new file mode 100644 index 0000000..0f070ba --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border01/index.vue @@ -0,0 +1,99 @@ + + + + + \ No newline at end of file diff --git a/src/packages/components/Decorates/Borders/Border02/config.ts b/src/packages/components/Decorates/Borders/Border02/config.ts new file mode 100644 index 0000000..d1daee0 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border02/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border02Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#6586ec', '#2cf7fe'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border02Config.key + public chartConfig = cloneDeep(Border02Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border02/config.vue b/src/packages/components/Decorates/Borders/Border02/config.vue new file mode 100644 index 0000000..a74c69a --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border02/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border02/index.ts b/src/packages/components/Decorates/Borders/Border02/index.ts new file mode 100644 index 0000000..29d4ecd --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border02/index.ts @@ -0,0 +1,14 @@ +import image from '@/assets/images/chart/decorates/border02.png' +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border02Config: ConfigType = { + key: 'Border02', + chartKey: 'VBorder02', + conKey: 'VCBorder02', + title: '边框-02', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border02.png' +} diff --git a/src/packages/components/Decorates/Borders/Border02/index.vue b/src/packages/components/Decorates/Borders/Border02/index.vue new file mode 100644 index 0000000..fc70bfa --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border02/index.vue @@ -0,0 +1,56 @@ + + + + + \ No newline at end of file diff --git a/src/packages/components/Decorates/Borders/Border03/config.ts b/src/packages/components/Decorates/Borders/Border03/config.ts new file mode 100644 index 0000000..cbbfda1 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border03/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border03Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#6586ec', '#2cf7fe'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border03Config.key + public chartConfig = cloneDeep(Border03Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border03/config.vue b/src/packages/components/Decorates/Borders/Border03/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border03/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border03/index.ts b/src/packages/components/Decorates/Borders/Border03/index.ts new file mode 100644 index 0000000..0f2759a --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border03/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border03Config: ConfigType = { + key: 'Border03', + chartKey: 'VBorder03', + conKey: 'VCBorder03', + title: '边框-03', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border03.png' +} diff --git a/src/packages/components/Decorates/Borders/Border03/index.vue b/src/packages/components/Decorates/Borders/Border03/index.vue new file mode 100644 index 0000000..3a8342b --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border03/index.vue @@ -0,0 +1,122 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border04/config.ts b/src/packages/components/Decorates/Borders/Border04/config.ts new file mode 100644 index 0000000..44127a1 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border04/config.ts @@ -0,0 +1,20 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border04Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + borderTitle: '边框-04', + borderTitleWidth: 250, + borderTitleHeight: 32, + borderTitleSize: 18, + borderTitleColor: '#fff', + colors: ['#8aaafb', '#1f33a2'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border04Config.key + public chartConfig = cloneDeep(Border04Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border04/config.vue b/src/packages/components/Decorates/Borders/Border04/config.vue new file mode 100644 index 0000000..d42f436 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border04/config.vue @@ -0,0 +1,98 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border04/index.ts b/src/packages/components/Decorates/Borders/Border04/index.ts new file mode 100644 index 0000000..42b351c --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border04/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border04Config: ConfigType = { + key: 'Border04', + chartKey: 'VBorder04', + conKey: 'VCBorder04', + title: '边框-04', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border04.png' +} diff --git a/src/packages/components/Decorates/Borders/Border04/index.vue b/src/packages/components/Decorates/Borders/Border04/index.vue new file mode 100644 index 0000000..aa42ef7 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border04/index.vue @@ -0,0 +1,253 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border05/config.ts b/src/packages/components/Decorates/Borders/Border05/config.ts new file mode 100644 index 0000000..8379df5 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border05/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border05Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#1d48c4', '#d3e1f8'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border05Config.key + public chartConfig = cloneDeep(Border05Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border05/config.vue b/src/packages/components/Decorates/Borders/Border05/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border05/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border05/index.ts b/src/packages/components/Decorates/Borders/Border05/index.ts new file mode 100644 index 0000000..b9c71cd --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border05/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border05Config: ConfigType = { + key: 'Border05', + chartKey: 'VBorder05', + conKey: 'VCBorder05', + title: '边框-05', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border05.png' +} diff --git a/src/packages/components/Decorates/Borders/Border05/index.vue b/src/packages/components/Decorates/Borders/Border05/index.vue new file mode 100644 index 0000000..aeb5c31 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border05/index.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border06/config.ts b/src/packages/components/Decorates/Borders/Border06/config.ts new file mode 100644 index 0000000..a5133bd --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border06/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border06Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#3140ad', '#1089ff'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border06Config.key + public chartConfig = cloneDeep(Border06Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border06/config.vue b/src/packages/components/Decorates/Borders/Border06/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border06/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border06/index.ts b/src/packages/components/Decorates/Borders/Border06/index.ts new file mode 100644 index 0000000..f32e3be --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border06/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border06Config: ConfigType = { + key: 'Border06', + chartKey: 'VBorder06', + conKey: 'VCBorder06', + title: '边框-06', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border06.png' +} diff --git a/src/packages/components/Decorates/Borders/Border06/index.vue b/src/packages/components/Decorates/Borders/Border06/index.vue new file mode 100644 index 0000000..60bcfee --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border06/index.vue @@ -0,0 +1,84 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border07/config.ts b/src/packages/components/Decorates/Borders/Border07/config.ts new file mode 100644 index 0000000..8919b91 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border07/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border07Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#11eefd', '#0078d2'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border07Config.key + public chartConfig = cloneDeep(Border07Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border07/config.vue b/src/packages/components/Decorates/Borders/Border07/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border07/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border07/index.ts b/src/packages/components/Decorates/Borders/Border07/index.ts new file mode 100644 index 0000000..4d75191 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border07/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border07Config: ConfigType = { + key: 'Border07', + chartKey: 'VBorder07', + conKey: 'VCBorder07', + title: '边框-07', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border07.png' +} diff --git a/src/packages/components/Decorates/Borders/Border07/index.vue b/src/packages/components/Decorates/Borders/Border07/index.vue new file mode 100644 index 0000000..deae760 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border07/index.vue @@ -0,0 +1,143 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border08/config.ts b/src/packages/components/Decorates/Borders/Border08/config.ts new file mode 100644 index 0000000..1c51407 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border08/config.ts @@ -0,0 +1,17 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border08Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#235fa7', '#4fd2dd'], + dur: 3, + reverse: false, + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border08Config.key + public chartConfig = cloneDeep(Border08Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border08/config.vue b/src/packages/components/Decorates/Borders/Border08/config.vue new file mode 100644 index 0000000..ac94277 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border08/config.vue @@ -0,0 +1,71 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border08/index.ts b/src/packages/components/Decorates/Borders/Border08/index.ts new file mode 100644 index 0000000..7096ea1 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border08/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border08Config: ConfigType = { + key: 'Border08', + chartKey: 'VBorder08', + conKey: 'VCBorder08', + title: '边框-08', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border08.png' +} diff --git a/src/packages/components/Decorates/Borders/Border08/index.vue b/src/packages/components/Decorates/Borders/Border08/index.vue new file mode 100644 index 0000000..113db56 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border08/index.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border09/config.ts b/src/packages/components/Decorates/Borders/Border09/config.ts new file mode 100644 index 0000000..7708246 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border09/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border09Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#3140ad', '#235fa7'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border09Config.key + public chartConfig = cloneDeep(Border09Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border09/config.vue b/src/packages/components/Decorates/Borders/Border09/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border09/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border09/index.ts b/src/packages/components/Decorates/Borders/Border09/index.ts new file mode 100644 index 0000000..45078b0 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border09/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border09Config: ConfigType = { + key: 'Border09', + chartKey: 'VBorder09', + conKey: 'VCBorder09', + title: '边框-09', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border09.png' +} diff --git a/src/packages/components/Decorates/Borders/Border09/index.vue b/src/packages/components/Decorates/Borders/Border09/index.vue new file mode 100644 index 0000000..f37e8b2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border09/index.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border10/config.ts b/src/packages/components/Decorates/Borders/Border10/config.ts new file mode 100644 index 0000000..9b510fd --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border10/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border10Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#1089ff', '#0000ff'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border10Config.key + public chartConfig = cloneDeep(Border10Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border10/config.vue b/src/packages/components/Decorates/Borders/Border10/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border10/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border10/index.ts b/src/packages/components/Decorates/Borders/Border10/index.ts new file mode 100644 index 0000000..e059257 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border10/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border10Config: ConfigType = { + key: 'Border10', + chartKey: 'VBorder10', + conKey: 'VCBorder10', + title: '边框-10', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border10.png' +} diff --git a/src/packages/components/Decorates/Borders/Border10/index.vue b/src/packages/components/Decorates/Borders/Border10/index.vue new file mode 100644 index 0000000..d6e4f88 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border10/index.vue @@ -0,0 +1,111 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border11/config.ts b/src/packages/components/Decorates/Borders/Border11/config.ts new file mode 100644 index 0000000..538b84f --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border11/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border11Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#2862b7', '#2862b7'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border11Config.key + public chartConfig = cloneDeep(Border11Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border11/config.vue b/src/packages/components/Decorates/Borders/Border11/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border11/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border11/index.ts b/src/packages/components/Decorates/Borders/Border11/index.ts new file mode 100644 index 0000000..12bc124 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border11/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border11Config: ConfigType = { + key: 'Border11', + chartKey: 'VBorder11', + conKey: 'VCBorder11', + title: '边框-11', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border11.png' +} diff --git a/src/packages/components/Decorates/Borders/Border11/index.vue b/src/packages/components/Decorates/Borders/Border11/index.vue new file mode 100644 index 0000000..b3f00ac --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border11/index.vue @@ -0,0 +1,66 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border12/config.ts b/src/packages/components/Decorates/Borders/Border12/config.ts new file mode 100644 index 0000000..460756f --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border12/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border12Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#2862b7', '#2862b7'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border12Config.key + public chartConfig = cloneDeep(Border12Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border12/config.vue b/src/packages/components/Decorates/Borders/Border12/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border12/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border12/index.ts b/src/packages/components/Decorates/Borders/Border12/index.ts new file mode 100644 index 0000000..ecd8216 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border12/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border12Config: ConfigType = { + key: 'Border12', + chartKey: 'VBorder12', + conKey: 'VCBorder12', + title: '边框-12', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border12.png' +} diff --git a/src/packages/components/Decorates/Borders/Border12/index.vue b/src/packages/components/Decorates/Borders/Border12/index.vue new file mode 100644 index 0000000..84d9d53 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border12/index.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/Border13/config.ts b/src/packages/components/Decorates/Borders/Border13/config.ts new file mode 100644 index 0000000..6ea30be --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border13/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Border13Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#2862b7', '#4b77b7'], + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Border13Config.key + public chartConfig = cloneDeep(Border13Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Borders/Border13/config.vue b/src/packages/components/Decorates/Borders/Border13/config.vue new file mode 100644 index 0000000..8c5b2c2 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border13/config.vue @@ -0,0 +1,54 @@ + + + diff --git a/src/packages/components/Decorates/Borders/Border13/index.ts b/src/packages/components/Decorates/Borders/Border13/index.ts new file mode 100644 index 0000000..0514489 --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border13/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Border13Config: ConfigType = { + key: 'Border13', + chartKey: 'VBorder13', + conKey: 'VCBorder13', + title: '边框-13', + category: ChatCategoryEnum.BORDER, + categoryName: ChatCategoryEnumName.BORDER, + package: PackagesCategoryEnum.DECORATES, + image: 'border13.png' +} diff --git a/src/packages/components/Decorates/Borders/Border13/index.vue b/src/packages/components/Decorates/Borders/Border13/index.vue new file mode 100644 index 0000000..c73dc2a --- /dev/null +++ b/src/packages/components/Decorates/Borders/Border13/index.vue @@ -0,0 +1,48 @@ + + + + + diff --git a/src/packages/components/Decorates/Borders/index.ts b/src/packages/components/Decorates/Borders/index.ts new file mode 100644 index 0000000..2e05e4b --- /dev/null +++ b/src/packages/components/Decorates/Borders/index.ts @@ -0,0 +1,29 @@ +import { Border01Config } from './Border01/index' +import { Border02Config } from './Border02/index' +import { Border03Config } from './Border03/index' +import { Border04Config } from './Border04/index' +import { Border05Config } from './Border05/index' +import { Border06Config } from './Border06/index' +import { Border07Config } from './Border07/index' +import { Border08Config } from './Border08/index' +import { Border09Config } from './Border09/index' +import { Border10Config } from './Border10/index' +import { Border11Config } from './Border11/index' +import { Border12Config } from './Border12/index' +import { Border13Config } from './Border13/index' + +export default [ + Border01Config, + Border02Config, + Border03Config, + Border04Config, + Border05Config, + Border06Config, + Border07Config, + Border08Config, + Border09Config, + Border10Config, + Border11Config, + Border12Config, + Border13Config +] diff --git a/src/packages/components/Decorates/Decorates/Decorates01/config.ts b/src/packages/components/Decorates/Decorates/Decorates01/config.ts new file mode 100644 index 0000000..afb6993 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates01/config.ts @@ -0,0 +1,17 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Decorates01Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#3faacb', '#fff'], + dur: 3, + lineHeight: 2, + endWidth: 5 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Decorates01Config.key + public chartConfig = cloneDeep(Decorates01Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Decorates/Decorates01/config.vue b/src/packages/components/Decorates/Decorates/Decorates01/config.vue new file mode 100644 index 0000000..7256f69 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates01/config.vue @@ -0,0 +1,69 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates01/index.ts b/src/packages/components/Decorates/Decorates/Decorates01/index.ts new file mode 100644 index 0000000..8e9f760 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates01/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const Decorates01Config: ConfigType = { + key: 'Decorates01', + chartKey: 'VDecorates01', + conKey: 'VCDecorates01', + title: '装饰-01', + category: ChatCategoryEnum.DECORATE, + categoryName: ChatCategoryEnumName.DECORATE, + package: PackagesCategoryEnum.DECORATES, + image: 'decorates01.png' +} diff --git a/src/packages/components/Decorates/Decorates/Decorates01/index.vue b/src/packages/components/Decorates/Decorates/Decorates01/index.vue new file mode 100644 index 0000000..023e8c3 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates01/index.vue @@ -0,0 +1,47 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates02/config.ts b/src/packages/components/Decorates/Decorates/Decorates02/config.ts new file mode 100644 index 0000000..cb2ae94 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates02/config.ts @@ -0,0 +1,16 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Decorates02Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#ffffff4d', '#ffffff4d'], + dur: 3, + lineHeight: 3 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Decorates02Config.key + public chartConfig = cloneDeep(Decorates02Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Decorates/Decorates02/config.vue b/src/packages/components/Decorates/Decorates/Decorates02/config.vue new file mode 100644 index 0000000..264dfe5 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates02/config.vue @@ -0,0 +1,42 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates02/index.ts b/src/packages/components/Decorates/Decorates/Decorates02/index.ts new file mode 100644 index 0000000..09e7332 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates02/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const Decorates02Config: ConfigType = { + key: 'Decorates02', + chartKey: 'VDecorates02', + conKey: 'VCDecorates02', + title: '装饰-02', + category: ChatCategoryEnum.DECORATE, + categoryName: ChatCategoryEnumName.DECORATE, + package: PackagesCategoryEnum.DECORATES, + image: 'decorates02.png' +} diff --git a/src/packages/components/Decorates/Decorates/Decorates02/index.vue b/src/packages/components/Decorates/Decorates/Decorates02/index.vue new file mode 100644 index 0000000..842b928 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates02/index.vue @@ -0,0 +1,39 @@ + + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates03/config.ts b/src/packages/components/Decorates/Decorates/Decorates03/config.ts new file mode 100644 index 0000000..5874b2b --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates03/config.ts @@ -0,0 +1,19 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Decorates03Config } from './index' +import cloneDeep from 'lodash/cloneDeep' +import { chartInitConfig } from '@/settings/designSetting' + +export const option = { + dataset: '我是标题', + textColor: '#fff', + textSize: 32, + colors: ['#1dc1f5', '#1dc1f5'] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Decorates03Config.key + public attr = { ...chartInitConfig, w: 500, h: 70, zIndex: 1 } + public chartConfig = cloneDeep(Decorates03Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Decorates/Decorates03/config.vue b/src/packages/components/Decorates/Decorates/Decorates03/config.vue new file mode 100644 index 0000000..e468651 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates03/config.vue @@ -0,0 +1,68 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates03/index.ts b/src/packages/components/Decorates/Decorates/Decorates03/index.ts new file mode 100644 index 0000000..a580504 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates03/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Decorates03Config: ConfigType = { + key: 'Decorates03', + chartKey: 'VDecorates03', + conKey: 'VCDecorates03', + title: '装饰-03', + category: ChatCategoryEnum.DECORATE, + categoryName: ChatCategoryEnumName.DECORATE, + package: PackagesCategoryEnum.DECORATES, + image: 'decorates01.png' +} diff --git a/src/packages/components/Decorates/Decorates/Decorates03/index.vue b/src/packages/components/Decorates/Decorates/Decorates03/index.vue new file mode 100644 index 0000000..2a0db67 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates03/index.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates04/config.ts b/src/packages/components/Decorates/Decorates/Decorates04/config.ts new file mode 100644 index 0000000..f2ae14e --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates04/config.ts @@ -0,0 +1,16 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Decorates04Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#1dc1f5', '#1dc1f5'], + // 是否翻转 + reverse: false +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Decorates04Config.key + public chartConfig = cloneDeep(Decorates04Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Decorates/Decorates04/config.vue b/src/packages/components/Decorates/Decorates/Decorates04/config.vue new file mode 100644 index 0000000..63803f7 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates04/config.vue @@ -0,0 +1,51 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates04/index.ts b/src/packages/components/Decorates/Decorates/Decorates04/index.ts new file mode 100644 index 0000000..32c4b83 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates04/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Decorates04Config: ConfigType = { + key: 'Decorates04', + chartKey: 'VDecorates04', + conKey: 'VCDecorates04', + title: '装饰-04', + category: ChatCategoryEnum.DECORATE, + categoryName: ChatCategoryEnumName.DECORATE, + package: PackagesCategoryEnum.DECORATES, + image: 'decorates04.png' +} diff --git a/src/packages/components/Decorates/Decorates/Decorates04/index.vue b/src/packages/components/Decorates/Decorates/Decorates04/index.vue new file mode 100644 index 0000000..a9a8fe7 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates04/index.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates05/config.ts b/src/packages/components/Decorates/Decorates/Decorates05/config.ts new file mode 100644 index 0000000..75c7404 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates05/config.ts @@ -0,0 +1,15 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { Decorates05Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#00c2ff', '#00c2ff4d'], + dur: 3 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Decorates05Config.key + public chartConfig = cloneDeep(Decorates05Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Decorates/Decorates05/config.vue b/src/packages/components/Decorates/Decorates/Decorates05/config.vue new file mode 100644 index 0000000..c3c58ad --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates05/config.vue @@ -0,0 +1,55 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates05/index.ts b/src/packages/components/Decorates/Decorates/Decorates05/index.ts new file mode 100644 index 0000000..ba1405d --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates05/index.ts @@ -0,0 +1,14 @@ +import image from '@/assets/images/chart/decorates/decorates05.png' +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Decorates05Config: ConfigType = { + key: 'Decorates05', + chartKey: 'VDecorates05', + conKey: 'VCDecorates05', + title: '装饰-05', + category: ChatCategoryEnum.DECORATE, + categoryName: ChatCategoryEnumName.DECORATE, + package: PackagesCategoryEnum.DECORATES, + image: 'decorates05.png' +} diff --git a/src/packages/components/Decorates/Decorates/Decorates05/index.vue b/src/packages/components/Decorates/Decorates/Decorates05/index.vue new file mode 100644 index 0000000..692054b --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates05/index.vue @@ -0,0 +1,174 @@ + + + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates06/config.ts b/src/packages/components/Decorates/Decorates/Decorates06/config.ts new file mode 100644 index 0000000..f07b18c --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates06/config.ts @@ -0,0 +1,19 @@ +import { PublicConfigClass } from '@/packages/public' +import { chartInitConfig } from '@/settings/designSetting' +import { CreateComponentType } from '@/packages/index.d' +import { Decorates06Config } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + colors: ['#1DC1F533', '#1DC1F5FF'], + dataset: '我是标题', + textColor: '#fff', + textSize: 32 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = Decorates06Config.key + public attr = { ...chartInitConfig, w: 500, h: 70, zIndex: 1 } + public chartConfig = cloneDeep(Decorates06Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Decorates/Decorates06/config.vue b/src/packages/components/Decorates/Decorates/Decorates06/config.vue new file mode 100644 index 0000000..464e71c --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates06/config.vue @@ -0,0 +1,42 @@ + + + diff --git a/src/packages/components/Decorates/Decorates/Decorates06/index.ts b/src/packages/components/Decorates/Decorates/Decorates06/index.ts new file mode 100644 index 0000000..6667bfa --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates06/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const Decorates06Config: ConfigType = { + key: 'Decorates06', + chartKey: 'VDecorates06', + conKey: 'VCDecorates06', + title: '装饰-06', + category: ChatCategoryEnum.DECORATE, + categoryName: ChatCategoryEnumName.DECORATE, + package: PackagesCategoryEnum.DECORATES, + chartFrame: ChartFrameEnum.COMMON, + image: 'decorates06.png' +} diff --git a/src/packages/components/Decorates/Decorates/Decorates06/index.vue b/src/packages/components/Decorates/Decorates/Decorates06/index.vue new file mode 100644 index 0000000..d221d4f --- /dev/null +++ b/src/packages/components/Decorates/Decorates/Decorates06/index.vue @@ -0,0 +1,75 @@ + + + + + diff --git a/src/packages/components/Decorates/Decorates/index.ts b/src/packages/components/Decorates/Decorates/index.ts new file mode 100644 index 0000000..0d9d460 --- /dev/null +++ b/src/packages/components/Decorates/Decorates/index.ts @@ -0,0 +1,15 @@ +import { Decorates01Config } from './Decorates01/index' +import { Decorates02Config } from './Decorates02/index' +import { Decorates03Config } from './Decorates03/index' +import { Decorates04Config } from './Decorates04/index' +import { Decorates05Config } from './Decorates05/index' +import { Decorates06Config } from './Decorates06/index' + +export default [ + Decorates01Config, + Decorates02Config, + Decorates03Config, + Decorates04Config, + Decorates05Config, + Decorates06Config +] diff --git a/src/packages/components/Decorates/Mores/Clock/config.ts b/src/packages/components/Decorates/Mores/Clock/config.ts new file mode 100644 index 0000000..4ee0e3d --- /dev/null +++ b/src/packages/components/Decorates/Mores/Clock/config.ts @@ -0,0 +1,17 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { ClockConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + border: 6, + color: '#ffffff', + bgColor: '#84a5e9', + borderColor: '#ffffff' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = ClockConfig.key + public chartConfig = cloneDeep(ClockConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Mores/Clock/config.vue b/src/packages/components/Decorates/Mores/Clock/config.vue new file mode 100644 index 0000000..c762b16 --- /dev/null +++ b/src/packages/components/Decorates/Mores/Clock/config.vue @@ -0,0 +1,33 @@ + + + diff --git a/src/packages/components/Decorates/Mores/Clock/index.ts b/src/packages/components/Decorates/Mores/Clock/index.ts new file mode 100644 index 0000000..6048dd0 --- /dev/null +++ b/src/packages/components/Decorates/Mores/Clock/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const ClockConfig: ConfigType = { + key: 'Clock', + chartKey: 'VClock', + conKey: 'VCClock', + title: '时钟', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.DECORATES, + chartFrame: ChartFrameEnum.STATIC, + image: 'clock.png' +} diff --git a/src/packages/components/Decorates/Mores/Clock/index.vue b/src/packages/components/Decorates/Mores/Clock/index.vue new file mode 100644 index 0000000..e37f1b2 --- /dev/null +++ b/src/packages/components/Decorates/Mores/Clock/index.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/packages/components/Decorates/Mores/CountDown/config.ts b/src/packages/components/Decorates/Mores/CountDown/config.ts new file mode 100644 index 0000000..dce9473 --- /dev/null +++ b/src/packages/components/Decorates/Mores/CountDown/config.ts @@ -0,0 +1,47 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { CountDownConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import { chartInitConfig } from '@/settings/designSetting' +import { FlipType } from '@/components/Pages/Flipper' + +type STYLE = '时分秒' | '冒号' + +export interface OptionType { + dataset: number + useEndDate: boolean + endDate: number + style: STYLE + showDay: boolean + flipperBgColor: string + flipperTextColor: string + flipperWidth: number + flipperHeight: number + flipperRadius: number + flipperGap: number + flipperType: FlipType + flipperSpeed: number +} + +export const option: OptionType = { + dataset: 10 * 60, // 10分钟 + useEndDate: false, + endDate: new Date().getTime(), // 当前时间 + style: '时分秒', + showDay: false, + flipperBgColor: '#16293E', + flipperTextColor: '#4A9EF8FF', + flipperWidth: 30, + flipperHeight: 50, + flipperRadius: 5, + flipperGap: 10, + flipperType: 'down', + flipperSpeed: 450 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = CountDownConfig.key + public attr = { ...chartInitConfig, w: 500, h: 100, zIndex: -1 } + public chartConfig = cloneDeep(CountDownConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Mores/CountDown/config.vue b/src/packages/components/Decorates/Mores/CountDown/config.vue new file mode 100644 index 0000000..0b92d80 --- /dev/null +++ b/src/packages/components/Decorates/Mores/CountDown/config.vue @@ -0,0 +1,98 @@ + + diff --git a/src/packages/components/Decorates/Mores/CountDown/index.ts b/src/packages/components/Decorates/Mores/CountDown/index.ts new file mode 100644 index 0000000..58648fc --- /dev/null +++ b/src/packages/components/Decorates/Mores/CountDown/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const CountDownConfig: ConfigType = { + key: 'CountDown', + chartKey: 'VCountDown', + conKey: 'VCCountDown', + title: '倒计时', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.DECORATES, + image: 'countdown.png' +} diff --git a/src/packages/components/Decorates/Mores/CountDown/index.vue b/src/packages/components/Decorates/Mores/CountDown/index.vue new file mode 100644 index 0000000..d0400af --- /dev/null +++ b/src/packages/components/Decorates/Mores/CountDown/index.vue @@ -0,0 +1,188 @@ + + + + + diff --git a/src/packages/components/Decorates/Mores/FlipperNumber/config.ts b/src/packages/components/Decorates/Mores/FlipperNumber/config.ts new file mode 100644 index 0000000..36a0437 --- /dev/null +++ b/src/packages/components/Decorates/Mores/FlipperNumber/config.ts @@ -0,0 +1,39 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { FlipperNumberConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import { chartInitConfig } from '@/settings/designSetting' +import { FlipType } from '@/components/Pages/Flipper' + +export interface OptionType { + dataset: number | string + flipperLength: number + flipperBgColor: string + flipperTextColor: string + flipperWidth: number + flipperHeight: number + flipperRadius: number + flipperGap: number + flipperType: FlipType + flipperSpeed: number +} + +export const option: OptionType = { + dataset: 3234, + flipperLength: 6, + flipperBgColor: '#16293E', + flipperTextColor: '#4A9EF8FF', + flipperWidth: 30, + flipperHeight: 50, + flipperRadius: 5, + flipperGap: 10, + flipperType: 'down', + flipperSpeed: 450 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = FlipperNumberConfig.key + public attr = { ...chartInitConfig, w: 300, h: 100, zIndex: -1 } + public chartConfig = cloneDeep(FlipperNumberConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Mores/FlipperNumber/config.vue b/src/packages/components/Decorates/Mores/FlipperNumber/config.vue new file mode 100644 index 0000000..f2c65a9 --- /dev/null +++ b/src/packages/components/Decorates/Mores/FlipperNumber/config.vue @@ -0,0 +1,72 @@ + + diff --git a/src/packages/components/Decorates/Mores/FlipperNumber/index.ts b/src/packages/components/Decorates/Mores/FlipperNumber/index.ts new file mode 100644 index 0000000..5928be5 --- /dev/null +++ b/src/packages/components/Decorates/Mores/FlipperNumber/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const FlipperNumberConfig: ConfigType = { + key: 'FlipperNumber', + chartKey: 'VFlipperNumber', + conKey: 'VCFlipperNumber', + title: '数字翻牌-需动态触发', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.DECORATES, + image: 'flipper-number.png' +} diff --git a/src/packages/components/Decorates/Mores/FlipperNumber/index.vue b/src/packages/components/Decorates/Mores/FlipperNumber/index.vue new file mode 100644 index 0000000..8743fdb --- /dev/null +++ b/src/packages/components/Decorates/Mores/FlipperNumber/index.vue @@ -0,0 +1,85 @@ + + + + + diff --git a/src/packages/components/Decorates/Mores/Number/config.ts b/src/packages/components/Decorates/Mores/Number/config.ts new file mode 100644 index 0000000..34c10f5 --- /dev/null +++ b/src/packages/components/Decorates/Mores/Number/config.ts @@ -0,0 +1,25 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { NumberConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + // 数据说明 + dataset: 100000, + from: 0, + dur: 3, + precision: 0, + showSeparator: true, + numberSize: 34, + numberColor: '#4a9ef8', + prefixText: '¥', + prefixColor: '#4a9ef8', + suffixText: '元', + suffixColor: '#4a9ef8', +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = NumberConfig.key + public chartConfig = cloneDeep(NumberConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Mores/Number/config.vue b/src/packages/components/Decorates/Mores/Number/config.vue new file mode 100644 index 0000000..760fb14 --- /dev/null +++ b/src/packages/components/Decorates/Mores/Number/config.vue @@ -0,0 +1,96 @@ + + + diff --git a/src/packages/components/Decorates/Mores/Number/index.ts b/src/packages/components/Decorates/Mores/Number/index.ts new file mode 100644 index 0000000..59726cf --- /dev/null +++ b/src/packages/components/Decorates/Mores/Number/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const NumberConfig: ConfigType = { + key: 'Number', + chartKey: 'VNumber', + conKey: 'VCNumber', + title: '数字计数', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.DECORATES, + image: 'number.png' +} diff --git a/src/packages/components/Decorates/Mores/Number/index.vue b/src/packages/components/Decorates/Mores/Number/index.vue new file mode 100644 index 0000000..4b6169b --- /dev/null +++ b/src/packages/components/Decorates/Mores/Number/index.vue @@ -0,0 +1,79 @@ + + + + + diff --git a/src/packages/components/Decorates/Mores/TimeCommon/config.ts b/src/packages/components/Decorates/Mores/TimeCommon/config.ts new file mode 100644 index 0000000..13ed29f --- /dev/null +++ b/src/packages/components/Decorates/Mores/TimeCommon/config.ts @@ -0,0 +1,38 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { TimeCommonConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import { chartInitConfig } from '@/settings/designSetting' + +export enum FontWeightEnum { + NORMAL = '常规', + BOLD = '加粗' +} + +export const FontWeightObject = { + [FontWeightEnum.NORMAL]: 'normal', + [FontWeightEnum.BOLD]: 'bold' +} + +export const option = { + // 数据说明 + timeSize: 24, + timeLineHeight: 50, + timeTextIndent: 2, + timeColor: '#E6F7FF', + fontWeight: 'normal', + + //阴影 + showShadow: true, + hShadow: 0, + vShadow: 0, + blurShadow: 8, + colorShadow: '#0075ff' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TimeCommonConfig.key + public attr = { ...chartInitConfig, w: 300, h: 50, zIndex: -1 } + public chartConfig = cloneDeep(TimeCommonConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Mores/TimeCommon/config.vue b/src/packages/components/Decorates/Mores/TimeCommon/config.vue new file mode 100644 index 0000000..77d190f --- /dev/null +++ b/src/packages/components/Decorates/Mores/TimeCommon/config.vue @@ -0,0 +1,99 @@ + + diff --git a/src/packages/components/Decorates/Mores/TimeCommon/index.ts b/src/packages/components/Decorates/Mores/TimeCommon/index.ts new file mode 100644 index 0000000..427d25d --- /dev/null +++ b/src/packages/components/Decorates/Mores/TimeCommon/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const TimeCommonConfig: ConfigType = { + key: 'TimeCommon', + chartKey: 'VTimeCommon', + conKey: 'VCTimeCommon', + title: '通用时间', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.DECORATES, + image: 'time.png' +} diff --git a/src/packages/components/Decorates/Mores/TimeCommon/index.vue b/src/packages/components/Decorates/Mores/TimeCommon/index.vue new file mode 100644 index 0000000..a2f4d63 --- /dev/null +++ b/src/packages/components/Decorates/Mores/TimeCommon/index.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/packages/components/Decorates/Mores/index.ts b/src/packages/components/Decorates/Mores/index.ts new file mode 100644 index 0000000..855f6e2 --- /dev/null +++ b/src/packages/components/Decorates/Mores/index.ts @@ -0,0 +1,7 @@ +import { NumberConfig } from './Number/index' +import { TimeCommonConfig } from './TimeCommon/index' +import { ClockConfig } from './Clock/index' +import { CountDownConfig } from './CountDown/index' +import { FlipperNumberConfig } from './FlipperNumber' + +export default [NumberConfig, FlipperNumberConfig, TimeCommonConfig, CountDownConfig, ClockConfig] diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/Utils/arc.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/Utils/arc.ts new file mode 100644 index 0000000..76db98f --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/Utils/arc.ts @@ -0,0 +1,236 @@ +// eslint-disable-next-line @typescript-eslint/ban-ts-comment +// @ts-nocheck +import { + ArcCurve, + BufferAttribute, + BufferGeometry, + Color, + Line, + LineBasicMaterial, + Points, + PointsMaterial, + Quaternion, + Vector3 +} from 'three' +import { lon2xyz } from './common' + +/* + * 绘制一条圆弧飞线 + * 5个参数含义:( 飞线圆弧轨迹半径, 开始角度, 结束角度) + */ +function createFlyLine(radius, startAngle, endAngle, color) { + const geometry = new BufferGeometry() //声明一个几何体对象BufferGeometry + // ArcCurve创建圆弧曲线 + const arc = new ArcCurve(0, 0, radius, startAngle, endAngle, false) + //getSpacedPoints是基类Curve的方法,返回一个vector2对象作为元素组成的数组 + const pointsArr = arc.getSpacedPoints(100) //分段数80,返回81个顶点 + geometry.setFromPoints(pointsArr) // setFromPoints方法从pointsArr中提取数据改变几何体的顶点属性vertices + // 每个顶点对应一个百分比数据attributes.percent 用于控制点的渲染大小 + const percentArr = [] //attributes.percent的数据 + for (let i = 0; i < pointsArr.length; i++) { + percentArr.push(i / pointsArr.length) + } + const percentAttribue = new BufferAttribute(new Float32Array(percentArr), 1) + // 通过顶点数据percent点模型从大到小变化,产生小蝌蚪形状飞线 + geometry.attributes.percent = percentAttribue + // 批量计算所有顶点颜色数据 + const colorArr = [] + for (let i = 0; i < pointsArr.length; i++) { + const color1 = new Color(0xec8f43) //轨迹线颜色 青色 + const color2 = new Color(0xf3ae76) //黄色 + const color = color1.lerp(color2, i / pointsArr.length) + colorArr.push(color.r, color.g, color.b) + } + // 设置几何体顶点颜色数据 + geometry.attributes.color = new BufferAttribute(new Float32Array(colorArr), 3) + const size = 1.3 + // 点模型渲染几何体每个顶点 + const material = new PointsMaterial({ + size, //点大小 + // vertexColors: VertexColors, //使用顶点颜色渲染 + transparent: true, + depthWrite: false + }) + // 修改点材质的着色器源码(注意:不同版本细节可能会稍微会有区别,不过整体思路是一样的) + material.onBeforeCompile = function (shader) { + // 顶点着色器中声明一个attribute变量:百分比 + shader.vertexShader = shader.vertexShader.replace( + 'void main() {', + [ + 'attribute float percent;', //顶点大小百分比变量,控制点渲染大小 + 'void main() {' + ].join('\n') // .join()把数组元素合成字符串 + ) + // 调整点渲染大小计算方式 + shader.vertexShader = shader.vertexShader.replace( + 'gl_PointSize = size;', + ['gl_PointSize = percent * size;'].join('\n') // .join()把数组元素合成字符串 + ) + } + const FlyLine = new Points(geometry, material) + material.color = new Color(color) + FlyLine.name = '飞行线' + + return FlyLine +} + +/**输入地球上任意两点的经纬度坐标,通过函数flyArc可以绘制一个飞线圆弧轨迹 + * lon1,lat1:轨迹线起点经纬度坐标 + * lon2,lat2:轨迹线结束点经纬度坐标 + */ +function flyArc(radius, lon1, lat1, lon2, lat2, options) { + const sphereCoord1 = lon2xyz(radius, lon1, lat1) //经纬度坐标转球面坐标 + // startSphereCoord:轨迹线起点球面坐标 + const startSphereCoord = new Vector3(sphereCoord1.x, sphereCoord1.y, sphereCoord1.z) + const sphereCoord2 = lon2xyz(radius, lon2, lat2) + // startSphereCoord:轨迹线结束点球面坐标 + const endSphereCoord = new Vector3(sphereCoord2.x, sphereCoord2.y, sphereCoord2.z) + + //计算绘制圆弧需要的关于y轴对称的起点、结束点和旋转四元数 + const startEndQua = _3Dto2D(startSphereCoord, endSphereCoord) + // 调用arcXOY函数绘制一条圆弧飞线轨迹 + const arcline = arcXOY(radius, startEndQua.startPoint, startEndQua.endPoint, options) + arcline.quaternion.multiply(startEndQua.quaternion) + return arcline +} +/* + * 把3D球面上任意的两个飞线起点和结束点绕球心旋转到到XOY平面上, + * 同时保持关于y轴对称,借助旋转得到的新起点和新结束点绘制 + * 一个圆弧,最后把绘制的圆弧反向旋转到原来的起点和结束点即可 + */ +function _3Dto2D(startSphere, endSphere) { + /*计算第一次旋转的四元数:表示从一个平面如何旋转到另一个平面*/ + const origin = new Vector3(0, 0, 0) //球心坐标 + const startDir = startSphere.clone().sub(origin) //飞线起点与球心构成方向向量 + const endDir = endSphere.clone().sub(origin) //飞线结束点与球心构成方向向量 + // dir1和dir2构成一个三角形,.cross()叉乘计算该三角形法线normal + const normal = startDir.clone().cross(endDir).normalize() + const xoyNormal = new Vector3(0, 0, 1) //XOY平面的法线 + //.setFromUnitVectors()计算从normal向量旋转达到xoyNormal向量所需要的四元数 + // quaternion表示把球面飞线旋转到XOY平面上需要的四元数 + const quaternion3D_XOY = new Quaternion().setFromUnitVectors(normal, xoyNormal) + /*第一次旋转:飞线起点、结束点从3D空间第一次旋转到XOY平面*/ + const startSphereXOY = startSphere.clone().applyQuaternion(quaternion3D_XOY) + const endSphereXOY = endSphere.clone().applyQuaternion(quaternion3D_XOY) + + /*计算第二次旋转的四元数*/ + // middleV3:startSphereXOY和endSphereXOY的中点 + const middleV3 = startSphereXOY.clone().add(endSphereXOY).multiplyScalar(0.5) + const midDir = middleV3.clone().sub(origin).normalize() // 旋转前向量midDir,中点middleV3和球心构成的方向向量 + const yDir = new Vector3(0, 1, 0) // 旋转后向量yDir,即y轴 + // .setFromUnitVectors()计算从midDir向量旋转达到yDir向量所需要的四元数 + // quaternion2表示让第一次旋转到XOY平面的起点和结束点关于y轴对称需要的四元数 + const quaternionXOY_Y = new Quaternion().setFromUnitVectors(midDir, yDir) + + /*第二次旋转:使旋转到XOY平面的点再次旋转,实现关于Y轴对称*/ + const startSpherXOY_Y = startSphereXOY.clone().applyQuaternion(quaternionXOY_Y) + const endSphereXOY_Y = endSphereXOY.clone().applyQuaternion(quaternionXOY_Y) + + /**一个四元数表示一个旋转过程 + *.invert()方法表示四元数的逆,简单说就是把旋转过程倒过来 + * 两次旋转的四元数执行.invert()求逆,然后执行.multiply()相乘 + *新版本.invert()对应旧版本.invert() + */ + const quaternionInverse = quaternion3D_XOY.clone().invert().multiply(quaternionXOY_Y.clone().invert()) + return { + // 返回两次旋转四元数的逆四元数 + quaternion: quaternionInverse, + // 范围两次旋转后在XOY平面上关于y轴对称的圆弧起点和结束点坐标 + startPoint: startSpherXOY_Y, + endPoint: endSphereXOY_Y + } +} +/**通过函数arcXOY()可以在XOY平面上绘制一个关于y轴对称的圆弧曲线 + * startPoint, endPoint:表示圆弧曲线的起点和结束点坐标值,起点和结束点关于y轴对称 + * 同时在圆弧轨迹的基础上绘制一段飞线*/ +function arcXOY(radius, startPoint, endPoint, options) { + // 计算两点的中点 + const middleV3 = new Vector3().addVectors(startPoint, endPoint).multiplyScalar(0.5) + // 弦垂线的方向dir(弦的中点和圆心构成的向量) + const dir = middleV3.clone().normalize() + // 计算球面飞线的起点、结束点和球心构成夹角的弧度值 + const earthRadianAngle = radianAOB(startPoint, endPoint, new Vector3(0, 0, 0)) + /*设置飞线轨迹圆弧的中间点坐标 + 弧度值 * radius * 0.2:表示飞线轨迹圆弧顶部距离地球球面的距离 + 起点、结束点相聚越远,构成的弧线顶部距离球面越高*/ + const arcTopCoord = dir.multiplyScalar(radius + earthRadianAngle * radius * 0.2) // 黄色飞行线的高度 + //求三个点的外接圆圆心(飞线圆弧轨迹的圆心坐标) + const flyArcCenter = threePointCenter(startPoint, endPoint, arcTopCoord) + // 飞线圆弧轨迹半径flyArcR + const flyArcR = Math.abs(flyArcCenter.y - arcTopCoord.y) + /*坐标原点和飞线起点构成直线和y轴负半轴夹角弧度值 + 参数分别是:飞线圆弧起点、y轴负半轴上一点、飞线圆弧圆心*/ + const flyRadianAngle = radianAOB(startPoint, new Vector3(0, -1, 0), flyArcCenter) + const startAngle = -Math.PI / 2 + flyRadianAngle //飞线圆弧开始角度 + const endAngle = Math.PI - startAngle //飞线圆弧结束角度 + // 调用圆弧线模型的绘制函数 + const arcline = circleLine(flyArcCenter.x, flyArcCenter.y, flyArcR, startAngle, endAngle, options.color) + // const arcline = new Group();// 不绘制轨迹线,使用 Group替换circleLine()即可 + arcline.center = flyArcCenter //飞线圆弧自定一个属性表示飞线圆弧的圆心 + arcline.topCoord = arcTopCoord //飞线圆弧自定一个属性表示飞线圆弧中间也就是顶部坐标 + + // const flyAngle = Math.PI/ 10; //飞线圆弧固定弧度 + const flyAngle = (endAngle - startAngle) / 7 //飞线圆弧的弧度和轨迹线弧度相关 + // 绘制一段飞线,圆心做坐标原点 + const flyLine = createFlyLine(flyArcR, startAngle, startAngle + flyAngle, options.flyLineColor) + flyLine.position.y = flyArcCenter.y //平移飞线圆弧和飞线轨迹圆弧重合 + //飞线段flyLine作为飞线轨迹arcLine子对象,继承飞线轨迹平移旋转等变换 + arcline.add(flyLine) + //飞线段运动范围startAngle~flyEndAngle + flyLine.flyEndAngle = endAngle - startAngle - flyAngle + flyLine.startAngle = startAngle + // arcline.flyEndAngle:飞线段当前角度位置,这里设置了一个随机值用于演示 + flyLine.AngleZ = arcline.flyEndAngle * Math.random() + // flyLine.rotation.z = arcline.AngleZ; + // arcline.flyLine指向飞线段,便于设置动画是访问飞线段 + arcline.userData['flyLine'] = flyLine + + return arcline +} +/*计算球面上两点和球心构成夹角的弧度值 +参数point1, point2:表示地球球面上两点坐标Vector3 +计算A、B两点和顶点O构成的AOB夹角弧度值*/ +function radianAOB(A, B, O) { + // dir1、dir2:球面上两个点和球心构成的方向向量 + const dir1 = A.clone().sub(O).normalize() + const dir2 = B.clone().sub(O).normalize() + //点乘.dot()计算夹角余弦值 + const cosAngle = dir1.clone().dot(dir2) + const radianAngle = Math.acos(cosAngle) //余弦值转夹角弧度值,通过余弦值可以计算夹角范围是0~180度 + return radianAngle +} +/*绘制一条圆弧曲线模型Line +5个参数含义:(圆心横坐标, 圆心纵坐标, 飞线圆弧轨迹半径, 开始角度, 结束角度)*/ +function circleLine(x, y, r, startAngle, endAngle, color) { + const geometry = new BufferGeometry() //声明一个几何体对象Geometry + // ArcCurve创建圆弧曲线 + const arc = new ArcCurve(x, y, r, startAngle, endAngle, false) + //getSpacedPoints是基类Curve的方法,返回一个vector2对象作为元素组成的数组 + const points = arc.getSpacedPoints(80) //分段数50,返回51个顶点 + geometry.setFromPoints(points) // setFromPoints方法从points中提取数据改变几何体的顶点属性vertices + const material = new LineBasicMaterial({ + color: color || 0xd18547 + }) //线条材质 + const line = new Line(geometry, material) //线条模型对象 + return line +} +//求三个点的外接圆圆心,p1, p2, p3表示三个点的坐标Vector3。 +function threePointCenter(p1, p2, p3) { + const L1 = p1.lengthSq() //p1到坐标原点距离的平方 + const L2 = p2.lengthSq() + const L3 = p3.lengthSq() + const x1 = p1.x, + y1 = p1.y, + x2 = p2.x, + y2 = p2.y, + x3 = p3.x, + y3 = p3.y + const S = x1 * y2 + x2 * y3 + x3 * y1 - x1 * y3 - x2 * y1 - x3 * y2 + const x = (L2 * y3 + L1 * y2 + L3 * y1 - L2 * y1 - L3 * y2 - L1 * y3) / S / 2 + const y = (L3 * x2 + L2 * x1 + L1 * x3 - L1 * x2 - L2 * x3 - L3 * x1) / S / 2 + // 三点外接圆圆心坐标 + const center = new Vector3(x, y, 0) + return center +} + +export { arcXOY, flyArc } diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/Utils/common.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/Utils/common.ts new file mode 100644 index 0000000..ac2f05d --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/Utils/common.ts @@ -0,0 +1,137 @@ +import { + CatmullRomCurve3, + DoubleSide, + Group, + Mesh, + MeshBasicMaterial, + PlaneGeometry, + Texture, + TubeGeometry, + Vector3 +} from 'three' +import { punctuation } from '../world/Earth' + +/** + * 经纬度坐标转球面坐标 + * @param {地球半径} R + * @param {经度(角度值)} longitude + * @param {维度(角度值)} latitude + */ +export const lon2xyz = (R: number, longitude: number, latitude: number): Vector3 => { + let lon = (longitude * Math.PI) / 180 // 转弧度值 + const lat = (latitude * Math.PI) / 180 // 转弧度值 + lon = -lon // js坐标系z坐标轴对应经度-90度,而不是90度 + + // 经纬度坐标转球面坐标计算公式 + const x = R * Math.cos(lat) * Math.cos(lon) + const y = R * Math.sin(lat) + const z = R * Math.cos(lat) * Math.sin(lon) + // 返回球面坐标 + return new Vector3(x, y, z) +} + +// 创建波动光圈 +export const createWaveMesh = (options: { radius: number; lon: number; lat: number; textures: any }) => { + const geometry = new PlaneGeometry(1, 1) //默认在XOY平面上 + const texture = options.textures.aperture + + const material = new MeshBasicMaterial({ + color: 0xe99f68, + map: texture, + transparent: true, //使用背景透明的png贴图,注意开启透明计算 + opacity: 1.0, + depthWrite: false //禁止写入深度缓冲区数据 + }) + const mesh = new Mesh(geometry, material) + // 经纬度转球面坐标 + const coord = lon2xyz(options.radius * 1.001, options.lon, options.lat) + const size = options.radius * 0.12 //矩形平面Mesh的尺寸 + mesh.scale.set(size, size, size) //设置mesh大小 + mesh.userData['size'] = size //自顶一个属性,表示mesh静态大小 + mesh.userData['scale'] = Math.random() * 1.0 //自定义属性._s表示mesh在原始大小基础上放大倍数 光圈在原来mesh.size基础上1~2倍之间变化 + mesh.position.set(coord.x, coord.y, coord.z) + const coordVec3 = new Vector3(coord.x, coord.y, coord.z).normalize() + const meshNormal = new Vector3(0, 0, 1) + mesh.quaternion.setFromUnitVectors(meshNormal, coordVec3) + return mesh +} + +// 创建柱状 +export const createLightPillar = (options: { + radius: number + lon: number + lat: number + index: number + textures: Record + punctuation: punctuation +}) => { + const height = options.radius * 0.3 + const geometry = new PlaneGeometry(options.radius * 0.05, height) + geometry.rotateX(Math.PI / 2) + geometry.translate(0, 0, height / 2) + const material = new MeshBasicMaterial({ + map: options.textures.light_column, + color: options.index == 0 ? options.punctuation.lightColumn.startColor : options.punctuation.lightColumn.endColor, + transparent: true, + side: DoubleSide, + depthWrite: false //是否对深度缓冲区有任何的影响 + }) + const mesh = new Mesh(geometry, material) + const group = new Group() + // 两个光柱交叉叠加 + group.add(mesh, mesh.clone().rotateZ(Math.PI / 2)) //几何体绕x轴旋转了,所以mesh旋转轴变为z + // 经纬度转球面坐标 + const SphereCoord = lon2xyz(options.radius, options.lon, options.lat) //SphereCoord球面坐标 + group.position.set(SphereCoord.x, SphereCoord.y, SphereCoord.z) //设置mesh位置 + const coordVec3 = new Vector3(SphereCoord.x, SphereCoord.y, SphereCoord.z).normalize() + const meshNormal = new Vector3(0, 0, 1) + group.quaternion.setFromUnitVectors(meshNormal, coordVec3) + return group +} + +// 光柱底座矩形平面 +export const createPointMesh = (options: { radius: number; lon: number; lat: number; material: MeshBasicMaterial }) => { + const geometry = new PlaneGeometry(1, 1) //默认在XOY平面上 + const mesh = new Mesh(geometry, options.material) + // 经纬度转球面坐标 + const coord = lon2xyz(options.radius * 1.001, options.lon, options.lat) + const size = options.radius * 0.05 // 矩形平面Mesh的尺寸 + mesh.scale.set(size, size, size) // 设置mesh大小 + + // 设置mesh位置 + mesh.position.set(coord.x, coord.y, coord.z) + const coordVec3 = new Vector3(coord.x, coord.y, coord.z).normalize() + const meshNormal = new Vector3(0, 0, 1) + mesh.quaternion.setFromUnitVectors(meshNormal, coordVec3) + return mesh +} + +// 获取点 +export const getCirclePoints = (option: any) => { + const list = [] + for (let j = 0; j < 2 * Math.PI - 0.1; j += (2 * Math.PI) / (option.number || 100)) { + list.push([ + parseFloat((Math.cos(j) * (option.radius || 10)).toFixed(2)), + 0, + parseFloat((Math.sin(j) * (option.radius || 10)).toFixed(2)) + ]) + } + if (option.closed) list.push(list[0]) + return list +} + +// 创建线 + +/** + * 创建动态的线 + */ +export const createAnimateLine = (option: any) => { + // 由多个点数组构成的曲线 通常用于道路 + const l: Array = [] + option.pointList.forEach((e: Array) => l.push(new Vector3(e[0], e[1], e[2]))) + const curve = new CatmullRomCurve3(l) // 曲线路径 + + // 管道体 + const tubeGeometry = new TubeGeometry(curve, option.number || 50, option.radius || 1, option.radialSegments) + return new Mesh(tubeGeometry, option.material) +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/interfaces/IEvents.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/interfaces/IEvents.ts new file mode 100644 index 0000000..a3cfe4b --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/interfaces/IEvents.ts @@ -0,0 +1,4 @@ + +export interface IEvents { + resize: () => void +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/interfaces/IWord.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/interfaces/IWord.ts new file mode 100644 index 0000000..e0ba38f --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/interfaces/IWord.ts @@ -0,0 +1,6 @@ +export interface IWord { + dom: HTMLElement + data: any + width: number + height: number +} \ No newline at end of file diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/shaders/earth/fragment.fs b/src/packages/components/Decorates/Three/ThreeEarth01/code/shaders/earth/fragment.fs new file mode 100644 index 0000000..d05e80d --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/shaders/earth/fragment.fs @@ -0,0 +1,23 @@ +uniform vec3 glowColor; +uniform float bias; +uniform float power; +uniform float time; +varying vec3 vp; +varying vec3 vNormal; +varying vec3 vPositionNormal; +uniform float scale; +// 获取纹理 +uniform sampler2D map; +// 纹理坐标 +varying vec2 vUv; + +void main(void){ + float a = pow( bias + scale * abs(dot(vNormal, vPositionNormal)), power ); + if(vp.y > time && vp.y < time + 20.0) { + float t = smoothstep(0.0, 0.8, (1.0 - abs(0.5 - (vp.y - time) / 20.0)) / 3.0 ); + gl_FragColor = mix(gl_FragColor, vec4(glowColor, 1.0), t * t ); + } + gl_FragColor = mix(gl_FragColor, vec4( glowColor, 1.0 ), a); + float b = 0.8; + gl_FragColor = gl_FragColor + texture2D( map, vUv ); +} \ No newline at end of file diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/shaders/earth/vertex.vs b/src/packages/components/Decorates/Three/ThreeEarth01/code/shaders/earth/vertex.vs new file mode 100644 index 0000000..cd56403 --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/shaders/earth/vertex.vs @@ -0,0 +1,12 @@ + +varying vec2 vUv; +varying vec3 vNormal; +varying vec3 vp; +varying vec3 vPositionNormal; +void main(void){ + vUv = uv; + vNormal = normalize( normalMatrix * normal ); // 转换到视图空间 + vp = position; + vPositionNormal = normalize(( modelViewMatrix * vec4(position, 1.0) ).xyz); + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); +} \ No newline at end of file diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Assets.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Assets.ts new file mode 100644 index 0000000..bd8df6c --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Assets.ts @@ -0,0 +1,34 @@ +/** + * 资源文件 + * 把模型和图片分开进行加载 + */ + +interface ITextures { + name: string + url: string +} + +export interface IResources { + textures?: ITextures[] +} + +const fileSuffix = ['earth', 'gradient', 'redCircle', 'label', 'aperture', 'glow', 'light_column', 'aircraft'] +const textures: ITextures[] = [] + +const modules = import.meta.globEager("../../images/earth/*"); + +for(let item in modules) { + const n = item.split('/').pop() + if(n) { + textures.push({ + name: n.split('.')[0], + url: modules[item].default + }) + } +} + +const resources: IResources = { + textures +} + +export { resources } diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Basic.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Basic.ts new file mode 100644 index 0000000..bfe9d76 --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Basic.ts @@ -0,0 +1,62 @@ +/** + * 创建 threejs 四大天王 + * 场景、相机、渲染器、控制器 + */ + +import * as THREE from 'three' +import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls' + +export class Basic { + public scene!: THREE.Scene + public camera!: THREE.PerspectiveCamera + public renderer!: THREE.WebGLRenderer + public controls!: OrbitControls + public dom: HTMLElement + + constructor(dom: HTMLElement) { + this.dom = dom + this.initScenes() + this.setControls() + } + + /** + * 初始化场景 + */ + initScenes() { + this.scene = new THREE.Scene() + + this.camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 1, 100000) + this.camera.position.set(0, 30, -250) + + this.renderer = new THREE.WebGLRenderer({ + // canvas: this.dom, + alpha: true, // 透明 + antialias: true // 抗锯齿 + }) + this.renderer.setPixelRatio(window.devicePixelRatio) // 设置屏幕像素比 + this.renderer.setSize(window.innerWidth, window.innerHeight) // 设置渲染器宽高 + this.dom.appendChild(this.renderer.domElement) // 添加到dom中 + } + + /** + * 设置控制器 + */ + setControls() { + // 鼠标控制 相机,渲染dom + this.controls = new OrbitControls(this.camera, this.renderer.domElement) + + this.controls.autoRotateSpeed = 3 + // 使动画循环使用时阻尼或自转 意思是否有惯性 + this.controls.enableDamping = true + // 动态阻尼系数 就是鼠标拖拽旋转灵敏度 + this.controls.dampingFactor = 0.05 + // 是否可以缩放 + this.controls.enableZoom = true + // 设置相机距离原点的最远距离 + this.controls.minDistance = 100 + // 设置相机距离原点的最远距离 + this.controls.maxDistance = 300 + // 是否开启右键拖拽 + this.controls.enablePan = false + } +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Earth.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Earth.ts new file mode 100644 index 0000000..0e1308d --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Earth.ts @@ -0,0 +1,496 @@ +import { + BufferAttribute, + BufferGeometry, + Color, + DoubleSide, + Group, + Material, + Mesh, + MeshBasicMaterial, + NormalBlending, + Object3D, + Points, + PointsMaterial, + ShaderMaterial, + SphereGeometry, + Sprite, + SpriteMaterial, + Texture, + TextureLoader, + Vector3 +} from 'three' + +import { + createAnimateLine, + createLightPillar, + createPointMesh, + createWaveMesh, + getCirclePoints, + lon2xyz +} from '../Utils/common' +import gsap from 'gsap' +import { flyArc } from '../Utils/arc' +import earthVertex from '../shaders/earth/vertex.vs?raw' +import earthFragment from '../shaders/earth/fragment.fs?raw' + +export type punctuation = { + circleColor: number + lightColumn: { + startColor: number // 起点颜色 + endColor: number // 终点颜色 + } +} + +type options = { + data: { + startArray: { + name: string + E: number // 经度 + N: number // 维度 + } + endArray: { + name: string + E: number // 经度 + N: number // 维度 + }[] + }[] + dom: HTMLElement + textures: Record // 贴图 + earth: { + radius: number // 地球半径 + rotateSpeed: number // 地球旋转速度 + isRotation: boolean // 地球组是否自转 + } + satellite: { + show: boolean // 是否显示卫星 + rotateSpeed: number // 旋转速度 + size: number // 卫星大小 + number: number // 一个圆环几个球 + } + punctuation: punctuation + flyLine: { + color: number // 飞线的颜色 + speed: number // 飞机拖尾线速度 + flyLineColor: number // 飞行线的颜色 + } +} +type uniforms = { + glowColor: { value: Color } + scale: { type: string; value: number } + bias: { type: string; value: number } + power: { type: string; value: number } + time: { type: string; value: any } + isHover: { value: boolean } + map: { value?: Texture } +} + +export default class earth { + public group: Group + public earthGroup: Group + + public around!: BufferGeometry + public aroundPoints!: Points + + public options: options + public uniforms: uniforms + public timeValue: number + + public earth!: Mesh + public punctuationMaterial!: MeshBasicMaterial + public markupPoint: Group + public waveMeshArr: Object3D[] + + public circleLineList: any[] + public circleList: any[] + public x: number + public n: number + public isRotation: boolean + public flyLineArcGroup!: Group + + constructor(options: options) { + this.options = options + + this.group = new Group() + this.group.name = 'group' + this.group.scale.set(0, 0, 0) + this.earthGroup = new Group() + this.group.add(this.earthGroup) + this.earthGroup.name = 'EarthGroup' + + // 标注点效果 + this.markupPoint = new Group() + this.markupPoint.name = 'markupPoint' + this.waveMeshArr = [] + + // 卫星和标签 + this.circleLineList = [] + this.circleList = [] + this.x = 0 + this.n = 0 + + // 地球自转 + this.isRotation = this.options.earth.isRotation + + // 扫光动画 shader + this.timeValue = 200 + + this.uniforms = { + glowColor: { + value: new Color(0x0cd1eb) + }, + scale: { + type: 'f', + value: -1.0 + }, + bias: { + type: 'f', + value: 1.0 + }, + power: { + type: 'f', + value: 3.3 + }, + time: { + type: 'f', + value: this.timeValue + }, + isHover: { + value: false + }, + map: { + value: undefined + } + } + } + + async init(): Promise { + return new Promise(resolve => { + const init = async () => { + this.createEarth() // 创建地球 + this.createEarthGlow() // 创建地球辉光 + this.createEarthAperture() // 创建地球的大气层 + await this.createMarkupPoint() // 创建柱状点位 + this.createAnimateCircle() // 创建环绕卫星 + this.createFlyLine() // 创建飞线 + this.show() + resolve() + } + init() + }) + } + + createEarth() { + const earth_geometry = new SphereGeometry(this.options.earth.radius, 50, 50) + const earth_border = new SphereGeometry(this.options.earth.radius + 10, 60, 60) + + const pointMaterial = new PointsMaterial({ + color: 0x81ffff, //设置颜色,默认 0xFFFFFF + transparent: true, + sizeAttenuation: true, + opacity: 0.1, + vertexColors: false, //定义材料是否使用顶点颜色,默认false ---如果该选项设置为true,则color属性失效 + size: 0.2 //定义粒子的大小。默认为1.0 + }) + const points = new Points(earth_border, pointMaterial) //将模型添加到场景 + + this.earthGroup.add(points) + + this.uniforms.map.value = this.options.textures.earth + + const earth_material = new ShaderMaterial({ + // wireframe:true, // 显示模型线条 + uniforms: this.uniforms as any, + vertexShader: earthVertex, + fragmentShader: earthFragment + }) + + earth_material.needsUpdate = true + this.earth = new Mesh(earth_geometry, earth_material) + this.earth.name = 'earth' + this.earthGroup.add(this.earth) + } + + createEarthGlow() { + const R = this.options.earth.radius //地球半径 + + // TextureLoader创建一个纹理加载器对象,可以加载图片作为纹理贴图 + const texture = this.options.textures.glow // 加载纹理贴图 + + // 创建精灵材质对象SpriteMaterial + const spriteMaterial = new SpriteMaterial({ + map: texture, // 设置精灵纹理贴图 + color: 0x4390d1, + transparent: true, //开启透明 + opacity: 0.7, // 可以通过透明度整体调节光圈 + depthWrite: false //禁止写入深度缓冲区数据 + }) + + // 创建表示地球光圈的精灵模型 + const sprite = new Sprite(spriteMaterial) + sprite.scale.set(R * 3.0, R * 3.0, 1) //适当缩放精灵 + this.earthGroup.add(sprite) + } + + createEarthAperture() { + const vertexShader = [ + 'varying vec3 vVertexWorldPosition;', + 'varying vec3 vVertexNormal;', + 'varying vec4 vFragColor;', + 'void main(){', + ' vVertexNormal = normalize(normalMatrix * normal);', //将法线转换到视图坐标系中 + ' vVertexWorldPosition = (modelMatrix * vec4(position, 1.0)).xyz;', //将顶点转换到世界坐标系中 + ' // set gl_Position', + ' gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);', + '}' + ].join('\n') + + //大气层效果 + const AeroSphere = { + uniforms: { + coeficient: { + type: 'f', + value: 1.0 + }, + power: { + type: 'f', + value: 3 + }, + glowColor: { + type: 'c', + value: new Color(0x4390d1) + } + }, + vertexShader: vertexShader, + fragmentShader: [ + 'uniform vec3 glowColor;', + 'uniform float coeficient;', + 'uniform float power;', + + 'varying vec3 vVertexNormal;', + 'varying vec3 vVertexWorldPosition;', + + 'varying vec4 vFragColor;', + + 'void main(){', + ' vec3 worldCameraToVertex = vVertexWorldPosition - cameraPosition;', //世界坐标系中从相机位置到顶点位置的距离 + ' vec3 viewCameraToVertex = (viewMatrix * vec4(worldCameraToVertex, 0.0)).xyz;', //视图坐标系中从相机位置到顶点位置的距离 + ' viewCameraToVertex= normalize(viewCameraToVertex);', //规一化 + ' float intensity = pow(coeficient + dot(vVertexNormal, viewCameraToVertex), power);', + ' gl_FragColor = vec4(glowColor, intensity);', + '}' + ].join('\n') + } + //球体 辉光 大气层 + const material1 = new ShaderMaterial({ + uniforms: AeroSphere.uniforms, + vertexShader: AeroSphere.vertexShader, + fragmentShader: AeroSphere.fragmentShader, + blending: NormalBlending, + transparent: true, + depthWrite: false + }) + const sphere = new SphereGeometry(this.options.earth.radius + 0, 50, 50) + const mesh = new Mesh(sphere, material1) + this.earthGroup.add(mesh) + } + + async createMarkupPoint() { + await Promise.all( + this.options.data.map(async item => { + const radius = this.options.earth.radius + const lon = item.startArray.E //经度 + const lat = item.startArray.N //纬度 + + this.punctuationMaterial = new MeshBasicMaterial({ + color: this.options.punctuation.circleColor, + map: this.options.textures.label, + transparent: true, //使用背景透明的png贴图,注意开启透明计算 + depthWrite: false //禁止写入深度缓冲区数据 + }) + + const mesh = createPointMesh({ radius, lon, lat, material: this.punctuationMaterial }) //光柱底座矩形平面 + this.markupPoint.add(mesh) + const LightPillar = createLightPillar({ + radius: this.options.earth.radius, + lon, + lat, + index: 0, + textures: this.options.textures, + punctuation: this.options.punctuation + }) //光柱 + this.markupPoint.add(LightPillar) + const WaveMesh = createWaveMesh({ radius, lon, lat, textures: this.options.textures }) //波动光圈 + this.markupPoint.add(WaveMesh) + this.waveMeshArr.push(WaveMesh) + + await Promise.all( + item.endArray.map(obj => { + const lon = obj.E //经度 + const lat = obj.N //纬度 + const mesh = createPointMesh({ radius, lon, lat, material: this.punctuationMaterial }) //光柱底座矩形平面 + this.markupPoint.add(mesh) + const LightPillar = createLightPillar({ + radius: this.options.earth.radius, + lon, + lat, + index: 1, + textures: this.options.textures, + punctuation: this.options.punctuation + }) //光柱 + this.markupPoint.add(LightPillar) + const WaveMesh = createWaveMesh({ radius, lon, lat, textures: this.options.textures }) //波动光圈 + this.markupPoint.add(WaveMesh) + this.waveMeshArr.push(WaveMesh) + }) + ) + this.earthGroup.add(this.markupPoint) + }) + ) + } + + createAnimateCircle() { + // 创建 圆环 点 + const list = getCirclePoints({ + radius: this.options.earth.radius + 15, + number: 150, //切割数 + closed: true // 闭合 + }) + const mat = new MeshBasicMaterial({ + color: '#0c3172', + transparent: true, + opacity: 0.4, + side: DoubleSide + }) + const line = createAnimateLine({ + pointList: list, + material: mat, + number: 100, + radius: 0.1 + }) + this.earthGroup.add(line) + + // 在clone两条线出来 + const l2 = line.clone() + l2.scale.set(1.2, 1.2, 1.2) + l2.rotateZ(Math.PI / 6) + this.earthGroup.add(l2) + + const l3 = line.clone() + l3.scale.set(0.8, 0.8, 0.8) + l3.rotateZ(-Math.PI / 6) + this.earthGroup.add(l3) + + /** + * 旋转的球 + */ + const ball = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: '#e0b187' // 745F4D + }) + ) + + const ball2 = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: '#628fbb' // 324A62 + }) + ) + + const ball3 = new Mesh( + new SphereGeometry(this.options.satellite.size, 32, 32), + new MeshBasicMaterial({ + color: '#806bdf' //6D5AC4 + }) + ) + + this.circleLineList.push(line, l2, l3) + ball.name = ball2.name = ball3.name = '卫星' + + for (let i = 0; i < this.options.satellite.number; i++) { + const ball01 = ball.clone() + // 一根线上总共有几个球,根据数量平均分布一下 + const num = Math.floor(list.length / this.options.satellite.number) + ball01.position.set(list[num * (i + 1)][0] * 1, list[num * (i + 1)][1] * 1, list[num * (i + 1)][2] * 1) + line.add(ball01) + + const ball02 = ball2.clone() + const num02 = Math.floor(list.length / this.options.satellite.number) + ball02.position.set(list[num02 * (i + 1)][0] * 1, list[num02 * (i + 1)][1] * 1, list[num02 * (i + 1)][2] * 1) + l2.add(ball02) + + const ball03 = ball2.clone() + const num03 = Math.floor(list.length / this.options.satellite.number) + ball03.position.set(list[num03 * (i + 1)][0] * 1, list[num03 * (i + 1)][1] * 1, list[num03 * (i + 1)][2] * 1) + l3.add(ball03) + } + } + + createFlyLine() { + this.flyLineArcGroup = new Group() + this.flyLineArcGroup.userData['flyLineArray'] = [] + this.earthGroup.add(this.flyLineArcGroup) + this.options.data.forEach(cities => { + cities.endArray.forEach(item => { + // 调用函数flyArc绘制球面上任意两点之间飞线圆弧轨迹 + const arcline = flyArc( + this.options.earth.radius, + cities.startArray.E, + cities.startArray.N, + item.E, + item.N, + this.options.flyLine + ) + + this.flyLineArcGroup.add(arcline) // 飞线插入flyArcGroup中 + this.flyLineArcGroup.userData['flyLineArray'].push(arcline.userData['flyLine']) + }) + }) + } + + show() { + gsap.to(this.group.scale, { + x: 1, + y: 1, + z: 1, + duration: 2, + ease: 'Quadratic' + }) + } + + render() { + this.flyLineArcGroup?.userData['flyLineArray']?.forEach((fly: any) => { + fly.rotation.z += this.options.flyLine.speed // 调节飞线速度 + if (fly.rotation.z >= fly.flyEndAngle) fly.rotation.z = 0 + }) + + if (this.isRotation) { + this.earthGroup.rotation.y += this.options.earth.rotateSpeed + } + + this.circleLineList.forEach(e => { + e.rotateY(this.options.satellite.rotateSpeed) + }) + + this.uniforms.time.value = + this.uniforms.time.value < -this.timeValue ? this.timeValue : this.uniforms.time.value - 1 + + if (this.waveMeshArr.length) { + this.waveMeshArr.forEach((mesh: any) => { + mesh.userData['scale'] += 0.007 + mesh.scale.set( + mesh.userData['size'] * mesh.userData['scale'], + mesh.userData['size'] * mesh.userData['scale'], + mesh.userData['size'] * mesh.userData['scale'] + ) + if (mesh.userData['scale'] <= 1.5) { + (mesh.material as Material).opacity = (mesh.userData['scale'] - 1) * 2 //2等于1/(1.5-1.0),保证透明度在0~1之间变化 + } else if (mesh.userData['scale'] > 1.5 && mesh.userData['scale'] <= 2) { + (mesh.material as Material).opacity = 1 - (mesh.userData['scale'] - 1.5) * 2 //2等于1/(2.0-1.5) mesh缩放2倍对应0 缩放1.5被对应1 + } else { + mesh.userData['scale'] = 1 + } + }) + } + } +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Resources.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Resources.ts new file mode 100644 index 0000000..71468dc --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Resources.ts @@ -0,0 +1,54 @@ +/** + * 资源管理和加载 + */ +import { LoadingManager, Texture, TextureLoader } from 'three' +import { loadingStart, loadingFinish, loadingError } from '@/utils' +import { resources } from './Assets' +export class Resources { + private manager!: LoadingManager + private callback: () => void + private textureLoader!: InstanceType + public textures: Record + constructor(callback: () => void) { + this.callback = callback // 资源加载完成的回调 + this.textures = {} // 贴图对象 + this.setLoadingManager() + this.loadResources() + } + + /** + * 管理加载状态 + */ + private setLoadingManager() { + this.manager = new LoadingManager() + // 开始加载 + this.manager.onStart = () => { + loadingStart() + } + // 加载完成 + this.manager.onLoad = () => { + this.callback() + } + // 正在进行中 + this.manager.onProgress = url => { + loadingFinish() + } + + this.manager.onError = url => { + loadingError() + window['$message'].error('数据加载失败,请刷新重试!') + } + } + + /** + * 加载资源 + */ + private loadResources(): void { + this.textureLoader = new TextureLoader(this.manager) + resources.textures?.forEach(item => { + this.textureLoader.load(item.url, t => { + this.textures[item.name] = t + }) + }) + } +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Word.ts b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Word.ts new file mode 100644 index 0000000..cc03c90 --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/code/world/Word.ts @@ -0,0 +1,112 @@ +import { MeshBasicMaterial, PerspectiveCamera, Scene, ShaderMaterial, WebGLRenderer } from 'three' +import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls' +// interfaces +import { IWord } from '../interfaces/IWord' +import { Basic } from './Basic' +import { Resources } from './Resources' +// earth +import Earth from './Earth' + +export default class World { + public basic: Basic + public scene: Scene + public camera: PerspectiveCamera + public renderer: WebGLRenderer + public controls: OrbitControls + public material!: ShaderMaterial | MeshBasicMaterial + public resources: Resources + public option: IWord + public earth!: Earth + + constructor(option: IWord) { + /** + * 加载资源 + */ + this.option = option + this.basic = new Basic(option.dom) + this.scene = this.basic.scene + this.renderer = this.basic.renderer + this.controls = this.basic.controls + this.camera = this.basic.camera + this.updateSize() + this.resources = new Resources(async () => { + await this.createEarth() + // 开始渲染 + this.render() + }) + } + + async createEarth(data?: any) { + // 资源加载完成,开始制作地球,注释在new Earth()类型里面 + this.earth = new Earth({ + data: data || this.option.data, + dom: this.option.dom, + textures: this.resources.textures, + earth: { + radius: 50, + rotateSpeed: 0.002, + isRotation: true + }, + satellite: { + show: true, + rotateSpeed: -0.01, + size: 1, + number: 2 + }, + punctuation: { + circleColor: 0x3892ff, + lightColumn: { + startColor: 0xe4007f, // 起点颜色 + endColor: 0xffffff // 终点颜色 + } + }, + flyLine: { + color: 0xf3ae76, // 飞线的颜色 + flyLineColor: 0xff7714, // 飞行线的颜色 + speed: 0.004 // 拖尾飞线的速度 + } + }) + + this.scene.add(this.earth.group) + await this.earth.init() + } + + /** + * 渲染函数 + */ + public render() { + requestAnimationFrame(this.render.bind(this)) + this.renderer.render(this.scene, this.camera) + this.controls && this.controls.update() + this.earth && this.earth.render() + } + + // 更新 + public updateSize(width?: number, height?: number) { + let w = width || this.option.width + let h = height || this.option.height + // 取小值 + if (w < h) h = w + else w = h + + this.renderer.setSize(w, h) + this.camera.aspect = w / h + this.camera.updateProjectionMatrix() + } + + // 数据更新重新渲染 + public updateData(data?: any) { + if (!this.earth.group) return + // 先删除旧的 + this.scene.remove(this.earth.group) + // 递归遍历组对象group释放所有后代网格模型绑定几何体占用内存 + this.earth.group.traverse((obj: any) => { + if (obj.type === 'Mesh') { + obj.geometry.dispose() + obj.material.dispose() + } + }) + // 重新创建 + this.createEarth(data) + } +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/config.ts b/src/packages/components/Decorates/Three/ThreeEarth01/config.ts new file mode 100644 index 0000000..fdc582c --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/config.ts @@ -0,0 +1,17 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { chartInitConfig } from '@/settings/designSetting' +import { ThreeEarth01Config } from './index' +import dataJson from './data.json' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + dataset: dataJson +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = ThreeEarth01Config.key + public attr = { ...chartInitConfig, w: 800, h: 800, zIndex: -1 } + public chartConfig = cloneDeep(ThreeEarth01Config) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/config.vue b/src/packages/components/Decorates/Three/ThreeEarth01/config.vue new file mode 100644 index 0000000..e4c619e --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/config.vue @@ -0,0 +1,14 @@ + + + diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/data.json b/src/packages/components/Decorates/Three/ThreeEarth01/data.json new file mode 100644 index 0000000..df86247 --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/data.json @@ -0,0 +1,84 @@ +[ + { + "startArray": { + "name": "杭州", + "N": 30.246026, + "E": 120.210792 + }, + "endArray": [ + { + "name": "曼谷", + "N": 22, + "E": 100.49074172973633 + }, + { + "name": "澳大利亚", + "N": -23.68477416688374, + "E": 133.857421875 + }, + + { + "name": "新疆维吾尔自治区", + "N": 41.748, + "E": 84.9023 + }, + + { + "name": "德黑兰", + "N": 35, + "E": 51 + }, + { + "name": "德黑兰", + "N": 35, + "E": 51 + }, + { + "name": "美国", + "N": 34.125447565116126, + "E": 241.7431640625 + }, + { + "name": "英国", + "N": 51.508742458803326, + "E": 359.82421875 + }, + { + "name": "巴西", + "N": -9.96885060854611, + "E": 668.1445312499999 + } + ] + }, + { + "startArray": { + "name": "北京", + "N": 39.89491, + "E": 116.322056 + }, + "endArray": [ + { + "name": "西藏", + "N": 29.660361, + "E": 91.132212 + }, + { + "name": "广西", + "N": 22.830824, + "E": 108.30616 + }, + + { + "name": "江西", + "N": 28.676493, + "E": 115.892151 + }, + + { + "name": "贵阳", + "N": 26.647661, + "E": 106.630153 + } + ] + } +] diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/aircraft.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/aircraft.png new file mode 100644 index 0000000..9021ca2 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/aircraft.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/aperture.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/aperture.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/aperture.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/earth.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/earth.png new file mode 100644 index 0000000..c5076ba Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/earth.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/glow.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/glow.png new file mode 100644 index 0000000..b0d8dc2 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/glow.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/gradient.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/gradient.png new file mode 100644 index 0000000..df22679 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/gradient.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/label-old.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/label-old.png new file mode 100644 index 0000000..de24165 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/label-old.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/label.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/label.png new file mode 100644 index 0000000..2edc906 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/label.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/light_column.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/light_column.png new file mode 100644 index 0000000..b10b1a9 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/light_column.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/redCircle.png b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/redCircle.png new file mode 100644 index 0000000..4b770a1 Binary files /dev/null and b/src/packages/components/Decorates/Three/ThreeEarth01/images/earth/redCircle.png differ diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/index.ts b/src/packages/components/Decorates/Three/ThreeEarth01/index.ts new file mode 100644 index 0000000..1bb29b9 --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const ThreeEarth01Config: ConfigType = { + key: 'ThreeEarth01', + chartKey: 'VThreeEarth01', + conKey: 'VCThreeEarth01', + title: '三维地球', + category: ChatCategoryEnum.THREE, + categoryName: ChatCategoryEnumName.THREE, + package: PackagesCategoryEnum.DECORATES, + chartFrame: ChartFrameEnum.STATIC, + image: 'threeEarth01.png' +} diff --git a/src/packages/components/Decorates/Three/ThreeEarth01/index.vue b/src/packages/components/Decorates/Three/ThreeEarth01/index.vue new file mode 100644 index 0000000..d25d4e6 --- /dev/null +++ b/src/packages/components/Decorates/Three/ThreeEarth01/index.vue @@ -0,0 +1,81 @@ + + + diff --git a/src/packages/components/Decorates/Three/index.ts b/src/packages/components/Decorates/Three/index.ts new file mode 100644 index 0000000..4dde0f6 --- /dev/null +++ b/src/packages/components/Decorates/Three/index.ts @@ -0,0 +1,3 @@ +import { ThreeEarth01Config } from './ThreeEarth01/index' + +export default [ThreeEarth01Config] diff --git a/src/packages/components/Decorates/index.d.ts b/src/packages/components/Decorates/index.d.ts new file mode 100644 index 0000000..d20047e --- /dev/null +++ b/src/packages/components/Decorates/index.d.ts @@ -0,0 +1,13 @@ +export enum ChatCategoryEnum { + BORDER = 'Borders', + DECORATE = 'Decorates', + THREE = 'Three', + MORE = 'Mores' +} + +export enum ChatCategoryEnumName { + BORDER = '边框', + DECORATE = '装饰', + THREE = '三维', + MORE = '更多' +} \ No newline at end of file diff --git a/src/packages/components/Decorates/index.ts b/src/packages/components/Decorates/index.ts new file mode 100644 index 0000000..17b6413 --- /dev/null +++ b/src/packages/components/Decorates/index.ts @@ -0,0 +1,6 @@ +import Borders from './Borders' +import Decorates from './Decorates' +import Three from './Three' +import Mores from './Mores' + +export const DecorateList = [...Borders, ...Decorates, ...Three, ...Mores] diff --git a/src/packages/components/Informations/Mores/Iframe/config.ts b/src/packages/components/Informations/Mores/Iframe/config.ts new file mode 100644 index 0000000..2e96c21 --- /dev/null +++ b/src/packages/components/Informations/Mores/Iframe/config.ts @@ -0,0 +1,20 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { chartInitConfig } from '@/settings/designSetting' +import { IframeConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + // 网站路径 + dataset: "https://www.mtruning.club/", + // 圆角 + borderRadius: 10 +} + +export default class Config extends PublicConfigClass implements CreateComponentType +{ + public key = IframeConfig.key + public attr = { ...chartInitConfig, w: 800, h: 800, zIndex: -1 } + public chartConfig = cloneDeep(IframeConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Informations/Mores/Iframe/config.vue b/src/packages/components/Informations/Mores/Iframe/config.vue new file mode 100644 index 0000000..59a5af7 --- /dev/null +++ b/src/packages/components/Informations/Mores/Iframe/config.vue @@ -0,0 +1,36 @@ + + + diff --git a/src/packages/components/Informations/Mores/Iframe/index.ts b/src/packages/components/Informations/Mores/Iframe/index.ts new file mode 100644 index 0000000..9409eae --- /dev/null +++ b/src/packages/components/Informations/Mores/Iframe/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const IframeConfig: ConfigType = { + key: 'Iframe', + chartKey: 'VIframe', + conKey: 'VCIframe', + title: '远程网页', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.INFORMATIONS, + chartFrame: ChartFrameEnum.COMMON, + image: 'iframe.png' +} diff --git a/src/packages/components/Informations/Mores/Iframe/index.vue b/src/packages/components/Informations/Mores/Iframe/index.vue new file mode 100644 index 0000000..212f370 --- /dev/null +++ b/src/packages/components/Informations/Mores/Iframe/index.vue @@ -0,0 +1,49 @@ + + + diff --git a/src/packages/components/Informations/Mores/Image/config.ts b/src/packages/components/Informations/Mores/Image/config.ts new file mode 100644 index 0000000..80be43c --- /dev/null +++ b/src/packages/components/Informations/Mores/Image/config.ts @@ -0,0 +1,21 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { ImageConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import logo from '@/assets/logo.png' + +export const option = { + // 图片路径 + dataset: logo, + // 适应方式 + fit: 'contain', + // 圆角 + borderRadius: 10 +} + +export default class Config extends PublicConfigClass implements CreateComponentType +{ + public key = ImageConfig.key + public chartConfig = cloneDeep(ImageConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Informations/Mores/Image/config.vue b/src/packages/components/Informations/Mores/Image/config.vue new file mode 100644 index 0000000..8383672 --- /dev/null +++ b/src/packages/components/Informations/Mores/Image/config.vue @@ -0,0 +1,67 @@ + + + diff --git a/src/packages/components/Informations/Mores/Image/index.ts b/src/packages/components/Informations/Mores/Image/index.ts new file mode 100644 index 0000000..3be876d --- /dev/null +++ b/src/packages/components/Informations/Mores/Image/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const ImageConfig: ConfigType = { + key: 'Image', + chartKey: 'VImage', + conKey: 'VCImage', + title: '图片', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.INFORMATIONS, + chartFrame: ChartFrameEnum.COMMON, + image: 'photo.png' +} diff --git a/src/packages/components/Informations/Mores/Image/index.vue b/src/packages/components/Informations/Mores/Image/index.vue new file mode 100644 index 0000000..fc3b98f --- /dev/null +++ b/src/packages/components/Informations/Mores/Image/index.vue @@ -0,0 +1,57 @@ + + + diff --git a/src/packages/components/Informations/Mores/Video/config.ts b/src/packages/components/Informations/Mores/Video/config.ts new file mode 100644 index 0000000..41db6a9 --- /dev/null +++ b/src/packages/components/Informations/Mores/Video/config.ts @@ -0,0 +1,24 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { VideoConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import video from '@/assets/videos/earth.mp4' + +export const option = { + // 视频路径 + dataset: video, + // 循环播放 + loop: true, + // 静音 + muted: true, + // 适应方式 + fit: 'contain', + // 圆角 + borderRadius: 10 +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = VideoConfig.key + public chartConfig = cloneDeep(VideoConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Informations/Mores/Video/config.vue b/src/packages/components/Informations/Mores/Video/config.vue new file mode 100644 index 0000000..14a5acc --- /dev/null +++ b/src/packages/components/Informations/Mores/Video/config.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/src/packages/components/Informations/Mores/Video/index.ts b/src/packages/components/Informations/Mores/Video/index.ts new file mode 100644 index 0000000..769cfc5 --- /dev/null +++ b/src/packages/components/Informations/Mores/Video/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const VideoConfig: ConfigType = { + key: 'Video', + chartKey: 'VVideo', + conKey: 'VCVideo', + title: '视频', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.INFORMATIONS, + chartFrame: ChartFrameEnum.COMMON, + image: 'video.png' +} diff --git a/src/packages/components/Informations/Mores/Video/index.vue b/src/packages/components/Informations/Mores/Video/index.vue new file mode 100644 index 0000000..b184c83 --- /dev/null +++ b/src/packages/components/Informations/Mores/Video/index.vue @@ -0,0 +1,65 @@ + + + + + + diff --git a/src/packages/components/Informations/Mores/WordCloud/config.ts b/src/packages/components/Informations/Mores/WordCloud/config.ts new file mode 100644 index 0000000..f941097 --- /dev/null +++ b/src/packages/components/Informations/Mores/WordCloud/config.ts @@ -0,0 +1,95 @@ +import { echartOptionProfixHandle, PublicConfigClass } from '@/packages/public' +import { WordCloudConfig } from './index' +import { CreateComponentType } from '@/packages/index.d' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const includes = [] + +export const ShapeEnumList = [ + { label: '圆形', value: 'circle' }, + { label: '心形', value: 'cardioid' }, + { label: '钻石', value: 'diamond' }, + { label: '右三角形', value: 'triangle-forward' }, + { label: '三角形', value: 'triangle' }, + { label: '五边形', value: 'pentagon' }, + { label: '星星', value: 'star' } +] + +export const option = { + dataset: [...dataJson], + tooltip: {}, + series: [ + { + type: 'wordCloud', + + // “云”绘制的形状,可以是表示为回调函数,也可以是固定关键字。 + // 可用值有:circle|cardioid|diamond|triangle-forward|triangle|pentagon|star + shape: 'circle', + + // 白色区域将被排除在绘制文本之外的剪影图像。 + // 随着云的形状生长,形状选项将继续应用。 + // maskImage: maskImage, + + // Folllowing left/top/width/height/right/bottom are used for positioning the word cloud + // Default to be put in the center and has 75% x 80% size. + left: 'center', + top: 'center', + width: '70%', + height: '80%', + right: null, + bottom: null, + + // 文本大小范围,默认 [12,60] + sizeRange: [12, 60], + + // 文本旋转范围和程度的步骤。 文本将通过旋转步骤45在[-90,90]中随机旋转 + rotationRange: [0, 0], + rotationStep: 0, + + // size of the grid in pixels for marking the availability of the canvas + // 网格大小越大,单词之间的差距就越大。 + gridSize: 8, + + // 设置为true,以允许单词在画布之外部分地绘制。允许绘制大于画布的大小 + drawOutOfBound: false, + + // If perform layout animation. + // NOTE disable it will lead to UI blocking when there is lots of words. + layoutAnimation: true, + + // Global text style + textStyle: { + fontFamily: 'sans-serif', + fontWeight: 'bold' + // 颜色可以是回调功能或颜色字符串 + // color: function () { + // // 随机颜色 + // return ( + // 'rgb(' + + // [Math.round(Math.random() * 160), Math.round(Math.random() * 160), Math.round(Math.random() * 160)].join( + // ',' + // ) + + // ')' + // ) + // } + }, + emphasis: { + focus: 'self', + + textStyle: { + shadowBlur: 10, + shadowColor: '#333' + } + }, + data: [...dataJson] + } + ] +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = WordCloudConfig.key + public chartConfig = cloneDeep(WordCloudConfig) + // 图表配置项 + public option = echartOptionProfixHandle(option, includes) +} diff --git a/src/packages/components/Informations/Mores/WordCloud/config.vue b/src/packages/components/Informations/Mores/WordCloud/config.vue new file mode 100644 index 0000000..7893425 --- /dev/null +++ b/src/packages/components/Informations/Mores/WordCloud/config.vue @@ -0,0 +1,82 @@ + + + diff --git a/src/packages/components/Informations/Mores/WordCloud/data.json b/src/packages/components/Informations/Mores/WordCloud/data.json new file mode 100644 index 0000000..f091872 --- /dev/null +++ b/src/packages/components/Informations/Mores/WordCloud/data.json @@ -0,0 +1,90 @@ +[ + { + "name": "数据可视化", + "value": 8000, + "textStyle": { + "color": "#78fbb2" + }, + "emphasis": { + "textStyle": { + "color": "red" + } + } + }, + { + "name": "GO VIEW", + "value": 6181 + }, + { + "name": "低代码", + "value": 4386 + }, + { + "name": "Vue3", + "value": 4055 + }, + { + "name": "TypeScript4", + "value": 2467 + }, + { + "name": "Vite2", + "value": 2244 + }, + { + "name": "NaiveUI", + "value": 1898 + }, + { + "name": "ECharts5", + "value": 1484 + }, + { + "name": "Axios", + "value": 1112 + }, + { + "name": "Pinia2", + "value": 965 + }, + { + "name": "PlopJS", + "value": 847 + }, + { + "name": "sfc", + "value": 582 + }, + { + "name": "SCSS", + "value": 555 + }, + { + "name": "pnpm", + "value": 550 + }, + { + "name": "eslint", + "value": 462 + }, + { + "name": "json", + "value": 366 + }, + { + "name": "图表", + "value": 360 + }, + { + "name": "地图", + "value": 282 + }, + { + "name": "时钟", + "value": 273 + }, + { + "name": "标题", + "value": 265 + } +] diff --git a/src/packages/components/Informations/Mores/WordCloud/index.ts b/src/packages/components/Informations/Mores/WordCloud/index.ts new file mode 100644 index 0000000..05949f7 --- /dev/null +++ b/src/packages/components/Informations/Mores/WordCloud/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const WordCloudConfig: ConfigType = { + key: 'WordCloud', + chartKey: 'VWordCloud', + conKey: 'VCWordCloud', + title: '词云', + category: ChatCategoryEnum.MORE, + categoryName: ChatCategoryEnumName.MORE, + package: PackagesCategoryEnum.INFORMATIONS, + chartFrame: ChartFrameEnum.COMMON, + image: 'words_cloud.png' +} diff --git a/src/packages/components/Informations/Mores/WordCloud/index.vue b/src/packages/components/Informations/Mores/WordCloud/index.vue new file mode 100644 index 0000000..4c9626e --- /dev/null +++ b/src/packages/components/Informations/Mores/WordCloud/index.vue @@ -0,0 +1,72 @@ + + + diff --git a/src/packages/components/Informations/Mores/index.ts b/src/packages/components/Informations/Mores/index.ts new file mode 100644 index 0000000..8fadc44 --- /dev/null +++ b/src/packages/components/Informations/Mores/index.ts @@ -0,0 +1,6 @@ +import { ImageConfig } from './Image/index' +import { IframeConfig } from './Iframe/index' +import { VideoConfig } from './Video/index' +import { WordCloudConfig } from './WordCloud/index' + +export default [WordCloudConfig, ImageConfig, VideoConfig, IframeConfig] diff --git a/src/packages/components/Informations/Texts/TextBarrage/config.ts b/src/packages/components/Informations/Texts/TextBarrage/config.ts new file mode 100644 index 0000000..eb04f09 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextBarrage/config.ts @@ -0,0 +1,42 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { TextBarrageConfig } from './index' +import { chartInitConfig } from '@/settings/designSetting' +import cloneDeep from 'lodash/cloneDeep' + +export enum FontWeightEnum { + NORMAL = '常规', + BOLD = '加粗', +} + +export const FontWeightObject = { + [FontWeightEnum.NORMAL]: 'normal', + [FontWeightEnum.BOLD]: 'bold', +} + +export const option = { + + dataset: '让数字化看得见', + fontSize: 32, + fontColor: '#ffffff', + fontWeight: 'normal', + // 字间距 + letterSpacing: 5, + //阴影 + showShadow: true, + boxShadow: 'none', + hShadow: 0, + vShadow: 0, + blurShadow: 8, + colorShadow: '#0075ff', + //动画 + animationTime: 0, + animationSpeed: 50, +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TextBarrageConfig.key + public attr = { ...chartInitConfig, w: 500, h: 70, zIndex: -1 } + public chartConfig = cloneDeep(TextBarrageConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Informations/Texts/TextBarrage/config.vue b/src/packages/components/Informations/Texts/TextBarrage/config.vue new file mode 100644 index 0000000..e2a5ad5 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextBarrage/config.vue @@ -0,0 +1,89 @@ + + + diff --git a/src/packages/components/Informations/Texts/TextBarrage/index.ts b/src/packages/components/Informations/Texts/TextBarrage/index.ts new file mode 100644 index 0000000..95e5016 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextBarrage/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const TextBarrageConfig: ConfigType = { + key: 'TextBarrage', + chartKey: 'VTextBarrage', + conKey: 'VCTextBarrage', + title: '弹幕文字', + category: ChatCategoryEnum.TEXT, + categoryName: ChatCategoryEnumName.TEXT, + package: PackagesCategoryEnum.INFORMATIONS, + image: 'text_barrage.png' +} diff --git a/src/packages/components/Informations/Texts/TextBarrage/index.vue b/src/packages/components/Informations/Texts/TextBarrage/index.vue new file mode 100644 index 0000000..54e9df2 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextBarrage/index.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/packages/components/Informations/Texts/TextCommon/config.ts b/src/packages/components/Informations/Texts/TextCommon/config.ts new file mode 100644 index 0000000..5ee2e1a --- /dev/null +++ b/src/packages/components/Informations/Texts/TextCommon/config.ts @@ -0,0 +1,52 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { TextCommonConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export enum WritingModeEnum { + HORIZONTAL = '水平', + VERTICAL = '垂直' +} + +export const WritingModeObject = { + [WritingModeEnum.HORIZONTAL]: 'horizontal-tb', + [WritingModeEnum.VERTICAL]: 'vertical-rl' +} + +export enum FontWeightEnum { + NORMAL = '常规', + BOLD = '加粗', +} + +export const FontWeightObject = { + [FontWeightEnum.NORMAL]: 'normal', + [FontWeightEnum.BOLD]: 'bold', +} + +export const option = { + link: '', + linkHead: 'http://', + dataset: '我是文本', + fontSize: 20, + fontColor: '#ffffff', + paddingX: 10, + paddingY: 10, + textAlign: 'center', // 水平对齐方式 + fontWeight: 'normal', + + // 边框 + borderWidth: 0, + borderColor: '#ffffff', + borderRadius: 5, + + // 字间距 + letterSpacing: 5, + writingMode: 'horizontal-tb', + backgroundColor: '#00000000' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TextCommonConfig.key + public chartConfig = cloneDeep(TextCommonConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Informations/Texts/TextCommon/config.vue b/src/packages/components/Informations/Texts/TextCommon/config.vue new file mode 100644 index 0000000..c2a9e44 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextCommon/config.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/packages/components/Informations/Texts/TextCommon/index.ts b/src/packages/components/Informations/Texts/TextCommon/index.ts new file mode 100644 index 0000000..7adeea9 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextCommon/index.ts @@ -0,0 +1,13 @@ +import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const TextCommonConfig: ConfigType = { + key: 'TextCommon', + chartKey: 'VTextCommon', + conKey: 'VCTextCommon', + title: '文字', + category: ChatCategoryEnum.TEXT, + categoryName: ChatCategoryEnumName.TEXT, + package: PackagesCategoryEnum.INFORMATIONS, + image: 'text_static.png' +} diff --git a/src/packages/components/Informations/Texts/TextCommon/index.vue b/src/packages/components/Informations/Texts/TextCommon/index.vue new file mode 100644 index 0000000..c60a2fc --- /dev/null +++ b/src/packages/components/Informations/Texts/TextCommon/index.vue @@ -0,0 +1,89 @@ + + + + + diff --git a/src/packages/components/Informations/Texts/TextGradient/config.ts b/src/packages/components/Informations/Texts/TextGradient/config.ts new file mode 100644 index 0000000..e509952 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextGradient/config.ts @@ -0,0 +1,20 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { TextGradientConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' + +export const option = { + dataset: '我是渐变文本', + size: 20, + gradient: { + from: '#0000FFFF', + to: '#00FF00FF', + deg: 45 + } +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TextGradientConfig.key + public chartConfig = cloneDeep(TextGradientConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Informations/Texts/TextGradient/config.vue b/src/packages/components/Informations/Texts/TextGradient/config.vue new file mode 100644 index 0000000..44e0875 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextGradient/config.vue @@ -0,0 +1,45 @@ + + + diff --git a/src/packages/components/Informations/Texts/TextGradient/index.ts b/src/packages/components/Informations/Texts/TextGradient/index.ts new file mode 100644 index 0000000..1ab75ac --- /dev/null +++ b/src/packages/components/Informations/Texts/TextGradient/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum,ChatCategoryEnumName } from '../../index.d' + +export const TextGradientConfig: ConfigType = { + key: 'TextGradient', + chartKey: 'VTextGradient', + conKey: 'VCTextGradient', + title: '渐变文字', + category: ChatCategoryEnum.TEXT, + categoryName: ChatCategoryEnumName.TEXT, + package: PackagesCategoryEnum.INFORMATIONS, + chartFrame: ChartFrameEnum.NAIVE_UI, + image: 'text_gradient.png' +} diff --git a/src/packages/components/Informations/Texts/TextGradient/index.vue b/src/packages/components/Informations/Texts/TextGradient/index.vue new file mode 100644 index 0000000..3145090 --- /dev/null +++ b/src/packages/components/Informations/Texts/TextGradient/index.vue @@ -0,0 +1,54 @@ + + + + diff --git a/src/packages/components/Informations/Texts/index.ts b/src/packages/components/Informations/Texts/index.ts new file mode 100644 index 0000000..960dcae --- /dev/null +++ b/src/packages/components/Informations/Texts/index.ts @@ -0,0 +1,5 @@ +import { TextCommonConfig } from './TextCommon/index' +import { TextBarrageConfig } from './TextBarrage/index' +import { TextGradientConfig } from './TextGradient/index' + +export default [TextCommonConfig, TextGradientConfig, TextBarrageConfig] diff --git a/src/packages/components/Informations/index.d.ts b/src/packages/components/Informations/index.d.ts new file mode 100644 index 0000000..f66a7a0 --- /dev/null +++ b/src/packages/components/Informations/index.d.ts @@ -0,0 +1,11 @@ +export enum ChatCategoryEnum { + TEXT = 'Texts', + TITLE = 'Titles', + MORE = 'Mores' +} + +export enum ChatCategoryEnumName { + TEXT = '文本', + TITLE = '标题', + MORE = '更多' +} \ No newline at end of file diff --git a/src/packages/components/Informations/index.ts b/src/packages/components/Informations/index.ts new file mode 100644 index 0000000..78f5ae1 --- /dev/null +++ b/src/packages/components/Informations/index.ts @@ -0,0 +1,4 @@ +import Texts from './Texts' +import Mores from './Mores' + +export const InformationList = [...Texts, ...Mores] diff --git a/src/packages/components/Tables/Tables/TableList/config.ts b/src/packages/components/Tables/Tables/TableList/config.ts new file mode 100644 index 0000000..6749328 --- /dev/null +++ b/src/packages/components/Tables/Tables/TableList/config.ts @@ -0,0 +1,36 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { TableListConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const option = { + // 数据 + dataset: dataJson, + // 表行数 + rowNum: 5, + // 轮播时间 + waitTime: 2, + // 数值单位 + unit: '', + // 自动排序 + sort: true, + color: '#1370fb', + textColor: '#CDD2F8FF', + borderColor: '#1370fb80', + carousel: 'single', + //序号字体大小 + indexFontSize: 12, + //左侧数据字体大小 + leftFontSize: 12, + //右侧数据字体大小 + rightFontSize: 12, + // 格式化 + valueFormatter(item: { value: any}) { return item.value} +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TableListConfig.key + public chartConfig = cloneDeep(TableListConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Tables/Tables/TableList/config.vue b/src/packages/components/Tables/Tables/TableList/config.vue new file mode 100644 index 0000000..fb76b46 --- /dev/null +++ b/src/packages/components/Tables/Tables/TableList/config.vue @@ -0,0 +1,95 @@ + + + diff --git a/src/packages/components/Tables/Tables/TableList/data.json b/src/packages/components/Tables/Tables/TableList/data.json new file mode 100644 index 0000000..ed8bb52 --- /dev/null +++ b/src/packages/components/Tables/Tables/TableList/data.json @@ -0,0 +1,14 @@ +[ + { "name": "荣成", "value": 26700 }, + { "name": "河南", "value": 20700 }, + { "name": "河北", "value": 18700 }, + { "name": "徐州", "value": 17800 }, + { "name": "漯河", "value": 16756 }, + { "name": "三门峡", "value": 12343 }, + { "name": "郑州", "value": 9822 }, + { "name": "周口", "value": 8912 }, + { "name": "濮阳", "value": 6834 }, + { "name": "信阳", "value": 5875 }, + { "name": "新乡", "value": 3832 }, + { "name": "大同", "value": 1811 } +] diff --git a/src/packages/components/Tables/Tables/TableList/index.ts b/src/packages/components/Tables/Tables/TableList/index.ts new file mode 100644 index 0000000..51d502f --- /dev/null +++ b/src/packages/components/Tables/Tables/TableList/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const TableListConfig: ConfigType = { + key: 'TableList', + chartKey: 'VTableList', + conKey: 'VCTableList', + title: '滚动排名列表', + category: ChatCategoryEnum.TABLE, + categoryName: ChatCategoryEnumName.TABLE, + package: PackagesCategoryEnum.TABLES, + chartFrame: ChartFrameEnum.COMMON, + image: 'tables_list.png' +} diff --git a/src/packages/components/Tables/Tables/TableList/index.vue b/src/packages/components/Tables/Tables/TableList/index.vue new file mode 100644 index 0000000..24324ec --- /dev/null +++ b/src/packages/components/Tables/Tables/TableList/index.vue @@ -0,0 +1,259 @@ + + + + + diff --git a/src/packages/components/Tables/Tables/TableScrollBoard/config.ts b/src/packages/components/Tables/Tables/TableScrollBoard/config.ts new file mode 100644 index 0000000..f92f690 --- /dev/null +++ b/src/packages/components/Tables/Tables/TableScrollBoard/config.ts @@ -0,0 +1,26 @@ +import { PublicConfigClass } from '@/packages/public' +import { CreateComponentType } from '@/packages/index.d' +import { TableScrollBoardConfig } from './index' +import cloneDeep from 'lodash/cloneDeep' +import dataJson from './data.json' + +export const option = { + header: ['列1', '列2', '列3'], + dataset: dataJson, + index: true, + columnWidth: [30, 100, 100], + align: ['center', 'right', 'right', 'right'], + rowNum: 5, + waitTime: 2, + headerHeight: 35, + carousel: 'single', + headerBGC: '#00BAFF', + oddRowBGC: '#003B51', + evenRowBGC: '#0A2732' +} + +export default class Config extends PublicConfigClass implements CreateComponentType { + public key = TableScrollBoardConfig.key + public chartConfig = cloneDeep(TableScrollBoardConfig) + public option = cloneDeep(option) +} diff --git a/src/packages/components/Tables/Tables/TableScrollBoard/config.vue b/src/packages/components/Tables/Tables/TableScrollBoard/config.vue new file mode 100644 index 0000000..834cfb5 --- /dev/null +++ b/src/packages/components/Tables/Tables/TableScrollBoard/config.vue @@ -0,0 +1,100 @@ + + + diff --git a/src/packages/components/Tables/Tables/TableScrollBoard/data.json b/src/packages/components/Tables/Tables/TableScrollBoard/data.json new file mode 100644 index 0000000..2508e6f --- /dev/null +++ b/src/packages/components/Tables/Tables/TableScrollBoard/data.json @@ -0,0 +1,12 @@ +[ + ["行1列1", "行1列2", "行1列3"], + ["行2列1", "行2列2", "行2列3"], + ["行3列1", "行3列2", "行3列3"], + ["行4列1", "行4列2", "行4列3"], + ["行5列1", "行5列2", "行5列3"], + ["行6列1", "行6列2", "行6列3"], + ["行7列1", "行7列2", "行7列3"], + ["行8列1", "行8列2", "行8列3"], + ["行9列1", "行9列2", "行9列3"], + ["行10列1", "行10列2", "行10列3"] +] diff --git a/src/packages/components/Tables/Tables/TableScrollBoard/index.ts b/src/packages/components/Tables/Tables/TableScrollBoard/index.ts new file mode 100644 index 0000000..5ecc6e6 --- /dev/null +++ b/src/packages/components/Tables/Tables/TableScrollBoard/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const TableScrollBoardConfig: ConfigType = { + key: 'TableScrollBoard', + chartKey: 'VTableScrollBoard', + conKey: 'VCTableScrollBoard', + title: '轮播列表', + category: ChatCategoryEnum.TABLE, + categoryName: ChatCategoryEnumName.TABLE, + package: PackagesCategoryEnum.TABLES, + chartFrame: ChartFrameEnum.COMMON, + image: 'table_scrollboard.png' +} diff --git a/src/packages/components/Tables/Tables/TableScrollBoard/index.vue b/src/packages/components/Tables/Tables/TableScrollBoard/index.vue new file mode 100644 index 0000000..669be3e --- /dev/null +++ b/src/packages/components/Tables/Tables/TableScrollBoard/index.vue @@ -0,0 +1,388 @@ + + + + + diff --git a/src/packages/components/Tables/Tables/index.ts b/src/packages/components/Tables/Tables/index.ts new file mode 100644 index 0000000..dbad93e --- /dev/null +++ b/src/packages/components/Tables/Tables/index.ts @@ -0,0 +1,4 @@ +import { TableListConfig } from './TableList' +import { TableScrollBoardConfig } from './TableScrollBoard' + +export default [TableListConfig, TableScrollBoardConfig] diff --git a/src/packages/components/Tables/index.d.ts b/src/packages/components/Tables/index.d.ts new file mode 100644 index 0000000..f4e0fea --- /dev/null +++ b/src/packages/components/Tables/index.d.ts @@ -0,0 +1,7 @@ +export enum ChatCategoryEnum { + TABLE = 'Tables', +} + +export enum ChatCategoryEnumName { + TABLE = '表格', +} \ No newline at end of file diff --git a/src/packages/components/Tables/index.ts b/src/packages/components/Tables/index.ts new file mode 100644 index 0000000..530e056 --- /dev/null +++ b/src/packages/components/Tables/index.ts @@ -0,0 +1,3 @@ +import Tables from './Tables' + +export const TableList = [...Tables] diff --git a/src/packages/index.d.ts b/src/packages/index.d.ts new file mode 100644 index 0000000..e1f626b --- /dev/null +++ b/src/packages/index.d.ts @@ -0,0 +1,171 @@ +import { BaseEvent, EventLife } from '@/enums/eventEnum' +import type { GlobalThemeJsonType } from '@/settings/chartThemes/index' +import type { RequestConfigType } from '@/store/modules/chartEditStore/chartEditStore.d' + +export enum ChartFrameEnum { + // 支持 dataset 的 echarts 框架 + ECHARTS = 'echarts', + // UI 组件框架 + NAIVE_UI = 'naiveUI', + // 自定义带数据组件 + COMMON = 'common', + // 无数据变更 + STATIC = 'static' +} + +// 组件配置 +export type ConfigType = { + key: string + chartKey: string + conKey: string + title: string + category: string + categoryName: string + package: string + chartFrame?: ChartFrameEnum + image: string +} + +// 数据请求 +interface requestConfig { + request: RequestConfigType +} + +// Echarts 数据类型 +interface EchartsDataType { + dimensions: string[] + source: any[] +} + +// 组件状态 +export interface StatusType { + lock: boolean + hide: boolean +} + +// 滤镜/变换枚举 +export enum FilterEnum { + // 是否启用 + FILTERS_SHOW = 'filterShow', + + // 透明度 + OPACITY = 'opacity', + // 饱和度 + SATURATE = 'saturate', + // 对比度 + CONTRAST = 'contrast', + // 色相 + HUE_ROTATE = 'hueRotate', + // 亮度 + BRIGHTNESS = 'brightness', + + // 旋转 + ROTATE_Z = 'rotateZ', + ROTATE_X = 'rotateX', + ROTATE_Y = 'rotateY', + + // 倾斜 + SKEW_X = 'skewX', + SKEW_Y = 'skewY', + + // 混合模式 + BLEND_MODE = 'blendMode' +} + +export const BlendModeEnumList = [ + { label: '正常', value: 'normal' }, + { label: '正片叠底', value: 'multiply' }, + { label: '叠加', value: 'overlay' }, + { label: '滤色', value: 'screen' }, + { label: '变暗', value: 'darken' }, + { label: '变亮', value: 'lighten' }, + { label: '颜色减淡', value: 'color-dodge' }, + { label: '颜色加深', value: 'color-burn;' }, + { label: '强光', value: 'hard-light' }, + { label: '柔光', value: 'soft-light' }, + { label: '差值', value: 'difference' }, + { label: '排除', value: 'exclusion' }, + { label: '色相', value: 'hue' }, + { label: '饱和度', value: 'saturation' }, + { label: '颜色', value: 'color' }, + { label: '亮度', value: 'luminosity' } +] + +// 组件实例类 +export interface PublicConfigType { + id: string + isGroup: boolean + attr: { x: number; y: number; w: number; h: number; zIndex: number; offsetX: number; offsetY: number } + styles: { + [FilterEnum.FILTERS_SHOW]: boolean + [FilterEnum.OPACITY]: number + [FilterEnum.SATURATE]: number + [FilterEnum.CONTRAST]: number + [FilterEnum.HUE_ROTATE]: number + [FilterEnum.BRIGHTNESS]: number + + [FilterEnum.ROTATE_Z]: number + [FilterEnum.ROTATE_X]: number + [FilterEnum.ROTATE_Y]: number + + [FilterEnum.SKEW_X]: number + [FilterEnum.SKEW_Y]: number + [FilterEnum.BLEND_MODE]: string + // 动画 + animations: string[] + } + filter?: string + status: StatusType + events: { + baseEvent: { + [K in BaseEvent]?: string + }, + advancedEvents: { + [K in EventLife]?: string + } + } +} + +export interface CreateComponentType extends PublicConfigType, requestConfig { + key: string + chartConfig: ConfigType + option: GlobalThemeJsonType, +} + +// 组件成组实例类 +export interface CreateComponentGroupType extends CreateComponentType { + groupList: Array +} + +// 获取组件实例类中某个key对应value类型的方法 +export type PickCreateComponentType = Pick[T] + +// 包分类枚举 +export enum PackagesCategoryEnum { + CHARTS = 'Charts', + TABLES = 'Tables', + INFORMATIONS = 'Informations', + DECORATES = 'Decorates' +} + +// 包分类名称 +export enum PackagesCategoryName { + CHARTS = '图表', + TABLES = '列表', + INFORMATIONS = '信息', + DECORATES = '小组件' +} + +// 获取组件 +export enum FetchComFlagType { + VIEW, + CONFIG +} + +// 图表包类型 +export type PackagesType = { + [PackagesCategoryEnum.CHARTS]: ConfigType[] + [PackagesCategoryEnum.INFORMATIONS]: ConfigType[] + [PackagesCategoryEnum.TABLES]: ConfigType[] + [PackagesCategoryEnum.DECORATES]: ConfigType[] +} diff --git a/src/packages/index.ts b/src/packages/index.ts new file mode 100644 index 0000000..4f530fa --- /dev/null +++ b/src/packages/index.ts @@ -0,0 +1,81 @@ +import { ChartList } from '@/packages/components/Charts/index' +import { DecorateList } from '@/packages/components/Decorates/index' +import { InformationList } from '@/packages/components/Informations/index' +import { TableList } from '@/packages/components/Tables/index' +import { PackagesCategoryEnum, PackagesType, ConfigType, FetchComFlagType } from '@/packages/index.d' + +const configModules = import.meta.globEager('./components/**/config.vue') +const indexModules = import.meta.globEager('./components/**/index.vue') +const imagesModules = import.meta.globEager('../assets/images/chart/**') + +// * 所有图表 +export let packagesList: PackagesType = { + [PackagesCategoryEnum.CHARTS]: ChartList, + [PackagesCategoryEnum.INFORMATIONS]: InformationList, + [PackagesCategoryEnum.TABLES]: TableList, + [PackagesCategoryEnum.DECORATES]: DecorateList +} + +/** + * * 获取目标组件配置信息 + * @param targetData + */ +export const createComponent = async (targetData: ConfigType) => { + const { category, key } = targetData + const chart = await import(`./components/${targetData.package}/${category}/${key}/config.ts`) + return new chart.default() +} + +/** + * * 获取组件 + * @param {string} chartName 名称 + * @param {FetchComFlagType} flag 标识 0为展示组件, 1为配置组件 + */ +const fetchComponent = (chartName: string, flag: FetchComFlagType) => { + const module = flag === FetchComFlagType.VIEW ? indexModules : configModules + for (const key in module) { + const urlSplit = key.split('/') + if (urlSplit[urlSplit.length - 2] === chartName) { + return module[key] + } + } +} + +/** + * * 获取展示组件 + * @param {ConfigType} dropData 配置项 + */ +export const fetchChartComponent = (dropData: ConfigType) => { + const { key } = dropData + return fetchComponent(key, FetchComFlagType.VIEW)?.default +} + +/** + * * 获取配置组件 + * @param {ConfigType} dropData 配置项 + */ +export const fetchConfigComponent = (dropData: ConfigType) => { + const { key } = dropData + return fetchComponent(key, FetchComFlagType.CONFIG)?.default +} + +/** + * * 获取图片内容 + * @param {ConfigType} targetData 配置项 + */ +export const fetchImages = async (targetData?: ConfigType) => { + if (!targetData) return '' + // 新数据动态处理 + const { image, package: targetDataPackage } = targetData + // 兼容旧数据 + if (image.includes('@') || image.includes('base64')) return image + + const imageName = image.substring(image.lastIndexOf('/') + 1) + for (const key in imagesModules) { + const urlSplit = key.split('/') + if (urlSplit[urlSplit.length - 1] === imageName) { + return imagesModules[key]?.default + } + } + return '' +} diff --git a/src/packages/public/chart.ts b/src/packages/public/chart.ts new file mode 100644 index 0000000..d36a850 --- /dev/null +++ b/src/packages/public/chart.ts @@ -0,0 +1,35 @@ +import merge from 'lodash/merge' +import pick from 'lodash/pick' +import { EchartsDataType } from '../index.d' +import { globalThemeJson } from '@/settings/chartThemes/index' + +/** + * * 合并 color 和全局配置项 + * @param option 配置 + * @param themeSetting 设置 + * @param excludes 排除元素 + * @returns object + */ +export const mergeTheme = (option: T, themeSetting: U, includes: string[]) => { + return (option = merge({}, pick(themeSetting, includes), option)) +} + +/** + * * ECharts option 统一前置处理 + * @param option + * @return option + */ +export const echartOptionProfixHandle = (option: any, includes: string[]) => { + option['backgroundColor'] = 'rgba(0,0,0,0)' + return mergeTheme(option, globalThemeJson, includes) +} + +/** + * * 设置数据 + * @param option + * @return option + */ +export const setData = (option: any, data: EchartsDataType) => { + option.dataset = data + return option +} diff --git a/src/packages/public/index.ts b/src/packages/public/index.ts new file mode 100644 index 0000000..f6810cf --- /dev/null +++ b/src/packages/public/index.ts @@ -0,0 +1,2 @@ +export * from '@/packages/public/chart' +export * from '@/packages/public/publicConfig' diff --git a/src/packages/public/publicConfig.ts b/src/packages/public/publicConfig.ts new file mode 100644 index 0000000..c428863 --- /dev/null +++ b/src/packages/public/publicConfig.ts @@ -0,0 +1,132 @@ +import { getUUID } from '@/utils' +import { RequestConfigType } from '@/store/modules/chartEditStore/chartEditStore.d' +import { groupTitle } from '@/settings/designSetting' +import { BaseEvent, EventLife } from '@/enums/eventEnum' +import { + RequestHttpEnum, + RequestDataTypeEnum, + RequestHttpIntervalEnum, + RequestContentTypeEnum, + RequestBodyEnum +} from '@/enums/httpEnum' +import { + ChartFrameEnum, + PublicConfigType, + CreateComponentType, + CreateComponentGroupType +} from '@/packages/index.d' +import { chartInitConfig } from '@/settings/designSetting' +import cloneDeep from 'lodash/cloneDeep' + +// 请求基础属性 +export const requestConfig: RequestConfigType = { + requestDataType: RequestDataTypeEnum.STATIC, + requestHttpType: RequestHttpEnum.GET, + requestUrl: '', + requestInterval: undefined, + requestIntervalUnit: RequestHttpIntervalEnum.SECOND, + requestContentType: RequestContentTypeEnum.DEFAULT, + requestParamsBodyType: RequestBodyEnum.NONE, + requestSQLContent: { + sql: 'select * from where' + }, + requestParams: { + Body: { + 'form-data': {}, + 'x-www-form-urlencoded': {}, + json: '', + xml: '' + }, + Header: {}, + Params: {} + } +} + +// 单实例类 +export class PublicConfigClass implements PublicConfigType { + public id = getUUID() + public isGroup = false + // 基本信息 + public attr = { ...chartInitConfig, zIndex: -1 } + // 基本样式 + public styles = { + // 使用滤镜 + filterShow: false, + // 色相 + hueRotate: 0, + // 饱和度 + saturate: 1, + // 对比度 + contrast: 1, + // 亮度 + brightness: 1, + // 透明 + opacity: 1, + + // 旋转 + rotateZ: 0, + rotateX: 0, + rotateY: 0, + + // 倾斜 + skewX: 0, + skewY: 0, + + // 混合模式 + blendMode: 'normal', + + // 动画 + animations: [] + } + // 状态 + public status = { + lock: false, + hide: false + } + // 请求 + public request = cloneDeep(requestConfig) + // 数据过滤 + public filter = undefined + // 事件 + public events = { + baseEvent: { + [BaseEvent.ON_CLICK]: undefined, + [BaseEvent.ON_DBL_CLICK]: undefined, + [BaseEvent.ON_MOUSE_ENTER]: undefined, + [BaseEvent.ON_MOUSE_LEAVE]: undefined + }, + advancedEvents: { + [EventLife.VNODE_MOUNTED]: undefined, + [EventLife.VNODE_BEFORE_MOUNT]: undefined + } + } +} + +// 多选成组类 +export class PublicGroupConfigClass extends PublicConfigClass implements CreateComponentGroupType { + // 成组 + public isGroup = true + // 名称 + public chartConfig = { + key: 'group', + chartKey: 'group', + conKey: 'group', + category: 'group', + categoryName: 'group', + package: 'group', + chartFrame: ChartFrameEnum.COMMON, + title: groupTitle, + image: '' + } + // 组成员列表 + public groupList: Array = [] + // ---- 原有 --- + // key + public key = 'group' + // 配置 + public option = {} + // 标识 + public id = getUUID() + // 基本信息 + public attr = { w: 0, h: 0, x: 0, y: 0, offsetX: 0, offsetY: 0, zIndex: -1 } +} diff --git a/src/plugins/customComponents.ts b/src/plugins/customComponents.ts new file mode 100644 index 0000000..81e67df --- /dev/null +++ b/src/plugins/customComponents.ts @@ -0,0 +1,17 @@ +import type { App } from 'vue' +import { GoSkeleton } from '@/components/GoSkeleton' +import { GoLoading } from '@/components/GoLoading' +import { SketchRule } from 'vue3-sketch-ruler' + +/** + * 全局注册自定义组件 + * @param app + */ +export function setupCustomComponents(app: App) { + // 骨架屏 + app.component('GoSkeleton', GoSkeleton) + // 加载 + app.component('GoLoading', GoLoading) + // 标尺 + app.component('SketchRule', SketchRule) +} diff --git a/src/plugins/directives.ts b/src/plugins/directives.ts new file mode 100644 index 0000000..2b752aa --- /dev/null +++ b/src/plugins/directives.ts @@ -0,0 +1,17 @@ +import { App } from 'vue'; +import VueLazyLoad from 'vue3-lazyload' +import { requireErrorImg } from '@/utils' + +// import { x } from '@/directives'; + +/** + * 注册全局自定义指令 + * @param app + */ +export function setupDirectives(app: App) { + // 图片懒加载 + app.use(VueLazyLoad, { + error: requireErrorImg(), + }) + // app.directive('x', x); +} diff --git a/src/plugins/icon.ts b/src/plugins/icon.ts new file mode 100644 index 0000000..29d9bc3 --- /dev/null +++ b/src/plugins/icon.ts @@ -0,0 +1,302 @@ +import { + Close as CloseIcon, + Remove as RemoveIcon, + Resize as ResizeIcon, + EllipsisHorizontalSharp as EllipsisHorizontalCircleSharpIcon, + CopyOutline as CopyIcon, + Trash as TrashIcon, + Pencil as PencilIcon, + HammerOutline as HammerIcon, + DesktopOutline as DesktopOutlineIcon, + Download as DownloadIcon, + DownloadOutline as DownloadOutlineIcon, + Share as ShareIcon, + Send as SendIcon, + InformationCircleOutline as InformationCircleIcon, + Grid as GridIcon, + TvOutline as TvOutlineIcon, + DocumentText as DocumentTextIcon, + Language as LanguageIcon, + Moon as MoonIcon, + Sunny as SunnyIcon, + Person as PersonIcon, + PersonOutline as PersonOutlineIcon, + LogOutOutline as LogOutOutlineIcon, + ChatboxEllipses as ChatboxEllipsesIcon, + LockOpenOutline as LockOpenOutlineIcon, + LockClosedOutline as LockClosedOutlineIcon, + HelpCircleOutline as HelpOutlineIcon, + CodeSlash as CodeSlashIcon, + Create as CreateIcon, + Rocket as RocketIcon, + Duplicate as DuplicateIcon, + DuplicateOutline as DuplicateOutlineIcon, + Fish as FishIcon, + BarChart as BarChartIcon, + Layers as LayersIcon, + Prism as PrismIcon, + Construct as ConstructIcon, + ChevronBackOutline as ChevronBackOutlineIcon, + Flash as FlashIcon, + SettingsSharp as SettingsSharpIcon, + Home as HomeIcon, + Card as CardIcon, + ChevronUp as ChevronUpIcon, + ChevronDown as ChevronDownIcon, + ClipboardOutline as ClipboardOutlineIcon, + BrowsersOutline as BrowsersOutlineIcon, + Cut as CutIcon, + Square as SquareIcon, + ColorPalette as ColorPaletteIcon, + Leaf as LeafIcon, + ColorWand as ColorWandIcon, + ArrowBack as ArrowBackIcon, + ArrowForward as ArrowForwardIcon, + Planet as PawIcon, + Search as SearchIcon, + Reload as ReloadIcon, + ChevronUpOutline as ChevronUpOutlineIcon, + ChevronDownOutline as ChevronDownOutlineIcon, + Pulse as PulseIcon, + Folder as FolderIcon, + FolderOpen as FolderOpenIcon, + Image as ImageIcon, + Images as ImagesIcon, + List as ListIcon, + EyeOutline as EyeOutlineIcon, + EyeOffOutline as EyeOffOutlineIcon, + Albums as AlbumsIcon +} from '@vicons/ionicons5' + +import { + TableSplit as TableSplitIcon, + Roadmap as RoadmapIcon, + SpellCheck as SpellCheckIcon, + GraphicalDataFlow as GraphicalDataFlowIcon, + Store as StoreIcon, + Devices as DevicesIcon, + ObjectStorage as ObjectStorageIcon, + DicomOverlay as DicomOverlayIcon, + UpToTop as UpToTopIcon, + DownToBottom as DownToBottomIcon, + StackedMove as StackedMoveIcon, + PaintBrush as PaintBrushIcon, + ComposerEdit as ZAxisIcon, + AlignHorizontalLeft as AlignHorizontalLeftIcon, + AlignVerticalCenter as AlignVerticalCenterIcon, + AlignVerticalTop as AlignVerticalTopIcon, + AlignHorizontalCenter as AlignHorizontalCenterIcon, + AlignHorizontalRight as AlignHorizontalRightIcon, + AlignVerticalBottom as AlignVerticalBottomIcon, + DocumentAdd as DocumentAddIcon, + DocumentDownload as DocumentDownloadIcon, + Scale as ScaleIcon, + FitToScreen as FitToScreenIcon, + FitToHeight as FitToHeightIcon, + FitToWidth as FitToWidthIcon, + Save as SaveIcon, + Carbon3DCursor as Carbon3DCursorIcon, + Carbon3DSoftware as Carbon3DSoftwareIcon, + Filter as FilterIcon, + FilterEdit as FilterEditIcon, + Laptop as LaptopIcon +} from '@vicons/carbon' + +const ionicons5 = { + // 帮助(问号) + HelpOutlineIcon, + // 添加 + DuplicateIcon, + // 添加 Outline + DuplicateOutlineIcon, + // 代码 + CodeSlashIcon, + // 修改代码 + CreateIcon, + // 事件(火箭) + RocketIcon, + // 退出 + LogOutOutlineIcon, + // 锁 + LockOpenOutlineIcon, + LockClosedOutlineIcon, + // 人 + PersonIcon, + // 人2 + PersonOutlineIcon, + // 更多(省略号) + ChatboxEllipsesIcon, + // 月亮 + MoonIcon, + // 太阳 + SunnyIcon, + // 关闭 + CloseIcon, + // 移除(最小化) + RemoveIcon, + // 调整(最大化) + ResizeIcon, + // 省略号 + EllipsisHorizontalCircleSharpIcon, + // 复制 + CopyIcon, + // 删除(垃圾桶) + TrashIcon, + // 编辑1(笔) + PencilIcon, + // 编辑2(锤子) + HammerIcon, + // 电脑 + DesktopOutlineIcon, + // 下载 + DownloadIcon, + DownloadOutlineIcon, + // 导出 + ShareIcon, + // 导出 + SendIcon, + // 信息 + InformationCircleIcon, + // 项目 + GridIcon, + // 电脑1 + TvOutlineIcon, + // 预览,浏览器 + BrowsersOutlineIcon, + // 文档 + DocumentTextIcon, + // 语言 + LanguageIcon, + // 新项目(鱼) + FishIcon, + // 图表 + BarChartIcon, + // 图层 + LayersIcon, + // 组件详情设置(三棱镜) + PrismIcon, + // 正方体 + ConstructIcon, + // 折叠/回退 + ChevronBackOutlineIcon, + // 后端数据(闪电) + FlashIcon, + // 设置(齿轮) + SettingsSharpIcon, + // 回退 + HomeIcon, + // 控件(卡片) + CardIcon, + // 上移 + ChevronUpIcon, + // 下移 + ChevronDownIcon, + // 剪贴板 + ClipboardOutlineIcon, + // 剪贴 + CutIcon, + // 正方形 + SquareIcon, + // 色彩选择 + ColorPaletteIcon, + ZAxisIcon, + // 气球 + LeafIcon, + // 颜色 + ColorWandIcon, + // 撤回 + ArrowBackIcon, + // 前进 + ArrowForwardIcon, + // 狗爪 + PawIcon, + // 搜索(放大镜) + SearchIcon, + // 加载 + ReloadIcon, + // 过滤器 + FilterIcon, + // 向上 + ChevronUpOutlineIcon, + // 向下 + ChevronDownOutlineIcon, + // 脉搏 + PulseIcon, + // 文件夹 + FolderIcon, + // 文件夹打开 + FolderOpenIcon, + // 图片 + ImageIcon, + // 多个图片 + ImagesIcon, + // 列表 + ListIcon, + // 眼睛 + EyeOutlineIcon, + EyeOffOutlineIcon, + // 图表列表 + AlbumsIcon +} + +const carbon = { + // 图表 + RoadmapIcon, + // 信息 + SpellCheckIcon, + // 表格 + TableSplitIcon, + // 装饰 + GraphicalDataFlowIcon, + // 项目 + DevicesIcon, + // 模板市场 + StoreIcon, + // 我的模板 + ObjectStorageIcon, + // 键盘 + DicomOverlayIcon, + // 置顶 + UpToTopIcon, + // 置底 + DownToBottomIcon, + // 移动 + StackedMoveIcon, + // 清空剪切板(刷子) + PaintBrushIcon, + // 坐标轴 + ZAxisIcon, + AlignHorizontalLeftIcon, + AlignVerticalCenterIcon, + AlignVerticalTopIcon, + AlignHorizontalCenterIcon, + AlignHorizontalRightIcon, + AlignVerticalBottomIcon, + // 添加文件 + DocumentAddIcon, + // 下载文件 + DocumentDownloadIcon, + // 预览展示方式 + ScaleIcon, + FitToScreenIcon, + FitToHeightIcon, + FitToWidthIcon, + // 保存 + SaveIcon, + // 成组 + Carbon3DCursorIcon, + // 解组 + Carbon3DSoftwareIcon, + // 过滤器 + FilterIcon, + FilterEditIcon, + // 图层 + LaptopIcon +} + +// https://www.xicons.org/#/ 还有很多 + +export const icon = { + ionicons5, + carbon +} diff --git a/src/plugins/index.ts b/src/plugins/index.ts new file mode 100644 index 0000000..c500f63 --- /dev/null +++ b/src/plugins/index.ts @@ -0,0 +1,4 @@ +export { setupNaive } from '@/plugins/naive' +export { setupDirectives } from '@/plugins/directives' +export { setupCustomComponents } from '@/plugins/customComponents' +export { icon } from '@/plugins/icon' diff --git a/src/plugins/naive.ts b/src/plugins/naive.ts new file mode 100644 index 0000000..ab4dbb1 --- /dev/null +++ b/src/plugins/naive.ts @@ -0,0 +1,211 @@ +import type { App } from 'vue' +import { + create, + NA, + NP, + NH1, + NH2, + NH3, + NH4, + NH5, + NCode, + NCountdown, + NText, + NTime, + NEllipsis, + NConfigProvider, + NMessageProvider, + NDialogProvider, + NGradientText, + NInput, + NImage, + NButton, + NButtonGroup, + NForm, + NFormItem, + NCheckboxGroup, + NCheckbox, + NIcon, + NLayout, + NLayoutHeader, + NLayoutContent, + NLayoutFooter, + NLayoutSider, + NMenu, + NBreadcrumb, + NBreadcrumbItem, + NDropdown, + NSpace, + NTooltip, + NAvatar, + NTabs, + NTab, + NTabPane, + NCard, + NRow, + NCol, + NDrawer, + NDrawerContent, + NDivider, + NSwitch, + NBadge, + NAlert, + NElement, + NTag, + NNotificationProvider, + NNumberAnimation, + NProgress, + NDatePicker, + NGrid, + NGridItem, + NList, + NListItem, + NThing, + NDataTable, + NPopover, + NPagination, + NSelect, + NSlider, + NRadioGroup, + NRadio, + NSteps, + NStep, + NInputGroup, + NInputGroupLabel, + NResult, + NDescriptions, + NDescriptionsItem, + NTable, + NInputNumber, + NLoadingBarProvider, + NModal, + NUpload, + NUploadFileList, + NUploadTrigger, + NUploadDragger, + NTree, + NSpin, + NTimeline, + NTimelineItem, + NTimePicker, + NBackTop, + NSkeleton, + NStatistic, + NCarousel, + NScrollbar, + NPopselect, + NCollapse, + NCollapseItem, + NColorPicker, + NWatermark, + NEmpty, + NCollapseTransition +} from 'naive-ui' + +const naive = create({ + components: [ + NA, + NP, + NH1, + NH2, + NH3, + NH4, + NH5, + NCode, + NCountdown, + NText, + NTime, + NEllipsis, + NMessageProvider, + NDialogProvider, + NConfigProvider, + NGradientText, + NInput, + NButton, + NButtonGroup, + NForm, + NFormItem, + NCheckboxGroup, + NCheckbox, + NIcon, + NImage, + NLayout, + NLayoutHeader, + NLayoutContent, + NLayoutFooter, + NLayoutSider, + NMenu, + NBreadcrumb, + NBreadcrumbItem, + NDropdown, + NSpace, + NTooltip, + NAvatar, + NTabs, + NTab, + NTabPane, + NCard, + NRow, + NCol, + NDrawer, + NDrawerContent, + NDivider, + NSwitch, + NBadge, + NAlert, + NElement, + NTag, + NNotificationProvider, + NNumberAnimation, + NProgress, + NDatePicker, + NGrid, + NGridItem, + NList, + NListItem, + NThing, + NDataTable, + NPopover, + NPagination, + NSlider, + NSelect, + NRadioGroup, + NRadio, + NSteps, + NStep, + NInputGroup, + NInputGroupLabel, + NResult, + NDescriptions, + NDescriptionsItem, + NTable, + NInputNumber, + NLoadingBarProvider, + NModal, + NUpload, + NUploadFileList, + NUploadTrigger, + NUploadDragger, + NTree, + NSpin, + NTimeline, + NTimelineItem, + NTimePicker, + NBackTop, + NSkeleton, + NStatistic, + NCarousel, + NScrollbar, + NPopselect, + NCollapse, + NCollapseItem, + NColorPicker, + NWatermark, + NEmpty, + NCollapseTransition + ] +}) + +export function setupNaive(app: App) { + app.use(naive) +} diff --git a/src/router/base.ts b/src/router/base.ts new file mode 100644 index 0000000..8e4202b --- /dev/null +++ b/src/router/base.ts @@ -0,0 +1,80 @@ +import { RouteRecordRaw } from 'vue-router' +import type { AppRouteRecordRaw } from '@/router/types'; +import { ErrorPage404, ErrorPage403, ErrorPage500, Layout, RedirectHome, RedirectUnPublish } from '@/router/constant'; +import { PageEnum } from '@/enums/pageEnum' +import { GoReload } from '@/components/GoReload' + + +export const LoginRoute: RouteRecordRaw = { + path: PageEnum.BASE_LOGIN, + name: PageEnum.BASE_LOGIN_NAME, + component: () => import('@/views/login/index.vue'), + meta: { + title: '登录', + }, +}; + +export const HttpErrorPage: RouteRecordRaw[] = [ + { + path: '/error/404', + name: PageEnum.ERROR_PAGE_NAME_404, + component: ErrorPage404, + meta: { + title: PageEnum.ERROR_PAGE_NAME_404, + }, + }, + { + path: '/error/403', + name: PageEnum.ERROR_PAGE_NAME_403, + component: ErrorPage403, + meta: { + title: PageEnum.ERROR_PAGE_NAME_403, + }, + }, + { + path: '/error/500', + name: PageEnum.ERROR_PAGE_NAME_500, + component: ErrorPage500, + meta: { + title: PageEnum.ERROR_PAGE_NAME_500, + }, + }, +] + +export const ErrorPageRoute: AppRouteRecordRaw = { + path: '/:path(.*)*', + name: 'ErrorPage', + component: ErrorPage404, + meta: { + title: PageEnum.ERROR_PAGE_NAME_404, + hideBreadcrumb: true, + } +}; + +export const ReloadRoute: AppRouteRecordRaw = { + path: PageEnum.RELOAD, + name: PageEnum.RELOAD_NAME, + component: GoReload, + meta: { + title: PageEnum.RELOAD_NAME, + }, +} + +export const RedirectRoute: RouteRecordRaw[] = [ + { + path: PageEnum.REDIRECT, + name: PageEnum.REDIRECT_NAME, + component: RedirectHome, + meta: { + title: PageEnum.REDIRECT_NAME, + }, + }, + { + path: PageEnum.REDIRECT_UN_PUBLISH, + name: PageEnum.REDIRECT_UN_PUBLISH_NAME, + component: RedirectUnPublish, + meta: { + title: PageEnum.REDIRECT_UN_PUBLISH_NAME, + }, + }, +] diff --git a/src/router/constant.ts b/src/router/constant.ts new file mode 100644 index 0000000..d540b6f --- /dev/null +++ b/src/router/constant.ts @@ -0,0 +1,13 @@ +export const ErrorPage404 = () => import('@/views/exception/404.vue'); + +export const ErrorPage403 = () => import('@/views/exception/403.vue'); + +export const ErrorPage500 = () => import('@/views/exception/500.vue'); + +export const RedirectHome = () => import('@/views/redirect/index.vue'); + +export const RedirectUnPublish = () => import('@/views/redirect/UnPublish.vue'); + +export const Layout = () => import('@/layout/index.vue'); + +export const ParentLayout = () => import('@/layout/parentLayout.vue'); diff --git a/src/router/index.ts b/src/router/index.ts new file mode 100644 index 0000000..c8977dd --- /dev/null +++ b/src/router/index.ts @@ -0,0 +1,44 @@ +import type { App } from 'vue' +import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router' +import { createRouterGuards } from './router-guards' +import { PageEnum } from '@/enums/pageEnum' +import { HttpErrorPage, LoginRoute, ReloadRoute, RedirectRoute } from '@/router/base' +import { Layout } from '@/router/constant' + +import modules from '@/router/modules' + +const RootRoute: Array = [ + { + path: '/', + name: 'Root', + redirect: PageEnum.BASE_HOME, + component: Layout, + meta: { + title: 'Root', + }, + children: [ + ...HttpErrorPage, + ...RedirectRoute, + modules.projectRoutes, + modules.chartRoutes, + modules.previewRoutes, + modules.editRoutes + ] + } +] + + +export const constantRouter: any[] = [LoginRoute, ...RootRoute, ReloadRoute]; + +const router = createRouter({ + history: createWebHashHistory(''), + routes: constantRouter, + strict: true, +}) + +export function setupRouter(app: App) { + app.use(router); + // 创建路由守卫 + createRouterGuards(router) +} +export default router diff --git a/src/router/modules/chart.route.ts b/src/router/modules/chart.route.ts new file mode 100644 index 0000000..c910767 --- /dev/null +++ b/src/router/modules/chart.route.ts @@ -0,0 +1,21 @@ +import { RouteRecordRaw } from 'vue-router' +import { ChartEnum } from '@/enums/pageEnum' + +// 引入路径 +const importPath = { + 'ChartEnum.CHART_HOME_NAME': () => import('@/views/chart/index.vue') +} + +const chartRoutes: RouteRecordRaw = { + path: ChartEnum.CHART_HOME, + name: ChartEnum.CHART_HOME_NAME, + component: importPath['ChartEnum.CHART_HOME_NAME'], + meta: { + title: '工作空间', + isRoot: true, + noKeepAlive: true, + } +} + + +export default chartRoutes \ No newline at end of file diff --git a/src/router/modules/edit.route.ts b/src/router/modules/edit.route.ts new file mode 100644 index 0000000..50b8168 --- /dev/null +++ b/src/router/modules/edit.route.ts @@ -0,0 +1,20 @@ +import { RouteRecordRaw } from 'vue-router' +import { EditEnum } from '@/enums/pageEnum' + +// 引入路径 +const importPath = { + [EditEnum.CHART_EDIT_NAME]: () => import('@/views/edit/index.vue') +} + +const chartRoutes: RouteRecordRaw = { + path: EditEnum.CHART_EDIT, + name: EditEnum.CHART_EDIT_NAME, + component: importPath[EditEnum.CHART_EDIT_NAME], + meta: { + title: '编辑', + isRoot: true + } +} + + +export default chartRoutes \ No newline at end of file diff --git a/src/router/modules/index.ts b/src/router/modules/index.ts new file mode 100644 index 0000000..c134d95 --- /dev/null +++ b/src/router/modules/index.ts @@ -0,0 +1,11 @@ +import projectRoutes from './project.router' +import chartRoutes from './chart.route' +import previewRoutes from './preview.route' +import editRoutes from './edit.route' + +export default { + projectRoutes, + chartRoutes, + previewRoutes, + editRoutes +} \ No newline at end of file diff --git a/src/router/modules/preview.route.ts b/src/router/modules/preview.route.ts new file mode 100644 index 0000000..ae3d919 --- /dev/null +++ b/src/router/modules/preview.route.ts @@ -0,0 +1,20 @@ +import { RouteRecordRaw } from 'vue-router' +import { PreviewEnum } from '@/enums/pageEnum' + +// 引入路径 +const importPath = { + 'PreviewEnum.CHART_PREVIEW_NAME': () => import('@/views/preview/wrapper.vue') +} + +const chartRoutes: RouteRecordRaw = { + path: PreviewEnum.CHART_PREVIEW, + name: PreviewEnum.CHART_PREVIEW_NAME, + component: importPath['PreviewEnum.CHART_PREVIEW_NAME'], + meta: { + title: '预览', + isRoot: true + } +} + + +export default chartRoutes \ No newline at end of file diff --git a/src/router/modules/project.router.ts b/src/router/modules/project.router.ts new file mode 100644 index 0000000..45f51f1 --- /dev/null +++ b/src/router/modules/project.router.ts @@ -0,0 +1,49 @@ +import { RouteRecordRaw } from 'vue-router' +import { PageEnum } from '@/enums/pageEnum' + +// 引入路径 +const importPath = { + 'PageEnum.BASE_HOME_NAME': () => import('@/views/project/index.vue'), + 'PageEnum.BASE_HOME_ITEMS_NAME': () => import('@/views/project/items/index.vue'), + 'PageEnum.BASE_HOME_TEMPLATE_NAME': () => import('@/views/project/mtTemplate/index.vue'), + 'PageEnum.BASE_HOME_TEMPLATE_MARKET_NAME': () => import('@/views/project/templateMarket/index.vue') +} + +const projectRoutes: RouteRecordRaw = { + path: PageEnum.BASE_HOME, + name: PageEnum.BASE_HOME_NAME, + component: importPath['PageEnum.BASE_HOME_NAME'], + redirect: PageEnum.BASE_HOME_ITEMS, + meta: { + title: '项目', + isRoot: true + }, + children: [ + { + path: PageEnum.BASE_HOME_ITEMS, + name: PageEnum.BASE_HOME_ITEMS_NAME, + component: importPath['PageEnum.BASE_HOME_ITEMS_NAME'], + meta: { + title: '我的项目' + } + }, + { + path: PageEnum.BASE_HOME_TEMPLATE, + name: PageEnum.BASE_HOME_TEMPLATE_NAME, + component: importPath['PageEnum.BASE_HOME_TEMPLATE_NAME'], + meta: { + title: '我的模板' + } + }, + { + path: PageEnum.BASE_HOME_TEMPLATE_MARKET, + name: PageEnum.BASE_HOME_TEMPLATE_MARKET_NAME, + component: importPath['PageEnum.BASE_HOME_TEMPLATE_MARKET_NAME'], + meta: { + title: '模板市场' + } + } + ] +} + +export default projectRoutes diff --git a/src/router/router-guards.ts b/src/router/router-guards.ts new file mode 100644 index 0000000..bdaa7fb --- /dev/null +++ b/src/router/router-guards.ts @@ -0,0 +1,40 @@ +import { Router } from 'vue-router'; +import { PageEnum, PreviewEnum } from '@/enums/pageEnum' +import { loginCheck } from '@/utils' + +// 路由白名单 +const routerAllowList = [ + // 登录 + PageEnum.BASE_LOGIN_NAME, + // 预览 + PreviewEnum.CHART_PREVIEW_NAME +] + +export function createRouterGuards(router: Router) { + // 前置 + router.beforeEach(async (to, from, next) => { + const Loading = window['$loading']; + Loading && Loading.start(); + const isErrorPage = router.getRoutes().findIndex((item) => item.name === to.name); + if (isErrorPage === -1) { + next({ name: PageEnum.ERROR_PAGE_NAME_404 }) + } + + // @ts-ignore + if (!routerAllowList.includes(to.name) && !loginCheck()) { + next({ name: PageEnum.BASE_LOGIN_NAME }) + } + next() + }) + + router.afterEach((to, _, failure) => { + const Loading = window['$loading']; + document.title = (to?.meta?.title as string) || document.title; + Loading && Loading.finish(); + }) + + // 错误 + router.onError((error) => { + console.log(error, '路由错误'); + }); +} \ No newline at end of file diff --git a/src/router/types.ts b/src/router/types.ts new file mode 100644 index 0000000..59c3b14 --- /dev/null +++ b/src/router/types.ts @@ -0,0 +1,40 @@ +import type { RouteRecordRaw, RouteMeta } from 'vue-router' +import { defineComponent } from 'vue' + +declare type Recordable = Record + +export type Component = + | ReturnType + | (() => Promise) + | (() => Promise) + +// @ts-ignore +export interface AppRouteRecordRaw extends Omit { + name: string + meta: RouteMeta + component?: Component | string + components?: Component + children?: AppRouteRecordRaw[] + props?: Recordable + fullPath?: string +} + +export interface Meta { + // 名称 + title: string + // 是否忽略权限 + ignoreAuth?: boolean + permissions?: string[] + // 是否不缓存 + noKeepAlive?: boolean + // 是否固定在tab上 + affix?: boolean + // tab上的图标 + icon?: string + // 跳转地址 + frameSrc?: string + // 外链跳转地址 + externalLink?: string + //隐藏 + hidden?: boolean +} diff --git a/src/settings/animations/index.ts b/src/settings/animations/index.ts new file mode 100644 index 0000000..65106a7 --- /dev/null +++ b/src/settings/animations/index.ts @@ -0,0 +1,57 @@ +export const animations = [ + { + label: '强调动画', + children: [ + { label: '弹跳', value: 'bounce' }, + { label: '闪烁', value: 'flash' }, + { label: '放大缩小', value: 'pulse' }, + { label: '放大缩小弹簧', value: 'rubberBand' }, + { label: '左右晃动', value: 'headShake' }, + { label: '左右扇形摇摆', value: 'swing' }, + { label: '放大晃动缩小', value: 'tada' }, + { label: '扇形摇摆', value: 'wobble' }, + { label: '左右上下晃动', value: 'jello' }, + ] + }, + { + label: '移入动画', + children: [ + { label: '渐显', value: 'fadeIn' }, + { label: '向右进入', value: 'fadeInLeft' }, + { label: '向左进入', value: 'fadeInRight' }, + { label: '向上进入', value: 'fadeInUp' }, + { label: '向下进入', value: 'fadeInDown' }, + { label: '向右长距进入', value: 'fadeInLeftBig' }, + { label: '向左长距进入', value: 'fadeInRightBig' }, + { label: '向上长距进入', value: 'fadeInUpBig' }, + { label: '向下长距进入', value: 'fadeInDownBig' }, + { label: '旋转进入', value: 'rotateIn' }, + { label: '左顺时针旋转', value: 'rotateInDownLeft' }, + { label: '右逆时针旋转', value: 'rotateInDownRight' }, + { label: '左逆时针旋转', value: 'rotateInUpLeft' }, + { label: '右逆时针旋转', value: 'rotateInUpRight' }, + { label: '弹入', value: 'bounceIn' }, + { label: '向右弹入', value: 'bounceInLeft' }, + { label: '向左弹入', value: 'bounceInRight' }, + { label: '向上弹入', value: 'bounceInUp' }, + { label: '向下弹入', value: 'bounceInDown' }, + { label: '光速从右进入', value: 'lightSpeedInRight' }, + { label: '光速从左进入', value: 'lightSpeedInLeft' }, + { label: '光速从右退出', value: 'lightSpeedOutRight' }, + { label: '光速从左退出', value: 'lightSpeedOutLeft' }, + { label: 'Y轴旋转', value: 'flip' }, + { label: '中心X轴旋转', value: 'flipInX' }, + { label: '中心Y轴旋转', value: 'flipInY' }, + { label: '左长半径旋转', value: 'rollIn' }, + { label: '由小变大进入', value: 'zoomIn' }, + { label: '左变大进入', value: 'zoomInLeft' }, + { label: '右变大进入', value: 'zoomInRight' }, + { label: '向上变大进入', value: 'zoomInUp' }, + { label: '向下变大进入', value: 'zoomInDown' }, + { label: '向右滑动展开', value: 'slideInLeft' }, + { label: '向左滑动展开', value: 'slideInRight' }, + { label: '向上滑动展开', value: 'slideInUp' }, + { label: '向下滑动展开', value: 'slideInDown' } + ] + } +] diff --git a/src/settings/chartThemes/global.theme.json b/src/settings/chartThemes/global.theme.json new file mode 100644 index 0000000..1c099af --- /dev/null +++ b/src/settings/chartThemes/global.theme.json @@ -0,0 +1,101 @@ +{ + "title": { + "show": true, + "textStyle": { + "color": "#BFBFBF", + "fontSize": 18 + }, + "subtextStyle": { + "color": "#A2A2A2", + "fontSize": 14 + } + }, + "xAxis": { + "show": true, + "name": "", + "nameGap": 15, + "nameTextStyle": { + "color": "#B9B8CE", + "fontSize": 12 + }, + "inverse": false, + "axisLabel": { + "show": true, + "fontSize": 12, + "color": "#B9B8CE", + "rotate": 0 + }, + "position": "bottom", + "axisLine": { + "show": true, + "lineStyle": { + "color": "#B9B8CE", + "width": 1 + }, + "onZero": true + }, + "axisTick": { + "show": true, + "length": 5 + }, + "splitLine": { + "show": false, + "lineStyle": { + "color": "#484753", + "width": 1, + "type": "solid" + } + } + }, + "yAxis": { + "show": true, + "name": "", + "nameGap": 15, + "nameTextStyle": { + "color": "#B9B8CE", + "fontSize": 12 + }, + "inverse": false, + "axisLabel": { + "show": true, + "fontSize": 12, + "color": "#B9B8CE", + "rotate": 0 + }, + "position": "left", + "axisLine": { + "show": true, + "lineStyle": { + "color": "#B9B8CE", + "width": 1 + }, + "onZero": true + }, + "axisTick": { + "show": true, + "length": 5 + }, + "splitLine": { + "show": true, + "lineStyle": { + "color": "#484753", + "width": 1, + "type": "solid" + } + } + }, + "legend": { + "show": true, + "top": "5%", + "textStyle": { + "color": "#B9B8CE" + } + }, + "grid": { + "show": false, + "left": "10%", + "top": "60", + "right": "10%", + "bottom": "60" + } +} \ No newline at end of file diff --git a/src/settings/chartThemes/index.ts b/src/settings/chartThemes/index.ts new file mode 100644 index 0000000..d066d85 --- /dev/null +++ b/src/settings/chartThemes/index.ts @@ -0,0 +1,91 @@ +import customed from './themes/customed.json' +import dark from './themes/dark.json' +import chalk from './themes/chalk.json' +import essos from './themes/essos.json' +import macarons from './themes/macarons.json' +import purplePassion from './themes/purple-passion.json' +import roma from './themes/roma.json' +import shine from './themes/shine.json' +import vintage from './themes/vintage.json' +import walden from './themes/walden.json' +import westeros from './themes/westeros.json' +import wonderland from './themes/wonderland.json' +// 默认主题详细配置 +import themeJson from './global.theme.json' + +export const chartColors = { + dark, + customed, + macarons, + walden, + purplePassion, + vintage, + chalk, + westeros, + wonderland, + essos, + shine, + roma +} + +// 默认主题 +export const defaultTheme = 'dark' + +// 主题色列表 +export type ChartColorsNameType = keyof typeof chartColorsName +export const chartColorsName = { + dark: '明亮', + customed: '暗淡', + macarons: '马卡龙', + walden: '蓝绿', + purplePassion: '深紫', + vintage: '复古', + chalk: '粉青', + westeros: '灰粉', + wonderland: '青草', + essos: '橘红', + shine: '深色', + roma: '罗马红' +} + +// 主题色列表 +export const chartColorsshow = { + dark: 'linear-gradient(to right, #4992ff 0%, #7cffb2 100%)', + customed: 'linear-gradient(to right, #5470c6 0%, #91cc75 100%)', + macarons: 'linear-gradient(to right, #2ec7c9 0%, #b6a2de 100%)', + walden: 'linear-gradient(to right, #3fb1e3 0%, #6be6c1 100%)', + purplePassion: 'linear-gradient(to right, #9b8bba 0%, #e098c7 100%)', + vintage: 'linear-gradient(to right, #d87c7c 0%, #919e8b 100%)', + chalk: 'linear-gradient(to right, #fc97af 0%, #87f7cf 100%)', + westeros: 'linear-gradient(to right, #516b91 0%, #edafda 100%)', + wonderland: 'linear-gradient(to right, #4ea397 0%, #22c3aa 100%)', + essos: 'linear-gradient(to right, #893448 0%, #d95850 100%)', + shine: 'linear-gradient(to right, #c12e34 0%, #0098d9 100%)', + roma: 'linear-gradient(to right, #e01f54 0%, #5e4ea5 100%)' +} +// 渐变主题色列表(主色1、主色2、阴影、渐变1、渐变2) +export const chartColorsSearch = { + dark: ['#4992ff', '#7cffb2', 'rgba(68, 181, 226, 0.3)', 'rgba(73, 146, 255, 0.5)', 'rgba(124, 255, 178, 0.5)'], + customed: ['#5470c6', '#91cc75', 'rgba(84, 112, 198, 0.5)', 'rgba(84, 112, 198, 0.5)', 'rgba(145, 204, 117, 0.5)'], + macarons: ['#2ec7c9', '#b6a2de', 'rgba(182, 162, 222, 0.3)', 'rgba(46, 199, 201, 0.5)', 'rgba(182, 162, 222, 0.5)'], + + walden: ['#3fb1e3', '#6be6c1', 'rgba(68, 181, 226, 0.3)', 'rgba(63, 177, 227, 0.5)', 'rgba(107, 230, 193, 0.5)'], + purplePassion: ['#9b8bba', '#e098c7', 'rgba(182, 162, 222, 0.3)', 'rgba(155, 139, 186, 0.5)', 'rgba(237, 175, 218, 0.5)'], + vintage: ['#d87c7c', '#919e8b', 'rgba(182, 162, 222, 0.3)', 'rgba(216, 124, 124, 0.5)', 'rgba(145, 158, 139, 0.5)'], + + chalk: ['#fc97af', '#87f7cf', 'rgba(135, 247, 207, 0.3)', 'rgba(252, 151, 175, 0.5)', 'rgba(135, 247, 207, 0.5)'], + westeros: ['#516b91', '#edafda', 'rgba(81, 107, 145, 0.3)', 'rgba(81, 107, 145, 0.5)', 'rgba(89, 196, 230, 0.5)'], + wonderland: ['#4ea397', '#22c3aa', 'rgba(68, 181, 226, 0.3)', 'rgba(78, 163, 151, 0.5)', 'rgba(34, 195, 170, 0.5)'], + + essos: ['#893448', '#d95850', 'rgba(137, 52, 72, 0.3)', 'rgba(137, 52, 72, 0.5)', 'rgba(217, 88, 80, 0.5)'], + shine: ['#c12e34', '#0098d9', 'rgba(137, 52, 72, 0.3)', 'rgba(193, 46, 52, 0.5)', 'rgba(230, 182, 0, 0.5)'], + roma: ['#e01f54', '#5e4ea5', 'rgba(137, 52, 72, 0.3)', 'rgba(224, 31, 84, 0.5)', 'rgba(94, 78, 165, 0.5)'], +} + +// 默认主题详细配置 +type ThemeJsonType = typeof themeJson +export interface GlobalThemeJsonType extends Partial { + dataset?: any, + [T:string]: any +} +export const globalThemeJson = {...themeJson, dataset: null,} diff --git a/src/settings/chartThemes/themes/chalk.json b/src/settings/chartThemes/themes/chalk.json new file mode 100644 index 0000000..09ac926 --- /dev/null +++ b/src/settings/chartThemes/themes/chalk.json @@ -0,0 +1,12 @@ +{ + "color": [ + "#fc97af", + "#87f7cf", + "#f7f494", + "#72ccff", + "#f7c5a0", + "#d4a4eb", + "#d2f5a6", + "#76f2f2" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/customed.json b/src/settings/chartThemes/themes/customed.json new file mode 100644 index 0000000..d29733a --- /dev/null +++ b/src/settings/chartThemes/themes/customed.json @@ -0,0 +1,13 @@ +{ + "color": [ + "#5470c6", + "#91cc75", + "#fac858", + "#ee6666", + "#73c0de", + "#3ba272", + "#fc8452", + "#9a60b4", + "#ea7ccc" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/dark.json b/src/settings/chartThemes/themes/dark.json new file mode 100644 index 0000000..59126d9 --- /dev/null +++ b/src/settings/chartThemes/themes/dark.json @@ -0,0 +1,13 @@ +{ + "color": [ + "#4992ff", + "#7cffb2", + "#fddd60", + "#ff6e76", + "#58d9f9", + "#05c091", + "#ff8a45", + "#8d48e3", + "#dd79ff" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/essos.json b/src/settings/chartThemes/themes/essos.json new file mode 100644 index 0000000..18823d4 --- /dev/null +++ b/src/settings/chartThemes/themes/essos.json @@ -0,0 +1,10 @@ +{ + "color": [ + "#893448", + "#d95850", + "#eb8146", + "#ffb248", + "#f2d643", + "#ebdba4" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/macarons.json b/src/settings/chartThemes/themes/macarons.json new file mode 100644 index 0000000..a800789 --- /dev/null +++ b/src/settings/chartThemes/themes/macarons.json @@ -0,0 +1,24 @@ +{ + "color": [ + "#2ec7c9", + "#b6a2de", + "#5ab1ef", + "#ffb980", + "#d87a80", + "#8d98b3", + "#e5cf0d", + "#97b552", + "#95706d", + "#dc69aa", + "#07a2a4", + "#9a7fd1", + "#588dd5", + "#f5994e", + "#c05050", + "#59678c", + "#c9ab00", + "#7eb00a", + "#6f5553", + "#c14089" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/purple-passion.json b/src/settings/chartThemes/themes/purple-passion.json new file mode 100644 index 0000000..d96e410 --- /dev/null +++ b/src/settings/chartThemes/themes/purple-passion.json @@ -0,0 +1,10 @@ +{ + "color": [ + "#9b8bba", + "#e098c7", + "#8fd3e8", + "#71669e", + "#cc70af", + "#7cb4cc" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/roma.json b/src/settings/chartThemes/themes/roma.json new file mode 100644 index 0000000..2b527f5 --- /dev/null +++ b/src/settings/chartThemes/themes/roma.json @@ -0,0 +1,24 @@ +{ + "color": [ + "#e01f54", + "#5e4ea5", + "#f5e8c8", + "#b8d2c7", + "#c6b38e", + "#a4d8c2", + "#f3d999", + "#d3758f", + "#dcc392", + "#2e4783", + "#82b6e9", + "#ff6347", + "#a092f1", + "#0a915d", + "#eaf889", + "#6699FF", + "#ff6666", + "#3cb371", + "#d5b158", + "#38b6b6" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/shine.json b/src/settings/chartThemes/themes/shine.json new file mode 100644 index 0000000..4c4e0f8 --- /dev/null +++ b/src/settings/chartThemes/themes/shine.json @@ -0,0 +1,12 @@ +{ + "color": [ + "#c12e34", + "#e6b600", + "#0098d9", + "#2b821d", + "#005eaa", + "#339ca8", + "#cda819", + "#32a487" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/vintage.json b/src/settings/chartThemes/themes/vintage.json new file mode 100644 index 0000000..28190dd --- /dev/null +++ b/src/settings/chartThemes/themes/vintage.json @@ -0,0 +1,14 @@ +{ + "color": [ + "#d87c7c", + "#919e8b", + "#d7ab82", + "#6e7074", + "#61a0a8", + "#efa18d", + "#787464", + "#cc7e63", + "#724e58", + "#4b565b" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/walden.json b/src/settings/chartThemes/themes/walden.json new file mode 100644 index 0000000..2cf15ab --- /dev/null +++ b/src/settings/chartThemes/themes/walden.json @@ -0,0 +1,10 @@ +{ + "color": [ + "#3fb1e3", + "#6be6c1", + "#626c91", + "#a0a7e6", + "#c4ebad", + "#96dee8" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/westeros.json b/src/settings/chartThemes/themes/westeros.json new file mode 100644 index 0000000..257891d --- /dev/null +++ b/src/settings/chartThemes/themes/westeros.json @@ -0,0 +1,10 @@ +{ + "color": [ + "#516b91", + "#59c4e6", + "#edafda", + "#93b7e3", + "#a5e7f0", + "#cbb0e3" + ] +} \ No newline at end of file diff --git a/src/settings/chartThemes/themes/wonderland.json b/src/settings/chartThemes/themes/wonderland.json new file mode 100644 index 0000000..06c3311 --- /dev/null +++ b/src/settings/chartThemes/themes/wonderland.json @@ -0,0 +1,10 @@ +{ + "color": [ + "#4ea397", + "#22c3aa", + "#7bd9a5", + "#d0648a", + "#f58db2", + "#f2b3c9" + ] +} \ No newline at end of file diff --git a/src/settings/designColor.json b/src/settings/designColor.json new file mode 100644 index 0000000..77ddf15 --- /dev/null +++ b/src/settings/designColor.json @@ -0,0 +1,3677 @@ +[ + { + "CMYK": [4, 5, 18, 0], + "RGB": [249, 244, 220], + "hex": "#f9f4dc", + "name": "乳白", + "pinyin": "rubai" + }, + { + "CMYK": [3, 8, 30, 0], + "RGB": [249, 236, 195], + "hex": "#f7e8aa", + "name": "杏仁黄", + "pinyin": "xingrenhuang" + }, + { + "CMYK": [4, 13, 67, 0], + "RGB": [248, 223, 114], + "hex": "#f8df72", + "name": "茉莉黄", + "pinyin": "molihuang" + }, + { + "CMYK": [5, 14, 68, 1], + "RGB": [248, 223, 112], + "hex": "#f8df70", + "name": "麦秆黄", + "pinyin": "maiganhuang" + }, + { + "CMYK": [2, 16, 84, 0], + "RGB": [251, 218, 65], + "hex": "#fbda41", + "name": "油菜花黄", + "pinyin": "youcaihuahuang" + }, + { + "CMYK": [1, 18, 94, 0], + "RGB": [254, 215, 26], + "hex": "#fed71a", + "name": "佛手黄", + "pinyin": "foshouhuang" + }, + { + "CMYK": [3, 16, 50, 0], + "RGB": [247, 222, 152], + "hex": "#f7de98", + "name": "篾黄", + "pinyin": "miehuang" + }, + { + "CMYK": [3, 17, 69, 0], + "RGB": [248, 216, 106], + "hex": "#f8d86a", + "name": "葵扇黄", + "pinyin": "kuishanhuang" + }, + { + "CMYK": [0, 20, 87, 0], + "RGB": [252, 211, 55], + "hex": "#fcd337", + "name": "柠檬黄", + "pinyin": "ningmenghuang" + }, + { + "CMYK": [0, 20, 95, 0], + "RGB": [252, 210, 23], + "hex": "#fcd217", + "name": "金瓜黄", + "pinyin": "jinguahuang" + }, + { + "CMYK": [0, 21, 94, 0], + "RGB": [254, 209, 16], + "hex": "#ffd111", + "name": "藤黄", + "pinyin": "tenghuang" + }, + { + "CMYK": [2, 16, 39, 0], + "RGB": [246, 222, 173], + "hex": "#f6dead", + "name": "酪黄", + "pinyin": "laohuang" + }, + { + "CMYK": [1, 21, 70, 0], + "RGB": [249, 211, 103], + "hex": "#f9d367", + "name": "淡密黄", + "pinyin": "danmihuang" + }, + { + "CMYK": [0, 23, 88, 0], + "RGB": [251, 205, 49], + "hex": "#fbcd31", + "name": "大豆黄", + "pinyin": "dadouhuang" + }, + { + "CMYK": [0, 24, 94, 0], + "RGB": [252, 203, 22], + "hex": "#fccb16", + "name": "素馨黄", + "pinyin": "suxinhuang" + }, + { + "CMYK": [0, 24, 94, 0], + "RGB": [254, 204, 17], + "hex": "#fecc11", + "name": "向日葵黄", + "pinyin": "xiangrikuihuang" + }, + { + "CMYK": [0, 27, 88, 0], + "RGB": [251, 200, 47], + "hex": "#fbc82f", + "name": "雅梨黄", + "pinyin": "yalihuang" + }, + { + "CMYK": [0, 28, 94, 0], + "RGB": [252, 197, 21], + "hex": "#fcc515", + "name": "黄连黄", + "pinyin": "huanglianhuang" + }, + { + "CMYK": [0, 29, 95, 0], + "RGB": [252, 195, 7], + "hex": "#fcc307", + "name": "金盏黄", + "pinyin": "jinzhanhuang" + }, + { + "CMYK": [0, 32, 52, 0], + "RGB": [248, 195, 135], + "hex": "#f8c387", + "name": "蛋壳黄", + "pinyin": "dankehuang" + }, + { + "CMYK": [0, 32, 52, 0], + "RGB": [247, 193, 115], + "hex": "#f7c173", + "name": "肉色", + "pinyin": "rouse" + }, + { + "CMYK": [0, 35, 89, 0], + "RGB": [251, 185, 41], + "hex": "#fbb929", + "name": "鹅掌黄", + "pinyin": "ezhanghuang" + }, + { + "CMYK": [0, 36, 93, 0], + "RGB": [251, 182, 18], + "hex": "#fbb612", + "name": "鸡蛋黄", + "pinyin": "jidanhuang" + }, + { + "CMYK": [0, 35, 94, 0], + "RGB": [252, 183, 10], + "hex": "#fcb70a", + "name": "鼬黄", + "pinyin": "youhuang" + }, + { + "CMYK": [0, 44, 84, 0], + "RGB": [249, 166, 51], + "hex": "#f9a633", + "name": "榴萼黄", + "pinyin": "liuehuang" + }, + { + "CMYK": [0, 45, 92, 0], + "RGB": [251, 164, 20], + "hex": "#fba414", + "name": "淡橘橙", + "pinyin": "danjucheng" + }, + { + "CMYK": [0, 47, 92, 0], + "RGB": [252, 161, 6], + "hex": "#fca106", + "name": "枇杷黄", + "pinyin": "pipahuang" + }, + { + "CMYK": [0, 47, 92, 0], + "RGB": [252, 161, 4], + "hex": "#fca104", + "name": "橙皮黄", + "pinyin": "chengpihuang" + }, + { + "CMYK": [0, 56, 87, 0], + "RGB": [252, 140, 35], + "hex": "#fc8c23", + "name": "北瓜黄", + "pinyin": "beiguahuang" + }, + { + "CMYK": [0, 54, 92, 0], + "RGB": [250, 142, 22], + "hex": "#f28e16", + "name": "杏黄", + "pinyin": "xinghuang" + }, + { + "CMYK": [0, 51, 91, 0], + "RGB": [255, 153, 0], + "hex": "#ff9900", + "name": "雄黄", + "pinyin": "xionghuang" + }, + { + "CMYK": [0, 56, 91, 0], + "RGB": [251, 139, 5], + "hex": "#fb8b05", + "name": "万寿菊黄", + "pinyin": "wanshoujuhuang" + }, + { + "CMYK": [10, 13, 35, 1], + "RGB": [233, 221, 182], + "hex": "#e9ddb6", + "name": "菊蕾白", + "pinyin": "juleibai" + }, + { + "CMYK": [8, 19, 84, 1], + "RGB": [238, 208, 69], + "hex": "#eed045", + "name": "秋葵黄", + "pinyin": "qiukuihuang" + }, + { + "CMYK": [6, 20, 92, 1], + "RGB": [242, 206, 43], + "hex": "#f2ce2b", + "name": "硫华黄", + "pinyin": "liuhuahuang" + }, + { + "CMYK": [6, 22, 92, 0], + "RGB": [241, 202, 23], + "hex": "#f1ca17", + "name": "柚黄", + "pinyin": "youhuang" + }, + { + "CMYK": [15, 20, 66, 2], + "RGB": [221, 200, 113], + "hex": "#ddc871", + "name": "芒果黄", + "pinyin": "mangguohuang" + }, + { + "CMYK": [14, 22, 85, 2], + "RGB": [223, 194, 67], + "hex": "#dfc243", + "name": "蒿黄", + "pinyin": "haohuang" + }, + { + "CMYK": [12, 24, 95, 2], + "RGB": [226, 192, 39], + "hex": "#e2c027", + "name": "姜黄", + "pinyin": "jianghuang" + }, + { + "CMYK": [11, 25, 99, 1], + "RGB": [228, 191, 17], + "hex": "#e4bf11", + "name": "香蕉黄", + "pinyin": "xiangjiaohuang" + }, + { + "CMYK": [17, 27, 94, 4], + "RGB": [210, 180, 44], + "hex": "#d2b42c", + "name": "草黄", + "pinyin": "caohuang" + }, + { + "CMYK": [17, 29, 100, 4], + "RGB": [210, 177, 22], + "hex": "#d2b116", + "name": "新禾绿", + "pinyin": "xinhelv" + }, + { + "CMYK": [28, 26, 45, 7], + "RGB": [183, 174, 143], + "hex": "#b7ae8f", + "name": "月灰", + "pinyin": "yuehui" + }, + { + "CMYK": [30, 30, 70, 12], + "RGB": [173, 158, 85], + "hex": "#ad9e5f", + "name": "淡灰绿", + "pinyin": "danhuilv" + }, + { + "CMYK": [38, 38, 76, 24], + "RGB": [142, 128, 75], + "hex": "#8e804b", + "name": "草灰绿", + "pinyin": "caohuilv" + }, + { + "CMYK": [36, 42, 100, 29], + "RGB": [136, 115, 34], + "hex": "#887322", + "name": "苔绿", + "pinyin": "tailv" + }, + { + "CMYK": [36, 42, 100, 30], + "RGB": [134, 112, 24], + "hex": "#867018", + "name": "碧螺春绿", + "pinyin": "biluochunlv" + }, + { + "CMYK": [47, 47, 65, 42], + "RGB": [104, 94, 72], + "hex": "#685e48", + "name": "燕羽灰", + "pinyin": "yanyuhui" + }, + { + "CMYK": [46, 47, 69, 42], + "RGB": [105, 94, 69], + "hex": "#695e45", + "name": "蟹壳灰", + "pinyin": "xiekehui" + }, + { + "CMYK": [48, 48, 100, 45], + "RGB": [100, 88, 34], + "hex": "#645822", + "name": "潭水绿", + "pinyin": "tanshuilv" + }, + { + "CMYK": [50, 50, 10, 48], + "RGB": [94, 83, 20], + "hex": "#5e5314", + "name": "橄榄绿", + "pinyin": "ganlanlv" + }, + { + "CMYK": [2, 6, 18, 0], + "RGB": [249, 241, 219], + "hex": "#f9f1db", + "name": "蚌肉白", + "pinyin": "bangroubai" + }, + { + "CMYK": [3, 10, 31, 0], + "RGB": [248, 232, 193], + "hex": "#f8e8c1", + "name": "豆汁黄", + "pinyin": "douzhihuang" + }, + { + "CMYK": [1, 19, 66, 0], + "RGB": [249, 215, 112], + "hex": "#f9d770", + "name": "淡茧黄", + "pinyin": "danjianhuang" + }, + { + "CMYK": [0, 26, 94, 0], + "RGB": [255, 201, 12], + "hex": "#ffc90c", + "name": "乳鸭黄", + "pinyin": "ruyahuang" + }, + { + "CMYK": [5, 11, 22, 0], + "RGB": [242, 230, 206], + "hex": "#f2e6ce", + "name": "荔肉白", + "pinyin": "liroubai" + }, + { + "CMYK": [5, 19, 50, 0], + "RGB": [240, 214, 149], + "hex": "#f0d695", + "name": "象牙黄", + "pinyin": "xiangyahuang" + }, + { + "CMYK": [3, 23, 69, 0], + "RGB": [244, 206, 105], + "hex": "#f4ce69", + "name": "炒米黄", + "pinyin": "chaomihuang" + }, + { + "CMYK": [1, 28, 89, 0], + "RGB": [246, 196, 48], + "hex": "#f6c430", + "name": "鹦鹉冠黄", + "pinyin": "yingwuguanhuang" + }, + { + "CMYK": [0, 30, 95, 0], + "RGB": [249, 193, 22], + "hex": "#f9c116", + "name": "木瓜黄", + "pinyin": "muguahuang" + }, + { + "CMYK": [0, 32, 95, 0], + "RGB": [249, 189, 16], + "hex": "#f9bd10", + "name": "浅烙黄", + "pinyin": "qianlaohuang" + }, + { + "CMYK": [11, 18, 39, 1], + "RGB": [229, 211, 170], + "hex": "#e5d3aa", + "name": "莲子白", + "pinyin": "lianzibai" + }, + { + "CMYK": [5, 35, 99, 0], + "RGB": [232, 176, 4], + "hex": "#e8b004", + "name": "谷黄", + "pinyin": "guhuang" + }, + { + "CMYK": [3, 36, 99, 0], + "RGB": [235, 177, 13], + "hex": "#ebb10d", + "name": "栀子黄", + "pinyin": "zhizihuang" + }, + { + "CMYK": [11, 39, 100, 2], + "RGB": [217, 164, 14], + "hex": "#d9a40e", + "name": "芥黄", + "pinyin": "jiehuang" + }, + { + "CMYK": [28, 27, 43, 8], + "RGB": [181, 170, 144], + "hex": "#b5aa90", + "name": "银鼠灰", + "pinyin": "yinshuhui" + }, + { + "CMYK": [26, 31, 57, 10], + "RGB": [182, 164, 118], + "hex": "#b6a476", + "name": "尘灰", + "pinyin": "chenhui" + }, + { + "CMYK": [21, 43, 100, 11], + "RGB": [183, 141, 18], + "hex": "#b78d12", + "name": "枯绿", + "pinyin": "kulv" + }, + { + "CMYK": [35, 44, 80, 30], + "RGB": [135, 114, 62], + "hex": "#87723e", + "name": "鲛青", + "pinyin": "jiaoqing" + }, + { + "CMYK": [32, 50, 100, 31], + "RGB": [135, 104, 24], + "hex": "#876818", + "name": "粽叶绿", + "pinyin": "zongyelv" + }, + { + "CMYK": [31, 51, 100, 30], + "RGB": [138, 105, 19], + "hex": "#8a6913", + "name": "灰绿", + "pinyin": "huilv" + }, + { + "CMYK": [52, 56, 64, 62], + "RGB": [74, 64, 53], + "hex": "#4a4035", + "name": "鹤灰", + "pinyin": "hehui" + }, + { + "CMYK": [48, 58, 70, 62], + "RGB": [77, 64, 48], + "hex": "#4d4030", + "name": "淡松烟", + "pinyin": "dansongyan" + }, + { + "CMYK": [45, 56, 100, 56], + "RGB": [88, 71, 23], + "hex": "#584717", + "name": "暗海水绿", + "pinyin": "anhaishuilv" + }, + { + "CMYK": [45, 55, 100, 54], + "RGB": [91, 73, 19], + "hex": "#5b4913", + "name": "棕榈绿", + "pinyin": "zonglvlv" + }, + { + "CMYK": [1, 11, 24, 0], + "RGB": [249, 223, 205], + "hex": "#f9e9cd", + "name": "米色", + "pinyin": "mise" + }, + { + "CMYK": [1, 15, 38, 0], + "RGB": [248, 224, 176], + "hex": "#f8e0b0", + "name": "淡肉色", + "pinyin": "danrouse" + }, + { + "CMYK": [0, 23, 59, 0], + "RGB": [249, 210, 125], + "hex": "#f9d27d", + "name": "麦芽糖黄", + "pinyin": "maiyatanghuang" + }, + { + "CMYK": [0, 34, 93, 0], + "RGB": [254, 186, 7], + "hex": "#feba07", + "name": "琥珀黄", + "pinyin": "hupohuang" + }, + { + "CMYK": [1, 31, 79, 0], + "RGB": [243, 191, 76], + "hex": "#f3bf4c", + "name": "甘草黄", + "pinyin": "gancaohuang" + }, + { + "CMYK": [0, 33, 83, 0], + "RGB": [248, 188, 49], + "hex": "#f8bc31", + "name": "初熟杏黄", + "pinyin": "chushuxinghuang" + }, + { + "CMYK": [10, 27, 59, 1], + "RGB": [226, 193, 124], + "hex": "#e2c17c", + "name": "浅驼色", + "pinyin": "qiantuose" + }, + { + "CMYK": [7, 32, 78, 1], + "RGB": [229, 183, 81], + "hex": "#e5b751", + "name": "沙石黄", + "pinyin": "shashihuang" + }, + { + "CMYK": [3, 38, 97, 0], + "RGB": [234, 173, 26], + "hex": "#eaad1a", + "name": "虎皮黄", + "pinyin": "hupihuang" + }, + { + "CMYK": [12, 41, 98, 2], + "RGB": [214, 160, 29], + "hex": "#d6a01d", + "name": "土黄", + "pinyin": "tuhuang" + }, + { + "CMYK": [28, 28, 41, 9], + "RGB": [180, 169, 146], + "hex": "#b4a992", + "name": "百灵鸟灰", + "pinyin": "bailingniaohui" + }, + { + "CMYK": [21, 44, 97, 11], + "RGB": [183, 139, 38], + "hex": "#b78b26", + "name": "山鸡黄", + "pinyin": "shanjihuang" + }, + { + "CMYK": [35, 47, 71, 33], + "RGB": [130, 107, 72], + "hex": "#826b48", + "name": "龟背黄", + "pinyin": "guibeihuang" + }, + { + "CMYK": [34, 52, 85, 35], + "RGB": [128, 99, 50], + "hex": "#806332", + "name": "苍黄", + "pinyin": "canghuang" + }, + { + "CMYK": [32, 56, 96, 34], + "RGB": [129, 95, 37], + "hex": "#815f25", + "name": "莱阳梨黄", + "pinyin": "laiyanglihuang" + }, + { + "CMYK": [31, 57, 100, 33], + "RGB": [131, 94, 29], + "hex": "#835e1d", + "name": "蜴蜊绿", + "pinyin": "yililv" + }, + { + "CMYK": [46, 59, 68, 61], + "RGB": [79, 64, 50], + "hex": "#4f4032", + "name": "松鼠灰", + "pinyin": "songshuhui" + }, + { + "CMYK": [44, 61, 76, 62], + "RGB": [80, 62, 42], + "hex": "#503e2a", + "name": "橄榄灰", + "pinyin": "ganlanhui" + }, + { + "CMYK": [43, 63, 88, 61], + "RGB": [81, 60, 32], + "hex": "#513c20", + "name": "蟹壳绿", + "pinyin": "xiekelv" + }, + { + "CMYK": [42, 64, 94, 60], + "RGB": [83, 60, 27], + "hex": "#533c1b", + "name": "古铜绿", + "pinyin": "gutonglv" + }, + { + "CMYK": [41, 66, 94, 60], + "RGB": [85, 59, 24], + "hex": "#553b18", + "name": "焦茶绿", + "pinyin": "jiaochalv" + }, + { + "CMYK": [1, 7, 13, 0], + "RGB": [251, 242, 227], + "hex": "#fbf2e3", + "name": "粉白", + "pinyin": "fenbai" + }, + { + "CMYK": [1, 12, 22, 0], + "RGB": [249, 232, 208], + "hex": "#f9e8d0", + "name": "落英淡粉", + "pinyin": "luoyingdanfen" + }, + { + "CMYK": [0, 27, 51, 0], + "RGB": [249, 203, 139], + "hex": "#f9cb8b", + "name": "瓜瓤粉", + "pinyin": "guarangfen" + }, + { + "CMYK": [0, 36, 72, 0], + "RGB": [251, 185, 87], + "hex": "#fbb957", + "name": "蜜黄", + "pinyin": "mihuang" + }, + { + "CMYK": [0, 44, 91, 0], + "RGB": [255, 166, 15], + "hex": "#ffa60f", + "name": "金叶黄", + "pinyin": "jinyehuang" + }, + { + "CMYK": [0, 43, 82, 0], + "RGB": [244, 168, 58], + "hex": "#f4a83a", + "name": "金莺黄", + "pinyin": "jinyinghuang" + }, + { + "CMYK": [8, 31, 50, 1], + "RGB": [227, 189, 141], + "hex": "#e3bd8d", + "name": "鹿角棕", + "pinyin": "lujiaozong" + }, + { + "CMYK": [2, 44, 83, 0], + "RGB": [231, 162, 63], + "hex": "#e7a23f", + "name": "凋叶棕", + "pinyin": "diaoyezong" + }, + { + "CMYK": [10, 41, 72, 1], + "RGB": [218, 164, 90], + "hex": "#daa45a", + "name": "玳瑁黄", + "pinyin": "daimaohuang" + }, + { + "CMYK": [7, 45, 82, 1], + "RGB": [222, 158, 68], + "hex": "#de9e44", + "name": "软木黄", + "pinyin": "ruanmuhuang" + }, + { + "CMYK": [6, 51, 95, 1], + "RGB": [220, 145, 35], + "hex": "#dc9123", + "name": "风帆黄", + "pinyin": "fengfanhuang" + }, + { + "CMYK": [19, 44, 75, 7], + "RGB": [192, 147, 81], + "hex": "#c09351", + "name": "桂皮淡棕", + "pinyin": "guipidanzong" + }, + { + "CMYK": [32, 40, 53, 22], + "RGB": [151, 132, 108], + "hex": "#97846c", + "name": "猴毛灰", + "pinyin": "houmaohui" + }, + { + "CMYK": [27, 60, 97, 21], + "RGB": [152, 101, 36], + "hex": "#986524", + "name": "山鸡褐", + "pinyin": "shanjihe" + }, + { + "CMYK": [37, 65, 84, 49], + "RGB": [102, 70, 42], + "hex": "#66462a", + "name": "驼色", + "pinyin": "tuose" + }, + { + "CMYK": [38, 69, 90, 54], + "RGB": [93, 61, 33], + "hex": "#5d3d21", + "name": "茶褐", + "pinyin": "chahe" + }, + { + "CMYK": [37, 74, 96, 55], + "RGB": [92, 55, 25], + "hex": "#5c3719", + "name": "古铜褐", + "pinyin": "gutonghe" + }, + { + "CMYK": [0, 10, 14, 0], + "RGB": [251, 236, 222], + "hex": "#fbecde", + "name": "荷花白", + "pinyin": "hehuabai" + }, + { + "CMYK": [0, 40, 52, 0], + "RGB": [248, 179, 127], + "hex": "#f8b37f", + "name": "玫瑰粉", + "pinyin": "meiguifen" + }, + { + "CMYK": [0, 62, 88, 0], + "RGB": [249, 125, 28], + "hex": "#f97d1c", + "name": "橘橙", + "pinyin": "jucheng" + }, + { + "CMYK": [0, 62, 85, 0], + "RGB": [250, 126, 35], + "hex": "#fa7e23", + "name": "美人焦橙", + "pinyin": "meirenjiaocheng" + }, + { + "CMYK": [0, 28, 25, 0], + "RGB": [247, 205, 188], + "hex": "#f7cdbc", + "name": "润红", + "pinyin": "runhong" + }, + { + "CMYK": [0, 28, 22, 0], + "RGB": [246, 206, 193], + "hex": "#f6cec1", + "name": "淡桃红", + "pinyin": "dantaohong" + }, + { + "CMYK": [0, 53, 65, 0], + "RGB": [240, 148, 93], + "hex": "#f0945d", + "name": "海螺橙", + "pinyin": "hailuocheng" + }, + { + "CMYK": [0, 44, 32, 0], + "RGB": [240, 173, 160], + "hex": "#f0ada0", + "name": "桃红", + "pinyin": "taohong" + }, + { + "CMYK": [0, 45, 34, 0], + "RGB": [238, 170, 156], + "hex": "#eeaa9c", + "name": "颊红", + "pinyin": "jiahong" + }, + { + "CMYK": [0, 49, 41, 0], + "RGB": [238, 160, 140], + "hex": "#eea08c", + "name": "淡罂粟红", + "pinyin": "danyingsuhong" + }, + { + "CMYK": [0, 58, 67, 0], + "RGB": [234, 137, 88], + "hex": "#ea8958", + "name": "晨曦红", + "pinyin": "chenxihong" + }, + { + "CMYK": [0, 65, 80, 0], + "RGB": [242, 118, 53], + "hex": "#f27635", + "name": "蟹壳红", + "pinyin": "xiekehong" + }, + { + "CMYK": [0, 69, 86, 0], + "RGB": [248, 107, 29], + "hex": "#f86b1d", + "name": "金莲花橙", + "pinyin": "jinlianhuacheng" + }, + { + "CMYK": [0, 69, 70, 0], + "RGB": [239, 111, 72], + "hex": "#ef6f48", + "name": "草莓红", + "pinyin": "caomeihong" + }, + { + "CMYK": [0, 72, 82, 0], + "RGB": [239, 99, 43], + "hex": "#ef632b", + "name": "龙睛鱼红", + "pinyin": "longjingyuhong" + }, + { + "CMYK": [0, 81, 84, 0], + "RGB": [241, 68, 29], + "hex": "#f1441d", + "name": "蜻蜓红", + "pinyin": "qingtinghong" + }, + { + "CMYK": [0, 80, 83, 0], + "RGB": [240, 75, 34], + "hex": "#f04b22", + "name": "大红", + "pinyin": "dahong" + }, + { + "CMYK": [0, 80, 85, 0], + "RGB": [242, 72, 27], + "hex": "#f2481b", + "name": "柿红", + "pinyin": "shihong" + }, + { + "CMYK": [0, 80, 85, 0], + "RGB": [243, 71, 24], + "hex": "#f34718", + "name": "榴花红", + "pinyin": "liuhuahong" + }, + { + "CMYK": [0, 83, 87, 0], + "RGB": [244, 62, 6], + "hex": "#f43e06", + "name": "银朱", + "pinyin": "yinzhu" + }, + { + "CMYK": [0, 78, 83, 0], + "RGB": [237, 81, 38], + "hex": "#ed5126", + "name": "朱红", + "pinyin": "zhuhong" + }, + { + "CMYK": [0, 50, 68, 0], + "RGB": [240, 156, 90], + "hex": "#f09c5a", + "name": "鲑鱼红", + "pinyin": "guiyuhong" + }, + { + "CMYK": [5, 69, 87, 0], + "RGB": [242, 123, 31], + "hex": "#f26b1f", + "name": "金黄", + "pinyin": "jinhuang" + }, + { + "CMYK": [7, 52, 71, 1], + "RGB": [217, 145, 86], + "hex": "#d99156", + "name": "鹿皮褐", + "pinyin": "lupihe" + }, + { + "CMYK": [4, 57, 82, 1], + "RGB": [219, 133, 64], + "hex": "#db8540", + "name": "醉瓜肉", + "pinyin": "zuiguarou" + }, + { + "CMYK": [0, 64, 93, 0], + "RGB": [222, 118, 34], + "hex": "#de7622", + "name": "麂棕", + "pinyin": "jizong" + }, + { + "CMYK": [22, 28, 34, 6], + "RGB": [193, 178, 163], + "hex": "#c1b2a3", + "name": "淡银灰", + "pinyin": "danyinhui" + }, + { + "CMYK": [18, 57, 76, 6], + "RGB": [190, 126, 74], + "hex": "#be7e4a", + "name": "淡赭", + "pinyin": "danzhe" + }, + { + "CMYK": [14, 69, 100, 4], + "RGB": [193, 101, 26], + "hex": "#c1651a", + "name": "槟榔综", + "pinyin": "binglangzong" + }, + { + "CMYK": [34, 42, 46, 23], + "RGB": [145, 128, 114], + "hex": "#918072", + "name": "银灰", + "pinyin": "yinhui" + }, + { + "CMYK": [42, 40, 46, 20], + "RGB": [154, 136, 120], + "hex": "#9a8878", + "name": "海鸥灰", + "pinyin": "haiouhui" + }, + { + "CMYK": [27, 69, 85, 22], + "RGB": [148, 88, 51], + "hex": "#945833", + "name": "淡咖啡", + "pinyin": "dankafei" + }, + { + "CMYK": [26, 76, 97, 20], + "RGB": [150, 77, 34], + "hex": "#964d22", + "name": "岩石棕", + "pinyin": "yanshizong" + }, + { + "CMYK": [25, 80, 100, 20], + "RGB": [149, 68, 22], + "hex": "#954416", + "name": "芒果棕", + "pinyin": "mangguozong" + }, + { + "CMYK": [39, 60, 58, 51], + "RGB": [98, 73, 65], + "hex": "#624941", + "name": "石板灰", + "pinyin": "shibanhui" + }, + { + "CMYK": [38, 63, 63, 50], + "RGB": [100, 72, 61], + "hex": "#64483d", + "name": "珠母灰", + "pinyin": "zhumuhui" + }, + { + "CMYK": [32, 83, 96, 41], + "RGB": [113, 54, 29], + "hex": "#71361d", + "name": "丁香棕", + "pinyin": "dingxiangzong" + }, + { + "CMYK": [30, 87, 100, 38], + "RGB": [117, 49, 23], + "hex": "#753117", + "name": "咖啡", + "pinyin": "kafei" + }, + { + "CMYK": [30, 89, 100, 39], + "RGB": [115, 46, 18], + "hex": "#732e12", + "name": "筍皮棕", + "pinyin": "sunpizong" + }, + { + "CMYK": [0, 72, 86, 0], + "RGB": [252, 99, 21], + "hex": "#fc6315", + "name": "燕颔红", + "pinyin": "yanhanhong" + }, + { + "CMYK": [3, 38, 39, 0], + "RGB": [232, 180, 154], + "hex": "#e8b49a", + "name": "玉粉红", + "pinyin": "yufenhong" + }, + { + "CMYK": [0, 70, 87, 0], + "RGB": [228, 104, 40], + "hex": "#e46828", + "name": "金驼", + "pinyin": "jintuo" + }, + { + "CMYK": [0, 76, 97, 0], + "RGB": [216, 89, 22], + "hex": "#d85916", + "name": "铁棕", + "pinyin": "tiezong" + }, + { + "CMYK": [23, 35, 38, 10], + "RGB": [183, 160, 145], + "hex": "#b7a091", + "name": "蛛网灰", + "pinyin": "zhuwanghui" + }, + { + "CMYK": [16, 77, 100, 6], + "RGB": [183, 81, 29], + "hex": "#b7511d", + "name": "淡可可棕", + "pinyin": "dankekezong" + }, + { + "CMYK": [31, 63, 66, 31], + "RGB": [139, 97, 77], + "hex": "#8b614d", + "name": "中红灰", + "pinyin": "zhonghonghui" + }, + { + "CMYK": [28, 76, 82, 26], + "RGB": [140, 75, 49], + "hex": "#8c4b31", + "name": "淡土黄", + "pinyin": "dantuhuang" + }, + { + "CMYK": [28, 83, 92, 28], + "RGB": [135, 61, 36], + "hex": "#873d24", + "name": "淡豆沙", + "pinyin": "dandousha" + }, + { + "CMYK": [27, 85, 98, 27], + "RGB": [136, 58, 30], + "hex": "#883a1e", + "name": "椰壳棕", + "pinyin": "yekezong" + }, + { + "CMYK": [40, 64, 61, 56], + "RGB": [91, 66, 58], + "hex": "#5b423a", + "name": "淡铁灰", + "pinyin": "dantiehui" + }, + { + "CMYK": [37, 72, 72, 52], + "RGB": [96, 61, 48], + "hex": "#603d30", + "name": "中灰驼", + "pinyin": "zhonghuituo" + }, + { + "CMYK": [34, 82, 85, 47], + "RGB": [103, 52, 36], + "hex": "#673424", + "name": "淡栗棕", + "pinyin": "danlizong" + }, + { + "CMYK": [33, 89, 92, 48], + "RGB": [101, 43, 28], + "hex": "#652b1c", + "name": "可可棕", + "pinyin": "kekezong" + }, + { + "CMYK": [32, 90, 95, 45], + "RGB": [105, 42, 27], + "hex": "#692a1b", + "name": "柞叶棕", + "pinyin": "zhayezong" + }, + { + "CMYK": [0, 53, 59, 0], + "RGB": [251, 153, 104], + "hex": "#fb9968", + "name": "野蔷薇红", + "pinyin": "yeqiangweihong" + }, + { + "CMYK": [0, 65, 79, 0], + "RGB": [252, 121, 48], + "hex": "#fc7930", + "name": "菠萝红", + "pinyin": "boluohong" + }, + { + "CMYK": [2, 31, 31, 0], + "RGB": [237, 195, 174], + "hex": "#edc3ae", + "name": "藕荷", + "pinyin": "ouhe" + }, + { + "CMYK": [0, 70, 91, 0], + "RGB": [225, 103, 35], + "hex": "#e16723", + "name": "陶瓷红", + "pinyin": "taocihong" + }, + { + "CMYK": [16, 23, 27, 2], + "RGB": [212, 196, 183], + "hex": "#d4c4b7", + "name": "晓灰", + "pinyin": "xiaohui" + }, + { + "CMYK": [9, 64, 78, 1], + "RGB": [207, 117, 67], + "hex": "#cf7543", + "name": "余烬红", + "pinyin": "yujinhong" + }, + { + "CMYK": [8, 72, 93, 1], + "RGB": [205, 98, 39], + "hex": "#cd6227", + "name": "火砖红", + "pinyin": "huozhuanhong" + }, + { + "CMYK": [22, 64, 71, 12], + "RGB": [170, 106, 76], + "hex": "#aa6a4c", + "name": "火泥棕", + "pinyin": "huonizong" + }, + { + "CMYK": [20, 76, 92, 9], + "RGB": [166, 82, 44], + "hex": "#a6522c", + "name": "绀红", + "pinyin": "ganhong" + }, + { + "CMYK": [31, 79, 77, 37], + "RGB": [119, 61, 49], + "hex": "#773d31", + "name": "橡树棕", + "pinyin": "xiangshuzong" + }, + { + "CMYK": [45, 68, 57, 66], + "RGB": [72, 51, 50], + "hex": "#483332", + "name": "海报灰", + "pinyin": "haibaohui" + }, + { + "CMYK": [41, 76, 64, 65], + "RGB": [175, 46, 43], + "hex": "#4b2e2b", + "name": "玫瑰灰", + "pinyin": "meiguihui" + }, + { + "CMYK": [41, 84, 71, 67], + "RGB": [72, 37, 34], + "hex": "#482522", + "name": "火山棕", + "pinyin": "huoshanzong" + }, + { + "CMYK": [40, 92, 78, 66], + "RGB": [72, 30, 28], + "hex": "#481e1c", + "name": "豆沙", + "pinyin": "dousha" + }, + { + "CMYK": [0, 9, 12, 0], + "RGB": [251, 238, 226], + "hex": "#fbeee2", + "name": "淡米粉", + "pinyin": "danmifen" + }, + { + "CMYK": [0, 19, 19, 0], + "RGB": [246, 220, 206], + "hex": "#f6dcce", + "name": "初桃粉红", + "pinyin": "chutaofenhong" + }, + { + "CMYK": [0, 27, 27, 0], + "RGB": [247, 207, 186], + "hex": "#f7cfba", + "name": "介壳淡粉红", + "pinyin": "jieqiaodanfenhong" + }, + { + "CMYK": [0, 43, 43, 0], + "RGB": [246, 173, 143], + "hex": "#f6ad8f", + "name": "淡藏花红", + "pinyin": "dancanghuahong" + }, + { + "CMYK": [0, 58, 61, 0], + "RGB": [246, 140, 96], + "hex": "#f68c60", + "name": "瓜瓤红", + "pinyin": "guaranghong" + }, + { + "CMYK": [0, 67, 74, 0], + "RGB": [249, 114, 61], + "hex": "#f9723d", + "name": "芙蓉红", + "pinyin": "furonghong" + }, + { + "CMYK": [0, 74, 85, 0], + "RGB": [250, 93, 25], + "hex": "#fa5d19", + "name": "莓酱红", + "pinyin": "meijianghong" + }, + { + "CMYK": [0, 62, 66, 0], + "RGB": [238, 128, 85], + "hex": "#ee8055", + "name": "法螺红", + "pinyin": "faluohong" + }, + { + "CMYK": [4, 82, 99, 0], + "RGB": [207, 72, 19], + "hex": "#cf4813", + "name": "落霞红", + "pinyin": "luoxiahong" + }, + { + "CMYK": [21, 43, 43, 9], + "RGB": [184, 148, 133], + "hex": "#b89485", + "name": "淡玫瑰灰", + "pinyin": "danmeiguihui" + }, + { + "CMYK": [18, 80, 92, 7], + "RGB": [177, 75, 40], + "hex": "#b14b28", + "name": "蟹蝥红", + "pinyin": "xiemaohong" + }, + { + "CMYK": [27, 91, 95, 28], + "RGB": [134, 48, 32], + "hex": "#863020", + "name": "火岩棕", + "pinyin": "huoyanzong" + }, + { + "CMYK": [27, 96, 100, 27], + "RGB": [134, 38, 23], + "hex": "#862617", + "name": "赭石", + "pinyin": "zheshi" + }, + { + "CMYK": [36, 90, 82, 56], + "RGB": [89, 38, 32], + "hex": "#592620", + "name": "暗驼棕", + "pinyin": "antuozong" + }, + { + "CMYK": [35, 96, 88, 55], + "RGB": [90, 31, 27], + "hex": "#5a1f1b", + "name": "酱棕", + "pinyin": "jiangzong" + }, + { + "CMYK": [34, 98, 91, 53], + "RGB": [92, 30, 25], + "hex": "#5c1e19", + "name": "栗棕", + "pinyin": "lizong" + }, + { + "CMYK": [0, 31, 24, 0], + "RGB": [244, 199, 186], + "hex": "#f4c7ba", + "name": "洋水仙红", + "pinyin": "yangshuixianhong" + }, + { + "CMYK": [0, 67, 55, 0], + "RGB": [241, 118, 102], + "hex": "#f17666", + "name": "谷鞘红", + "pinyin": "guqiaohong" + }, + { + "CMYK": [0, 77, 69, 0], + "RGB": [241, 86, 66], + "hex": "#f15642", + "name": "苹果红", + "pinyin": "pingguohong" + }, + { + "CMYK": [0, 84, 82, 0], + "RGB": [245, 57, 28], + "hex": "#f5391c", + "name": "铁水红", + "pinyin": "tieshuihong" + }, + { + "CMYK": [0, 76, 67, 0], + "RGB": [242, 90, 71], + "hex": "#f25a47", + "name": "桂红", + "pinyin": "guihong" + }, + { + "CMYK": [0, 84, 82, 0], + "RGB": [243, 59, 31], + "hex": "#f33b1f", + "name": "极光红", + "pinyin": "jiguanghong" + }, + { + "CMYK": [0, 38, 25, 0], + "RGB": [242, 185, 178], + "hex": "#f2b9b2", + "name": "粉红", + "pinyin": "fenhong" + }, + { + "CMYK": [0, 53, 36, 0], + "RGB": [241, 151, 144], + "hex": "#f19790", + "name": "舌红", + "pinyin": "shehong" + }, + { + "CMYK": [0, 76, 68, 0], + "RGB": [240, 90, 70], + "hex": "#f05a46", + "name": "曲红", + "pinyin": "quhong" + }, + { + "CMYK": [0, 83, 81, 0], + "RGB": [242, 62, 35], + "hex": "#f23e23", + "name": "红汞红", + "pinyin": "honggonghong" + }, + { + "CMYK": [0, 29, 16, 0], + "RGB": [242, 202, 201], + "hex": "#f2cac9", + "name": "淡绯", + "pinyin": "danfei" + }, + { + "CMYK": [0, 43, 24, 0], + "RGB": [239, 175, 173], + "hex": "#efafad", + "name": "无花果红", + "pinyin": "wuhuaguohong" + }, + { + "CMYK": [0, 57, 36, 0], + "RGB": [241, 144, 140], + "hex": "#f1908c", + "name": "榴子红", + "pinyin": "liuzihong" + }, + { + "CMYK": [0, 83, 81, 0], + "RGB": [240, 63, 36], + "hex": "#f03f24", + "name": "胭脂红", + "pinyin": "yanzhihong" + }, + { + "CMYK": [0, 50, 23, 0], + "RGB": [240, 161, 168], + "hex": "#f0a1a8", + "name": "合欢红", + "pinyin": "hehuanhong" + }, + { + "CMYK": [0, 56, 27, 0], + "RGB": [241, 147, 156], + "hex": "#f1939c", + "name": "春梅红", + "pinyin": "chunmeihong" + }, + { + "CMYK": [0, 65, 38, 0], + "RGB": [240, 124, 130], + "hex": "#f07c82", + "name": "香叶红", + "pinyin": "xiangyehong" + }, + { + "CMYK": [0, 80, 72, 0], + "RGB": [240, 74, 58], + "hex": "#f04a3a", + "name": "珊瑚红", + "pinyin": "shanhuhong" + }, + { + "CMYK": [0, 84, 82, 0], + "RGB": [241, 60, 34], + "hex": "#f13c22", + "name": "萝卜红", + "pinyin": "luobohong" + }, + { + "CMYK": [0, 65, 29, 0], + "RGB": [231, 124, 142], + "hex": "#e77c8e", + "name": "淡茜红", + "pinyin": "danqianhong" + }, + { + "CMYK": [0, 77, 49, 0], + "RGB": [237, 90, 101], + "hex": "#ed5a65", + "name": "艳红", + "pinyin": "yanhong" + }, + { + "CMYK": [0, 81, 66, 0], + "RGB": [237, 72, 69], + "hex": "#ed4845", + "name": "淡菽红", + "pinyin": "danshuhong" + }, + { + "CMYK": [0, 84, 76, 0], + "RGB": [237, 59, 47], + "hex": "#ed3b2f", + "name": "鱼鳃红", + "pinyin": "yusaihong" + }, + { + "CMYK": [0, 86, 82, 0], + "RGB": [237, 51, 33], + "hex": "#ed3321", + "name": "樱桃红", + "pinyin": "yingtaohong" + }, + { + "CMYK": [0, 82, 44, 0], + "RGB": [238, 72, 102], + "hex": "#ee4866", + "name": "淡蕊香红", + "pinyin": "danruixianghong" + }, + { + "CMYK": [0, 82, 46, 0], + "RGB": [238, 72, 99], + "hex": "#ee4863", + "name": "石竹红", + "pinyin": "shizhuhong" + }, + { + "CMYK": [0, 82, 50, 0], + "RGB": [239, 71, 93], + "hex": "#ef475d", + "name": "草茉莉红", + "pinyin": "caomolihong" + }, + { + "CMYK": [0, 84, 60, 0], + "RGB": [238, 63, 77], + "hex": "#ee3f4d", + "name": "茶花红", + "pinyin": "chahuahong" + }, + { + "CMYK": [0, 86, 74, 0], + "RGB": [237, 51, 51], + "hex": "#ed3333", + "name": "枸枢红", + "pinyin": "goushuhong" + }, + { + "CMYK": [0, 88, 81, 0], + "RGB": [236, 43, 36], + "hex": "#ec2b24", + "name": "秋海棠红", + "pinyin": "qiuhaitanghong" + }, + { + "CMYK": [0, 89, 84, 0], + "RGB": [235, 38, 26], + "hex": "#eb261a", + "name": "丽春红", + "pinyin": "lichunhong" + }, + { + "CMYK": [0, 90, 90, 0], + "RGB": [222, 42, 24], + "hex": "#de2a18", + "name": "夕阳红", + "pinyin": "xiyanghong" + }, + { + "CMYK": [0, 92, 95, 0], + "RGB": [212, 37, 23], + "hex": "#d42517", + "name": "鹤顶红", + "pinyin": "hedinghong" + }, + { + "CMYK": [19, 89, 85, 9], + "RGB": [171, 55, 47], + "hex": "#ab372f", + "name": "鹅血石红", + "pinyin": "exueshihong" + }, + { + "CMYK": [17, 98, 100, 8], + "RGB": [172, 31, 24], + "hex": "#ac1f18", + "name": "覆盆子红", + "pinyin": "fupenzihong" + }, + { + "CMYK": [36, 81, 64, 54], + "RGB": [93, 49, 49], + "hex": "#5d3131", + "name": "貂紫", + "pinyin": "diaozi" + }, + { + "CMYK": [35, 94, 77, 53], + "RGB": [92, 34, 35], + "hex": "#5c2223", + "name": "暗玉紫", + "pinyin": "anyuzi" + }, + { + "CMYK": [35, 100, 85, 54], + "RGB": [90, 25, 27], + "hex": "#5a191b", + "name": "栗紫", + "pinyin": "lizi" + }, + { + "CMYK": [35, 100, 80, 54], + "RGB": [90, 18, 22], + "hex": "#5a1216", + "name": "葡萄酱紫", + "pinyin": "putaojiangzi" + }, + { + "CMYK": [0, 49, 27, 0], + "RGB": [238, 162, 164], + "hex": "#eea2a4", + "name": "牡丹粉红", + "pinyin": "mudanfenhong" + }, + { + "CMYK": [0, 78, 44, 0], + "RGB": [237, 85, 106], + "hex": "#ed556a", + "name": "山茶红", + "pinyin": "shanchahong" + }, + { + "CMYK": [0, 86, 55, 0], + "RGB": [240, 55, 82], + "hex": "#f03752", + "name": "海棠红", + "pinyin": "haitanghong" + }, + { + "CMYK": [13, 83, 62, 3], + "RGB": [192, 72, 81], + "hex": "#c04851", + "name": "玉红", + "pinyin": "yuhong" + }, + { + "CMYK": [11, 93, 77, 2], + "RGB": [192, 44, 56], + "hex": "#c02c38", + "name": "高粱红", + "pinyin": "gaolianghong" + }, + { + "CMYK": [22, 76, 54, 12], + "RGB": [167, 83, 90], + "hex": "#a7535a", + "name": "满江红", + "pinyin": "manjianghong" + }, + { + "CMYK": [28, 100, 86, 33], + "RGB": [124, 24, 35], + "hex": "#7c1823", + "name": "枣红", + "pinyin": "zaohong" + }, + { + "CMYK": [39, 92, 67, 64], + "RGB": [76, 31, 36], + "hex": "#4c1f24", + "name": "葡萄紫", + "pinyin": "putaozi" + }, + { + "CMYK": [39, 100, 79, 63], + "RGB": [77, 16, 24], + "hex": "#4d1018", + "name": "酱紫", + "pinyin": "jiangzi" + }, + { + "CMYK": [0, 89, 62, 0], + "RGB": [238, 39, 70], + "hex": "#ee2746", + "name": "淡曙红", + "pinyin": "danshuhong" + }, + { + "CMYK": [0, 93, 76, 0], + "RGB": [222, 28, 49], + "hex": "#de1c31", + "name": "唐菖蒲红", + "pinyin": "tangchangpuhong" + }, + { + "CMYK": [1, 95, 82, 0], + "RGB": [209, 26, 45], + "hex": "#d11a2d", + "name": "鹅冠红", + "pinyin": "eguanhong" + }, + { + "CMYK": [13, 76, 50, 2], + "RGB": [196, 90, 101], + "hex": "#c45a65", + "name": "莓红", + "pinyin": "meihong" + }, + { + "CMYK": [10, 96, 82, 2], + "RGB": [194, 31, 48], + "hex": "#c21f30", + "name": "枫叶红", + "pinyin": "fengyehong" + }, + { + "CMYK": [19, 99, 86, 11], + "RGB": [166, 27, 41], + "hex": "#a61b29", + "name": "苋菜红", + "pinyin": "xiancaihong" + }, + { + "CMYK": [29, 73, 51, 28], + "RGB": [137, 78, 84], + "hex": "#894e54", + "name": "烟红", + "pinyin": "yanhong" + }, + { + "CMYK": [27, 98, 79, 30], + "RGB": [130, 32, 43], + "hex": "#82202b", + "name": "暗紫苑红", + "pinyin": "anziyuanhong" + }, + { + "CMYK": [27, 100, 90, 29], + "RGB": [130, 17, 31], + "hex": "#82111f", + "name": "殷红", + "pinyin": "yanhong" + }, + { + "CMYK": [36, 95, 71, 59], + "RGB": [84, 30, 36], + "hex": "#541e24", + "name": "猪肝紫", + "pinyin": "zhuganzi" + }, + { + "CMYK": [38, 100, 81, 61], + "RGB": [80, 10, 22], + "hex": "#500a16", + "name": "金鱼紫", + "pinyin": "jinyuzi" + }, + { + "CMYK": [1, 11, 9, 0], + "RGB": [248, 235, 230], + "hex": "#f8ebe6", + "name": "草珠红", + "pinyin": "caozhuhong" + }, + { + "CMYK": [0, 68, 21, 0], + "RGB": [236, 118, 150], + "hex": "#ec7696", + "name": "淡绛红", + "pinyin": "danjianghong" + }, + { + "CMYK": [0, 86, 30, 0], + "RGB": [239, 52, 115], + "hex": "#ef3473", + "name": "品红", + "pinyin": "pinhong" + }, + { + "CMYK": [0, 69, 22, 0], + "RGB": [234, 114, 147], + "hex": "#ea7293", + "name": "凤仙花红", + "pinyin": "fengxianhuahong" + }, + { + "CMYK": [0, 52, 18, 0], + "RGB": [236, 155, 173], + "hex": "#ec9bad", + "name": "粉团花红", + "pinyin": "fentuanhuahong" + }, + { + "CMYK": [0, 80, 28, 0], + "RGB": [235, 80, 126], + "hex": "#eb507e", + "name": "夹竹桃红", + "pinyin": "jiazhutaohong" + }, + { + "CMYK": [0, 88, 36, 0], + "RGB": [237, 47, 106], + "hex": "#ed2f6a", + "name": "榲桲红", + "pinyin": "wenpohong" + }, + { + "CMYK": [0, 39, 14, 0], + "RGB": [238, 184, 195], + "hex": "#eeb8c3", + "name": "姜红", + "pinyin": "jianghong" + }, + { + "CMYK": [0, 80, 27, 0], + "RGB": [234, 81, 127], + "hex": "#ea517f", + "name": "莲瓣红", + "pinyin": "lianbanhong" + }, + { + "CMYK": [0, 33, 11, 0], + "RGB": [241, 196, 205], + "hex": "#f1c4cd", + "name": "水红", + "pinyin": "shuihong" + }, + { + "CMYK": [0, 60, 18, 0], + "RGB": [236, 138, 164], + "hex": "#ec8aa4", + "name": "报春红", + "pinyin": "baochunhong" + }, + { + "CMYK": [8, 78, 35, 1], + "RGB": [206, 87, 109], + "hex": "#ce5777", + "name": "月季红", + "pinyin": "yuejihong" + }, + { + "CMYK": [0, 52, 15, 0], + "RGB": [237, 157, 178], + "hex": "#ed9db2", + "name": "豇豆红", + "pinyin": "jiangdouhong" + }, + { + "CMYK": [0, 63, 18, 0], + "RGB": [239, 130, 160], + "hex": "#ef82a0", + "name": "霞光红", + "pinyin": "xiaguanghong" + }, + { + "CMYK": [0, 85, 33, 0], + "RGB": [235, 60, 112], + "hex": "#eb3c70", + "name": "松叶牡丹红", + "pinyin": "songyemudanhong" + }, + { + "CMYK": [0, 88, 40, 0], + "RGB": [236, 44, 100], + "hex": "#ec2c64", + "name": "喜蛋红", + "pinyin": "xidanhong" + }, + { + "CMYK": [5, 38, 20, 0], + "RGB": [227, 180, 184], + "hex": "#e3b4b8", + "name": "鼠鼻红", + "pinyin": "shubihong" + }, + { + "CMYK": [5, 96, 73, 1], + "RGB": [204, 22, 58], + "hex": "#cc163a", + "name": "尖晶玉红", + "pinyin": "jianjingyuhong" + }, + { + "CMYK": [16, 61, 34, 4], + "RGB": [194, 124, 136], + "hex": "#c27c88", + "name": "山黎豆红", + "pinyin": "shanlidouhong" + }, + { + "CMYK": [13, 90, 56, 3], + "RGB": [191, 53, 83], + "hex": "#bf3553", + "name": "锦葵红", + "pinyin": "jinkuihong" + }, + { + "CMYK": [41, 64, 44, 36], + "RGB": [115, 87, 92], + "hex": "#73575c", + "name": "鼠背灰", + "pinyin": "shubeihui" + }, + { + "CMYK": [33, 100, 75, 49], + "RGB": [98, 22, 36], + "hex": "#621624", + "name": "甘蔗紫", + "pinyin": "ganzhezi" + }, + { + "CMYK": [32, 100, 84, 49], + "RGB": [99, 7, 28], + "hex": "#63071c", + "name": "石竹紫", + "pinyin": "shizhuzi" + }, + { + "CMYK": [57, 72, 54, 74], + "RGB": [54, 40, 43], + "hex": "#36282b", + "name": "苍蝇灰", + "pinyin": "cangyinghui" + }, + { + "CMYK": [52, 88, 58, 81], + "RGB": [48, 22, 28], + "hex": "#30161c", + "name": "卵石紫", + "pinyin": "luanshizi" + }, + { + "CMYK": [56, 88, 62, 84], + "RGB": [43, 18, 22], + "hex": "#2b1216", + "name": "李紫", + "pinyin": "lizi" + }, + { + "CMYK": [58, 90, 63, 83], + "RGB": [45, 12, 19], + "hex": "#2d0c13", + "name": "茄皮紫", + "pinyin": "qiepizi" + }, + { + "CMYK": [0, 76, 16, 0], + "RGB": [206, 94, 138], + "hex": "#ce5e8a", + "name": "吊钟花红", + "pinyin": "diaozhonghuahong" + }, + { + "CMYK": [0, 81, 18, 0], + "RGB": [236, 78, 138], + "hex": "#ec4e8a", + "name": "兔眼红", + "pinyin": "tuyanhong" + }, + { + "CMYK": [0, 87, 24, 0], + "RGB": [238, 44, 121], + "hex": "#ee2c79", + "name": "紫荆红", + "pinyin": "zijinghong" + }, + { + "CMYK": [24, 99, 52, 19], + "RGB": [149, 28, 72], + "hex": "#951c48", + "name": "菜头紫", + "pinyin": "caitouzi" + }, + { + "CMYK": [34, 97, 54, 50], + "RGB": [98, 29, 52], + "hex": "#621d34", + "name": "鹞冠紫", + "pinyin": "yaoguanzi" + }, + { + "CMYK": [33, 100, 58, 60], + "RGB": [98, 16, 46], + "hex": "#62102e", + "name": "葡萄酒红", + "pinyin": "putaojiuhong" + }, + { + "CMYK": [53, 81, 50, 74], + "RGB": [56, 33, 41], + "hex": "#382129", + "name": "磨石紫", + "pinyin": "moshizi" + }, + { + "CMYK": [48, 90, 50, 76], + "RGB": [56, 25, 36], + "hex": "#381924", + "name": "檀紫", + "pinyin": "tanzi" + }, + { + "CMYK": [50, 91, 54, 79], + "RGB": [51, 20, 30], + "hex": "#33141e", + "name": "火鹅紫", + "pinyin": "huoezi" + }, + { + "CMYK": [53, 92, 55, 81], + "RGB": [49, 15, 27], + "hex": "#310f1b", + "name": "墨紫", + "pinyin": "mozi" + }, + { + "CMYK": [0, 48, 15, 0], + "RGB": [238, 166, 183], + "hex": "#eea6b7", + "name": "晶红", + "pinyin": "jinghong" + }, + { + "CMYK": [0, 82, 16, 0], + "RGB": [239, 73, 139], + "hex": "#ef498b", + "name": "扁豆花红", + "pinyin": "biandouhuahong" + }, + { + "CMYK": [2, 66, 22, 0], + "RGB": [222, 120, 151], + "hex": "#de7897", + "name": "白芨红", + "pinyin": "baijihong" + }, + { + "CMYK": [0, 85, 24, 0], + "RGB": [222, 63, 124], + "hex": "#de3f7c", + "name": "嫩菱红", + "pinyin": "nenlinghong" + }, + { + "CMYK": [5, 87, 30, 1], + "RGB": [209, 60, 116], + "hex": "#d13c74", + "name": "菠根红", + "pinyin": "bogenhong" + }, + { + "CMYK": [15, 68, 28, 2], + "RGB": [197, 112, 139], + "hex": "#c5708b", + "name": "酢酱草红", + "pinyin": "cujiangcaohong" + }, + { + "CMYK": [22, 83, 34, 11], + "RGB": [168, 69, 107], + "hex": "#a8456b", + "name": "洋葱紫", + "pinyin": "yangcongzi" + }, + { + "CMYK": [40, 92, 47, 64], + "RGB": [75, 30, 47], + "hex": "#4b1e2f", + "name": "海象紫", + "pinyin": "haixiangzi" + }, + { + "CMYK": [41, 97, 49, 68], + "RGB": [70, 22, 41], + "hex": "#461629", + "name": "绀紫", + "pinyin": "ganzi" + }, + { + "CMYK": [42, 99, 51, 69], + "RGB": [68, 14, 37], + "hex": "#440e25", + "name": "古铜紫", + "pinyin": "gutongzi" + }, + { + "CMYK": [0, 30, 12, 0], + "RGB": [240, 201, 207], + "hex": "#f0c9cf", + "name": "石蕊红", + "pinyin": "shiruihong" + }, + { + "CMYK": [0, 50, 16, 0], + "RGB": [235, 160, 179], + "hex": "#eba0b3", + "name": "芍药耕红", + "pinyin": "shaoyaogenghong" + }, + { + "CMYK": [0, 88, 23, 0], + "RGB": [236, 45, 122], + "hex": "#ec2d7a", + "name": "藏花红", + "pinyin": "canghuahong" + }, + { + "CMYK": [0, 71, 18, 0], + "RGB": [225, 108, 150], + "hex": "#e16c96", + "name": "初荷红", + "pinyin": "chuhehong" + }, + { + "CMYK": [6, 13, 7, 0], + "RGB": [237, 227, 231], + "hex": "#ede3e7", + "name": "马鞭草紫", + "pinyin": "mabiancaozi" + }, + { + "CMYK": [7, 20, 8, 0], + "RGB": [233, 215, 223], + "hex": "#e9d7df", + "name": "丁香淡紫", + "pinyin": "dingxiangdanzi" + }, + { + "CMYK": [7, 79, 18, 0], + "RGB": [210, 86, 140], + "hex": "#d2568c", + "name": "丹紫红", + "pinyin": "danzihong" + }, + { + "CMYK": [4, 89, 21, 0], + "RGB": [210, 53, 125], + "hex": "#d2357d", + "name": "玫瑰红", + "pinyin": "meiguihong" + }, + { + "CMYK": [19, 27, 9, 0], + "RGB": [209, 194, 211], + "hex": "#d1c2d3", + "name": "淡牵牛紫", + "pinyin": "danqianniuzi" + }, + { + "CMYK": [21, 37, 12, 0], + "RGB": [200, 173, 196], + "hex": "#c8adc4", + "name": "凤信紫", + "pinyin": "fengxinzi" + }, + { + "CMYK": [23, 53, 14, 1], + "RGB": [192, 142, 175], + "hex": "#c08eaf", + "name": "萝兰紫", + "pinyin": "luolanzi" + }, + { + "CMYK": [18, 91, 18, 2], + "RGB": [186, 47, 123], + "hex": "#ba2f7b", + "name": "玫瑰紫", + "pinyin": "meiguizi" + }, + { + "CMYK": [58, 56, 17, 2], + "RGB": [128, 118, 163], + "hex": "#8076a3", + "name": "藤萝紫", + "pinyin": "tengluozi" + }, + { + "CMYK": [57, 62, 16, 2], + "RGB": [128, 109, 158], + "hex": "#806d9e", + "name": "槿紫", + "pinyin": "jinzi" + }, + { + "CMYK": [56, 72, 15, 1], + "RGB": [129, 92, 148], + "hex": "#815c94", + "name": "蕈紫", + "pinyin": "xunzi" + }, + { + "CMYK": [54, 89, 12, 1], + "RGB": [129, 60, 133], + "hex": "#813c85", + "name": "桔梗紫", + "pinyin": "jiegengzi" + }, + { + "CMYK": [52, 100, 17, 7], + "RGB": [126, 22, 113], + "hex": "#7e1671", + "name": "魏紫", + "pinyin": "weizi" + }, + { + "CMYK": [3, 26, 10, 0], + "RGB": [233, 204, 211], + "hex": "#e9ccd3", + "name": "芝兰紫", + "pinyin": "zhilanzi" + }, + { + "CMYK": [10, 67, 12, 0], + "RGB": [210, 118, 163], + "hex": "#d276a3", + "name": "菱锰红", + "pinyin": "lingmenghong" + }, + { + "CMYK": [11, 97, 10, 0], + "RGB": [204, 85, 149], + "hex": "#cc5595", + "name": "龙须红", + "pinyin": "longxuhong" + }, + { + "CMYK": [8, 22, 12, 0], + "RGB": [230, 210, 213], + "hex": "#e6d2d5", + "name": "蓟粉红", + "pinyin": "jifenhong" + }, + { + "CMYK": [16, 79, 14, 1], + "RGB": [195, 86, 145], + "hex": "#c35691", + "name": "电气石红", + "pinyin": "dianqishihong" + }, + { + "CMYK": [19, 68, 18, 1], + "RGB": [192, 111, 152], + "hex": "#c06f98", + "name": "樱草紫", + "pinyin": "yingcaozi" + }, + { + "CMYK": [25, 31, 26, 5], + "RGB": [189, 174, 173], + "hex": "#bdaead", + "name": "芦穗灰", + "pinyin": "lusuihui" + }, + { + "CMYK": [26, 43, 26, 6], + "RGB": [181, 152, 161], + "hex": "#b598a1", + "name": "隐红灰", + "pinyin": "yinhonghui" + }, + { + "CMYK": [27, 97, 27, 14], + "RGB": [155, 30, 100], + "hex": "#9b1e64", + "name": "苋菜紫", + "pinyin": "xiancaizi" + }, + { + "CMYK": [39, 53, 38, 25], + "RGB": [133, 109, 114], + "hex": "#856d72", + "name": "芦灰", + "pinyin": "luhui" + }, + { + "CMYK": [49, 71, 49, 58], + "RGB": [79, 56, 62], + "hex": "#4f383e", + "name": "暮云灰", + "pinyin": "muyunhui" + }, + { + "CMYK": [49, 82, 46, 63], + "RGB": [72, 41, 54], + "hex": "#482936", + "name": "斑鸠灰", + "pinyin": "banjiuhui" + }, + { + "CMYK": [4, 11, 9, 0], + "RGB": [242, 231, 229], + "hex": "#f2e7e5", + "name": "淡藤萝紫", + "pinyin": "dantengluozi" + }, + { + "CMYK": [10, 27, 11, 0], + "RGB": [224, 200, 209], + "hex": "#e0c8d1", + "name": "淡青紫", + "pinyin": "danqingzi" + }, + { + "CMYK": [24, 58, 15, 1], + "RGB": [188, 132, 168], + "hex": "#bc84a8", + "name": "青蛤壳紫", + "pinyin": "qinghakezi" + }, + { + "CMYK": [31, 71, 15, 1], + "RGB": [173, 101, 152], + "hex": "#ad6598", + "name": "豆蔻紫", + "pinyin": "doukouzi" + }, + { + "CMYK": [35, 75, 18, 2], + "RGB": [163, 92, 143], + "hex": "#a35c8f", + "name": "扁豆紫", + "pinyin": "biandouzi" + }, + { + "CMYK": [39, 91, 15, 3], + "RGB": [152, 54, 128], + "hex": "#983680", + "name": "芥花紫", + "pinyin": "jiehuazi" + }, + { + "CMYK": [43, 97, 19, 8], + "RGB": [139, 38, 113], + "hex": "#8b2671", + "name": "青莲", + "pinyin": "qinglian" + }, + { + "CMYK": [44, 85, 24, 10], + "RGB": [137, 66, 118], + "hex": "#894276", + "name": "芓紫", + "pinyin": "zizi" + }, + { + "CMYK": [45, 99, 24, 16], + "RGB": [126, 32, 101], + "hex": "#7e2065", + "name": "葛巾紫", + "pinyin": "gejinzi" + }, + { + "CMYK": [49, 100, 29, 32], + "RGB": [104, 23, 82], + "hex": "#681752", + "name": "牵牛紫", + "pinyin": "qianniuzi" + }, + { + "CMYK": [53, 75, 41, 41], + "RGB": [93, 63, 81], + "hex": "#5d3f51", + "name": "紫灰", + "pinyin": "zihui" + }, + { + "CMYK": [55, 87, 41, 52], + "RGB": [78, 42, 64], + "hex": "#4e2a40", + "name": "龙睛鱼紫", + "pinyin": "longjingyuzi" + }, + { + "CMYK": [58, 96, 40, 61], + "RGB": [65, 28, 53], + "hex": "#411c35", + "name": "荸荠紫", + "pinyin": "biqizi" + }, + { + "CMYK": [63, 74, 52, 70], + "RGB": [54, 41, 47], + "hex": "#36292f", + "name": "古鼎灰", + "pinyin": "gudinghui" + }, + { + "CMYK": [81, 87, 54, 84], + "RGB": [30, 19, 29], + "hex": "#1e131d", + "name": "乌梅紫", + "pinyin": "wumeizi" + }, + { + "CMYK": [83, 87, 55, 86], + "RGB": [28, 13, 26], + "hex": "#1c0d1a", + "name": "深牵牛紫", + "pinyin": "shenqianniuzi" + }, + { + "CMYK": [7, 5, 7, 0], + "RGB": [241, 240, 237], + "hex": "#f1f0ed", + "name": "银白", + "pinyin": "yinbai" + }, + { + "CMYK": [13, 10, 9, 0], + "RGB": [226, 225, 228], + "hex": "#e2e1e4", + "name": "芡食白", + "pinyin": "qianshibai" + }, + { + "CMYK": [23, 18, 12, 1], + "RGB": [204, 204, 214], + "hex": "#ccccd6", + "name": "远山紫", + "pinyin": "yuanshanzi" + }, + { + "CMYK": [39, 31, 17, 2], + "RGB": [167, 168, 189], + "hex": "#a7a8bd", + "name": "淡蓝紫", + "pinyin": "danlanzi" + }, + { + "CMYK": [74, 64, 14, 1], + "RGB": [97, 100, 159], + "hex": "#61649f", + "name": "山梗紫", + "pinyin": "shangengzi" + }, + { + "CMYK": [63, 53, 22, 5], + "RGB": [116, 117, 155], + "hex": "#74759b", + "name": "螺甸紫", + "pinyin": "luodianzi" + }, + { + "CMYK": [21, 17, 19, 1], + "RGB": [207, 204, 201], + "hex": "#cfccc9", + "name": "玛瑙灰", + "pinyin": "manaohui" + }, + { + "CMYK": [80, 73, 21, 6], + "RGB": [82, 82, 136], + "hex": "#525288", + "name": "野菊紫", + "pinyin": "yejuzi" + }, + { + "CMYK": [100, 93, 21, 5], + "RGB": [46, 49, 124], + "hex": "#2e317c", + "name": "满天星紫", + "pinyin": "mantianxingzi" + }, + { + "CMYK": [48, 45, 40, 26], + "RGB": [122, 115, 116], + "hex": "#7a7374", + "name": "锌灰", + "pinyin": "xinhui" + }, + { + "CMYK": [91, 84, 40, 43], + "RGB": [48, 47, 75], + "hex": "#302f4b", + "name": "野葡萄紫", + "pinyin": "yeputaozi" + }, + { + "CMYK": [70, 69, 49, 56], + "RGB": [62, 56, 65], + "hex": "#3e3841", + "name": "剑锋紫", + "pinyin": "jianfengzi" + }, + { + "CMYK": [79, 74, 49, 60], + "RGB": [50, 47, 59], + "hex": "#322f3b", + "name": "龙葵紫", + "pinyin": "longkuizi" + }, + { + "CMYK": [90, 84, 50, 69], + "RGB": [34, 32, 46], + "hex": "#22202e", + "name": "暗龙胆紫", + "pinyin": "anlongdanzi" + }, + { + "CMYK": [98, 93, 48, 73], + "RGB": [31, 32, 64], + "hex": "#1f2040", + "name": "晶石紫", + "pinyin": "jingshizi" + }, + { + "CMYK": [100, 94, 52, 77], + "RGB": [19, 17, 36], + "hex": "#131124", + "name": "暗蓝紫", + "pinyin": "anlanzi" + }, + { + "CMYK": [95, 46, 10, 1], + "RGB": [39, 117, 182], + "hex": "#2775b6", + "name": "景泰蓝", + "pinyin": "jingtailan" + }, + { + "CMYK": [96, 47, 11, 1], + "RGB": [36, 116, 181], + "hex": "#2474b5", + "name": "尼罗蓝", + "pinyin": "niluolan" + }, + { + "CMYK": [25, 6, 10, 0], + "RGB": [208, 223, 230], + "hex": "#d0dfe6", + "name": "远天蓝", + "pinyin": "yuantianlan" + }, + { + "CMYK": [53, 19, 15, 1], + "RGB": [147, 181, 207], + "hex": "#93b5cf", + "name": "星蓝", + "pinyin": "xinglan" + }, + { + "CMYK": [74, 27, 16, 2], + "RGB": [97, 154, 195], + "hex": "#619ac3", + "name": "羽扇豆蓝", + "pinyin": "yushandoulan" + }, + { + "CMYK": [95, 45, 10, 1], + "RGB": [35, 118, 183], + "hex": "#2376b7", + "name": "花青", + "pinyin": "huaqing" + }, + { + "CMYK": [78, 27, 17, 2], + "RGB": [86, 152, 195], + "hex": "#5698c3", + "name": "睛蓝", + "pinyin": "jinglan" + }, + { + "CMYK": [99, 44, 10, 1], + "RGB": [33, 119, 184], + "hex": "#2177b8", + "name": "虹蓝", + "pinyin": "honglan" + }, + { + "CMYK": [43, 4, 16, 0], + "RGB": [176, 213, 223], + "hex": "#b0d5df", + "name": "湖水蓝", + "pinyin": "hushuilan" + }, + { + "CMYK": [59, 12, 19, 0], + "RGB": [138, 188, 209], + "hex": "#8abcd1", + "name": "秋波蓝", + "pinyin": "qiubolan" + }, + { + "CMYK": [73, 17, 20, 1], + "RGB": [102, 169, 201], + "hex": "#66a9c9", + "name": "涧石蓝", + "pinyin": "jianshilan" + }, + { + "CMYK": [93, 36, 15, 2], + "RGB": [41, 131, 187], + "hex": "#2983bb", + "name": "潮蓝", + "pinyin": "chaolan" + }, + { + "CMYK": [99, 48, 11, 1], + "RGB": [23, 114, 180], + "hex": "#1772b4", + "name": "群青", + "pinyin": "qunqing" + }, + { + "CMYK": [74, 2, 24, 0], + "RGB": [99, 187, 208], + "hex": "#63bbd0", + "name": "霁青", + "pinyin": "jiqing" + }, + { + "CMYK": [77, 7, 24, 0], + "RGB": [92, 179, 204], + "hex": "#5cb3cc", + "name": "碧青", + "pinyin": "biqing" + }, + { + "CMYK": [94, 32, 17, 3], + "RGB": [36, 134, 185], + "hex": "#2486b9", + "name": "宝石蓝", + "pinyin": "baoshilan" + }, + { + "CMYK": [98, 43, 14, 2], + "RGB": [22, 119, 179], + "hex": "#1677b3", + "name": "天蓝", + "pinyin": "tianlan" + }, + { + "CMYK": [100, 52, 11, 1], + "RGB": [18, 107, 174], + "hex": "#126bae", + "name": "柏林蓝", + "pinyin": "bolinlan" + }, + { + "CMYK": [92, 10, 25, 1], + "RGB": [34, 162, 195], + "hex": "#22a2c3", + "name": "海青", + "pinyin": "haiqing" + }, + { + "CMYK": [94, 16, 23, 3], + "RGB": [26, 148, 188], + "hex": "#1a94bc", + "name": "钴蓝", + "pinyin": "gulan" + }, + { + "CMYK": [95, 25, 20, 4], + "RGB": [21, 139, 184], + "hex": "#158bb8", + "name": "鸢尾蓝", + "pinyin": "yuanweilan" + }, + { + "CMYK": [98, 42, 16, 3], + "RGB": [17, 119, 176], + "hex": "#1177b0", + "name": "牵牛花蓝", + "pinyin": "qianniuhualan" + }, + { + "CMYK": [100, 65, 11, 1], + "RGB": [15, 89, 164], + "hex": "#0f59a4", + "name": "飞燕草蓝", + "pinyin": "feiyancaolan" + }, + { + "CMYK": [95, 47, 14, 2], + "RGB": [43, 115, 175], + "hex": "#2b73af", + "name": "品蓝", + "pinyin": "pinlan" + }, + { + "CMYK": [24, 14, 16, 1], + "RGB": [205, 209, 211], + "hex": "#cdd1d3", + "name": "银鱼白", + "pinyin": "yinyubai" + }, + { + "CMYK": [93, 49, 17, 3], + "RGB": [49, 112, 167], + "hex": "#3170a7", + "name": "安安蓝", + "pinyin": "ananlan" + }, + { + "CMYK": [64, 52, 39, 28], + "RGB": [94, 97, 109], + "hex": "#5e616d", + "name": "鱼尾灰", + "pinyin": "yuweihui" + }, + { + "CMYK": [78, 60, 40, 31], + "RGB": [71, 81, 100], + "hex": "#475164", + "name": "鲸鱼灰", + "pinyin": "jingyuhui" + }, + { + "CMYK": [69, 64, 52, 59], + "RGB": [255, 254, 250], + "hex": "#fffefa", + "name": "海参灰", + "pinyin": "haishenhui" + }, + { + "CMYK": [76, 70, 51, 60], + "RGB": [53, 51, 60], + "hex": "#35333c", + "name": "沙鱼灰", + "pinyin": "shayuhui" + }, + { + "CMYK": [100, 89, 54, 79], + "RGB": [15, 20, 35], + "hex": "#0f1423", + "name": "钢蓝", + "pinyin": "ganglan" + }, + { + "CMYK": [35, 13, 13, 0], + "RGB": [186, 204, 217], + "hex": "#baccd9", + "name": "云水蓝", + "pinyin": "yunshuilan" + }, + { + "CMYK": [55, 20, 18, 1], + "RGB": [143, 178, 201], + "hex": "#8fb2c9", + "name": "晴山蓝", + "pinyin": "qingshanlan" + }, + { + "CMYK": [100, 60, 8, 1], + "RGB": [22, 97, 171], + "hex": "#1661ab", + "name": "靛青", + "pinyin": "dianqing" + }, + { + "CMYK": [29, 16, 17, 1], + "RGB": [196, 203, 207], + "hex": "#c4cbcf", + "name": "大理石灰", + "pinyin": "dalishihui" + }, + { + "CMYK": [100, 67, 16, 3], + "RGB": [21, 85, 154], + "hex": "#15559a", + "name": "海涛蓝", + "pinyin": "haitaolan" + }, + { + "CMYK": [81, 41, 24, 8], + "RGB": [78, 124, 161], + "hex": "#4e7ca1", + "name": "蝶翅蓝", + "pinyin": "diechilan" + }, + { + "CMYK": [93, 50, 21, 6], + "RGB": [52, 108, 156], + "hex": "#346c9c", + "name": "海军蓝", + "pinyin": "haijunlan" + }, + { + "CMYK": [77, 68, 54, 66], + "RGB": [47, 47, 53], + "hex": "#2f2f35", + "name": "水牛灰", + "pinyin": "shuiniuhui" + }, + { + "CMYK": [80, 70, 53, 65], + "RGB": [45, 46, 54], + "hex": "#2d2e36", + "name": "牛角灰", + "pinyin": "niujiaohui" + }, + { + "CMYK": [100, 86, 54, 78], + "RGB": [19, 24, 36], + "hex": "#131824", + "name": "燕颔蓝", + "pinyin": "yanhanlan" + }, + { + "CMYK": [21, 6, 10, 0], + "RGB": [216, 227, 231], + "hex": "#d8e3e7", + "name": "云峰白", + "pinyin": "yunfengbai" + }, + { + "CMYK": [32, 8, 13, 0], + "RGB": [195, 215, 223], + "hex": "#c3d7df", + "name": "井天蓝", + "pinyin": "jingtianlan" + }, + { + "CMYK": [91, 24, 22, 4], + "RGB": [47, 144, 185], + "hex": "#2f90b9", + "name": "云山蓝", + "pinyin": "yunshanlan" + }, + { + "CMYK": [96, 34, 18, 4], + "RGB": [23, 129, 181], + "hex": "#1781b5", + "name": "釉蓝", + "pinyin": "youlan" + }, + { + "CMYK": [28, 12, 17, 0], + "RGB": [199, 210, 212], + "hex": "#c7d2d4", + "name": "鸥蓝", + "pinyin": "oulan" + }, + { + "CMYK": [100, 53, 21, 6], + "RGB": [17, 101, 154], + "hex": "#11659a", + "name": "搪磁蓝", + "pinyin": "tangcilan" + }, + { + "CMYK": [29, 18, 21, 2], + "RGB": [192, 196, 195], + "hex": "#c0c4c3", + "name": "月影白", + "pinyin": "yueyingbai" + }, + { + "CMYK": [36, 20, 23, 2], + "RGB": [178, 187, 190], + "hex": "#b2bbbe", + "name": "星灰", + "pinyin": "xinghui" + }, + { + "CMYK": [70, 38, 36, 18], + "RGB": [94, 121, 135], + "hex": "#5e7987", + "name": "淡蓝灰", + "pinyin": "danlanhui" + }, + { + "CMYK": [100, 68, 32, 20], + "RGB": [20, 74, 116], + "hex": "#144a74", + "name": "鷃蓝", + "pinyin": "yanlan" + }, + { + "CMYK": [55, 40, 40, 23], + "RGB": [116, 120, 122], + "hex": "#74787a", + "name": "嫩灰", + "pinyin": "nenhui" + }, + { + "CMYK": [77, 50, 41, 31], + "RGB": [73, 92, 105], + "hex": "#495c69", + "name": "战舰灰", + "pinyin": "zhanjianhui" + }, + { + "CMYK": [67, 57, 49, 49], + "RGB": [71, 72, 76], + "hex": "#47484c", + "name": "瓦罐灰", + "pinyin": "waguanhui" + }, + { + "CMYK": [87, 69, 51, 58], + "RGB": [43, 51, 62], + "hex": "#2b333e", + "name": "青灰", + "pinyin": "qinghui" + }, + { + "CMYK": [100, 77, 50, 62], + "RGB": [28, 41, 56], + "hex": "#1c2938", + "name": "鸽蓝", + "pinyin": "gelan" + }, + { + "CMYK": [100, 82, 51, 64], + "RGB": [20, 35, 52], + "hex": "#142334", + "name": "钢青", + "pinyin": "gangqing" + }, + { + "CMYK": [100, 84, 51, 68], + "RGB": [16, 31, 48], + "hex": "#101f30", + "name": "暗蓝", + "pinyin": "anlan" + }, + { + "CMYK": [11, 0, 8, 0], + "RGB": [238, 247, 242], + "hex": "#eef7f2", + "name": "月白", + "pinyin": "yuebai" + }, + { + "CMYK": [33, 0, 14, 0], + "RGB": [198, 230, 232], + "hex": "#c6e6e8", + "name": "海天蓝", + "pinyin": "haitianlan" + }, + { + "CMYK": [57, 0, 22, 0], + "RGB": [147, 213, 220], + "hex": "#93d5dc", + "name": "清水蓝", + "pinyin": "qingshuilan" + }, + { + "CMYK": [79, 0, 27, 0], + "RGB": [81, 196, 211], + "hex": "#51c4d3", + "name": "瀑布蓝", + "pinyin": "pubulan" + }, + { + "CMYK": [89, 0, 29, 0], + "RGB": [41, 183, 203], + "hex": "#29b7cb", + "name": "蔚蓝", + "pinyin": "weilan" + }, + { + "CMYK": [92, 0, 28, 0], + "RGB": [14, 176, 201], + "hex": "#0eb0c9", + "name": "孔雀蓝", + "pinyin": "kongquelan" + }, + { + "CMYK": [93, 0, 31, 0], + "RGB": [16, 174, 194], + "hex": "#10aec2", + "name": "甸子蓝", + "pinyin": "dianzilan" + }, + { + "CMYK": [78, 36, 0, 0], + "RGB": [87, 195, 194], + "hex": "#57c3c2", + "name": "石绿", + "pinyin": "shilv" + }, + { + "CMYK": [40, 0, 30, 0], + "RGB": [185, 222, 201], + "hex": "#b9dec9", + "name": "竹篁绿", + "pinyin": "zhuhuanglv" + }, + { + "CMYK": [64, 0, 46, 0], + "RGB": [131, 203, 172], + "hex": "#83cbac", + "name": "粉绿", + "pinyin": "fenlv" + }, + { + "CMYK": [95, 0, 52, 0], + "RGB": [18, 170, 156], + "hex": "#12aa9c", + "name": "美蝶绿", + "pinyin": "meidielv" + }, + { + "CMYK": [75, 0, 61, 0], + "RGB": [102, 193, 140], + "hex": "#66c18c", + "name": "毛绿", + "pinyin": "maolv" + }, + { + "CMYK": [78, 0, 62, 0], + "RGB": [93, 190, 138], + "hex": "#5dbe8a", + "name": "蔻梢绿", + "pinyin": "koushaolv" + }, + { + "CMYK": [81, 0, 62, 0], + "RGB": [85, 187, 138], + "hex": "#55bb8a", + "name": "麦苗绿", + "pinyin": "maimiaolv" + }, + { + "CMYK": [86, 0, 63, 0], + "RGB": [69, 183, 135], + "hex": "#45b787", + "name": "蛙绿", + "pinyin": "walv" + }, + { + "CMYK": [92, 0, 64, 0], + "RGB": [43, 174, 133], + "hex": "#2bae85", + "name": "铜绿", + "pinyin": "tonglv" + }, + { + "CMYK": [96, 0, 64, 0], + "RGB": [27, 167, 132], + "hex": "#1ba784", + "name": "竹绿", + "pinyin": "zhulv" + }, + { + "CMYK": [98, 2, 64, 0], + "RGB": [18, 161, 130], + "hex": "#12a182", + "name": "蓝绿", + "pinyin": "lanlv" + }, + { + "CMYK": [32, 7, 18, 0], + "RGB": [196, 215, 214], + "hex": "#c4d7d6", + "name": "穹灰", + "pinyin": "qionghui" + }, + { + "CMYK": [94, 11, 33, 1], + "RGB": [30, 158, 179], + "hex": "#1e9eb3", + "name": "翠蓝", + "pinyin": "cuilan" + }, + { + "CMYK": [96, 16, 31, 3], + "RGB": [15, 149, 176], + "hex": "#0f95b0", + "name": "胆矾蓝", + "pinyin": "danfanlan" + }, + { + "CMYK": [96, 18, 34, 4], + "RGB": [20, 145, 168], + "hex": "#1491a8", + "name": "樫鸟蓝", + "pinyin": "jianniaolan" + }, + { + "CMYK": [64, 18, 32, 2], + "RGB": [124, 171, 177], + "hex": "#7cabb1", + "name": "闪蓝", + "pinyin": "shanlan" + }, + { + "CMYK": [40, 24, 32, 6], + "RGB": [164, 172, 167], + "hex": "#a4aca7", + "name": "冰山蓝", + "pinyin": "bingshanlan" + }, + { + "CMYK": [56, 26, 36, 7], + "RGB": [134, 157, 157], + "hex": "#869d9d", + "name": "虾壳青", + "pinyin": "xiakeqing" + }, + { + "CMYK": [71, 28, 39, 10], + "RGB": [100, 142, 147], + "hex": "#648e93", + "name": "晚波蓝", + "pinyin": "wanbolan" + }, + { + "CMYK": [89, 27, 41, 13], + "RGB": [59, 129, 140], + "hex": "#3b818c", + "name": "蜻蜓蓝", + "pinyin": "qingtinglan" + }, + { + "CMYK": [99, 33, 38, 21], + "RGB": [18, 110, 130], + "hex": "#126e82", + "name": "玉鈫蓝", + "pinyin": "yuqinlan" + }, + { + "CMYK": [57, 37, 42, 21], + "RGB": [115, 124, 123], + "hex": "#737c7b", + "name": "垩灰", + "pinyin": "ehui" + }, + { + "CMYK": [65, 40, 44, 26], + "RGB": [97, 113, 114], + "hex": "#617172", + "name": "夏云灰", + "pinyin": "xiayunhui" + }, + { + "CMYK": [100, 52, 46, 43], + "RGB": [19, 72, 87], + "hex": "#134857", + "name": "苍蓝", + "pinyin": "canglan" + }, + { + "CMYK": [67, 53, 51, 50], + "RGB": [71, 75, 76], + "hex": "#474b4c", + "name": "黄昏灰", + "pinyin": "huanghunhui" + }, + { + "CMYK": [94, 58, 54, 60], + "RGB": [33, 55, 61], + "hex": "#21373d", + "name": "灰蓝", + "pinyin": "huilan" + }, + { + "CMYK": [100, 64, 56, 68], + "RGB": [19, 44, 51], + "hex": "#132c33", + "name": "深灰蓝", + "pinyin": "shenhuilan" + }, + { + "CMYK": [49, 5, 37, 0], + "RGB": [164, 202, 182], + "hex": "#a4cab6", + "name": "玉簪绿", + "pinyin": "yuzanlv" + }, + { + "CMYK": [96, 12, 66, 2], + "RGB": [44, 150, 120], + "hex": "#2c9678", + "name": "青矾绿", + "pinyin": "qingfanlv" + }, + { + "CMYK": [52, 11, 37, 0], + "RGB": [154, 190, 175], + "hex": "#9abeaf", + "name": "草原远绿", + "pinyin": "caoyuanyuanlv" + }, + { + "CMYK": [74, 14, 51, 1], + "RGB": [105, 167, 148], + "hex": "#69a794", + "name": "梧枝绿", + "pinyin": "wuzhilv" + }, + { + "CMYK": [55, 16, 40, 1], + "RGB": [146, 179, 165], + "hex": "#92b3a5", + "name": "浪花绿", + "pinyin": "langhualv" + }, + { + "CMYK": [99, 23, 70, 10], + "RGB": [36, 128, 103], + "hex": "#248067", + "name": "海王绿", + "pinyin": "haiwanglv" + }, + { + "CMYK": [88, 24, 61, 9], + "RGB": [66, 134, 117], + "hex": "#428675", + "name": "亚丁绿", + "pinyin": "yadinglv" + }, + { + "CMYK": [40, 27, 36, 8], + "RGB": [159, 163, 154], + "hex": "#9fa39a", + "name": "镍灰", + "pinyin": "niehui" + }, + { + "CMYK": [52, 28, 42, 10], + "RGB": [138, 152, 142], + "hex": "#8a988e", + "name": "明灰", + "pinyin": "minghui" + }, + { + "CMYK": [63, 31, 50, 14], + "RGB": [112, 136, 125], + "hex": "#70887d", + "name": "淡绿灰", + "pinyin": "danlvhui" + }, + { + "CMYK": [82, 32, 60, 20], + "RGB": [73, 117, 104], + "hex": "#497568", + "name": "飞泉绿", + "pinyin": "feiquanlv" + }, + { + "CMYK": [62, 43, 52, 34], + "RGB": [93, 101, 95], + "hex": "#5d655f", + "name": "狼烟灰", + "pinyin": "langyanhui" + }, + { + "CMYK": [85, 44, 64, 52], + "RGB": [49, 74, 67], + "hex": "#314a43", + "name": "绿灰", + "pinyin": "lvhui" + }, + { + "CMYK": [93, 46, 70, 61], + "RGB": [34, 62, 54], + "hex": "#223e36", + "name": "苍绿", + "pinyin": "canglv" + }, + { + "CMYK": [98, 46, 73, 63], + "RGB": [26, 59, 50], + "hex": "#1a3b32", + "name": "深海绿", + "pinyin": "shenhailv" + }, + { + "CMYK": [67, 60, 57, 68], + "RGB": [54, 52, 51], + "hex": "#363433", + "name": "长石灰", + "pinyin": "changshihui" + }, + { + "CMYK": [82, 60, 65, 80], + "RGB": [31, 38, 35], + "hex": "#1f2623", + "name": "苷蓝绿", + "pinyin": "ganlanlv" + }, + { + "CMYK": [90, 62, 67, 86], + "RGB": [20, 30, 27], + "hex": "#141e1b", + "name": "莽丛绿", + "pinyin": "mangconglv" + }, + { + "CMYK": [33, 1, 29, 0], + "RGB": [198, 223, 200], + "hex": "#c6dfc8", + "name": "淡翠绿", + "pinyin": "dancuilv" + }, + { + "CMYK": [53, 1, 44, 0], + "RGB": [158, 204, 171], + "hex": "#9eccab", + "name": "明绿", + "pinyin": "minglv" + }, + { + "CMYK": [75, 0, 59, 0], + "RGB": [104, 184, 142], + "hex": "#68b88e", + "name": "田园绿", + "pinyin": "tianyuanlv" + }, + { + "CMYK": [98, 0, 82, 0], + "RGB": [32, 161, 98], + "hex": "#20a162", + "name": "翠绿", + "pinyin": "cuilv" + }, + { + "CMYK": [78, 6, 62, 0], + "RGB": [97, 172, 133], + "hex": "#61ac85", + "name": "淡绿", + "pinyin": "danlv" + }, + { + "CMYK": [90, 7, 73, 0], + "RGB": [64, 160, 112], + "hex": "#40a070", + "name": "葱绿", + "pinyin": "conglv" + }, + { + "CMYK": [99, 10, 91, 2], + "RGB": [34, 148, 83], + "hex": "#229453", + "name": "孔雀绿", + "pinyin": "kongquelv" + }, + { + "CMYK": [27, 11, 27, 1], + "RGB": [202, 211, 195], + "hex": "#cad3c3", + "name": "艾绿", + "pinyin": "ailv" + }, + { + "CMYK": [92, 14, 76, 2], + "RGB": [60, 149, 102], + "hex": "#3c9566", + "name": "蟾绿", + "pinyin": "chanlv" + }, + { + "CMYK": [100, 17, 92, 5], + "RGB": [32, 137, 77], + "hex": "#20894d", + "name": "宫殿绿", + "pinyin": "gongdianlv" + }, + { + "CMYK": [61, 19, 52, 3], + "RGB": [131, 167, 141], + "hex": "#83a78d", + "name": "松霜绿", + "pinyin": "songshuanglv" + }, + { + "CMYK": [81, 19, 67, 4], + "RGB": [87, 149, 114], + "hex": "#579572", + "name": "蛋白石绿", + "pinyin": "danbaishilv" + }, + { + "CMYK": [100, 22, 90, 10], + "RGB": [32, 127, 76], + "hex": "#207f4c", + "name": "薄荷绿", + "pinyin": "bohelv" + }, + { + "CMYK": [66, 29, 58, 12], + "RGB": [110, 139, 116], + "hex": "#6e8b74", + "name": "瓦松绿", + "pinyin": "wasonglv" + }, + { + "CMYK": [100, 31, 91, 25], + "RGB": [26, 104, 64], + "hex": "#1a6840", + "name": "荷叶绿", + "pinyin": "heyelv" + }, + { + "CMYK": [62, 42, 56, 34], + "RGB": [94, 102, 91], + "hex": "#5e665b", + "name": "田螺绿", + "pinyin": "tianluolv" + }, + { + "CMYK": [74, 42, 65, 40], + "RGB": [72, 91, 77], + "hex": "#485b4d", + "name": "白屈菜绿", + "pinyin": "baiqucailv" + }, + { + "CMYK": [64, 57, 60, 67], + "RGB": [57, 55, 51], + "hex": "#393733", + "name": "河豚灰", + "pinyin": "hetunhui" + }, + { + "CMYK": [68, 56, 60, 66], + "RGB": [55, 56, 52], + "hex": "#373834", + "name": "蒽油绿", + "pinyin": "enyoulv" + }, + { + "CMYK": [76, 56, 75, 72], + "RGB": [43, 49, 44], + "hex": "#2b312c", + "name": "槲寄生绿", + "pinyin": "hujishenglv" + }, + { + "CMYK": [91, 60, 76, 83], + "RGB": [21, 35, 27], + "hex": "#15231b", + "name": "云杉绿", + "pinyin": "yunshanlv" + }, + { + "CMYK": [9, 1, 14, 0], + "RGB": [240, 245, 229], + "hex": "#f0f5e5", + "name": "嫩菊绿", + "pinyin": "nenjulv" + }, + { + "CMYK": [20, 1, 23, 0], + "RGB": [223, 236, 213], + "hex": "#dfecd5", + "name": "艾背绿", + "pinyin": "aibeilv" + }, + { + "CMYK": [47, 0, 49, 0], + "RGB": [173, 213, 162], + "hex": "#add5a2", + "name": "嘉陵水绿", + "pinyin": "jialingshuilv" + }, + { + "CMYK": [89, 0, 96, 0], + "RGB": [65, 179, 73], + "hex": "#41b349", + "name": "玉髓绿", + "pinyin": "yusuilv" + }, + { + "CMYK": [88, 0, 99, 0], + "RGB": [67, 178, 68], + "hex": "#43b244", + "name": "鲜绿", + "pinyin": "xianlv" + }, + { + "CMYK": [90, 0, 100, 0], + "RGB": [65, 174, 60], + "hex": "#41ae3c", + "name": "宝石绿", + "pinyin": "baoshilv" + }, + { + "CMYK": [18, 4, 33, 0], + "RGB": [226, 231, 191], + "hex": "#e2e7bf", + "name": "海沬绿", + "pinyin": "haimeilv" + }, + { + "CMYK": [28, 4, 44, 0], + "RGB": [208, 222, 170], + "hex": "#d0deaa", + "name": "姚黄", + "pinyin": "yaohuang" + }, + { + "CMYK": [44, 3, 61, 0], + "RGB": [178, 207, 135], + "hex": "#b2cf87", + "name": "橄榄石绿", + "pinyin": "ganlanshilv" + }, + { + "CMYK": [62, 0, 76, 0], + "RGB": [140, 194, 105], + "hex": "#8cc269", + "name": "水绿", + "pinyin": "shuilv" + }, + { + "CMYK": [42, 3, 67, 0], + "RGB": [183, 208, 122], + "hex": "#b7d07a", + "name": "芦苇绿", + "pinyin": "luweilv" + }, + { + "CMYK": [28, 6, 66, 0], + "RGB": [210, 217, 122], + "hex": "#d2d97a", + "name": "槐花黄绿", + "pinyin": "huaihuahuanglv" + }, + { + "CMYK": [41, 4, 76, 0], + "RGB": [186, 207, 101], + "hex": "#bacf65", + "name": "苹果绿", + "pinyin": "pingguolv" + }, + { + "CMYK": [58, 1, 88, 0], + "RGB": [150, 194, 78], + "hex": "#96c24e", + "name": "芽绿", + "pinyin": "yalv" + }, + { + "CMYK": [19, 9, 84, 1], + "RGB": [226, 216, 73], + "hex": "#e2d849", + "name": "蝶黄", + "pinyin": "diehuang" + }, + { + "CMYK": [38, 8, 94, 1], + "RGB": [190, 201, 54], + "hex": "#bec936", + "name": "橄榄黄绿", + "pinyin": "ganlanhuanglv" + }, + { + "CMYK": [81, 0, 100, 0], + "RGB": [91, 174, 35], + "hex": "#5bae23", + "name": "鹦鹉绿", + "pinyin": "yingwulv" + }, + { + "CMYK": [84, 64, 94, 45], + "RGB": [37, 61, 36], + "hex": "#253d24", + "name": "油绿", + "pinyin": "youlv" + }, + { + "CMYK": [0, 1, 4, 0], + "RGB": [255, 254, 248], + "hex": "#fffef8", + "name": "象牙白", + "pinyin": "xiangyabai" + }, + { + "CMYK": [3, 5, 8, 0], + "RGB": [248, 244, 237], + "hex": "#f8f4ed", + "name": "汉白玉", + "pinyin": "hanbaiyu" + }, + { + "CMYK": [0, 1, 3, 0], + "RGB": [255, 254, 249], + "hex": "#fffef9", + "name": "雪白", + "pinyin": "xuebai" + }, + { + "CMYK": [4, 4, 8, 0], + "RGB": [247, 244, 237], + "hex": "#f7f4ed", + "name": "鱼肚白", + "pinyin": "yudubai" + }, + { + "CMYK": [12, 12, 16, 0], + "RGB": [228, 223, 215], + "hex": "#e4dfd7", + "name": "珍珠灰", + "pinyin": "zhenzhuhui" + }, + { + "CMYK": [16, 15, 20, 1], + "RGB": [218, 212, 203], + "hex": "#dad4cb", + "name": "浅灰", + "pinyin": "qianhui" + }, + { + "CMYK": [28, 5, 30, 5], + "RGB": [187, 181, 172], + "hex": "#bbb5ac", + "name": "铅灰", + "pinyin": "qianhui" + }, + { + "CMYK": [28, 25, 30, 5], + "RGB": [187, 181, 172], + "hex": "#bbb5ac", + "name": "中灰", + "pinyin": "zhonghui" + }, + { + "CMYK": [42, 40, 43, 23], + "RGB": [134, 126, 118], + "hex": "#867e76", + "name": "瓦灰", + "pinyin": "wahui" + }, + { + "CMYK": [43, 40, 44, 42], + "RGB": [132, 124, 116], + "hex": "#847c74", + "name": "夜灰", + "pinyin": "yehui" + }, + { + "CMYK": [42, 42, 45, 27], + "RGB": [128, 118, 110], + "hex": "#80766e", + "name": "雁灰", + "pinyin": "yanhui" + }, + { + "CMYK": [42, 42, 46, 27], + "RGB": [129, 119, 110], + "hex": "#81776e", + "name": "深灰", + "pinyin": "shenhui" + } +] diff --git a/src/settings/designColorRecommend.json b/src/settings/designColorRecommend.json new file mode 100644 index 0000000..51ba973 --- /dev/null +++ b/src/settings/designColorRecommend.json @@ -0,0 +1,30 @@ +[ + { + "CMYK": [62, 0, 21, 16], + "RGB": [81, 214, 169], + "hex": "#51d6a9", + "name": "碧空绿", + "pinyin": "bikonlv" + }, + { + "CMYK": [73, 17, 20, 1], + "RGB": [102, 169, 201], + "hex": "#66a9c9", + "name": "涧石蓝", + "pinyin": "jianshilan" + }, + { + "CMYK": [4, 13, 67, 0], + "RGB": [248, 223, 114], + "hex": "#f8df72", + "name": "茉莉黄", + "pinyin": "molihuang" + }, + { + "CMYK": [76, 51, 0, 0], + "RGB": [60, 126, 255], + "hex": "#3c7eff", + "name": "深海蓝", + "pinyin": "shenhailan" + } +] diff --git a/src/settings/designSetting.ts b/src/settings/designSetting.ts new file mode 100644 index 0000000..5f76b84 --- /dev/null +++ b/src/settings/designSetting.ts @@ -0,0 +1,77 @@ +import { LangEnum, PreviewScaleEnum } from '@/enums/styleEnum' +import { RequestHttpIntervalEnum } from '@/enums/httpEnum' +import designColor from './designColor.json' + +// 默认语言 +export const lang = LangEnum.ZH + +// 水印文字 +export const watermarkText = "GoView 低代码平台" + +// 分组名称 +export const groupTitle = "分组" + +// 主题配置 +export const theme = { + // 默认是否开启深色主题 + darkTheme: true, + //默认主题色 + appTheme: '#51d6a9', + appThemeDetail: null, +} + +// 图表初始配置(px) +export const chartInitConfig = { + x: 50, + y: 50, + w: 500, + h: 300, + // 不建议动 offset + offsetX: 0, + offsetY: 0, +} + +// dialog 图标的大小 +export const dialogIconSize = '20' + +// 侧边栏宽度 +export const asideWidth = '270' + +// 侧边栏折叠后的宽度,支持全部折叠会覆盖为 0 +export const asideCollapsedWidth = 60 + +// 弹窗是否可以通过点击遮罩关闭 +export const maskClosable = false + +// 全局边框圆角 +export const borderRadius = '6px' + +// 轮播间隔 +export const carouselInterval = 4000 + +// 工作台大屏背景图片大小限制(5M) +export const backgroundImageSize = 5 + +// 预览展示方式 +export const previewScaleType = PreviewScaleEnum.FIT + +// 编辑工作台同步到 JSON 的轮询间隔(5S) +export const editToJsonInterval = 5000 + +// 数据请求间隔 +export const requestInterval = 30 + +// 工作台自动保存间隔(s) +export const saveInterval = 30 + +// 数据请求间隔单位 +export const requestIntervalUnit = RequestHttpIntervalEnum.SECOND + +// 工作区域历史记录存储最大数量 +export const editHistoryMax = 100 + +// 拖拽时蒙层的 z-index,需比所有图表高 +export const canvasModelIndex = 9999 + +// 框选时蒙层的 z-index,需比所有图表高 +export const selectBoxIndex = canvasModelIndex + 10 diff --git a/src/settings/httpSetting.ts b/src/settings/httpSetting.ts new file mode 100644 index 0000000..4143efd --- /dev/null +++ b/src/settings/httpSetting.ts @@ -0,0 +1,2 @@ +// 请求前缀 +export const axiosPre = '/admin-api' diff --git a/src/settings/pathConst.ts b/src/settings/pathConst.ts new file mode 100644 index 0000000..4639316 --- /dev/null +++ b/src/settings/pathConst.ts @@ -0,0 +1,10 @@ +// * 外部路径地址 + +// 项目文档地址 +export const docPath = "https://doc.iocoder.cn/report/" + +// 项目源码 +export const giteeSourceCodePath = "https://gitee.com/zhijiantianya/yudao-ui-go-view" + +// 赞助 +export const sponsorPath = "https://www.mtruning.club/sponsor/" diff --git a/src/settings/systemSetting.ts b/src/settings/systemSetting.ts new file mode 100644 index 0000000..84eb65d --- /dev/null +++ b/src/settings/systemSetting.ts @@ -0,0 +1,19 @@ +import { SettingStoreEnums, ToolsStatusEnum } from '@/store/modules/settingStore/settingStore.d' + +// * 用户配置项 +export const systemSetting = { + // 侧边栏折叠是否隐藏全部 + [SettingStoreEnums.ASIDE_ALL_COLLAPSED]: true, + // 拖拽页面左侧表单分类只有一项的时候是否隐藏 + [SettingStoreEnums.HIDE_PACKAGE_ONE_CATEGORY]: true, + // 切换语言是否进行路由刷新 + [SettingStoreEnums.CHANGE_LANG_RELOAD]: false, + // 图表移动时按方向键移动的距离 + [SettingStoreEnums.CHART_MOVE_DISTANCE]: 5, + // 图表拖拽时的吸附距离(px) + [SettingStoreEnums.CHART_ALIGN_RANGE]: 10, + // 图表工具栏状态(侧边工具状态) + [SettingStoreEnums.CHART_TOOLS_STATUS]: ToolsStatusEnum.ASIDE, + // 图表工具栏状态隐藏(刚开始不隐藏) + [SettingStoreEnums.CHART_TOOLS_STATUS_HIDE]: false, +} \ No newline at end of file diff --git a/src/store/index.ts b/src/store/index.ts new file mode 100644 index 0000000..4e303ea --- /dev/null +++ b/src/store/index.ts @@ -0,0 +1,10 @@ +import type { App } from 'vue'; +import { createPinia } from 'pinia'; + +const pinia = createPinia(); + +export function setupStore(app: App) { + app.use(pinia); +} + +export { pinia }; diff --git a/src/store/modules/chartEditStore/chartEditStore.d.ts b/src/store/modules/chartEditStore/chartEditStore.d.ts new file mode 100644 index 0000000..2050d59 --- /dev/null +++ b/src/store/modules/chartEditStore/chartEditStore.d.ts @@ -0,0 +1,248 @@ +import { CreateComponentType, CreateComponentGroupType, FilterEnum } from '@/packages/index.d' +import { HistoryActionTypeEnum } from '@/store/modules/chartHistoryStore/chartHistoryStore.d' +import { SyncEnum } from '@/enums/editPageEnum' +import { + RequestHttpEnum, + RequestContentTypeEnum, + RequestDataTypeEnum, + RequestHttpIntervalEnum, + RequestParams, + RequestBodyEnum, + RequestParamsObjType +} from '@/enums/httpEnum' +import { PreviewScaleEnum } from '@/enums/styleEnum' +import type { ChartColorsNameType, GlobalThemeJsonType } from '@/settings/chartThemes/index' + +// 项目数据枚举 +export enum ProjectInfoEnum { + // ID + PROJECT_ID = "projectId", + // 名称 + PROJECT_NAME = 'projectName', + // 描述 + REMARKS = 'remarks', + // 缩略图 + THUMBNAIL= 'thumbnail', + // 是否公开发布 + RELEASE = 'release' +} + +// 项目数据 +export type ProjectInfoType = { + [ProjectInfoEnum.PROJECT_ID]: string, + [ProjectInfoEnum.PROJECT_NAME]: string, + [ProjectInfoEnum.REMARKS]: string, + [ProjectInfoEnum.THUMBNAIL]: string, + [ProjectInfoEnum.RELEASE]: boolean +} + +// 编辑画布属性 +export enum EditCanvasTypeEnum { + EDIT_LAYOUT_DOM = 'editLayoutDom', + EDIT_CONTENT_DOM = 'editContentDom', + OFFSET = 'offset', + SCALE = 'scale', + USER_SCALE = 'userScale', + LOCK_SCALE = 'lockScale', + SAVE_STATUS = 'saveStatus', + IS_CREATE = 'isCreate', + IS_DRAG = 'isDrag', + IS_SELECT = 'isSelect' +} + +// 编辑区域(临时) +export type EditCanvasType = { + // 编辑区域 DOM + [EditCanvasTypeEnum.EDIT_LAYOUT_DOM]: HTMLElement | null + [EditCanvasTypeEnum.EDIT_CONTENT_DOM]: HTMLElement | null + // 偏移大小 + [EditCanvasTypeEnum.OFFSET]: number + // 缩放 + [EditCanvasTypeEnum.SCALE]: number + // 缩放 + [EditCanvasTypeEnum.USER_SCALE]: number + // 锁定缩放 + [EditCanvasTypeEnum.LOCK_SCALE]: boolean + // 初始化创建 + [EditCanvasTypeEnum.IS_CREATE]: boolean + // 拖拽中 + [EditCanvasTypeEnum.IS_DRAG]: boolean + // 保存状态 + [EditCanvasTypeEnum.SAVE_STATUS]: SyncEnum + // 框选中 + [EditCanvasTypeEnum.IS_SELECT]: boolean +} + +// 画布数据/滤镜/背景色/宽高主题等 +export enum EditCanvasConfigEnum { + PROJECT_NAME = 'projectName', + WIDTH = 'width', + HEIGHT = 'height', + CHART_THEME_COLOR = 'chartThemeColor', + CHART_THEME_SETTING = 'chartThemeSetting', + BACKGROUND = 'background', + BACKGROUND_IMAGE = 'backgroundImage', + SELECT_COLOR = 'selectColor', + PREVIEW_SCALE_TYPE = 'previewScaleType' +} + +// 画布属性(需保存) +export type EditCanvasConfigType = { + // ID + [EditCanvasConfigEnum.PROJECT_ID]: string, + // 项目名称 + [EditCanvasConfigEnum.PROJECT_NAME]?: string, + // 项目描述 + [EditCanvasConfigEnum.REMARKS]: string, + // 滤镜-启用 + [FilterEnum.FILTERS_SHOW]: boolean + // 滤镜-色相 + [FilterEnum.HUE_ROTATE]: number + // 滤镜-饱和度 + [FilterEnum.SATURATE]: number + // 滤镜-亮度 + [FilterEnum.BRIGHTNESS]: number + // 滤镜-对比度 + [FilterEnum.CONTRAST]: number + // 滤镜-不透明度 + [FilterEnum.OPACITY]: number + // 变换(暂不使用) + [FilterEnum.ROTATE_Z]: number + [FilterEnum.ROTATE_X]: number + [FilterEnum.ROTATE_Y]: number + [FilterEnum.SKEW_X]: number + [FilterEnum.SKEW_Y]: number + [FilterEnum.BLEND_MODE]: string + // 大屏名称 + [EditCanvasConfigEnum.PROJECT_NAME]?: string + // 大屏宽度 + [EditCanvasConfigEnum.WIDTH]: number + // 大屏高度 + [EditCanvasConfigEnum.HEIGHT]: number + // 背景色 + [EditCanvasConfigEnum.BACKGROUND]?: string + [EditCanvasConfigEnum.BACKGROUND_IMAGE]?: string | null + // 图表主题颜色 + [EditCanvasConfigEnum.CHART_THEME_COLOR]: ChartColorsNameType + // 图表全局配置 + [EditCanvasConfigEnum.CHART_THEME_SETTING]: GlobalThemeJsonType + // 图表主题颜色 + [EditCanvasConfigEnum.SELECT_COLOR]: boolean + // 预览展示方式 + [EditCanvasConfigEnum.PREVIEW_SCALE_TYPE]: PreviewScaleEnum +} + +// 坐标轴信息 +// eslint-disable-next-line no-redeclare +export enum EditCanvasTypeEnum { + START_X = 'startX', + START_Y = 'startY', + X = 'x', + Y = 'y' +} + +// 鼠标位置 +export type MousePositionType = { + // 开始 X + [EditCanvasTypeEnum.START_X]: number + // 开始 Y + [EditCanvasTypeEnum.START_Y]: number + // X + [EditCanvasTypeEnum.X]: number + // y + [EditCanvasTypeEnum.Y]: number +} + +// 操作目标 +export type TargetChartType = { + hoverId?: string + selectId: string[] +} + +// 数据记录 +export type RecordChartType = { + charts: CreateComponentType | CreateComponentGroupType | Array + type: HistoryActionTypeEnum.CUT | HistoryActionTypeEnum.COPY +} + +// Store 枚举 +export enum ChartEditStoreEnum { + PROJECT_INFO = 'projectInfo', + EDIT_RANGE = 'editRange', + EDIT_CANVAS = 'editCanvas', + RIGHT_MENU_SHOW = 'rightMenuShow', + MOUSE_POSITION = 'mousePosition', + TARGET_CHART = 'targetChart', + RECORD_CHART = 'recordChart', + // 以下需要存储 + EDIT_CANVAS_CONFIG = 'editCanvasConfig', + REQUEST_GLOBAL_CONFIG = 'requestGlobalConfig', + COMPONENT_LIST = 'componentList' +} + +// 请求公共类型 +type RequestPublicConfigType = { + // 时间单位(时分秒) + requestIntervalUnit: RequestHttpIntervalEnum + // 请求内容 + requestParams: RequestParams +} + +// 数据池项类型 +export type RequestDataPondItemType = { + dataPondId: string, + dataPondName: string, + dataPondRequestConfig: RequestConfigType +} + +// 全局的图表请求配置 +export interface RequestGlobalConfigType extends RequestPublicConfigType { + // 组件定制轮询时间 + requestInterval: number + // 请求源地址 + requestOriginUrl?: string + // 公共数据池 + requestDataPond: RequestDataPondItemType[] +} + +// 单个图表请求配置 +export interface RequestConfigType extends RequestPublicConfigType { + // 所选全局数据池的对应 id + requestDataPondId?: string + // 组件定制轮询时间 + requestInterval?: number + // 获取数据的方式 + requestDataType: RequestDataTypeEnum + // 请求方式 get/post/del/put/patch + requestHttpType: RequestHttpEnum + // 源后续的 url + requestUrl?: string + // 请求内容主体方式 普通/sql + requestContentType: RequestContentTypeEnum + // 请求体类型 + requestParamsBodyType: RequestBodyEnum + // SQL 请求对象 + requestSQLContent: { + sql: string + } +} + +// Store 类型 +export interface ChartEditStoreType { + [ChartEditStoreEnum.PROJECT_INFO]: ProjectInfoType + [ChartEditStoreEnum.EDIT_CANVAS]: EditCanvasType + [ChartEditStoreEnum.EDIT_CANVAS_CONFIG]: EditCanvasConfigType + [ChartEditStoreEnum.RIGHT_MENU_SHOW]: boolean + [ChartEditStoreEnum.MOUSE_POSITION]: MousePositionType + [ChartEditStoreEnum.TARGET_CHART]: TargetChartType + [ChartEditStoreEnum.RECORD_CHART]?: RecordChartType + [ChartEditStoreEnum.REQUEST_GLOBAL_CONFIG]: RequestGlobalConfigType + [ChartEditStoreEnum.COMPONENT_LIST]: Array +} + +// 存储数据类型 +export interface ChartEditStorage { + [ChartEditStoreEnum.EDIT_CANVAS_CONFIG]: EditCanvasConfigType + [ChartEditStoreEnum.REQUEST_GLOBAL_CONFIG]: RequestGlobalConfigType + [ChartEditStoreEnum.COMPONENT_LIST]: Array +} diff --git a/src/store/modules/chartEditStore/chartEditStore.ts b/src/store/modules/chartEditStore/chartEditStore.ts new file mode 100644 index 0000000..2101525 --- /dev/null +++ b/src/store/modules/chartEditStore/chartEditStore.ts @@ -0,0 +1,988 @@ +import { toRaw } from 'vue' +import { defineStore } from 'pinia' +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { PublicGroupConfigClass } from '@/packages/public/publicConfig' +import debounce from 'lodash/debounce' +import cloneDeep from 'lodash/cloneDeep' +import { defaultTheme, globalThemeJson } from '@/settings/chartThemes/index' +import { requestInterval, previewScaleType, requestIntervalUnit } from '@/settings/designSetting' +// 记录记录 +import { useChartHistoryStore } from '@/store/modules/chartHistoryStore/chartHistoryStore' +// 全局设置 +import { useSettingStore } from '@/store/modules/settingStore/settingStore' +// 历史类型 +import { HistoryActionTypeEnum, HistoryItemType, HistoryTargetTypeEnum } from '@/store/modules/chartHistoryStore/chartHistoryStore.d' +// 画布枚举 +import { MenuEnum, SyncEnum } from '@/enums/editPageEnum' + +import { + getUUID, + loadingStart, + loadingFinish, + loadingError, + isString, + isArray +} from '@/utils' + +import { + ProjectInfoType, + ChartEditStoreEnum, + ChartEditStorage, + ChartEditStoreType, + EditCanvasType, + MousePositionType, + TargetChartType, + RecordChartType, + RequestGlobalConfigType, + EditCanvasConfigType +} from './chartEditStore.d' + +const chartHistoryStore = useChartHistoryStore() +const settingStore = useSettingStore() + +// 编辑区域内容 +export const useChartEditStore = defineStore({ + id: 'useChartEditStore', + state: (): ChartEditStoreType => ({ + // 项目数据 + projectInfo: { + projectId: '', + projectName: '', + remarks: '', + thumbnail: '', + release: false + }, + // 画布属性 + editCanvas: { + // 编辑区域 Dom + editLayoutDom: null, + editContentDom: null, + // 偏移量 + offset: 20, + // 系统控制缩放 + scale: 1, + // 用户控制的缩放 + userScale: 1, + // 锁定缩放 + lockScale: false, + // 初始化 + isCreate: false, + // 拖拽中 + isDrag: false, + // 框选中 + isSelect: false, + // 同步中 + saveStatus: SyncEnum.PENDING + }, + // 右键菜单 + rightMenuShow: false, + // 鼠标定位 + mousePosition: { + startX: 0, + startY: 0, + x: 0, + y: 0 + }, + // 目标图表 + targetChart: { + hoverId: undefined, + selectId: [] + }, + // 记录临时数据(复制等) + recordChart: undefined, + // ----------------------- + // 画布属性(需存储给后端) + editCanvasConfig: { + // 项目名称 + projectName: undefined, + // 默认宽度 + width: 1920, + // 默认高度 + height: 1080, + // 启用滤镜 + filterShow: false, + // 色相 + hueRotate: 0, + // 饱和度 + saturate: 1, + // 对比度 + contrast: 1, + // 亮度 + brightness: 1, + // 透明度 + opacity: 1, + // 变换(暂不更改) + rotateZ: 0, + rotateX: 0, + rotateY: 0, + skewX: 0, + skewY: 0, + // 混合模式 + blendMode: 'normal', + // 默认背景色 + background: undefined, + backgroundImage: undefined, + // 是否使用纯颜色 + selectColor: true, + // chart 主题色 + chartThemeColor: defaultTheme || 'dark', + // 全局配置 + chartThemeSetting: globalThemeJson, + // 适配方式 + previewScaleType: previewScaleType + }, + // 数据请求处理(需存储给后端) + requestGlobalConfig: { + requestDataPond: [], + requestOriginUrl: '', + requestInterval: requestInterval, + requestIntervalUnit: requestIntervalUnit, + requestParams: { + Body: { + 'form-data': {}, + 'x-www-form-urlencoded': {}, + json: '', + xml: '' + }, + Header: {}, + Params: {} + } + }, + // 图表数组(需存储给后端) + componentList: [] + }), + getters: { + getProjectInfo(): ProjectInfoType { + return this.projectInfo + }, + getMousePosition(): MousePositionType { + return this.mousePosition + }, + getRightMenuShow(): boolean { + return this.rightMenuShow + }, + getEditCanvas(): EditCanvasType { + return this.editCanvas + }, + getEditCanvasConfig(): EditCanvasConfigType { + return this.editCanvasConfig + }, + getTargetChart(): TargetChartType { + return this.targetChart + }, + getRecordChart(): RecordChartType | undefined { + return this.recordChart + }, + getRequestGlobalConfig(): RequestGlobalConfigType { + return this.requestGlobalConfig + }, + getComponentList(): Array { + return this.componentList + }, + // 获取需要存储的数据项 + getStorageInfo(): ChartEditStorage { + return { + [ChartEditStoreEnum.EDIT_CANVAS_CONFIG]: this.getEditCanvasConfig, + [ChartEditStoreEnum.COMPONENT_LIST]: this.getComponentList, + [ChartEditStoreEnum.REQUEST_GLOBAL_CONFIG]: this.getRequestGlobalConfig + } + } + }, + actions: { + // * 设置 peojectInfo 数据项 + setProjectInfo(key: T, value: K) { + this.projectInfo[key] = value + }, + // * 设置 editCanvas 数据项 + setEditCanvas(key: T, value: K) { + this.editCanvas[key] = value + }, + // * 设置 editCanvasConfig(需保存后端) 数据项 + setEditCanvasConfig(key: T, value: K) { + this.editCanvasConfig[key] = value + }, + // * 设置右键菜单 + setRightMenuShow(value: boolean) { + this.rightMenuShow = value + }, + // * 设置目标数据 hover + setTargetHoverChart(hoverId?: TargetChartType['hoverId']) { + this.targetChart.hoverId = hoverId + }, + // * 设置目标数据 select + setTargetSelectChart(selectId?: string | string[], push: boolean = false) { + // 重复选中 + if (this.targetChart.selectId.find((e: string) => e === selectId)) return + + // 无 id 清空 + if (!selectId) { + this.targetChart.selectId = [] + return + } + // 多选 + if (push) { + // 字符串 + if (isString(selectId)) { + this.targetChart.selectId.push(selectId) + return + } + // 数组 + if (isArray(selectId)) { + this.targetChart.selectId.push(...selectId) + return + } + } else { + // 字符串 + if (isString(selectId)) { + this.targetChart.selectId = [selectId] + return + } + // 数组 + if (isArray(selectId)) { + this.targetChart.selectId = selectId + return + } + } + }, + // * 设置记录数据 + setRecordChart(item: RecordChartType | undefined) { + this.recordChart = cloneDeep(item) + }, + // * 设置鼠标位置 + setMousePosition(x?: number, y?: number, startX?: number, startY?: number): void { + if (x) this.mousePosition.x = x + if (y) this.mousePosition.y = y + if (startX) this.mousePosition.startX = startX + if (startY) this.mousePosition.startY = startY + }, + // * 找到目标 id 数据的下标位置,id可为父级或子集数组(无则返回-1) + fetchTargetIndex(id?: string): number { + const targetId = id || (this.getTargetChart.selectId.length && this.getTargetChart.selectId[0]) || undefined + if (!targetId) { + loadingFinish() + return -1 + } + const targetIndex = this.componentList.findIndex(e => e.id === targetId) + + // 当前 + if (targetIndex !== -1) { + return targetIndex + } else { + const length = this.getComponentList.length + for (let i = 0; i < length; i++) { + if (this.getComponentList[i].isGroup) { + for (const cItem of (this.getComponentList[i] as CreateComponentGroupType).groupList) { + if (cItem.id === targetId) { + return i + } + } + } + } + } + return -1 + }, + // * 统一格式化处理入参 id + idPreFormat(id?: string | string[]) { + const idArr = [] + if (!id) { + idArr.push(...this.getTargetChart.selectId) + return idArr + } + if (isString(id)) idArr.push(id) + if (isArray(id)) idArr.push(...id) + return idArr + }, + /** + * * 新增组件列表 + * @param componentInstance 新图表实例 + * @param isHead 是否头部插入 + * @param isHistory 是否进行记录 + * @returns + */ + addComponentList( + componentInstance: + | CreateComponentType + | CreateComponentGroupType + | Array, + isHead = false, + isHistory = false + ): void { + if (componentInstance instanceof Array) { + componentInstance.forEach(item => { + this.addComponentList(item, isHead, isHistory) + }) + return + } + if (isHistory) { + chartHistoryStore.createAddHistory([componentInstance]) + } + if (isHead) { + this.componentList.unshift(componentInstance) + return + } + this.componentList.push(componentInstance) + }, + // * 删除组件 + removeComponentList(id?: string | string[], isHistory = true): void { + try { + const idArr = this.idPreFormat(id) + const history: Array = [] + // 遍历所有对象 + if (!idArr.length) return + + loadingStart() + idArr.forEach(ids => { + const index = this.fetchTargetIndex(ids) + if (index !== -1) { + history.push(this.getComponentList[index]) + this.componentList.splice(index, 1) + } + }) + isHistory && chartHistoryStore.createDeleteHistory(history) + loadingFinish() + return + } catch (value) { + loadingError() + } + }, + // * 重置组件位置 + resetComponentPosition(item: CreateComponentType | CreateComponentGroupType, isForward: boolean): void { + const index = this.fetchTargetIndex(item.id) + if (index > -1) { + const componentInstance = this.getComponentList[index] + if (isForward) { + componentInstance.attr = Object.assign(componentInstance.attr, { + x: item.attr.x + item.attr.offsetX, + y: item.attr.y + item.attr.offsetY + }) + } else { + componentInstance.attr = Object.assign(componentInstance.attr, { + x: item.attr.x, + y: item.attr.y + }) + } + } + }, + // * 移动组件 + moveComponentList(item: Array) { + chartHistoryStore.createMoveHistory(item) + }, + // * 更新组件列表某一项的值 + updateComponentList(index: number, newData: CreateComponentType | CreateComponentGroupType) { + if (index < 1 && index > this.getComponentList.length) return + this.componentList[index] = newData + }, + // * 设置页面样式属性 + setPageStyle(key: T, value: any): void { + const dom = this.getEditCanvas.editContentDom + if (dom) { + dom.style[key] = value + } + }, + // * 移动组件列表层级位置到两端 + setBothEnds(isEnd = false, isHistory = true): void { + try { + // 暂不支持多选 + if (this.getTargetChart.selectId.length > 1) return + + loadingStart() + const length = this.getComponentList.length + if (length < 2) { + loadingFinish() + return + } + + const index = this.fetchTargetIndex() + const targetData = this.getComponentList[index] + if (index !== -1) { + // 置底排除最底层, 置顶排除最顶层 + if ((isEnd && index === 0) || (!isEnd && index === length - 1)) { + loadingFinish() + return + } + + // 记录原有位置 + const setIndex = (componentInstance: CreateComponentType | CreateComponentGroupType, i: number) => { + const temp = cloneDeep(componentInstance) + temp.attr.zIndex = i + return temp + } + + // 历史记录 + if (isHistory) { + chartHistoryStore.createLayerHistory( + [setIndex(targetData, index)], + isEnd ? HistoryActionTypeEnum.BOTTOM : HistoryActionTypeEnum.TOP + ) + } + + // 插入两端 + this.addComponentList(targetData, isEnd) + this.getComponentList.splice(isEnd ? index + 1 : index, 1) + loadingFinish() + return + } + } catch (value) { + loadingError() + } + }, + // * 置顶 + setTop(isHistory = true): void { + this.setBothEnds(false, isHistory) + }, + // * 置底 + setBottom(isHistory = true): void { + this.setBothEnds(true, isHistory) + }, + // * 上移/下移互换图表位置 + wrap(isDown = false, isHistory = true) { + try { + // 暂不支持多选 + if (this.getTargetChart.selectId.length > 1) return + + loadingStart() + const length = this.getComponentList.length + if (length < 2) { + loadingFinish() + return + } + + const index: number = this.fetchTargetIndex() + if (index !== -1) { + // 下移排除最底层, 上移排除最顶层 + if ((isDown && index === 0) || (!isDown && index === length - 1)) { + loadingFinish() + return + } + // 互换位置 + const swapIndex = isDown ? index - 1 : index + 1 + const targetItem = this.getComponentList[index] + const swapItem = this.getComponentList[swapIndex] + + // 历史记录 + if (isHistory) { + chartHistoryStore.createLayerHistory( + [targetItem], + isDown ? HistoryActionTypeEnum.DOWN : HistoryActionTypeEnum.UP + ) + } + this.updateComponentList(index, swapItem) + this.updateComponentList(swapIndex, targetItem) + loadingFinish() + return + } + } catch (value) { + loadingError() + } + }, + // * 图层上移 + setUp(isHistory = true) { + this.wrap(false, isHistory) + }, + // * 图层下移 + setDown(isHistory = true) { + this.wrap(true, isHistory) + }, + // * 复制 + setCopy(isCut = false) { + try { + // 暂不支持多选 + if (this.getTargetChart.selectId.length > 1) return + // 处理弹窗普通复制的场景 + if (document.getElementsByClassName('n-modal-body-wrapper').length) return + + loadingStart() + const index: number = this.fetchTargetIndex() + if (index !== -1) { + const copyData: RecordChartType = { + charts: this.getComponentList[index], + type: isCut ? HistoryActionTypeEnum.CUT : HistoryActionTypeEnum.COPY + } + this.setRecordChart(copyData) + window['$message'].success(isCut ? '剪切图表成功' : '复制图表成功!') + loadingFinish() + } + } catch (value) { + loadingError() + } + }, + // * 剪切 + setCut() { + this.setCopy(true) + }, + // * 粘贴 + setParse() { + try { + loadingStart() + const recordCharts = this.getRecordChart + if (recordCharts === undefined) { + loadingFinish() + return + } + const parseHandle = (e: CreateComponentType | CreateComponentGroupType) => { + e = cloneDeep(e) + e.attr.x = this.getMousePosition.x + 30 + e.attr.y = this.getMousePosition.y + 30 + // 外层生成新 id + e.id = getUUID() + // 分组列表生成新 id + if (e.isGroup) { + (e as CreateComponentGroupType).groupList.forEach((item: CreateComponentType) => { + item.id = getUUID() + }) + } + + return e + } + const isCut = recordCharts.type === HistoryActionTypeEnum.CUT + const targetList = Array.isArray(recordCharts.charts) ? recordCharts.charts : [ recordCharts.charts ] + // 多项 + targetList.forEach((e: CreateComponentType | CreateComponentGroupType) => { + this.addComponentList(parseHandle(e), undefined, true) + // 剪切需删除原数据 + if (isCut) { + this.setTargetSelectChart(e.id) + this.removeComponentList(undefined, true) + } + }) + if (isCut) this.setRecordChart(undefined) + loadingFinish() + } catch (value) { + loadingError() + } + }, + // * 撤回/前进 目标处理 + setBackAndSetForwardHandle(HistoryItem: HistoryItemType, isForward = false) { + // 处理画布 + if (HistoryItem.targetType === HistoryTargetTypeEnum.CANVAS) { + this.editCanvas = HistoryItem.historyData[0] as EditCanvasType + return + } + + // 取消选中 + this.setTargetSelectChart() + + // 重新选中 + let historyData = HistoryItem.historyData as Array + if (isArray(historyData)) { + // 选中目标元素,支持多个 + historyData.forEach((item: CreateComponentType | CreateComponentGroupType) => { + this.setTargetSelectChart(item.id, true) + }) + } + + // 处理新增类型 + const isAdd = HistoryItem.actionType === HistoryActionTypeEnum.ADD + const isDel = HistoryItem.actionType === HistoryActionTypeEnum.DELETE + if (isAdd || isDel) { + if ((isAdd && isForward) || (isDel && !isForward)) { + historyData.forEach(item => { + this.addComponentList(item) + }) + return + } + historyData.forEach(item => { + this.removeComponentList(item.id, false) + }) + return + } + + // 处理移动 + const isMove = HistoryItem.actionType === HistoryActionTypeEnum.MOVE + if (isMove) { + historyData.forEach(item => { + this.resetComponentPosition(item, isForward) + }) + return + } + + // 处理层级 + const isTop = HistoryItem.actionType === HistoryActionTypeEnum.TOP + const isBottom = HistoryItem.actionType === HistoryActionTypeEnum.BOTTOM + if (isTop || isBottom) { + if (!isForward) { + // 插入到原有位置 + if (isTop) this.getComponentList.pop() + if (isBottom) this.getComponentList.shift() + this.getComponentList.splice(historyData[0].attr.zIndex, 0, historyData[0]) + return + } + if (isTop) this.setTop(false) + if (isBottom) this.setBottom(false) + } + + const isUp = HistoryItem.actionType === HistoryActionTypeEnum.UP + const isDown = HistoryItem.actionType === HistoryActionTypeEnum.DOWN + if (isUp || isDown) { + if ((isUp && isForward) || (isDown && !isForward)) { + this.setUp(false) + return + } + this.setDown(false) + return + } + + // 处理分组 + const isGroup = HistoryItem.actionType === HistoryActionTypeEnum.GROUP + const isUnGroup = HistoryItem.actionType === HistoryActionTypeEnum.UN_GROUP + if (isGroup || isUnGroup) { + if ((isGroup && isForward) || (isUnGroup && !isForward)) { + const ids: string[] = [] + if (historyData.length > 1) { + historyData.forEach(item => { + ids.push(item.id) + }) + } else { + const group = historyData[0] as CreateComponentGroupType + group.groupList.forEach(item => { + ids.push(item.id) + }) + } + this.setGroup(ids, false) + return + } + // 都需使用子组件的id去解组 + if (historyData.length > 1) { + this.setUnGroup([(historyData[0] as CreateComponentType).id], undefined, false) + } else { + this.setUnGroup([(historyData[0] as CreateComponentGroupType).groupList[0].id], undefined, false) + } + return + } + + // 处理锁定 + const isLock = HistoryItem.actionType === HistoryActionTypeEnum.LOCK + const isUnLock = HistoryItem.actionType === HistoryActionTypeEnum.UNLOCK + if (isLock || isUnLock) { + if ((isLock && isForward) || (isUnLock && !isForward)) { + historyData.forEach(item => { + this.setLock(!item.status.lock, false) + }) + return + } + historyData.forEach(item => { + this.setUnLock(false) + }) + return + } + + // 处理隐藏 + const isHide = HistoryItem.actionType === HistoryActionTypeEnum.HIDE + const isShow = HistoryItem.actionType === HistoryActionTypeEnum.SHOW + if (isHide || isShow) { + if ((isHide && isForward) || (isShow && !isForward)) { + historyData.forEach(item => { + this.setHide(!item.status.hide, false) + }) + return + } + historyData.forEach(item => { + this.setShow(false) + }) + return + } + }, + // * 撤回 + setBack() { + try { + loadingStart() + const targetData = chartHistoryStore.backAction() + if (!targetData) { + loadingFinish() + return + } + this.setBackAndSetForwardHandle(targetData) + loadingFinish() + } catch (value) { + loadingError() + } + }, + // * 前进 + setForward() { + try { + loadingStart() + const targetData = chartHistoryStore.forwardAction() + if (!targetData) { + loadingFinish() + return + } + this.setBackAndSetForwardHandle(targetData, true) + loadingFinish() + } catch (value) { + loadingError() + } + }, + // * 移动位置 + setMove(keyboardValue: MenuEnum) { + const index = this.fetchTargetIndex() + if (index === -1) return + const attr = this.getComponentList[index].attr + const distance = settingStore.getChartMoveDistance + switch (keyboardValue) { + case MenuEnum.ARROW_UP: + attr.y -= distance + break + case MenuEnum.ARROW_RIGHT: + attr.x += distance + break + case MenuEnum.ARROW_DOWN: + attr.y += distance + break + case MenuEnum.ARROW_LEFT: + attr.x -= distance + break + } + }, + // * 创建分组 + setGroup(id?: string | string[], isHistory = true) { + try { + const selectIds = this.idPreFormat(id) || this.getTargetChart.selectId + if (selectIds.length < 2) return + + loadingStart() + const groupClass = new PublicGroupConfigClass() + // 记录整体坐标 + const groupAttr = { + l: this.getEditCanvasConfig.width, + t: this.getEditCanvasConfig.height, + r: 0, + b: 0 + } + const targetList: CreateComponentType[] = [] + const historyList: CreateComponentType[] = [] + + // 若目标中有数组则先解组 + const newSelectIds: string[] = [] + selectIds.forEach((id: string) => { + const targetIndex = this.fetchTargetIndex(id) + if (targetIndex !== -1 && this.getComponentList[targetIndex].isGroup) { + this.setUnGroup( + [id], + (e: CreateComponentType[]) => { + e.forEach(e => { + this.addComponentList(e) + newSelectIds.push(e.id) + }) + }, + false + ) + } else if (targetIndex !== -1) { + newSelectIds.push(id) + } + }) + newSelectIds.forEach((id: string) => { + // 获取目标数据并从 list 中移除 (成组后不可再次成组, 断言处理) + const item = this.componentList.splice(this.fetchTargetIndex(id), 1)[0] as CreateComponentType + const { x, y, w, h } = item.attr + const { l, t, r, b } = groupAttr + // 左 + groupAttr.l = l > x ? x : l + // 上 + groupAttr.t = t > y ? y : t + // 宽 + groupAttr.r = r < x + w ? x + w : r + // 高 + groupAttr.b = b < y + h ? y + h : b + + targetList.push(item) + historyList.push(toRaw(item)) + }) + + // 修改原数据之前,先记录 + if (isHistory) chartHistoryStore.createGroupHistory(historyList) + + // 设置子组件的位置 + targetList.forEach((item: CreateComponentType) => { + item.attr.x = item.attr.x - groupAttr.l + item.attr.y = item.attr.y - groupAttr.t + groupClass.groupList.push(item) + }) + + // 设置 group 属性 + groupClass.attr.x = groupAttr.l + groupClass.attr.y = groupAttr.t + groupClass.attr.w = groupAttr.r - groupAttr.l + groupClass.attr.h = groupAttr.b - groupAttr.t + + this.addComponentList(groupClass) + this.setTargetSelectChart(groupClass.id) + + loadingFinish() + } catch (error) { + console.log(error) + window['$message'].error('创建分组失败,请联系管理员!') + loadingFinish() + } + }, + // * 解除分组 + setUnGroup(ids?: string[], callBack?: (e: CreateComponentType[]) => void, isHistory = true) { + try { + const selectGroupIdArr = ids || this.getTargetChart.selectId + if (selectGroupIdArr.length !== 1) return + loadingStart() + + // 解组 + const unGroup = (targetIndex: number) => { + const targetGroup = this.getComponentList[targetIndex] as CreateComponentGroupType + if (!targetGroup.isGroup) return + + // 记录数据 + if (isHistory) chartHistoryStore.createUnGroupHistory(cloneDeep([targetGroup])) + + // 分离组件并还原位置属性 + targetGroup.groupList.forEach(item => { + item.attr.x = item.attr.x + targetGroup.attr.x + item.attr.y = item.attr.y + targetGroup.attr.y + if (!callBack) { + this.addComponentList(item) + } + }) + this.setTargetSelectChart(targetGroup.id) + // 删除分组 + this.removeComponentList(targetGroup.id, false) + + if (callBack) { + callBack(targetGroup.groupList) + } + } + + const targetIndex = this.fetchTargetIndex(selectGroupIdArr[0]) + // 判断目标是否为分组父级 + if (targetIndex !== -1) { + unGroup(targetIndex) + } + + loadingFinish() + } catch (error) { + console.log(error) + window['$message'].error('解除分组失败,请联系管理员!') + loadingFinish() + } + }, + // * 锁定 + setLock(status: boolean = true, isHistory: boolean = true) { + try { + // 暂不支持多选 + if (this.getTargetChart.selectId.length > 1) return + + loadingStart() + const index: number = this.fetchTargetIndex() + if (index !== -1) { + // 更新状态 + const targetItem = this.getComponentList[index] + targetItem.status.lock = status + + // 历史记录 + if (isHistory) { + status + ? chartHistoryStore.createLockHistory([targetItem]) + : chartHistoryStore.createUnLockHistory([targetItem]) + } + this.updateComponentList(index, targetItem) + // 锁定添加失焦效果 + if (status) this.setTargetSelectChart(undefined) + loadingFinish() + return + } + } catch (value) { + loadingError() + } + }, + // * 解除锁定 + setUnLock(isHistory: boolean = true) { + this.setLock(false, isHistory) + }, + // * 隐藏 + setHide(status: boolean = true, isHistory: boolean = true) { + try { + // 暂不支持多选 + if (this.getTargetChart.selectId.length > 1) return + + loadingStart() + const index: number = this.fetchTargetIndex() + if (index !== -1) { + // 更新状态 + const targetItem = this.getComponentList[index] + targetItem.status.hide = status + + // 历史记录 + if (isHistory) { + status + ? chartHistoryStore.createHideHistory([targetItem]) + : chartHistoryStore.createShowHistory([targetItem]) + } + this.updateComponentList(index, targetItem) + loadingFinish() + + // 隐藏添加失焦效果 + if (status) this.setTargetSelectChart(undefined) + } + } catch (value) { + loadingError() + } + }, + // * 显示 + setShow(isHistory: boolean = true) { + this.setHide(false, isHistory) + }, + // ---------------- + // * 设置页面大小 + setPageSize(scale: number): void { + this.setPageStyle('height', `${this.editCanvasConfig.height * scale}px`) + this.setPageStyle('width', `${this.editCanvasConfig.width * scale}px`) + }, + // * 计算缩放 + computedScale() { + if (this.getEditCanvas.editLayoutDom) { + // 现有展示区域 + const width = this.getEditCanvas.editLayoutDom.clientWidth - this.getEditCanvas.offset * 2 - 5 + const height = this.getEditCanvas.editLayoutDom.clientHeight - this.getEditCanvas.offset * 4 + + // 用户设定大小 + const editCanvasWidth = this.editCanvasConfig.width + const editCanvasHeight = this.editCanvasConfig.height + + // 需保持的比例 + const baseProportion = parseFloat((editCanvasWidth / editCanvasHeight).toFixed(5)) + const currentRate = parseFloat((width / height).toFixed(5)) + + if (currentRate > baseProportion) { + // 表示更宽 + const scaleWidth = parseFloat(((height * baseProportion) / editCanvasWidth).toFixed(5)) + this.setScale(scaleWidth > 1 ? 1 : scaleWidth) + } else { + // 表示更高 + const scaleHeight = parseFloat((width / baseProportion / editCanvasHeight).toFixed(5)) + this.setScale(scaleHeight > 1 ? 1 : scaleHeight) + } + } else { + window['$message'].warning('请先创建画布,再进行缩放') + } + }, + // * 监听缩放 + listenerScale(): Function { + const resize = debounce(this.computedScale, 200) + // 默认执行一次 + resize() + // 开始监听 + window.addEventListener('resize', resize) + // 销毁函数 + const remove = () => { + window.removeEventListener('resize', resize) + } + return remove + }, + /** + * * 设置缩放 + * @param scale 0~1 number 缩放比例; + * @param force boolean 强制缩放 + */ + setScale(scale: number, force = false): void { + if (!this.getEditCanvas.lockScale || force) { + this.setPageSize(scale) + this.getEditCanvas.userScale = scale + this.getEditCanvas.scale = scale + } + } + } +}) diff --git a/src/store/modules/chartHistoryStore/chartHistoryDefine.ts b/src/store/modules/chartHistoryStore/chartHistoryDefine.ts new file mode 100644 index 0000000..edb15a3 --- /dev/null +++ b/src/store/modules/chartHistoryStore/chartHistoryDefine.ts @@ -0,0 +1,23 @@ +import { HistoryTargetTypeEnum, HistoryActionTypeEnum } from './chartHistoryStore.d' + +export const historyActionTypeName = { + [HistoryActionTypeEnum.ADD]: '新增', + [HistoryActionTypeEnum.DELETE]: '删除', + [HistoryActionTypeEnum.UPDATE]: '更新', + [HistoryActionTypeEnum.MOVE]: '移动', + [HistoryActionTypeEnum.PASTE]: '粘贴', + [HistoryActionTypeEnum.COPY]: '复制', + [HistoryActionTypeEnum.CUT]: '剪切', + [HistoryActionTypeEnum.TOP]: '置顶', + [HistoryActionTypeEnum.BOTTOM]: '置底', + [HistoryActionTypeEnum.UP]: '上移', + [HistoryActionTypeEnum.DOWN]: '下移', + [HistoryActionTypeEnum.GROUP]: '成组', + [HistoryActionTypeEnum.UN_GROUP]: '解组', + [HistoryActionTypeEnum.LOCK]: '锁定', + [HistoryActionTypeEnum.UNLOCK]: '解锁', + [HistoryActionTypeEnum.HIDE]: '隐藏', + [HistoryActionTypeEnum.SHOW]: '显示', + + [HistoryTargetTypeEnum.CANVAS]: '画布初始化' +} diff --git a/src/store/modules/chartHistoryStore/chartHistoryStore.d.ts b/src/store/modules/chartHistoryStore/chartHistoryStore.d.ts new file mode 100644 index 0000000..9ec7920 --- /dev/null +++ b/src/store/modules/chartHistoryStore/chartHistoryStore.d.ts @@ -0,0 +1,78 @@ +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { EditCanvasType } from '@/store/modules/chartEditStore/chartEditStore.d' + +// 操作类型枚举 + +export enum HistoryActionTypeEnum { + // 新增 + ADD = 'add', + // 删除 + DELETE = 'delete', + // 更新(位置,属性) + UPDATE = 'update', + // 移动 + MOVE = 'move', + // 复制 + COPY = 'copy', + // 剪切 + CUT = 'cut', + // 粘贴 + PASTE = 'paste', + // 置顶 + TOP = 'top', + // 置底 + BOTTOM = 'bottom', + // 上移 + UP = 'up', + // 下移 + DOWN = 'down', + // 成组 + GROUP = 'group', + // 解组 + UN_GROUP = 'unGroup', + // 锁定 + LOCK = 'lock', + // 解除锁定 + UNLOCK = 'unLock', + // 隐藏 + HIDE = 'hide', + // 显示 + SHOW = 'show' +} + +// 对象类型 +export enum HistoryTargetTypeEnum { + CANVAS = 'canvas', + CHART = 'chart' +} + +// 历史栈 +export enum HistoryStackEnum { + BACK_STACK = 'backStack', + FORWARD_STACK = 'forwardStack' +} + +// 历史记录项 +export enum HistoryStackItemEnum { + ID = 'id', + TARGET_TYPE = 'targetType', + ACTION_TYPE = 'actionType', + HISTORY_DATA = 'historyData' +} + +// 历史记录项类型 +export interface HistoryItemType { + // 会有同时操作多个组件场景 + [HistoryStackItemEnum.ID]: string + [HistoryStackItemEnum.TARGET_TYPE]: HistoryTargetTypeEnum + [HistoryStackItemEnum.ACTION_TYPE]: HistoryActionTypeEnum + [HistoryStackItemEnum.HISTORY_DATA]: CreateComponentType[] | CreateComponentGroupType[] | EditCanvasType[] +} + +// 历史 Store 类型 +export interface ChartHistoryStoreType { + // 后退栈 + [HistoryStackEnum.BACK_STACK]: Array + // 前进栈 + [HistoryStackEnum.FORWARD_STACK]: Array +} diff --git a/src/store/modules/chartHistoryStore/chartHistoryStore.ts b/src/store/modules/chartHistoryStore/chartHistoryStore.ts new file mode 100644 index 0000000..dc67ca9 --- /dev/null +++ b/src/store/modules/chartHistoryStore/chartHistoryStore.ts @@ -0,0 +1,188 @@ +import { defineStore } from 'pinia' +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { EditCanvasType } from '@/store/modules/chartEditStore/chartEditStore.d' +import { loadingStart, loadingFinish, loadingError } from '@/utils' +import { editHistoryMax } from '@/settings/designSetting' +import { + HistoryStackItemEnum, + HistoryActionTypeEnum, + HistoryTargetTypeEnum, + HistoryItemType, + ChartHistoryStoreType +} from './chartHistoryStore.d' + +export const useChartHistoryStore = defineStore({ + id: 'useChartHistoryStore', + state: (): ChartHistoryStoreType => ({ + // 后退栈 + backStack: [], + // 前进栈 + forwardStack: [] + }), + getters: { + getBackStack(): Array { + return this.backStack + }, + getForwardStack(): Array { + return this.forwardStack + } + }, + actions: { + /** + * * 新增记录并插入栈 + * @param item 图表实例 + * @param actionType 动作类型 + * @param targetType 对象类型(默认图表) + */ + createStackItem( + item: CreateComponentType[] | CreateComponentGroupType[] | EditCanvasType[], + actionType: HistoryActionTypeEnum, + targetType: HistoryTargetTypeEnum = HistoryTargetTypeEnum.CHART + ) { + // 优化性能转为 freeze + this.pushBackStackItem( + Object.freeze({ + [HistoryStackItemEnum.ID]: new Date().getTime().toString(), + [HistoryStackItemEnum.HISTORY_DATA]: item, + [HistoryStackItemEnum.ACTION_TYPE]: actionType, + [HistoryStackItemEnum.TARGET_TYPE]: targetType + } as const) + ) + }, + // * 画布初始化 + canvasInit(canvas: EditCanvasType) { + this.createStackItem([canvas], HistoryActionTypeEnum.ADD, HistoryTargetTypeEnum.CANVAS) + }, + // * 推入后退栈 + pushBackStackItem(item: HistoryItemType | Array, notClear = false): void { + if (item instanceof Array) this.backStack = [...this.backStack, ...item] + else this.backStack.push(item) + this.backStack.splice(0, this.backStack.length - editHistoryMax) + // 新动作需清空前进栈 + if (notClear) return + this.clearForwardStack() + }, + // * 推入前进栈 + pushForwardStack(item: HistoryItemType | Array): void { + if (item instanceof Array) this.forwardStack = [...this.forwardStack, ...item] + else this.forwardStack.push(item) + }, + // * 移出后退栈 + popBackStackItem(): HistoryItemType | undefined { + if (this.backStack.length > 0) { + return this.backStack.pop() + } + }, + // * 移出前进栈 + popForwardStack(): HistoryItemType | undefined { + if (this.forwardStack.length > 0) { + return this.forwardStack.pop() + } + }, + // * 清空前进栈 + clearForwardStack() { + this.forwardStack = [] + }, + // * 清空后退栈(保留初始化) + clearBackStack() { + const canvasHistory = this.getBackStack[0] + this.backStack = [canvasHistory] + }, + // * 撤回 + backAction() { + try { + loadingStart() + // 排除画布初始化 + if (this.getBackStack.length > 1) { + const targetData = this.popBackStackItem() + if (!targetData) { + loadingFinish() + return + } + // 移除记录到前进堆 + this.pushForwardStack(targetData) + loadingFinish() + return targetData + } + loadingFinish() + } catch (error) { + loadingError() + } + }, + // * 前进 + forwardAction() { + try { + loadingStart() + if (this.getForwardStack.length) { + const targetData = this.popForwardStack() + if (!targetData) { + loadingFinish() + return + } + // 放入后退栈 + this.pushBackStackItem(targetData, true) + loadingFinish() + return targetData + } + loadingFinish() + } catch (error) { + loadingError() + } + }, + // * 新增组件记录 + createAddHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.ADD, HistoryTargetTypeEnum.CHART) + }, + // * 更新属性记录(大小、图表属性) + createUpdateHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.UPDATE, HistoryTargetTypeEnum.CHART) + }, + // * 删除组件记录 + createDeleteHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.DELETE, HistoryTargetTypeEnum.CHART) + }, + // * 移动组件记录 + createMoveHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.MOVE, HistoryTargetTypeEnum.CHART) + }, + // * 改变层级组件记录 + createLayerHistory( + item: Array, + type: + | HistoryActionTypeEnum.TOP + | HistoryActionTypeEnum.DOWN + | HistoryActionTypeEnum.UP + | HistoryActionTypeEnum.BOTTOM + ) { + this.createStackItem(item, type, HistoryTargetTypeEnum.CHART) + }, + // * 剪切组件记录 + createPasteHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.CUT, HistoryTargetTypeEnum.CHART) + }, + // * 创建分组 + createGroupHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.GROUP, HistoryTargetTypeEnum.CHART) + }, + // * 解除分组 + createUnGroupHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.UN_GROUP, HistoryTargetTypeEnum.CHART) + }, + // * 锁定记录 + createLockHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.LOCK, HistoryTargetTypeEnum.CHART) + }, + // * 解锁记录 + createUnLockHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.UNLOCK, HistoryTargetTypeEnum.CHART) + }, + // * 隐藏记录 + createHideHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.HIDE, HistoryTargetTypeEnum.CHART) + }, + // * 展示记录 + createShowHistory(item: Array) { + this.createStackItem(item, HistoryActionTypeEnum.SHOW, HistoryTargetTypeEnum.CHART) + } + } +}) diff --git a/src/store/modules/chartLayoutStore/chartLayoutStore.d.ts b/src/store/modules/chartLayoutStore/chartLayoutStore.d.ts new file mode 100644 index 0000000..b485dd5 --- /dev/null +++ b/src/store/modules/chartLayoutStore/chartLayoutStore.d.ts @@ -0,0 +1,36 @@ +export enum ChartModeEnum { + SINGLE = 'single', + DOUBLE = 'double' +} + +export enum LayerModeEnum { + THUMBNAIL = 'thumbnail', + TEXT = 'text' +} + +export enum ChartLayoutStoreEnum { + LAYERS = 'layers', + CHARTS = 'charts', + DETAILS = 'details', + Chart_TYPE = 'chartType', + LAYER_TYPE = 'layerType', + PERCENTAGE = 'percentage', + RE_POSITION_CANVAS = 'rePositionCanvas' +} + +export interface ChartLayoutType { + // 图层控制 + [ChartLayoutStoreEnum.LAYERS]: boolean + // 图表组件 + [ChartLayoutStoreEnum.CHARTS]: boolean + // 详情设置 + [ChartLayoutStoreEnum.DETAILS]: boolean + // 组件展示方式 + [ChartLayoutStoreEnum.Chart_TYPE]: ChartModeEnum + // 层级展示方式 + [ChartLayoutStoreEnum.LAYER_TYPE]: LayerModeEnum + // 当前正在加载的数量 + [ChartLayoutStoreEnum.PERCENTAGE]: number + // 是否重置当前画布位置 + [ChartLayoutStoreEnum.RE_POSITION_CANVAS]: boolean +} diff --git a/src/store/modules/chartLayoutStore/chartLayoutStore.ts b/src/store/modules/chartLayoutStore/chartLayoutStore.ts new file mode 100644 index 0000000..c2b6359 --- /dev/null +++ b/src/store/modules/chartLayoutStore/chartLayoutStore.ts @@ -0,0 +1,77 @@ +import { defineStore } from 'pinia' +import { ChartLayoutType, LayerModeEnum, ChartModeEnum } from './chartLayoutStore.d' +import { setLocalStorage, getLocalStorage } from '@/utils' +import { StorageEnum } from '@/enums/storageEnum' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' + +const chartEditStore = useChartEditStore() + +const { GO_CHART_LAYOUT_STORE } = StorageEnum + +const storageChartLayout: Partial = getLocalStorage(GO_CHART_LAYOUT_STORE) + +// 编辑区域布局和静态设置 +export const useChartLayoutStore = defineStore({ + id: 'useChartLayoutStore', + state: (): ChartLayoutType => ({ + // 图层控制 + layers: true, + // 图表组件 + charts: true, + // 详情设置(收缩为true) + details: false, + // 组件列表展示类型(默认单列) + chartType: ChartModeEnum.SINGLE, + // 图层类型(默认图片) + layerType: LayerModeEnum.THUMBNAIL, + // 当前加载数量 + percentage: 0, + // 是否重置当前画布位置 + rePositionCanvas: false, + // 防止值不存在 + ...storageChartLayout + }), + getters: { + getLayers(): boolean { + return this.layers + }, + getCharts(): boolean { + return this.charts + }, + getDetails(): boolean { + return this.details + }, + getChartType(): ChartModeEnum { + return this.chartType + }, + getLayerType(): LayerModeEnum { + return this.layerType + }, + getPercentage(): number { + return this.percentage + }, + getRePositionCanvas(): boolean { + return this.rePositionCanvas + } + }, + actions: { + setItem(key: T, value: K): void { + this.$patch(state => { + state[key] = value + }) + // 存储本地 + setLocalStorage(GO_CHART_LAYOUT_STORE, this.$state) + // 这里需要标记重置画布位置 + this.rePositionCanvas = true; + // 重新计算拖拽区域缩放比例 + setTimeout(() => { + chartEditStore.computedScale() + }, 500) + }, + setItemUnHandle(key: T, value: K): void { + this.$patch(state => { + state[key] = value + }) + } + } +}) diff --git a/src/store/modules/designStore/designStore.d.ts b/src/store/modules/designStore/designStore.d.ts new file mode 100644 index 0000000..5786028 --- /dev/null +++ b/src/store/modules/designStore/designStore.d.ts @@ -0,0 +1,19 @@ +import { ThemeEnum } from '@/enums/styleEnum' + +export type AppThemeColorType = { + CMYK: number[] + RGB: number[] + hex: string + name: string + pinyin: string +} + +export interface DesignStateType { + // 是否是深色主题 + darkTheme: boolean + // 主题名称 + themeName: ThemeEnum + //色号 + appTheme: string + appThemeDetail: AppThemeColorType | null +} diff --git a/src/store/modules/designStore/designStore.ts b/src/store/modules/designStore/designStore.ts new file mode 100644 index 0000000..d6a54bf --- /dev/null +++ b/src/store/modules/designStore/designStore.ts @@ -0,0 +1,51 @@ +import { defineStore } from 'pinia' +import { theme } from '@/settings/designSetting' +import { DesignStateType, AppThemeColorType } from './designStore.d' +import { setLocalStorage, getLocalStorage } from '@/utils' +import { StorageEnum } from '@/enums/storageEnum' +import { ThemeEnum } from '@/enums/styleEnum' + +const { GO_DESIGN_STORE } = StorageEnum + +const { darkTheme, appTheme, appThemeDetail } = theme + +const storageDesign = getLocalStorage(GO_DESIGN_STORE) + +export const useDesignStore = defineStore({ + id: 'useDesignStore', + state: (): DesignStateType => + storageDesign || { + // 是否暗黑 + darkTheme, + // 主题名称 + themeName: (darkTheme && ThemeEnum.DARK) || ThemeEnum.LIGHT, + // 颜色色号 + appTheme, + appThemeDetail, + }, + getters: { + getDarkTheme(e): boolean { + return this.darkTheme + }, + getAppTheme(): string { + return this.appTheme + }, + getAppThemeDetail(): AppThemeColorType | null { + return this.appThemeDetail + } + }, + actions: { + // 切换主题 + changeTheme(): void { + this.darkTheme = !this.darkTheme + this.themeName = this.darkTheme ? ThemeEnum.DARK : ThemeEnum.LIGHT + setLocalStorage(GO_DESIGN_STORE, this.$state) + }, + // 设置颜色 + setAppColor(color: AppThemeColorType): void { + this.appTheme = color.hex + this.appThemeDetail = color + setLocalStorage(GO_DESIGN_STORE, this.$state) + } + } +}) \ No newline at end of file diff --git a/src/store/modules/langStore/langStore.d.ts b/src/store/modules/langStore/langStore.d.ts new file mode 100644 index 0000000..0d71c8d --- /dev/null +++ b/src/store/modules/langStore/langStore.d.ts @@ -0,0 +1,5 @@ +import { LangEnum } from '@/enums/styleEnum' +export interface LangStateType { + // 当前语言 + lang: LangEnum, +} diff --git a/src/store/modules/langStore/langStore.ts b/src/store/modules/langStore/langStore.ts new file mode 100644 index 0000000..2b7d270 --- /dev/null +++ b/src/store/modules/langStore/langStore.ts @@ -0,0 +1,36 @@ +import { defineStore } from 'pinia' +import { lang } from '@/settings/designSetting' +import { LangStateType } from './langStore.d' +import { LangEnum } from '@/enums/styleEnum' +import { setLocalStorage, getLocalStorage, reloadRoutePage } from '@/utils' +import { StorageEnum } from '@/enums/storageEnum' +import { useSettingStore } from '@/store/modules/settingStore/settingStore' + +const { GO_LANG_STORE } = StorageEnum +const storageLang: LangStateType = getLocalStorage(GO_LANG_STORE) + +// 语言 +export const useLangStore = defineStore({ + id: 'useLangStore', + state: (): LangStateType => + storageLang || { + lang + }, + getters: { + getLang(): LangEnum { + return this.lang + } + }, + actions: { + changeLang(lang: LangEnum): void { + const settingStore = useSettingStore() + if (this.lang === lang) return + this.lang = lang + setLocalStorage(GO_LANG_STORE, this.$state) + + if (settingStore.getChangeLangReload) { + reloadRoutePage() + } + } + } +}) diff --git a/src/store/modules/packagesStore/packagesStore.d.ts b/src/store/modules/packagesStore/packagesStore.d.ts new file mode 100644 index 0000000..3dcbf54 --- /dev/null +++ b/src/store/modules/packagesStore/packagesStore.d.ts @@ -0,0 +1,8 @@ +import { PackagesType, ConfigType } from '@/packages/index.d' + +export { ConfigType } + +export { PackagesType } +export interface PackagesStoreType { + packagesList: PackagesType +} diff --git a/src/store/modules/packagesStore/packagesStore.ts b/src/store/modules/packagesStore/packagesStore.ts new file mode 100644 index 0000000..0e7254d --- /dev/null +++ b/src/store/modules/packagesStore/packagesStore.ts @@ -0,0 +1,16 @@ +import { defineStore } from 'pinia' +import { PackagesStoreType, PackagesType } from './packagesStore.d' +import { packagesList } from '@/packages/index' + +// 组件 pakages +export const usePackagesStore = defineStore({ + id: 'usePackagesStore', + state: (): PackagesStoreType => ({ + packagesList: Object.freeze(packagesList) + }), + getters: { + getPackagesList(): PackagesType { + return this.packagesList + } + } +}) diff --git a/src/store/modules/settingStore/settingStore.d.ts b/src/store/modules/settingStore/settingStore.d.ts new file mode 100644 index 0000000..09ba684 --- /dev/null +++ b/src/store/modules/settingStore/settingStore.d.ts @@ -0,0 +1,31 @@ +export enum ToolsStatusEnum { + DOCK = 'dock', + ASIDE = 'aside', +} + +export enum SettingStoreEnums { + // 拖拽页面左侧表单分类只有一项的时候是否隐藏 + HIDE_PACKAGE_ONE_CATEGORY = 'hidePackageOneCategory', + // 切换语言是否进行路由刷新 + CHANGE_LANG_RELOAD = 'changeLangReload', + // 侧边栏折叠是否隐藏全部 + ASIDE_ALL_COLLAPSED = 'asideAllCollapsed', + // 图表移动时按方向键移动的距离 + CHART_MOVE_DISTANCE = 'chartMoveDistance', + // 图表拖拽时的吸附距离(px) + CHART_ALIGN_RANGE = 'chartAlignRange', + // 图表工具栏状态(侧边工具状态) + CHART_TOOLS_STATUS = 'chartToolsStatus', + // 图表工具栏状态隐藏 + CHART_TOOLS_STATUS_HIDE = 'chartToolsStatusHide' +} + +export interface SettingStoreType { + [SettingStoreEnums.HIDE_PACKAGE_ONE_CATEGORY]: boolean + [SettingStoreEnums.CHANGE_LANG_RELOAD]: boolean + [SettingStoreEnums.ASIDE_ALL_COLLAPSED]: boolean + [SettingStoreEnums.CHART_MOVE_DISTANCE]: number + [SettingStoreEnums.CHART_ALIGN_RANGE]: number + [SettingStoreEnums.CHART_TOOLS_STATUS]: ToolsStatusEnum + [SettingStoreEnums.CHART_TOOLS_STATUS_HIDE]: boolean +} diff --git a/src/store/modules/settingStore/settingStore.ts b/src/store/modules/settingStore/settingStore.ts new file mode 100644 index 0000000..9e65311 --- /dev/null +++ b/src/store/modules/settingStore/settingStore.ts @@ -0,0 +1,54 @@ +import { defineStore } from 'pinia' +import { systemSetting } from '@/settings/systemSetting' +import { asideCollapsedWidth } from '@/settings/designSetting' +import { SettingStoreType, ToolsStatusEnum } from './settingStore.d' +import { setLocalStorage, getLocalStorage } from '@/utils' +import { StorageEnum } from '@/enums/storageEnum' +const { GO_SETTING_STORE } = StorageEnum + +const storageSetting: SettingStoreType = getLocalStorage( + GO_SETTING_STORE +) + +// 全局设置 +export const useSettingStore = defineStore({ + id: 'useSettingStore', + state: (): SettingStoreType => storageSetting || systemSetting, + getters: { + getHidePackageOneCategory(): boolean { + return this.hidePackageOneCategory + }, + getChangeLangReload(): boolean { + return this.changeLangReload + }, + getAsideAllCollapsed(): boolean { + return this.asideAllCollapsed + }, + getAsideCollapsedWidth(): number { + return this.asideAllCollapsed ? 0 : asideCollapsedWidth + }, + getChartMoveDistance(): number { + return this.chartMoveDistance + }, + getChartAlignRange(): number { + return this.chartAlignRange + }, + getChartToolsStatus(): ToolsStatusEnum { + return this.chartToolsStatus + }, + getChartToolsStatusHide(): boolean { + return this.chartToolsStatusHide + }, + }, + actions: { + setItem( + key: T, + value: K + ): void { + this.$patch(state => { + state[key] = value + }) + setLocalStorage(GO_SETTING_STORE, this.$state) + } + } +}) diff --git a/src/store/modules/systemStore/systemStore.d.ts b/src/store/modules/systemStore/systemStore.d.ts new file mode 100644 index 0000000..f82629e --- /dev/null +++ b/src/store/modules/systemStore/systemStore.d.ts @@ -0,0 +1,31 @@ +export enum SystemStoreUserInfoEnum { + USER_TOKEN = 'userToken', + TOKEN_NAME = 'tokenName', + USER_ID = 'userId', + USER_NAME = 'userName', + NICK_NAME = 'nickName', +} + +export interface UserInfoType { + [SystemStoreUserInfoEnum.USER_TOKEN]?: string, + [SystemStoreUserInfoEnum.TOKEN_NAME]?: string, + [SystemStoreUserInfoEnum.USER_ID]?: number, + [SystemStoreUserInfoEnum.USER_NAME]?: string, + [SystemStoreUserInfoEnum.NICK_NAME]?: string, +} + +export interface TenantInfoType { + tenantId?: number, +} + +export enum SystemStoreEnum { + // 用户 + USER_INFO = 'userInfo', + // 请求 + TENANT_INFO = 'tenantInfo', +} + +export interface SystemStoreType { + [SystemStoreEnum.USER_INFO]: UserInfoType + [SystemStoreEnum.TENANT_INFO]: TenantInfoType +} diff --git a/src/store/modules/systemStore/systemStore.ts b/src/store/modules/systemStore/systemStore.ts new file mode 100644 index 0000000..7683213 --- /dev/null +++ b/src/store/modules/systemStore/systemStore.ts @@ -0,0 +1,40 @@ +import { defineStore } from 'pinia' +import { SystemStoreType, UserInfoType, TenantInfoType } from './systemStore.d' +import { setLocalStorage, getLocalStorage } from '@/utils' +import { StorageEnum } from '@/enums/storageEnum' + +const { GO_SYSTEM_STORE } = StorageEnum + +const storageSystem: SystemStoreType = getLocalStorage(GO_SYSTEM_STORE) + +// 系统数据记录 +export const useSystemStore = defineStore({ + id: 'useSystemStore', + state: (): SystemStoreType => storageSystem || { + userInfo: { + userId: undefined, + userName: undefined, + userToken: undefined, + nickName: undefined + }, + tenantInfo: { + tenantId: undefined + } + }, + getters: { + getUserInfo(): UserInfoType { + return this.userInfo + }, + getTenantInfo(): TenantInfoType { + return this.tenantInfo + } + }, + actions: { + setItem(key: T, value: K): void { + this.$patch(state => { + state[key] = value + }); + setLocalStorage(GO_SYSTEM_STORE, this.$state) + } + } +}) diff --git a/src/styles/common/_dark.scss b/src/styles/common/_dark.scss new file mode 100644 index 0000000..1c9ee92 --- /dev/null +++ b/src/styles/common/_dark.scss @@ -0,0 +1,36 @@ +@import './var.scss'; + +$dark: ( + // 文字颜色 + color: $--color-text-4, + //背景 + background-color: $--color-dark-bg-1, + background-color1: $--color-dark-bg-1, + background-color1-shallow: $--color-dark-bg-1-shallow, + background-color2: $--color-dark-bg-2, + background-color2-shallow: $--color-dark-bg-2-shallow, + background-color3: $--color-dark-bg-3, + background-color3-shallow: $--color-dark-bg-3-shallow, + background-color4: $--color-dark-bg-4, + background-color4-shallow: $--color-dark-bg-4-shallow, + background-color5: $--color-dark-bg-5, + background-color5-shallow: $--color-dark-bg-5-shallow, + // 毛玻璃背景 + filter-color: $--filter-color-login-dark, + filter-color-shallow: $--filter-color-login-dark-shallow, + //渐变背景 + background-image: + linear-gradient(120deg, $--color-dark-bg-1 0%, $--color-dark-bg-1 100%), + // 斑点背景 + background-point: + ( + linear-gradient($--color-dark-bg-1 14px, transparent 0), + linear-gradient(90deg, transparent 14px, $--color-text-2 0) + ), + // hover 边框颜色 + hover-border-color: $--color-dark-bg-5, + hover-border-color-shallow: $--color-dark-bg-3, + // 阴影 + box-shadow: 0 8px 10px #1e1e1e1f + +); diff --git a/src/styles/common/_light.scss b/src/styles/common/_light.scss new file mode 100644 index 0000000..4e91969 --- /dev/null +++ b/src/styles/common/_light.scss @@ -0,0 +1,37 @@ +@import './var.scss'; + +$light: ( + // 文字颜色 + color: $--color-text, + // aside 背景 + aside-background-color: $--color-light-bg-1, + //背景 + background-color: $--color-light-bg-3, + background-color1: $--color-light-bg-1, + background-color1-shallow: $--color-light-bg-1-shallow, + background-color2: $--color-light-bg-2, + background-color2-shallow: $--color-light-bg-2-shallow, + background-color3: $--color-light-bg-3, + background-color3-shallow: $--color-light-bg-3-shallow, + background-color4: $--color-light-bg-4, + background-color4-shallow: $--color-light-bg-4-shallow, + background-color5: $--color-light-bg-5, + background-color5-shallow: $--color-light-bg-5-shallow, + // 毛玻璃背景 + filter-color: $--filter-color-login-light, + filter-color-shallow: $--filter-color-login-light-shallow, + //渐变背景 + background-image: + linear-gradient(120deg, $--color-light-bg 0%, $--color-light-bg 100%), + // 斑点背景 + background-point: + ( + linear-gradient($--color-light-bg-1 14px, transparent 0), + linear-gradient(90deg, transparent 14px, $--color-dark-bg-5 0) + ), + // hover 边框颜色 + hover-border-color: $--color-light-bg-4, + hover-border-color-shallow: $--color-light-bg-3, + // 阴影 + box-shadow: 0 8px 10px #00000012 +); diff --git a/src/styles/common/animation.scss b/src/styles/common/animation.scss new file mode 100644 index 0000000..5f69c7d --- /dev/null +++ b/src/styles/common/animation.scss @@ -0,0 +1,68 @@ +// 闪烁 +.go-animation-twinkle { + animation: twinkle 2s ease; + animation-iteration-count: infinite; + opacity: 1; +} +@keyframes twinkle { + 0% { + opacity: 1; + } + 50% { + opacity: 0.5; + } + 100% { + opacity: 1; + } +} + +// 淡入淡出 +.v-modal-enter { + animation: v-modal-in 0.2s ease; +} + +.v-modal-leave { + animation: v-modal-out 0.2s ease forwards; +} + +@keyframes v-modal-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + +@keyframes v-modal-out { + 0% { + opacity: 1; + } + 100% { + opacity: 0; + } +} + +// 渐变 +.fade-enter-from, +.fade-leave-to { + opacity: 0; +} + +.fade-enter-active, +.fade-leave-active { + transition: opacity .2s ease; +} + +// 移动动画 +.list-complete-item { + transition: all 1s; +} +.list-complete-enter-from, +.list-complete-leave-to { + opacity: 0; + transform: translateY(30px); +} +.list-complete-leave-active { + position: absolute; +} diff --git a/src/styles/common/format.scss b/src/styles/common/format.scss new file mode 100644 index 0000000..8fefec9 --- /dev/null +++ b/src/styles/common/format.scss @@ -0,0 +1,23 @@ +body { + overflow: hidden; +} + +* { + list-style: none; +} +/* 设置滚动条的样式 */ +::-webkit-scrollbar { + width: 8px; + height: 8px; +} +/* 滚动槽 */ +::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0); + border-radius: 2px; +} +/* 滚动条滑块 */ +::-webkit-scrollbar-thumb { + border-radius: 4px; + background: #a3a3a3; +} + diff --git a/src/styles/common/mixins/config.scss b/src/styles/common/mixins/config.scss new file mode 100644 index 0000000..3be6d24 --- /dev/null +++ b/src/styles/common/mixins/config.scss @@ -0,0 +1,4 @@ +$namespace: 'go'; +$theme-light: 'light'; +$theme-dark: 'dark'; +$state-prefix: 'is-'; diff --git a/src/styles/common/mixins/function.scss b/src/styles/common/mixins/function.scss new file mode 100644 index 0000000..e7023db --- /dev/null +++ b/src/styles/common/mixins/function.scss @@ -0,0 +1,3 @@ +@function themed($key) { + @return map-get($theme-map, $key); +} \ No newline at end of file diff --git a/src/styles/common/mixins/mixins.scss b/src/styles/common/mixins/mixins.scss new file mode 100644 index 0000000..ec6f2cc --- /dev/null +++ b/src/styles/common/mixins/mixins.scss @@ -0,0 +1,78 @@ +@import './config.scss'; +@import './function.scss'; +@import '../theme.scss'; + +@mixin go($block) { + $B: $namespace + '-' + $block; + .#{$B} { + @content; + } +} + +@mixin goId($block) { + $B: $namespace + '-' + $block; + ##{$B} { + @content; + } +} + +@mixin deep() { + :deep() { + @content; + } +} + +@mixin when($state) { + @at-root { + &.#{$state-prefix + $state} { + @content; + } + } +} + +@mixin themeify { + @each $theme-name, $theme-map in $themes { + $theme-map: $theme-map !global; + [data-theme='#{$theme-name}'] & { + @content; + } + } +} + +@mixin fetch-theme($param) { + @include themeify { + #{$param}: themed($param); + } +} + +@mixin fetch-theme-custom ($key, $value) { + @include themeify { + #{$key}: themed($value); + } +} + +//获取背景颜色 +@mixin fetch-bg-color($target) { + @include themeify { + background-color: themed($target); + } +} + +//获取背景渐变颜色 +@mixin background-image($target) { + @include themeify { + background-image: themed($target); + } +} + +//设置边框颜色 +@mixin fetch-border-color($target) { + @include themeify { + border-color: themed($target); + } +} +@mixin hover-border-color($target) { + @include themeify { + border: 1px solid themed($target); + } +} diff --git a/src/styles/common/style.scss b/src/styles/common/style.scss new file mode 100644 index 0000000..13dee27 --- /dev/null +++ b/src/styles/common/style.scss @@ -0,0 +1,127 @@ +@import "./var.scss"; +@import "./format.scss"; +@import "./animation.scss"; +@import "./mixins/mixins.scss"; + +// 过度 +.go-transition { + transition: all 0.4s; +} + +.go-transition-quick { + transition: all 0.2s; +} + +.go-flex-center { + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} + +.go-flex-items-center { + display: flex; + align-items: center; + text-align: center; +} + +.go-flex-no-wrap { + flex-wrap: nowrap !important; +} + +.go-absolute-center { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + +// cursor 小手 +.go-cursor-pointer { + cursor: pointer; +} + +// IE盒模型 +.go-boderbox { + box-sizing: border-box; +} + +// 毛玻璃 +.go-background-filter { + backdrop-filter: $--filter-blur-base; + @include fetch-bg-color("filter-color"); + box-shadow: $--border-shadow; +} + +// 毛玻璃 +.go-background-filter-shallow { + backdrop-filter: $--filter-blur-base; + @include fetch-bg-color("filter-color-shallow"); + box-shadow: $--border-shadow; +} + +// 边框圆角 +.go-border-radius { + border-radius: $--border-radius-base; + overflow: hidden; +} + +// 背景斑点需配合 @mixin background-image 使用 +.go-point-bg { + @include fetch-theme-custom("background-color", "background-color1"); + background-size: 15px 15px, 15px 15px; +} + +// 省略号 +.go-ellipsis-1 { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + word-break: break-all; +} + +// class:m-1 => margin:1em +// class:mt-1 => margin-top:1em +// m-0|mt-0|mx-0|my-0|p-0|pt-0|... + +@each $typekey, $type in $spacing-types { + //.m-1 + @each $sizekey, $size in $spacing-sizes { + .go-#{$typekey}-#{$sizekey} { + #{$type}: $size * $spacing-base-size; + } + } + + //.mx-1 + @each $sizekey, $size in $spacing-sizes { + .go-#{$typekey}x-#{$sizekey} { + #{$type}-left: $size * $spacing-base-size; + #{$type}-right: $size * $spacing-base-size; + } + + .go-#{$typekey}y-#{$sizekey} { + #{$type}-top: $size * $spacing-base-size; + #{$type}-bottom: $size * $spacing-base-size; + } + } + + //.mt-1 + @each $directionkey, $direction in $spacing-directions { + @each $sizekey, $size in $spacing-sizes { + .go-#{$typekey}#{$directionkey}-#{$sizekey} { + #{$type}-#{$direction}: $size * $spacing-base-size; + } + } + } + + .go-#{$typekey} { + #{$type}: 0 !important; + } +} + +.go-d-inline-block { + display: inline-block; +} +.go-d-block { + display: block; +} diff --git a/src/styles/common/theme.scss b/src/styles/common/theme.scss new file mode 100644 index 0000000..74cd333 --- /dev/null +++ b/src/styles/common/theme.scss @@ -0,0 +1,10 @@ +@import './mixins/config.scss'; +@import './_dark.scss'; +@import './_light.scss'; + +$themes: ( + // 亮白 + #{$theme-light}: $light, + // 暗黑 + #{$theme-dark}: $dark +); diff --git a/src/styles/common/var.scss b/src/styles/common/var.scss new file mode 100644 index 0000000..ee4ded0 --- /dev/null +++ b/src/styles/common/var.scss @@ -0,0 +1,87 @@ +// 颜色 +$--color-red: #fc625d; +$--color-warn: #fcbc40; +$--color-success: #34c749; + +// 文字 +$--color-text: #1d2129; +$--color-text-1: #4e5969; +$--color-text-2: #86909c; +$--color-text-3: #c9cdd4; +$--color-text-4: #f2f3f5; + +//.mt-1 => margin top +//spacing +$spacing-base-size: 1em; + +$spacing-types: ( + m: margin, + p: padding, +); + +$spacing-directions: ( + t: top, + r: right, + b: bottom, + l: left, +); + +$spacing-sizes: ( + 0: 0, + 1: 0.25, + 2: 0.5, + 3: 1, + 4: 1.5, + 5: 2.5, +); + +// 变亮值 +$--light-shalow: 2%; + +// 白色 +$--color-light-bg: #fff; +$--color-light-bg-1: #fafafc; +$--color-light-bg-1-shallow: lighten($--color-light-bg-1, $--light-shalow); +$--color-light-bg-2: #f2f3f5; +$--color-light-bg-2-shallow: lighten($--color-light-bg-2, $--light-shalow); +$--color-light-bg-3: #e5e6eb; +$--color-light-bg-3-shallow: lighten($--color-light-bg-3, $--light-shalow); +$--color-light-bg-4: #e3e3e4; +$--color-light-bg-4-shallow: lighten($--color-light-bg-4, $--light-shalow); +$--color-light-bg-5: #bebebe; +$--color-light-bg-5-shallow: lighten($--color-light-bg-5, $--light-shalow); + +// 变暗值 +$--dark-shalow: 2%; + +// 黑色 +$--color-dark-black: #000; +$--color-dark-bg-1: #18181c; +$--color-dark-bg-1-shallow: darken($--color-dark-bg-1, $--dark-shalow); +$--color-dark-bg-2: #232324; +$--color-dark-bg-2-shallow: darken($--color-dark-bg-2, $--dark-shalow); +$--color-dark-bg-3: #2a2a2b; +$--color-dark-bg-3-shallow: darken($--color-dark-bg-3, $--dark-shalow); +$--color-dark-bg-4: #313132; +$--color-dark-bg-4-shallow: darken($--color-dark-bg-4, $--dark-shalow); +$--color-dark-bg-5: #373739; +$--color-dark-bg-5-shallow: darken($--color-dark-bg-5, $--dark-shalow); + +// 最大宽度 +$--max-width: 1920px; +// 顶部距离 +$--header-height: 60px; +// 底部距离 +$--footer-height: 50px; +// 模糊 +$--filter-blur-base: blur(20px); +// 毛玻璃 +$--filter-color-login-dark: rgba(35,35,36, 0.7); +$--filter-color-login-dark-shallow: rgba(35,35,36, 0.3); +$--filter-color-login-light: rgba(240, 240, 240, 0.7); +$--filter-color-login-light-shallow: rgba(240, 240, 240, 0.3); + +// 边框 +$--border-radius-base: 8px; +// 阴影 +$--border-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); diff --git a/src/styles/pages/index.scss b/src/styles/pages/index.scss new file mode 100644 index 0000000..b8f7272 --- /dev/null +++ b/src/styles/pages/index.scss @@ -0,0 +1,9 @@ +// 页面全局样式 +// 去除高德地图 logo +.amap-logo { + display: none !important; + opacity: 0 !important; +} +.amap-copyright { + opacity: 0 !important; +} diff --git a/src/utils/components.ts b/src/utils/components.ts new file mode 100644 index 0000000..6d07f94 --- /dev/null +++ b/src/utils/components.ts @@ -0,0 +1,30 @@ +import { defineAsyncComponent, AsyncComponentLoader } from 'vue' +import { AsyncLoading, AsyncSkeletonLoading } from '@/components/GoLoading' + +/** + * * 动态注册组件 + */ +export const componentInstall = (key:string, node: T) => { + if(!window['$vue'].component(key) && node) { + window['$vue'].component(key, node) + } +} + +/** + * * 异步加载组件 + * @param loader + * @returns + */ +export const loadAsyncComponent = (loader: AsyncComponentLoader) => + defineAsyncComponent({ + loader, + loadingComponent: AsyncLoading, + delay: 20, + }) + +export const loadSkeletonAsyncComponent = (loader: AsyncComponentLoader) => + defineAsyncComponent({ + loader, + loadingComponent: AsyncSkeletonLoading, + delay: 20, + }) diff --git a/src/utils/crypto.ts b/src/utils/crypto.ts new file mode 100644 index 0000000..f3530da --- /dev/null +++ b/src/utils/crypto.ts @@ -0,0 +1,34 @@ +import CryptoJS from 'crypto-js' +import { isString } from './type' + +const KEY = 'mt' + +/** + * * 加密 + * @param data { string } + * @returns + */ +export const cryptoEncode = (data: string): string => { + if (!isString(data)) return '' + // 加密 + const encryptedData = CryptoJS.AES.encrypt(data, KEY, { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7 + }).toString() + return encryptedData +} + +/** + * * 解密 + * @param data { string } + * @returns + */ +export const cryptoDecode = (data: string): string => { + if (!isString(data)) return '' + // 解密 + const decryptedData = CryptoJS.AES.decrypt(data, KEY, { + mode: CryptoJS.mode.ECB, + padding: CryptoJS.pad.Pkcs7 + }) + return decryptedData.toString(CryptoJS.enc.Utf8) +} diff --git a/src/utils/file.ts b/src/utils/file.ts new file mode 100644 index 0000000..4a10bd3 --- /dev/null +++ b/src/utils/file.ts @@ -0,0 +1,116 @@ +/** + * * base64转file + * @param dataurl + * @param fileName + * @returns + */ +export const base64toFile = (dataurl: string, fileName: string) => { + let dataArr = dataurl.split(","), + mime = (dataArr as any[])[0].match(/:(.*?);/)[1], + bstr = atob(dataArr[1]), + n = bstr.length, + u8arr = new Uint8Array(n); + while (n--) { + u8arr[n] = bstr.charCodeAt(n); + } + return new File([u8arr], fileName, { type: mime }); +} + +/** + * * file转url + */ + export const fileToUrl = (file: File): string => { + const Url = URL || window.URL || window.webkitURL + const ImageUrl = Url.createObjectURL(file) + return ImageUrl +} + +/** + * * url转file + */ + export const urlToFile = (fileUrl: string, fileName = `${new Date().getTime()}`): File => { + const dataArr = fileUrl.split(',') + const mime = (dataArr as any[])[0].match(/:(.*);/)[1] + const originStr = atob(dataArr[1]) + return new File([originStr], `${fileName}`, { type: mime }) +} + +/** + * * file转base64 + * @param file 文件数据 + * @param callback 回调函数 + */ +export const fileTobase64 = (file: File, callback: Function) => { + let reader = new FileReader() + reader.readAsDataURL(file) + reader.onload = function (e: ProgressEvent) { + if (e.target) { + let base64 = e.target.result + callback(base64) + } + } +} + +/** + * * canvas转file + * @param canvas + */ +export const canvastoFile = (canvas: HTMLCanvasElement, name?: string) => { + const dataurl = canvas.toDataURL('image/png') + return urlToFile(dataurl, name) +} + +/** + * *获取上传的文件数据 + * @param { File } file 文件对象 + */ +export const readFile = (file: File) => { + return new Promise((resolve: Function) => { + try { + const reader = new FileReader() + reader.onload = (evt: ProgressEvent) => { + if (evt.target) { + resolve(evt.target.result) + } + } + reader.readAsText(file) + } catch (error) { + window['$message'].error('文件读取失败!') + } + }) +} + +/** + * * 通过 a 标签下载数据 + * @param url + * @param filename + * @param fileSuffix + */ +export const downloadByA = (url: string, filename = new Date().getTime(), fileSuffix?: string) => { + const ele = document.createElement('a') // 创建下载链接 + ele.download = `${filename}.${fileSuffix}` //设置下载的名称 + ele.style.display = 'none' // 隐藏的可下载链接 + // 字符内容转变成blob地址 + ele.href = url + // 绑定点击时间 + document.body.appendChild(ele) + ele.click() + // 然后移除 + document.body.removeChild(ele) +} + +/** + * * 下载数据 + * @param { string } content 数据内容 + * @param { ?string } filename 文件名称(默认随机字符) + * @param { ?string } fileSuffix 文件名称(默认随机字符) + */ +export const downloadTextFile = ( + content: string, + filename = new Date().getTime(), + fileSuffix?: string +) => { + // 字符内容转变成blob地址 + const blob = new Blob([content]) + downloadByA(URL.createObjectURL(blob), filename, fileSuffix) +} \ No newline at end of file diff --git a/src/utils/http.ts b/src/utils/http.ts new file mode 100644 index 0000000..8e92db7 --- /dev/null +++ b/src/utils/http.ts @@ -0,0 +1,6 @@ +/** + * * 请求失败统一处理 + */ +export const httpErrorHandle = () => { + window['$message'].error(window['$t']('http.error_message')) +} \ No newline at end of file diff --git a/src/utils/index.ts b/src/utils/index.ts new file mode 100644 index 0000000..3f01578 --- /dev/null +++ b/src/utils/index.ts @@ -0,0 +1,10 @@ +export * from '@/utils/utils' +export * from '@/utils/crypto' +export * from '@/utils/router' +export * from '@/utils/storage' +export * from '@/utils/style' +export * from '@/utils/plugin' +export * from '@/utils/components' +export * from '@/utils/type' +export * from '@/utils/file' +export * from '@/utils/http' \ No newline at end of file diff --git a/src/utils/plugin.ts b/src/utils/plugin.ts new file mode 100644 index 0000000..34e8036 --- /dev/null +++ b/src/utils/plugin.ts @@ -0,0 +1,129 @@ +import { icon } from '@/plugins' +import { DialogEnum } from '@/enums/pluginEnum' +import { dialogIconSize } from '@/settings/designSetting' +import { maskClosable } from '@/settings/designSetting' +import { DialogReactive } from 'naive-ui' +const { InformationCircleIcon } = icon.ionicons5 +import { renderIcon } from '@/utils' + +// * 开启加载 +export const loadingStart = () => { + window['$loading'].start() +} + +// * 加载结束 +export const loadingFinish = () => { + setTimeout(() => { + window['$loading'].finish() + }) +} + +// * 加载错误 +export const loadingError = () => { + setTimeout(() => { + window['$loading'].error() + }) +} + +/** + * * render 对话框 + * @param { Object} params 配置参数, 详见 https://www.naiveui.com/zh-CN/light/components/dialog + * ``` + * 最简易的 demo + * goDialog({ + * onPositiveCallback: () => {} + * }) + * ``` + */ + export const goDialog = ( + params: { + // 基本 + type?: DialogEnum + // 标题 + title?: string | (() => any) + // 提示 + message?: string + // 确定提示词 + positiveText?: string + // 取消提示词 + negativeText?: string + // 是否不展示取消按钮 + closeNegativeText?: boolean, + // 点击遮罩是否关闭 + isMaskClosable?: boolean + // 回调 + onPositiveCallback: Function + onNegativeCallback?: Function + // 异步 + promise?: boolean + promiseResCallback?: Function + promiseRejCallback?: Function + [T:string]: any + } +) => { + const { + type, + title, + message, + positiveText, + negativeText, + closeNegativeText, + isMaskClosable, + onPositiveCallback, + onNegativeCallback, + promise, + promiseResCallback, + promiseRejCallback + } = params + + const typeObj = { + // 自定义 + [DialogEnum.DELETE]: { + fn: window['$dialog'].warning, + message: message || '是否删除此数据?' + }, + // 原有 + [DialogEnum.WARNING]: { + fn: window['$dialog'].warning, + message: message || '是否执行此操作?' + }, + [DialogEnum.ERROR]: { + fn: window['$dialog'].error, + message: message || '是否执行此操作?' + }, + [DialogEnum.SUCCESS]: { + fn: window['$dialog'].success, + message: message || '是否执行此操作?' + } + } + + const dialog: DialogReactive = typeObj[type || DialogEnum.WARNING]['fn']({ + // 导入其余 NaiveUI 支持参数 + ...params, + title: title || '提示', + icon: renderIcon(InformationCircleIcon, { size: dialogIconSize }), + content: typeObj[type || DialogEnum.WARNING]['message'], + positiveText: positiveText || '确定', + negativeText: closeNegativeText ? undefined : (negativeText || '取消'), + // 是否通过遮罩关闭 + maskClosable: isMaskClosable || maskClosable, + onPositiveClick: async () => { + // 执行异步 + if (promise && onPositiveCallback) { + dialog.loading = true + try { + const res = await onPositiveCallback() + promiseResCallback && promiseResCallback(res) + } catch (err) { + promiseRejCallback && promiseRejCallback(err) + } + dialog.loading = false + return + } + onPositiveCallback && onPositiveCallback(dialog) + }, + onNegativeClick: async () => { + onNegativeCallback && onNegativeCallback(dialog) + } + }) +} diff --git a/src/utils/router.ts b/src/utils/router.ts new file mode 100644 index 0000000..0b9be12 --- /dev/null +++ b/src/utils/router.ts @@ -0,0 +1,213 @@ +import { useRoute } from 'vue-router' +import { ResultEnum, RequestHttpHeaderEnum } from '@/enums/httpEnum' +import { ErrorPageNameMap, PageEnum, PreviewEnum } from '@/enums/pageEnum' +import { docPath, giteeSourceCodePath } from '@/settings/pathConst' +import { SystemStoreEnum, SystemStoreUserInfoEnum } from '@/store/modules/systemStore/systemStore.d' +import { StorageEnum } from '@/enums/storageEnum' +import { clearLocalStorage, getLocalStorage, clearCookie } from './storage' +import router from '@/router' +import { logoutApi } from '@/api/path' + +/** + * * 根据名字跳转路由 + * @param pageName + * @param isReplace + * @param windowOpen + */ +export const routerTurnByName = ( + pageName: string, + isReplace?: boolean, + windowOpen?: boolean +) => { + if (windowOpen) { + const path = fetchPathByName(pageName, 'href') + openNewWindow(path) + return + } + if (isReplace) { + router.replace({ + name: pageName, + }) + return + } + router.push({ + name: pageName, + }) +} + +/** + * * 根据名称获取路由信息 + * @param pageName + * @param pageName + */ +export const fetchPathByName = (pageName: string, p?: string) => { + try { + const pathData = router.resolve({ + name: pageName, + }) + return p ? (pathData as any)[p] : pathData + } catch (error) { + window['$message'].warning('查询路由信息失败,请联系管理员!') + } +} + +/** + * * 根据路径跳转路由 + * @param path + * @param query + * @param isReplace + * @param windowOpen + */ +export const routerTurnByPath = ( + path: string, + query?: Array, + isReplace?: boolean, + windowOpen?: boolean +) => { + let fullPath = '' + if (query?.length) { + fullPath = `${path}/${query.join('/')}` + } + if (windowOpen) { + return openNewWindow(fullPath) + } + if (isReplace) { + router.replace({ + path: fullPath, + }) + return + } + router.push({ + path: fullPath, + }) +} + +/** + * * 错误页重定向 + * @param icon + * @returns + */ +export const redirectErrorPage = (code: ResultEnum) => { + if (!code) return false + const pageName = ErrorPageNameMap.get(code) + if (!pageName) return false + routerTurnByName(pageName) +} + +/** + * * 重新加载当前路由页面 + */ +export const reloadRoutePage = () => { + routerTurnByName(PageEnum.RELOAD_NAME) +} + +/** + * * 退出登录 + */ +export const logout = async () => { + try { + const res = await logoutApi() + if(res && res.code === ResultEnum.SUCCESS) { + window['$message'].success(window['$t']('global.logout_success')) + clearCookie(RequestHttpHeaderEnum.COOKIE) + clearLocalStorage(StorageEnum.GO_SYSTEM_STORE) + routerTurnByName(PageEnum.BASE_LOGIN_NAME) + } + } catch (error) { + window['$message'].success(window['$t']('global.logout_failure')) + } +} + +/** + * * 新开页面 + * @param url + */ +export const openNewWindow = (url: string) => { + return window.open(url, '_blank') +} + +/** + * * 打开项目文档 + * @param url + */ +export const openDoc = () => { + openNewWindow(docPath) +} + +/** + * * 打开码云仓库地址 + * @param url + */ +export const openGiteeSourceCode = () => { + openNewWindow(giteeSourceCodePath) +} + +/** + * * 判断是否是预览页 + * @returns boolean + */ +export const isPreview = () => { + return document.location.hash.includes('preview') +} + +/** + * * 获取当前路由下的参数 + * @returns object + */ +export const fetchRouteParams = () => { + try { + const route = useRoute() + return route.params + } catch (error) { + window['$message'].warning('查询路由信息失败,请联系管理员!') + } +} + +/** + * * 通过硬解析获取当前路由下的参数 + * @returns object + */ +export const fetchRouteParamsLocation = () => { + try { + return document.location.hash.split('/').pop() || '' + } catch (error) { + window['$message'].warning('查询路由信息失败,请联系管理员!') + return '' + } +} + +/** + * * 回到主页面 + * @param confirm + */ +export const goHome = () => { + routerTurnByName(PageEnum.BASE_HOME_NAME) +} + +/** + * * 判断是否登录 + * @return boolean + */ +export const loginCheck = () => { + try { + const info = getLocalStorage(StorageEnum.GO_SYSTEM_STORE) + if (!info) return false + if (info[SystemStoreEnum.USER_INFO][SystemStoreUserInfoEnum.USER_TOKEN]) { + return true + } + return false + } catch (error) { + return false + } +} + +/** + * * 预览地址 + * @returns + */ + export const previewPath = (id?: string | number) => { + const { origin, pathname } = document.location + const path = fetchPathByName(PreviewEnum.CHART_PREVIEW_NAME, 'href') + const previewPath = `${origin}${pathname}${path}/${id || fetchRouteParamsLocation()}` + return previewPath +} diff --git a/src/utils/storage.ts b/src/utils/storage.ts new file mode 100644 index 0000000..1827dfa --- /dev/null +++ b/src/utils/storage.ts @@ -0,0 +1,110 @@ +import { JSONStringify, JSONParse } from './utils' + +/** + * * 存储本地会话数据 + * @param k 键名 + * @param v 键值(无需stringiiy) + * @returns RemovableRef + */ +export const setLocalStorage = (k: string, v: T) => { + try { + window.localStorage.setItem(k, JSONStringify(v)) + } catch (error) { + return false + } +} + +/** + * * 获取本地会话数据 + * @param k 键名 + * @returns any + */ +export const getLocalStorage = (k: string) => { + const item = window.localStorage.getItem(k) + try { + return item ? JSONParse(item) : item + } catch (err) { + return item + } +} + +/** + * * 清除本地会话数据 + * @param name + */ +export const clearLocalStorage = (name: string) => { + window.localStorage.removeItem(name) +} + +/** + * * 存储临时会话数据 + * @param k 键名 + * @param v 键值 + * @returns RemovableRef + */ +export const setSessionStorage = (k: string, v: T) => { + try { + window.sessionStorage.setItem(k, JSON.stringify(v)) + } catch (error) { + return false + } +} + +/** + * * 获取临时会话数据 + * @returns any + */ +export const getSessionStorage: (k: string) => any = (k: string) => { + const item = window.sessionStorage.getItem(k) + try { + return item ? JSONParse(item) : item + } catch (err) { + return item + } +} + +/** + * * 清除本地会话数据 + * @param name + */ +export const clearSessioStorage = (name: string) => { + window.sessionStorage.removeItem(name) +} + +/** + * * 设置 cookie + * @param name 键名 + * @param cvalue 键值 + * @param exdays 过期时间 + */ +export const setCookie = (name: string, cvalue: string, exdays: number) => { + const d = new Date(); + d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000)); + const expires = "expires=" + d.toUTCString(); + document.cookie = name + "=" + cvalue + "; " + expires; +} + +/** + * * 获取 cookie + * @param cname 键名 + * @returns string + */ +export const getCookie = (cname: string) => { + const name = cname + "="; + const ca = document.cookie.split(';'); + for (let i = 0; i < ca.length; i++) { + let c = ca[i]; + while (c.charAt(0) == ' ') c = c.substring(1); + if (c.indexOf(name) != -1) return c.substring(name.length, c.length); + } + return ""; +} + +/** + * * 清除 cookie + * @param name 键名 + * @returns string + */ +export const clearCookie = (name: string) => { + setCookie(name, "", -1); +} diff --git a/src/utils/style.ts b/src/utils/style.ts new file mode 100644 index 0000000..8e8605d --- /dev/null +++ b/src/utils/style.ts @@ -0,0 +1,102 @@ +import Color from 'color' +import { useDesignStore } from '@/store/modules/designStore/designStore' +import { PickCreateComponentType } from '@/packages/index.d' +import { EditCanvasConfigType } from '@/store/modules/chartEditStore/chartEditStore.d' + +type AttrType = PickCreateComponentType<'attr'> +type StylesType = PickCreateComponentType<'styles'> + +// * 动画 +export const animationsClass = (animations: string[]) => { + if (animations.length) { + return `animate__animated animate__${animations[0]}` + } + return '' +} + +// * 滤镜 +export const getFilterStyle = (styles?: StylesType | EditCanvasConfigType) => { + if (!styles || !styles.filterShow) return {} + const { opacity, saturate, contrast, hueRotate, brightness } = styles + return { + opacity: opacity, + filter: `saturate(${saturate}) contrast(${contrast}) hue-rotate(${hueRotate}deg) brightness(${brightness})` + } +} + +// * 变换 +export const getTransformStyle = (styles: StylesType) => { + const { rotateZ, rotateX, rotateY, skewX, skewY } = styles + return { + transform: `rotateZ(${rotateZ || 0}deg) rotateX(${rotateX || 0}deg) rotateY(${rotateY || 0}deg) skewX(${ + skewX || 0 + }deg) skewY(${skewY || 0}deg)` + } +} + +// * 混合模式 +export const getBlendModeStyle = (styles: StylesType) => { + if (!styles || !styles.filterShow) return {} + const { blendMode } = styles + return { + 'mix-blend-mode': blendMode + } +} + +/** + * * hsla 转换 + * @param color 颜色 + * @param alpha 默认1 + * @returns + */ +export function alpha(color: string, alpha = 1) { + return Color(color).alpha(alpha).toString() +} + +/** + * * 颜色透明 + * rgba(10, 10, 10, 0.8) -> rgba(10, 10, 10, 0.4) + * @param color 颜色 + * @param concentration 0~1 浓度 + * @returns + */ +export function fade(color: string, fade: number) { + return Color(color).fade(fade).toString() +} + +/** + * * 颜色变亮 + * hsl(100, 50%, 10%) -> hsl(100, 50%, 50%) + * @param color 颜色 + * @param concentration 0~1 浓度 + * @returns + */ +export function lighten(color: string, concentration: number) { + return Color(color).lighten(concentration).toString() +} + +/** + * * 颜色变暗 + * hsl(100, 50%, 50%) -> hsl(100, 50%, 25%) + * @param color 颜色 + * @param concentration 0~1 浓度 + * @returns + */ +export function darken(color: string, concentration: number) { + return Color(color).darken(concentration).toString() +} + +/** + * * 修改主题色 + * @param themeName 主题名称 + * @returns + */ +export const setHtmlTheme = (themeName?: string) => { + const e = window.document.documentElement + if (themeName) { + e.setAttribute('data-theme', themeName) + return + } + const designStore = useDesignStore() + e.setAttribute('data-theme', designStore.themeName) +} diff --git a/src/utils/type.ts b/src/utils/type.ts new file mode 100644 index 0000000..7b86c02 --- /dev/null +++ b/src/utils/type.ts @@ -0,0 +1,33 @@ +import isObject from 'lodash/isObject' + +export function isString(p: any): p is string { + return typeof p === 'string' +} + +export function isNumber(p: any): p is number { + return typeof p === 'number' +} + +export function isBoolean(p: any): p is boolean { + return typeof p === 'boolean' +} + +export function isUndefined(p: any): p is undefined { + return typeof p === 'undefined' +} + +export function isNull(p: any): p is null { + return p === null +} + +export function isArray(p: any): p is [] { + return Array.isArray(p) +} + +export const toNumber = (number: number | string, toFixedNumber = 2) => { + return isString(number) ? parseFloat(parseFloat(number).toFixed(2)) : number +} + +export const toString = (str: any) => { + return isNumber(str) ? `${str}` : (isObject(str) ? JSON.stringify(str) : str) +} \ No newline at end of file diff --git a/src/utils/utils.ts b/src/utils/utils.ts new file mode 100644 index 0000000..281f806 --- /dev/null +++ b/src/utils/utils.ts @@ -0,0 +1,406 @@ +import { h } from 'vue' +import { NIcon } from 'naive-ui' +import screenfull from 'screenfull' +import throttle from 'lodash/throttle' +import Image_404 from '../assets/images/exception/image-404.png' +import html2canvas from 'html2canvas' +import { downloadByA } from './file' +import { toString } from './type' +import cloneDeep from 'lodash/cloneDeep' +import { WinKeyboard } from '@/enums/editPageEnum' +import { RequestHttpIntervalEnum, RequestParamsObjType } from '@/enums/httpEnum' +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { excludeParseEventKeyList } from '@/enums/eventEnum' + +/** + * * 判断是否是开发环境 + * @return { Boolean } + */ +export const isDev = () => { + return import.meta.env.DEV +} + +/** + * * 生成一个不重复的ID + * @param { Number } randomLength + */ +export const getUUID = (randomLength = 10) => { + return Number(Math.random().toString().substring(2, randomLength) + Date.now()).toString(36) +} + +/** + * * render 图标 + * @param icon 图标 + * @param set 设置项 + */ +export const renderIcon = (icon: any, set = {}) => { + return () => h(NIcon, set, { default: () => h(icon) }) +} +/** + * * render 语言 + * @param lang 语言标识 + * @param set 设置项 + * @param tag 要渲染成的标签 + */ +export const renderLang = (lang: string, set = {}, tag = 'span') => { + return () => h(tag, set, { default: () => window['$t'](lang) }) +} + +/** + * * 获取错误处理图片,默认 404 图 + * @returns url + */ +export const requireErrorImg = () => { + return Image_404 +} + +/** + * * 全屏操作函数 + * @param isFullscreen + * @param isEnabled + * @returns + */ +export const screenfullFn = (isFullscreen?: boolean, isEnabled?: boolean) => { + // 是否是全屏 + if (isFullscreen) return screenfull.isFullscreen + + // 是否支持全屏 + if (isEnabled) return screenfull.isEnabled + + if (screenfull.isEnabled) { + screenfull.toggle() + return + } + // TODO lang + window['$message'].warning('您的浏览器不支持全屏功能!') +} + +/** + * 修改元素位置 + * @param target 对象 + * @param x X轴 + * @param y Y轴 + */ +export const setComponentPosition = ( + target: CreateComponentType | CreateComponentGroupType, + x?: number, + y?: number +) => { + x && (target.attr.x = x) + y && (target.attr.y = y) +} + +/** + * * 设置元素属性 + * @param HTMLElement 元素 + * @param key 键名 + * @param value 键值 + */ +export const setDomAttribute = ( + HTMLElement: HTMLElement, + key: K, + value: V +) => { + if (HTMLElement) { + HTMLElement.style[key] = value + } +} + +/** + * * 判断是否是 mac + * @returns boolean + */ +export const isMac = () => { + return /macintosh|mac os x/i.test(navigator.userAgent) +} + +/** + * * 挂载监听 + */ +// eslint-disable-next-line no-undef +export const addEventListener = ( + target: HTMLElement | Document, + type: K, + listener: any, + delay?: number, + // eslint-disable-next-line no-undef + options?: boolean | AddEventListenerOptions | undefined +) => { + if (!target) return + target.addEventListener( + type, + throttle(listener, delay || 300, { + leading: true, + trailing: false + }), + options + ) +} + +/** + * * 卸载监听 + */ +// eslint-disable-next-line no-undef +export const removeEventListener = ( + target: HTMLElement | Document, + type: K, + listener: any +) => { + if (!target) return + target.removeEventListener(type, listener) +} + +/** + * * 截取画面为图片并下载 + * @param html 需要截取的 DOM + */ +export const canvasCut = (html: HTMLElement | null, callback?: Function) => { + if (!html) { + window['$message'].error('导出失败!') + if (callback) callback() + return + } + + html2canvas(html, { + backgroundColor: null, + allowTaint: true, + useCORS: true + }).then((canvas: HTMLCanvasElement) => { + window['$message'].success('导出成功!') + downloadByA(canvas.toDataURL(), undefined, 'png') + if (callback) callback() + }) +} + +/** + * * 函数过滤器 + * @param data 数据值 + * @param res 返回顶级对象 + * @param funcStr 函数字符串 + * @param isToString 是否转为字符串 + * @param errorCallBack 错误回调函数 + * @param successCallBack 成功回调函数 + * @returns + */ +export const newFunctionHandle = ( + data: any, + res: any, + funcStr?: string, + isToString?: boolean, + errorCallBack?: Function, + successCallBack?: Function +) => { + try { + if (!funcStr) return data + const fn = new Function('data', 'res', funcStr) + const fnRes = fn(cloneDeep(data), cloneDeep(res)) + const resHandle = isToString ? toString(fnRes) : fnRes + // 成功回调 + successCallBack && successCallBack(resHandle) + return resHandle + } catch (error) { + // 失败回调 + errorCallBack && errorCallBack(error) + return '函数执行错误' + } +} + +/** + * * 处理请求事件单位 + * @param num 时间间隔 + * @param unit RequestHttpIntervalEnum + * @return number 秒数 + */ +export const intervalUnitHandle = (num: number, unit: RequestHttpIntervalEnum) => { + switch (unit) { + // 秒 + case RequestHttpIntervalEnum.SECOND: + return num * 1000 + // 分 + case RequestHttpIntervalEnum.MINUTE: + return num * 1000 * 60 + // 时 + case RequestHttpIntervalEnum.HOUR: + return num * 1000 * 60 * 60 + // 天 + case RequestHttpIntervalEnum.DAY: + return num * 1000 * 60 * 60 * 24 + default: + return num * 1000 + } +} + +/** + * * 对象转换 cookie 格式 + * @param obj + * @returns string + */ +export const objToCookie = (obj: RequestParamsObjType) => { + if (!obj) return '' + + let str = '' + for (const key in obj) { + str += key + '=' + obj[key] + ';' + } + return str.substring(0, str.length - 1) +} + +/** + * * 设置按下键盘按键的底部展示 + * @param keyCode + * @returns + */ +export const setKeyboardDressShow = (keyCode?: number) => { + const code = new Map([ + [17, WinKeyboard.CTRL], + [32, WinKeyboard.SPACE] + ]) + + const dom = document.getElementById('keyboard-dress-show') + if (!dom) return + if (!keyCode) { + window.onKeySpacePressHold?.(false) + dom.innerText = '' + return + } + if (keyCode && code.has(keyCode)) { + if (keyCode == 32) window.onKeySpacePressHold?.(true) + dom.innerText = `按下了「${code.get(keyCode)}」键` + } +} + +/** + * * JSON序列化,支持函数和 undefined + * @param data + */ +export const JSONStringify = (data: T) => { + return JSON.stringify( + data, + (key, val) => { + // 处理函数丢失问题 + if (typeof val === 'function') { + return `${val}` + } + // 处理 undefined 丢失问题 + if (typeof val === 'undefined') { + return null + } + return val + }, + 2 + ) +} + +/** + * * JSON反序列化,支持函数和 undefined + * @param data + */ +export const JSONParse = (data: string) => { + return JSON.parse(data, (k, v) => { + if (excludeParseEventKeyList.includes(k)) return v + if (typeof v === 'string' && v.indexOf && (v.indexOf('function') > -1 || v.indexOf('=>') > -1)) { + return eval(`(function(){return ${v}})()`) + } else if (typeof v === 'string' && v.indexOf && (v.indexOf('return ') > -1)) { + const baseLeftIndex = v.indexOf('(') + if (baseLeftIndex > -1) { + const newFn = `function ${v.substring(baseLeftIndex)}` + return eval(`(function(){return ${newFn}})()`) + } + } + return v + }) +} + +/** + * * 修改顶部标题 + * @param title + */ +export const setTitle = (title?: string) => { + title && (document.title = title) +} + +/** + * 时间日期转换 + * @param date 当前时间,new Date() 格式 + * @param format 需要转换的时间格式字符串 + * @description format 字符串随意,如 `YYYY-mm、YYYY-mm-dd` + * @description format 季度:"YYYY-mm-dd HH:MM:SS QQQQ" + * @description format 星期:"YYYY-mm-dd HH:MM:SS WWW" + * @description format 几周:"YYYY-mm-dd HH:MM:SS ZZZ" + * @description format 季度 + 星期 + 几周:"YYYY-mm-dd HH:MM:SS WWW QQQQ ZZZ" + * @returns 返回拼接后的时间字符串 + */ +export function formatDate(date: Date, format: string): string { + const we = date.getDay() // 星期 + const z = getWeek(date) // 周 + const qut = Math.floor((date.getMonth() + 3) / 3).toString() // 季度 + const opt: { [key: string]: string } = { + 'Y+': date.getFullYear().toString(), // 年 + 'm+': (date.getMonth() + 1).toString(), // 月(月份从0开始,要+1) + 'd+': date.getDate().toString(), // 日 + 'H+': date.getHours().toString(), // 时 + 'M+': date.getMinutes().toString(), // 分 + 'S+': date.getSeconds().toString(), // 秒 + 'q+': qut // 季度 + } + // 中文数字 (星期) + const week: { [key: string]: string } = { + '0': '日', + '1': '一', + '2': '二', + '3': '三', + '4': '四', + '5': '五', + '6': '六' + } + // 中文数字(季度) + const quarter: { [key: string]: string } = { + '1': '一', + '2': '二', + '3': '三', + '4': '四' + } + if (/(W+)/.test(format)) + format = format.replace( + RegExp.$1, + RegExp.$1.length > 1 ? (RegExp.$1.length > 2 ? '星期' + week[we] : '周' + week[we]) : week[we] + ) + if (/(Q+)/.test(format)) + format = format.replace( + RegExp.$1, + RegExp.$1.length == 4 ? '第' + quarter[qut] + '季度' : quarter[qut] + ) + if (/(Z+)/.test(format)) + format = format.replace(RegExp.$1, RegExp.$1.length == 3 ? '第' + z + '周' : z + '') + for (const k in opt) { + const r = new RegExp('(' + k + ')').exec(format) + // 若输入的长度不为1,则前面补零 + if (r) + format = format.replace( + r[1], + RegExp.$1.length == 1 ? opt[k] : opt[k].padStart(RegExp.$1.length, '0') + ) + } + return format +} + +/** + * 获取当前日期是第几周 + * @param dateTime 当前传入的日期值 + * @returns 返回第几周数字值 + */ +export function getWeek(dateTime: Date): number { + const temptTime = new Date(dateTime.getTime()) + // 周几 + const weekday = temptTime.getDay() || 7 + // 周1+5天=周六 + temptTime.setDate(temptTime.getDate() - weekday + 1 + 5) + let firstDay = new Date(temptTime.getFullYear(), 0, 1) + const dayOfWeek = firstDay.getDay() + let spendDay = 1 + if (dayOfWeek != 0) spendDay = 7 - dayOfWeek + 1 + firstDay = new Date(temptTime.getFullYear(), 0, 1 + spendDay) + const d = Math.ceil((temptTime.valueOf() - firstDay.valueOf()) / 86400000) + const result = Math.ceil(d / 7) + return result +} diff --git a/src/views/chart/ContentBox/index.ts b/src/views/chart/ContentBox/index.ts new file mode 100644 index 0000000..97fd8f7 --- /dev/null +++ b/src/views/chart/ContentBox/index.ts @@ -0,0 +1,3 @@ +import ContentBox from './index.vue' + +export { ContentBox } diff --git a/src/views/chart/ContentBox/index.vue b/src/views/chart/ContentBox/index.vue new file mode 100644 index 0000000..8f7b5e5 --- /dev/null +++ b/src/views/chart/ContentBox/index.vue @@ -0,0 +1,184 @@ + + + + + diff --git a/src/views/chart/ContentCharts/components/ChartsItemBox/index.ts b/src/views/chart/ContentCharts/components/ChartsItemBox/index.ts new file mode 100644 index 0000000..e9fe1d4 --- /dev/null +++ b/src/views/chart/ContentCharts/components/ChartsItemBox/index.ts @@ -0,0 +1,3 @@ +import ChartsItemBox from './index.vue' + +export { ChartsItemBox } diff --git a/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue b/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue new file mode 100644 index 0000000..7ca3b1b --- /dev/null +++ b/src/views/chart/ContentCharts/components/ChartsItemBox/index.vue @@ -0,0 +1,226 @@ + + + + + diff --git a/src/views/chart/ContentCharts/components/ChartsOptionContent/index.ts b/src/views/chart/ContentCharts/components/ChartsOptionContent/index.ts new file mode 100644 index 0000000..8fffb84 --- /dev/null +++ b/src/views/chart/ContentCharts/components/ChartsOptionContent/index.ts @@ -0,0 +1,3 @@ +import ChartsOptionContent from './index.vue' + +export { ChartsOptionContent } diff --git a/src/views/chart/ContentCharts/components/ChartsOptionContent/index.vue b/src/views/chart/ContentCharts/components/ChartsOptionContent/index.vue new file mode 100644 index 0000000..4b887f2 --- /dev/null +++ b/src/views/chart/ContentCharts/components/ChartsOptionContent/index.vue @@ -0,0 +1,143 @@ + + + + + diff --git a/src/views/chart/ContentCharts/components/ChartsSearch/index.ts b/src/views/chart/ContentCharts/components/ChartsSearch/index.ts new file mode 100644 index 0000000..119c998 --- /dev/null +++ b/src/views/chart/ContentCharts/components/ChartsSearch/index.ts @@ -0,0 +1,3 @@ +import ChartsSearch from './index.vue' + +export { ChartsSearch } diff --git a/src/views/chart/ContentCharts/components/ChartsSearch/index.vue b/src/views/chart/ContentCharts/components/ChartsSearch/index.vue new file mode 100644 index 0000000..f1a25dd --- /dev/null +++ b/src/views/chart/ContentCharts/components/ChartsSearch/index.vue @@ -0,0 +1,264 @@ + + + + + diff --git a/src/views/chart/ContentCharts/hooks/useAside.hook.ts b/src/views/chart/ContentCharts/hooks/useAside.hook.ts new file mode 100644 index 0000000..eb69d0c --- /dev/null +++ b/src/views/chart/ContentCharts/hooks/useAside.hook.ts @@ -0,0 +1,92 @@ +import { shallowReactive, ref } from 'vue' +import { icon } from '@/plugins' +import { renderLang, renderIcon } from '@/utils' +import { themeColor, setItem, getCharts } from './useLayout.hook' +import { PackagesCategoryEnum, PackagesCategoryName, PackagesType } from '@/packages/index.d' +// 图表 +import { usePackagesStore } from '@/store/modules/packagesStore/packagesStore' +import { ChartLayoutStoreEnum } from '@/store/modules/chartLayoutStore/chartLayoutStore.d' +// 图标 +const { BarChartIcon } = icon.ionicons5 +const { + TableSplitIcon, + RoadmapIcon, + SpellCheckIcon, + GraphicalDataFlowIcon, +} = icon.carbon + + +// 图表 +export type MenuOptionsType = { + key: string + icon: ReturnType + label: ReturnType + list: PackagesType +} + +const { getPackagesList } = usePackagesStore() +const menuOptions: MenuOptionsType[] = [] + +const packagesListObj = { + [PackagesCategoryEnum.CHARTS]: { + icon: renderIcon(RoadmapIcon), + label: PackagesCategoryName.CHARTS, + }, + [PackagesCategoryEnum.INFORMATIONS]: { + icon: renderIcon(SpellCheckIcon), + label: PackagesCategoryName.INFORMATIONS, + }, + [PackagesCategoryEnum.TABLES]: { + icon: renderIcon(TableSplitIcon), + label: PackagesCategoryName.TABLES, + }, + [PackagesCategoryEnum.DECORATES]: { + icon: renderIcon(GraphicalDataFlowIcon), + label: PackagesCategoryName.DECORATES, + }, +} + +// 处理列表 +const handlePackagesList = () => { + for (const val in getPackagesList) { + menuOptions.push({ + key: val, + // @ts-ignore + icon: packagesListObj[val].icon, + // @ts-ignore + label: packagesListObj[val].label, + // @ts-ignore + list: getPackagesList[val], + }) + } +} +handlePackagesList() + +// 记录选中值 +let beforeSelect: string = menuOptions[0]['key'] +const selectValue = ref(menuOptions[0]['key']) + +// 选中的对象值 +const selectOptions = ref(menuOptions[0]) + +// 点击 item +const clickItemHandle = (key: string, item: any) => { + selectOptions.value = item + // 处理折叠 + if (beforeSelect === key) { + setItem(ChartLayoutStoreEnum.CHARTS, !getCharts.value) + } else { + setItem(ChartLayoutStoreEnum.CHARTS, true) + } + beforeSelect = key +} + +export { + getCharts, + BarChartIcon, + themeColor, + selectOptions, + selectValue, + clickItemHandle, + menuOptions, +} diff --git a/src/views/chart/ContentCharts/hooks/useLayout.hook.ts b/src/views/chart/ContentCharts/hooks/useLayout.hook.ts new file mode 100644 index 0000000..1e35533 --- /dev/null +++ b/src/views/chart/ContentCharts/hooks/useLayout.hook.ts @@ -0,0 +1,20 @@ +import { ref, toRefs } from 'vue' + +// 布局 +import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore' +// 样式 +import { useDesignStore } from '@/store/modules/designStore/designStore' + +// 全局颜色 +const designStore = useDesignStore() +const themeColor = ref(designStore.getAppTheme) + +// 结构控制 +const { setItem } = useChartLayoutStore() +const { getCharts } = toRefs(useChartLayoutStore()) + +export { + themeColor, + setItem, + getCharts +} \ No newline at end of file diff --git a/src/views/chart/ContentCharts/index.ts b/src/views/chart/ContentCharts/index.ts new file mode 100644 index 0000000..f77cc12 --- /dev/null +++ b/src/views/chart/ContentCharts/index.ts @@ -0,0 +1,3 @@ +import ContentCharts from './index.vue' + +export { ContentCharts } diff --git a/src/views/chart/ContentCharts/index.vue b/src/views/chart/ContentCharts/index.vue new file mode 100644 index 0000000..3f81d04 --- /dev/null +++ b/src/views/chart/ContentCharts/index.vue @@ -0,0 +1,123 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/CanvasPage/components/ChartThemeColor/index.vue b/src/views/chart/ContentConfigurations/components/CanvasPage/components/ChartThemeColor/index.vue new file mode 100644 index 0000000..8313bda --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/CanvasPage/components/ChartThemeColor/index.vue @@ -0,0 +1,113 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/CanvasPage/index.ts b/src/views/chart/ContentConfigurations/components/CanvasPage/index.ts new file mode 100644 index 0000000..2926faf --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/CanvasPage/index.ts @@ -0,0 +1,3 @@ +import CanvasPage from './index.vue' + +export { CanvasPage } diff --git a/src/views/chart/ContentConfigurations/components/CanvasPage/index.vue b/src/views/chart/ContentConfigurations/components/CanvasPage/index.vue new file mode 100644 index 0000000..865aae4 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/CanvasPage/index.vue @@ -0,0 +1,364 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue b/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue new file mode 100644 index 0000000..7614395 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartAnimation/index.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataAjax/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataAjax/index.ts new file mode 100644 index 0000000..73e38fa --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataAjax/index.ts @@ -0,0 +1,3 @@ +import ChartDataAjax from './index.vue' + +export { ChartDataAjax } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataAjax/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataAjax/index.vue new file mode 100644 index 0000000..736130c --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataAjax/index.vue @@ -0,0 +1,195 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMatchingAndShow/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMatchingAndShow/index.ts new file mode 100644 index 0000000..79652ba --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMatchingAndShow/index.ts @@ -0,0 +1,3 @@ +import ChartDataMatchingAndShow from './index.vue' + +export { ChartDataMatchingAndShow } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMatchingAndShow/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMatchingAndShow/index.vue new file mode 100644 index 0000000..0774a11 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMatchingAndShow/index.vue @@ -0,0 +1,209 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMonacoEditor/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMonacoEditor/index.ts new file mode 100644 index 0000000..58215d1 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMonacoEditor/index.ts @@ -0,0 +1,3 @@ +import ChartDataMonacoEditor from './index.vue' + +export { ChartDataMonacoEditor } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMonacoEditor/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMonacoEditor/index.vue new file mode 100644 index 0000000..a0078f1 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataMonacoEditor/index.vue @@ -0,0 +1,214 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/displayTable.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/displayTable.vue new file mode 100644 index 0000000..768dc13 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/displayTable.vue @@ -0,0 +1,64 @@ + + + \ No newline at end of file diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/index.ts new file mode 100644 index 0000000..6617da1 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/index.ts @@ -0,0 +1,3 @@ +import ChartDataDisplay from './index.vue' + +export { ChartDataDisplay } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/index.vue new file mode 100644 index 0000000..f2f6e6a --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataDisplay/index.vue @@ -0,0 +1,191 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondControl/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondControl/index.ts new file mode 100644 index 0000000..724b5d2 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondControl/index.ts @@ -0,0 +1,3 @@ +import ChartDataPondControl from './index.vue' + +export { ChartDataPondControl } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondControl/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondControl/index.vue new file mode 100644 index 0000000..3ff3c6c --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondControl/index.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondList/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondList/index.ts new file mode 100644 index 0000000..cb69adf --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondList/index.ts @@ -0,0 +1,3 @@ +import ChartDataPondList from './index.vue' + +export { ChartDataPondList } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondList/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondList/index.vue new file mode 100644 index 0000000..a19c90e --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/components/ChartDataPondList/index.vue @@ -0,0 +1,202 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/index.ts new file mode 100644 index 0000000..af8dd52 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/index.ts @@ -0,0 +1,3 @@ +import ChartDataPond from './index.vue' + +export { ChartDataPond } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/index.vue new file mode 100644 index 0000000..ed9bc27 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataPond/index.vue @@ -0,0 +1,185 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalConfig/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalConfig/index.ts new file mode 100644 index 0000000..a6efbcc --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalConfig/index.ts @@ -0,0 +1,3 @@ +import RequestGlobalConfig from './index.vue' + +export { RequestGlobalConfig } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalConfig/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalConfig/index.vue new file mode 100644 index 0000000..93dd506 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalConfig/index.vue @@ -0,0 +1,108 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalHeaderTable/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalHeaderTable/index.ts new file mode 100644 index 0000000..72686c1 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalHeaderTable/index.ts @@ -0,0 +1,3 @@ +import RequestGlobalHeaderTable from './index.vue' + +export { RequestGlobalHeaderTable } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalHeaderTable/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalHeaderTable/index.vue new file mode 100644 index 0000000..514a3d3 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestGlobalHeaderTable/index.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeader/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeader/index.ts new file mode 100644 index 0000000..71865c6 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeader/index.ts @@ -0,0 +1,3 @@ +import RequestHeader from './index.vue' + +export { RequestHeader } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeader/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeader/index.vue new file mode 100644 index 0000000..85dbf39 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeader/index.vue @@ -0,0 +1,140 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeaderTable/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeaderTable/index.ts new file mode 100644 index 0000000..b016ea6 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeaderTable/index.ts @@ -0,0 +1,3 @@ +import RequestHeaderTable from './index.vue' + +export { RequestHeaderTable } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeaderTable/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeaderTable/index.vue new file mode 100644 index 0000000..0761d28 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestHeaderTable/index.vue @@ -0,0 +1,161 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestTargetConfig/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestTargetConfig/index.ts new file mode 100644 index 0000000..d3242c6 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestTargetConfig/index.ts @@ -0,0 +1,3 @@ +import RequestTargetConfig from './index.vue' + +export { RequestTargetConfig } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestTargetConfig/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestTargetConfig/index.vue new file mode 100644 index 0000000..3b9f92d --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/components/RequestTargetConfig/index.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.ts new file mode 100644 index 0000000..aca3331 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.ts @@ -0,0 +1,4 @@ +import ChartDataRequest from './index.vue' +import PondDataRequest from './pondIndex.vue' + +export { ChartDataRequest, PondDataRequest } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue new file mode 100644 index 0000000..84c6678 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/index.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue new file mode 100644 index 0000000..cac6f0e --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataRequest/pondIndex.vue @@ -0,0 +1,111 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataStatic/index.ts b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataStatic/index.ts new file mode 100644 index 0000000..1edd837 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataStatic/index.ts @@ -0,0 +1,3 @@ +import ChartDataStatic from './index.vue' + +export { ChartDataStatic } diff --git a/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataStatic/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataStatic/index.vue new file mode 100644 index 0000000..d286791 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/components/ChartDataStatic/index.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartData/hooks/useFile.hooks.ts b/src/views/chart/ContentConfigurations/components/ChartData/hooks/useFile.hooks.ts new file mode 100644 index 0000000..0825895 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/hooks/useFile.hooks.ts @@ -0,0 +1,49 @@ +import { ref, toRef, nextTick } from 'vue' +import { UploadCustomRequestOptions } from 'naive-ui' +import { FileTypeEnum } from '@/enums/fileTypeEnum' +import { readFile, downloadTextFile, JSONStringify, JSONParse } from '@/utils' + +export const useFile = (targetData: any) => { + const uploadFileListRef = ref() + + //@ts-ignore + const beforeUpload = ({ file }) => { + uploadFileListRef.value = [] + const type = file.file.type + if (type !== FileTypeEnum.JSON && type !== FileTypeEnum.TXT) { + window['$message'].warning('仅支持上传 【JSON】 格式文件,请重新上传!') + return false + } + return true + } + + // 自定义上传操作 + const customRequest = (options: UploadCustomRequestOptions) => { + const { file } = options + nextTick(() => { + if (file.file) { + readFile(file.file).then((fileData: any) => { + targetData.value.option.dataset = JSONParse(fileData) + }) + } else { + window['$message'].error('导入数据失败,请稍后重试或联系管理员!') + } + }) + } + + // 下载文件 + const download = () => { + try { + window['$message'].success('下载中,请耐心等待...') + downloadTextFile(JSONStringify(targetData.value.option.dataset), undefined, 'json') + } catch (error) { + window['$message'].error('下载失败,数据错误!') + } + } + return { + uploadFileListRef, + beforeUpload, + customRequest, + download + } +} diff --git a/src/views/chart/ContentConfigurations/components/ChartData/index.d.ts b/src/views/chart/ContentConfigurations/components/ChartData/index.d.ts new file mode 100644 index 0000000..261ae32 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/index.d.ts @@ -0,0 +1,105 @@ +import { RequestHttpEnum, RequestHttpIntervalEnum, RequestDataTypeEnum, SelectHttpTimeNameObj } from '@/enums/httpEnum' + +// 匹配结果 +export enum DataResultEnum { + NULL = 0, + SUCCESS = 1, + FAILURE = 2, +} + +export enum TimelineTitleEnum { + FILTER = '数据过滤', + MAPPING = '数据映射', + CONTENT = '数据内容', +} + +export enum SelectCreateDataEnum { + STATIC = '静态数据', + AJAX = '动态请求', + Pond = '公共接口', +} + +export interface SelectCreateDataType { + label: SelectCreateDataEnum + value: RequestDataTypeEnum + disabled?: boolean +} + +// ajax 请求类型 +export interface SelectHttpType { + label: RequestHttpEnum + value: RequestHttpEnum + disabled?: boolean + style?: object +} + +// 类型选项 +export const selectTypeOptions: SelectHttpType[] = [ + { + label: RequestHttpEnum.GET, + value: RequestHttpEnum.GET, + style: { + color: 'greenyellow', + fontWeight: 'bold' + } + }, + { + label: RequestHttpEnum.POST, + value: RequestHttpEnum.POST, + style: { + color: 'skyblue', + fontWeight: 'bold' + } + }, + { + label: RequestHttpEnum.PUT, + value: RequestHttpEnum.PUT, + style: { + color: 'goldenrod', + fontWeight: 'bold' + } + }, + { + label: RequestHttpEnum.PATCH, + value: RequestHttpEnum.PATCH, + style: { + color: 'violet', + fontWeight: 'bold' + } + }, + { + label: RequestHttpEnum.DELETE, + value: RequestHttpEnum.DELETE, + disabled: true, + style: { + fontWeight: 'bold' + } + }, +] + +// ajax 请求间隔 +export interface SelectHttpTimeType { + label: string + value: RequestHttpIntervalEnum + disabled?: boolean +} + +// 时间选项 +export const selectTimeOptions: SelectHttpTimeType[] = [ + { + label: SelectHttpTimeNameObj[RequestHttpIntervalEnum.SECOND], + value: RequestHttpIntervalEnum.SECOND + }, + { + label: SelectHttpTimeNameObj[RequestHttpIntervalEnum.MINUTE], + value: RequestHttpIntervalEnum.MINUTE + }, + { + label: SelectHttpTimeNameObj[RequestHttpIntervalEnum.HOUR], + value: RequestHttpIntervalEnum.HOUR + }, + { + label: SelectHttpTimeNameObj[RequestHttpIntervalEnum.DAY], + value: RequestHttpIntervalEnum.DAY + }, +] \ No newline at end of file diff --git a/src/views/chart/ContentConfigurations/components/ChartData/index.vue b/src/views/chart/ContentConfigurations/components/ChartData/index.vue new file mode 100644 index 0000000..2915cb0 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartData/index.vue @@ -0,0 +1,49 @@ + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/importTemplate.ts b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/importTemplate.ts new file mode 100644 index 0000000..527dd9b --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/importTemplate.ts @@ -0,0 +1,189 @@ +// 获取实例 +const eTemplateString = ` +console.log(e) +` +// 获取全局 echarts 实例 +const echartsTemplateString = ` +console.log(echarts) +` + +// 获取当前组件图表集合 +const componentsTemplateString = ` +console.log(components) +` + +// 获取 nodeModules 实例 +const nodeModulesTemplateString = ` +console.log(node_modules) +` + +// 添加点击事件 +const addClickTemplateString = ` +// 在渲染之后才能获取 dom 实例 +e.el.addEventListener('click', () => { + alert('我触发拉~'); +}, false) +` + +// 异步引入 +const importTemplateString = ` +await import('https://lf3-cdn-tos.bytecdntp.com/cdn/expire-1-M/lodash.js/4.17.21/lodash.js') + +// lodash 默认赋值给 "_" +console.log('isEqual', _.isEqual(['1'], ['1'])) +` + +// 修改图表 tooltip +const tooltipTemplateString = + ` +// 获取echart实例 +const chart = this.refs.vChartRef.chart + +// 图表设置tooltip +chart.setOption({ + tooltip: { + trigger: 'axis', //item + enterable: true, + formatter (params) { + return` + + '`' + + ` +
+ + 《这是一个自定义的tooltip》 +
+
+ ` + + '$' + + `{Object.entries(params[0].value).map(kv => ` + + '`' + + `
` + + '$' + + `{kv[0]}:` + + '$' + + `{kv[1]}
` + + '`' + + `).join('')} +
+ ` + + '`;' + + ` + }, + } +}) +` + +// 添加【轮播列表】样式 +const addStyleString = + ` +// 组件样式作用域标识 +const scoped = this.subTree.scopeId +function loadStyleString(css){ + let style = document.createElement('style') + style.type = 'text/css' + style.appendChild(document.createTextNode(css)) + let head = document.getElementsByTagName('head')[0] + head.appendChild(style) +} +loadStyleString(` + + '`' + + ` +.dv-scroll-board[` + + '$' + + `{scoped}] { + position: relative; + overflow: hidden; +} +.dv-scroll-board[` + + '$' + + `{scoped}]::before { + content: ''; + display: block; + position: absolute; + top: -20%; + left: -100%; + width: 550px; + height: 60px; + transform: rotate(-45deg); + background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0)); + animation: cross 2s infinite; +} +@keyframes cross{ + to{ + top: 80%; + left: 100%; + transform: rotate(-45deg); + } +} +` + + '`' + + `) +` + +// 修改地图原点大小 +const editMapPointString = ` +const chart = this.refs.vChartRef.chart +// 定义地图原点大小 同理可自定义标签等等内容 +this.props.chartConfig.option.series[0].symbolSize = (val) => { + return Math.sqrt(val[2]) / 3; +} +this.setupState.vEchartsSetOption(); +let i = 0; // 当前轮播索引 +const len = 3; // 轮播部分提示 +(function showTips() { + const action = (type, dataIndex) => { + chart.dispatchAction({ + type, + dataIndex, + seriesIndex: 0, + }); + } + setInterval(() => { + action("downplay", i); + action("hideTip", i); + if (i === len) i = 0; + i++; + action("highlight", i); + action("showTip", i); + }, 2000); +})() +` + +export const templateList = [ + { + description: '获取当前组件实例', + code: eTemplateString + }, + { + description: '获取全局 echarts 实例', + code: echartsTemplateString + }, + { + description: '获取组件图表集合', + code: componentsTemplateString + }, + { + description: '获取 nodeModules 实例', + code: nodeModulesTemplateString + }, + { + description: '获取远程 CDN 库', + code: importTemplateString + }, + { + description: '设置文字组件点击事件', + code: addClickTemplateString + }, + { + description: '修改图表 tooltip', + code: tooltipTemplateString + }, + { + description: '添加【轮播列表】样式', + code: addStyleString + }, + { + description: '修改【地图】圆点,新增提示自动轮播', + code: editMapPointString + } +] diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/index.ts b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/index.ts new file mode 100644 index 0000000..32daaf6 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/index.ts @@ -0,0 +1,3 @@ +import ChartEventAdvancedHandle from './index.vue' + +export { ChartEventAdvancedHandle } diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/index.vue b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/index.vue new file mode 100644 index 0000000..581fefc --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventAdvancedHandle/index.vue @@ -0,0 +1,253 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventBaseHandle/index.ts b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventBaseHandle/index.ts new file mode 100644 index 0000000..d45f2f1 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventBaseHandle/index.ts @@ -0,0 +1,3 @@ +import ChartEventBaseHandle from './index.vue' + +export { ChartEventBaseHandle } diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventBaseHandle/index.vue b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventBaseHandle/index.vue new file mode 100644 index 0000000..2defea3 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/components/ChartEventBaseHandle/index.vue @@ -0,0 +1,215 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/components/index.scss b/src/views/chart/ContentConfigurations/components/ChartEvent/components/index.scss new file mode 100644 index 0000000..8cd67cf --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/components/index.scss @@ -0,0 +1,51 @@ +/* 外层也要使用 */ +.func-keyword { + color: #b478cf; +} + +.func-annotate { + color: #70c0e8; +} + +@include go('chart-data-monaco-editor') { + .func-keyNameWord { + color: #70c0e8; + } + .tab-tip { + font-size: 12px; + } + &.n-card.n-modal, + .n-card { + @extend .go-background-filter; + } +} +@include deep() { + .n-layout, + .n-layout-sider { + background-color: transparent; + } + .collapse-show-box { + .n-card__content { + padding-left: 20px; + padding-right: 10px; + } + } + .go-editor-area { + max-height: 530px; + } + .checkbox--hidden:checked { + & + label { + .n-icon { + transition: all 0.3s; + transform: rotate(180deg); + } + } + & ~ .go-editor-area { + display: none; + } + } + // 优化代码换行 + .n-code > pre { + white-space: break-spaces; + } +} diff --git a/src/views/chart/ContentConfigurations/components/ChartEvent/index.vue b/src/views/chart/ContentConfigurations/components/ChartEvent/index.vue new file mode 100644 index 0000000..05e5ce4 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartEvent/index.vue @@ -0,0 +1,21 @@ + + + diff --git a/src/views/chart/ContentConfigurations/components/ChartSetting/index.vue b/src/views/chart/ContentConfigurations/components/ChartSetting/index.vue new file mode 100644 index 0000000..21c7d96 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/ChartSetting/index.vue @@ -0,0 +1,25 @@ + + + + + diff --git a/src/views/chart/ContentConfigurations/components/hooks/useTargetData.hook.ts b/src/views/chart/ContentConfigurations/components/hooks/useTargetData.hook.ts new file mode 100644 index 0000000..0fde624 --- /dev/null +++ b/src/views/chart/ContentConfigurations/components/hooks/useTargetData.hook.ts @@ -0,0 +1,14 @@ +import { computed, Ref } from 'vue' +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' + +// 获取当前对象数据 +export const useTargetData = () => { + const chartEditStore = useChartEditStore() + const targetData: Ref = computed(() => { + const list = chartEditStore.getComponentList + const targetIndex = chartEditStore.fetchTargetIndex() + return list[targetIndex] + }) + return { targetData, chartEditStore } +} diff --git a/src/views/chart/ContentConfigurations/index.d.ts b/src/views/chart/ContentConfigurations/index.d.ts new file mode 100644 index 0000000..59ca5bc --- /dev/null +++ b/src/views/chart/ContentConfigurations/index.d.ts @@ -0,0 +1,7 @@ +export enum TabsEnum { + PAGE_SETTING = 'pageSetting', + CHART_SETTING = 'chartSetting', + CHART_ANIMATION = 'chartAnimation', + CHART_DATA = 'chartData', + CHART_EVENT = 'chartEvent' +} diff --git a/src/views/chart/ContentConfigurations/index.ts b/src/views/chart/ContentConfigurations/index.ts new file mode 100644 index 0000000..e708cd5 --- /dev/null +++ b/src/views/chart/ContentConfigurations/index.ts @@ -0,0 +1,3 @@ +import ContentConfigurations from './index.vue' + +export { ContentConfigurations } diff --git a/src/views/chart/ContentConfigurations/index.vue b/src/views/chart/ContentConfigurations/index.vue new file mode 100644 index 0000000..110a3c2 --- /dev/null +++ b/src/views/chart/ContentConfigurations/index.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditAlignLine/index.ts b/src/views/chart/ContentEdit/components/EditAlignLine/index.ts new file mode 100644 index 0000000..d07271c --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditAlignLine/index.ts @@ -0,0 +1,3 @@ +import EditAlignLine from './index.vue' + +export { EditAlignLine } diff --git a/src/views/chart/ContentEdit/components/EditAlignLine/index.vue b/src/views/chart/ContentEdit/components/EditAlignLine/index.vue new file mode 100644 index 0000000..bfa3000 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditAlignLine/index.vue @@ -0,0 +1,285 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditBottom/index.ts b/src/views/chart/ContentEdit/components/EditBottom/index.ts new file mode 100644 index 0000000..d987298 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditBottom/index.ts @@ -0,0 +1,3 @@ +import EditBottom from './index.vue' + +export { EditBottom } diff --git a/src/views/chart/ContentEdit/components/EditBottom/index.vue b/src/views/chart/ContentEdit/components/EditBottom/index.vue new file mode 100644 index 0000000..2f21b65 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditBottom/index.vue @@ -0,0 +1,179 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditDataSync/index.ts b/src/views/chart/ContentEdit/components/EditDataSync/index.ts new file mode 100644 index 0000000..b012584 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditDataSync/index.ts @@ -0,0 +1,3 @@ +import EditDataSync from './index.vue' + +export { EditDataSync } diff --git a/src/views/chart/ContentEdit/components/EditDataSync/index.vue b/src/views/chart/ContentEdit/components/EditDataSync/index.vue new file mode 100644 index 0000000..7a2a8f8 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditDataSync/index.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditGroup/index.ts b/src/views/chart/ContentEdit/components/EditGroup/index.ts new file mode 100644 index 0000000..4fd9d52 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditGroup/index.ts @@ -0,0 +1,3 @@ +import EditGroup from './index.vue' + +export { EditGroup } diff --git a/src/views/chart/ContentEdit/components/EditGroup/index.vue b/src/views/chart/ContentEdit/components/EditGroup/index.vue new file mode 100644 index 0000000..5d7f146 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditGroup/index.vue @@ -0,0 +1,129 @@ + + + diff --git a/src/views/chart/ContentEdit/components/EditHistory/index.ts b/src/views/chart/ContentEdit/components/EditHistory/index.ts new file mode 100644 index 0000000..36ca8b2 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditHistory/index.ts @@ -0,0 +1,3 @@ +import EditHistory from './index.vue' + +export { EditHistory } diff --git a/src/views/chart/ContentEdit/components/EditHistory/index.vue b/src/views/chart/ContentEdit/components/EditHistory/index.vue new file mode 100644 index 0000000..a9c6c6a --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditHistory/index.vue @@ -0,0 +1,154 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditRange/index.ts b/src/views/chart/ContentEdit/components/EditRange/index.ts new file mode 100644 index 0000000..eadec58 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditRange/index.ts @@ -0,0 +1,3 @@ +import EditRange from './index.vue' + +export { EditRange } diff --git a/src/views/chart/ContentEdit/components/EditRange/index.vue b/src/views/chart/ContentEdit/components/EditRange/index.vue new file mode 100644 index 0000000..d9a7bcc --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditRange/index.vue @@ -0,0 +1,69 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditRule/index.ts b/src/views/chart/ContentEdit/components/EditRule/index.ts new file mode 100644 index 0000000..426c4ce --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditRule/index.ts @@ -0,0 +1,3 @@ +import EditRule from './index.vue' + +export { EditRule } diff --git a/src/views/chart/ContentEdit/components/EditRule/index.vue b/src/views/chart/ContentEdit/components/EditRule/index.vue new file mode 100644 index 0000000..e200bee --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditRule/index.vue @@ -0,0 +1,356 @@ + + + + + + diff --git a/src/views/chart/ContentEdit/components/EditSelect/index.ts b/src/views/chart/ContentEdit/components/EditSelect/index.ts new file mode 100644 index 0000000..88b3334 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditSelect/index.ts @@ -0,0 +1,3 @@ +import EditSelect from './index.vue' + +export { EditSelect } diff --git a/src/views/chart/ContentEdit/components/EditSelect/index.vue b/src/views/chart/ContentEdit/components/EditSelect/index.vue new file mode 100644 index 0000000..90fc086 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditSelect/index.vue @@ -0,0 +1,114 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditShapeBox/index.ts b/src/views/chart/ContentEdit/components/EditShapeBox/index.ts new file mode 100644 index 0000000..8980e45 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditShapeBox/index.ts @@ -0,0 +1,3 @@ +import EditShapeBox from './index.vue' + +export { EditShapeBox } diff --git a/src/views/chart/ContentEdit/components/EditShapeBox/index.vue b/src/views/chart/ContentEdit/components/EditShapeBox/index.vue new file mode 100644 index 0000000..b509b32 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditShapeBox/index.vue @@ -0,0 +1,164 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue b/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue new file mode 100644 index 0000000..c8ed76a --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditShortcutKey/ShortcutKeyModal.vue @@ -0,0 +1,152 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditShortcutKey/index.ts b/src/views/chart/ContentEdit/components/EditShortcutKey/index.ts new file mode 100644 index 0000000..377edf8 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditShortcutKey/index.ts @@ -0,0 +1,3 @@ +import EditShortcutKey from './index.vue' + +export { EditShortcutKey } \ No newline at end of file diff --git a/src/views/chart/ContentEdit/components/EditShortcutKey/index.vue b/src/views/chart/ContentEdit/components/EditShortcutKey/index.vue new file mode 100644 index 0000000..1ffc816 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditShortcutKey/index.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditTools/hooks/useFile.hooks.ts b/src/views/chart/ContentEdit/components/EditTools/hooks/useFile.hooks.ts new file mode 100644 index 0000000..3acc824 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditTools/hooks/useFile.hooks.ts @@ -0,0 +1,68 @@ +import { ref, nextTick } from 'vue' +import { UploadCustomRequestOptions } from 'naive-ui' +import { FileTypeEnum } from '@/enums/fileTypeEnum' +import { readFile, goDialog, JSONParse } from '@/utils' +import { useSync } from '@/views/chart/hooks/useSync.hook' + +export const useFile = () => { + const importUploadFileListRef = ref() + const { updateComponent } = useSync() + // 上传-前置 + //@ts-ignore + const importBeforeUpload = ({ file }) => { + importUploadFileListRef.value = [] + const type = file.file.type + if (type !== FileTypeEnum.JSON && type !== FileTypeEnum.TXT) { + window['$message'].warning('仅支持上传 【JSON】 格式文件,请重新上传!') + return false + } + return true + } + + // 上传-导入 + const importCustomRequest = (options: UploadCustomRequestOptions) => { + const { file } = options + nextTick(() => { + if (file.file) { + readFile(file.file).then((fileData: any) => { + goDialog({ + message: '请选择导入方式:', + positiveText: '新增(可撤回)', + negativeText: '覆盖(不可撤回)', + negativeButtonProps: { type: 'info', ghost: false }, + // 新增 + onPositiveCallback: async () => { + try { + fileData = JSONParse(fileData) + await updateComponent(fileData, false, true) + window['$message'].success('导入成功!') + } catch (error) { + console.log(error) + window['$message'].error('组件导入失败,请检查文件完整性!') + } + }, + // 覆盖 + onNegativeCallback: async () => { + try { + fileData = JSONParse(fileData) + await updateComponent(fileData, true, true) + window['$message'].success('导入成功!') + } catch (error) { + console.log(error) + window['$message'].error('组件导入失败,请检查文件完整性!') + } + } + }) + }) + } else { + window['$message'].error('导入失败,请检查数据或联系管理员!') + } + }) + } + + return { + importUploadFileListRef, + importBeforeUpload, + importCustomRequest + } +} diff --git a/src/views/chart/ContentEdit/components/EditTools/hooks/useSyncUpdate.hook.ts b/src/views/chart/ContentEdit/components/EditTools/hooks/useSyncUpdate.hook.ts new file mode 100644 index 0000000..3a1633a --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditTools/hooks/useSyncUpdate.hook.ts @@ -0,0 +1,65 @@ +import { watch } from 'vue' +import { useRoute } from 'vue-router' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { useSync } from '@/views/chart/hooks/useSync.hook' +import { ChartEnum } from '@/enums/pageEnum' +import { SavePageEnum } from '@/enums/editPageEnum' +import { editToJsonInterval } from '@/settings/designSetting' + +const { updateComponent, dataSyncUpdate } = useSync() +const chartEditStore = useChartEditStore() + +// 侦听器更新 +const useSyncUpdateHandle = () => { + // 定义侦听器变量 + let timer: any + const updateFn = (e: any) => updateComponent(e!.detail, true, false) + const syncData = async () => { + dataSyncUpdate && (await dataSyncUpdate()) + dispatchEvent(new CustomEvent(SavePageEnum.CHART, { detail: chartEditStore.getStorageInfo })) + } + + // 开启侦听 + const use = () => { + // // 1、定时同步数据 + // timer = setInterval(() => { + // // 窗口激活并且处于工作台 + // document.hasFocus() && syncData() + // }, editToJsonInterval) + // // 1、定时同步数据 + // timer = setInterval(() => { + // // 窗口激活并且处于工作台 + // document.hasFocus() && syncData() + // }, editToJsonInterval) + // 2、失焦同步数据 + addEventListener('blur', syncData) + + // 【监听JSON代码 刷新工作台图表】 + addEventListener(SavePageEnum.JSON, updateFn) + } + + // 关闭侦听 + const unUse = () => { + // clearInterval(timer) + // clearInterval(timer) + removeEventListener(SavePageEnum.JSON, updateFn) + removeEventListener('blur', syncData) + } + + // 路由变更时处理 + const watchHandler = (toName: any, fromName: any) => { + if (fromName == ChartEnum.CHART_HOME_NAME) { + unUse() + } + if (toName == ChartEnum.CHART_HOME_NAME) { + use() + } + } + + return watchHandler +} + +export const useSyncUpdate = () => { + const routerParamsInfo = useRoute() + watch(() => routerParamsInfo.name, useSyncUpdateHandle(), { immediate: true }) +} \ No newline at end of file diff --git a/src/views/chart/ContentEdit/components/EditTools/index.d.ts b/src/views/chart/ContentEdit/components/EditTools/index.d.ts new file mode 100644 index 0000000..950436d --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditTools/index.d.ts @@ -0,0 +1,12 @@ +export enum TypeEnum { + BUTTON = 'button', + IMPORTUPLOAD = 'importUpload' +} + +export type BtnListType = { + key: string + type: TypeEnum + name: string + icon: any + handle?: () => void +} diff --git a/src/views/chart/ContentEdit/components/EditTools/index.ts b/src/views/chart/ContentEdit/components/EditTools/index.ts new file mode 100644 index 0000000..e4dcfcb --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditTools/index.ts @@ -0,0 +1,3 @@ +import EditTools from './index.vue' + +export { EditTools } diff --git a/src/views/chart/ContentEdit/components/EditTools/index.vue b/src/views/chart/ContentEdit/components/EditTools/index.vue new file mode 100644 index 0000000..79d2eb6 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditTools/index.vue @@ -0,0 +1,370 @@ + + + + + diff --git a/src/views/chart/ContentEdit/components/EditTools/utils/index.ts b/src/views/chart/ContentEdit/components/EditTools/utils/index.ts new file mode 100644 index 0000000..39e7af1 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditTools/utils/index.ts @@ -0,0 +1,41 @@ +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { canvasCut, downloadTextFile, JSONStringify } from '@/utils' +const chartEditStore = useChartEditStore() + +// 导出 +export const exportHandle = () => { + // 取消选中 + chartEditStore.setTargetSelectChart(undefined) + + // 导出数据 + downloadTextFile( + JSONStringify(chartEditStore.getStorageInfo || []), + undefined, + 'json' + ) + + // 导出图片 + const range = document.querySelector('.go-edit-range') as HTMLElement + const watermark = document.getElementById('go-edit-watermark') + // 隐藏边距线 + if (!range || !watermark) { + window['$message'].error('导出失败!') + return + } + + // 记录缩放比例 + const scaleTemp = chartEditStore.getEditCanvas.scale + // 百分百展示页面 + chartEditStore.setScale(1, true) + // 展示水印 + watermark.style.display = 'block' + + setTimeout(() => { + canvasCut(range, () => { + // 隐藏水印 + if (watermark) watermark.style.display = 'none' + // 还原页面大小 + chartEditStore.setScale(scaleTemp, true) + }) + }, 600) +} diff --git a/src/views/chart/ContentEdit/components/EditWatermark/index.ts b/src/views/chart/ContentEdit/components/EditWatermark/index.ts new file mode 100644 index 0000000..77882ab --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditWatermark/index.ts @@ -0,0 +1,3 @@ +import EditWatermark from './index.vue' + +export { EditWatermark } diff --git a/src/views/chart/ContentEdit/components/EditWatermark/index.vue b/src/views/chart/ContentEdit/components/EditWatermark/index.vue new file mode 100644 index 0000000..88fe429 --- /dev/null +++ b/src/views/chart/ContentEdit/components/EditWatermark/index.vue @@ -0,0 +1,29 @@ + + + + + \ No newline at end of file diff --git a/src/views/chart/ContentEdit/hooks/useDrag.hook.ts b/src/views/chart/ContentEdit/hooks/useDrag.hook.ts new file mode 100644 index 0000000..3aae554 --- /dev/null +++ b/src/views/chart/ContentEdit/hooks/useDrag.hook.ts @@ -0,0 +1,382 @@ +import { toRaw } from 'vue' +import { DragKeyEnum, MouseEventButton } from '@/enums/editPageEnum' +import { createComponent } from '@/packages' +import { ConfigType } from '@/packages/index.d' +import { CreateComponentType, CreateComponentGroupType, PickCreateComponentType } from '@/packages/index.d' +import { useContextMenu } from '@/views/chart/hooks/useContextMenu.hook' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { EditCanvasTypeEnum } from '@/store/modules/chartEditStore/chartEditStore.d' +import { loadingStart, loadingFinish, loadingError, setComponentPosition, JSONParse } from '@/utils' +import { throttle, cloneDeep } from 'lodash' + +const chartEditStore = useChartEditStore() +const { onClickOutSide } = useContextMenu() + +// * 拖拽到编辑区域里 +export const dragHandle = async (e: DragEvent) => { + e.preventDefault() + + try { + loadingStart() + + // 获取拖拽数据 + const drayDataString = e!.dataTransfer!.getData(DragKeyEnum.DRAG_KEY) + if (!drayDataString) { + loadingFinish() + return + } + + // 修改状态 + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_CREATE, false) + const dropData: Exclude = JSONParse(drayDataString) + + // 创建新图表组件 + let newComponent: CreateComponentType = await createComponent(dropData) + + setComponentPosition(newComponent, e.offsetX - newComponent.attr.w / 2, e.offsetY - newComponent.attr.h / 2) + chartEditStore.addComponentList(newComponent, false, true) + chartEditStore.setTargetSelectChart(newComponent.id) + loadingFinish() + } catch (error) { + loadingError() + window['$message'].warning(`图表正在研发中, 敬请期待...`) + } +} + +// * 进入拖拽区域 +export const dragoverHandle = (e: DragEvent) => { + e.preventDefault() + e.stopPropagation() + + if (e.dataTransfer) e.dataTransfer.dropEffect = 'copy' +} + +// * 不拦截默认行为点击 +export const mousedownHandleUnStop = (e: MouseEvent, item?: CreateComponentType | CreateComponentGroupType) => { + if (item) { + chartEditStore.setTargetSelectChart(item.id) + return + } + chartEditStore.setTargetSelectChart(undefined) +} + +// * 框选 +export const mousedownBoxSelect = (e: MouseEvent, item?: CreateComponentType | CreateComponentGroupType) => { + if (e.which == 2) return + if (window.$KeyboardActive?.space) return + + mousedownHandleUnStop(e) + + // 记录点击初始位置 + const startOffsetX = e.offsetX + const startOffsetY = e.offsetY + const startScreenX = e.screenX + const startScreenY = e.screenY + + // 记录缩放 + const scale = chartEditStore.getEditCanvas.scale + + chartEditStore.setMousePosition(undefined, undefined, startOffsetX, startOffsetY) + + // 移动框选 + const mousemove = throttle((moveEvent: MouseEvent) => { + // 取消当前选中 + chartEditStore.setTargetSelectChart() + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_SELECT, true) + + // 这里先把相对值算好,不然组件无法获取 startScreenX 和 startScreenY 的值 + const currX = startOffsetX + moveEvent.screenX - startScreenX + const currY = startOffsetY + moveEvent.screenY - startScreenY + chartEditStore.setMousePosition(currX, currY) + + // 计算框选的左上角和右下角 + const selectAttr = { + // 左上角 + x1: 0, + y1: 0, + // 右下角 + x2: 0, + y2: 0 + } + if (currX > startOffsetX && currY > startOffsetY) { + // 右下方向 + selectAttr.x1 = startOffsetX + selectAttr.y1 = startOffsetY + selectAttr.x2 = Math.round(startOffsetX + (moveEvent.screenX - startScreenX) / scale) + selectAttr.y2 = Math.round(startOffsetY + (moveEvent.screenY - startScreenY) / scale) + } else if (currX > startOffsetX && currY < startOffsetY) { + // 右上方向 + selectAttr.x1 = startOffsetX + selectAttr.y1 = Math.round(startOffsetY - (startScreenY - moveEvent.screenY) / scale) + selectAttr.x2 = Math.round(startOffsetX + (moveEvent.screenX - startScreenX) / scale) + selectAttr.y2 = startOffsetY + } else if (currX < startOffsetX && currY > startOffsetY) { + selectAttr.x1 = Math.round(startOffsetX - (startScreenX - moveEvent.screenX) / scale) + selectAttr.y1 = startOffsetY + selectAttr.x2 = startOffsetX + selectAttr.y2 = Math.round(startOffsetY + (moveEvent.screenY - startScreenY) / scale) + // 左下方向 + } else { + // 左上方向 + selectAttr.x1 = Math.round(startOffsetX - (startScreenX - moveEvent.screenX) / scale) + selectAttr.y1 = Math.round(startOffsetY - (startScreenY - moveEvent.screenY) / scale) + selectAttr.x2 = startOffsetX + selectAttr.y2 = startOffsetY + } + + // 遍历组件 + chartEditStore.getComponentList.forEach(item => { + if (!chartEditStore.getTargetChart.selectId.includes(item.id)) { + // 处理左上角 + let isSelect = false + const { x, y, w, h } = item.attr + const targetAttr = { + // 左上角 + x1: x, + y1: y, + // 右下角 + x2: x + w, + y2: y + h + } + // 全包含则选中 + if ( + targetAttr.x1 - selectAttr.x1 >= 0 && + targetAttr.y1 - selectAttr.y1 >= 0 && + targetAttr.x2 - selectAttr.x2 <= 0 && + targetAttr.y2 - selectAttr.y2 <= 0 && + !item.status.lock && + !item.status.hide + ) { + isSelect = true + chartEditStore.setTargetSelectChart(item.id, true) + } + } + }) + }, 30) + + // 鼠标抬起 + const mouseup = () => { + // 鼠标抬起时,结束mousemove的节流函数,避免选框不消失问题 + mousemove.cancel() + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_SELECT, false) + chartEditStore.setMousePosition(0, 0, 0, 0) + document.removeEventListener('mousemove', mousemove) + document.removeEventListener('mouseup', mouseup) + } + document.addEventListener('mousemove', mousemove) + document.addEventListener('mouseup', mouseup) +} + +// * 鼠标事件 +export const useMouseHandle = () => { + // * Click 事件, 松开鼠标触发 + const mouseClickHandle = (e: MouseEvent, item: CreateComponentType | CreateComponentGroupType) => { + e.preventDefault() + e.stopPropagation() + if (item.status.lock) return + // 若此时按下了 CTRL, 表示多选 + if (window.$KeyboardActive?.ctrl) { + // 若已选中,则去除 + if (chartEditStore.targetChart.selectId.includes(item.id)) { + const exList = chartEditStore.targetChart.selectId.filter(e => e !== item.id) + chartEditStore.setTargetSelectChart(exList) + } else { + chartEditStore.setTargetSelectChart(item.id, true) + } + } + } + + // * 按下事件(包含移动事件) + const mousedownHandle = (e: MouseEvent, item: CreateComponentType | CreateComponentGroupType) => { + e.preventDefault() + e.stopPropagation() + if (item.status.lock) return + onClickOutSide() + // 按下左键 + CTRL + if (e.buttons === MouseEventButton.LEFT && window.$KeyboardActive?.ctrl) return + + // 按下右键 + 选中多个 + 目标元素是多选子元素 + const selectId = chartEditStore.getTargetChart.selectId + if (e.buttons === MouseEventButton.RIGHT && selectId.length > 1 && selectId.includes(item.id)) return + + // 选中当前目标组件 + chartEditStore.setTargetSelectChart(item.id) + + // 按下右键 + if (e.buttons === MouseEventButton.RIGHT) return + + const scale = chartEditStore.getEditCanvas.scale + const canvasWidth = chartEditStore.getEditCanvasConfig.width + const canvasHeight = chartEditStore.getEditCanvasConfig.height + + // 记录图表初始位置和大小 + const targetMap = new Map() + chartEditStore.getTargetChart.selectId.forEach(id => { + const index = chartEditStore.fetchTargetIndex(id) + if (index !== -1) { + const { x, y, w, h } = toRaw(chartEditStore.getComponentList[index]).attr + targetMap.set(id, { x, y, w, h }) + } + }) + + // 记录点击初始位置 + const startX = e.screenX + const startY = e.screenY + + // 记录历史位置 + let prevComponentInstance: Array = [] + chartEditStore.getTargetChart.selectId.forEach(id => { + if (!targetMap.has(id)) return + + const index = chartEditStore.fetchTargetIndex(id) + // 拿到初始位置数据 + prevComponentInstance.push(cloneDeep(chartEditStore.getComponentList[index])) + }) + + // 记录初始位置 + chartEditStore.setMousePosition(undefined, undefined, startX, startY) + + // 移动-计算偏移量 + const mousemove = throttle((moveEvent: MouseEvent) => { + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, true) + chartEditStore.setMousePosition(moveEvent.screenX, moveEvent.screenY) + + // 当前偏移量,处理 scale 比例问题 + let offsetX = (moveEvent.screenX - startX) / scale + let offsetY = (moveEvent.screenY - startY) / scale + + chartEditStore.getTargetChart.selectId.forEach(id => { + if (!targetMap.has(id)) return + + const index = chartEditStore.fetchTargetIndex(id) + // 拿到初始位置数据 + const { x, y, w, h } = targetMap.get(id) + const componentInstance = chartEditStore.getComponentList[index] + + let currX = Math.round(x + offsetX) + let currY = Math.round(y + offsetY) + + // 要预留的距离 + const distance = 50 + + // 基于左上角位置检测 + currX = currX < -w + distance ? -w + distance : currX + currY = currY < -h + distance ? -h + distance : currY + + // 基于右下角位置检测 + currX = currX > canvasWidth - distance ? canvasWidth - distance : currX + currY = currY > canvasHeight - distance ? canvasHeight - distance : currY + if (componentInstance) { + componentInstance.attr = Object.assign(componentInstance.attr, { + x: currX, + y: currY + }) + } + }) + return + }, 20) + + const mouseup = () => { + try { + chartEditStore.setMousePosition(0, 0, 0, 0) + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, false) + // 加入历史栈 + if (prevComponentInstance.length) { + chartEditStore.getTargetChart.selectId.forEach(id => { + if (!targetMap.has(id)) return + const index = chartEditStore.fetchTargetIndex(id) + const curComponentInstance = chartEditStore.getComponentList[index] + // 找到记录的所选组件 + prevComponentInstance.forEach(preItem => { + if (preItem.id === id) { + preItem.attr = Object.assign(preItem.attr, { + offsetX: curComponentInstance.attr.x - preItem.attr.x, + offsetY: curComponentInstance.attr.y - preItem.attr.y + }) + } + }) + }) + chartEditStore.moveComponentList(prevComponentInstance) + } + document.removeEventListener('mousemove', mousemove) + document.removeEventListener('mouseup', mouseup) + } catch (err) { + console.log(err) + } + } + + document.addEventListener('mousemove', mousemove) + document.addEventListener('mouseup', mouseup) + } + + // * 进入事件 + const mouseenterHandle = (e: MouseEvent, item: CreateComponentType | CreateComponentGroupType) => { + e.preventDefault() + e.stopPropagation() + if (!chartEditStore.getEditCanvas.isSelect) { + chartEditStore.setTargetHoverChart(item.id) + } + } + + // * 移出事件 + const mouseleaveHandle = (e: MouseEvent, item: CreateComponentType | CreateComponentGroupType) => { + e.preventDefault() + e.stopPropagation() + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, false) + chartEditStore.setTargetHoverChart(undefined) + } + + return { mouseClickHandle, mousedownHandle, mouseenterHandle, mouseleaveHandle } +} + +// * 移动锚点 +export const useMousePointHandle = (e: MouseEvent, point: string, attr: PickCreateComponentType<'attr'>) => { + e.stopPropagation() + e.preventDefault() + + // 设置拖拽状态 + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, true) + const scale = chartEditStore.getEditCanvas.scale + + const itemAttrX = attr.x + const itemAttrY = attr.y + const itemAttrW = attr.w + const itemAttrH = attr.h + + // 记录点击初始位置 + const startX = e.screenX + const startY = e.screenY + + // 记录初始位置 + chartEditStore.setMousePosition(startX, startY) + + const mousemove = throttle((moveEvent: MouseEvent) => { + chartEditStore.setMousePosition(moveEvent.screenX, moveEvent.screenY) + + let currX = Math.round((moveEvent.screenX - startX) / scale) + let currY = Math.round((moveEvent.screenY - startY) / scale) + + const isTop = /t/.test(point) + const isBottom = /b/.test(point) + const isLeft = /l/.test(point) + const isRight = /r/.test(point) + + const newHeight = itemAttrH + (isTop ? -currY : isBottom ? currY : 0) + const newWidth = itemAttrW + (isLeft ? -currX : isRight ? currX : 0) + + attr.h = newHeight > 0 ? newHeight : 0 + attr.w = newWidth > 0 ? newWidth : 0 + attr.x = itemAttrX + (isLeft ? currX : 0) + attr.y = itemAttrY + (isTop ? currY : 0) + }, 50) + + const mouseup = () => { + chartEditStore.setEditCanvas(EditCanvasTypeEnum.IS_DRAG, false) + chartEditStore.setMousePosition(0, 0, 0, 0) + document.removeEventListener('mousemove', mousemove) + document.removeEventListener('mouseup', mouseup) + } + + document.addEventListener('mousemove', mousemove) + document.addEventListener('mouseup', mouseup) +} diff --git a/src/views/chart/ContentEdit/hooks/useLayout.hook.ts b/src/views/chart/ContentEdit/hooks/useLayout.hook.ts new file mode 100644 index 0000000..1da17d5 --- /dev/null +++ b/src/views/chart/ContentEdit/hooks/useLayout.hook.ts @@ -0,0 +1,29 @@ +import { onUnmounted, onMounted } from 'vue' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { EditCanvasTypeEnum } from '@/store/modules/chartEditStore/chartEditStore.d' + +const chartEditStore = useChartEditStore() + +// 布局处理 +export const useLayout = () => { + onMounted(() => { + // 设置 Dom 值(ref 不生效先用 document) + chartEditStore.setEditCanvas( + EditCanvasTypeEnum.EDIT_LAYOUT_DOM, + document.getElementById('go-chart-edit-layout') + ) + chartEditStore.setEditCanvas( + EditCanvasTypeEnum.EDIT_CONTENT_DOM, + document.getElementById('go-chart-edit-content') + ) + + // 监听初始化 + const removeScale = chartEditStore.listenerScale() + + onUnmounted(() => { + chartEditStore.setEditCanvas(EditCanvasTypeEnum.EDIT_LAYOUT_DOM, null) + chartEditStore.setEditCanvas(EditCanvasTypeEnum.EDIT_CONTENT_DOM, null) + removeScale() + }) + }) +} \ No newline at end of file diff --git a/src/views/chart/ContentEdit/hooks/useStyle.hook.ts b/src/views/chart/ContentEdit/hooks/useStyle.hook.ts new file mode 100644 index 0000000..14507f7 --- /dev/null +++ b/src/views/chart/ContentEdit/hooks/useStyle.hook.ts @@ -0,0 +1,65 @@ +import { PickCreateComponentType } from '@/packages/index.d' + +type AttrType = PickCreateComponentType<'attr'> + +export const useComponentStyle = (attr: AttrType, index: number) => { + if(!attr) return {} + const componentStyle = { + zIndex: index + 1, + left: `${attr.x}px`, + top: `${attr.y}px` + } + return componentStyle +} + +export const useSizeStyle = (attr: AttrType, scale?: number) => { + if(!attr) return {} + return { + width: `${scale ? scale * attr.w : attr.w}px`, + height: `${scale ? scale * attr.h : attr.h}px` + } +} + +// 锚点位置 +export const usePointStyle = ( + point: string, + index: number, + attr: PickCreateComponentType<'attr'>, + cursorResize: string[] +) => { + const { w: width, h: height } = attr + + const isTop = /t/.test(point) + const isBottom = /b/.test(point) + const isLeft = /l/.test(point) + const isRight = /r/.test(point) + + let newLeft = 0 + let newTop = 0 + + // 四个角的点 + if (point.length === 2) { + newLeft = isLeft ? 0 : width + newTop = isTop ? 0 : height + } else { + // 上下两点的点,宽度居中 + if (isTop || isBottom) { + newLeft = width / 2 + newTop = isTop ? 0 : height + } + + // 左右两边的点,高度居中 + if (isLeft || isRight) { + newLeft = isLeft ? 0 : width + newTop = Math.floor(height / 2) + } + } + + const style = { + left: `${newLeft}px`, + top: `${newTop}px`, + cursor: cursorResize[index] + '-resize' + } + + return style +} diff --git a/src/views/chart/ContentEdit/index.ts b/src/views/chart/ContentEdit/index.ts new file mode 100644 index 0000000..4a4766a --- /dev/null +++ b/src/views/chart/ContentEdit/index.ts @@ -0,0 +1,3 @@ +import ContentEdit from './index.vue' + +export { ContentEdit } diff --git a/src/views/chart/ContentEdit/index.vue b/src/views/chart/ContentEdit/index.vue new file mode 100644 index 0000000..6f25ec9 --- /dev/null +++ b/src/views/chart/ContentEdit/index.vue @@ -0,0 +1,210 @@ + + + + + diff --git a/src/views/chart/ContentHeader/headerLeftBtn/index.ts b/src/views/chart/ContentHeader/headerLeftBtn/index.ts new file mode 100644 index 0000000..1a76146 --- /dev/null +++ b/src/views/chart/ContentHeader/headerLeftBtn/index.ts @@ -0,0 +1,3 @@ +import HeaderLeftBtn from './index.vue' + +export { HeaderLeftBtn } diff --git a/src/views/chart/ContentHeader/headerLeftBtn/index.vue b/src/views/chart/ContentHeader/headerLeftBtn/index.vue new file mode 100644 index 0000000..e29a59a --- /dev/null +++ b/src/views/chart/ContentHeader/headerLeftBtn/index.vue @@ -0,0 +1,164 @@ + + + + diff --git a/src/views/chart/ContentHeader/headerRightBtn/index.ts b/src/views/chart/ContentHeader/headerRightBtn/index.ts new file mode 100644 index 0000000..d6b6deb --- /dev/null +++ b/src/views/chart/ContentHeader/headerRightBtn/index.ts @@ -0,0 +1,3 @@ +import HeaderRightBtn from './index.vue' + +export { HeaderRightBtn } diff --git a/src/views/chart/ContentHeader/headerRightBtn/index.vue b/src/views/chart/ContentHeader/headerRightBtn/index.vue new file mode 100644 index 0000000..9819bb2 --- /dev/null +++ b/src/views/chart/ContentHeader/headerRightBtn/index.vue @@ -0,0 +1,200 @@ + + + + + diff --git a/src/views/chart/ContentHeader/headerTitle/index.ts b/src/views/chart/ContentHeader/headerTitle/index.ts new file mode 100644 index 0000000..19b5dbc --- /dev/null +++ b/src/views/chart/ContentHeader/headerTitle/index.ts @@ -0,0 +1,3 @@ +import HeaderTitle from './index.vue' + +export { HeaderTitle } diff --git a/src/views/chart/ContentHeader/headerTitle/index.vue b/src/views/chart/ContentHeader/headerTitle/index.vue new file mode 100644 index 0000000..e1a710a --- /dev/null +++ b/src/views/chart/ContentHeader/headerTitle/index.vue @@ -0,0 +1,86 @@ + + + + diff --git a/src/views/chart/ContentLayers/components/LayersGroupListItem/index.ts b/src/views/chart/ContentLayers/components/LayersGroupListItem/index.ts new file mode 100644 index 0000000..2593932 --- /dev/null +++ b/src/views/chart/ContentLayers/components/LayersGroupListItem/index.ts @@ -0,0 +1,3 @@ +import LayersGroupListItem from './index.vue' + +export { LayersGroupListItem } diff --git a/src/views/chart/ContentLayers/components/LayersGroupListItem/index.vue b/src/views/chart/ContentLayers/components/LayersGroupListItem/index.vue new file mode 100644 index 0000000..ac9892e --- /dev/null +++ b/src/views/chart/ContentLayers/components/LayersGroupListItem/index.vue @@ -0,0 +1,277 @@ + + + + + diff --git a/src/views/chart/ContentLayers/components/LayersListItem/index.ts b/src/views/chart/ContentLayers/components/LayersListItem/index.ts new file mode 100644 index 0000000..f39abe9 --- /dev/null +++ b/src/views/chart/ContentLayers/components/LayersListItem/index.ts @@ -0,0 +1,3 @@ +import LayersListItem from './index.vue' + +export { LayersListItem } diff --git a/src/views/chart/ContentLayers/components/LayersListItem/index.vue b/src/views/chart/ContentLayers/components/LayersListItem/index.vue new file mode 100644 index 0000000..d77ed45 --- /dev/null +++ b/src/views/chart/ContentLayers/components/LayersListItem/index.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/src/views/chart/ContentLayers/components/LayersStatus/index.ts b/src/views/chart/ContentLayers/components/LayersStatus/index.ts new file mode 100644 index 0000000..220d5c2 --- /dev/null +++ b/src/views/chart/ContentLayers/components/LayersStatus/index.ts @@ -0,0 +1,3 @@ +import LayersStatus from './index.vue' + +export { LayersStatus } diff --git a/src/views/chart/ContentLayers/components/LayersStatus/index.vue b/src/views/chart/ContentLayers/components/LayersStatus/index.vue new file mode 100644 index 0000000..a43d8aa --- /dev/null +++ b/src/views/chart/ContentLayers/components/LayersStatus/index.vue @@ -0,0 +1,86 @@ + + + + + diff --git a/src/views/chart/ContentLayers/enums.ts b/src/views/chart/ContentLayers/enums.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/views/chart/ContentLayers/index.ts b/src/views/chart/ContentLayers/index.ts new file mode 100644 index 0000000..e2e64f5 --- /dev/null +++ b/src/views/chart/ContentLayers/index.ts @@ -0,0 +1,3 @@ +import ContentLayers from './index.vue' + +export { ContentLayers } diff --git a/src/views/chart/ContentLayers/index.vue b/src/views/chart/ContentLayers/index.vue new file mode 100644 index 0000000..4f5895d --- /dev/null +++ b/src/views/chart/ContentLayers/index.vue @@ -0,0 +1,223 @@ + + + + + diff --git a/src/views/chart/ContentLoad/index.ts b/src/views/chart/ContentLoad/index.ts new file mode 100644 index 0000000..7e41ed3 --- /dev/null +++ b/src/views/chart/ContentLoad/index.ts @@ -0,0 +1,3 @@ +import ContentLoad from './index.vue' + +export { ContentLoad } diff --git a/src/views/chart/ContentLoad/index.vue b/src/views/chart/ContentLoad/index.vue new file mode 100644 index 0000000..2b7f46c --- /dev/null +++ b/src/views/chart/ContentLoad/index.vue @@ -0,0 +1,40 @@ + + + diff --git a/src/views/chart/hooks/useContextMenu.hook.d.ts b/src/views/chart/hooks/useContextMenu.hook.d.ts new file mode 100644 index 0000000..ec1276c --- /dev/null +++ b/src/views/chart/hooks/useContextMenu.hook.d.ts @@ -0,0 +1,11 @@ +import { MenuEnum } from '@/enums/editPageEnum' + +export interface MenuOptionsItemType { + type?: string + label?: string + key: MenuEnum | string + icon?: Function + fnHandle?: Function + disabled?: boolean + hidden?: boolean +} \ No newline at end of file diff --git a/src/views/chart/hooks/useContextMenu.hook.ts b/src/views/chart/hooks/useContextMenu.hook.ts new file mode 100644 index 0000000..e0aa782 --- /dev/null +++ b/src/views/chart/hooks/useContextMenu.hook.ts @@ -0,0 +1,277 @@ +import { ref, nextTick, toRaw } from 'vue' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { renderIcon, loadingError } from '@/utils' +import { icon } from '@/plugins' +import { MenuOptionsItemType } from './useContextMenu.hook.d' +import { MenuEnum } from '@/enums/editPageEnum' +import cloneDeep from 'lodash/cloneDeep' + +const { + CopyIcon, + CutIcon, + ClipboardOutlineIcon, + TrashIcon, + ChevronDownIcon, + ChevronUpIcon, + LockOpenOutlineIcon, + LockClosedOutlineIcon, + EyeOutlineIcon, + EyeOffOutlineIcon +} = icon.ionicons5 +const { UpToTopIcon, DownToBottomIcon, PaintBrushIcon, Carbon3DSoftwareIcon, Carbon3DCursorIcon } = icon.carbon + +const chartEditStore = useChartEditStore() + +/** + * 分割线 + * @param {number} n > 2 + * @returns + */ +export const divider = (n: number = 3) => { + return { + type: 'divider', + key: `d${n}` + } +} + +// * 默认单组件选项 +export const defaultOptions: MenuOptionsItemType[] = [ + { + label: '锁定', + key: MenuEnum.LOCK, + icon: renderIcon(LockClosedOutlineIcon), + fnHandle: chartEditStore.setLock + }, + { + label: '解锁', + key: MenuEnum.UNLOCK, + icon: renderIcon(LockOpenOutlineIcon), + fnHandle: chartEditStore.setUnLock + }, + { + label: '隐藏', + key: MenuEnum.HIDE, + icon: renderIcon(EyeOffOutlineIcon), + fnHandle: chartEditStore.setHide + }, + { + label: '显示', + key: MenuEnum.SHOW, + icon: renderIcon(EyeOutlineIcon), + fnHandle: chartEditStore.setShow + }, + { + type: 'divider', + key: 'd0' + }, + { + label: '复制', + key: MenuEnum.COPY, + icon: renderIcon(CopyIcon), + fnHandle: chartEditStore.setCopy + }, + { + label: '剪切', + key: MenuEnum.CUT, + icon: renderIcon(CutIcon), + fnHandle: chartEditStore.setCut + }, + { + label: '粘贴', + key: MenuEnum.PARSE, + icon: renderIcon(ClipboardOutlineIcon), + fnHandle: chartEditStore.setParse + }, + { + type: 'divider', + key: 'd1' + }, + { + label: '置顶', + key: MenuEnum.TOP, + icon: renderIcon(UpToTopIcon), + fnHandle: chartEditStore.setTop + }, + { + label: '置底', + key: MenuEnum.BOTTOM, + icon: renderIcon(DownToBottomIcon), + fnHandle: chartEditStore.setBottom + }, + { + label: '上移', + key: MenuEnum.UP, + icon: renderIcon(ChevronUpIcon), + fnHandle: chartEditStore.setUp + }, + { + label: '下移', + key: MenuEnum.DOWN, + icon: renderIcon(ChevronDownIcon), + fnHandle: chartEditStore.setDown + }, + { + type: 'divider', + key: 'd2' + }, + { + label: '清空剪贴板', + key: MenuEnum.CLEAR, + icon: renderIcon(PaintBrushIcon), + fnHandle: chartEditStore.setRecordChart + }, + { + label: '删除', + key: MenuEnum.DELETE, + icon: renderIcon(TrashIcon), + fnHandle: chartEditStore.removeComponentList + } +] + +// * 默认多选组件选项 +export const defaultMultiSelectOptions: MenuOptionsItemType[] = [ + { + label: '创建分组', + key: MenuEnum.GROUP, + icon: renderIcon(Carbon3DSoftwareIcon), + fnHandle: chartEditStore.setGroup + }, + { + label: '解除分组', + key: MenuEnum.UN_GROUP, + icon: renderIcon(Carbon3DCursorIcon), + fnHandle: chartEditStore.setUnGroup + } +] + +// * 无数据传递拥有的选项 +const defaultNoItemKeys = [MenuEnum.PARSE, MenuEnum.CLEAR] + +/** + * * 挑选选项 + * @param options + * @param pickList + * @returns + */ +const pickOption = (options: MenuOptionsItemType[], pickList?: MenuEnum[]) => { + if (!pickList) return options + const list: MenuOptionsItemType[] = [] + pickList.forEach(e => { + list.push(...options.filter(op => op.key === e)) + }) + return list +} + +/** + * * 去除选项 + * @param options + * @param hideList + * @returns + */ +const hideOption = (options: MenuOptionsItemType[], hideList?: MenuEnum[]) => { + if (!hideList) return options + return options.filter((op: MenuOptionsItemType) => { + return hideList.findIndex((e: MenuEnum) => e !== op.key) !== -1 + }) +} + +// * 右键内容 +const menuOptions = ref([]) + +// * 右键处理 +const handleContextMenu = ( + e: MouseEvent, + // 右键对象 + targetInstance?: CreateComponentType | CreateComponentGroupType, + // 判断函数 + optionsHandle?: Function, + // 隐藏选项列表 + hideOptionsList?: MenuEnum[], + // 挑选选项列表 + pickOptionsList?: MenuEnum[] +) => { + e.stopPropagation() + e.preventDefault() + + let target = e.target + while (target instanceof SVGElement) { + target = target.parentNode + } + + chartEditStore.setTargetSelectChart(targetInstance && targetInstance.id) + + // 隐藏旧列表 + chartEditStore.setRightMenuShow(false) + + // * 多选默认选项 + if (chartEditStore.getTargetChart.selectId.length > 1) { + menuOptions.value = defaultMultiSelectOptions + } else { + // * 单选默认选项 + menuOptions.value = defaultOptions + } + + if (!targetInstance) { + menuOptions.value = pickOption(toRaw(menuOptions.value), defaultNoItemKeys) + } + if (hideOptionsList) { + menuOptions.value = hideOption([...defaultMultiSelectOptions, divider(), ...defaultOptions], hideOptionsList) + } + if (pickOptionsList) { + menuOptions.value = pickOption([...defaultMultiSelectOptions, divider(), ...defaultOptions], pickOptionsList) + } + if (optionsHandle) { + // 自定义函数能够拿到当前选项和所有选项 + menuOptions.value = optionsHandle( + cloneDeep(toRaw(menuOptions.value)), + [...defaultMultiSelectOptions, ...defaultOptions], + targetInstance + ) + } + nextTick().then(() => { + chartEditStore.setMousePosition(e.clientX, e.clientY) + chartEditStore.setRightMenuShow(true) + }) +} + +/** + * * 右键hook + * @param menuConfig + * @returns + */ +export const useContextMenu = () => { + // 设置默认项 + menuOptions.value = defaultOptions + + // * 失焦 + const onClickOutSide = () => { + chartEditStore.setRightMenuShow(false) + } + + // * 事件处理 + const handleMenuSelect = (key: string) => { + chartEditStore.setRightMenuShow(false) + const targetItem: MenuOptionsItemType[] = menuOptions.value.filter((e: MenuOptionsItemType) => e.key === key) + + menuOptions.value.forEach((e: MenuOptionsItemType) => { + if (e.key === key) { + if (e.fnHandle) { + e.fnHandle() + return + } + if (!targetItem) loadingError() + } + }) + } + + return { + menuOptions, + defaultOptions, + defaultMultiSelectOptions, + handleContextMenu, + onClickOutSide, + handleMenuSelect, + mousePosition: chartEditStore.getMousePosition + } +} diff --git a/src/views/chart/hooks/useKeyboard.hook.ts b/src/views/chart/hooks/useKeyboard.hook.ts new file mode 100644 index 0000000..9cef8c6 --- /dev/null +++ b/src/views/chart/hooks/useKeyboard.hook.ts @@ -0,0 +1,251 @@ +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { useSync } from './useSync.hook' +import { WinKeyboard, MacKeyboard, MenuEnum } from '@/enums/editPageEnum' +import throttle from 'lodash/throttle' +import debounce from 'lodash/debounce' +import keymaster from 'keymaster' +import { setKeyboardDressShow } from '@/utils' + +// Keymaster可以支持识别以下组合键: ⇧,shift,option,⌥,alt,ctrl,control,command,和⌘ +const chartEditStore = useChartEditStore() +const useSyncIns = useSync() +const winCtrlMerge = (e: string) => `${WinKeyboard.CTRL}+${e}` +const winShiftMerge = (e: string) => `${WinKeyboard.SHIFT}+${e}` +const winAltMerge = (e: string) => `${WinKeyboard.ALT}+${e}` + +export const winKeyboardValue = { + [MenuEnum.ARROW_UP]: winCtrlMerge('up'), + [MenuEnum.ARROW_RIGHT]: winCtrlMerge('right'), + [MenuEnum.ARROW_DOWN]: winCtrlMerge('down'), + [MenuEnum.ARROW_LEFT]: winCtrlMerge('left'), + [MenuEnum.COPY]: winCtrlMerge('c'), + [MenuEnum.CUT]: winCtrlMerge('x'), + [MenuEnum.PARSE]: winCtrlMerge('v'), + [MenuEnum.DELETE]: 'delete', + [MenuEnum.BACK]: winCtrlMerge('z'), + [MenuEnum.FORWORD]: winCtrlMerge(winShiftMerge('z')), + [MenuEnum.SAVE]: winCtrlMerge('s'), + [MenuEnum.GROUP]: winCtrlMerge('g'), + [MenuEnum.UN_GROUP]: winCtrlMerge(winShiftMerge('g')), + [MenuEnum.LOCK]: winCtrlMerge('l'), + [MenuEnum.UNLOCK]: winCtrlMerge(winShiftMerge('l')), + [MenuEnum.HIDE]: winCtrlMerge('h'), + [MenuEnum.SHOW]: winCtrlMerge(winShiftMerge('h')) +} + +// 这个 Ctrl 后面还是换成了 ⌘ +const macCtrlMerge = (e: string) => `${MacKeyboard.CTRL}+${e}` +const macShiftMerge = (e: string) => `${MacKeyboard.SHIFT}+${e}` +const macAltMerge = (e: string) => `${MacKeyboard.ALT}+${e}` + +// 没有测试 macOS 系统,因为我没有😤👻 +export const macKeyboardValue = { + [MenuEnum.ARROW_UP]: macCtrlMerge('arrowup'), + [MenuEnum.ARROW_RIGHT]: macCtrlMerge('arrowright'), + [MenuEnum.ARROW_DOWN]: macCtrlMerge('arrowdown'), + [MenuEnum.ARROW_LEFT]: macCtrlMerge('arrowleft'), + [MenuEnum.COPY]: macCtrlMerge('c'), + [MenuEnum.CUT]: macCtrlMerge('x'), + [MenuEnum.PARSE]: macCtrlMerge('v'), + [MenuEnum.DELETE]: macCtrlMerge('backspace'), + [MenuEnum.BACK]: macCtrlMerge('z'), + [MenuEnum.FORWORD]: macCtrlMerge(macShiftMerge('z')), + [MenuEnum.SAVE]: macCtrlMerge('s'), + [MenuEnum.GROUP]: macCtrlMerge('g'), + [MenuEnum.UN_GROUP]: macCtrlMerge(macShiftMerge('g')), + [MenuEnum.LOCK]: macCtrlMerge('l'), + [MenuEnum.UNLOCK]: macCtrlMerge(macShiftMerge('l')), + [MenuEnum.HIDE]: macCtrlMerge('h'), + [MenuEnum.SHOW]: macCtrlMerge(macShiftMerge('h')) +} + +// Win 快捷键列表 +const winKeyList: Array = [ + winKeyboardValue.up, + winKeyboardValue.right, + winKeyboardValue.down, + winKeyboardValue.left, + + winKeyboardValue.delete, + winKeyboardValue.copy, + winKeyboardValue.cut, + winKeyboardValue.parse, + + winKeyboardValue.back, + winKeyboardValue.forward, + + winKeyboardValue.save, + winKeyboardValue.group, + winKeyboardValue.unGroup, + + winKeyboardValue.lock, + winKeyboardValue.unLock, + + winKeyboardValue.hide, + winKeyboardValue.show +] + +// Mac 快捷键列表 +const macKeyList: Array = [ + macKeyboardValue.up, + macKeyboardValue.right, + macKeyboardValue.down, + macKeyboardValue.left, + + macKeyboardValue.delete, + macKeyboardValue.copy, + macKeyboardValue.cut, + macKeyboardValue.parse, + + macKeyboardValue.back, + macKeyboardValue.forward, + + macKeyboardValue.save, + macKeyboardValue.group, + macKeyboardValue.unGroup, + + macKeyboardValue.lock, + macKeyboardValue.unLock, + + macKeyboardValue.hide, + macKeyboardValue.show +] + +// 处理键盘记录 +const keyRecordHandle = () => { + // 默认赋值 + window.$KeyboardActive = { + ctrl: false, + space: false + } + + document.onkeydown = (e: KeyboardEvent) => { + const { keyCode } = e + if (keyCode == 32 && e.target == document.body) e.preventDefault() + + if ([17, 32].includes(keyCode) && window.$KeyboardActive) { + setKeyboardDressShow(e.keyCode) + switch (keyCode) { + case 17: window.$KeyboardActive.ctrl = true; break + case 32: window.$KeyboardActive.space = true; break + } + } + } + + document.onkeyup = (e: KeyboardEvent) => { + const { keyCode } = e + if (keyCode == 32 && e.target == document.body) e.preventDefault() + + if ([17, 32].includes(keyCode) && window.$KeyboardActive) { + setKeyboardDressShow() + switch (keyCode) { + case 17: window.$KeyboardActive.ctrl = false; break + case 32: window.$KeyboardActive.space = false; break + } + } + } +} + +// 初始化监听事件 +export const useAddKeyboard = () => { + const throttleTime = 50 + const switchHandle = (keyboardValue: typeof winKeyboardValue, e: string) => { + switch (e) { + // ct+↑ + case keyboardValue.up: + keymaster(e, throttle(() => { chartEditStore.setMove(MenuEnum.ARROW_UP); return false }, throttleTime)) + break; + // ct+→ + case keyboardValue.right: + keymaster(e, throttle(() => { chartEditStore.setMove(MenuEnum.ARROW_RIGHT); return false }, throttleTime)) + break; + // ct+↓ + case keyboardValue.down: + keymaster(e, throttle(() => { chartEditStore.setMove(MenuEnum.ARROW_DOWN); return false }, throttleTime)) + break; + // ct+← + case keyboardValue.left: + keymaster(e, throttle(() => { chartEditStore.setMove(MenuEnum.ARROW_LEFT); return false }, throttleTime)) + break; + + // 删除 delete + case keyboardValue.delete: + keymaster(e, debounce(() => { chartEditStore.removeComponentList(); return false }, throttleTime)) + break; + // 复制 ct+v + case keyboardValue.copy: + keymaster(e, debounce(() => { chartEditStore.setCopy(); return false }, throttleTime)) + break; + // 剪切 ct+x + case keyboardValue.cut: + keymaster(e, debounce(() => { chartEditStore.setCut(); return false }, throttleTime)) + break; + // 粘贴 ct+v + case keyboardValue.parse: + keymaster(e, throttle(() => { chartEditStore.setParse(); return false }, throttleTime)) + break; + + // 撤回 ct+z + case keyboardValue.back: + keymaster(e, throttle(() => { chartEditStore.setBack(); return false }, throttleTime)) + break; + // 前进 ct+sh+z + case keyboardValue.forward: + keymaster(e, throttle(() => { chartEditStore.setForward(); return false }, throttleTime)) + break; + + // 创建分组 ct+g + case keyboardValue.group: + keymaster(e, throttle(() => { chartEditStore.setGroup(); return false }, throttleTime)) + break; + // 解除分组 ct+sh+g + case keyboardValue.unGroup: + keymaster(e, throttle(() => { chartEditStore.setUnGroup(); return false }, throttleTime)) + break; + + // 锁定 ct+l + case keyboardValue.lock: + keymaster(e, throttle(() => { chartEditStore.setLock(); return false }, throttleTime)) + break; + // 解除锁定 ct+sh+l + case keyboardValue.unLock: + keymaster(e, throttle(() => { chartEditStore.setUnLock(); return false }, throttleTime)) + break; + + // 隐藏 ct+h + case keyboardValue.hide: + keymaster(e, throttle(() => { chartEditStore.setHide(); return false }, throttleTime)) + break; + // 解除隐藏 ct+sh+h + case keyboardValue.show: + keymaster(e, throttle(() => { chartEditStore.setShow(); return false }, throttleTime)) + break; + + // 保存 ct+s + case keyboardValue.save: + keymaster(e, throttle(() => { useSyncIns.dataSyncUpdate(); return false }, 200)) + break; + } + } + winKeyList.forEach((key: string) => { + switchHandle(winKeyboardValue, key) + }) + macKeyList.forEach((key: string) => { + switchHandle(macKeyboardValue, key) + }) + + keyRecordHandle() +} + +// 卸载监听事件 +export const useRemoveKeyboard = () => { + document.onkeydown = () => {}; + document.onkeyup = () => {}; + + winKeyList.forEach((key: string) => { + keymaster.unbind(key) + }) + macKeyList.forEach((key: string) => { + keymaster.unbind(key) + }) +} \ No newline at end of file diff --git a/src/views/chart/hooks/useSync.hook.ts b/src/views/chart/hooks/useSync.hook.ts new file mode 100644 index 0000000..ddb560d --- /dev/null +++ b/src/views/chart/hooks/useSync.hook.ts @@ -0,0 +1,348 @@ +import { onUnmounted } from 'vue'; +import html2canvas from 'html2canvas' +import { getUUID, httpErrorHandle, fetchRouteParamsLocation, base64toFile, JSONStringify, JSONParse } from '@/utils' +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { EditCanvasTypeEnum, ChartEditStoreEnum, ProjectInfoEnum, ChartEditStorage } from '@/store/modules/chartEditStore/chartEditStore.d' +import { useChartHistoryStore } from '@/store/modules/chartHistoryStore/chartHistoryStore' +import { StylesSetting } from '@/components/Pages/ChartItemSetting' +import { useSystemStore } from '@/store/modules/systemStore/systemStore' +import { useChartLayoutStore } from '@/store/modules/chartLayoutStore/chartLayoutStore' +import { ChartLayoutStoreEnum } from '@/store/modules/chartLayoutStore/chartLayoutStore.d' +import { fetchChartComponent, fetchConfigComponent, createComponent } from '@/packages/index' +import { saveInterval } from '@/settings/designSetting' +import throttle from 'lodash/throttle' +// 接口状态 +import { ResultEnum } from '@/enums/httpEnum' +// 接口 +import { saveProjectApi, fetchProjectApi, uploadFile, updateProjectApi } from '@/api/path' +// 画布枚举 +import { SyncEnum } from '@/enums/editPageEnum' +import { CreateComponentType, CreateComponentGroupType, ConfigType } from '@/packages/index.d' +import { BaseEvent, EventLife } from '@/enums/eventEnum' +import { PublicGroupConfigClass } from '@/packages/public/publicConfig' +import merge from 'lodash/merge' + +/** + * * 画布-版本升级对旧数据无法兼容的补丁 + * @param object + */ +const canvasVersionUpdatePolyfill = (object: any) => { + return object +} + +/** + * * 组件-版本升级对旧数据无法兼容的补丁 + * @param newObject + * @param sources + */ +const componentVersionUpdatePolyfill = (newObject: any, sources: any) => { + try { + // 判断是否是组件 + if (sources.id) { + // 处理事件补丁 + const hasVnodeBeforeMount = 'vnodeBeforeMount' in sources.events + const hasVnodeMounted = 'vnodeMounted' in sources.events + + if (hasVnodeBeforeMount) { + newObject.events.advancedEvents.vnodeBeforeMount = sources?.events.vnodeBeforeMount + } + if (hasVnodeMounted) { + newObject.events.advancedEvents.vnodeMounted = sources?.events.vnodeMounted + } + if (hasVnodeBeforeMount || hasVnodeMounted) { + sources.events = { + baseEvent: { + [BaseEvent.ON_CLICK]: undefined, + [BaseEvent.ON_DBL_CLICK]: undefined, + [BaseEvent.ON_MOUSE_ENTER]: undefined, + [BaseEvent.ON_MOUSE_LEAVE]: undefined + }, + advancedEvents: { + [EventLife.VNODE_MOUNTED]: undefined, + [EventLife.VNODE_BEFORE_MOUNT]: undefined + } + } + } + return newObject + } + } catch (error) { + return newObject + } +} + +/** + * * 合并处理 + * @param newObject 新的模板数据 + * @param sources 新拿到的数据 + * @returns object + */ +const componentMerge = (newObject: any, sources: any, notComponent = false) => { + // 处理组件补丁 + componentVersionUpdatePolyfill(newObject, sources) + + // 非组件不处理 + if (notComponent) return merge(newObject, sources) + // 组件排除 newObject + const option = sources.option + if (!option) return merge(newObject, sources) + + // 为 undefined 的 sources 来源对象属性将被跳过详见 https://www.lodashjs.com/docs/lodash.merge + sources.option = undefined + if (option) { + return { + ...merge(newObject, sources), + option: option + } + } +} + +// 请求处理 +export const useSync = () => { + const chartEditStore = useChartEditStore() + const chartHistoryStore = useChartHistoryStore() + const systemStore = useSystemStore() + const chartLayoutStore = useChartLayoutStore() + /** + * * 组件动态注册 + * @param projectData 项目数据 + * @param isReplace 是否替换数据 + * @returns + */ + const updateComponent = async (projectData: ChartEditStorage, isReplace = false, changeId = false) => { + if (isReplace) { + // 清除列表 + chartEditStore.componentList = [] + // 清除历史记录 + chartHistoryStore.clearBackStack() + chartHistoryStore.clearForwardStack() + } + // 画布补丁处理 + projectData.editCanvasConfig = canvasVersionUpdatePolyfill(projectData.editCanvasConfig) + + // 列表组件注册 + projectData.componentList.forEach(async (e: CreateComponentType | CreateComponentGroupType) => { + const intComponent = (target: CreateComponentType) => { + if (!window['$vue'].component(target.chartConfig.chartKey)) { + window['$vue'].component(target.chartConfig.chartKey, fetchChartComponent(target.chartConfig)) + window['$vue'].component(target.chartConfig.conKey, fetchConfigComponent(target.chartConfig)) + } + } + + if (e.isGroup) { + (e as CreateComponentGroupType).groupList.forEach(groupItem => { + intComponent(groupItem) + }) + } else { + intComponent(e as CreateComponentType) + } + }) + + // 创建函数-重新创建是为了处理类种方法消失的问题 + const create = async ( + _componentInstance: CreateComponentType, + callBack?: (componentInstance: CreateComponentType) => void + ) => { + // 补充 class 上的方法 + let newComponent: CreateComponentType = await createComponent(_componentInstance.chartConfig) + if (callBack) { + if (changeId) { + callBack(componentMerge(newComponent, { ..._componentInstance, id: getUUID() })) + } else { + callBack(componentMerge(newComponent, _componentInstance)) + } + } else { + if (changeId) { + chartEditStore.addComponentList( + componentMerge(newComponent, { ..._componentInstance, id: getUUID() }), + false, + true + ) + } else { + chartEditStore.addComponentList(componentMerge(newComponent, _componentInstance), false, true) + } + } + } + + // 数据赋值 + for (const key in projectData) { + // 组件 + if (key === ChartEditStoreEnum.COMPONENT_LIST) { + let loadIndex = 0 + const listLength = projectData[key].length; + for (const comItem of projectData[key]) { + // 设置加载数量 + let percentage = parseInt((parseFloat(`${++loadIndex / listLength}`) * 100).toString()) + chartLayoutStore.setItemUnHandle(ChartLayoutStoreEnum.PERCENTAGE, percentage) + // 判断类型 + if (comItem.isGroup) { + // 创建分组 + let groupClass = new PublicGroupConfigClass() + if (changeId) { + groupClass = componentMerge(groupClass, { ...comItem, id: getUUID() }) + } else { + groupClass = componentMerge(groupClass, comItem) + } + + // 异步注册子应用 + const targetList: CreateComponentType[] = [] + for (const groupItem of (comItem as CreateComponentGroupType).groupList) { + await create(groupItem, e => { + targetList.push(e) + }) + } + groupClass.groupList = targetList + + // 分组插入到列表 + chartEditStore.addComponentList(groupClass, false, true) + } else { + await create(comItem as CreateComponentType) + } + } + } else { + // 非组件(顺便排除脏数据) + if (key !== 'editCanvasConfig' && key !== 'requestGlobalConfig') return + componentMerge(chartEditStore[key], projectData[key], true) + } + } + + // 清除数量 + chartLayoutStore.setItemUnHandle(ChartLayoutStoreEnum.PERCENTAGE, 0) + } + + /** + * * 赋值全局数据 + * @param projectData 项目数据 + * @returns + */ + const updateStoreInfo = (projectData: { + id: string, + name: string, + picUrl: string, + remark: string, + status: number + }) => { + const { id, name, remark, picUrl, status } = projectData + // ID + chartEditStore.setProjectInfo(ProjectInfoEnum.PROJECT_ID, id) + // 名称 + chartEditStore.setProjectInfo(ProjectInfoEnum.PROJECT_NAME, name) + // 描述 + chartEditStore.setProjectInfo(ProjectInfoEnum.REMARKS, remark) + // 缩略图 + chartEditStore.setProjectInfo(ProjectInfoEnum.THUMBNAIL, picUrl) + // 发布 + chartEditStore.setProjectInfo(ProjectInfoEnum.RELEASE, status === 0) + } + + // * 数据获取 + const dataSyncFetch = async () => { + // FIX:重新执行dataSyncFetch需清空chartEditStore.componentList,否则会导致图层重复 + // 切换语言等操作会导致重新执行 dataSyncFetch,此时pinia中并未清空chartEditStore.componentList,导致图层重复 + chartEditStore.componentList = [] + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.START) + try { + const res = await fetchProjectApi({ id: fetchRouteParamsLocation() }) + if (res && res.code === ResultEnum.SUCCESS) { + if (res.data) { + updateStoreInfo(res.data) + // 更新全局数据 + if (res.data.content) { + await updateComponent(JSONParse(res.data.content)) + } + return + }else { + chartEditStore.setProjectInfo(ProjectInfoEnum.PROJECT_ID, fetchRouteParamsLocation()) + } + setTimeout(() => { + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.SUCCESS) + }, 1000) + return + } + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.FAILURE) + } catch (error) { + console.log(error) + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.FAILURE) + httpErrorHandle() + } + } + + // * 数据保存 + const dataSyncUpdate = throttle(async (updateImg = true) => { + if(!fetchRouteParamsLocation()) return + + let projectId = chartEditStore.getProjectInfo[ProjectInfoEnum.PROJECT_ID]; + if(projectId === null || projectId === ''){ + window['$message'].error('数据初未始化成功,请刷新页面!') + return + } + + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.START) + + // 异常处理:缩略图上传失败不影响JSON的保存 + try { + if (updateImg) { + // 获取缩略图片 + const range = document.querySelector('.go-edit-range') as HTMLElement + // 生成图片 + const canvasImage: HTMLCanvasElement = await html2canvas(range, { + backgroundColor: null, + allowTaint: true, + useCORS: true + }) + + // 上传预览图 + let uploadParams = new FormData() + uploadParams.append('file', + base64toFile(canvasImage.toDataURL(), + `go-view/${fetchRouteParamsLocation()}_index_preview.png`)) // 名字使用 go-view 作为前缀 + const uploadRes = await uploadFile(uploadParams) + // 保存预览图 + if(uploadRes && uploadRes.code === ResultEnum.SUCCESS) { + await updateProjectApi({ + id: fetchRouteParamsLocation(), + picUrl: uploadRes.data + }) + } + } + } catch (e) { + console.log(e) + } + + // 保存数据 + const res = await saveProjectApi({ + id: projectId, + content: JSONStringify(chartEditStore.getStorageInfo || {}) + }) + + if (res && res.code === ResultEnum.SUCCESS) { + // 成功状态 + setTimeout(() => { + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.SUCCESS) + }, 1000) + return + } + // 失败状态 + chartEditStore.setEditCanvas(EditCanvasTypeEnum.SAVE_STATUS, SyncEnum.FAILURE) + }, 3000) + + // * 定时处理 + const intervalDataSyncUpdate = () => { + // 定时获取数据 + const syncTiming = setInterval(() => { + dataSyncUpdate() + }, saveInterval * 1000) + + // 销毁 + onUnmounted(() => { + clearInterval(syncTiming) + }) + } + + return { + updateComponent, + updateStoreInfo, + dataSyncFetch, + dataSyncUpdate, + intervalDataSyncUpdate + } +} diff --git a/src/views/chart/index.vue b/src/views/chart/index.vue new file mode 100644 index 0000000..89c60d9 --- /dev/null +++ b/src/views/chart/index.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/src/views/edit/index.vue b/src/views/edit/index.vue new file mode 100644 index 0000000..f59d497 --- /dev/null +++ b/src/views/edit/index.vue @@ -0,0 +1,137 @@ + + + + + diff --git a/src/views/exception/403.vue b/src/views/exception/403.vue new file mode 100644 index 0000000..8f973b2 --- /dev/null +++ b/src/views/exception/403.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/src/views/exception/404.vue b/src/views/exception/404.vue new file mode 100644 index 0000000..d6e0a82 --- /dev/null +++ b/src/views/exception/404.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/src/views/exception/500.vue b/src/views/exception/500.vue new file mode 100644 index 0000000..363bb58 --- /dev/null +++ b/src/views/exception/500.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/views/login/index.vue b/src/views/login/index.vue new file mode 100644 index 0000000..1105934 --- /dev/null +++ b/src/views/login/index.vue @@ -0,0 +1,432 @@ + + + + + diff --git a/src/views/preview/components/PreviewRenderGroup/index.ts b/src/views/preview/components/PreviewRenderGroup/index.ts new file mode 100644 index 0000000..5d5a652 --- /dev/null +++ b/src/views/preview/components/PreviewRenderGroup/index.ts @@ -0,0 +1,3 @@ +import PreviewRenderGroup from './index.vue' + +export { PreviewRenderGroup } diff --git a/src/views/preview/components/PreviewRenderGroup/index.vue b/src/views/preview/components/PreviewRenderGroup/index.vue new file mode 100644 index 0000000..e6e22d9 --- /dev/null +++ b/src/views/preview/components/PreviewRenderGroup/index.vue @@ -0,0 +1,59 @@ + + + + + diff --git a/src/views/preview/components/PreviewRenderList/index.ts b/src/views/preview/components/PreviewRenderList/index.ts new file mode 100644 index 0000000..5dacecd --- /dev/null +++ b/src/views/preview/components/PreviewRenderList/index.ts @@ -0,0 +1,3 @@ +import PreviewRenderList from './index.vue' + +export { PreviewRenderList } diff --git a/src/views/preview/components/PreviewRenderList/index.vue b/src/views/preview/components/PreviewRenderList/index.vue new file mode 100644 index 0000000..ee5ea39 --- /dev/null +++ b/src/views/preview/components/PreviewRenderList/index.vue @@ -0,0 +1,85 @@ + + + + + diff --git a/src/views/preview/hooks/useComInstall.hook.ts b/src/views/preview/hooks/useComInstall.hook.ts new file mode 100644 index 0000000..a11e8bf --- /dev/null +++ b/src/views/preview/hooks/useComInstall.hook.ts @@ -0,0 +1,36 @@ +import { ref } from 'vue' +import { ChartEditStorageType } from '../index.d' +import { CreateComponentType, CreateComponentGroupType } from '@/packages/index.d' +import { fetchChartComponent } from '@/packages/index' + +export const useComInstall = (localStorageInfo: ChartEditStorageType) => { + const show = ref(false) + + // 注册组件(一开始无法获取window['$vue']) + const intervalTiming = setInterval(() => { + if (window['$vue']?.component) { + clearInterval(intervalTiming) + + const intComponent = (target: CreateComponentType) => { + if (!window['$vue'].component(target.chartConfig.chartKey)) { + window['$vue'].component(target.chartConfig.chartKey, fetchChartComponent(target.chartConfig)) + } + } + + localStorageInfo.componentList.forEach(async (e: CreateComponentType | CreateComponentGroupType) => { + if (e.isGroup) { + (e as CreateComponentGroupType).groupList.forEach(groupItem => { + intComponent(groupItem) + }) + } else { + intComponent(e as CreateComponentType) + } + }) + show.value = true + } + }, 200) + + return { + show + } +} diff --git a/src/views/preview/hooks/useScale.hook.ts b/src/views/preview/hooks/useScale.hook.ts new file mode 100644 index 0000000..202aaf0 --- /dev/null +++ b/src/views/preview/hooks/useScale.hook.ts @@ -0,0 +1,87 @@ +import { ref, onMounted, onUnmounted} from 'vue' +import { usePreviewFitScale, usePreviewScrollYScale, usePreviewScrollXScale, usePreviewFullScale } from '@/hooks/index' +import type { ChartEditStorageType } from '../index.d' +import { PreviewScaleEnum } from '@/enums/styleEnum' + +export const useScale = (localStorageInfo: ChartEditStorageType) => { + + const entityRef = ref() + const previewRef = ref() + const width = ref(localStorageInfo.editCanvasConfig.width) + const height = ref(localStorageInfo.editCanvasConfig.height) + + // 屏幕适配 + onMounted(() => { + switch (localStorageInfo.editCanvasConfig.previewScaleType) { + case PreviewScaleEnum.FIT: (() => { + const { calcRate, windowResize, unWindowResize } = usePreviewFitScale( + width.value as number, + height.value as number, + previewRef.value, + ) + calcRate() + windowResize() + onUnmounted(() => { + unWindowResize() + }) + })() + break; + case PreviewScaleEnum.SCROLL_Y: (() => { + const { calcRate, windowResize, unWindowResize } = usePreviewScrollYScale( + width.value as number, + height.value as number, + previewRef.value, + (scale) => { + const dom = entityRef.value + dom.style.width = `${width.value * scale.width}px` + dom.style.height = `${height.value * scale.height}px` + } + ) + calcRate() + windowResize() + onUnmounted(() => { + unWindowResize() + }) + })() + + break; + case PreviewScaleEnum.SCROLL_X: (() => { + const { calcRate, windowResize, unWindowResize } = usePreviewScrollXScale( + width.value as number, + height.value as number, + previewRef.value, + (scale) => { + const dom = entityRef.value + dom.style.width = `${width.value * scale.width}px` + dom.style.height = `${height.value * scale.height}px` + } + ) + calcRate() + windowResize() + onUnmounted(() => { + unWindowResize() + }) + })() + + break; + case PreviewScaleEnum.FULL: (() => { + const { calcRate, windowResize, unWindowResize } = usePreviewFullScale( + width.value as number, + height.value as number, + previewRef.value, + ) + calcRate() + windowResize() + onUnmounted(() => { + unWindowResize() + }) + })() + break; + } + }) + + return { + entityRef, + previewRef + } +} diff --git a/src/views/preview/hooks/useStore.hook.ts b/src/views/preview/hooks/useStore.hook.ts new file mode 100644 index 0000000..06bed69 --- /dev/null +++ b/src/views/preview/hooks/useStore.hook.ts @@ -0,0 +1,9 @@ +import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore' +import { ChartEditStoreEnum } from '@/store/modules/chartEditStore/chartEditStore.d' +import type { ChartEditStorageType } from '../index.d' + +// store 相关 +export const useStore = (localStorageInfo: ChartEditStorageType) => { + const chartEditStore = useChartEditStore() + chartEditStore.requestGlobalConfig = localStorageInfo[ChartEditStoreEnum.REQUEST_GLOBAL_CONFIG] +} diff --git a/src/views/preview/index.d.ts b/src/views/preview/index.d.ts new file mode 100644 index 0000000..0dfbe7c --- /dev/null +++ b/src/views/preview/index.d.ts @@ -0,0 +1,6 @@ +import { ChartEditStorage } from '@/store/modules/chartEditStore/chartEditStore.d' + +export interface ChartEditStorageType extends ChartEditStorage { + id: string, + isRelease?: boolean +} \ No newline at end of file diff --git a/src/views/preview/index.vue b/src/views/preview/index.vue new file mode 100644 index 0000000..4e6bc66 --- /dev/null +++ b/src/views/preview/index.vue @@ -0,0 +1,9 @@ + + + diff --git a/src/views/preview/suspenseIndex.vue b/src/views/preview/suspenseIndex.vue new file mode 100644 index 0000000..ec10e36 --- /dev/null +++ b/src/views/preview/suspenseIndex.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/src/views/preview/utils/index.ts b/src/views/preview/utils/index.ts new file mode 100644 index 0000000..f0f79cf --- /dev/null +++ b/src/views/preview/utils/index.ts @@ -0,0 +1,2 @@ +export * from './style' +export * from './storage' \ No newline at end of file diff --git a/src/views/preview/utils/storage.ts b/src/views/preview/utils/storage.ts new file mode 100644 index 0000000..5db0609 --- /dev/null +++ b/src/views/preview/utils/storage.ts @@ -0,0 +1,38 @@ +import { getSessionStorage, fetchRouteParamsLocation, httpErrorHandle, JSONParse } from '@/utils' +import { ResultEnum } from '@/enums/httpEnum' +import { StorageEnum } from '@/enums/storageEnum' +import { ChartEditStorage } from '@/store/modules/chartEditStore/chartEditStore.d' +import { fetchProjectApi } from '@/api/path' + +export interface ChartEditStorageType extends ChartEditStorage { + id: string +} + +// 根据路由 id 获取存储数据的信息 +export const getSessionStorageInfo = async () => { + const id = fetchRouteParamsLocation() + const storageList: ChartEditStorageType[] = getSessionStorage(StorageEnum.GO_CHART_STORAGE_LIST) + + // 是否本地预览 + if (!storageList || storageList.findIndex(e => e.id === id.toString()) === -1) { + // 接口调用 + const res = await fetchProjectApi({ id: id }) + if (res && res.code === ResultEnum.SUCCESS) { + const { content, status } = res.data + if (status === 1) { + // 跳转未发布页 + return { isRelease: false } + } + return { ...JSONParse(content), id } + } else { + httpErrorHandle() + } + } else { + // 本地读取 + for (let i = 0; i < storageList.length; i++) { + if (id.toString() === storageList[i]['id']) { + return storageList[i] + } + } + } +} diff --git a/src/views/preview/utils/style.ts b/src/views/preview/utils/style.ts new file mode 100644 index 0000000..6cd25cb --- /dev/null +++ b/src/views/preview/utils/style.ts @@ -0,0 +1,46 @@ +import { PickCreateComponentType } from '@/packages/index.d' +import { EditCanvasConfigType } from '@/store/modules/chartEditStore/chartEditStore.d' + +type AttrType = PickCreateComponentType<'attr'> +type StatusType = PickCreateComponentType<'status'> + +// 设置位置 +export const getComponentAttrStyle = (attr: AttrType, index: number) => { + const componentStyle = { + zIndex: index + 1, + left: `${attr.x}px`, + top: `${attr.y}px` + } + return componentStyle +} + +// 设置大小 +export const getSizeStyle = (attr: AttrType, scale?: number) => { + return { + width: `${scale ? scale * attr.w : attr.w}px`, + height: `${scale ? scale * attr.h : attr.h}px` + } +} + +// 设置状态样式 +export const getStatusStyle = (attr: StatusType) => { + return { + display: attr.hide ? 'none' : 'block' + } +} + +// 全局样式 +export const getEditCanvasConfigStyle = (canvas: EditCanvasConfigType) => { + // 背景 + const computedBackground = canvas.selectColor + ? { background: canvas.background } + : { + background: `url(${canvas.backgroundImage}) center center / cover no-repeat !important` + } + return { + position: 'relative' as const, + width: canvas.width ? `${canvas.width || 100}px` : '100%', + height: canvas.height ? `${canvas.height}px` : '100%', + ...computedBackground + } +} diff --git a/src/views/preview/wrapper.vue b/src/views/preview/wrapper.vue new file mode 100644 index 0000000..86abc6b --- /dev/null +++ b/src/views/preview/wrapper.vue @@ -0,0 +1,25 @@ + + + diff --git a/src/views/project/index.vue b/src/views/project/index.vue new file mode 100644 index 0000000..535899b --- /dev/null +++ b/src/views/project/index.vue @@ -0,0 +1,49 @@ + + + + + diff --git a/src/views/project/items/components/ProjectItemsCard/index.ts b/src/views/project/items/components/ProjectItemsCard/index.ts new file mode 100644 index 0000000..304ac60 --- /dev/null +++ b/src/views/project/items/components/ProjectItemsCard/index.ts @@ -0,0 +1,3 @@ +import ProjectItemsCard from './index.vue' + +export { ProjectItemsCard } diff --git a/src/views/project/items/components/ProjectItemsCard/index.vue b/src/views/project/items/components/ProjectItemsCard/index.vue new file mode 100644 index 0000000..bc79edc --- /dev/null +++ b/src/views/project/items/components/ProjectItemsCard/index.vue @@ -0,0 +1,254 @@ + + + + + diff --git a/src/views/project/items/components/ProjectItemsList/hooks/useData.hook.ts b/src/views/project/items/components/ProjectItemsList/hooks/useData.hook.ts new file mode 100644 index 0000000..aad90d1 --- /dev/null +++ b/src/views/project/items/components/ProjectItemsList/hooks/useData.hook.ts @@ -0,0 +1,124 @@ +import { ref, reactive } from 'vue' +import { formatDate, goDialog, httpErrorHandle } from '@/utils' +import { DialogEnum } from '@/enums/pluginEnum' +import { projectListApi, deleteProjectApi, changeProjectReleaseApi } from '@/api/path' +import { Chartype, ChartList } from '../../../index.d' +import { ResultEnum } from '@/enums/httpEnum' + +// 数据初始化 +export const useDataListInit = () => { + const loading = ref(true) + + const paginat = reactive({ + // 当前页数 + page: 1, + // 每页值 + limit: 12, + // 总数 + count: 10 + }) + + const list = ref([]) + + // 数据请求 + const fetchList = async () => { + loading.value = true + const res = await projectListApi({ + pageNo: paginat.page, + pageSize: paginat.limit + }) + if (res && res.data) { + paginat.count = res.data.count + const projects = res.data.list + list.value = projects.map(e => { + const { id, name, status, createTime, picUrl, creator } = e + return { + id: id, + title: name, + createId: creator, + time: formatDate(new Date(createTime), 'YYY-mm-dd HH:MM:SS'), + image: picUrl, + release: status === 0 + } + }) + setTimeout(() => { + loading.value = false + }, 500) + return + } + httpErrorHandle() + } + + // 修改页数 + const changePage = (_page: number) => { + paginat.page = _page + fetchList() + } + + // 修改大小 + const changeSize = (_size: number) => { + paginat.limit = _size + fetchList() + } + + // 删除处理 + const deleteHandle = (cardData: Chartype) => { + goDialog({ + type: DialogEnum.DELETE, + promise: true, + onPositiveCallback: () => + new Promise(res => { + res( + deleteProjectApi({ + id: cardData.id + }) + ) + }), + promiseResCallback: (res: any) => { + if (res.code === ResultEnum.SUCCESS) { + window['$message'].success(window['$t']('global.r_delete_success')) + fetchList() + return + } + httpErrorHandle() + } + }) + } + + // 发布处理 + const releaseHandle = async (cardData: Chartype, index: number) => { + const { id, release } = cardData + const res = await changeProjectReleaseApi({ + id: id, + // 反过来 + status: !release ? 0 : 1 + }) + if (res && res.code === ResultEnum.SUCCESS) { + list.value = [] + fetchList() + // 发布 -> 未发布 + if (release) { + window['$message'].success(window['$t']('global.r_unpublish_success')) + return + } + // 未发布 -> 发布 + window['$message'].success(window['$t']('global.r_publish_success')) + return + } + httpErrorHandle() + } + + // 立即请求 + fetchList() + + return { + loading, + paginat, + list, + fetchList, + releaseHandle, + changeSize, + changePage, + deleteHandle + } +} diff --git a/src/views/project/items/components/ProjectItemsList/hooks/useModal.hook.ts b/src/views/project/items/components/ProjectItemsList/hooks/useModal.hook.ts new file mode 100644 index 0000000..e28b1f9 --- /dev/null +++ b/src/views/project/items/components/ProjectItemsList/hooks/useModal.hook.ts @@ -0,0 +1,42 @@ +import { ref } from 'vue' +import { ChartEnum } from '@/enums/pageEnum' +import { fetchPathByName, routerTurnByPath, openNewWindow, previewPath } from '@/utils' +import { Chartype } from '../../../index.d' +export const useModalDataInit = () => { + const modalShow = ref(false) + const modalData = ref(null) + + // 关闭 modal + const closeModal = () => { + modalShow.value = false + modalData.value = null + } + + // 缩放处理 + const resizeHandle = (cardData: Chartype) => { + if (!cardData) return + modalShow.value = true + modalData.value = cardData + } + + // 编辑处理 + const editHandle = (cardData: Chartype) => { + if (!cardData) return + const path = fetchPathByName(ChartEnum.CHART_HOME_NAME, 'href') + routerTurnByPath(path, [cardData.id], undefined, true) + } + + // 预览处理 + const previewHandle = (cardData: Chartype) => { + openNewWindow(previewPath(cardData.id)) + } + + return { + modalData, + modalShow, + closeModal, + resizeHandle, + editHandle, + previewHandle + } +} diff --git a/src/views/project/items/components/ProjectItemsList/index.ts b/src/views/project/items/components/ProjectItemsList/index.ts new file mode 100644 index 0000000..f4b5290 --- /dev/null +++ b/src/views/project/items/components/ProjectItemsList/index.ts @@ -0,0 +1,3 @@ +import ProjectItemsList from './index.vue' + +export { ProjectItemsList } diff --git a/src/views/project/items/components/ProjectItemsList/index.vue b/src/views/project/items/components/ProjectItemsList/index.vue new file mode 100644 index 0000000..81aea4d --- /dev/null +++ b/src/views/project/items/components/ProjectItemsList/index.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/src/views/project/items/components/ProjectItemsModalCard/index.ts b/src/views/project/items/components/ProjectItemsModalCard/index.ts new file mode 100644 index 0000000..d5b8a58 --- /dev/null +++ b/src/views/project/items/components/ProjectItemsModalCard/index.ts @@ -0,0 +1,3 @@ +import ProjectItemsModalCard from './index.vue' + +export { ProjectItemsModalCard } diff --git a/src/views/project/items/components/ProjectItemsModalCard/index.vue b/src/views/project/items/components/ProjectItemsModalCard/index.vue new file mode 100644 index 0000000..1916462 --- /dev/null +++ b/src/views/project/items/components/ProjectItemsModalCard/index.vue @@ -0,0 +1,177 @@ + + + + + diff --git a/src/views/project/items/index.d.ts b/src/views/project/items/index.d.ts new file mode 100644 index 0000000..b0be038 --- /dev/null +++ b/src/views/project/items/index.d.ts @@ -0,0 +1,11 @@ +export type Chartype = { + id: number | string + title: string // 标题 + label?: string // 标签 + time: string, // 时间 + image: string, // 预览图地址 + createId: string, // 创建者 + release: boolean // false 未发布 | true 已发布 +} + +export type ChartList = Chartype[] \ No newline at end of file diff --git a/src/views/project/items/index.vue b/src/views/project/items/index.vue new file mode 100644 index 0000000..78b79c1 --- /dev/null +++ b/src/views/project/items/index.vue @@ -0,0 +1,15 @@ + + + + + diff --git a/src/views/project/layout/components/ProjectLayoutAsideFooter/index.ts b/src/views/project/layout/components/ProjectLayoutAsideFooter/index.ts new file mode 100644 index 0000000..6032c13 --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutAsideFooter/index.ts @@ -0,0 +1,3 @@ +import ProjectLayoutAsideFooter from './index.vue' + +export { ProjectLayoutAsideFooter } diff --git a/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue b/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue new file mode 100644 index 0000000..731796c --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutAsideFooter/index.vue @@ -0,0 +1,77 @@ + + + + diff --git a/src/views/project/layout/components/ProjectLayoutCreate/components/CreateModal/index.ts b/src/views/project/layout/components/ProjectLayoutCreate/components/CreateModal/index.ts new file mode 100644 index 0000000..6d5e114 --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutCreate/components/CreateModal/index.ts @@ -0,0 +1,3 @@ +import CreateModal from './index.vue' + +export { CreateModal } diff --git a/src/views/project/layout/components/ProjectLayoutCreate/components/CreateModal/index.vue b/src/views/project/layout/components/ProjectLayoutCreate/components/CreateModal/index.vue new file mode 100644 index 0000000..2dcc5c0 --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutCreate/components/CreateModal/index.vue @@ -0,0 +1,138 @@ + + + + diff --git a/src/views/project/layout/components/ProjectLayoutCreate/index.ts b/src/views/project/layout/components/ProjectLayoutCreate/index.ts new file mode 100644 index 0000000..d732e52 --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutCreate/index.ts @@ -0,0 +1,3 @@ +import ProjectLayoutCreate from './index.vue' + +export { ProjectLayoutCreate } diff --git a/src/views/project/layout/components/ProjectLayoutCreate/index.vue b/src/views/project/layout/components/ProjectLayoutCreate/index.vue new file mode 100644 index 0000000..12f294f --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutCreate/index.vue @@ -0,0 +1,54 @@ + + diff --git a/src/views/project/layout/components/ProjectLayoutSider/index.ts b/src/views/project/layout/components/ProjectLayoutSider/index.ts new file mode 100644 index 0000000..d870cce --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutSider/index.ts @@ -0,0 +1,3 @@ +import ProjectLayoutSider from './index.vue' + +export { ProjectLayoutSider } diff --git a/src/views/project/layout/components/ProjectLayoutSider/index.vue b/src/views/project/layout/components/ProjectLayoutSider/index.vue new file mode 100644 index 0000000..c7b963e --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutSider/index.vue @@ -0,0 +1,100 @@ + + + + + diff --git a/src/views/project/layout/components/ProjectLayoutSider/menu.ts b/src/views/project/layout/components/ProjectLayoutSider/menu.ts new file mode 100644 index 0000000..c878f70 --- /dev/null +++ b/src/views/project/layout/components/ProjectLayoutSider/menu.ts @@ -0,0 +1,86 @@ +import { reactive, h } from 'vue' +import { renderIcon } from '@/utils' +import { RouterLink } from 'vue-router' +import { PageEnum } from '@/enums/pageEnum' +import { MenuOption, MenuGroupOption } from 'naive-ui' +import { icon } from '@/plugins' + +const { GridIcon, TvOutlineIcon } = icon.ionicons5 +const { StoreIcon, ObjectStorageIcon, DevicesIcon } = icon.carbon +export const renderMenuLabel = (option: MenuOption | MenuGroupOption) => { + return option.label +} + +export const expandedKeys = () => ['all-project'] + +export const menuOptionsInit = () => { + const t = window['$t'] + + return reactive([ + { + key: 'divider-1', + type: 'divider', + }, + { + label: () => h('span', null, { default: () => t('project.project') }), + key: 'all-project', + icon: renderIcon(DevicesIcon), + children: [ + { + type: 'group', + label: () => h('span', null, { default: () => t('project.my') }), + key: 'my-project', + children: [ + { + label: () => + h( + RouterLink, + { + to: { + name: PageEnum.BASE_HOME_ITEMS_NAME, + }, + }, + { default: () => t('project.all_project') } + ), + key: PageEnum.BASE_HOME_ITEMS_NAME, + icon: renderIcon(TvOutlineIcon), + }, + { + label: () => + h( + RouterLink, + { + to: { + name: PageEnum.BASE_HOME_TEMPLATE_NAME, + }, + }, + { default: () => t('project.my_templete') } + ), + key: PageEnum.BASE_HOME_TEMPLATE_NAME, + icon: renderIcon(ObjectStorageIcon), + }, + ], + }, + ], + }, + + { + key: 'divider-2', + type: 'divider', + }, + { + label: () => + h( + RouterLink, + { + to: { + name: PageEnum.BASE_HOME_TEMPLATE_MARKET_NAME, + }, + }, + { default: () => t('project.template_market') } + ), + key: PageEnum.BASE_HOME_TEMPLATE_MARKET_NAME, + icon: renderIcon(StoreIcon), + }, + ]) +} diff --git a/src/views/project/mtTemplate/index.vue b/src/views/project/mtTemplate/index.vue new file mode 100644 index 0000000..22ffd40 --- /dev/null +++ b/src/views/project/mtTemplate/index.vue @@ -0,0 +1,24 @@ + + + + + diff --git a/src/views/project/templateMarket/index.vue b/src/views/project/templateMarket/index.vue new file mode 100644 index 0000000..fffc9e1 --- /dev/null +++ b/src/views/project/templateMarket/index.vue @@ -0,0 +1,19 @@ + + + + + diff --git a/src/views/redirect/UnPublish.vue b/src/views/redirect/UnPublish.vue new file mode 100644 index 0000000..2429dd3 --- /dev/null +++ b/src/views/redirect/UnPublish.vue @@ -0,0 +1,35 @@ + + + diff --git a/src/views/redirect/index.vue b/src/views/redirect/index.vue new file mode 100644 index 0000000..7ff0e23 --- /dev/null +++ b/src/views/redirect/index.vue @@ -0,0 +1,31 @@ + + + diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..07a4c65 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "esnext", + "module": "esnext", + "moduleResolution": "node", + "strict": true, + "jsx": "preserve", + "baseUrl": ".", + "sourceMap": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "skipLibCheck": true, + "lib": ["es6", "ESNext", "dom"], + "types": ["vite/client"], + "paths": { + "@/*": ["src/*"], + "/#/*": ["types/*"] + }, + "noImplicitAny": true, //不允许使用any + // "strictNullChecks": true, //不允许使用null + "noImplicitThis": true //不允许往this上面挂属性 + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "types/**/*"], + "exclude": ["node_modules", "dist", "**/*.js"] +} diff --git a/types/global.d.ts b/types/global.d.ts new file mode 100644 index 0000000..aabfe76 --- /dev/null +++ b/types/global.d.ts @@ -0,0 +1,16 @@ +interface Window { + $loading: any + $message: any + $dialog: any + // 语言 + $t: any + $vue: any + // 键盘按键记录 + $KeyboardActive?: { [T: string]: boolean } + onKeySpacePressHold?: Function + + // 编辑 JSON 的存储对象 + opener: any +} + +declare type Recordable = Record diff --git a/types/shims-vue.d.ts b/types/shims-vue.d.ts new file mode 100644 index 0000000..fbfc892 --- /dev/null +++ b/types/shims-vue.d.ts @@ -0,0 +1,8 @@ +declare module '*.vue' { + import { DefineComponent } from 'vue' + const component: DefineComponent<{}, {}, any> + export default component +} + +declare module 'lodash/*' +declare module 'dom-helpers' \ No newline at end of file diff --git a/types/vite-env.d.ts b/types/vite-env.d.ts new file mode 100644 index 0000000..317bb4b --- /dev/null +++ b/types/vite-env.d.ts @@ -0,0 +1,10 @@ +/// + +interface ImportMetaEnv { + // 端口 + VITE_DEV_PORT: string; + // 开发地址 + VITE_DEV_PATH: string + // 生产地址 + VITE_PRO_PATH: string +} \ No newline at end of file diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..ad47cad --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,92 @@ +import { defineConfig, loadEnv } from 'vite' +import vue from '@vitejs/plugin-vue' +import { resolve } from 'path' +import { OUTPUT_DIR, brotliSize, chunkSizeWarningLimit, terserOptions, rollupOptions } from './build/constant' +import viteCompression from 'vite-plugin-compression' +import { axiosPre } from './src/settings/httpSetting' +import { viteMockServe } from 'vite-plugin-mock' +import monacoEditorPlugin from 'vite-plugin-monaco-editor' + +function pathResolve(dir: string) { + return resolve(process.cwd(), '.', dir) +} + +export default ({ mode }) => defineConfig({ + base: process.env.NODE_ENV === 'production' ? './' : '/', + // 路径重定向 + resolve: { + alias: [ + { + find: /\/#\//, + replacement: pathResolve('types') + }, + { + find: '@', + replacement: pathResolve('src') + }, + { + find: 'vue-i18n', + replacement: 'vue-i18n/dist/vue-i18n.cjs.js', //解决i8n警告 + } + ], + dedupe: ['vue'] + }, + // 全局 css 注册 + css: { + preprocessorOptions: { + scss: { + javascriptEnabled: true, + additionalData: `@import "src/styles/common/style.scss";` + } + } + }, + // 开发服务器配置 + server: { + host: true, + open: true, + port: 3000, + proxy: { + [axiosPre]: { + // @ts-ignore + target: loadEnv(mode, process.cwd()).VITE_DEV_PATH, + changeOrigin: true, + ws: true, + secure: true, + } + } + }, + plugins: [ + vue(), + monacoEditorPlugin({ + languageWorkers: ['editorWorkerService', 'typescript', 'json', 'html'] + }), + viteMockServe({ + mockPath: '/src/api/mock', + // 开发打包开关 + localEnabled: true, + // 生产打包开关 + prodEnabled: true, + // 打开后,可以读取 ts 文件模块。 请注意,打开后将无法监视.js 文件 + supportTs: true, + // 监视文件更改 + watchFiles: true + }), + // 压缩 + viteCompression({ + verbose: true, + disable: false, + threshold: 10240, + algorithm: 'gzip', + ext: '.gz' + }) + ], + build: { + target: 'es2015', + outDir: OUTPUT_DIR, + // minify: 'terser', // 如果需要用terser混淆,可打开这两行 + // terserOptions: terserOptions, + rollupOptions: rollupOptions, + brotliSize: brotliSize, + chunkSizeWarningLimit: chunkSizeWarningLimit + } +})