VUE大屏的开发过程(纯前端)

写在前面,博主是个在北京打拼的码农,工作多年做过各类项目,最近心血来潮在这儿写点东西,欢迎大家多多指教。

  • 对于文章中出现的任何错误请大家批评指出,一定及时修改。
  • 有任何想要讨论和学习的问题可联系我:13287946835@139.com。
  • 发布文章的风格因专栏而异,均自成体系,不足之处请大家指正。

                                     

目录

                                     

一、准备工作

二、echarts使用

1、调整echarts折线图图大小   

 2、vue插件显示省份地图

最终效果:

 全部代码:

 3、vue开发多重圆弧进度条、vue开发类似圆角玉珏图

代码如下

 最终效果

4、实现环形饼图

全部代码 

5、开发三角形柱状图

全部代码如下

最终效果:

三、页面整体最终效果


一、准备工作

1.随便找一个脚手架下载一个vue项目,准备使用媒体查询加百分比布局实现页面的浏览器自适应,保证在缩放页面情况下页面的正常显示。

2.忘掉第一条,因为这个新项目是由我和另一位前端共同完成,我希望我在开发我的页面的时候对别人不造成任何影响,所以就不采用第一条了,第一条肯定会因为使用媒体查询和百分比布局在公共区域写很多代码。有时候独立开发很爽。

3.继续沿用我在(从零到一大屏开发过程记录_前端大屏开发-CSDN博客)与(大屏大概是怎么个开发法(前端)_前端大屏开发-CSDN博客)里的写法。

4.如果别人要影响我们怎么办

我们可能想到(vue如何通过当前页面设置样式改变body和#app的值)

那么我们可以在初始页面app.vue里加上对于路由路径的判断,如果不是我们的页面才引用相关样式文件,避免‘自相残杀’;

UI:

二、echarts使用

使用echarts图经常需要去官网看各种属性的用法,随用随查(Documentation - Apache ECharts)

当我们在使用地图,就直接去看类型为map相关的属性相关就行了

我们在使用时经常发现默认的画布很小,所以需要调整echarts折线图图大小

1、调整echarts折线图图大小   

   grid: { top: "85%", left: "100%", right: "100%", bottom: "100%" }, //top设置太高横坐标文字展示会出问题

核心点是修改option里的grid的值,调整距离边框的比例

修改前: 

修改后: 

 2、vue插件显示省份地图

利用echarts设置省份地图

 原型:

echarts 地图西藏区域JSON数据 

需要使用(DataV.GeoAtlas地理小工具系列)获取具体省份的数据 

 只渲染单个省份,需要隐藏默认的标注等(Echarts 地图隐藏右下角 “南海诸岛” 的方法_前端eacharts中国地图不显示海南诸岛-CSDN博客)

 设置地图的大小和位置、调整echarts地图大小,可以通过下面的属性设置

option:{
layoutCenter: ["58%", "40%"],// 如果宽高比大于 1 则宽度为 100,如果小于 1 则高度为 100,保证了不超过 100x100 的区域layoutSize: "430%", //缩放比例geo:{zoom: 0.7, //视角缩放比例aspectScale: 1,}
series:[{zoom:1}]}

 echart设置地图颜色

js西藏省所有市组成的数组

 { name: "拉萨市", value: "250" ,checked:true},

              { name: "日喀则市", value: "250" },

              { name: "山南市", value: "250" },

              { name: "林芝市", value: "250" },

              { name: "阿里地区", value: "250" },

              { name: "那曲市", value: "250" },

              { name: "昌都市", value: "250" },

最终效果:

 全部代码:

我没放resetTheme.js文件,这只是个修改主题的,这个页面没用到,各位可以注释掉相关代码

json文件

{"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]]]]}}]}

vue文件:

<template><div class="child3"><div class="top"><div class="item"><div class="main"><div class="text1">有效回流数</div><div class="text2">环比+16.8%</div></div><div class="numPart"><span>4</span><span>3</span><span>1</span><span>7</span><span>2</span></div></div><div class="item"><div class="main"><div class="text1 color2">系统调用次数</div><div class="text2">环比+16.0%</div></div><div class="numPart color2"><span>4</span><span>4</span><span>8</span><span>2</span><span>4</span></div></div><div class="item"><div class="main"><div class="text1 color3">系统用户数</div><div class="text2">环比+26.8%</div></div><div class="numPart color3"><span>5</span><span>4</span><span>0</span><span>2</span><span>9</span></div></div></div><div class="center"><div style="width: 950px; height: 500px"><div id="myEchart3" style="width: 950px; height: 100%"></div></div></div></div>
</template>
<script>
import * as echarts from "echarts";
import resetTheme from "./resetTheme.js";
import geoJson from "./xizang.json";
echarts.registerMap("china", geoJson);
export default {props: {},data() {return {chart1DataTableStatus: false,chart1Data: "",tableData1: [],tableData2: [],chart2Data: "",chart2DataTableStatus: false,};},created() {this.reloadPage();},mounted() {echarts.registerTheme("guoshou", resetTheme);},methods: {enableChart1() {var myChart = echarts.init(document.getElementById("myEchart3"));let option = {center: [91.132212, 29.660361], //中心点,一般设置省会坐标layoutCenter: ["58%", "40%"],// 如果宽高比大于 1 则宽度为 100,如果小于 1 则高度为 100,保证了不超过 100x100 的区域layoutSize: "430%", //缩放比例tooltip: {// params.seriesName+'<br />'+formatter: function (params, ticket, callback) {return params.name + ":" + params.value;}, //数据格式化},legend: {orient: "vertical",left: "left",show: false,},visualMap: {min: 0,max: 250, //总量left: "left",top: "bottom",text: ["高", "低"], //取值范围的文字inRange: {color: ["#70E3FE", "#0081D6"], //取值范围的颜色},show: false, //图注},geo: {map: "china",roam: false, //不开启缩放和平移zoom: 0.7, //视角缩放比例aspectScale: 1,label: {normal: {show: false, //省份内市文字fontSize: "10",color: "rgba(0,0,0,0.7)",},},itemStyle: {normal: {areaColor: "#0081D6", //常态地图颜色borderColor: "#A8DDFF",},emphasis: {areaColor: "#2389FF", //鼠标选择区域颜色shadowOffsetX: 0,shadowOffsetY: 0,shadowBlur: 20,borderWidth: 0,shadowColor: "rgba(0, 0, 0, 0.5)",},},// 这里是重点!!!regions: [{name: "南海诸岛",itemStyle: {// 隐藏地图normal: {opacity: 0, // 为 0 时不绘制该图形},},label: {show: false, // 隐藏文字},},],},series: [{// grid: { top: "85%", left: "100%", right: "100%", bottom: "100%" }, //top设置太高横坐标文字展示会出问题//         center: [91.132212, 29.660361], //中心点,一般设置省会坐标//  layoutCenter: ["60%", "45%"],//         // 如果宽高比大于 1 则宽度为 100,如果小于 1 则高度为 100,保证了不超过 100x100 的区域//         layoutSize: "350%", //缩放比例name: "地域舆情",type: "map",zoom: 1,mapType: "china",map: "西藏",geoIndex: 0,label: {normal: {show: true,},emphasis: {show: true,},},data: [{ name: "拉萨市", value: "250" },{ name: "日喀则市", value: "250" },{ name: "山南市", value: "0" },{ name: "林芝市", value: "250" },{ name: "阿里地区", value: "250" },{ name: "那曲市", value: "250" },{ name: "昌都市", value: "250" },],},],};myChart.setOption(option);myChart.resize();},setAllChart() {this.$nextTick(function () {this.enableChart1();});},reloadPage() {try {this.setAllChart();} catch (error) {} finally {}},},
};
</script>
<style lang="scss" scoped>
.child3 {padding-top: 110px;width: 100%;height: 500px;// display: flex;// justify-content: space-between;// background: url(../largeScreen1/centerBg.png) no-repeat bottom center;// background-size: 100% 40%;
}
.top {width: 100%;height: 150px;margin-top: 20px;display: flex;justify-content: space-around;.item {width: 25%;height: 100%;.main {width: 100%;height: 30%;display: flex;justify-content: space-between;align-items: center;.text1 {font-family: SourceHanSansSC, SourceHanSansSC;font-weight: 400;font-size: 18px;color: #4eaffe;// line-height: 50px;font-style: normal;text-transform: none;}.text2 {font-family: SourceHanSansSC, SourceHanSansSC;font-weight: 400;font-size: 14px;color: #ffffff;font-style: normal;text-transform: none;}}.numPart {height: 70%;width: 100%;span {display: inline-block;padding: 5px;background: url(../images/border1.png) no-repeat;background-size: 100% 100%;font-family: Impact;font-size: 48px;color: #4eaffe;line-height: 50px;text-align: center;font-style: normal;text-transform: none;margin: 4px;}}}
}
.color2 {color: #7bfbff !important;span {background: url(../images/border2.png) no-repeat !important;background-size: 100% 100% !important;color: #7bfbff !important;}
}
.color3 {color: #fbe34d !important;span {background: url(../images/border3.png) no-repeat !important;background-size: 100% 100% !important;color: #fbe34d !important;}
}
.center {width: 100%;height: 350px;.title {height: 30px;line-height: 30px;font-family: PingFangSC, PingFang SC;font-weight: 500;font-size: 18px;color: #ffffff;width: 100%;text-align: center;font-style: normal;text-transform: none;background: url(../largeScreen1/center.png) no-repeat center center;background-size: 100% 30%;}
}
.right {width: 18%;height: 395px;background: url(../largeScreen1/right.png);background-size: 100% 100%;p {padding: 10px;width: 100%;font-family: PingFangSC, PingFang SC;font-weight: 400;font-size: 16px;color: #ffffff;line-height: 24px;text-align: left;font-style: normal;text-transform: none;span {display: inline-block;width: 8px;height: 8px;border-radius: 50%;}}
}
.part1 {width: 100%;height: 23%;margin-bottom: 8px;background: url(../largeScreen1/part1.png);background-size: 100% 100%;p:first-child {height: 30%;line-height: 50px;font-family: PingFangSC, PingFang SC;font-weight: 500;font-size: 18px;color: #ffffff;width: 100%;text-align: center;font-style: normal;text-transform: none;}p:last-of-type {height: 70%;line-height: 100px;font-family: AlimamaShuHeiTi, AlimamaShuHeiTi;font-weight: bold;font-size: 36px;color: #28d4ff;text-align: center;font-style: normal;text-transform: none;}
}
</style>

 3、vue开发多重圆弧进度条、vue开发类似圆角玉珏图

场馆运行--资源状态分析 - category-work,grid直角坐标,legend,series-pie饼图,tooltip提示框 - makeapie echarts社区图表可视化案例

查到antV有个类似的(G2)但不是进度条形式

官方示例就那几种,很多实际开发的图在上面根本找不到,最后还得看网友老哥根据属性啥的爆改,完全变了个样,像Chart.js(Chart.js | 开源的 HTML5 图表工具)这种库里根本找不到,自己开发肯定时间成本很高

代码如下

<template><div class="child2"><div style="width: 410px; height: 300px" id="chart5"></div></div>
</template><script>
import * as echarts from "echarts";export default {data() {return {littleTabIndex: 0,};},mounted() {this.setCharts();},methods: {setCharts() {var myChart = echarts.init(document.getElementById("chart5"));let data = [{name: "使用中资源量",value: 754,},{name: "维修中资源量",value: 611,},{name: "保养中资源量",value: 400,},{name: "已损坏资源量",value: 200,},],arrName = getArrayValue(data, "name"),arrValue = getArrayValue(data, "value"),sumValue = eval(arrValue.join("+")),objData = array2obj(data, "name"),optionData = getData(data);function getArrayValue(array, key) {var key = key || "value";var res = [];if (array) {array.forEach(function (t) {res.push(t[key]);});}return res;}function array2obj(array, key) {var resObj = {};for (var i = 0; i < array.length; i++) {resObj[array[i][key]] = array[i];}return resObj;}function getData(data) {var res = {series: [],yAxis: [],};for (let i = 0; i < data.length; i++) {// console.log([70 - i * 15 + '%', 67 - i * 15 + '%']);res.series.push({name: "",type: "pie",clockWise: false, //顺时加载hoverAnimation: false, //鼠标移入变大radius: [73 - i * 15 + "%", 68 - i * 15 + "%"],center: ["30%", "55%"],label: {show: false,},itemStyle: {label: {show: false,},labelLine: {show: false,},borderWidth: 5,},data: [{value: data[i].value,name: data[i].name,},{value: sumValue - data[i].value,name: "",itemStyle: {color: "rgba(0,0,0,0)",borderWidth: 0,},tooltip: {show: false,},hoverAnimation: false,},],});res.series.push({name: "",type: "pie",silent: true,z: 1,clockWise: false, //顺时加载hoverAnimation: false, //鼠标移入变大radius: [73 - i * 15 + "%", 68 - i * 15 + "%"],center: ["30%", "55%"],label: {show: false,},itemStyle: {label: {show: false,},labelLine: {show: false,},borderWidth: 5,},data: [{value: 7.5,itemStyle: {color: "rgb(3, 31, 62)",borderWidth: 0,},tooltip: {show: false,},hoverAnimation: false,},{value: 2.5,name: "",itemStyle: {color: "rgba(0,0,0,0)",borderWidth: 0,},tooltip: {show: false,},hoverAnimation: false,},],});res.yAxis.push(((data[i].value / sumValue) * 100).toFixed(2) + "%");}return res;}let option = {// backgroundColor: "#000",legend: {show: true,icon: "circle",top: "center",left: "70%",data: arrName,width: 50,padding: [0, 5],itemGap: 25,formatter: function (name) {return ("{title|" +name +"}\n{value|" +objData[name].value +"}  {title|项}");},textStyle: {rich: {title: {fontSize: 16,lineHeight: 15,color: "rgb(0, 178, 246)",},value: {fontSize: 18,lineHeight: 20,color: "#fff",},},},},tooltip: {show: true,trigger: "item",formatter: "{a}<br>{b}:{c}({d}%)",},color: ["rgb(24, 183, 142)","rgb(1, 179, 238)","rgb(22, 75, 205)","rgb(52, 52, 176)",],grid: {top: "16%",bottom: "53%",left: "30%",containLabel: false,},yAxis: [{type: "category",inverse: true,axisLine: {show: false,},axisTick: {show: false,},axisLabel: {interval: 0,inside: true,textStyle: {color: "#fff",fontSize: 16,},show: true,},data: optionData.yAxis,},],xAxis: [{show: false,},],series: optionData.series,};myChart.setOption(option);myChart.resize();},},
};
</script><style lang="less" scoped>
.textBox {line-height: 20px;padding-bottom: 8px;p {font-family: SourceHanSansSC, SourceHanSansSC;font-weight: 500;font-style: normal;text-transform: none;}.p1 {font-size: 24px;color: #ffffff;}.p2 {font-family: Impact;font-size: 50px;color: #4eaffe;background: url(../images/textBg.png) no-repeat center bottom;padding-bottom: 25px;}.yellow {color: #fbe34d;}.p3 {line-height: 0;font-family: SourceHanSansSC, SourceHanSansSC;font-weight: 400;font-size: 18px;color: #aaaaaa;span {font-family: Impact;font-size: 24px;color: #ffffff;}}
}
</style>

 最终效果

 

4、实现环形饼图

 相关文章(圆环图自定义legend、设置默认选中 - category-work,legend,series-pie饼图,title标题 - makeapie echarts社区图表可视化案例)

如何正确使用网站的代码呢,直接在网站上调试好样式等

把代码拷贝在下方这样的空壳子里就能运行了

<template><div class="child2"><div style="width: 410px; height: 260px" id="chart6"></div></div>
</template><script>
import * as echarts from "echarts";export default {data() {return {};},mounted() {this.setCharts();},methods: {setCharts() {var myChart = echarts.init(document.getElementById("chart6"));//全部代码拷贝在这然后稍加改动myChart.setOption(option);myChart.resize();},},
};
</script><style lang="less" scoped></style>

全部代码 

<template><div class="child2"><div style="width: 410px; height: 260px" id="chart6"></div></div>
</template><script>
import * as echarts from "echarts";export default {data() {return {};},mounted() {this.setCharts();},methods: {setCharts() {var myChart = echarts.init(document.getElementById("chart6"));var color = ['#26a4f8','#17c78b','#f97b00','#ffe404',];var title = '';
var legend = ['App','网页','一体机','对外接口',];var seriesData = [{ "name": "App", "value": 56.8 },{ "name": "网页", "value": 25.8 },{ "name": "一体机", "value": 16.8 },{ "name": "对外接口", "value": 13.8 },]var option = {backgroundColor:'#050e31',color: color,title: {show:false,top: 20,text: title,textStyle: {fontSize: 20,color: '#DDEEFF',},},grid: {top: '100%',left: '100%',right: '100%',bottom: 5,containLabel: true,},legend: {orient: 'vertical',top: 'center',right: 0,textStyle: {align: 'left',verticalAlign: 'middle',rich: {name: {color: 'rgba(255,255,255,0.5)',fontSize: 16,},value: {color: 'rgba(255,255,255,0.5)',fontSize: 16,},rate: {color: 'rgba(255,255,255,0.9)',fontSize: 16,},},},data: legend,formatter: (name) => {if (seriesData.length) {const item = seriesData.filter((item) => item.name === name)[0];return `{name|${name}:} {rate| ${item.value}%}`;}},},series: [{name: '需求类型占比',type: 'pie',center: ['25%', '50%'],radius: ['45%', '65%'],itemStyle: {normal: {borderWidth: 6,borderColor: "#182037",}},label: {normal: {show: false,position: 'center',formatter: '{value|{c}%}\n数据展示',rich: {value: {padding: 5,align: 'center',verticalAlign: 'middle',fontSize: 32,},label: {align: 'center',verticalAlign: 'middle',fontSize: 16,},},},emphasis: {show: true,textStyle: {fontSize: '12',},},},labelLine: {show: false,length: 0,length2: 0,},data: seriesData,}],
};// myChart.setOption(option);getDefaultSelected(myChart)function getDefaultSelected(myChart) {let index = 0;myChart.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: 0,});myChart.on('mouseover', (e) => {if (e.dataIndex !== index) {myChart.dispatchAction({type: 'downplay',seriesIndex: 0,dataIndex: index,});}});myChart.on('mouseout', (e) => {index = e.dataIndex;myChart.dispatchAction({type: 'highlight',seriesIndex: 0,dataIndex: e.dataIndex,});});
}myChart.setOption(option);myChart.resize();},},
};
</script><style lang="less" scoped></style>

实现环形图的默认选中效果

相关文章(echrts环形图默认选中,且不会消失_echarts 双圈饼状图,默认选中一个-CSDN博客)

5、开发三角形柱状图

相关文章(三角形动态数据 - category-work,grid直角坐标,series-pictorialBar,tooltip提示框 - makeapie echarts社区图表可视化案例)

原型:

全部代码如下

<template><div class="child2"><div style="width: 410px; height: 260px" id="chart7"></div></div>
</template><script>
import * as echarts from "echarts";export default {data() {return {};},mounted() {this.setCharts();},methods: {setCharts() {var myChart = echarts.init(document.getElementById("chart7"));// 颜色var lightBlue = {type: "linear",x: 0,y: 0,x2: 0,y2: 1,colorStops: [{offset: 0,color: "rgba(0, 192, 255, 1)", // 0% 处的颜色},{offset: 1,color: "rgba(0, 192, 255, 0.1)", // 100% 处的颜色},],globalCoord: false, // 缺省为 false};var darkBlue = {type: "linear",x: 0,y: 0,x2: 0,y2: 1,colorStops: [{offset: 0,color: "rgba(41, 121, 255, 1)", // 0% 处的颜色},{offset: 1,color: "rgba(41, 121, 255, 0.1)", // 100% 处的颜色},],globalCoord: false, // 缺省为 false};function randomData() {let value = Math.random() * 45;return {value: Math.round(value),};}// 时间设置function checkTime(i) {if (i < 10) {i = "0" + i;}return i;}function timeSet() {var newTime = new Date();var m = newTime.getMinutes();var s = newTime.getSeconds();m = checkTime(m);s = checkTime(s);return [m, s].join(":");}var data = [];var timeData = ["1月", "2月", "3月", "4月", "5月", "6月"];for (var i = 0; i < 6; i++) {// timeData.unshift(timeSet());data.unshift(randomData());}// 指定图表的配置项和数据var option = {tooltip: {show: false,},grid: {top: "90%",left: "100%",right: "100%",bottom: "95%",// containLabel: true,},xAxis: {type: "category",boundaryGap: false,// boundaryGap: 100,min: -1,max: 6,axisLine: {lineStyle: {color: "#4bbbf8",shadowColor: "rgba(75, 211, 255, 0.5)",shadowBlur: 5,},},axisTick: {//   inside: true, // 刻度标签是否朝内,默认朝外interval: (index) => {if (index === -1 || index === 6) {return false;} else {return true;}},},axisLabel: {color: "#4bbbf8",fontSize: 12,rotate: 25,},splitLine: {show: false,},data: timeData,},yAxis: [{show: false,max: 50,min: 0,axisLine: {lineStyle: {color: "#4bbbf8",shadowColor: "rgba(75, 211, 255, 0.5)",shadowBlur: 5,},},axisLabel: {color: "#fff",fontSize: 12,},splitLine: {lineStyle: {color: "rgba(75, 211, 255, 0.2)",type: "dashed",},},},],series: [{name: "数量",type: "pictorialBar",barCategoryGap: "-60%",symbol: 'path://d="M150 0 L75 200 L225 200 Z"',label: {show: true,position: "top",color: "#fff",fontSize: 14,},itemStyle: {color: function (params) {return params.dataIndex % 2 ? darkBlue : lightBlue;},},data: data,},],// backgroundColor: "#190c12",};// myChart.setOption(option);var key = 0;setInterval(function () {// timeData.shift();timeData =key === 1? ["1月", "2月", "3月", "4月", "5月", "6月"]: ["7月", "8月", "9月", "10月", "11月", "12月"];data.shift();data.push(randomData());// 颜色控制key = key === 1 ? 0 : 1;myChart.setOption({xAxis: {data: timeData,},series: [{itemStyle: {normal: {color: function (params) {return (params.dataIndex + key) % 2 ? darkBlue : lightBlue;},},},data: data,},],});}, 5000);myChart.setOption(option);myChart.resize();},},
};
</script><style lang="less" scoped></style>

最终效果:

关于eacharts的x坐标轴有的文字不显示问题的解决

三、页面整体最终效果

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/35858.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

tauri使用github action实现跨平台编译并解决编译错误等问题

正常编译为跨平台结果就像上面的&#xff0c;有mac/windows/linux的安装程序&#xff0c;直接下载就可以安装使用&#xff0c;我的这个livebox桌面端仓库地址&#xff1a;GitHub - Sjj1024/LiveBox: livebox&#xff0c;里面有编译文件可以参考。今天主要讲一下遇到的问题。 官…

一投就中,收稿范围大,1个月内录用,国人发文最多,无风险预警

别人费心费力投个一年都不一定有结果&#xff0c;您直接坐上”直升飞机”&#xff0c;1个月录用。下面老毕分享1本超快录用EI期刊&#xff0c;工程电气方向的学者抓紧投稿。 抢占版面&#xff0c;下方【扫一扫】直接安排&#xff0c;1个月内录用&#x1f308; Journal of Elect…

快递大件多少算超重物品?

在快递大件物品时&#xff0c;我们经常听到“超重”这个词&#xff0c;但究竟多重才算超重呢&#xff1f;今天&#xff0c;就让我们来探讨一下快递大件的超重标准&#xff0c;以及如何更经济地快递这些超重物品。 1. 祺祺寄快递&#xff1a; “祺祺寄快递”是一个便捷的快递服…

在开发板上抓包的方法

1.tcpdump tcpdump -i lo -s0 -w /user/lo.pcap tcpdump: 启动 tcpdump 工具&#xff0c;用于捕获网络数据包。-i lo: 指定监听的网络接口为 lo&#xff0c;这里的 lo 是本地回环接口&#xff08;loopback interface&#xff09;&#xff0c;用于本机内部通信。-s0: 设置抓取…

绿盟又行了,漏管市场占有率第一

漏洞管理平台 吉祥学安全知识星球&#x1f517;除了包含技术干货&#xff1a;Java代码审计、web安全、应急响应等&#xff0c;还包含了安全中常见的售前护网案例、售前方案、ppt等&#xff0c;同时也有面向学生的网络安全面试、护网面试等。 今天看到不少朋友圈在转发&#xff…

使用Python实现深度学习模型通常涉及以下几个步骤

学习总结 1、掌握 JAVA入门到进阶知识(持续写作中……&#xff09; 2、学会Oracle数据库入门到入土用法(创作中……&#xff09; 3、手把手教你开发炫酷的vbs脚本制作(完善中……&#xff09; 4、牛逼哄哄的 IDEA编程利器技巧(编写中……&#xff09; 5、面经吐血整理的 面试技…

亚马逊测评干货分享:跨境卖家店铺测评技巧

测评在亚马逊、etsy、temu、速卖通、vinted、ebay、allegro、Jumia、Fruugo、敦煌、shopee、ozon、阿里国际站、沃尔玛、newegg等跨境平台中扮起着重要的方式&#xff0c;卖家们了解到测评可以快速增加产品的销量、评论数量&#xff0c;提升排名&#xff0c;从而打造爆款产品。…

Python基于逻辑回归分类模型、决策树分类模型、随机森林分类模型和XGBoost分类模型实现乳腺癌分类预测项目实战

说明&#xff1a;这是一个机器学习实战项目&#xff08;附带数据代码文档视频讲解&#xff09;&#xff0c;如需数据代码文档视频讲解可以直接到文章最后获取。 1.项目背景 在当今医疗健康领域&#xff0c;乳腺癌作为威胁女性健康的主要恶性肿瘤之一&#xff0c;其早期诊断与精…

Ollama qwen2:7b

简介 一个简明易用的本地大模型运行框架&#xff0c;Ollama官网&#xff1a;Ollama ollama命令 ollama有类似docker的命令。下面是一些模型(large language models)的操作命令: ollama list&#xff1a;显示模型列表ollama show&#xff1a;显示模型的信息ollama pull&#…

2024年【建筑电工(建筑特殊工种)】模拟试题及建筑电工(建筑特殊工种)作业考试题库

题库来源&#xff1a;安全生产模拟考试一点通公众号小程序 2024年建筑电工(建筑特殊工种)模拟试题为正在备考建筑电工(建筑特殊工种)操作证的学员准备的理论考试专题&#xff0c;每个月更新的建筑电工(建筑特殊工种)作业考试题库祝您顺利通过建筑电工(建筑特殊工种)考试。 1、…

visual studio2022配置和使用protobuf

上图证明&#xff0c;我真的测了好多遍&#xff0c;测了好多版本的protobuf&#xff0c;花了很多时间。不过好在最后在vs2022上测通了。 下载protobuf 这里是protobuf下载的地址。 Releases protocolbuffers/protobuf GitHub 个人使用的3.21.9这个版本才跑通的。 1、首先…

2024年5月90篇代码大模型论文最全整理

引言&#xff1a; 本文整理 2024 年 5 月发布的 90 篇代码大模型相关论文&#xff0c;其中包括 17 篇发表在今年 ICLR 的论文。根据论文内容&#xff0c;我们将这些论文整理为了基座模型、代码微调、测试基准、代码 Agent、低资源语言处理、AI 代码安全与分析、人机交互、软件…

Sqlserver双活

要实现Sqlserver双活不是一件简单的事情&#xff0c;什么是双活&#xff0c;就是两边都活着&#xff0c;两边都可以访问&#xff0c;也就是A服务器部署一个sqlserver服务&#xff0c;B服务器部署一个sqlserver服务&#xff0c;两边数据双向同步保持一致&#xff0c;当A数据库服…

EDA 虚拟机 Synopsys Sentaurus TCAD 2018.06-SP2 CentOS7.9

下载地址&#xff08;制作不易&#xff0c;下载使用需付费&#xff0c;不能接受的请勿下载&#xff09;&#xff1a; 链接&#xff1a;https://pan.baidu.com/s/1358rH_Ner1TYdc_TgoXrew?pwdyq3p 提取码&#xff1a;yq3p

2024年【G1工业锅炉司炉】考试及G1工业锅炉司炉考试题库

题库来源&#xff1a;安全生产模拟考试一点通公众号小程序 2024年G1工业锅炉司炉考试为正在备考G1工业锅炉司炉操作证的学员准备的理论考试专题&#xff0c;每个月更新的G1工业锅炉司炉考试题库祝您顺利通过G1工业锅炉司炉考试。 1、【多选题】TSGG0001-2012《锅炉安全技术监察…

Animate软件基础:更改图层的轮廓颜色

在Animate软件中&#xff0c;图层都有单独的轮廓颜色&#xff0c;并且可以进行自定义设置&#xff0c;用来在显示轮廓状态下标记不同的图层。 更改图层轮廓颜色的过程如下&#xff1a; 1.执行如下操作之一&#xff1a; 双击时间轴中图层的图标&#xff08;即该图层名称左侧的…

vite 创建vue3项目 集成 ESLint、Prettier、Sass等

在网上找了一大堆vue3脚手架的东西&#xff0c;无非就是vite或者vue-cli,在vue2时代&#xff0c;vue-cli用的人挺多的&#xff0c;也很好用&#xff0c;然而vue3大多是和vite搭配搭建的&#xff0c;而且个人感觉vite这个脚手架并没有那么的好用&#xff0c;搭建项目时只能做两个…

《昇思25天学习打卡营第2天 | 昇思MindSpore张量 Tensor》

第二天学习 1.今天学习了张量 Tensor&#xff0c;了解到Tensor是一个可用来表示在一些矢量、标量和其他张量之间的线性关系的多线性函数&#xff0c;也是一个特殊的数据结构&#xff0c;与数组和矩阵非常相似。是MindSpore网络运算中的基本数据结构。学些了张量和稀疏张量的属性…

Linux|如何查找和删除重复文件

引言 整理您的个人文件夹甚至整个操作系统可能会相当棘手&#xff0c;特别是当您习惯于使用下载管理器从网上下载各种资料时。 在很多情况下&#xff0c;您可能会发现自己不小心下载了重复的mp3、pdf和epub文件&#xff08;以及其他类型的文件&#xff09;&#xff0c;并将它们…

正版软件 | WIFbox:智能化文件管理工具,让效率与隐私并行

在数字化办公日益普及的今天&#xff0c;文件管理成为了提升工作效率的关键。WIFbox 一款智能文件管理工具&#xff0c;利用强大的人工智能技术&#xff0c;帮助您快速对文件进行分类&#xff0c;完成复杂的智能文件分类任务。 智能分类&#xff0c;效率倍增 WIFbox 通过精细化…