mapData.ts 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034
  1. export const logicalData = {
  2. 'name': '茂名市',
  3. 'center': [110.999229, 21.919751],
  4. 'code': 440900,
  5. 'children': [
  6. {
  7. 'name': '茂南区',
  8. 'center': [110.880542, 21.560425],
  9. 'parentName': '茂名市',
  10. 'code': 440902,
  11. 'infoData': [
  12. { name: '面积', value: '587.78', unit: '平方千米' },
  13. { name: '常住人口', value: '103.5411', unit: '万人' }
  14. ],
  15. 'boundaries': [
  16. [
  17. [111.027805, 21.754385],
  18. [111.032883, 21.743883],
  19. [111.025768, 21.741104],
  20. [111.027778, 21.730949],
  21. [111.029176, 21.727902],
  22. [111.027588, 21.715729],
  23. [111.029326, 21.713671],
  24. [111.030208, 21.708766],
  25. [111.032503, 21.705011],
  26. [111.037541, 21.691111],
  27. [111.036115, 21.683986],
  28. [111.032802, 21.677824],
  29. [111.031607, 21.674228],
  30. [111.030874, 21.660165],
  31. [111.027724, 21.655579],
  32. [111.021735, 21.655954],
  33. [111.017499, 21.653574],
  34. [111.012081, 21.651809],
  35. [111.006513, 21.653226],
  36. [111.002929, 21.656943],
  37. [111.000349, 21.656542],
  38. [110.999724, 21.652397],
  39. [110.99709, 21.650151],
  40. [110.99284, 21.649563],
  41. [110.990871, 21.648146],
  42. [110.988535, 21.648547],
  43. [110.988304, 21.646755],
  44. [110.982846, 21.645017],
  45. [110.972947, 21.647277],
  46. [110.97702, 21.64126],
  47. [110.977536, 21.635003],
  48. [110.973979, 21.633746],
  49. [110.972933, 21.63531],
  50. [110.969484, 21.63511],
  51. [110.966361, 21.632663],
  52. [110.965818, 21.629494],
  53. [110.963808, 21.628103],
  54. [110.96393, 21.625562],
  55. [110.955769, 21.6089],
  56. [110.953393, 21.606118],
  57. [110.949265, 21.598401],
  58. [110.947744, 21.594683],
  59. [110.945572, 21.586939],
  60. [110.944947, 21.579528],
  61. [110.945653, 21.574499],
  62. [110.946712, 21.572827],
  63. [110.950718, 21.570459],
  64. [110.951967, 21.56662],
  65. [110.950705, 21.560693],
  66. [110.948532, 21.557295],
  67. [110.946495, 21.556359],
  68. [110.941987, 21.556078],
  69. [110.939937, 21.556961],
  70. [110.93866, 21.559757],
  71. [110.938647, 21.565001],
  72. [110.937275, 21.566446],
  73. [110.931844, 21.566432],
  74. [110.930526, 21.567115],
  75. [110.929182, 21.572773],
  76. [110.925285, 21.573201],
  77. [110.92223, 21.571181],
  78. [110.911557, 21.570512],
  79. [110.902961, 21.567409],
  80. [110.9047, 21.565857],
  81. [110.902595, 21.563784],
  82. [110.898766, 21.567569],
  83. [110.895303, 21.567877],
  84. [110.89184, 21.566646],
  85. [110.885377, 21.560881],
  86. [110.886938, 21.558044],
  87. [110.893551, 21.558553],
  88. [110.895384, 21.555529],
  89. [110.892669, 21.552813],
  90. [110.893619, 21.551676],
  91. [110.903627, 21.551837],
  92. [110.907307, 21.550191],
  93. [110.914694, 21.542244],
  94. [110.916866, 21.538016],
  95. [110.917599, 21.532128],
  96. [110.916269, 21.528355],
  97. [110.912426, 21.52513],
  98. [110.910525, 21.524488],
  99. [110.906492, 21.525772],
  100. [110.902608, 21.525839],
  101. [110.897082, 21.524394],
  102. [110.890442, 21.524046],
  103. [110.88497, 21.52521],
  104. [110.881914, 21.526883],
  105. [110.876863, 21.525117],
  106. [110.873889, 21.518078],
  107. [110.868689, 21.51306],
  108. [110.871011, 21.509205],
  109. [110.866964, 21.507318],
  110. [110.870114, 21.505311],
  111. [110.866095, 21.505619],
  112. [110.862388, 21.501778],
  113. [110.85993, 21.496585],
  114. [110.857703, 21.496558],
  115. [110.859849, 21.494979],
  116. [110.858898, 21.492396],
  117. [110.855639, 21.494644],
  118. [110.855734, 21.497669],
  119. [110.853399, 21.499007],
  120. [110.850805, 21.496839],
  121. [110.849447, 21.493654],
  122. [110.847696, 21.493493],
  123. [110.850452, 21.488661],
  124. [110.849977, 21.485717],
  125. [110.84832, 21.485864],
  126. [110.846881, 21.488635],
  127. [110.847166, 21.4917],
  128. [110.845482, 21.492744],
  129. [110.840648, 21.493654],
  130. [110.844301, 21.497468],
  131. [110.847424, 21.498552],
  132. [110.850914, 21.497749],
  133. [110.850262, 21.500386],
  134. [110.85621, 21.503718],
  135. [110.855599, 21.505565],
  136. [110.852666, 21.507091],
  137. [110.856997, 21.510062],
  138. [110.854512, 21.51057],
  139. [110.848714, 21.517074],
  140. [110.852924, 21.521276],
  141. [110.848619, 21.526308],
  142. [110.849787, 21.529225],
  143. [110.846623, 21.530148],
  144. [110.848062, 21.527673],
  145. [110.845754, 21.52699],
  146. [110.846188, 21.529091],
  147. [110.843771, 21.530161],
  148. [110.835149, 21.537614],
  149. [110.832148, 21.539675],
  150. [110.830193, 21.53938],
  151. [110.828848, 21.542659],
  152. [110.826038, 21.543542],
  153. [110.825033, 21.541722],
  154. [110.822113, 21.54199],
  155. [110.822724, 21.54397],
  156. [110.819642, 21.544358],
  157. [110.818691, 21.551663],
  158. [110.823308, 21.554071],
  159. [110.823132, 21.557737],
  160. [110.82635, 21.559797],
  161. [110.824652, 21.562927],
  162. [110.821638, 21.565857],
  163. [110.818705, 21.567315],
  164. [110.817782, 21.569068],
  165. [110.818881, 21.576184],
  166. [110.817782, 21.579421],
  167. [110.816532, 21.579502],
  168. [110.813667, 21.583073],
  169. [110.802804, 21.581455],
  170. [110.799151, 21.582204],
  171. [110.795621, 21.579568],
  172. [110.794589, 21.58318],
  173. [110.796612, 21.583983],
  174. [110.796395, 21.586725],
  175. [110.793801, 21.592262],
  176. [110.793516, 21.595887],
  177. [110.797943, 21.601758],
  178. [110.796015, 21.603149],
  179. [110.797427, 21.606827],
  180. [110.795485, 21.609381],
  181. [110.797264, 21.617873],
  182. [110.798839, 21.619839],
  183. [110.799396, 21.628023],
  184. [110.802017, 21.632048],
  185. [110.798731, 21.628464],
  186. [110.79687, 21.628544],
  187. [110.798228, 21.631834],
  188. [110.79425, 21.632475],
  189. [110.793136, 21.630363],
  190. [110.786917, 21.633291],
  191. [110.787922, 21.635992],
  192. [110.785573, 21.638319],
  193. [110.783373, 21.637583],
  194. [110.779707, 21.638172],
  195. [110.779123, 21.639896],
  196. [110.774384, 21.644081],
  197. [110.771845, 21.647798],
  198. [110.761484, 21.647985],
  199. [110.761552, 21.642945],
  200. [110.758415, 21.637409],
  201. [110.756596, 21.636032],
  202. [110.755659, 21.637583],
  203. [110.754599, 21.634842],
  204. [110.74986, 21.635899],
  205. [110.746982, 21.633893],
  206. [110.746819, 21.637503],
  207. [110.743125, 21.640311],
  208. [110.742962, 21.642397],
  209. [110.740695, 21.645098],
  210. [110.741156, 21.650766],
  211. [110.743492, 21.652143],
  212. [110.742188, 21.654964],
  213. [110.745977, 21.655713],
  214. [110.749521, 21.660285],
  215. [110.749575, 21.667531],
  216. [110.751164, 21.66951],
  217. [110.749222, 21.671261],
  218. [110.752128, 21.674202],
  219. [110.752345, 21.67733],
  220. [110.750797, 21.677824],
  221. [110.749888, 21.682249],
  222. [110.752237, 21.687515],
  223. [110.754586, 21.696991],
  224. [110.754885, 21.706828],
  225. [110.755509, 21.714232],
  226. [110.753608, 21.717479],
  227. [110.75574, 21.72058],
  228. [110.763073, 21.720566],
  229. [110.767228, 21.722744],
  230. [110.774031, 21.723065],
  231. [110.778254, 21.72233],
  232. [110.781336, 21.722744],
  233. [110.782273, 21.725257],
  234. [110.779666, 21.727208],
  235. [110.776448, 21.734824],
  236. [110.773841, 21.736695],
  237. [110.768939, 21.74375],
  238. [110.768178, 21.746916],
  239. [110.768491, 21.75063],
  240. [110.771437, 21.757938],
  241. [110.771763, 21.763683],
  242. [110.768083, 21.771444],
  243. [110.767947, 21.774463],
  244. [110.772252, 21.777309],
  245. [110.77657, 21.778003],
  246. [110.780046, 21.777001],
  247. [110.788587, 21.772887],
  248. [110.796341, 21.77095],
  249. [110.807462, 21.77075],
  250. [110.810979, 21.771217],
  251. [110.815351, 21.773956],
  252. [110.816397, 21.776721],
  253. [110.815813, 21.783881],
  254. [110.81421, 21.787621],
  255. [110.814849, 21.790158],
  256. [110.818298, 21.792469],
  257. [110.817985, 21.795942],
  258. [110.815989, 21.80055],
  259. [110.815337, 21.804449],
  260. [110.816302, 21.807628],
  261. [110.82191, 21.81273],
  262. [110.827477, 21.815694],
  263. [110.833723, 21.822224],
  264. [110.838055, 21.822572],
  265. [110.84111, 21.818565],
  266. [110.845564, 21.815374],
  267. [110.849502, 21.814452],
  268. [110.852937, 21.812596],
  269. [110.859713, 21.803662],
  270. [110.86323, 21.801752],
  271. [110.872396, 21.800096],
  272. [110.875804, 21.797264],
  273. [110.880135, 21.787981],
  274. [110.883965, 21.786565],
  275. [110.892017, 21.786953],
  276. [110.904211, 21.78921],
  277. [110.907904, 21.789557],
  278. [110.91191, 21.788649],
  279. [110.915766, 21.783426],
  280. [110.918618, 21.771378],
  281. [110.92041, 21.768866],
  282. [110.923561, 21.766943],
  283. [110.929236, 21.766862],
  284. [110.934777, 21.768465],
  285. [110.94048, 21.768666],
  286. [110.942449, 21.766662],
  287. [110.941308, 21.764578],
  288. [110.94105, 21.75878],
  289. [110.943711, 21.755667],
  290. [110.949347, 21.754678],
  291. [110.96632, 21.754772],
  292. [110.96723, 21.756936],
  293. [110.97717, 21.76578],
  294. [110.982302, 21.769173],
  295. [110.987232, 21.771538],
  296. [110.991251, 21.772433],
  297. [111.00024, 21.771805],
  298. [111.00741, 21.767704],
  299. [111.016738, 21.757711],
  300. [111.017825, 21.749348],
  301. [111.021491, 21.748706],
  302. [111.024397, 21.750123],
  303. [111.027805, 21.754385]
  304. ]
  305. ]
  306. },
  307. {
  308. 'name': '高州市',
  309. 'center': [110.903251, 21.915153],
  310. 'parentName': '茂名市',
  311. 'code': 440981,
  312. 'infoData': [
  313. { name: '面积', value: '3274.6', unit: '平方千米' },
  314. { name: '常住人口', value: '132.8657', unit: '万人' }
  315. ],
  316. 'boundaries': [
  317. [
  318. [110.784486, 22.2808],
  319. [110.789198, 22.276766],
  320. [110.793476, 22.270643],
  321. [110.795322, 22.269871],
  322. [110.802302, 22.269059],
  323. [110.80332, 22.266956],
  324. [110.800414, 22.265265],
  325. [110.797495, 22.259381],
  326. [110.796639, 22.25596],
  327. [110.792294, 22.252765],
  328. [110.79023, 22.250115],
  329. [110.78689, 22.243485],
  330. [110.781309, 22.239331],
  331. [110.777154, 22.234032],
  332. [110.779001, 22.226975],
  333. [110.779041, 22.219638],
  334. [110.790352, 22.213392],
  335. [110.792579, 22.209943],
  336. [110.796069, 22.207639],
  337. [110.799966, 22.207226],
  338. [110.80514, 22.21214],
  339. [110.811332, 22.215709],
  340. [110.815229, 22.215296],
  341. [110.820742, 22.210875],
  342. [110.822969, 22.207612],
  343. [110.82893, 22.207945],
  344. [110.83265, 22.209437],
  345. [110.833302, 22.214391],
  346. [110.836398, 22.215882],
  347. [110.840295, 22.216229],
  348. [110.847451, 22.211794],
  349. [110.844763, 22.20973],
  350. [110.843704, 22.206307],
  351. [110.84699, 22.205708],
  352. [110.86008, 22.199142],
  353. [110.868078, 22.196412],
  354. [110.870915, 22.193535],
  355. [110.881697, 22.184984],
  356. [110.885988, 22.185437],
  357. [110.890292, 22.189433],
  358. [110.887047, 22.196492],
  359. [110.887821, 22.198916],
  360. [110.889681, 22.199861],
  361. [110.894828, 22.199821],
  362. [110.900286, 22.199036],
  363. [110.904129, 22.193881],
  364. [110.907483, 22.191657],
  365. [110.911299, 22.194321],
  366. [110.913213, 22.19833],
  367. [110.916309, 22.20937],
  368. [110.920016, 22.210303],
  369. [110.924742, 22.208185],
  370. [110.928449, 22.207599],
  371. [110.932156, 22.208132],
  372. [110.934858, 22.210782],
  373. [110.939611, 22.21266],
  374. [110.94253, 22.215683],
  375. [110.944635, 22.219864],
  376. [110.950053, 22.226868],
  377. [110.952755, 22.229332],
  378. [110.956068, 22.23085],
  379. [110.964093, 22.228892],
  380. [110.977536, 22.23017],
  381. [110.980456, 22.234138],
  382. [110.98419, 22.235843],
  383. [110.990572, 22.232581],
  384. [110.994252, 22.229518],
  385. [111.005278, 22.229278],
  386. [111.009555, 22.227601],
  387. [111.012407, 22.228573],
  388. [111.014919, 22.23077],
  389. [111.020174, 22.237986],
  390. [111.024465, 22.238372],
  391. [111.028498, 22.243379],
  392. [111.03158, 22.24491],
  393. [111.036713, 22.246081],
  394. [111.038206, 22.247479],
  395. [111.038084, 22.250568],
  396. [111.04175, 22.252206],
  397. [111.049178, 22.261591],
  398. [111.048363, 22.264453],
  399. [111.049721, 22.267701],
  400. [111.051799, 22.264746],
  401. [111.056945, 22.263774],
  402. [111.058778, 22.261471],
  403. [111.059484, 22.258529],
  404. [111.063368, 22.258902],
  405. [111.066749, 22.253497],
  406. [111.067251, 22.249237],
  407. [111.069818, 22.24901],
  408. [111.074014, 22.246361],
  409. [111.07677, 22.242447],
  410. [111.077178, 22.236935],
  411. [111.081278, 22.239557],
  412. [111.088679, 22.240476],
  413. [111.09024, 22.241635],
  414. [111.093119, 22.240223],
  415. [111.095441, 22.242713],
  416. [111.095862, 22.244737],
  417. [111.102067, 22.244018],
  418. [111.107703, 22.246494],
  419. [111.116651, 22.248984],
  420. [111.11566, 22.250941],
  421. [111.117697, 22.253577],
  422. [111.119964, 22.253164],
  423. [111.123047, 22.248571],
  424. [111.125477, 22.247013],
  425. [111.133122, 22.248558],
  426. [111.134806, 22.251181],
  427. [111.137332, 22.251633],
  428. [111.139599, 22.254988],
  429. [111.145547, 22.254615],
  430. [111.150422, 22.254935],
  431. [111.154142, 22.259035],
  432. [111.156464, 22.257478],
  433. [111.160266, 22.256812],
  434. [111.173193, 22.260606],
  435. [111.176344, 22.261112],
  436. [111.177783, 22.264626],
  437. [111.181504, 22.266637],
  438. [111.183608, 22.263881],
  439. [111.183758, 22.258969],
  440. [111.186636, 22.25837],
  441. [111.188836, 22.259488],
  442. [111.194797, 22.258742],
  443. [111.196332, 22.260167],
  444. [111.203528, 22.262776],
  445. [111.209625, 22.261059],
  446. [111.211974, 22.263774],
  447. [111.214133, 22.264254],
  448. [111.215871, 22.267169],
  449. [111.219769, 22.27047],
  450. [111.217813, 22.273412],
  451. [111.220434, 22.277539],
  452. [111.228242, 22.284327],
  453. [111.229926, 22.280454],
  454. [111.235126, 22.27887],
  455. [111.236674, 22.279335],
  456. [111.236471, 22.281825],
  457. [111.238521, 22.283129],
  458. [111.239784, 22.287189],
  459. [111.24899, 22.286536],
  460. [111.250117, 22.279109],
  461. [111.253851, 22.27674],
  462. [111.257857, 22.272281],
  463. [111.258495, 22.268154],
  464. [111.262012, 22.267635],
  465. [111.266873, 22.269192],
  466. [111.270322, 22.26665],
  467. [111.270119, 22.270896],
  468. [111.272807, 22.27449],
  469. [111.275768, 22.273439],
  470. [111.278022, 22.275875],
  471. [111.284757, 22.276181],
  472. [111.286305, 22.278177],
  473. [111.285925, 22.281092],
  474. [111.28826, 22.283715],
  475. [111.287988, 22.288107],
  476. [111.290691, 22.290197],
  477. [111.292089, 22.293471],
  478. [111.294058, 22.293218],
  479. [111.299571, 22.30131],
  480. [111.303767, 22.303878],
  481. [111.311602, 22.305848],
  482. [111.314141, 22.306966],
  483. [111.318527, 22.306673],
  484. [111.325575, 22.307485],
  485. [111.328399, 22.309774],
  486. [111.331373, 22.309907],
  487. [111.33455, 22.307618],
  488. [111.336465, 22.30449],
  489. [111.338624, 22.303559],
  490. [111.340647, 22.298022],
  491. [111.344218, 22.295094],
  492. [111.346377, 22.294708],
  493. [111.348197, 22.292619],
  494. [111.352284, 22.290316],
  495. [111.365415, 22.288666],
  496. [111.368932, 22.28474],
  497. [111.368307, 22.282956],
  498. [111.371199, 22.278963],
  499. [111.373426, 22.272999],
  500. [111.370303, 22.272946],
  501. [111.36938, 22.271509],
  502. [111.373114, 22.269938],
  503. [111.375789, 22.26476],
  504. [111.374105, 22.261405],
  505. [111.370398, 22.256705],
  506. [111.370819, 22.254615],
  507. [111.375124, 22.252845],
  508. [111.382225, 22.245496],
  509. [111.384113, 22.245962],
  510. [111.383678, 22.241768],
  511. [111.381275, 22.240849],
  512. [111.380175, 22.242353],
  513. [111.376835, 22.243139],
  514. [111.37253, 22.24037],
  515. [111.371077, 22.237946],
  516. [111.365917, 22.237307],
  517. [111.360486, 22.233952],
  518. [111.35705, 22.227987],
  519. [111.356154, 22.223419],
  520. [111.352651, 22.219678],
  521. [111.349324, 22.217906],
  522. [111.348889, 22.215869],
  523. [111.346079, 22.211488],
  524. [111.351171, 22.202991],
  525. [111.350628, 22.2009],
  526. [111.348509, 22.199235],
  527. [111.348713, 22.1956],
  528. [111.354077, 22.193335],
  529. [111.354769, 22.190232],
  530. [111.351198, 22.187635],
  531. [111.350207, 22.184012],
  532. [111.348129, 22.181055],
  533. [111.343118, 22.179696],
  534. [111.340389, 22.180216],
  535. [111.339086, 22.178244],
  536. [111.333613, 22.177032],
  537. [111.33341, 22.175447],
  538. [111.330354, 22.175434],
  539. [111.328209, 22.173356],
  540. [111.327245, 22.169932],
  541. [111.328942, 22.167081],
  542. [111.329282, 22.16435],
  543. [111.333029, 22.162565],
  544. [111.334414, 22.160034],
  545. [111.335446, 22.155265],
  546. [111.335474, 22.151441],
  547. [111.332731, 22.146552],
  548. [111.333342, 22.144353],
  549. [111.331373, 22.142208],
  550. [111.331957, 22.139996],
  551. [111.336125, 22.13448],
  552. [111.338882, 22.132268],
  553. [111.340661, 22.12943],
  554. [111.339995, 22.127605],
  555. [111.341204, 22.1243],
  556. [111.34005, 22.121328],
  557. [111.337497, 22.118463],
  558. [111.334224, 22.120502],
  559. [111.333993, 22.117357],
  560. [111.332703, 22.115372],
  561. [111.324448, 22.113386],
  562. [111.325059, 22.109908],
  563. [111.324285, 22.105017],
  564. [111.327204, 22.103031],
  565. [111.322452, 22.099353],
  566. [111.317441, 22.098353],
  567. [111.317957, 22.097047],
  568. [111.312715, 22.08833],
  569. [111.313259, 22.086611],
  570. [111.318025, 22.085411],
  571. [111.318785, 22.083638],
  572. [111.317006, 22.082612],
  573. [111.314549, 22.083825],
  574. [111.312227, 22.083318],
  575. [111.306904, 22.084771],
  576. [111.304582, 22.084398],
  577. [111.306103, 22.07912],
  578. [111.303876, 22.076974],
  579. [111.302436, 22.072908],
  580. [111.298621, 22.069989],
  581. [111.300644, 22.06403],
  582. [111.29729, 22.060604],
  583. [111.288477, 22.058311],
  584. [111.288274, 22.055977],
  585. [111.286087, 22.054578],
  586. [111.287174, 22.053058],
  587. [111.285327, 22.047472],
  588. [111.289754, 22.043912],
  589. [111.289469, 22.038138],
  590. [111.295864, 22.031418],
  591. [111.300006, 22.031138],
  592. [111.304595, 22.029951],
  593. [111.308017, 22.025991],
  594. [111.304636, 22.021257],
  595. [111.304704, 22.01631],
  596. [111.305926, 22.011869],
  597. [111.304826, 22.009935],
  598. [111.300698, 22.007201],
  599. [111.300359, 22.006001],
  600. [111.29399, 22.003],
  601. [111.293882, 22.002187],
  602. [111.287649, 22.000053],
  603. [111.28568, 21.995905],
  604. [111.283901, 21.994064],
  605. [111.28329, 21.986808],
  606. [111.279393, 21.988862],
  607. [111.277125, 21.987889],
  608. [111.270893, 21.982967],
  609. [111.268421, 21.977311],
  610. [111.263329, 21.976004],
  611. [111.257165, 21.979005],
  612. [111.253498, 21.976297],
  613. [111.251828, 21.972589],
  614. [111.247754, 21.973816],
  615. [111.245365, 21.971095],
  616. [111.237869, 21.9674],
  617. [111.237625, 21.965866],
  618. [111.235153, 21.964918],
  619. [111.230781, 21.966746],
  620. [111.226368, 21.972149],
  621. [111.224209, 21.96744],
  622. [111.224426, 21.965532],
  623. [111.228133, 21.964972],
  624. [111.22835, 21.96097],
  625. [111.224752, 21.959008],
  626. [111.219402, 21.954539],
  627. [111.215165, 21.947708],
  628. [111.214161, 21.943786],
  629. [111.210576, 21.941611],
  630. [111.212314, 21.938315],
  631. [111.212395, 21.930336],
  632. [111.210603, 21.92696],
  633. [111.211228, 21.922449],
  634. [111.208485, 21.912147],
  635. [111.204832, 21.905661],
  636. [111.201899, 21.903366],
  637. [111.206475, 21.90051],
  638. [111.204587, 21.890353],
  639. [111.205375, 21.885494],
  640. [111.198966, 21.883759],
  641. [111.199862, 21.880715],
  642. [111.198952, 21.878807],
  643. [111.19405, 21.878366],
  644. [111.196332, 21.876898],
  645. [111.195435, 21.875416],
  646. [111.194064, 21.877645],
  647. [111.189651, 21.875736],
  648. [111.182712, 21.877405],
  649. [111.177308, 21.874855],
  650. [111.177742, 21.87288],
  651. [111.181504, 21.870757],
  652. [111.181775, 21.86455],
  653. [111.178774, 21.85961],
  654. [111.175393, 21.858449],
  655. [111.180132, 21.855204],
  656. [111.181313, 21.853162],
  657. [111.178231, 21.849116],
  658. [111.173261, 21.846807],
  659. [111.177783, 21.843762],
  660. [111.183269, 21.847448],
  661. [111.185129, 21.845658],
  662. [111.185523, 21.838101],
  663. [111.188048, 21.838355],
  664. [111.189637, 21.841239],
  665. [111.191891, 21.841746],
  666. [111.19716, 21.838755],
  667. [111.198273, 21.837353],
  668. [111.198694, 21.833428],
  669. [111.193887, 21.833281],
  670. [111.193371, 21.831745],
  671. [111.190561, 21.83061],
  672. [111.187981, 21.831972],
  673. [111.185889, 21.827846],
  674. [111.185129, 21.828661],
  675. [111.185672, 21.833094],
  676. [111.184437, 21.834683],
  677. [111.179277, 21.835564],
  678. [111.17982, 21.837647],
  679. [111.176384, 21.839196],
  680. [111.172949, 21.837287],
  681. [111.173112, 21.841786],
  682. [111.171238, 21.844216],
  683. [111.167979, 21.845351],
  684. [111.167531, 21.843696],
  685. [111.161746, 21.844003],
  686. [111.15937, 21.84168],
  687. [111.15736, 21.844657],
  688. [111.154984, 21.844337],
  689. [111.151345, 21.848222],
  690. [111.149009, 21.845979],
  691. [111.147203, 21.846099],
  692. [111.144094, 21.849357],
  693. [111.143768, 21.851173],
  694. [111.146144, 21.855445],
  695. [111.144284, 21.854978],
  696. [111.138269, 21.857835],
  697. [111.139654, 21.864443],
  698. [111.137603, 21.865297],
  699. [111.13448, 21.869035],
  700. [111.128397, 21.869582],
  701. [111.125749, 21.868862],
  702. [111.115999, 21.87045],
  703. [111.113514, 21.868408],
  704. [111.109061, 21.87049],
  705. [111.108341, 21.872946],
  706. [111.104104, 21.873347],
  707. [111.099107, 21.869289],
  708. [111.093201, 21.862133],
  709. [111.085026, 21.856259],
  710. [111.083166, 21.848022],
  711. [111.079839, 21.841706],
  712. [111.086791, 21.833374],
  713. [111.088692, 21.829475],
  714. [111.092956, 21.829649],
  715. [111.094205, 21.828234],
  716. [111.095237, 21.819661],
  717. [111.097179, 21.819567],
  718. [111.102624, 21.812302],
  719. [111.104485, 21.80692],
  720. [111.112021, 21.800416],
  721. [111.111125, 21.796276],
  722. [111.10534, 21.789758],
  723. [111.105231, 21.784856],
  724. [111.097831, 21.781022],
  725. [111.089724, 21.779406],
  726. [111.087905, 21.780555],
  727. [111.085447, 21.785537],
  728. [111.080518, 21.786338],
  729. [111.077639, 21.78913],
  730. [111.070958, 21.787287],
  731. [111.067197, 21.780368],
  732. [111.060326, 21.775105],
  733. [111.059607, 21.776106],
  734. [111.056239, 21.775612],
  735. [111.056198, 21.771271],
  736. [111.057271, 21.768946],
  737. [111.055397, 21.767116],
  738. [111.052057, 21.771859],
  739. [111.049287, 21.767944],
  740. [111.046707, 21.766448],
  741. [111.043176, 21.766969],
  742. [111.038193, 21.771297],
  743. [111.035246, 21.769173],
  744. [111.037527, 21.763416],
  745. [111.033983, 21.760944],
  746. [111.031254, 21.761986],
  747. [111.027805, 21.754385],
  748. [111.024397, 21.750123],
  749. [111.021491, 21.748706],
  750. [111.017825, 21.749348],
  751. [111.016738, 21.757711],
  752. [111.00741, 21.767704],
  753. [111.00024, 21.771805],
  754. [110.991251, 21.772433],
  755. [110.987232, 21.771538],
  756. [110.982302, 21.769173],
  757. [110.97717, 21.76578],
  758. [110.96723, 21.756936],
  759. [110.96632, 21.754772],
  760. [110.949347, 21.754678],
  761. [110.943711, 21.755667],
  762. [110.94105, 21.75878],
  763. [110.941308, 21.764578],
  764. [110.942449, 21.766662],
  765. [110.94048, 21.768666],
  766. [110.934777, 21.768465],
  767. [110.929236, 21.766862],
  768. [110.923561, 21.766943],
  769. [110.92041, 21.768866],
  770. [110.918618, 21.771378],
  771. [110.915766, 21.783426],
  772. [110.91191, 21.788649],
  773. [110.907904, 21.789557],
  774. [110.904211, 21.78921],
  775. [110.892017, 21.786953],
  776. [110.883965, 21.786565],
  777. [110.880135, 21.787981],
  778. [110.875804, 21.797264],
  779. [110.872396, 21.800096],
  780. [110.86323, 21.801752],
  781. [110.859713, 21.803662],
  782. [110.852937, 21.812596],
  783. [110.849502, 21.814452],
  784. [110.845564, 21.815374],
  785. [110.84111, 21.818565],
  786. [110.838055, 21.822572],
  787. [110.833723, 21.822224],
  788. [110.827477, 21.815694],
  789. [110.82191, 21.81273],
  790. [110.816302, 21.807628],
  791. [110.815337, 21.804449],
  792. [110.815989, 21.80055],
  793. [110.817985, 21.795942],
  794. [110.818298, 21.792469],
  795. [110.814849, 21.790158],
  796. [110.81421, 21.787621],
  797. [110.815813, 21.783881],
  798. [110.816397, 21.776721],
  799. [110.815351, 21.773956],
  800. [110.810979, 21.771217],
  801. [110.807462, 21.77075],
  802. [110.796341, 21.77095],
  803. [110.788587, 21.772887],
  804. [110.780046, 21.777001],
  805. [110.77657, 21.778003],
  806. [110.772252, 21.777309],
  807. [110.767947, 21.774463],
  808. [110.768083, 21.771444],
  809. [110.771763, 21.763683],
  810. [110.771437, 21.757938],
  811. [110.768491, 21.75063],
  812. [110.768178, 21.746916],
  813. [110.768939, 21.74375],
  814. [110.773841, 21.736695],
  815. [110.776448, 21.734824],
  816. [110.779666, 21.727208],
  817. [110.782273, 21.725257],
  818. [110.781336, 21.722744],
  819. [110.778254, 21.72233],
  820. [110.774031, 21.723065],
  821. [110.767228, 21.722744],
  822. [110.763073, 21.720566],
  823. [110.75574, 21.72058],
  824. [110.753608, 21.717479],
  825. [110.755509, 21.714232],
  826. [110.754885, 21.706828],
  827. [110.746764, 21.708405],
  828. [110.747729, 21.710129],
  829. [110.742854, 21.711653],
  830. [110.74045, 21.710223],
  831. [110.737436, 21.712508],
  832. [110.734394, 21.713096],
  833. [110.732656, 21.711359],
  834. [110.731162, 21.714339],
  835. [110.73267, 21.716677],
  836. [110.734693, 21.717319],
  837. [110.732398, 21.720125],
  838. [110.730117, 21.720112],
  839. [110.730361, 21.722357],
  840. [110.727252, 21.726205],
  841. [110.725677, 21.725003],
  842. [110.723368, 21.727715],
  843. [110.725011, 21.729733],
  844. [110.719566, 21.736481],
  845. [110.716986, 21.740529],
  846. [110.714949, 21.739621],
  847. [110.713442, 21.736147],
  848. [110.708309, 21.73429],
  849. [110.701968, 21.735011],
  850. [110.696754, 21.726927],
  851. [110.691281, 21.727822],
  852. [110.68604, 21.73155],
  853. [110.683107, 21.732165],
  854. [110.685348, 21.733394],
  855. [110.680771, 21.739594],
  856. [110.682116, 21.742841],
  857. [110.680296, 21.744778],
  858. [110.682537, 21.749227],
  859. [110.680133, 21.749976],
  860. [110.68251, 21.752407],
  861. [110.682279, 21.756121],
  862. [110.674946, 21.756282],
  863. [110.672067, 21.754598],
  864. [110.669542, 21.756482],
  865. [110.665292, 21.755413],
  866. [110.659344, 21.755921],
  867. [110.655311, 21.754478],
  868. [110.655257, 21.755961],
  869. [110.651944, 21.757618],
  870. [110.652242, 21.762347],
  871. [110.649771, 21.764297],
  872. [110.655678, 21.768238],
  873. [110.657932, 21.770389],
  874. [110.656764, 21.77624],
  875. [110.658054, 21.777456],
  876. [110.661177, 21.777202],
  877. [110.663241, 21.779646],
  878. [110.663798, 21.78356],
  879. [110.661666, 21.783533],
  880. [110.662481, 21.789357],
  881. [110.661367, 21.792095],
  882. [110.659833, 21.792509],
  883. [110.662169, 21.794633],
  884. [110.661612, 21.801298],
  885. [110.66407, 21.804436],
  886. [110.666853, 21.803621],
  887. [110.667899, 21.805358],
  888. [110.667016, 21.807414],
  889. [110.671877, 21.807949],
  890. [110.672516, 21.81066],
  891. [110.670886, 21.813037],
  892. [110.672475, 21.813678],
  893. [110.673208, 21.816322],
  894. [110.676548, 21.818646],
  895. [110.673629, 21.820288],
  896. [110.677322, 21.82555],
  897. [110.675313, 21.827058],
  898. [110.670777, 21.825563],
  899. [110.667831, 21.827366],
  900. [110.667967, 21.830544],
  901. [110.665373, 21.832119],
  902. [110.666378, 21.833548],
  903. [110.665278, 21.836819],
  904. [110.661232, 21.838168],
  905. [110.659059, 21.840892],
  906. [110.660363, 21.846954],
  907. [110.661625, 21.849824],
  908. [110.660213, 21.85439],
  909. [110.660186, 21.857301],
  910. [110.66316, 21.858128],
  911. [110.660471, 21.859183],
  912. [110.659548, 21.862253],
  913. [110.662101, 21.863976],
  914. [110.660688, 21.869849],
  915. [110.667668, 21.871985],
  916. [110.669053, 21.869876],
  917. [110.67128, 21.870811],
  918. [110.66502, 21.874962],
  919. [110.662997, 21.880755],
  920. [110.663472, 21.882704],
  921. [110.660267, 21.887243],
  922. [110.657172, 21.887082],
  923. [110.656044, 21.892541],
  924. [110.657945, 21.892622],
  925. [110.659358, 21.895117],
  926. [110.657973, 21.897186],
  927. [110.659195, 21.899362],
  928. [110.661422, 21.899735],
  929. [110.662589, 21.902885],
  930. [110.659439, 21.90414],
  931. [110.660159, 21.905981],
  932. [110.659195, 21.911507],
  933. [110.660756, 21.913522],
  934. [110.658923, 21.916057],
  935. [110.65948, 21.918046],
  936. [110.658461, 21.922183],
  937. [110.65929, 21.924438],
  938. [110.658923, 21.928694],
  939. [110.656017, 21.929682],
  940. [110.655691, 21.932591],
  941. [110.65375, 21.935153],
  942. [110.649106, 21.937434],
  943. [110.645114, 21.936967],
  944. [110.643688, 21.939423],
  945. [110.644204, 21.941637],
  946. [110.640809, 21.945693],
  947. [110.636219, 21.94524],
  948. [110.63478, 21.94608],
  949. [110.627475, 21.9456],
  950. [110.62317, 21.947815],
  951. [110.623374, 21.95039],
  952. [110.621867, 21.952098],
  953. [110.617481, 21.953005],
  954. [110.617263, 21.956727],
  955. [110.620441, 21.960689],
  956. [110.620957, 21.964558],
  957. [110.623754, 21.970054],
  958. [110.623415, 21.972015],
  959. [110.62628, 21.973443],
  960. [110.626103, 21.978178],
  961. [110.629539, 21.98182],
  962. [110.628493, 21.98354],
  963. [110.634862, 21.985034],
  964. [110.637034, 21.983407],
  965. [110.639696, 21.983207],
  966. [110.642072, 21.981126],
  967. [110.64658, 21.980566],
  968. [110.647761, 21.986448],
  969. [110.651346, 21.989956],
  970. [110.649676, 21.99197],
  971. [110.651455, 21.99289],
  972. [110.645915, 21.994998],
  973. [110.648861, 22.001586],
  974. [110.649649, 22.007748],
  975. [110.652772, 22.009335],
  976. [110.654442, 22.011589],
  977. [110.654429, 22.013669],
  978. [110.656479, 22.01647],
  979. [110.659412, 22.018643],
  980. [110.656981, 22.023137],
  981. [110.649717, 22.024791],
  982. [110.6484, 22.028311],
  983. [110.65007, 22.032498],
  984. [110.653166, 22.034378],
  985. [110.656275, 22.034752],
  986. [110.658339, 22.036272],
  987. [110.657973, 22.043312],
  988. [110.657172, 22.046552],
  989. [110.664395, 22.049005],
  990. [110.667654, 22.043098],
  991. [110.668876, 22.042512],
  992. [110.672407, 22.045365],
  993. [110.675109, 22.048965],
  994. [110.679644, 22.049525],
  995. [110.685212, 22.052071],
  996. [110.686719, 22.055164],
  997. [110.686705, 22.058257],
  998. [110.684736, 22.060497],
  999. [110.688185, 22.070308],
  1000. [110.685986, 22.073294],
  1001. [110.683311, 22.073494],
  1002. [110.678205, 22.07884],
  1003. [110.67367, 22.07904],
  1004. [110.666663, 22.081892],
  1005. [110.653071, 22.083332],
  1006. [110.651088, 22.084132],
  1007. [110.651536, 22.089756],
  1008. [110.651414, 22.096767],
  1009. [110.65379, 22.100406],
  1010. [110.656506, 22.101312],
  1011. [110.655501, 22.10579],
  1012. [110.660186, 22.109428],
  1013. [110.660118, 22.113533],
  1014. [110.661978, 22.118623],
  1015. [110.669202, 22.11845],
  1016. [110.672719, 22.119196],
  1017. [110.675055, 22.123461],
  1018. [110.678911, 22.126246],
  1019. [110.68399, 22.126725],
  1020. [110.690345, 22.124926],
  1021. [110.694595, 22.122688],
  1022. [110.698234, 22.117211],
  1023. [110.70353, 22.116398],
  1024. [110.705797, 22.118503],
  1025. [110.711378, 22.126259],
  1026. [110.710319, 22.131882],
  1027. [110.708649, 22.134267],
  1028. [110.705756, 22.135946],
  1029. [110.704385, 22.139877],
  1030. [110.701914, 22.141729],
  1031. [110.700746, 22.146898],
  1032. [110.698125, 22.14895],
  1033. [110.692775, 22.156437],
  1034. [110.682319, 22.164271],
  1035. [110.683365, 22.167308],
  1036. [110.682211, 22.171717],
  1037. [110.680853, 22.173262],
  1038. [110.678884, 22.17269],
  1039. [110.675842, 22.182573],
  1040. [110.675272, 22.188474],
  1041. [110.672325, 22.189673],
  1042. [110.672013, 22.193895],
  1043. [110.669053, 22.196878],
  1044. [110.667152, 22.200874],
  1045. [110.664721, 22.203364],
  1046. [110.656914, 22.20359],
  1047. [110.652799, 22.207692],
  1048. [110.650912, 22.213099],
  1049. [110.647843, 22.217867],
  1050. [110.646852, 22.223007],
  1051. [110.649174, 22.23081],
  1052. [110.6525, 22.234804],
  1053. [110.654809, 22.23993],
  1054. [110.657497, 22.241821],
  1055. [110.664613, 22.245362],
  1056. [110.670275, 22.244883],
  1057. [110.685999, 22.248571],
  1058. [110.687656, 22.249703],
  1059. [110.694486, 22.258236],
  1060. [110.694486, 22.25998],
  1061. [110.691241, 22.264214],
  1062. [110.692327, 22.268806],
  1063. [110.695437, 22.272321],
  1064. [110.702756, 22.274876],
  1065. [110.706816, 22.274384],
  1066. [110.710944, 22.276261],
  1067. [110.713266, 22.282344],
  1068. [110.717421, 22.286709],
  1069. [110.718059, 22.289371],
  1070. [110.720978, 22.29411],
  1071. [110.725324, 22.295614],
  1072. [110.727347, 22.29198],
  1073. [110.733104, 22.289105],
  1074. [110.738929, 22.281931],
  1075. [110.74614, 22.281625],
  1076. [110.753065, 22.277991],
  1077. [110.75627, 22.275276],
  1078. [110.758741, 22.27469],
  1079. [110.763901, 22.276367],
  1080. [110.768626, 22.276341],
  1081. [110.772442, 22.277831],
  1082. [110.784486, 22.2808]
  1083. ]
  1084. ]
  1085. },
  1086. {
  1087. 'name': '电白区',
  1088. 'center': [111.307264, 21.567219],
  1089. 'parentName': '茂名市',
  1090. 'code': 440904,
  1091. 'infoData': [
  1092. {
  1093. 'name': '面积',
  1094. 'value': '2138',
  1095. 'unit': '平方千米'
  1096. },
  1097. {
  1098. 'name': '常住人口',
  1099. 'value': '150.3737',
  1100. 'unit': '万人'
  1101. }
  1102. ],
  1103. 'boundaries': [
  1104. [
  1105. [110.870114, 21.505311],
  1106. [110.866964, 21.507318],
  1107. [110.871011, 21.509205],
  1108. [110.868689, 21.51306],
  1109. [110.873889, 21.518078],
  1110. [110.876863, 21.525117],
  1111. [110.881914, 21.526883],
  1112. [110.88497, 21.52521],
  1113. [110.890442, 21.524046],
  1114. [110.897082, 21.524394],
  1115. [110.902608, 21.525839],
  1116. [110.906492, 21.525772],
  1117. [110.910525, 21.524488],
  1118. [110.912426, 21.52513],
  1119. [110.916269, 21.528355],
  1120. [110.917599, 21.532128],
  1121. [110.916866, 21.538016],
  1122. [110.914694, 21.542244],
  1123. [110.907307, 21.550191],
  1124. [110.903627, 21.551837],
  1125. [110.893619, 21.551676],
  1126. [110.892669, 21.552813],
  1127. [110.895384, 21.555529],
  1128. [110.893551, 21.558553],
  1129. [110.886938, 21.558044],
  1130. [110.885377, 21.560881],
  1131. [110.89184, 21.566646],
  1132. [110.895303, 21.567877],
  1133. [110.898766, 21.567569],
  1134. [110.902595, 21.563784],
  1135. [110.9047, 21.565857],
  1136. [110.902961, 21.567409],
  1137. [110.911557, 21.570512],
  1138. [110.92223, 21.571181],
  1139. [110.925285, 21.573201],
  1140. [110.929182, 21.572773],
  1141. [110.930526, 21.567115],
  1142. [110.931844, 21.566432],
  1143. [110.937275, 21.566446],
  1144. [110.938647, 21.565001],
  1145. [110.93866, 21.559757],
  1146. [110.939937, 21.556961],
  1147. [110.941987, 21.556078],
  1148. [110.946495, 21.556359],
  1149. [110.948532, 21.557295],
  1150. [110.950705, 21.560693],
  1151. [110.951967, 21.56662],
  1152. [110.950718, 21.570459],
  1153. [110.946712, 21.572827],
  1154. [110.945653, 21.574499],
  1155. [110.944947, 21.579528],
  1156. [110.945572, 21.586939],
  1157. [110.947744, 21.594683],
  1158. [110.949265, 21.598401],
  1159. [110.953393, 21.606118],
  1160. [110.955769, 21.6089],
  1161. [110.96393, 21.625562],
  1162. [110.963808, 21.628103],
  1163. [110.965818, 21.629494],
  1164. [110.966361, 21.632663],
  1165. [110.969484, 21.63511],
  1166. [110.972933, 21.63531],
  1167. [110.973979, 21.633746],
  1168. [110.977536, 21.635003],
  1169. [110.97702, 21.64126],
  1170. [110.972947, 21.647277],
  1171. [110.982846, 21.645017],
  1172. [110.988304, 21.646755],
  1173. [110.988535, 21.648547],
  1174. [110.990871, 21.648146],
  1175. [110.99284, 21.649563],
  1176. [110.99709, 21.650151],
  1177. [110.999724, 21.652397],
  1178. [111.000349, 21.656542],
  1179. [111.002929, 21.656943],
  1180. [111.006513, 21.653226],
  1181. [111.012081, 21.651809],
  1182. [111.017499, 21.653574],
  1183. [111.021735, 21.655954],
  1184. [111.027724, 21.655579],
  1185. [111.030874, 21.660165],
  1186. [111.031607, 21.674228],
  1187. [111.032802, 21.677824],
  1188. [111.036115, 21.683986],
  1189. [111.037541, 21.691111],
  1190. [111.032503, 21.705011],
  1191. [111.030208, 21.708766],
  1192. [111.029326, 21.713671],
  1193. [111.027588, 21.715729],
  1194. [111.029176, 21.727902],
  1195. [111.027778, 21.730949],
  1196. [111.025768, 21.741104],
  1197. [111.032883, 21.743883],
  1198. [111.027805, 21.754385],
  1199. [111.031254, 21.761986],
  1200. [111.033983, 21.760944],
  1201. [111.037527, 21.763416],
  1202. [111.035246, 21.769173],
  1203. [111.038193, 21.771297],
  1204. [111.043176, 21.766969],
  1205. [111.046707, 21.766448],
  1206. [111.049287, 21.767944],
  1207. [111.052057, 21.771859],
  1208. [111.055397, 21.767116],
  1209. [111.057271, 21.768946],
  1210. [111.056198, 21.771271],
  1211. [111.056239, 21.775612],
  1212. [111.059607, 21.776106],
  1213. [111.060326, 21.775105],
  1214. [111.067197, 21.780368],
  1215. [111.070958, 21.787287],
  1216. [111.077639, 21.78913],
  1217. [111.080518, 21.786338],
  1218. [111.085447, 21.785537],
  1219. [111.087905, 21.780555],
  1220. [111.089724, 21.779406],
  1221. [111.097831, 21.781022],
  1222. [111.105231, 21.784856],
  1223. [111.10534, 21.789758],
  1224. [111.111125, 21.796276],
  1225. [111.112021, 21.800416],
  1226. [111.104485, 21.80692],
  1227. [111.102624, 21.812302],
  1228. [111.097179, 21.819567],
  1229. [111.095237, 21.819661],
  1230. [111.094205, 21.828234],
  1231. [111.092956, 21.829649],
  1232. [111.088692, 21.829475],
  1233. [111.086791, 21.833374],
  1234. [111.079839, 21.841706],
  1235. [111.083166, 21.848022],
  1236. [111.085026, 21.856259],
  1237. [111.093201, 21.862133],
  1238. [111.099107, 21.869289],
  1239. [111.104104, 21.873347],
  1240. [111.108341, 21.872946],
  1241. [111.109061, 21.87049],
  1242. [111.113514, 21.868408],
  1243. [111.115999, 21.87045],
  1244. [111.125749, 21.868862],
  1245. [111.128397, 21.869582],
  1246. [111.13448, 21.869035],
  1247. [111.137603, 21.865297],
  1248. [111.139654, 21.864443],
  1249. [111.138269, 21.857835],
  1250. [111.144284, 21.854978],
  1251. [111.146144, 21.855445],
  1252. [111.143768, 21.851173],
  1253. [111.144094, 21.849357],
  1254. [111.147203, 21.846099],
  1255. [111.149009, 21.845979],
  1256. [111.151345, 21.848222],
  1257. [111.154984, 21.844337],
  1258. [111.15736, 21.844657],
  1259. [111.15937, 21.84168],
  1260. [111.161746, 21.844003],
  1261. [111.167531, 21.843696],
  1262. [111.167979, 21.845351],
  1263. [111.171238, 21.844216],
  1264. [111.173112, 21.841786],
  1265. [111.172949, 21.837287],
  1266. [111.176384, 21.839196],
  1267. [111.17982, 21.837647],
  1268. [111.179277, 21.835564],
  1269. [111.184437, 21.834683],
  1270. [111.185672, 21.833094],
  1271. [111.185129, 21.828661],
  1272. [111.185889, 21.827846],
  1273. [111.187981, 21.831972],
  1274. [111.190561, 21.83061],
  1275. [111.193371, 21.831745],
  1276. [111.193887, 21.833281],
  1277. [111.198694, 21.833428],
  1278. [111.198273, 21.837353],
  1279. [111.19716, 21.838755],
  1280. [111.191891, 21.841746],
  1281. [111.189637, 21.841239],
  1282. [111.188048, 21.838355],
  1283. [111.185523, 21.838101],
  1284. [111.185129, 21.845658],
  1285. [111.183269, 21.847448],
  1286. [111.177783, 21.843762],
  1287. [111.173261, 21.846807],
  1288. [111.178231, 21.849116],
  1289. [111.181313, 21.853162],
  1290. [111.180132, 21.855204],
  1291. [111.175393, 21.858449],
  1292. [111.178774, 21.85961],
  1293. [111.181775, 21.86455],
  1294. [111.181504, 21.870757],
  1295. [111.177742, 21.87288],
  1296. [111.177308, 21.874855],
  1297. [111.182712, 21.877405],
  1298. [111.189651, 21.875736],
  1299. [111.194064, 21.877645],
  1300. [111.195435, 21.875416],
  1301. [111.196332, 21.876898],
  1302. [111.19405, 21.878366],
  1303. [111.198952, 21.878807],
  1304. [111.199862, 21.880715],
  1305. [111.198966, 21.883759],
  1306. [111.205375, 21.885494],
  1307. [111.204587, 21.890353],
  1308. [111.206475, 21.90051],
  1309. [111.201899, 21.903366],
  1310. [111.204832, 21.905661],
  1311. [111.208485, 21.912147],
  1312. [111.211228, 21.922449],
  1313. [111.210603, 21.92696],
  1314. [111.212395, 21.930336],
  1315. [111.212314, 21.938315],
  1316. [111.210576, 21.941611],
  1317. [111.214161, 21.943786],
  1318. [111.215165, 21.947708],
  1319. [111.219402, 21.954539],
  1320. [111.224752, 21.959008],
  1321. [111.22835, 21.96097],
  1322. [111.228133, 21.964972],
  1323. [111.224426, 21.965532],
  1324. [111.224209, 21.96744],
  1325. [111.226368, 21.972149],
  1326. [111.230781, 21.966746],
  1327. [111.235153, 21.964918],
  1328. [111.237625, 21.965866],
  1329. [111.237869, 21.9674],
  1330. [111.245365, 21.971095],
  1331. [111.247754, 21.973816],
  1332. [111.251828, 21.972589],
  1333. [111.253498, 21.976297],
  1334. [111.257165, 21.979005],
  1335. [111.263329, 21.976004],
  1336. [111.268421, 21.977311],
  1337. [111.270893, 21.982967],
  1338. [111.277125, 21.987889],
  1339. [111.279393, 21.988862],
  1340. [111.28329, 21.986808],
  1341. [111.28458, 21.98298],
  1342. [111.287608, 21.977978],
  1343. [111.287147, 21.975897],
  1344. [111.284662, 21.97535],
  1345. [111.283698, 21.971855],
  1346. [111.285775, 21.969534],
  1347. [111.286644, 21.963851],
  1348. [111.283996, 21.96245],
  1349. [111.283426, 21.952204],
  1350. [111.285028, 21.948776],
  1351. [111.288382, 21.946788],
  1352. [111.290148, 21.937675],
  1353. [111.29137, 21.938368],
  1354. [111.294683, 21.9359],
  1355. [111.290854, 21.928895],
  1356. [111.287242, 21.924131],
  1357. [111.288002, 21.919354],
  1358. [111.29008, 21.917525],
  1359. [111.288423, 21.913322],
  1360. [111.29008, 21.90797],
  1361. [111.292782, 21.906569],
  1362. [111.293814, 21.907837],
  1363. [111.29581, 21.906102],
  1364. [111.294411, 21.9045],
  1365. [111.296109, 21.902471],
  1366. [111.301445, 21.902098],
  1367. [111.307107, 21.899068],
  1368. [111.306822, 21.895077],
  1369. [111.31091, 21.89401],
  1370. [111.317129, 21.89772],
  1371. [111.320102, 21.89784],
  1372. [111.322723, 21.893983],
  1373. [111.325996, 21.89158],
  1374. [111.325194, 21.887016],
  1375. [111.332581, 21.880649],
  1376. [111.335202, 21.879794],
  1377. [111.335256, 21.877659],
  1378. [111.340077, 21.874401],
  1379. [111.3421, 21.875376],
  1380. [111.349297, 21.875536],
  1381. [111.353547, 21.878366],
  1382. [111.362482, 21.877071],
  1383. [111.364166, 21.874401],
  1384. [111.364437, 21.870464],
  1385. [111.366895, 21.869636],
  1386. [111.367845, 21.862547],
  1387. [111.369326, 21.862841],
  1388. [111.374567, 21.860531],
  1389. [111.379971, 21.861693],
  1390. [111.388702, 21.861452],
  1391. [111.394786, 21.859797],
  1392. [111.395899, 21.860825],
  1393. [111.403245, 21.8622],
  1394. [111.40205, 21.858782],
  1395. [111.402852, 21.854857],
  1396. [111.410754, 21.854297],
  1397. [111.413511, 21.8516],
  1398. [111.417204, 21.850131],
  1399. [111.419228, 21.843482],
  1400. [111.417571, 21.841132],
  1401. [111.420151, 21.839677],
  1402. [111.421794, 21.83041],
  1403. [111.418956, 21.827846],
  1404. [111.421957, 21.823894],
  1405. [111.420382, 21.821744],
  1406. [111.420586, 21.818245],
  1407. [111.423505, 21.813718],
  1408. [111.420518, 21.810299],
  1409. [111.416105, 21.809391],
  1410. [111.415439, 21.806252],
  1411. [111.407984, 21.802927],
  1412. [111.402662, 21.80453],
  1413. [111.401494, 21.798359],
  1414. [111.396931, 21.795034],
  1415. [111.396293, 21.791708],
  1416. [111.391568, 21.785911],
  1417. [111.391269, 21.784161],
  1418. [111.388825, 21.7834],
  1419. [111.38691, 21.780247],
  1420. [111.383366, 21.778978],
  1421. [111.382986, 21.777603],
  1422. [111.374309, 21.774357],
  1423. [111.379578, 21.768105],
  1424. [111.385552, 21.763589],
  1425. [111.3871, 21.757898],
  1426. [111.388811, 21.756215],
  1427. [111.386652, 21.751886],
  1428. [111.383665, 21.75023],
  1429. [111.383162, 21.748386],
  1430. [111.384697, 21.745981],
  1431. [111.382253, 21.741505],
  1432. [111.383013, 21.738672],
  1433. [111.381302, 21.734437],
  1434. [111.386489, 21.734116],
  1435. [111.388132, 21.731123],
  1436. [111.387956, 21.728691],
  1437. [111.389517, 21.727114],
  1438. [111.393007, 21.727608],
  1439. [111.395112, 21.726272],
  1440. [111.399552, 21.7267],
  1441. [111.401983, 21.727983],
  1442. [111.406056, 21.725564],
  1443. [111.407577, 21.721595],
  1444. [111.409709, 21.722317],
  1445. [111.412615, 21.721622],
  1446. [111.414231, 21.724121],
  1447. [111.417041, 21.721943],
  1448. [111.421346, 21.721702],
  1449. [111.426329, 21.718428],
  1450. [111.432236, 21.71804],
  1451. [111.432902, 21.714259],
  1452. [111.435617, 21.711131],
  1453. [111.437545, 21.705893],
  1454. [111.436771, 21.701683],
  1455. [111.438428, 21.699731],
  1456. [111.440682, 21.69349],
  1457. [111.439474, 21.691151],
  1458. [111.435386, 21.687502],
  1459. [111.433703, 21.68138],
  1460. [111.428977, 21.677009],
  1461. [111.429113, 21.675017],
  1462. [111.431625, 21.67241],
  1463. [111.430919, 21.669443],
  1464. [111.425257, 21.665178],
  1465. [111.422894, 21.661341],
  1466. [111.422296, 21.65471],
  1467. [111.422527, 21.650205],
  1468. [111.42159, 21.648774],
  1469. [111.416308, 21.646889],
  1470. [111.416254, 21.642089],
  1471. [111.415045, 21.6388],
  1472. [111.415453, 21.632756],
  1473. [111.41901, 21.628317],
  1474. [111.417327, 21.623998],
  1475. [111.418223, 21.620534],
  1476. [111.420599, 21.617405],
  1477. [111.425202, 21.617873],
  1478. [111.427701, 21.614209],
  1479. [111.427551, 21.611962],
  1480. [111.425026, 21.608659],
  1481. [111.421482, 21.607228],
  1482. [111.417137, 21.602547],
  1483. [111.416444, 21.59804],
  1484. [111.41825, 21.595485],
  1485. [111.42379, 21.591794],
  1486. [111.422324, 21.590791],
  1487. [111.422324, 21.584625],
  1488. [111.419635, 21.5833],
  1489. [111.418264, 21.578646],
  1490. [111.421536, 21.573723],
  1491. [111.4247, 21.574138],
  1492. [111.427809, 21.577268],
  1493. [111.427198, 21.579247],
  1494. [111.430742, 21.579849],
  1495. [111.431163, 21.577214],
  1496. [111.429561, 21.575382],
  1497. [111.428936, 21.570325],
  1498. [111.435006, 21.572251],
  1499. [111.439406, 21.575743],
  1500. [111.444756, 21.574673],
  1501. [111.447051, 21.570927],
  1502. [111.453215, 21.550405],
  1503. [111.458891, 21.534149],
  1504. [111.459584, 21.52786],
  1505. [111.459122, 21.524943],
  1506. [111.452387, 21.515187],
  1507. [111.448028, 21.514799],
  1508. [111.395818, 21.501724],
  1509. [111.382497, 21.495528],
  1510. [111.366881, 21.479131],
  1511. [111.353153, 21.464339],
  1512. [111.336044, 21.452291],
  1513. [111.329852, 21.446761],
  1514. [111.326484, 21.444753],
  1515. [111.3207, 21.442852],
  1516. [111.30966, 21.434778],
  1517. [111.307637, 21.433841],
  1518. [111.303061, 21.434497],
  1519. [111.301174, 21.433694],
  1520. [111.285897, 21.419004],
  1521. [111.283738, 21.417518],
  1522. [111.278538, 21.415576],
  1523. [111.271368, 21.416835],
  1524. [111.269141, 21.416299],
  1525. [111.263492, 21.41267],
  1526. [111.258862, 21.412402],
  1527. [111.257314, 21.415134],
  1528. [111.25859, 21.423303],
  1529. [111.258156, 21.430667],
  1530. [111.25859, 21.433412],
  1531. [111.257748, 21.436546],
  1532. [111.250565, 21.449546],
  1533. [111.250932, 21.451996],
  1534. [111.25358, 21.452572],
  1535. [111.256201, 21.451702],
  1536. [111.265217, 21.447364],
  1537. [111.273826, 21.443883],
  1538. [111.278592, 21.443749],
  1539. [111.281824, 21.446507],
  1540. [111.282435, 21.451581],
  1541. [111.281484, 21.458155],
  1542. [111.282625, 21.461582],
  1543. [111.289903, 21.472237],
  1544. [111.29562, 21.476267],
  1545. [111.294941, 21.480497],
  1546. [111.290568, 21.484191],
  1547. [111.283114, 21.485449],
  1548. [111.276922, 21.484981],
  1549. [111.259296, 21.482116],
  1550. [111.25157, 21.480537],
  1551. [111.24565, 21.475905],
  1552. [111.239146, 21.471742],
  1553. [111.231419, 21.469734],
  1554. [111.212015, 21.469052],
  1555. [111.20752, 21.468396],
  1556. [111.198138, 21.465183],
  1557. [111.177267, 21.459614],
  1558. [111.171442, 21.458489],
  1559. [111.162317, 21.459132],
  1560. [111.146606, 21.459212],
  1561. [111.131914, 21.457646],
  1562. [111.124391, 21.455102],
  1563. [111.116678, 21.453148],
  1564. [111.113718, 21.453188],
  1565. [111.108612, 21.455477],
  1566. [111.099813, 21.455142],
  1567. [111.088108, 21.453188],
  1568. [111.076539, 21.452478],
  1569. [111.061317, 21.449225],
  1570. [111.048458, 21.444499],
  1571. [111.034771, 21.438755],
  1572. [111.006527, 21.42199],
  1573. [111.000783, 21.418013],
  1574. [110.97702, 21.406764],
  1575. [110.970855, 21.420504],
  1576. [110.966415, 21.421562],
  1577. [110.965628, 21.425164],
  1578. [110.966225, 21.428083],
  1579. [110.964691, 21.434631],
  1580. [110.961432, 21.435769],
  1581. [110.962165, 21.445235],
  1582. [110.960644, 21.443976],
  1583. [110.958336, 21.44561],
  1584. [110.959925, 21.449265],
  1585. [110.959599, 21.451139],
  1586. [110.956218, 21.447283],
  1587. [110.956095, 21.44403],
  1588. [110.957467, 21.442597],
  1589. [110.960305, 21.443173],
  1590. [110.960427, 21.441807],
  1591. [110.958268, 21.436853],
  1592. [110.956367, 21.437202],
  1593. [110.954602, 21.440442],
  1594. [110.956598, 21.442986],
  1595. [110.95357, 21.447029],
  1596. [110.955797, 21.448261],
  1597. [110.956584, 21.45043],
  1598. [110.954357, 21.449988],
  1599. [110.950093, 21.443709],
  1600. [110.938212, 21.441874],
  1601. [110.92906, 21.447899],
  1602. [110.925557, 21.445235],
  1603. [110.927091, 21.441566],
  1604. [110.924742, 21.441044],
  1605. [110.922121, 21.442276],
  1606. [110.919745, 21.441807],
  1607. [110.912249, 21.438848],
  1608. [110.910362, 21.439813],
  1609. [110.909099, 21.433667],
  1610. [110.907103, 21.43364],
  1611. [110.904808, 21.428954],
  1612. [110.903287, 21.428779],
  1613. [110.901929, 21.425767],
  1614. [110.899037, 21.426463],
  1615. [110.897706, 21.429918],
  1616. [110.894244, 21.42965],
  1617. [110.893307, 21.432006],
  1618. [110.894543, 21.435073],
  1619. [110.893538, 21.436653],
  1620. [110.888025, 21.438139],
  1621. [110.884684, 21.442316],
  1622. [110.881222, 21.441941],
  1623. [110.880421, 21.444833],
  1624. [110.883123, 21.446079],
  1625. [110.885621, 21.445034],
  1626. [110.88922, 21.446976],
  1627. [110.89127, 21.449185],
  1628. [110.892343, 21.45458],
  1629. [110.895099, 21.454727],
  1630. [110.894135, 21.450751],
  1631. [110.895873, 21.45126],
  1632. [110.89586, 21.45533],
  1633. [110.897109, 21.45545],
  1634. [110.897951, 21.460993],
  1635. [110.895344, 21.460832],
  1636. [110.887129, 21.466414],
  1637. [110.885336, 21.469533],
  1638. [110.88391, 21.469667],
  1639. [110.881534, 21.466762],
  1640. [110.878696, 21.468663],
  1641. [110.875994, 21.466936],
  1642. [110.870413, 21.471086],
  1643. [110.873577, 21.472853],
  1644. [110.875614, 21.475865],
  1645. [110.877814, 21.476775],
  1646. [110.877257, 21.479881],
  1647. [110.878234, 21.481393],
  1648. [110.875532, 21.481982],
  1649. [110.87446, 21.484847],
  1650. [110.877135, 21.488715],
  1651. [110.877175, 21.491673],
  1652. [110.875315, 21.492275],
  1653. [110.877718, 21.495019],
  1654. [110.876035, 21.498164],
  1655. [110.870644, 21.498017],
  1656. [110.868865, 21.502487],
  1657. [110.870114, 21.505311]
  1658. ],
  1659. [
  1660. [111.184708, 21.37103],
  1661. [111.181639, 21.374767],
  1662. [111.181965, 21.381478],
  1663. [111.184681, 21.381933],
  1664. [111.18942, 21.386768],
  1665. [111.191932, 21.387358],
  1666. [111.195666, 21.391014],
  1667. [111.196155, 21.388978],
  1668. [111.193806, 21.384893],
  1669. [111.194784, 21.380085],
  1670. [111.192625, 21.377232],
  1671. [111.189705, 21.378611],
  1672. [111.186772, 21.374593],
  1673. [111.18612, 21.371619],
  1674. [111.184708, 21.37103]
  1675. ],
  1676. [
  1677. [111.375382, 21.435809],
  1678. [111.376522, 21.438233],
  1679. [111.378817, 21.438688],
  1680. [111.382483, 21.440991],
  1681. [111.384697, 21.439478],
  1682. [111.38232, 21.438246],
  1683. [111.380786, 21.435595],
  1684. [111.375232, 21.433011],
  1685. [111.375382, 21.435809]
  1686. ],
  1687. [
  1688. [111.221303, 21.404354],
  1689. [111.222213, 21.405345],
  1690. [111.225282, 21.403711],
  1691. [111.223421, 21.401903],
  1692. [111.221303, 21.404354]
  1693. ]
  1694. ]
  1695. },
  1696. {
  1697. 'name': '化州市',
  1698. 'center': [110.53839, 21.794953],
  1699. 'parentName': '茂名市',
  1700. 'code': 440982,
  1701. infoData: [
  1702. { name: '面积', value: '2356.52', unit: '平方千米' },
  1703. { name: '常住人口', value: '129.1668', unit: '万人' }
  1704. ],
  1705. 'boundaries': [
  1706. [
  1707. [110.375194, 21.760303],
  1708. [110.379159, 21.763656],
  1709. [110.38106, 21.75898],
  1710. [110.385731, 21.759381],
  1711. [110.389085, 21.76212],
  1712. [110.387361, 21.76721],
  1713. [110.389207, 21.767931],
  1714. [110.389072, 21.770402],
  1715. [110.390864, 21.771498],
  1716. [110.391217, 21.77616],
  1717. [110.388827, 21.777148],
  1718. [110.39047, 21.778324],
  1719. [110.388257, 21.779673],
  1720. [110.387714, 21.783146],
  1721. [110.381074, 21.783386],
  1722. [110.380286, 21.784495],
  1723. [110.384075, 21.788008],
  1724. [110.386573, 21.786859],
  1725. [110.388352, 21.789063],
  1726. [110.387157, 21.790719],
  1727. [110.3877, 21.793564],
  1728. [110.384821, 21.793364],
  1729. [110.386763, 21.795541],
  1730. [110.381155, 21.799334],
  1731. [110.380707, 21.797611],
  1732. [110.375561, 21.79876],
  1733. [110.377367, 21.804583],
  1734. [110.377231, 21.806613],
  1735. [110.371786, 21.807508],
  1736. [110.368839, 21.803995],
  1737. [110.370346, 21.800737],
  1738. [110.367766, 21.800683],
  1739. [110.36592, 21.797945],
  1740. [110.362226, 21.797665],
  1741. [110.359714, 21.80063],
  1742. [110.354921, 21.801738],
  1743. [110.35173, 21.801017],
  1744. [110.348607, 21.802072],
  1745. [110.34896, 21.808376],
  1746. [110.350983, 21.809484],
  1747. [110.352925, 21.807294],
  1748. [110.35598, 21.808256],
  1749. [110.359253, 21.806025],
  1750. [110.365132, 21.807054],
  1751. [110.364942, 21.809618],
  1752. [110.362036, 21.809591],
  1753. [110.363584, 21.81289],
  1754. [110.36167, 21.812543],
  1755. [110.357881, 21.815454],
  1756. [110.354432, 21.813558],
  1757. [110.35393, 21.811594],
  1758. [110.348131, 21.809337],
  1759. [110.347195, 21.807708],
  1760. [110.345932, 21.800843],
  1761. [110.344642, 21.800964],
  1762. [110.33936, 21.806333],
  1763. [110.338966, 21.809471],
  1764. [110.340446, 21.812609],
  1765. [110.339373, 21.819206],
  1766. [110.340378, 21.828247],
  1767. [110.342646, 21.837327],
  1768. [110.343841, 21.839757],
  1769. [110.346203, 21.839917],
  1770. [110.345891, 21.841867],
  1771. [110.348254, 21.845698],
  1772. [110.352124, 21.846273],
  1773. [110.351485, 21.851226],
  1774. [110.354228, 21.856459],
  1775. [110.350739, 21.863936],
  1776. [110.354174, 21.866419],
  1777. [110.358017, 21.866072],
  1778. [110.359334, 21.869502],
  1779. [110.362566, 21.868221],
  1780. [110.361724, 21.863855],
  1781. [110.366626, 21.866312],
  1782. [110.370985, 21.860985],
  1783. [110.370292, 21.85989],
  1784. [110.372587, 21.856339],
  1785. [110.37829, 21.857701],
  1786. [110.378439, 21.853522],
  1787. [110.375153, 21.848342],
  1788. [110.378222, 21.84929],
  1789. [110.379526, 21.853095],
  1790. [110.386329, 21.853883],
  1791. [110.387374, 21.852241],
  1792. [110.392154, 21.85654],
  1793. [110.39491, 21.857047],
  1794. [110.398427, 21.861733],
  1795. [110.399079, 21.867874],
  1796. [110.396024, 21.866379],
  1797. [110.396241, 21.869596],
  1798. [110.39487, 21.87073],
  1799. [110.394761, 21.874094],
  1800. [110.392398, 21.873601],
  1801. [110.39104, 21.877058],
  1802. [110.393077, 21.877298],
  1803. [110.389913, 21.879714],
  1804. [110.391502, 21.883692],
  1805. [110.388881, 21.890766],
  1806. [110.391652, 21.893676],
  1807. [110.391326, 21.895798],
  1808. [110.392806, 21.901657],
  1809. [110.390239, 21.90438],
  1810. [110.39324, 21.905648],
  1811. [110.397708, 21.906088],
  1812. [110.404022, 21.902338],
  1813. [110.401646, 21.905141],
  1814. [110.40633, 21.907516],
  1815. [110.408842, 21.90741],
  1816. [110.408571, 21.90486],
  1817. [110.410757, 21.906248],
  1818. [110.408883, 21.90769],
  1819. [110.41058, 21.908824],
  1820. [110.413065, 21.90753],
  1821. [110.413704, 21.911306],
  1822. [110.409277, 21.913962],
  1823. [110.407579, 21.912347],
  1824. [110.406982, 21.913949],
  1825. [110.404076, 21.913268],
  1826. [110.406615, 21.910306],
  1827. [110.404891, 21.907877],
  1828. [110.403587, 21.911693],
  1829. [110.40227, 21.910572],
  1830. [110.400396, 21.913949],
  1831. [110.403614, 21.913802],
  1832. [110.401632, 21.915016],
  1833. [110.403139, 21.916418],
  1834. [110.406249, 21.914296],
  1835. [110.406344, 21.916124],
  1836. [110.409657, 21.917752],
  1837. [110.41149, 21.914189],
  1838. [110.413405, 21.915684],
  1839. [110.411612, 21.922903],
  1840. [110.41183, 21.924851],
  1841. [110.413799, 21.924785],
  1842. [110.414437, 21.922249],
  1843. [110.416786, 21.920421],
  1844. [110.414939, 21.923637],
  1845. [110.416664, 21.923971],
  1846. [110.416541, 21.927093],
  1847. [110.418443, 21.928107],
  1848. [110.414831, 21.932724],
  1849. [110.41851, 21.933231],
  1850. [110.417818, 21.935126],
  1851. [110.420031, 21.935366],
  1852. [110.421511, 21.933031],
  1853. [110.422774, 21.934859],
  1854. [110.425205, 21.932097],
  1855. [110.426142, 21.935633],
  1856. [110.430419, 21.936073],
  1857. [110.431342, 21.932978],
  1858. [110.435036, 21.933672],
  1859. [110.440685, 21.93658],
  1860. [110.442355, 21.940837],
  1861. [110.439218, 21.940743],
  1862. [110.436163, 21.942505],
  1863. [110.432972, 21.942184],
  1864. [110.428043, 21.943906],
  1865. [110.427147, 21.946881],
  1866. [110.42128, 21.94536],
  1867. [110.42124, 21.943319],
  1868. [110.41851, 21.944386],
  1869. [110.416555, 21.946641],
  1870. [110.415808, 21.949509],
  1871. [110.412957, 21.953832],
  1872. [110.407593, 21.953192],
  1873. [110.401564, 21.953232],
  1874. [110.40003, 21.955393],
  1875. [110.395834, 21.952458],
  1876. [110.397056, 21.951044],
  1877. [110.391149, 21.950243],
  1878. [110.389818, 21.953432],
  1879. [110.386247, 21.958008],
  1880. [110.378833, 21.96229],
  1881. [110.37882, 21.964918],
  1882. [110.376362, 21.965425],
  1883. [110.376688, 21.967987],
  1884. [110.37442, 21.9676],
  1885. [110.373524, 21.969614],
  1886. [110.370075, 21.970348],
  1887. [110.366178, 21.970094],
  1888. [110.365743, 21.971989],
  1889. [110.361493, 21.971949],
  1890. [110.3578, 21.973869],
  1891. [110.355315, 21.974203],
  1892. [110.352966, 21.976404],
  1893. [110.359157, 21.988062],
  1894. [110.359035, 21.99201],
  1895. [110.359918, 21.993917],
  1896. [110.358003, 21.995011],
  1897. [110.358777, 21.998279],
  1898. [110.356184, 22.002893],
  1899. [110.356401, 22.007535],
  1900. [110.361181, 22.007521],
  1901. [110.364046, 22.005841],
  1902. [110.366585, 22.007335],
  1903. [110.365282, 22.010709],
  1904. [110.36171, 22.011962],
  1905. [110.358207, 22.011362],
  1906. [110.359551, 22.01611],
  1907. [110.358248, 22.018443],
  1908. [110.354812, 22.02183],
  1909. [110.351906, 22.026991],
  1910. [110.351553, 22.029871],
  1911. [110.350019, 22.031085],
  1912. [110.35139, 22.034818],
  1913. [110.350209, 22.037325],
  1914. [110.347792, 22.039365],
  1915. [110.350535, 22.043045],
  1916. [110.353332, 22.043978],
  1917. [110.353875, 22.054511],
  1918. [110.350834, 22.06079],
  1919. [110.355491, 22.061577],
  1920. [110.354418, 22.065909],
  1921. [110.355885, 22.068416],
  1922. [110.355152, 22.070535],
  1923. [110.350793, 22.072028],
  1924. [110.352694, 22.075014],
  1925. [110.354867, 22.074534],
  1926. [110.358832, 22.075921],
  1927. [110.359225, 22.083812],
  1928. [110.358098, 22.085331],
  1929. [110.355057, 22.086144],
  1930. [110.353672, 22.088823],
  1931. [110.351282, 22.08901],
  1932. [110.350413, 22.095954],
  1933. [110.351676, 22.097393],
  1934. [110.356157, 22.097034],
  1935. [110.35928, 22.094648],
  1936. [110.362131, 22.097047],
  1937. [110.365282, 22.097393],
  1938. [110.365702, 22.098726],
  1939. [110.361928, 22.100139],
  1940. [110.361683, 22.101232],
  1941. [110.366381, 22.103564],
  1942. [110.36611, 22.107736],
  1943. [110.362946, 22.110028],
  1944. [110.363992, 22.115652],
  1945. [110.364575, 22.125206],
  1946. [110.360882, 22.132122],
  1947. [110.358709, 22.133148],
  1948. [110.352164, 22.132508],
  1949. [110.347398, 22.13548],
  1950. [110.345524, 22.137998],
  1951. [110.343094, 22.138571],
  1952. [110.33993, 22.143927],
  1953. [110.336739, 22.142355],
  1954. [110.334023, 22.143088],
  1955. [110.332896, 22.146405],
  1956. [110.33443, 22.148777],
  1957. [110.329352, 22.150309],
  1958. [110.326582, 22.152307],
  1959. [110.327111, 22.156637],
  1960. [110.325821, 22.159115],
  1961. [110.326025, 22.16443],
  1962. [110.328008, 22.165376],
  1963. [110.330791, 22.16892],
  1964. [110.333018, 22.168813],
  1965. [110.335924, 22.173049],
  1966. [110.334756, 22.180309],
  1967. [110.337486, 22.184025],
  1968. [110.33959, 22.183892],
  1969. [110.340514, 22.179243],
  1970. [110.343284, 22.178098],
  1971. [110.342537, 22.183426],
  1972. [110.346217, 22.192123],
  1973. [110.348512, 22.195839],
  1974. [110.350739, 22.195706],
  1975. [110.358316, 22.186276],
  1976. [110.359361, 22.178098],
  1977. [110.36448, 22.177392],
  1978. [110.367128, 22.174328],
  1979. [110.37146, 22.171837],
  1980. [110.375398, 22.166309],
  1981. [110.377815, 22.164484],
  1982. [110.38106, 22.164217],
  1983. [110.385894, 22.167121],
  1984. [110.391244, 22.168813],
  1985. [110.393498, 22.171397],
  1986. [110.391095, 22.179283],
  1987. [110.395331, 22.179523],
  1988. [110.397341, 22.182706],
  1989. [110.397409, 22.185717],
  1990. [110.39931, 22.187382],
  1991. [110.402447, 22.185184],
  1992. [110.405366, 22.185703],
  1993. [110.410621, 22.190219],
  1994. [110.412576, 22.198263],
  1995. [110.40982, 22.203271],
  1996. [110.412509, 22.20712],
  1997. [110.414668, 22.208585],
  1998. [110.416949, 22.207612],
  1999. [110.418266, 22.209091],
  2000. [110.42105, 22.207466],
  2001. [110.430786, 22.206227],
  2002. [110.437534, 22.203218],
  2003. [110.445437, 22.197797],
  2004. [110.445587, 22.193229],
  2005. [110.45004, 22.190965],
  2006. [110.453503, 22.19215],
  2007. [110.45668, 22.189206],
  2008. [110.455526, 22.186556],
  2009. [110.457278, 22.184798],
  2010. [110.460252, 22.178591],
  2011. [110.464448, 22.175287],
  2012. [110.468847, 22.172863],
  2013. [110.485101, 22.158662],
  2014. [110.490098, 22.155145],
  2015. [110.489052, 22.151921],
  2016. [110.485019, 22.151375],
  2017. [110.483444, 22.150229],
  2018. [110.485929, 22.146712],
  2019. [110.489433, 22.14462],
  2020. [110.500119, 22.145446],
  2021. [110.503894, 22.142968],
  2022. [110.505768, 22.142968],
  2023. [110.510697, 22.145006],
  2024. [110.516101, 22.149003],
  2025. [110.521139, 22.149869],
  2026. [110.529449, 22.154465],
  2027. [110.530427, 22.156624],
  2028. [110.529313, 22.164404],
  2029. [110.532464, 22.16824],
  2030. [110.536958, 22.171357],
  2031. [110.536985, 22.174967],
  2032. [110.538819, 22.177725],
  2033. [110.542281, 22.180922],
  2034. [110.548174, 22.184784],
  2035. [110.548378, 22.187981],
  2036. [110.55108, 22.191391],
  2037. [110.555222, 22.193136],
  2038. [110.557978, 22.195986],
  2039. [110.560327, 22.196412],
  2040. [110.566655, 22.193162],
  2041. [110.575536, 22.190259],
  2042. [110.581103, 22.186569],
  2043. [110.585326, 22.185091],
  2044. [110.591111, 22.185304],
  2045. [110.602449, 22.183359],
  2046. [110.603943, 22.182746],
  2047. [110.604893, 22.179909],
  2048. [110.601145, 22.176779],
  2049. [110.599638, 22.174088],
  2050. [110.598457, 22.163405],
  2051. [110.601145, 22.158302],
  2052. [110.605993, 22.155918],
  2053. [110.612008, 22.156144],
  2054. [110.615444, 22.157983],
  2055. [110.620807, 22.157836],
  2056. [110.626117, 22.154092],
  2057. [110.629091, 22.14911],
  2058. [110.63535, 22.150562],
  2059. [110.642004, 22.152867],
  2060. [110.646078, 22.15769],
  2061. [110.653125, 22.159355],
  2062. [110.651428, 22.163551],
  2063. [110.654537, 22.166495],
  2064. [110.658122, 22.167548],
  2065. [110.66536, 22.16511],
  2066. [110.668809, 22.167614],
  2067. [110.669175, 22.171171],
  2068. [110.670479, 22.172809],
  2069. [110.674281, 22.173382],
  2070. [110.678884, 22.17269],
  2071. [110.680853, 22.173262],
  2072. [110.682211, 22.171717],
  2073. [110.683365, 22.167308],
  2074. [110.682319, 22.164271],
  2075. [110.692775, 22.156437],
  2076. [110.698125, 22.14895],
  2077. [110.700746, 22.146898],
  2078. [110.701914, 22.141729],
  2079. [110.704385, 22.139877],
  2080. [110.705756, 22.135946],
  2081. [110.708649, 22.134267],
  2082. [110.710319, 22.131882],
  2083. [110.711378, 22.126259],
  2084. [110.705797, 22.118503],
  2085. [110.70353, 22.116398],
  2086. [110.698234, 22.117211],
  2087. [110.694595, 22.122688],
  2088. [110.690345, 22.124926],
  2089. [110.68399, 22.126725],
  2090. [110.678911, 22.126246],
  2091. [110.675055, 22.123461],
  2092. [110.672719, 22.119196],
  2093. [110.669202, 22.11845],
  2094. [110.661978, 22.118623],
  2095. [110.660118, 22.113533],
  2096. [110.660186, 22.109428],
  2097. [110.655501, 22.10579],
  2098. [110.656506, 22.101312],
  2099. [110.65379, 22.100406],
  2100. [110.651414, 22.096767],
  2101. [110.651536, 22.089756],
  2102. [110.651088, 22.084132],
  2103. [110.653071, 22.083332],
  2104. [110.666663, 22.081892],
  2105. [110.67367, 22.07904],
  2106. [110.678205, 22.07884],
  2107. [110.683311, 22.073494],
  2108. [110.685986, 22.073294],
  2109. [110.688185, 22.070308],
  2110. [110.684736, 22.060497],
  2111. [110.686705, 22.058257],
  2112. [110.686719, 22.055164],
  2113. [110.685212, 22.052071],
  2114. [110.679644, 22.049525],
  2115. [110.675109, 22.048965],
  2116. [110.672407, 22.045365],
  2117. [110.668876, 22.042512],
  2118. [110.667654, 22.043098],
  2119. [110.664395, 22.049005],
  2120. [110.657172, 22.046552],
  2121. [110.657973, 22.043312],
  2122. [110.658339, 22.036272],
  2123. [110.656275, 22.034752],
  2124. [110.653166, 22.034378],
  2125. [110.65007, 22.032498],
  2126. [110.6484, 22.028311],
  2127. [110.649717, 22.024791],
  2128. [110.656981, 22.023137],
  2129. [110.659412, 22.018643],
  2130. [110.656479, 22.01647],
  2131. [110.654429, 22.013669],
  2132. [110.654442, 22.011589],
  2133. [110.652772, 22.009335],
  2134. [110.649649, 22.007748],
  2135. [110.648861, 22.001586],
  2136. [110.645915, 21.994998],
  2137. [110.651455, 21.99289],
  2138. [110.649676, 21.99197],
  2139. [110.651346, 21.989956],
  2140. [110.647761, 21.986448],
  2141. [110.64658, 21.980566],
  2142. [110.642072, 21.981126],
  2143. [110.639696, 21.983207],
  2144. [110.637034, 21.983407],
  2145. [110.634862, 21.985034],
  2146. [110.628493, 21.98354],
  2147. [110.629539, 21.98182],
  2148. [110.626103, 21.978178],
  2149. [110.62628, 21.973443],
  2150. [110.623415, 21.972015],
  2151. [110.623754, 21.970054],
  2152. [110.620957, 21.964558],
  2153. [110.620441, 21.960689],
  2154. [110.617263, 21.956727],
  2155. [110.617481, 21.953005],
  2156. [110.621867, 21.952098],
  2157. [110.623374, 21.95039],
  2158. [110.62317, 21.947815],
  2159. [110.627475, 21.9456],
  2160. [110.63478, 21.94608],
  2161. [110.636219, 21.94524],
  2162. [110.640809, 21.945693],
  2163. [110.644204, 21.941637],
  2164. [110.643688, 21.939423],
  2165. [110.645114, 21.936967],
  2166. [110.649106, 21.937434],
  2167. [110.65375, 21.935153],
  2168. [110.655691, 21.932591],
  2169. [110.656017, 21.929682],
  2170. [110.658923, 21.928694],
  2171. [110.65929, 21.924438],
  2172. [110.658461, 21.922183],
  2173. [110.65948, 21.918046],
  2174. [110.658923, 21.916057],
  2175. [110.660756, 21.913522],
  2176. [110.659195, 21.911507],
  2177. [110.660159, 21.905981],
  2178. [110.659439, 21.90414],
  2179. [110.662589, 21.902885],
  2180. [110.661422, 21.899735],
  2181. [110.659195, 21.899362],
  2182. [110.657973, 21.897186],
  2183. [110.659358, 21.895117],
  2184. [110.657945, 21.892622],
  2185. [110.656044, 21.892541],
  2186. [110.657172, 21.887082],
  2187. [110.660267, 21.887243],
  2188. [110.663472, 21.882704],
  2189. [110.662997, 21.880755],
  2190. [110.66502, 21.874962],
  2191. [110.67128, 21.870811],
  2192. [110.669053, 21.869876],
  2193. [110.667668, 21.871985],
  2194. [110.660688, 21.869849],
  2195. [110.662101, 21.863976],
  2196. [110.659548, 21.862253],
  2197. [110.660471, 21.859183],
  2198. [110.66316, 21.858128],
  2199. [110.660186, 21.857301],
  2200. [110.660213, 21.85439],
  2201. [110.661625, 21.849824],
  2202. [110.660363, 21.846954],
  2203. [110.659059, 21.840892],
  2204. [110.661232, 21.838168],
  2205. [110.665278, 21.836819],
  2206. [110.666378, 21.833548],
  2207. [110.665373, 21.832119],
  2208. [110.667967, 21.830544],
  2209. [110.667831, 21.827366],
  2210. [110.670777, 21.825563],
  2211. [110.675313, 21.827058],
  2212. [110.677322, 21.82555],
  2213. [110.673629, 21.820288],
  2214. [110.676548, 21.818646],
  2215. [110.673208, 21.816322],
  2216. [110.672475, 21.813678],
  2217. [110.670886, 21.813037],
  2218. [110.672516, 21.81066],
  2219. [110.671877, 21.807949],
  2220. [110.667016, 21.807414],
  2221. [110.667899, 21.805358],
  2222. [110.666853, 21.803621],
  2223. [110.66407, 21.804436],
  2224. [110.661612, 21.801298],
  2225. [110.662169, 21.794633],
  2226. [110.659833, 21.792509],
  2227. [110.661367, 21.792095],
  2228. [110.662481, 21.789357],
  2229. [110.661666, 21.783533],
  2230. [110.663798, 21.78356],
  2231. [110.663241, 21.779646],
  2232. [110.661177, 21.777202],
  2233. [110.658054, 21.777456],
  2234. [110.656764, 21.77624],
  2235. [110.657932, 21.770389],
  2236. [110.655678, 21.768238],
  2237. [110.649771, 21.764297],
  2238. [110.652242, 21.762347],
  2239. [110.651944, 21.757618],
  2240. [110.655257, 21.755961],
  2241. [110.655311, 21.754478],
  2242. [110.659344, 21.755921],
  2243. [110.665292, 21.755413],
  2244. [110.669542, 21.756482],
  2245. [110.672067, 21.754598],
  2246. [110.674946, 21.756282],
  2247. [110.682279, 21.756121],
  2248. [110.68251, 21.752407],
  2249. [110.680133, 21.749976],
  2250. [110.682537, 21.749227],
  2251. [110.680296, 21.744778],
  2252. [110.682116, 21.742841],
  2253. [110.680771, 21.739594],
  2254. [110.685348, 21.733394],
  2255. [110.683107, 21.732165],
  2256. [110.68604, 21.73155],
  2257. [110.691281, 21.727822],
  2258. [110.696754, 21.726927],
  2259. [110.701968, 21.735011],
  2260. [110.708309, 21.73429],
  2261. [110.713442, 21.736147],
  2262. [110.714949, 21.739621],
  2263. [110.716986, 21.740529],
  2264. [110.719566, 21.736481],
  2265. [110.725011, 21.729733],
  2266. [110.723368, 21.727715],
  2267. [110.725677, 21.725003],
  2268. [110.727252, 21.726205],
  2269. [110.730361, 21.722357],
  2270. [110.730117, 21.720112],
  2271. [110.732398, 21.720125],
  2272. [110.734693, 21.717319],
  2273. [110.73267, 21.716677],
  2274. [110.731162, 21.714339],
  2275. [110.732656, 21.711359],
  2276. [110.734394, 21.713096],
  2277. [110.737436, 21.712508],
  2278. [110.74045, 21.710223],
  2279. [110.742854, 21.711653],
  2280. [110.747729, 21.710129],
  2281. [110.746764, 21.708405],
  2282. [110.754885, 21.706828],
  2283. [110.754586, 21.696991],
  2284. [110.752237, 21.687515],
  2285. [110.749888, 21.682249],
  2286. [110.750797, 21.677824],
  2287. [110.752345, 21.67733],
  2288. [110.752128, 21.674202],
  2289. [110.749222, 21.671261],
  2290. [110.751164, 21.66951],
  2291. [110.749575, 21.667531],
  2292. [110.749521, 21.660285],
  2293. [110.745977, 21.655713],
  2294. [110.742188, 21.654964],
  2295. [110.743492, 21.652143],
  2296. [110.741156, 21.650766],
  2297. [110.740695, 21.645098],
  2298. [110.742962, 21.642397],
  2299. [110.743125, 21.640311],
  2300. [110.746819, 21.637503],
  2301. [110.746982, 21.633893],
  2302. [110.743424, 21.628758],
  2303. [110.736227, 21.623851],
  2304. [110.737599, 21.622152],
  2305. [110.735684, 21.621149],
  2306. [110.737789, 21.619438],
  2307. [110.73658, 21.615118],
  2308. [110.735399, 21.614369],
  2309. [110.737517, 21.608699],
  2310. [110.739255, 21.609114],
  2311. [110.743315, 21.606212],
  2312. [110.742161, 21.603911],
  2313. [110.74451, 21.604861],
  2314. [110.745868, 21.603069],
  2315. [110.743343, 21.602988],
  2316. [110.744212, 21.59927],
  2317. [110.747783, 21.596783],
  2318. [110.746398, 21.590456],
  2319. [110.747145, 21.588758],
  2320. [110.742555, 21.587982],
  2321. [110.736417, 21.585334],
  2322. [110.735399, 21.58413],
  2323. [110.737205, 21.581682],
  2324. [110.736187, 21.579729],
  2325. [110.733878, 21.578779],
  2326. [110.734299, 21.575556],
  2327. [110.727428, 21.573643],
  2328. [110.725324, 21.564653],
  2329. [110.728012, 21.560653],
  2330. [110.728161, 21.556024],
  2331. [110.724903, 21.552559],
  2332. [110.725242, 21.547743],
  2333. [110.728311, 21.548158],
  2334. [110.729302, 21.546498],
  2335. [110.726098, 21.545268],
  2336. [110.726668, 21.542859],
  2337. [110.731298, 21.541508],
  2338. [110.730701, 21.539447],
  2339. [110.732452, 21.536638],
  2340. [110.734123, 21.537481],
  2341. [110.734177, 21.53451],
  2342. [110.736024, 21.533333],
  2343. [110.729547, 21.532008],
  2344. [110.728202, 21.531111],
  2345. [110.727713, 21.527284],
  2346. [110.729709, 21.524421],
  2347. [110.725744, 21.522802],
  2348. [110.721603, 21.526883],
  2349. [110.71776, 21.527378],
  2350. [110.713999, 21.526682],
  2351. [110.708812, 21.523257],
  2352. [110.706435, 21.520674],
  2353. [110.699049, 21.515602],
  2354. [110.693481, 21.513916],
  2355. [110.687194, 21.516485],
  2356. [110.680853, 21.520326],
  2357. [110.677743, 21.521423],
  2358. [110.673914, 21.520928],
  2359. [110.672828, 21.51868],
  2360. [110.672964, 21.514237],
  2361. [110.672122, 21.512591],
  2362. [110.675462, 21.510744],
  2363. [110.676766, 21.508911],
  2364. [110.677988, 21.510985],
  2365. [110.68012, 21.509941],
  2366. [110.682985, 21.504923],
  2367. [110.680676, 21.502233],
  2368. [110.682211, 21.500091],
  2369. [110.683419, 21.501363],
  2370. [110.687507, 21.496679],
  2371. [110.688661, 21.493466],
  2372. [110.687968, 21.491432],
  2373. [110.68475, 21.492248],
  2374. [110.683311, 21.488327],
  2375. [110.677336, 21.489826],
  2376. [110.674729, 21.488487],
  2377. [110.67333, 21.490401],
  2378. [110.67811, 21.4919],
  2379. [110.674186, 21.494684],
  2380. [110.668415, 21.496585],
  2381. [110.665631, 21.496786],
  2382. [110.664993, 21.493507],
  2383. [110.66836, 21.488996],
  2384. [110.664545, 21.488594],
  2385. [110.662522, 21.492985],
  2386. [110.658665, 21.490616],
  2387. [110.656941, 21.490897],
  2388. [110.656398, 21.495139],
  2389. [110.657918, 21.503625],
  2390. [110.655352, 21.502902],
  2391. [110.654062, 21.499623],
  2392. [110.651754, 21.501684],
  2393. [110.649201, 21.50139],
  2394. [110.648019, 21.49957],
  2395. [110.6451, 21.501229],
  2396. [110.643484, 21.49696],
  2397. [110.64563, 21.497723],
  2398. [110.644095, 21.493721],
  2399. [110.645086, 21.491405],
  2400. [110.645439, 21.482919],
  2401. [110.642018, 21.481567],
  2402. [110.63865, 21.483374],
  2403. [110.633775, 21.48316],
  2404. [110.632091, 21.481179],
  2405. [110.628344, 21.483441],
  2406. [110.622301, 21.482558],
  2407. [110.621174, 21.481072],
  2408. [110.618676, 21.481862],
  2409. [110.614561, 21.484793],
  2410. [110.617657, 21.48731],
  2411. [110.614711, 21.493359],
  2412. [110.612633, 21.494497],
  2413. [110.609361, 21.498994],
  2414. [110.606007, 21.498659],
  2415. [110.603413, 21.500091],
  2416. [110.603196, 21.503625],
  2417. [110.599068, 21.507305],
  2418. [110.594899, 21.50495],
  2419. [110.593786, 21.502808],
  2420. [110.590092, 21.500587],
  2421. [110.587567, 21.502099],
  2422. [110.58519, 21.500306],
  2423. [110.582474, 21.500145],
  2424. [110.583004, 21.497107],
  2425. [110.57741, 21.499128],
  2426. [110.575699, 21.50337],
  2427. [110.577545, 21.51045],
  2428. [110.575047, 21.512966],
  2429. [110.57502, 21.516178],
  2430. [110.572358, 21.515736],
  2431. [110.568733, 21.51674],
  2432. [110.5647, 21.516793],
  2433. [110.563396, 21.513408],
  2434. [110.560748, 21.514719],
  2435. [110.557055, 21.512685],
  2436. [110.556838, 21.506127],
  2437. [110.553239, 21.507091],
  2438. [110.54975, 21.501403],
  2439. [110.545323, 21.499623],
  2440. [110.544169, 21.496652],
  2441. [110.541752, 21.49348],
  2442. [110.544983, 21.489612],
  2443. [110.544698, 21.486814],
  2444. [110.542852, 21.485998],
  2445. [110.545459, 21.479198],
  2446. [110.544169, 21.474982],
  2447. [110.541507, 21.473215],
  2448. [110.538887, 21.473871],
  2449. [110.535003, 21.477043],
  2450. [110.53245, 21.480349],
  2451. [110.529653, 21.48055],
  2452. [110.52729, 21.478261],
  2453. [110.522348, 21.479131],
  2454. [110.52103, 21.480684],
  2455. [110.518152, 21.480483],
  2456. [110.519143, 21.482384],
  2457. [110.518179, 21.484365],
  2458. [110.519428, 21.487363],
  2459. [110.517351, 21.489853],
  2460. [110.514119, 21.489451],
  2461. [110.509882, 21.490214],
  2462. [110.506433, 21.491767],
  2463. [110.508253, 21.494109],
  2464. [110.508837, 21.497388],
  2465. [110.512421, 21.498579],
  2466. [110.508877, 21.502219],
  2467. [110.509298, 21.504053],
  2468. [110.507112, 21.505097],
  2469. [110.505849, 21.509875],
  2470. [110.502414, 21.511012],
  2471. [110.500676, 21.514692],
  2472. [110.49758, 21.517114],
  2473. [110.49538, 21.515629],
  2474. [110.491483, 21.515656],
  2475. [110.491809, 21.513367],
  2476. [110.489066, 21.514318],
  2477. [110.485114, 21.513729],
  2478. [110.483634, 21.517757],
  2479. [110.480891, 21.521999],
  2480. [110.478814, 21.52244],
  2481. [110.481706, 21.525866],
  2482. [110.480525, 21.527378],
  2483. [110.477714, 21.526227],
  2484. [110.479574, 21.532971],
  2485. [110.483254, 21.533453],
  2486. [110.482562, 21.538203],
  2487. [110.484028, 21.539447],
  2488. [110.482317, 21.543475],
  2489. [110.483879, 21.544037],
  2490. [110.479982, 21.547101],
  2491. [110.478053, 21.546325],
  2492. [110.475786, 21.547395],
  2493. [110.478311, 21.54888],
  2494. [110.479004, 21.552144],
  2495. [110.475745, 21.554205],
  2496. [110.475066, 21.55268],
  2497. [110.471889, 21.552185],
  2498. [110.470463, 21.547729],
  2499. [110.466484, 21.545749],
  2500. [110.465357, 21.546284],
  2501. [110.466783, 21.549348],
  2502. [110.464597, 21.55078],
  2503. [110.462655, 21.547649],
  2504. [110.463565, 21.551984],
  2505. [110.45535, 21.554486],
  2506. [110.454997, 21.552559],
  2507. [110.450326, 21.550459],
  2508. [110.449701, 21.553041],
  2509. [110.451385, 21.554954],
  2510. [110.448696, 21.554125],
  2511. [110.448384, 21.551235],
  2512. [110.446415, 21.554673],
  2513. [110.443767, 21.556372],
  2514. [110.438879, 21.555489],
  2515. [110.437331, 21.557402],
  2516. [110.434506, 21.553857],
  2517. [110.432456, 21.556038],
  2518. [110.424689, 21.557054],
  2519. [110.424349, 21.559784],
  2520. [110.426291, 21.559463],
  2521. [110.422666, 21.562232],
  2522. [110.424675, 21.565723],
  2523. [110.426576, 21.565469],
  2524. [110.423521, 21.56773],
  2525. [110.421118, 21.566365],
  2526. [110.418904, 21.567262],
  2527. [110.422122, 21.5688],
  2528. [110.424607, 21.56888],
  2529. [110.426726, 21.566352],
  2530. [110.428803, 21.57189],
  2531. [110.430921, 21.571355],
  2532. [110.428532, 21.574151],
  2533. [110.425748, 21.574766],
  2534. [110.424892, 21.576586],
  2535. [110.428165, 21.57502],
  2536. [110.42788, 21.580652],
  2537. [110.439734, 21.581214],
  2538. [110.440739, 21.583501],
  2539. [110.442844, 21.583795],
  2540. [110.443183, 21.586939],
  2541. [110.439028, 21.587434],
  2542. [110.438159, 21.593479],
  2543. [110.436733, 21.595325],
  2544. [110.435348, 21.594389],
  2545. [110.43194, 21.597318],
  2546. [110.429075, 21.597304],
  2547. [110.427242, 21.6001],
  2548. [110.425368, 21.598923],
  2549. [110.422557, 21.599404],
  2550. [110.417478, 21.598174],
  2551. [110.41756, 21.596489],
  2552. [110.420561, 21.595485],
  2553. [110.419203, 21.594509],
  2554. [110.420208, 21.591299],
  2555. [110.417967, 21.585441],
  2556. [110.413323, 21.586083],
  2557. [110.41627, 21.586577],
  2558. [110.41498, 21.587862],
  2559. [110.410635, 21.588223],
  2560. [110.408326, 21.591526],
  2561. [110.410716, 21.593546],
  2562. [110.410825, 21.595392],
  2563. [110.408707, 21.599565],
  2564. [110.406534, 21.601812],
  2565. [110.412617, 21.604393],
  2566. [110.410906, 21.606292],
  2567. [110.410513, 21.6112],
  2568. [110.412658, 21.616991],
  2569. [110.410675, 21.616536],
  2570. [110.409032, 21.618274],
  2571. [110.40705, 21.617057],
  2572. [110.405543, 21.618087],
  2573. [110.406154, 21.62369],
  2574. [110.403805, 21.625803],
  2575. [110.406792, 21.628477],
  2576. [110.403927, 21.630644],
  2577. [110.405312, 21.634642],
  2578. [110.402297, 21.636153],
  2579. [110.399948, 21.635377],
  2580. [110.399663, 21.63289],
  2581. [110.39749, 21.631927],
  2582. [110.401971, 21.632181],
  2583. [110.403058, 21.630202],
  2584. [110.398115, 21.627528],
  2585. [110.393675, 21.628571],
  2586. [110.396961, 21.629146],
  2587. [110.396255, 21.630938],
  2588. [110.39324, 21.63063],
  2589. [110.391869, 21.635497],
  2590. [110.38827, 21.638145],
  2591. [110.386899, 21.640592],
  2592. [110.390076, 21.640699],
  2593. [110.391108, 21.637262],
  2594. [110.392942, 21.635711],
  2595. [110.394232, 21.637195],
  2596. [110.396879, 21.633157],
  2597. [110.399419, 21.634561],
  2598. [110.398142, 21.640458],
  2599. [110.396445, 21.641755],
  2600. [110.394041, 21.640953],
  2601. [110.392276, 21.643212],
  2602. [110.38732, 21.646301],
  2603. [110.38918, 21.646862],
  2604. [110.392439, 21.644469],
  2605. [110.395331, 21.644322],
  2606. [110.395467, 21.642758],
  2607. [110.402012, 21.638305],
  2608. [110.403913, 21.638613],
  2609. [110.403981, 21.643974],
  2610. [110.409223, 21.645512],
  2611. [110.410119, 21.648146],
  2612. [110.4091, 21.6509],
  2613. [110.407023, 21.648587],
  2614. [110.401768, 21.649242],
  2615. [110.40022, 21.647584],
  2616. [110.399378, 21.650298],
  2617. [110.396839, 21.650686],
  2618. [110.394041, 21.652665],
  2619. [110.390864, 21.649871],
  2620. [110.387564, 21.649724],
  2621. [110.386369, 21.653026],
  2622. [110.387225, 21.654497],
  2623. [110.389818, 21.654804],
  2624. [110.391801, 21.656796],
  2625. [110.388556, 21.658013],
  2626. [110.385745, 21.657545],
  2627. [110.382391, 21.660847],
  2628. [110.38398, 21.661595],
  2629. [110.382486, 21.667437],
  2630. [110.387537, 21.670058],
  2631. [110.393091, 21.669122],
  2632. [110.395467, 21.672638],
  2633. [110.398034, 21.673426],
  2634. [110.400179, 21.671929],
  2635. [110.400749, 21.673239],
  2636. [110.404212, 21.673359],
  2637. [110.40762, 21.675071],
  2638. [110.407973, 21.673627],
  2639. [110.412318, 21.675752],
  2640. [110.41183, 21.681072],
  2641. [110.407389, 21.683746],
  2642. [110.409739, 21.686646],
  2643. [110.402868, 21.689199],
  2644. [110.4006, 21.687502],
  2645. [110.398672, 21.684454],
  2646. [110.400125, 21.682128],
  2647. [110.398414, 21.679468],
  2648. [110.399052, 21.677557],
  2649. [110.39673, 21.673613],
  2650. [110.393145, 21.674549],
  2651. [110.393811, 21.677129],
  2652. [110.392426, 21.681594],
  2653. [110.386885, 21.680297],
  2654. [110.384957, 21.678706],
  2655. [110.385718, 21.674723],
  2656. [110.384441, 21.673961],
  2657. [110.380368, 21.675806],
  2658. [110.379987, 21.677677],
  2659. [110.37681, 21.678506],
  2660. [110.375479, 21.683599],
  2661. [110.373144, 21.681808],
  2662. [110.372723, 21.684254],
  2663. [110.370021, 21.682543],
  2664. [110.367658, 21.683331],
  2665. [110.37108, 21.684508],
  2666. [110.368459, 21.685203],
  2667. [110.370061, 21.688558],
  2668. [110.366734, 21.694238],
  2669. [110.361615, 21.69901],
  2670. [110.359796, 21.69794],
  2671. [110.357759, 21.698716],
  2672. [110.359117, 21.700894],
  2673. [110.358737, 21.704128],
  2674. [110.357813, 21.701268],
  2675. [110.356523, 21.701589],
  2676. [110.355545, 21.69794],
  2677. [110.353753, 21.700587],
  2678. [110.355369, 21.703714],
  2679. [110.357976, 21.705091],
  2680. [110.356319, 21.70624],
  2681. [110.35393, 21.710503],
  2682. [110.352029, 21.711345],
  2683. [110.351418, 21.71363],
  2684. [110.35579, 21.713136],
  2685. [110.35541, 21.715795],
  2686. [110.357351, 21.716584],
  2687. [110.356971, 21.718361],
  2688. [110.359375, 21.718762],
  2689. [110.358438, 21.716063],
  2690. [110.360855, 21.715702],
  2691. [110.363068, 21.719925],
  2692. [110.367264, 21.720286],
  2693. [110.368731, 21.721809],
  2694. [110.36797, 21.725951],
  2695. [110.366734, 21.727622],
  2696. [110.368771, 21.731524],
  2697. [110.367223, 21.734971],
  2698. [110.366626, 21.739487],
  2699. [110.36706, 21.743589],
  2700. [110.365363, 21.748012],
  2701. [110.366531, 21.750443],
  2702. [110.366286, 21.756095],
  2703. [110.368418, 21.756108],
  2704. [110.373999, 21.758566],
  2705. [110.375194, 21.760303]
  2706. ],
  2707. [
  2708. [110.50809, 21.490562],
  2709. [110.506637, 21.489505],
  2710. [110.506243, 21.48652],
  2711. [110.514051, 21.480791],
  2712. [110.513345, 21.478676],
  2713. [110.517513, 21.477525],
  2714. [110.51788, 21.479359],
  2715. [110.519808, 21.478475],
  2716. [110.518437, 21.476467],
  2717. [110.51511, 21.477886],
  2718. [110.513929, 21.474968],
  2719. [110.509258, 21.473563],
  2720. [110.50794, 21.474312],
  2721. [110.506718, 21.472237],
  2722. [110.503215, 21.472318],
  2723. [110.502808, 21.473523],
  2724. [110.49834, 21.472077],
  2725. [110.494457, 21.473938],
  2726. [110.490709, 21.478984],
  2727. [110.492203, 21.479894],
  2728. [110.490804, 21.482437],
  2729. [110.492814, 21.483696],
  2730. [110.493696, 21.481581],
  2731. [110.496263, 21.481915],
  2732. [110.497417, 21.480349],
  2733. [110.498965, 21.481741],
  2734. [110.499318, 21.479439],
  2735. [110.502088, 21.480885],
  2736. [110.506053, 21.478783],
  2737. [110.509095, 21.479292],
  2738. [110.50494, 21.483629],
  2739. [110.505904, 21.486359],
  2740. [110.504138, 21.487537],
  2741. [110.504912, 21.490897],
  2742. [110.50809, 21.490562]
  2743. ],
  2744. [
  2745. [110.375194, 21.760303],
  2746. [110.369192, 21.761385],
  2747. [110.369912, 21.763229],
  2748. [110.373755, 21.761786],
  2749. [110.371813, 21.767183],
  2750. [110.372465, 21.768652],
  2751. [110.370007, 21.770135],
  2752. [110.371283, 21.773047],
  2753. [110.372207, 21.778578],
  2754. [110.374271, 21.781383],
  2755. [110.373198, 21.784134],
  2756. [110.375982, 21.785497],
  2757. [110.377964, 21.783881],
  2758. [110.380286, 21.784495],
  2759. [110.381074, 21.783386],
  2760. [110.381182, 21.780448],
  2761. [110.378589, 21.780287],
  2762. [110.379892, 21.777723],
  2763. [110.378711, 21.775585],
  2764. [110.37829, 21.765767],
  2765. [110.379159, 21.763656],
  2766. [110.375194, 21.760303]
  2767. ],
  2768. [
  2769. [110.717353, 21.519697],
  2770. [110.716755, 21.517703],
  2771. [110.723015, 21.514625],
  2772. [110.723531, 21.511534],
  2773. [110.726939, 21.508817],
  2774. [110.733593, 21.507974],
  2775. [110.733403, 21.505043],
  2776. [110.730809, 21.501068],
  2777. [110.723382, 21.503558],
  2778. [110.715859, 21.502728],
  2779. [110.711894, 21.501791],
  2780. [110.71169, 21.500573],
  2781. [110.708445, 21.500935],
  2782. [110.70964, 21.507827],
  2783. [110.711636, 21.507921],
  2784. [110.713537, 21.511775],
  2785. [110.712695, 21.515736],
  2786. [110.711527, 21.517034],
  2787. [110.709314, 21.515027],
  2788. [110.706748, 21.516031],
  2789. [110.70911, 21.520005],
  2790. [110.71131, 21.517275],
  2791. [110.713795, 21.517971],
  2792. [110.715207, 21.51674],
  2793. [110.715859, 21.519296],
  2794. [110.717353, 21.519697]
  2795. ],
  2796. [
  2797. [110.484001, 21.447136],
  2798. [110.481842, 21.453027],
  2799. [110.484313, 21.454058],
  2800. [110.483336, 21.456963],
  2801. [110.487559, 21.455664],
  2802. [110.490437, 21.456856],
  2803. [110.489595, 21.45201],
  2804. [110.488333, 21.449412],
  2805. [110.485698, 21.450135],
  2806. [110.484001, 21.447136]
  2807. ]
  2808. ]
  2809. },
  2810. {
  2811. 'name': '信宜市',
  2812. 'center': [111.141656, 22.352681],
  2813. 'parentName': '茂名市',
  2814. 'code': 440983,
  2815. infoData: [
  2816. { name: '面积', value: '3101.7', unit: '平方千米' },
  2817. { name: '常住人口', value: '101.4577', unit: '万人' }
  2818. ],
  2819. 'boundaries': [
  2820. [
  2821. [111.384113, 22.245962],
  2822. [111.382225, 22.245496],
  2823. [111.375124, 22.252845],
  2824. [111.370819, 22.254615],
  2825. [111.370398, 22.256705],
  2826. [111.374105, 22.261405],
  2827. [111.375789, 22.26476],
  2828. [111.373114, 22.269938],
  2829. [111.36938, 22.271509],
  2830. [111.370303, 22.272946],
  2831. [111.373426, 22.272999],
  2832. [111.371199, 22.278963],
  2833. [111.368307, 22.282956],
  2834. [111.368932, 22.28474],
  2835. [111.365415, 22.288666],
  2836. [111.352284, 22.290316],
  2837. [111.348197, 22.292619],
  2838. [111.346377, 22.294708],
  2839. [111.344218, 22.295094],
  2840. [111.340647, 22.298022],
  2841. [111.338624, 22.303559],
  2842. [111.336465, 22.30449],
  2843. [111.33455, 22.307618],
  2844. [111.331373, 22.309907],
  2845. [111.328399, 22.309774],
  2846. [111.325575, 22.307485],
  2847. [111.318527, 22.306673],
  2848. [111.314141, 22.306966],
  2849. [111.311602, 22.305848],
  2850. [111.303767, 22.303878],
  2851. [111.299571, 22.30131],
  2852. [111.294058, 22.293218],
  2853. [111.292089, 22.293471],
  2854. [111.290691, 22.290197],
  2855. [111.287988, 22.288107],
  2856. [111.28826, 22.283715],
  2857. [111.285925, 22.281092],
  2858. [111.286305, 22.278177],
  2859. [111.284757, 22.276181],
  2860. [111.278022, 22.275875],
  2861. [111.275768, 22.273439],
  2862. [111.272807, 22.27449],
  2863. [111.270119, 22.270896],
  2864. [111.270322, 22.26665],
  2865. [111.266873, 22.269192],
  2866. [111.262012, 22.267635],
  2867. [111.258495, 22.268154],
  2868. [111.257857, 22.272281],
  2869. [111.253851, 22.27674],
  2870. [111.250117, 22.279109],
  2871. [111.24899, 22.286536],
  2872. [111.239784, 22.287189],
  2873. [111.238521, 22.283129],
  2874. [111.236471, 22.281825],
  2875. [111.236674, 22.279335],
  2876. [111.235126, 22.27887],
  2877. [111.229926, 22.280454],
  2878. [111.228242, 22.284327],
  2879. [111.220434, 22.277539],
  2880. [111.217813, 22.273412],
  2881. [111.219769, 22.27047],
  2882. [111.215871, 22.267169],
  2883. [111.214133, 22.264254],
  2884. [111.211974, 22.263774],
  2885. [111.209625, 22.261059],
  2886. [111.203528, 22.262776],
  2887. [111.196332, 22.260167],
  2888. [111.194797, 22.258742],
  2889. [111.188836, 22.259488],
  2890. [111.186636, 22.25837],
  2891. [111.183758, 22.258969],
  2892. [111.183608, 22.263881],
  2893. [111.181504, 22.266637],
  2894. [111.177783, 22.264626],
  2895. [111.176344, 22.261112],
  2896. [111.173193, 22.260606],
  2897. [111.160266, 22.256812],
  2898. [111.156464, 22.257478],
  2899. [111.154142, 22.259035],
  2900. [111.150422, 22.254935],
  2901. [111.145547, 22.254615],
  2902. [111.139599, 22.254988],
  2903. [111.137332, 22.251633],
  2904. [111.134806, 22.251181],
  2905. [111.133122, 22.248558],
  2906. [111.125477, 22.247013],
  2907. [111.123047, 22.248571],
  2908. [111.119964, 22.253164],
  2909. [111.117697, 22.253577],
  2910. [111.11566, 22.250941],
  2911. [111.116651, 22.248984],
  2912. [111.107703, 22.246494],
  2913. [111.102067, 22.244018],
  2914. [111.095862, 22.244737],
  2915. [111.095441, 22.242713],
  2916. [111.093119, 22.240223],
  2917. [111.09024, 22.241635],
  2918. [111.088679, 22.240476],
  2919. [111.081278, 22.239557],
  2920. [111.077178, 22.236935],
  2921. [111.07677, 22.242447],
  2922. [111.074014, 22.246361],
  2923. [111.069818, 22.24901],
  2924. [111.067251, 22.249237],
  2925. [111.066749, 22.253497],
  2926. [111.063368, 22.258902],
  2927. [111.059484, 22.258529],
  2928. [111.058778, 22.261471],
  2929. [111.056945, 22.263774],
  2930. [111.051799, 22.264746],
  2931. [111.049721, 22.267701],
  2932. [111.048363, 22.264453],
  2933. [111.049178, 22.261591],
  2934. [111.04175, 22.252206],
  2935. [111.038084, 22.250568],
  2936. [111.038206, 22.247479],
  2937. [111.036713, 22.246081],
  2938. [111.03158, 22.24491],
  2939. [111.028498, 22.243379],
  2940. [111.024465, 22.238372],
  2941. [111.020174, 22.237986],
  2942. [111.014919, 22.23077],
  2943. [111.012407, 22.228573],
  2944. [111.009555, 22.227601],
  2945. [111.005278, 22.229278],
  2946. [110.994252, 22.229518],
  2947. [110.990572, 22.232581],
  2948. [110.98419, 22.235843],
  2949. [110.980456, 22.234138],
  2950. [110.977536, 22.23017],
  2951. [110.964093, 22.228892],
  2952. [110.956068, 22.23085],
  2953. [110.952755, 22.229332],
  2954. [110.950053, 22.226868],
  2955. [110.944635, 22.219864],
  2956. [110.94253, 22.215683],
  2957. [110.939611, 22.21266],
  2958. [110.934858, 22.210782],
  2959. [110.932156, 22.208132],
  2960. [110.928449, 22.207599],
  2961. [110.924742, 22.208185],
  2962. [110.920016, 22.210303],
  2963. [110.916309, 22.20937],
  2964. [110.913213, 22.19833],
  2965. [110.911299, 22.194321],
  2966. [110.907483, 22.191657],
  2967. [110.904129, 22.193881],
  2968. [110.900286, 22.199036],
  2969. [110.894828, 22.199821],
  2970. [110.889681, 22.199861],
  2971. [110.887821, 22.198916],
  2972. [110.887047, 22.196492],
  2973. [110.890292, 22.189433],
  2974. [110.885988, 22.185437],
  2975. [110.881697, 22.184984],
  2976. [110.870915, 22.193535],
  2977. [110.868078, 22.196412],
  2978. [110.86008, 22.199142],
  2979. [110.84699, 22.205708],
  2980. [110.843704, 22.206307],
  2981. [110.844763, 22.20973],
  2982. [110.847451, 22.211794],
  2983. [110.840295, 22.216229],
  2984. [110.836398, 22.215882],
  2985. [110.833302, 22.214391],
  2986. [110.83265, 22.209437],
  2987. [110.82893, 22.207945],
  2988. [110.822969, 22.207612],
  2989. [110.820742, 22.210875],
  2990. [110.815229, 22.215296],
  2991. [110.811332, 22.215709],
  2992. [110.80514, 22.21214],
  2993. [110.799966, 22.207226],
  2994. [110.796069, 22.207639],
  2995. [110.792579, 22.209943],
  2996. [110.790352, 22.213392],
  2997. [110.779041, 22.219638],
  2998. [110.779001, 22.226975],
  2999. [110.777154, 22.234032],
  3000. [110.781309, 22.239331],
  3001. [110.78689, 22.243485],
  3002. [110.79023, 22.250115],
  3003. [110.792294, 22.252765],
  3004. [110.796639, 22.25596],
  3005. [110.797495, 22.259381],
  3006. [110.800414, 22.265265],
  3007. [110.80332, 22.266956],
  3008. [110.802302, 22.269059],
  3009. [110.795322, 22.269871],
  3010. [110.793476, 22.270643],
  3011. [110.789198, 22.276766],
  3012. [110.784486, 22.2808],
  3013. [110.789687, 22.286683],
  3014. [110.788737, 22.291368],
  3015. [110.785559, 22.294629],
  3016. [110.772619, 22.295547],
  3017. [110.773257, 22.307418],
  3018. [110.765422, 22.32002],
  3019. [110.763276, 22.321178],
  3020. [110.760479, 22.324797],
  3021. [110.758103, 22.325995],
  3022. [110.754749, 22.326195],
  3023. [110.749439, 22.329761],
  3024. [110.748747, 22.338263],
  3025. [110.750444, 22.342693],
  3026. [110.750146, 22.344795],
  3027. [110.744687, 22.354521],
  3028. [110.742351, 22.360866],
  3029. [110.741251, 22.36201],
  3030. [110.72937, 22.366347],
  3031. [110.726043, 22.36495],
  3032. [110.723803, 22.359895],
  3033. [110.721291, 22.359669],
  3034. [110.719145, 22.361625],
  3035. [110.718616, 22.364751],
  3036. [110.716226, 22.365562],
  3037. [110.711514, 22.369633],
  3038. [110.709599, 22.374608],
  3039. [110.709436, 22.378478],
  3040. [110.710265, 22.38207],
  3041. [110.713075, 22.384344],
  3042. [110.712342, 22.39545],
  3043. [110.708988, 22.398109],
  3044. [110.70706, 22.40166],
  3045. [110.706897, 22.405331],
  3046. [110.712804, 22.413057],
  3047. [110.713999, 22.4171],
  3048. [110.71332, 22.43747],
  3049. [110.710849, 22.442575],
  3050. [110.706707, 22.446391],
  3051. [110.693549, 22.448292],
  3052. [110.692585, 22.450951],
  3053. [110.692653, 22.457758],
  3054. [110.68566, 22.464271],
  3055. [110.683474, 22.47339],
  3056. [110.686189, 22.476806],
  3057. [110.688267, 22.47775],
  3058. [110.693631, 22.477152],
  3059. [110.698356, 22.47448],
  3060. [110.705118, 22.466451],
  3061. [110.716226, 22.461825],
  3062. [110.725921, 22.461214],
  3063. [110.731515, 22.462703],
  3064. [110.741347, 22.464298],
  3065. [110.747756, 22.473005],
  3066. [110.747756, 22.476102],
  3067. [110.739934, 22.488715],
  3068. [110.741224, 22.4933],
  3069. [110.740437, 22.498829],
  3070. [110.741279, 22.500716],
  3071. [110.745013, 22.502802],
  3072. [110.746683, 22.506218],
  3073. [110.746737, 22.512676],
  3074. [110.750485, 22.517048],
  3075. [110.754613, 22.517579],
  3076. [110.760791, 22.516782],
  3077. [110.762652, 22.519559],
  3078. [110.759814, 22.523466],
  3079. [110.757179, 22.530136],
  3080. [110.754532, 22.534148],
  3081. [110.754341, 22.536819],
  3082. [110.75832, 22.543834],
  3083. [110.758741, 22.546305],
  3084. [110.756894, 22.548417],
  3085. [110.750336, 22.552256],
  3086. [110.748082, 22.554741],
  3087. [110.749725, 22.557198],
  3088. [110.761497, 22.559589],
  3089. [110.764471, 22.565952],
  3090. [110.762258, 22.575595],
  3091. [110.760235, 22.580762],
  3092. [110.762122, 22.584162],
  3093. [110.767268, 22.582223],
  3094. [110.769332, 22.582781],
  3095. [110.771845, 22.587522],
  3096. [110.778634, 22.585384],
  3097. [110.780861, 22.580603],
  3098. [110.784744, 22.576578],
  3099. [110.790692, 22.573484],
  3100. [110.793571, 22.571372],
  3101. [110.794154, 22.567745],
  3102. [110.796164, 22.561449],
  3103. [110.799219, 22.556853],
  3104. [110.805819, 22.558899],
  3105. [110.806457, 22.560599],
  3106. [110.80609, 22.567267],
  3107. [110.807557, 22.570681],
  3108. [110.81235, 22.576167],
  3109. [110.815446, 22.578039],
  3110. [110.81937, 22.578571],
  3111. [110.828658, 22.581931],
  3112. [110.833221, 22.584933],
  3113. [110.840567, 22.58569],
  3114. [110.850479, 22.582117],
  3115. [110.853779, 22.582263],
  3116. [110.859387, 22.586978],
  3117. [110.861234, 22.587722],
  3118. [110.864927, 22.585783],
  3119. [110.867616, 22.586154],
  3120. [110.877705, 22.582675],
  3121. [110.882485, 22.582223],
  3122. [110.887278, 22.583565],
  3123. [110.897951, 22.591998],
  3124. [110.897136, 22.592755],
  3125. [110.898847, 22.599594],
  3126. [110.895398, 22.606659],
  3127. [110.895018, 22.609528],
  3128. [110.895873, 22.613511],
  3129. [110.898372, 22.613843],
  3130. [110.91358, 22.611307],
  3131. [110.915902, 22.611971],
  3132. [110.924742, 22.610776],
  3133. [110.927213, 22.609036],
  3134. [110.931124, 22.608226],
  3135. [110.941281, 22.60812],
  3136. [110.94674, 22.610152],
  3137. [110.950134, 22.61055],
  3138. [110.954059, 22.612847],
  3139. [110.95767, 22.616725],
  3140. [110.959517, 22.619885],
  3141. [110.961758, 22.625767],
  3142. [110.961608, 22.629259],
  3143. [110.958268, 22.635313],
  3144. [110.958988, 22.636521],
  3145. [110.966537, 22.636402],
  3146. [110.971412, 22.637902],
  3147. [110.977305, 22.64154],
  3148. [110.981963, 22.641553],
  3149. [110.987327, 22.640225],
  3150. [110.988372, 22.636163],
  3151. [110.997076, 22.63137],
  3152. [110.998964, 22.635685],
  3153. [111.002168, 22.637982],
  3154. [111.009093, 22.640663],
  3155. [111.010709, 22.645814],
  3156. [111.016209, 22.647062],
  3157. [111.019739, 22.649638],
  3158. [111.024478, 22.65135],
  3159. [111.028756, 22.651032],
  3160. [111.029733, 22.647766],
  3161. [111.034554, 22.645005],
  3162. [111.037555, 22.645668],
  3163. [111.039822, 22.648987],
  3164. [111.046666, 22.648908],
  3165. [111.050156, 22.649412],
  3166. [111.055614, 22.648496],
  3167. [111.059607, 22.653979],
  3168. [111.06072, 22.661452],
  3169. [111.059946, 22.663616],
  3170. [111.062064, 22.666191],
  3171. [111.066586, 22.666669],
  3172. [111.069139, 22.665527],
  3173. [111.074027, 22.667226],
  3174. [111.076797, 22.6715],
  3175. [111.079839, 22.678575],
  3176. [111.084659, 22.683538],
  3177. [111.085298, 22.686909],
  3178. [111.089113, 22.689046],
  3179. [111.089643, 22.694275],
  3180. [111.091408, 22.693664],
  3181. [111.098021, 22.693598],
  3182. [111.104743, 22.694859],
  3183. [111.103982, 22.698906],
  3184. [111.106073, 22.702529],
  3185. [111.108382, 22.704334],
  3186. [111.112605, 22.703392],
  3187. [111.115999, 22.704015],
  3188. [111.119516, 22.702065],
  3189. [111.12192, 22.702635],
  3190. [111.123522, 22.701481],
  3191. [111.123033, 22.698787],
  3192. [111.131099, 22.689789],
  3193. [111.136897, 22.68594],
  3194. [111.136829, 22.681348],
  3195. [111.137698, 22.678548],
  3196. [111.137074, 22.674513],
  3197. [111.127935, 22.666191],
  3198. [111.130773, 22.662806],
  3199. [111.130461, 22.66035],
  3200. [111.132049, 22.65743],
  3201. [111.13376, 22.651881],
  3202. [111.135811, 22.649744],
  3203. [111.136979, 22.64596],
  3204. [111.136422, 22.643783],
  3205. [111.143143, 22.638672],
  3206. [111.144854, 22.633919],
  3207. [111.144909, 22.630706],
  3208. [111.143741, 22.628369],
  3209. [111.14423, 22.625727],
  3210. [111.152241, 22.624227],
  3211. [111.156179, 22.621239],
  3212. [111.162955, 22.61938],
  3213. [111.170124, 22.609793],
  3214. [111.174714, 22.605783],
  3215. [111.185822, 22.604402],
  3216. [111.193195, 22.607522],
  3217. [111.195639, 22.607549],
  3218. [111.196698, 22.610231],
  3219. [111.202727, 22.60638],
  3220. [111.204696, 22.603114],
  3221. [111.207222, 22.601786],
  3222. [111.207643, 22.59731],
  3223. [111.211839, 22.594734],
  3224. [111.215654, 22.594654],
  3225. [111.21909, 22.590418],
  3226. [111.219212, 22.585836],
  3227. [111.224263, 22.584269],
  3228. [111.230306, 22.584773],
  3229. [111.236403, 22.582993],
  3230. [111.240286, 22.582914],
  3231. [111.241888, 22.584521],
  3232. [111.244496, 22.584919],
  3233. [111.246207, 22.583365],
  3234. [111.249044, 22.583644],
  3235. [111.250104, 22.586048],
  3236. [111.253498, 22.589249],
  3237. [111.25764, 22.589701],
  3238. [111.269372, 22.592901],
  3239. [111.279257, 22.592025],
  3240. [111.284825, 22.589475],
  3241. [111.289319, 22.588877],
  3242. [111.289061, 22.587615],
  3243. [111.293827, 22.585836],
  3244. [111.294927, 22.583883],
  3245. [111.29968, 22.583086],
  3246. [111.303142, 22.580736],
  3247. [111.302803, 22.578026],
  3248. [111.303849, 22.575675],
  3249. [111.301649, 22.573391],
  3250. [111.303672, 22.569459],
  3251. [111.308615, 22.567055],
  3252. [111.319356, 22.559656],
  3253. [111.326634, 22.557251],
  3254. [111.327, 22.553014],
  3255. [111.322723, 22.549639],
  3256. [111.317224, 22.549573],
  3257. [111.312417, 22.548802],
  3258. [111.310054, 22.54952],
  3259. [111.305532, 22.547461],
  3260. [111.300345, 22.547235],
  3261. [111.296394, 22.548151],
  3262. [111.293922, 22.547633],
  3263. [111.290324, 22.538227],
  3264. [111.290378, 22.534866],
  3265. [111.287459, 22.531039],
  3266. [111.285164, 22.523878],
  3267. [111.28196, 22.52239],
  3268. [111.28071, 22.520157],
  3269. [111.277288, 22.517819],
  3270. [111.276569, 22.513806],
  3271. [111.272047, 22.506151],
  3272. [111.271422, 22.502763],
  3273. [111.272264, 22.497726],
  3274. [111.274478, 22.493247],
  3275. [111.276949, 22.491931],
  3276. [111.279488, 22.494111],
  3277. [111.281158, 22.498683],
  3278. [111.285123, 22.500743],
  3279. [111.287948, 22.495879],
  3280. [111.290487, 22.498909],
  3281. [111.293271, 22.506005],
  3282. [111.300807, 22.507241],
  3283. [111.304324, 22.507175],
  3284. [111.306496, 22.508211],
  3285. [111.309063, 22.511693],
  3286. [111.315146, 22.510058],
  3287. [111.317156, 22.510576],
  3288. [111.319301, 22.515041],
  3289. [111.321406, 22.516888],
  3290. [111.322533, 22.515932],
  3291. [111.327489, 22.516516],
  3292. [111.329811, 22.516078],
  3293. [111.334089, 22.520131],
  3294. [111.335433, 22.52223],
  3295. [111.33857, 22.522961],
  3296. [111.339439, 22.520077],
  3297. [111.342399, 22.518749],
  3298. [111.343118, 22.516809],
  3299. [111.346472, 22.512875],
  3300. [111.346703, 22.510497],
  3301. [111.350057, 22.507015],
  3302. [111.352298, 22.509062],
  3303. [111.354783, 22.507759],
  3304. [111.35758, 22.507972],
  3305. [111.359997, 22.511015],
  3306. [111.365944, 22.513766],
  3307. [111.373657, 22.516025],
  3308. [111.376658, 22.514337],
  3309. [111.377215, 22.511892],
  3310. [111.380732, 22.511746],
  3311. [111.382008, 22.509885],
  3312. [111.384656, 22.509806],
  3313. [111.389096, 22.512769],
  3314. [111.392735, 22.512742],
  3315. [111.396144, 22.514191],
  3316. [111.400665, 22.513952],
  3317. [111.40315, 22.516078],
  3318. [111.406491, 22.513925],
  3319. [111.407699, 22.51451],
  3320. [111.413362, 22.512636],
  3321. [111.414312, 22.51063],
  3322. [111.414068, 22.505367],
  3323. [111.412425, 22.503028],
  3324. [111.412642, 22.500543],
  3325. [111.410592, 22.492011],
  3326. [111.40592, 22.484675],
  3327. [111.40368, 22.484183],
  3328. [111.40334, 22.479518],
  3329. [111.408786, 22.475238],
  3330. [111.407197, 22.474241],
  3331. [111.409274, 22.470492],
  3332. [111.408908, 22.466637],
  3333. [111.411053, 22.462849],
  3334. [111.409464, 22.460695],
  3335. [111.4096, 22.457133],
  3336. [111.412547, 22.451111],
  3337. [111.417096, 22.448797],
  3338. [111.419961, 22.449755],
  3339. [111.421957, 22.447814],
  3340. [111.420423, 22.44211],
  3341. [111.419214, 22.440927],
  3342. [111.419133, 22.43743],
  3343. [111.416648, 22.434851],
  3344. [111.417041, 22.431141],
  3345. [111.420545, 22.428748],
  3346. [111.42178, 22.426647],
  3347. [111.425311, 22.425251],
  3348. [111.426601, 22.427019],
  3349. [111.432209, 22.426381],
  3350. [111.433947, 22.428189],
  3351. [111.436174, 22.426886],
  3352. [111.439528, 22.427817],
  3353. [111.438903, 22.430756],
  3354. [111.442271, 22.433614],
  3355. [111.446032, 22.44223],
  3356. [111.45714, 22.44199],
  3357. [111.462001, 22.444118],
  3358. [111.464133, 22.44207],
  3359. [111.469469, 22.441525],
  3360. [111.471357, 22.44199],
  3361. [111.47467, 22.450406],
  3362. [111.477209, 22.452972],
  3363. [111.477236, 22.455059],
  3364. [111.479545, 22.456083],
  3365. [111.480441, 22.460164],
  3366. [111.476218, 22.46152],
  3367. [111.473611, 22.468512],
  3368. [111.474113, 22.472818],
  3369. [111.473475, 22.4746],
  3370. [111.474928, 22.4786],
  3371. [111.476924, 22.480156],
  3372. [111.472891, 22.485366],
  3373. [111.470325, 22.485539],
  3374. [111.469388, 22.490283],
  3375. [111.474195, 22.494868],
  3376. [111.476652, 22.495068],
  3377. [111.478499, 22.49855],
  3378. [111.480889, 22.499653],
  3379. [111.481704, 22.503573],
  3380. [111.486891, 22.505553],
  3381. [111.490625, 22.50368],
  3382. [111.493096, 22.500224],
  3383. [111.495554, 22.499706],
  3384. [111.500958, 22.496197],
  3385. [111.503267, 22.496251],
  3386. [111.507789, 22.493925],
  3387. [111.509377, 22.490948],
  3388. [111.514619, 22.487718],
  3389. [111.517715, 22.485033],
  3390. [111.517633, 22.483173],
  3391. [111.52039, 22.481086],
  3392. [111.525197, 22.480156],
  3393. [111.531742, 22.484276],
  3394. [111.533575, 22.487386],
  3395. [111.53534, 22.488117],
  3396. [111.53553, 22.490682],
  3397. [111.539821, 22.493726],
  3398. [111.54103, 22.497181],
  3399. [111.545429, 22.499307],
  3400. [111.545728, 22.501965],
  3401. [111.544479, 22.503214],
  3402. [111.544207, 22.510125],
  3403. [111.545796, 22.515865],
  3404. [111.544614, 22.51738],
  3405. [111.551499, 22.520729],
  3406. [111.56114, 22.523373],
  3407. [111.559415, 22.528794],
  3408. [111.562362, 22.530787],
  3409. [111.564195, 22.533497],
  3410. [111.567332, 22.535663],
  3411. [111.569586, 22.538626],
  3412. [111.569355, 22.540698],
  3413. [111.5759, 22.542452],
  3414. [111.582988, 22.547182],
  3415. [111.586546, 22.547673],
  3416. [111.590334, 22.549706],
  3417. [111.596309, 22.55134],
  3418. [111.597735, 22.54948],
  3419. [111.60265, 22.550516],
  3420. [111.606846, 22.549666],
  3421. [111.610906, 22.546318],
  3422. [111.612006, 22.541416],
  3423. [111.609752, 22.535849],
  3424. [111.610309, 22.534148],
  3425. [111.61479, 22.5365],
  3426. [111.618293, 22.533896],
  3427. [111.616446, 22.531305],
  3428. [111.617981, 22.530508],
  3429. [111.616663, 22.525884],
  3430. [111.618809, 22.523878],
  3431. [111.61608, 22.521433],
  3432. [111.621267, 22.521194],
  3433. [111.62018, 22.512729],
  3434. [111.619298, 22.50954],
  3435. [111.616012, 22.508145],
  3436. [111.616405, 22.505912],
  3437. [111.619651, 22.497301],
  3438. [111.622217, 22.49944],
  3439. [111.62166, 22.501447],
  3440. [111.623806, 22.504397],
  3441. [111.625707, 22.510935],
  3442. [111.627839, 22.511028],
  3443. [111.632184, 22.508743],
  3444. [111.6316, 22.506391],
  3445. [111.633909, 22.503268],
  3446. [111.638227, 22.501846],
  3447. [111.639666, 22.502364],
  3448. [111.643658, 22.500198],
  3449. [111.646306, 22.501008],
  3450. [111.648139, 22.498191],
  3451. [111.649972, 22.49952],
  3452. [111.652213, 22.499214],
  3453. [111.656395, 22.500769],
  3454. [111.657862, 22.502616],
  3455. [111.661188, 22.501194],
  3456. [111.665439, 22.501567],
  3457. [111.667516, 22.502895],
  3458. [111.67144, 22.503254],
  3459. [111.674156, 22.499467],
  3460. [111.678529, 22.49637],
  3461. [111.677469, 22.491293],
  3462. [111.67914, 22.488024],
  3463. [111.677999, 22.484834],
  3464. [111.680226, 22.481817],
  3465. [111.679112, 22.480089],
  3466. [111.679656, 22.477258],
  3467. [111.681258, 22.475623],
  3468. [111.681244, 22.472632],
  3469. [111.683363, 22.468751],
  3470. [111.682263, 22.46366],
  3471. [111.679411, 22.459446],
  3472. [111.679072, 22.45684],
  3473. [111.674088, 22.451576],
  3474. [111.670761, 22.450153],
  3475. [111.670178, 22.446431],
  3476. [111.666715, 22.444875],
  3477. [111.663497, 22.441751],
  3478. [111.662994, 22.438321],
  3479. [111.661188, 22.43747],
  3480. [111.660089, 22.434904],
  3481. [111.655743, 22.433269],
  3482. [111.654711, 22.429905],
  3483. [111.652335, 22.427684],
  3484. [111.649606, 22.426727],
  3485. [111.64632, 22.422113],
  3486. [111.644446, 22.421594],
  3487. [111.642572, 22.417432],
  3488. [111.636271, 22.410318],
  3489. [111.630636, 22.405756],
  3490. [111.630867, 22.402844],
  3491. [111.624919, 22.400038],
  3492. [111.619922, 22.396021],
  3493. [111.616772, 22.390515],
  3494. [111.614233, 22.390994],
  3495. [111.612522, 22.392697],
  3496. [111.607321, 22.393242],
  3497. [111.606669, 22.390555],
  3498. [111.603927, 22.388507],
  3499. [111.601659, 22.385062],
  3500. [111.599676, 22.379236],
  3501. [111.600668, 22.375525],
  3502. [111.596811, 22.371734],
  3503. [111.59415, 22.370338],
  3504. [111.590253, 22.369752],
  3505. [111.586627, 22.371561],
  3506. [111.581671, 22.371947],
  3507. [111.571514, 22.375206],
  3508. [111.566938, 22.37478],
  3509. [111.56205, 22.371003],
  3510. [111.561642, 22.36922],
  3511. [111.556917, 22.368196],
  3512. [111.552585, 22.364724],
  3513. [111.547167, 22.367358],
  3514. [111.542768, 22.36805],
  3515. [111.537825, 22.36358],
  3516. [111.532679, 22.362157],
  3517. [111.531076, 22.358392],
  3518. [111.525278, 22.359975],
  3519. [111.521327, 22.361851],
  3520. [111.519819, 22.365735],
  3521. [111.517022, 22.365296],
  3522. [111.512908, 22.35758],
  3523. [111.512378, 22.352286],
  3524. [111.511183, 22.349598],
  3525. [111.506404, 22.345474],
  3526. [111.50271, 22.343625],
  3527. [111.500863, 22.341656],
  3528. [111.494155, 22.339447],
  3529. [111.492227, 22.333539],
  3530. [111.491073, 22.332369],
  3531. [111.486837, 22.33177],
  3532. [111.484365, 22.334098],
  3533. [111.479585, 22.334151],
  3534. [111.476557, 22.333353],
  3535. [111.474629, 22.33165],
  3536. [111.470393, 22.332488],
  3537. [111.46583, 22.330053],
  3538. [111.46822, 22.326687],
  3539. [111.467894, 22.324678],
  3540. [111.465572, 22.322974],
  3541. [111.462666, 22.316068],
  3542. [111.459367, 22.309747],
  3543. [111.454084, 22.309348],
  3544. [111.454709, 22.307471],
  3545. [111.45919, 22.306327],
  3546. [111.461906, 22.304291],
  3547. [111.463046, 22.302135],
  3548. [111.464785, 22.302188],
  3549. [111.459407, 22.296399],
  3550. [111.459068, 22.29383],
  3551. [111.4601, 22.290596],
  3552. [111.458742, 22.288253],
  3553. [111.458049, 22.282131],
  3554. [111.456515, 22.279522],
  3555. [111.459326, 22.278138],
  3556. [111.459896, 22.275994],
  3557. [111.458715, 22.271828],
  3558. [111.45346, 22.270311],
  3559. [111.44978, 22.271429],
  3560. [111.443384, 22.272187],
  3561. [111.443086, 22.273079],
  3562. [111.433363, 22.275276],
  3563. [111.430009, 22.273851],
  3564. [111.422636, 22.272667],
  3565. [111.418739, 22.269605],
  3566. [111.416417, 22.266211],
  3567. [111.416851, 22.263348],
  3568. [111.408758, 22.258543],
  3569. [111.40607, 22.259381],
  3570. [111.401304, 22.253018],
  3571. [111.396741, 22.251007],
  3572. [111.392654, 22.250528],
  3573. [111.38854, 22.251314],
  3574. [111.388146, 22.247373],
  3575. [111.386218, 22.245762],
  3576. [111.384113, 22.245962]
  3577. ]
  3578. ]
  3579. }
  3580. ],
  3581. 'boundaries': [
  3582. [
  3583. [110.706788, 21.521023],
  3584. [110.693453, 21.513896],
  3585. [110.677742, 21.521398],
  3586. [110.672148, 21.51261],
  3587. [110.681881, 21.507519],
  3588. [110.687935, 21.49144],
  3589. [110.683337, 21.488332],
  3590. [110.665863, 21.497497],
  3591. [110.656973, 21.490904],
  3592. [110.657893, 21.503607],
  3593. [110.645095, 21.501248],
  3594. [110.645478, 21.482918],
  3595. [110.621184, 21.481042],
  3596. [110.609381, 21.498997],
  3597. [110.599035, 21.507304],
  3598. [110.590069, 21.500605],
  3599. [110.577194, 21.499158],
  3600. [110.575201, 21.515772],
  3601. [110.557038, 21.512663],
  3602. [110.54171, 21.493102],
  3603. [110.545466, 21.47922],
  3604. [110.538875, 21.473859],
  3605. [110.532437, 21.480345],
  3606. [110.518183, 21.480184],
  3607. [110.517646, 21.489725],
  3608. [110.508373, 21.490958],
  3609. [110.510442, 21.499587],
  3610. [110.497567, 21.517111],
  3611. [110.485152, 21.513735],
  3612. [110.477718, 21.526221],
  3613. [110.483849, 21.543849],
  3614. [110.475572, 21.554136],
  3615. [110.470361, 21.547546],
  3616. [110.45534, 21.554511],
  3617. [110.450358, 21.550439],
  3618. [110.443768, 21.556386],
  3619. [110.434494, 21.553868],
  3620. [110.422692, 21.562226],
  3621. [110.429666, 21.575725],
  3622. [110.427904, 21.580653],
  3623. [110.439399, 21.581082],
  3624. [110.443154, 21.58692],
  3625. [110.427214, 21.600096],
  3626. [110.417481, 21.598168],
  3627. [110.42024, 21.591312],
  3628. [110.413342, 21.586063],
  3629. [110.406522, 21.60181],
  3630. [110.412653, 21.60438],
  3631. [110.412653, 21.616966],
  3632. [110.405525, 21.61809],
  3633. [110.405295, 21.634636],
  3634. [110.396865, 21.633137],
  3635. [110.407058, 21.648611],
  3636. [110.385753, 21.657552],
  3637. [110.382457, 21.667456],
  3638. [110.412346, 21.675753],
  3639. [110.40974, 21.686619],
  3640. [110.402843, 21.689188],
  3641. [110.396712, 21.673612],
  3642. [110.39242, 21.681588],
  3643. [110.385753, 21.674736],
  3644. [110.367666, 21.683354],
  3645. [110.369889, 21.689349],
  3646. [110.351419, 21.713647],
  3647. [110.368739, 21.721835],
  3648. [110.365367, 21.748],
  3649. [110.375177, 21.760305],
  3650. [110.379162, 21.763675],
  3651. [110.389048, 21.762124],
  3652. [110.391041, 21.776674],
  3653. [110.381078, 21.783361],
  3654. [110.380312, 21.784484],
  3655. [110.388359, 21.789084],
  3656. [110.386749, 21.795556],
  3657. [110.37556, 21.798765],
  3658. [110.377246, 21.806627],
  3659. [110.362225, 21.797642],
  3660. [110.348354, 21.802509],
  3661. [110.350193, 21.809675],
  3662. [110.365137, 21.807055],
  3663. [110.357857, 21.815451],
  3664. [110.348124, 21.809354],
  3665. [110.345901, 21.800851],
  3666. [110.339387, 21.806359],
  3667. [110.342606, 21.837322],
  3668. [110.351572, 21.845663],
  3669. [110.354255, 21.856462],
  3670. [110.350729, 21.863947],
  3671. [110.362532, 21.868224],
  3672. [110.372571, 21.856355],
  3673. [110.387362, 21.852239],
  3674. [110.398398, 21.861755],
  3675. [110.387592, 21.890407],
  3676. [110.396329, 21.90612],
  3677. [110.413726, 21.911304],
  3678. [110.400391, 21.913976],
  3679. [110.413419, 21.915686],
  3680. [110.414799, 21.932732],
  3681. [110.440702, 21.93658],
  3682. [110.442388, 21.940854],
  3683. [110.418477, 21.944381],
  3684. [110.412959, 21.953837],
  3685. [110.400007, 21.955387],
  3686. [110.391117, 21.950258],
  3687. [110.376786, 21.967781],
  3688. [110.352952, 21.976595],
  3689. [110.359926, 21.993901],
  3690. [110.356324, 22.00736],
  3691. [110.363528, 22.005811],
  3692. [110.347741, 22.038972],
  3693. [110.353105, 22.043564],
  3694. [110.355481, 22.061556],
  3695. [110.351726, 22.074421],
  3696. [110.358853, 22.075916],
  3697. [110.359236, 22.084083],
  3698. [110.351266, 22.088993],
  3699. [110.350806, 22.096999],
  3700. [110.365674, 22.098707],
  3701. [110.362915, 22.110288],
  3702. [110.364601, 22.12523],
  3703. [110.360922, 22.132113],
  3704. [110.352186, 22.132487],
  3705. [110.334329, 22.149027],
  3706. [110.326589, 22.152655],
  3707. [110.326052, 22.164445],
  3708. [110.334789, 22.170366],
  3709. [110.337471, 22.184022],
  3710. [110.342529, 22.183435],
  3711. [110.348507, 22.195862],
  3712. [110.375407, 22.166312],
  3713. [110.381078, 22.164232],
  3714. [110.393493, 22.170473],
  3715. [110.390964, 22.179008],
  3716. [110.399318, 22.187382],
  3717. [110.41066, 22.190209],
  3718. [110.409817, 22.203276],
  3719. [110.414569, 22.208555],
  3720. [110.430816, 22.206209],
  3721. [110.453501, 22.192182],
  3722. [110.460245, 22.178581],
  3723. [110.490133, 22.155162],
  3724. [110.483389, 22.150521],
  3725. [110.489444, 22.144599],
  3726. [110.510672, 22.145026],
  3727. [110.529448, 22.154469],
  3728. [110.529295, 22.164392],
  3729. [110.560333, 22.196396],
  3730. [110.585317, 22.185088],
  3731. [110.602484, 22.183382],
  3732. [110.598422, 22.163431],
  3733. [110.606009, 22.155909],
  3734. [110.6208, 22.15783],
  3735. [110.629077, 22.14908],
  3736. [110.653141, 22.159377],
  3737. [110.658123, 22.167539],
  3738. [110.66548, 22.165192],
  3739. [110.670462, 22.17282],
  3740. [110.678892, 22.17266],
  3741. [110.67529, 22.188449],
  3742. [110.664714, 22.203382],
  3743. [110.652835, 22.207702],
  3744. [110.646857, 22.223007],
  3745. [110.653525, 22.238203],
  3746. [110.664637, 22.245348],
  3747. [110.686019, 22.248547],
  3748. [110.694526, 22.258249],
  3749. [110.695445, 22.272323],
  3750. [110.711999, 22.27776],
  3751. [110.720966, 22.294123],
  3752. [110.725334, 22.295615],
  3753. [110.738899, 22.281917],
  3754. [110.758748, 22.274668],
  3755. [110.784498, 22.280798],
  3756. [110.78971, 22.286661],
  3757. [110.785571, 22.294603],
  3758. [110.772619, 22.295562],
  3759. [110.773233, 22.307393],
  3760. [110.760511, 22.324818],
  3761. [110.749398, 22.329774],
  3762. [110.750165, 22.344799],
  3763. [110.741275, 22.362007],
  3764. [110.729396, 22.366375],
  3765. [110.723801, 22.359876],
  3766. [110.711539, 22.369624],
  3767. [110.712382, 22.395457],
  3768. [110.706864, 22.405362],
  3769. [110.713992, 22.417078],
  3770. [110.713302, 22.437471],
  3771. [110.706711, 22.446415],
  3772. [110.693529, 22.448279],
  3773. [110.692686, 22.457755],
  3774. [110.68349, 22.473405],
  3775. [110.688241, 22.477769],
  3776. [110.698358, 22.474469],
  3777. [110.705102, 22.466432],
  3778. [110.725947, 22.461215],
  3779. [110.741351, 22.464302],
  3780. [110.747789, 22.476119],
  3781. [110.739972, 22.488734],
  3782. [110.740432, 22.498845],
  3783. [110.750471, 22.517045],
  3784. [110.760817, 22.516779],
  3785. [110.754303, 22.536838],
  3786. [110.756909, 22.548436],
  3787. [110.748095, 22.554767],
  3788. [110.761507, 22.559607],
  3789. [110.764496, 22.565938],
  3790. [110.760204, 22.580777],
  3791. [110.778674, 22.585405],
  3792. [110.793542, 22.571363],
  3793. [110.799213, 22.556841],
  3794. [110.805804, 22.558916],
  3795. [110.807566, 22.570672],
  3796. [110.81546, 22.578065],
  3797. [110.83324, 22.584926],
  3798. [110.853779, 22.582267],
  3799. [110.861213, 22.587745],
  3800. [110.87769, 22.582692],
  3801. [110.887269, 22.583543],
  3802. [110.897922, 22.591999],
  3803. [110.895853, 22.613537],
  3804. [110.941299, 22.608113],
  3805. [110.957699, 22.616727],
  3806. [110.961761, 22.625766],
  3807. [110.959002, 22.636506],
  3808. [110.977319, 22.641557],
  3809. [110.987358, 22.640228],
  3810. [110.997091, 22.631349],
  3811. [111.010043, 22.644906],
  3812. [111.027976, 22.651551],
  3813. [111.030735, 22.646767],
  3814. [111.055642, 22.648521],
  3815. [111.06208, 22.666169],
  3816. [111.074035, 22.667232],
  3817. [111.089669, 22.694285],
  3818. [111.104767, 22.694869],
  3819. [111.108369, 22.704328],
  3820. [111.123543, 22.701459],
  3821. [111.124539, 22.695826],
  3822. [111.136878, 22.685941],
  3823. [111.137108, 22.674514],
  3824. [111.127911, 22.666169],
  3825. [111.136418, 22.643789],
  3826. [111.143162, 22.638686],
  3827. [111.144235, 22.625713],
  3828. [111.161862, 22.620236],
  3829. [111.174737, 22.605773],
  3830. [111.185849, 22.60439],
  3831. [111.196732, 22.61024],
  3832. [111.215662, 22.594659],
  3833. [111.219187, 22.58583],
  3834. [111.249076, 22.58365],
  3835. [111.25352, 22.589234],
  3836. [111.279271, 22.592053],
  3837. [111.303105, 22.580724],
  3838. [111.303641, 22.569448],
  3839. [111.326633, 22.557267],
  3840. [111.322724, 22.54966],
  3841. [111.293909, 22.547638],
  3842. [111.285172, 22.523856],
  3843. [111.277278, 22.517843],
  3844. [111.272067, 22.506136],
  3845. [111.276972, 22.491927],
  3846. [111.293295, 22.50603],
  3847. [111.329852, 22.516087],
  3848. [111.338588, 22.522951],
  3849. [111.350084, 22.506988],
  3850. [111.373688, 22.516034],
  3851. [111.384647, 22.509808],
  3852. [111.403117, 22.516087],
  3853. [111.413387, 22.512628],
  3854. [111.410628, 22.492033],
  3855. [111.403347, 22.479526],
  3856. [111.408788, 22.475268],
  3857. [111.409631, 22.457116],
  3858. [111.421127, 22.446948],
  3859. [111.417065, 22.431135],
  3860. [111.421817, 22.426662],
  3861. [111.43952, 22.427834],
  3862. [111.446034, 22.442209],
  3863. [111.471325, 22.441996],
  3864. [111.480444, 22.46015],
  3865. [111.47347, 22.474629],
  3866. [111.476919, 22.480164],
  3867. [111.469409, 22.490277],
  3868. [111.486882, 22.505551],
  3869. [111.507804, 22.493949],
  3870. [111.525201, 22.480164],
  3871. [111.545433, 22.499324],
  3872. [111.54459, 22.517364],
  3873. [111.561144, 22.523377],
  3874. [111.559381, 22.528804],
  3875. [111.569344, 22.540722],
  3876. [111.59632, 22.551362],
  3877. [111.60682, 22.54966],
  3878. [111.612031, 22.542584],
  3879. [111.610269, 22.534125],
  3880. [111.618315, 22.533912],
  3881. [111.616093, 22.521408],
  3882. [111.621304, 22.521195],
  3883. [111.616016, 22.508158],
  3884. [111.619618, 22.497302],
  3885. [111.625673, 22.510925],
  3886. [111.633873, 22.503262],
  3887. [111.648128, 22.498207],
  3888. [111.671425, 22.503262],
  3889. [111.678553, 22.496397],
  3890. [111.680315, 22.4824],
  3891. [111.683381, 22.468774],
  3892. [111.679089, 22.45685],
  3893. [111.660083, 22.434915],
  3894. [111.649584, 22.426716],
  3895. [111.630884, 22.402859],
  3896. [111.616783, 22.390504],
  3897. [111.60728, 22.39322],
  3898. [111.600689, 22.375537],
  3899. [111.590266, 22.369784],
  3900. [111.57149, 22.375217],
  3901. [111.55256, 22.364723],
  3902. [111.542751, 22.368079],
  3903. [111.531102, 22.358384],
  3904. [111.517001, 22.365309],
  3905. [111.511176, 22.349594],
  3906. [111.494163, 22.339418],
  3907. [111.492247, 22.333557],
  3908. [111.479601, 22.334143],
  3909. [111.465807, 22.33004],
  3910. [111.468182, 22.326683],
  3911. [111.459369, 22.309738],
  3912. [111.46481, 22.30217],
  3913. [111.459446, 22.296415],
  3914. [111.453468, 22.270297],
  3915. [111.433389, 22.275255],
  3916. [111.42266, 22.272643],
  3917. [111.416835, 22.263367],
  3918. [111.401278, 22.253025],
  3919. [111.388556, 22.251319],
  3920. [111.381275, 22.240869],
  3921. [111.37683, 22.243162],
  3922. [111.360507, 22.233938],
  3923. [111.346099, 22.211488],
  3924. [111.354069, 22.193356],
  3925. [111.348091, 22.181035],
  3926. [111.327169, 22.171326],
  3927. [111.33445, 22.160017],
  3928. [111.331384, 22.142198],
  3929. [111.340657, 22.129445],
  3930. [111.337515, 22.118453],
  3931. [111.32441, 22.113383],
  3932. [111.327169, 22.10303],
  3933. [111.312685, 22.088353],
  3934. [111.316976, 22.082641],
  3935. [111.304561, 22.084403],
  3936. [111.298583, 22.069991],
  3937. [111.300653, 22.064012],
  3938. [111.288467, 22.058299],
  3939. [111.285325, 22.048369],
  3940. [111.295901, 22.03139],
  3941. [111.304638, 22.029948],
  3942. [111.305941, 22.011846],
  3943. [111.287624, 22.000043],
  3944. [111.283333, 21.986797],
  3945. [111.287624, 21.977984],
  3946. [111.283716, 21.971841],
  3947. [111.283409, 21.952181],
  3948. [111.294675, 21.935885],
  3949. [111.287241, 21.924129],
  3950. [111.290077, 21.907991],
  3951. [111.310922, 21.893988],
  3952. [111.320119, 21.897836],
  3953. [111.325177, 21.886986],
  3954. [111.340044, 21.874424],
  3955. [111.362499, 21.877044],
  3956. [111.367864, 21.862557],
  3957. [111.374608, 21.860525],
  3958. [111.40327, 21.862183],
  3959. [111.402887, 21.854858],
  3960. [111.417218, 21.850154],
  3961. [111.423503, 21.81374],
  3962. [111.401508, 21.798337],
  3963. [111.386947, 21.780258],
  3964. [111.374301, 21.774374],
  3965. [111.388786, 21.756239],
  3966. [111.383651, 21.750247],
  3967. [111.381275, 21.734463],
  3968. [111.389859, 21.727132],
  3969. [111.40304, 21.728095],
  3970. [111.431243, 21.71857],
  3971. [111.44067, 21.69347],
  3972. [111.428944, 21.676984],
  3973. [111.43155, 21.670293],
  3974. [111.42289, 21.661353],
  3975. [111.421587, 21.648772],
  3976. [111.416299, 21.646898],
  3977. [111.415456, 21.632762],
  3978. [111.42059, 21.617394],
  3979. [111.427718, 21.614234],
  3980. [111.416452, 21.598061],
  3981. [111.423809, 21.591794],
  3982. [111.418291, 21.578671],
  3983. [111.42151, 21.573743],
  3984. [111.430783, 21.57985],
  3985. [111.428944, 21.570315],
  3986. [111.439367, 21.575725],
  3987. [111.44703, 21.570904],
  3988. [111.458909, 21.534151],
  3989. [111.459139, 21.524935],
  3990. [111.452395, 21.515182],
  3991. [111.395837, 21.501731],
  3992. [111.382502, 21.495514],
  3993. [111.353149, 21.464317],
  3994. [111.329852, 21.446787],
  3995. [111.307627, 21.433811],
  3996. [111.301189, 21.433704],
  3997. [111.285862, 21.419012],
  3998. [111.263483, 21.412684],
  3999. [111.257352, 21.415151],
  4000. [111.257736, 21.436546],
  4001. [111.250532, 21.449574],
  4002. [111.253597, 21.452577],
  4003. [111.273829, 21.443891],
  4004. [111.2818, 21.446518],
  4005. [111.281493, 21.458152],
  4006. [111.295595, 21.476271],
  4007. [111.290536, 21.484204],
  4008. [111.276895, 21.484955],
  4009. [111.251605, 21.48056],
  4010. [111.239113, 21.471769],
  4011. [111.211983, 21.469035],
  4012. [111.171442, 21.458474],
  4013. [111.146611, 21.459225],
  4014. [111.116646, 21.453167],
  4015. [111.108599, 21.455472],
  4016. [111.076564, 21.45247],
  4017. [111.061313, 21.449199],
  4018. [111.034797, 21.438744],
  4019. [111.00077, 21.417993],
  4020. [110.977012, 21.406785],
  4021. [110.965363, 21.433329],
  4022. [110.950112, 21.443731],
  4023. [110.938233, 21.441854],
  4024. [110.929037, 21.447912],
  4025. [110.927121, 21.441586],
  4026. [110.910337, 21.439817],
  4027. [110.901907, 21.425768],
  4028. [110.893554, 21.436653],
  4029. [110.880449, 21.444856],
  4030. [110.895853, 21.451236],
  4031. [110.895316, 21.460833],
  4032. [110.883897, 21.469678],
  4033. [110.870409, 21.471125],
  4034. [110.877843, 21.476754],
  4035. [110.874471, 21.484848],
  4036. [110.876004, 21.49814],
  4037. [110.867344, 21.506125],
  4038. [110.857841, 21.496103],
  4039. [110.840674, 21.493638],
  4040. [110.856231, 21.503714],
  4041. [110.848721, 21.517058],
  4042. [110.848031, 21.527668],
  4043. [110.828872, 21.542671],
  4044. [110.822127, 21.541974],
  4045. [110.818679, 21.551672],
  4046. [110.826342, 21.559815],
  4047. [110.817759, 21.569083],
  4048. [110.813697, 21.583064],
  4049. [110.795611, 21.579582],
  4050. [110.793618, 21.596025],
  4051. [110.79883, 21.619857],
  4052. [110.798216, 21.631852],
  4053. [110.786874, 21.633298],
  4054. [110.771853, 21.647808],
  4055. [110.761507, 21.647969],
  4056. [110.75461, 21.634797],
  4057. [110.749858, 21.635922],
  4058. [110.736217, 21.623874],
  4059. [110.73683, 21.609522],
  4060. [110.743344, 21.606201],
  4061. [110.747176, 21.588741],
  4062. [110.736523, 21.58542],
  4063. [110.734301, 21.575564],
  4064. [110.727403, 21.573636],
  4065. [110.725257, 21.547761],
  4066. [110.735987, 21.533348],
  4067. [110.72817, 21.531097],
  4068. [110.729396, 21.523863],
  4069. [110.714758, 21.526811],
  4070. [110.706788, 21.521023]
  4071. ],
  4072. [
  4073. [110.508066, 21.490583],
  4074. [110.514044, 21.480774],
  4075. [110.506687, 21.472251],
  4076. [110.494118, 21.474234],
  4077. [110.490823, 21.482811],
  4078. [110.509063, 21.479273],
  4079. [110.508066, 21.490583]
  4080. ],
  4081. [
  4082. [110.379162, 21.763675],
  4083. [110.375177, 21.760305],
  4084. [110.370042, 21.770148],
  4085. [110.373184, 21.784163],
  4086. [110.380312, 21.784484],
  4087. [110.381078, 21.783361],
  4088. [110.379162, 21.763675]
  4089. ],
  4090. [
  4091. [110.717364, 21.519684],
  4092. [110.730775, 21.501088],
  4093. [110.723342, 21.503553],
  4094. [110.708474, 21.500927],
  4095. [110.713532, 21.511752],
  4096. [110.708014, 21.519362],
  4097. [110.717364, 21.519684]
  4098. ],
  4099. [
  4100. [111.1847, 21.37101],
  4101. [111.1847, 21.381953],
  4102. [111.195659, 21.391017],
  4103. [111.194816, 21.380075],
  4104. [111.1847, 21.37101]
  4105. ],
  4106. [
  4107. [110.484002, 21.447108],
  4108. [110.484539, 21.456705],
  4109. [110.49044, 21.456866],
  4110. [110.484002, 21.447108]
  4111. ]
  4112. ]
  4113. };
  4114. const getImageUrl = (name) => {
  4115. return new URL(`../../../assets/images/dotIcon/${name}`, import.meta.url).href;
  4116. };
  4117. export const iconList = {
  4118. '1': {
  4119. image: getImageUrl('1_expert.png'),
  4120. imageHover: getImageUrl('1_expert_hover.png'),
  4121. size: [60, 60]
  4122. },
  4123. '2': {
  4124. image: getImageUrl('2_rescue_supplies.png'),
  4125. imageHover: getImageUrl('2_rescue_supplies_hover.png'),
  4126. size: [60, 60]
  4127. },
  4128. '3': {
  4129. image: getImageUrl('3_emergency_shelter.png'),
  4130. imageHover: getImageUrl('3_emergency_shelter_hover.png'),
  4131. size: [60, 60]
  4132. },
  4133. '4': {
  4134. image: getImageUrl('4_easy_flood_point.png'),
  4135. imageHover: getImageUrl('4_easy_flood_point_hover.png'),
  4136. size: [60, 60]
  4137. },
  4138. 'common': {
  4139. image: 'https://webapi.amap.com/theme/v1.3/markers/n/mark_b.png',
  4140. imageHover: 'https://webapi.amap.com/theme/v1.3/markers/n/mark_b.png',
  4141. size: [19, 31]
  4142. },
  4143. '5': {
  4144. image: getImageUrl('5_school.png'),
  4145. imageHover: getImageUrl('5_school_hover.png'),
  4146. size: [60, 60]
  4147. },
  4148. '6': {
  4149. image: getImageUrl('6_hospital.png'),
  4150. imageHover: getImageUrl('6_hospital_hover.png'),
  4151. size: [60, 60]
  4152. },
  4153. '7': {
  4154. image: getImageUrl('7_gas_station.png'),
  4155. imageHover: getImageUrl('7_gas_station_hover.png'),
  4156. size: [60, 60]
  4157. },
  4158. '8': {
  4159. image: getImageUrl('8_non_coal_mine.png'),
  4160. imageHover: getImageUrl('8_non_coal_mine_hover.png'),
  4161. size: [60, 60]
  4162. },
  4163. '9': {
  4164. image: getImageUrl('9_hazardous_chemical_enterprises.png'),
  4165. imageHover: getImageUrl('9_hazardous_chemical_enterprises_hover.png'),
  4166. size: [60, 60]
  4167. },
  4168. '10': {
  4169. image: getImageUrl('10_ship_dynamics.png'),
  4170. imageHover: getImageUrl('10_ship_dynamics_hover.png'),
  4171. size: [60, 60]
  4172. },
  4173. '11': {
  4174. image: getImageUrl('9_hazardous_chemical_enterprises.png'),
  4175. imageHover: getImageUrl('9_hazardous_chemical_enterprises_hover.png'),
  4176. size: [60, 60]
  4177. },
  4178. '12': {
  4179. image: getImageUrl('9_hazardous_chemical_enterprises.png'),
  4180. imageHover: getImageUrl('9_hazardous_chemical_enterprises_hover.png'),
  4181. size: [60, 60]
  4182. },
  4183. '13': {
  4184. image: getImageUrl('9_hazardous_chemical_enterprises.png'),
  4185. imageHover: getImageUrl('9_hazardous_chemical_enterprises_hover.png'),
  4186. size: [60, 60]
  4187. },
  4188. '14': {
  4189. image: getImageUrl('9_hazardous_chemical_enterprises.png'),
  4190. imageHover: getImageUrl('9_hazardous_chemical_enterprises_hover.png'),
  4191. size: [60, 60]
  4192. },
  4193. '15': {
  4194. image: getImageUrl('15_UAV.png'),
  4195. imageHover: getImageUrl('15_UAV_hover.png'),
  4196. size: [60, 60]
  4197. },
  4198. '16': {
  4199. image: getImageUrl('16_rainbow.png'),
  4200. imageHover: getImageUrl('16_rainbow_hover.png'),
  4201. size: [60, 60]
  4202. },
  4203. '17': {
  4204. image: getImageUrl('17_midmapdzzh.png'),
  4205. imageHover: getImageUrl('17_midmapdzzh_hover.png'),
  4206. size: [60, 60]
  4207. },
  4208. '18': {
  4209. image: getImageUrl('18_miningoperations.png'),
  4210. imageHover: getImageUrl('18_miningoperations_hover.png'),
  4211. size: [60, 60]
  4212. },
  4213. '19': {
  4214. image: getImageUrl('19_commercialtrade.png'),
  4215. imageHover: getImageUrl('19_commercialtrade_hover.png'),
  4216. size: [60, 60]
  4217. },
  4218. '20': {
  4219. image: getImageUrl('20_meteorological_disaster.png'),
  4220. imageHover: getImageUrl('20_meteorological_disaster_hover.png'),
  4221. size: [60, 60]
  4222. },
  4223. '21': {
  4224. image: getImageUrl('21_buildingproject.png'),
  4225. imageHover: getImageUrl('21_buildingproject_hover.png'),
  4226. size: [60, 60]
  4227. },
  4228. '22': {
  4229. image: getImageUrl('22_storage_tank.png'),
  4230. imageHover: getImageUrl('22_storage_tank_hover.png'),
  4231. size: [60, 60]
  4232. },
  4233. '23': {
  4234. image: getImageUrl('22_storage_tank.png'),
  4235. imageHover: getImageUrl('22_storage_tank_hover.png'),
  4236. size: [60, 60]
  4237. },
  4238. '24': {
  4239. image: getImageUrl('24_stationinfo.png'),
  4240. imageHover: getImageUrl('24_stationinfo_hover.png'),
  4241. size: [60, 60]
  4242. },
  4243. '25': {
  4244. image: getImageUrl('25_yardsites.png'),
  4245. imageHover: getImageUrl('25_yardsites_hover.png'),
  4246. size: [60, 60]
  4247. },
  4248. '26': {
  4249. image: getImageUrl('26_tourist_destinations.png'),
  4250. imageHover: getImageUrl('26_tourist_destinations_hover.png'),
  4251. size: [60, 60]
  4252. },
  4253. '27': {
  4254. image: getImageUrl('27_constructionsites.png'),
  4255. imageHover: getImageUrl('27_constructionsites_hover.png'),
  4256. size: [60, 60]
  4257. },
  4258. '28': {
  4259. image: getImageUrl('28_emergencytransportresources.png'),
  4260. imageHover: getImageUrl('28_emergencytransportresources_hover.png'),
  4261. size: [60, 60]
  4262. },
  4263. '29': {
  4264. image: getImageUrl('29_emergencyofficer.png'),
  4265. imageHover: getImageUrl('29_emergencyofficer_hover.png'),
  4266. size: [60, 60]
  4267. },
  4268. '30': {
  4269. image: getImageUrl('31_lakes_video.png'),
  4270. imageHover: getImageUrl('31_lakes_video_hover.png'),
  4271. size: [40, 40]
  4272. },
  4273. '31': {
  4274. image: getImageUrl('31_lakes_video.png'),
  4275. imageHover: getImageUrl('31_lakes_video_hover.png'),
  4276. size: [40, 40]
  4277. },
  4278. '32': {
  4279. image: getImageUrl('31_lakes_video.png'),
  4280. imageHover: getImageUrl('31_lakes_video_hover.png'),
  4281. size: [40, 40]
  4282. },
  4283. '33': {
  4284. image: getImageUrl('31_lakes_video.png'),
  4285. imageHover: getImageUrl('31_lakes_video_hover.png'),
  4286. size: [40, 40]
  4287. },
  4288. '34': {
  4289. image: getImageUrl('31_lakes_video.png'),
  4290. imageHover: getImageUrl('31_lakes_video_hover.png'),
  4291. size: [40, 40]
  4292. },
  4293. '35': {
  4294. image: getImageUrl('35_rescueStation.png'),
  4295. imageHover: getImageUrl('35_rescueStation_hover.png'),
  4296. size: [60, 60]
  4297. },
  4298. '37': {
  4299. image: getImageUrl('37_civilAirDefenseEngineering.png'),
  4300. imageHover: getImageUrl('37_civilAirDefenseEngineering_hover.png'),
  4301. size: [60, 60]
  4302. },
  4303. '38': {
  4304. image: getImageUrl('38_waterConservancyProject.png'),
  4305. imageHover: getImageUrl('38_waterConservancyProject_hover.png'),
  4306. size: [60, 60]
  4307. },
  4308. '39': {
  4309. image: getImageUrl('39_rescueStation.png'),
  4310. imageHover: getImageUrl('39_rescueStation_hover.png'),
  4311. size: [60, 60]
  4312. },
  4313. '41': {
  4314. image: getImageUrl('41_rescue_team.png'),
  4315. imageHover: getImageUrl('41_rescue_team_hover.png'),
  4316. size: [55, 60]
  4317. },
  4318. '42': {
  4319. image: getImageUrl('42_transportation_video.png'),
  4320. imageHover: getImageUrl('42_transportation_video_hover.png'),
  4321. size: [40, 40]
  4322. },
  4323. '43': {
  4324. image: getImageUrl('43_vehicle.png'),
  4325. imageHover: getImageUrl('43_vehicle_hover.png'),
  4326. size: [40, 44]
  4327. }
  4328. };
  4329. export const pointDetailTemplate = {
  4330. '1': {
  4331. name: '姓名',
  4332. area: '所属区域',
  4333. company: '单位',
  4334. official: '职位',
  4335. phone: '联系电话',
  4336. type: '专家类型'
  4337. },
  4338. '2': {
  4339. warehouse_code: '仓库编码',
  4340. warehouse_name: '仓库名称',
  4341. area: '所在区县',
  4342. management_unit: '日常管理单位',
  4343. supervisory_department: '主管部门',
  4344. data_source: '数据来源',
  4345. longitude: '经度',
  4346. latitude: '纬度',
  4347. update_time: '更新时间'
  4348. },
  4349. '3': {
  4350. area: '所在区县',
  4351. shelter_name: '应急避难场所全称',
  4352. addr: '应急避难场所地址',
  4353. emergency_type: '按突发事件类型分类',
  4354. shelter_type: '避难种类',
  4355. evacuation_time: '按避难时长设计分类',
  4356. space_type: '按空间类型分类',
  4357. according_type: '按总体功能定位分类',
  4358. construction_type: '应急避难场所建设类型',
  4359. total_area: '应急避难场所占地总面积(平方米)',
  4360. indoor_area: '应急避难场所室内面积(平方米)',
  4361. persons: '避难场所容纳人数 (人)',
  4362. material_reserves: '物资储备',
  4363. facility: '应急设施',
  4364. depart: '认定部门',
  4365. unit: '主管单位',
  4366. construction_unit: '建设单位',
  4367. construction_time: '建成(或挂牌)时间',
  4368. plan: '规划情况',
  4369. total_investment: '建设总投资(万元)',
  4370. standard_name: '建设标准名称',
  4371. admin_personnel: '日常维护或管理人员数量',
  4372. management_personnel: '专职维护或管理人员数量',
  4373. operation_units: '产权/运维单位',
  4374. operation: '运维投入',
  4375. channel: '运维投入渠道'
  4376. },
  4377. '4': {
  4378. flood_name: '易涝点名称',
  4379. area: '所在区县',
  4380. sitution: '情况',
  4381. unit: '单位'
  4382. },
  4383. '5': {
  4384. xxjj: '学校简介',
  4385. ywjyxxlx: '义务教育学校类型',
  4386. class_num: '班级数',
  4387. school_type: '学校性质',
  4388. school_name: '学校名称',
  4389. area: '所在区县',
  4390. th_num: '教师数',
  4391. stu_num: '学生数',
  4392. school_area: '学校地址',
  4393. jylx: '教育类型'
  4394. },
  4395. '6': {
  4396. hospital_name: '医疗机构名称',
  4397. area: '所在区县',
  4398. clsj: '成立时间',
  4399. gzry: '工作人员',
  4400. jgjj: '机构简介',
  4401. jyxz: '经营性质',
  4402. ybdd: '医院传真',
  4403. yljgdz: '医疗机构地址',
  4404. yljglb: '医疗机构类别',
  4405. yydj: '医院等级',
  4406. yylx: '医院类型'
  4407. },
  4408. '7': {
  4409. province: '省',
  4410. city: '地市',
  4411. area: '区县',
  4412. company_name: '企业名称',
  4413. company_code: '企业编码',
  4414. company_type: '企业类型',
  4415. is_import: '是否涉及进口',
  4416. is_manage: '是否涉及经营',
  4417. registration_date: '工商注册时间',
  4418. registration_address: '工商注册地址',
  4419. credit_code: '统一社会信用代码',
  4420. industry_classification: '行业分类',
  4421. production_scale: '主要产品及生产规模',
  4422. emergency_contact_number: '安全值班电话',
  4423. emergency_response_hotline: '应急咨询服务电话',
  4424. qyagjgfzr_phone: '企业安管机构负责人手机号',
  4425. qyfgaqfzr_phone: '企业分管安全负责人手机号',
  4426. xkzbh: '许可证编号',
  4427. sfqdwxhxpjyxkz: '是否取得危险化学品经营许可证',
  4428. factory_address: '厂区地址',
  4429. number_of_employees: '职工人数',
  4430. deregistration_date: '注销时间',
  4431. scale_of_enterprise: '企业规模',
  4432. chemical_industry_classification: '化工行业分类',
  4433. safe_level: '安全标准化等级',
  4434. longitude: '经度',
  4435. latitude: '纬度',
  4436. formatted_address: '地址'
  4437. },
  4438. '8': {
  4439. company_name: '矿山企业名称',
  4440. province: '省',
  4441. city: '市',
  4442. area: '县',
  4443. production_status: '生产状态',
  4444. primary_mineral_types: '主要矿种',
  4445. mining_method: '开采方式',
  4446. development_method: '开拓方式',
  4447. scale: '矿山规模',
  4448. name: '姓名',
  4449. phone: '联系方式',
  4450. longitude: '经度',
  4451. latitude: '纬度',
  4452. formatted_address: '地址'
  4453. },
  4454. '9': {
  4455. province: '省',
  4456. id: 0,
  4457. city: '地市',
  4458. area: '区县',
  4459. company_name: '企业名称',
  4460. company_code: '企业编码',
  4461. company_type: '企业类型',
  4462. is_import: '是否涉及进口',
  4463. is_manage: '是否涉及经营',
  4464. registration_date: '工商注册时间',
  4465. registration_address: '工商注册地址',
  4466. credit_code: '统一社会信用代码',
  4467. industry_classification: '行业分类',
  4468. production_scale: '主要产品及生产规模',
  4469. chemical_park_location: '所在化工园区',
  4470. emergency_contact_number: '安全值班电话',
  4471. emergency_response_hotline: '应急咨询服务电话',
  4472. qyagjgfzr_phone: '企业安管机构负责人手机号',
  4473. qyfgaqfzr_phone: '企业分管安全负责人手机号',
  4474. sfqdwxhxpaqscxkz: '是否取得危险化学品安全生产许可证',
  4475. xkzbh: '许可证编号',
  4476. sfqdwxhxpjyxkz: '是否取得危险化学品经营许可证',
  4477. sfqdwxhxpsyxkz: '是否取得危险化学品使用许可证',
  4478. factory_address: '厂区地址',
  4479. hazard_source: '重大危险源',
  4480. hazardous_chemical_process: '危险化工工艺',
  4481. issuance_date: '发证日期',
  4482. certificate_expiry_date: '证书有效期',
  4483. company_registration_number: '企业登记证编码',
  4484. number_of_employees: '职工人数',
  4485. deregistration_date: '注销时间',
  4486. scale_of_enterprise: '企业规模',
  4487. chemical_industry_classification: '化工行业分类',
  4488. safe_level: '安全标准化等级',
  4489. priority: '重点行业',
  4490. longitude: '经度',
  4491. latitude: '纬度',
  4492. formatted_address: '地址'
  4493. },
  4494. '10': {
  4495. area_code: '区域代码',
  4496. area_Name: '区县',
  4497. course: '航线',
  4498. latitude: '经度',
  4499. longitude: '纬度',
  4500. mobile_phone: '联系方式',
  4501. ship_code: '渔船编号',
  4502. ship_id: '渔船编号',
  4503. ship_name: '渔船名称',
  4504. ship_owner: '渔船拥有者',
  4505. ship_type: '渔船类型',
  4506. speed: '速度',
  4507. trueheading: '真实航向',
  4508. alarm_type: '告警类型'
  4509. },
  4510. '11': {
  4511. province: '省',
  4512. id: '编号',
  4513. city: '地市',
  4514. area: '区县',
  4515. company_name: '企业名称',
  4516. company_code: '企业编码',
  4517. company_type: '企业类型',
  4518. is_import: '是否涉及进口',
  4519. is_manage: '是否涉及经营',
  4520. registration_date: '工商注册时间',
  4521. registration_address: '工商注册地址',
  4522. credit_code: '统一社会信用代码',
  4523. industry_classification: '行业分类',
  4524. production_scale: '主要产品及生产规模',
  4525. chemical_park_location: '所在化工园区',
  4526. emergency_contact_number: '安全值班电话',
  4527. emergency_response_hotline: '应急咨询服务电话',
  4528. qyagjgfzr_phone: '企业安管机构负责人手机号',
  4529. qyfgaqfzr_phone: '企业分管安全负责人手机号',
  4530. sfqdwxhxpaqscxkz: '是否取得危险化学品安全生产许可证',
  4531. xkzbh: '许可证编号',
  4532. sfqdwxhxpjyxkz: '是否取得危险化学品经营许可证',
  4533. sfqdwxhxpsyxkz: '是否取得危险化学品使用许可证',
  4534. factory_address: '厂区地址',
  4535. hazard_source: '重大危险源',
  4536. hazardous_chemical_process: '危险化工工艺',
  4537. issuance_date: '发证日期',
  4538. certificate_expiry_date: '证书有效期',
  4539. company_registration_number: '企业登记证编码',
  4540. number_of_employees: '职工人数',
  4541. deregistration_date: '注销时间',
  4542. scale_of_enterprise: '企业规模',
  4543. chemical_industry_classification: '化工行业分类',
  4544. safe_level: '安全标准化等级',
  4545. priority: '重点行业',
  4546. longitude: '经度',
  4547. latitude: '纬度',
  4548. formatted_address: ''
  4549. },
  4550. '12': {
  4551. province: '省',
  4552. id: '编号',
  4553. city: '地市',
  4554. area: '区县',
  4555. company_name: '企业名称',
  4556. company_code: '企业编码',
  4557. company_type: '企业类型',
  4558. is_import: '是否涉及进口',
  4559. is_manage: '是否涉及经营',
  4560. registration_date: '工商注册时间',
  4561. registration_address: '工商注册地址',
  4562. credit_code: '统一社会信用代码',
  4563. industry_classification: '行业分类',
  4564. production_scale: '主要产品及生产规模',
  4565. chemical_park_location: '所在化工园区',
  4566. emergency_contact_number: '安全值班电话',
  4567. emergency_response_hotline: '应急咨询服务电话',
  4568. qyagjgfzr_phone: '企业安管机构负责人手机号',
  4569. qyfgaqfzr_phone: '企业分管安全负责人手机号',
  4570. sfqdwxhxpaqscxkz: '是否取得危险化学品安全生产许可证',
  4571. xkzbh: '许可证编号',
  4572. sfqdwxhxpjyxkz: '是否取得危险化学品经营许可证',
  4573. sfqdwxhxpsyxkz: '是否取得危险化学品使用许可证',
  4574. factory_address: '厂区地址',
  4575. hazard_source: '重大危险源',
  4576. hazardous_chemical_process: '危险化工工艺',
  4577. issuance_date: '发证日期',
  4578. certificate_expiry_date: '证书有效期',
  4579. company_registration_number: '企业登记证编码',
  4580. number_of_employees: '职工人数',
  4581. deregistration_date: '注销时间',
  4582. scale_of_enterprise: '企业规模',
  4583. chemical_industry_classification: '化工行业分类',
  4584. safe_level: '安全标准化等级',
  4585. priority: '重点行业',
  4586. longitude: '经度',
  4587. latitude: '纬度',
  4588. formatted_address: ''
  4589. },
  4590. '13': {
  4591. province: '省',
  4592. id: '编号',
  4593. city: '地市',
  4594. area: '区县',
  4595. company_name: '企业名称',
  4596. company_code: '企业编码',
  4597. company_type: '企业类型',
  4598. is_import: '是否涉及进口',
  4599. is_manage: '是否涉及经营',
  4600. registration_date: '工商注册时间',
  4601. registration_address: '工商注册地址',
  4602. credit_code: '统一社会信用代码',
  4603. industry_classification: '行业分类',
  4604. production_scale: '主要产品及生产规模',
  4605. chemical_park_location: '所在化工园区',
  4606. emergency_contact_number: '安全值班电话',
  4607. emergency_response_hotline: '应急咨询服务电话',
  4608. qyagjgfzr_phone: '企业安管机构负责人手机号',
  4609. qyfgaqfzr_phone: '企业分管安全负责人手机号',
  4610. sfqdwxhxpaqscxkz: '是否取得危险化学品安全生产许可证',
  4611. xkzbh: '许可证编号',
  4612. sfqdwxhxpjyxkz: '是否取得危险化学品经营许可证',
  4613. sfqdwxhxpsyxkz: '是否取得危险化学品使用许可证',
  4614. factory_address: '厂区地址',
  4615. hazard_source: '重大危险源',
  4616. hazardous_chemical_process: '危险化工工艺',
  4617. issuance_date: '发证日期',
  4618. certificate_expiry_date: '证书有效期',
  4619. company_registration_number: '企业登记证编码',
  4620. number_of_employees: '职工人数',
  4621. deregistration_date: '注销时间',
  4622. scale_of_enterprise: '企业规模',
  4623. chemical_industry_classification: '化工行业分类',
  4624. safe_level: '安全标准化等级',
  4625. priority: '重点行业',
  4626. longitude: '经度',
  4627. latitude: '纬度',
  4628. formatted_address: ''
  4629. },
  4630. '14': {
  4631. province: '省',
  4632. id: '编号',
  4633. city: '地市',
  4634. area: '区县',
  4635. company_name: '企业名称',
  4636. company_code: '企业编码',
  4637. company_type: '企业类型',
  4638. is_import: '是否涉及进口',
  4639. is_manage: '是否涉及经营',
  4640. registration_date: '工商注册时间',
  4641. registration_address: '工商注册地址',
  4642. credit_code: '统一社会信用代码',
  4643. industry_classification: '行业分类',
  4644. production_scale: '主要产品及生产规模',
  4645. chemical_park_location: '所在化工园区',
  4646. emergency_contact_number: '安全值班电话',
  4647. emergency_response_hotline: '应急咨询服务电话',
  4648. qyagjgfzr_phone: '企业安管机构负责人手机号',
  4649. qyfgaqfzr_phone: '企业分管安全负责人手机号',
  4650. sfqdwxhxpaqscxkz: '是否取得危险化学品安全生产许可证',
  4651. xkzbh: '许可证编号',
  4652. sfqdwxhxpjyxkz: '是否取得危险化学品经营许可证',
  4653. sfqdwxhxpsyxkz: '是否取得危险化学品使用许可证',
  4654. factory_address: '厂区地址',
  4655. hazard_source: '重大危险源',
  4656. hazardous_chemical_process: '危险化工工艺',
  4657. issuance_date: '发证日期',
  4658. certificate_expiry_date: '证书有效期',
  4659. company_registration_number: '企业登记证编码',
  4660. number_of_employees: '职工人数',
  4661. deregistration_date: '注销时间',
  4662. scale_of_enterprise: '企业规模',
  4663. chemical_industry_classification: '化工行业分类',
  4664. safe_level: '安全标准化等级',
  4665. priority: '重点行业',
  4666. longitude: '经度',
  4667. latitude: '纬度',
  4668. formatted_address: ''
  4669. },
  4670. '15': {
  4671. drone_name: '无人机名称',
  4672. organization: '所属单位',
  4673. model_number: '型号',
  4674. drone_contact: '无人机联系人',
  4675. information: '联系方式',
  4676. construction_model: '建设模式',
  4677. response_time: '调度响应时间',
  4678. address: '常驻地址'
  4679. },
  4680. '16': {
  4681. id: '编号',
  4682. name: '名称',
  4683. location: '位置',
  4684. district: '所属区县',
  4685. longitude: '经度',
  4686. latitude: '纬度'
  4687. },
  4688. '17': {
  4689. address: '隐患点位置',
  4690. type: '灾害类型',
  4691. area: '区县',
  4692. longitude: '经度',
  4693. latitude: '纬度',
  4694. model: '灾害体规模',
  4695. stable: '稳定性',
  4696. damage: '危害性',
  4697. person: '威胁人数',
  4698. economic: '潜在经济损失万元',
  4699. name: '监测人姓名',
  4700. phone: '监测人电话',
  4701. remark: '备注'
  4702. },
  4703. '18': {
  4704. excavation_sid: '采掘施工',
  4705. excavation_company_name: '采掘施工企业名称',
  4706. geological_survey_address: '地质勘探单位地址',
  4707. contact_phone: '联系电话',
  4708. business_license_authority: '事业单位登记或营业执照发证机关',
  4709. registration_number: '注册号',
  4710. business_license_validity: '营业执照有效期',
  4711. construction_authority: '矿山工程施工资质发证机关',
  4712. construction_certificate_number: '矿山工程施工资质证书号',
  4713. construction_validity: '矿山工程施工资质有效期',
  4714. safety_authority_main: '主要负责人安全资格证书发证机关',
  4715. safety_certificate_main_number: '主要负责人安全资格证书号',
  4716. safety_validity_main: '主要负责人安全资格证书发证机关',
  4717. safety_authority_project: '项目负责人安全资格证书发证机关',
  4718. safety_certificate_project_number: '项目负责人安全资格证书号',
  4719. safety_validity_project: '项目负责人安全资格证书有效期',
  4720. explosive_license_authority: '爆破作业单位许可证发证机关',
  4721. explosive_license_number: '爆破作业单位许可证证书号',
  4722. explosive_license_validity: '爆破作业单位许可证有效期',
  4723. construction_scope: '矿山工程施工资质范围',
  4724. qualification_level: '资质等级',
  4725. mine_name: '矿山(项目)名称',
  4726. mine_address: '矿山(项目)地址',
  4727. area: '区县',
  4728. longitude: '经度',
  4729. latitude: '纬度',
  4730. safety_license_authority: '安全生产许可证或建设项目审批机关',
  4731. safety_certificate_number: '证书号或批文号',
  4732. safety_license_validity: '安全生产许可证有效期',
  4733. mine_safety_authority_main: '矿山主要负责人安全资格证书发证机关',
  4734. mine_safety_certificate_main_number: '矿山主要负责人安全资格证书号',
  4735. mine_safety_validity_main: '矿山主要负责人安全资格证书有效期',
  4736. mine_contact_person: '矿山联系人',
  4737. mine_contact_phone: '矿山联系电话'
  4738. },
  4739. '20': {
  4740. unit_name: '单位名称',
  4741. type: '单位类型',
  4742. area: '所属区县',
  4743. location: '详细地址',
  4744. longitude: '经度',
  4745. latitude: '纬度'
  4746. },
  4747. '21': {
  4748. prjcode: '项目编号',
  4749. prjname: '项目名称',
  4750. prjnum: '投资项目在线审批监管平台统一项目代码',
  4751. letternum: '立项文号',
  4752. prjlevel: '立项级别',
  4753. issueby: '立项批复机关',
  4754. dtissue: '立项批复时间',
  4755. prjtypename: '项目类型',
  4756. cityid: '项目所在地区编码(地市)',
  4757. cityname: '项目所在地区名称(地市)',
  4758. countyid: '项目所在地区编码(县区)',
  4759. countyname: '项目所在地区名称(县区)',
  4760. address: '项目地址',
  4761. longitude: '经度',
  4762. latitude: '纬度',
  4763. prjsizedes: '建设规模',
  4764. allinvest: '总投资(万元)',
  4765. allarea: '总面积(平方米)',
  4766. alllength: '总长度(米)',
  4767. allspan: '总跨度(米)',
  4768. prjpropertyname: '建设性质',
  4769. prjusefor: '工程用途',
  4770. dtplans: '计划开工日期',
  4771. dtplane: '计划竣工日期',
  4772. ownername: '建设单位',
  4773. ownerid: '建设单位统一信用代码',
  4774. zjlygjzfczzjtz: '资金来源-各级政府财政资金投资',
  4775. zjlygyqyzjtz: '资金来源-国有企业资金投资',
  4776. zjlygjrz: '资金来源-国家融资',
  4777. zjlysygjzzhzwgzfzj: '资金来源-使用国际组织或外国',
  4778. zjlyjtjjzztz: '资金来源-集体经济组织投资',
  4779. zjlywstz: '资金来源-外商(国)投资',
  4780. zjlyggttz: '资金来源-港澳台投资',
  4781. zjlysytz: '资金来源-私(民)营投资',
  4782. zjlyqtzjly: '资金来源-其他资金来源'
  4783. },
  4784. '22': {
  4785. warehouseName: '储罐名称',
  4786. warehouseType: '储罐类型编码',
  4787. reserve: '储量',
  4788. location: '所在厂区位置',
  4789. area: '区县',
  4790. longitude: '经度',
  4791. latitude: '纬度',
  4792. uniteCode: '统一社会信用代码',
  4793. warehouseMedium: '化学品名称'
  4794. },
  4795. '23': {
  4796. sourceName: '重大危险源名称',
  4797. useTime: '投用时间',
  4798. chemicalPark: '化工业园区',
  4799. controlMethod: '厂区边界500米内人数',
  4800. protectTarget: '重点防护目标',
  4801. accident: '近三年事故情况描述',
  4802. powerTreeCodes: '地市树编码',
  4803. uniteCode: '统一社会信用代码',
  4804. device: '设施及主要装置',
  4805. dangerGrade: '重大危险源级别',
  4806. address: '详细地址',
  4807. rvalue: 'R值',
  4808. area: '区县',
  4809. longitude: '经度',
  4810. latitude: '纬度'
  4811. },
  4812. '24': {
  4813. stationcode: '客运站代码',
  4814. stationstandardcode: '客运站部标代码',
  4815. stationname: '客运站名称',
  4816. stationenglishname: '客运站英文名称',
  4817. stationabb: '客运站简称',
  4818. stationalternativename: '客运站别称',
  4819. ownerunitcode: '组织机构代码',
  4820. ownerunitname: '业主单位名称',
  4821. businessoperatorsencode: '经营业户代码',
  4822. businessoperators: '经营业户名称',
  4823. operationpermitword: '经营许可证字',
  4824. operationpermitnum: '经营许可证号',
  4825. operationstatus: '经营状态',
  4826. contactperson: '联系人',
  4827. contactphonenum: '联系电话',
  4828. stationtype: '客运站类别',
  4829. stationgrade: '客运站级别',
  4830. stationgradeevaluatedate: '站级评定日期',
  4831. districtcode: '行政区划代码',
  4832. inprovincename: '所在省',
  4833. incityname: '所在市',
  4834. incountyname: '所在区(县)',
  4835. townorstreetname: '所在镇(街)',
  4836. address: '详细地址',
  4837. longitude: '经度',
  4838. latitude: '纬度',
  4839. positivepicture: '正面45度角照片',
  4840. sidepicture: '侧面45度角照片',
  4841. parkingareamap: '车位图',
  4842. whethernetworking: '是否联网',
  4843. whethersuppphoneorder: '联网售票取票窗口',
  4844. // whethersuppphoneorder: '是否支持电话订票',
  4845. bookingtelephonenum: '订票电话',
  4846. getticketphonenum: '取票电话',
  4847. servicetype: '服务类型',
  4848. onlinebookticket: '是否支持网上订票',
  4849. bookingwebsiteurl: '订票网址',
  4850. onlinegetticket: '是否支持网上取票',
  4851. paymode: '支付方式',
  4852. serviceduration: '营业时间',
  4853. servicedepartment: '对外服务部门',
  4854. servicephonenum: '对外服务电话',
  4855. fax: '传真',
  4856. mailbox: '邮箱',
  4857. complaintphonenum: '投诉电话',
  4858. website: '门户网站网址',
  4859. servicesdistrictandscope: '进站班车服务地域及范围',
  4860. mainlines: '主要客运线路',
  4861. maxvehiclenum: '最大安排车辆总数',
  4862. maxdailyshift: '最大安排日发班次',
  4863. bustransitinfo: '公交换乘信息',
  4864. remotegetticketstationlist: '异地取票车站列表',
  4865. getremotestationlist: '取异地车票站列表'
  4866. },
  4867. '25': {
  4868. name: '堆场名称',
  4869. address: '地址',
  4870. longitude: '经度',
  4871. latitude: '纬度',
  4872. administrative_code: '行政区域编码',
  4873. district: '所属区县',
  4874. town: '所属镇街',
  4875. material_type: '堆物种类',
  4876. yard_level: '堆场级别',
  4877. max_height: '最大高度',
  4878. wind_protection_level: '防风雨级别',
  4879. contact_name: '联系人姓名',
  4880. contact_phone: '联系人手机',
  4881. survey_date: '调查日期',
  4882. remarks: '备注'
  4883. },
  4884. '26': {
  4885. jqmc: '景区名称',
  4886. szcs: '所在城市',
  4887. dj: '等级',
  4888. pdsj: '判定时间',
  4889. area: '区县',
  4890. longitude: '经度',
  4891. latitude: '纬度'
  4892. },
  4893. '27': {
  4894. name: '在建工地名称',
  4895. address: '地址',
  4896. longitude: '经度',
  4897. latitude: '纬度',
  4898. completion_date: '完工时间',
  4899. building_type: '建筑类型',
  4900. construction_area: '建筑面积',
  4901. hazard_type: '隐患灾害类型',
  4902. district: '所属区县',
  4903. town: '所属镇街',
  4904. area_code: '地区编码',
  4905. supervisory_authority: '主管部门',
  4906. construction_company: '建设单位',
  4907. safety_officer: '安全责任人',
  4908. safety_officer_phone: '安全责任人手机号',
  4909. survey_date: '调查日期',
  4910. remarks: '备注'
  4911. },
  4912. '28': {
  4913. name: '物资名称',
  4914. type: '物资类型',
  4915. administrative_division: '行政区划',
  4916. address: '地址',
  4917. area: '区县',
  4918. longitude: '经度',
  4919. latitude: '纬度',
  4920. person_in_charge: '负责人',
  4921. contact_information: '联系方式'
  4922. },
  4923. '29': {
  4924. name: '姓名',
  4925. gender: '性别',
  4926. work_unit: '工作单位',
  4927. location: '地址',
  4928. area: '区县',
  4929. longitude: '经度',
  4930. latitude: '纬度'
  4931. },
  4932. '30': {
  4933. engine_number: '发动机编号',
  4934. bnscope: '经营范围',
  4935. eldtype: '燃料',
  4936. is_delete: '是否删除',
  4937. registration_date: '行驶证登记日期',
  4938. vehicle_no: '车牌号',
  4939. update_time: '修改时间',
  4940. vin: '车架号',
  4941. owner_id: '业户ID',
  4942. annual_result: '年审结果',
  4943. device_type: '车载终端型号',
  4944. vehicle_id: '车辆ID',
  4945. jt_add_time: '新增时间',
  4946. facilitator_id: '服务商ID',
  4947. facilitator: '卫星定位运营商名称',
  4948. source: '来源',
  4949. lidcardno: '标志牌号码',
  4950. vehicle_type: '车辆类型',
  4951. service_result: '营运状态',
  4952. chenum: '座位数',
  4953. create_time: '创建时间',
  4954. jt_cd_time: '增量时间',
  4955. jt_cd_batch: '更新批次号',
  4956. factype: '厂牌',
  4957. record_status: '档案状态',
  4958. remark: '备注',
  4959. model: '型号',
  4960. third_party_id: '第三方监控机构ID',
  4961. status: '状态',
  4962. examine_date: '审验有效期',
  4963. access_time: '接入时间',
  4964. chelodmass: '核定吨位',
  4965. vehicle_color: '车牌颜色',
  4966. jt_cd_operation: '增量标识',
  4967. line_name: '线路名称'
  4968. },
  4969. '41': {
  4970. name: '救援队伍名称',
  4971. team_type: '救援队伍类型',
  4972. professional_category: '队伍专业类别',
  4973. team_category: '队伍类别',
  4974. team_attribute: '队伍属性',
  4975. team_level: '队伍层级',
  4976. affiliated_unit: '所属单位',
  4977. leader_name: '负责人姓名',
  4978. leader_phone: '负责人联系电话',
  4979. city: '地市',
  4980. district: '区县',
  4981. main_equipment: '主要装备',
  4982. number_of_people: '人数',
  4983. address: '地址',
  4984. description: '描述',
  4985. longitude: '经度',
  4986. latitude: '纬度'
  4987. },
  4988. '42': {
  4989. name: '名称',
  4990. area: '所属区县',
  4991. video_type_label: '类型',
  4992. status: '状态',
  4993. longitude: '经度',
  4994. latitude: '纬度'
  4995. },
  4996. '43': {
  4997. vehicle_no: '车牌号',
  4998. vehicle_type: '车辆类型',
  4999. vehicle_color: '车牌类型',
  5000. vin: '车架号',
  5001. chelodmass: '核定吨位',
  5002. bnscope: '经营范围'
  5003. },
  5004. '44': {
  5005. jigoumincheng: '机构名称',
  5006. jigoudizhi: '机构地址',
  5007. jigouxingzhi: '机构性质',
  5008. jigouleixing: '机构类型',
  5009. area: '所属区域',
  5010. jingdu: '经度',
  5011. weidu: '纬度',
  5012. jigoujianjie: '机构简介'
  5013. },
  5014. '45': {
  5015. jigoumincheng: '机构名称',
  5016. dizhi: '地址',
  5017. // dianweixinxi: '详细地址',
  5018. chenliriqi: '成立日期',
  5019. jiegoupingji: '机构评级',
  5020. chuangweishu: '床位数',
  5021. hulichuangweishu: '护理床位数',
  5022. huliyuanshu: '护理员数',
  5023. congyerenyuanshu: '从业人员数',
  5024. nianmolaorenshu: '年末老年人数',
  5025. quantuochuangweishu: '全托床位数',
  5026. rituochuangweishu: '日托床位数',
  5027. ruzhulv: '入住率',
  5028. shifoubeian: '是否备案',
  5029. jingdu: '经度',
  5030. weidu: '纬度',
  5031. jianjie: '简介'
  5032. }
  5033. };