├── .gitignore
├── .idea
├── misc.xml
├── modules.xml
└── vcs.xml
├── .onedev-buildspec.yml
├── README.md
├── babel.config.js
├── detail.md
├── dist
└── favicon.ico
├── echarts-map-demo.iml
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── index.html
└── map.png
├── src
├── App.vue
├── Github.vue
├── MapRange.vue
├── MoneyDialog.vue
├── StreetDialog.vue
├── images
│ ├── ad.jpg
│ ├── adimg.js
│ ├── alipay.png
│ ├── aojiao.gif
│ ├── bg_bigdata.png
│ ├── data_background.png
│ ├── love.jpg
│ ├── pay.jpg
│ └── wxpay.jpg
├── main.js
├── mapDataDialog.vue
└── saveAs.js
├── vue.config.js
├── yarn.lock
└── 全国省市区geoJson数据包.zip
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
请选择文件下载方式
31 |邮箱:2890228902@qq.com
16 |QQ:2890228902
17 |单级数据文件列表 | 17 |JSON | 18 |CSV | 19 |
---|---|---|
省级(省份、直辖市、自治区) | 24 |provinces.json | 25 |provinces.csv | 26 |
地级(城市) | 29 |cities.json | 30 |cities.csv | 31 |
县级(区县) | 34 |areas.json | 35 |areas.csv | 36 |
乡级(乡镇、街道) | 39 |streets.json | 40 |streets.csv | 41 |
村级(村委会、居委会) | 44 |villages.json | 45 |villages.csv | 46 |
联动数据文件列表 | 53 |普通 | 54 |带编码 | 55 |
---|---|---|
“省份、城市” 二级联动数据 | 60 |pc.json | 61 |pc-code.json | 62 |
“省份、城市、区县” 三级联动数据 | 65 |pca.json | 66 |pca-code.json | 67 |
“省份、城市、区县、乡镇” 四级联动数据 | 70 |pcas.json | 71 |pcas-code.json | 72 |