├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE.md ├── README.md ├── changelog.md ├── demo.html ├── demo.js ├── demo.png ├── echarts-countries-js ├── Afghanistan.js ├── Albania.js ├── Algeria.js ├── Andorra.js ├── Angola.js ├── Anguilla.js ├── Antigua_and_Barbuda.js ├── Argentina.js ├── Armenia.js ├── Australia.js ├── Austria.js ├── Azerbaijan.js ├── Bahrain.js ├── Bangladesh.js ├── Barbados.js ├── Belarus.js ├── Belgium.js ├── Belize.js ├── Benin.js ├── Bermuda.js ├── Bhutan.js ├── Bolivia.js ├── Bosnia_and_Herzegovina.js ├── Botswana.js ├── Brazil.js ├── British_Indian_Ocean_Territory.js ├── British_Virgin_Islands.js ├── Brunei.js ├── Bulgaria.js ├── Burkina_Faso.js ├── Burundi.js ├── Cambodia.js ├── Cameroon.js ├── Canada.js ├── Cape_Verde.js ├── Cayman_Islands.js ├── Central_African_Republic.js ├── Chad.js ├── Chile.js ├── Colombia.js ├── Comoros.js ├── Congo-Brazzaville.js ├── Congo-Kinshasa.js ├── Cook_Islands.js ├── Coral_Sea_Islands_Territory.js ├── Costa_Rica.js ├── Croatia.js ├── Cuba.js ├── Cyprus.js ├── Czechia.js ├── Denmark.js ├── Djibouti.js ├── Dominica.js ├── Dominican_Republic.js ├── East_Timor.js ├── Ecuador.js ├── Egypt.js ├── El_Salvador.js ├── Equatorial_Guinea.js ├── Eritrea.js ├── Estonia.js ├── Ethiopia.js ├── Falkland_Islands.js ├── Faroe_Islands.js ├── Federated_States_of_Micronesia.js ├── Fiji.js ├── Finland.js ├── France.js ├── Gabon.js ├── Georgia.js ├── Germany.js ├── Ghana.js ├── Gibraltar.js ├── Greece.js ├── Greenland.js ├── Guatemala.js ├── Guernsey.js ├── Guinea-Bissau.js ├── Guinea.js ├── Guyana.js ├── Haiti.js ├── Honduras.js ├── Hungary.js ├── Iceland.js ├── India.js ├── Indonesia.js ├── Iraq.js ├── Ireland.js ├── Islamic_Republic_of_Iran.js ├── Isle_of_Man.js ├── Israel.js ├── Italy.js ├── Jamaica.js ├── Japan.js ├── Jersey.js ├── Jordan.js ├── Juguang.js ├── Kazakhstan.js ├── Kenya.js ├── Kiribati.js ├── Kuwait.js ├── Kyrgyzstan.js ├── Laos.js ├── Latvia.js ├── Lebanon.js ├── Lesotho.js ├── Liberia.js ├── Libya.js ├── Liechtenstein.js ├── Lithuania.js ├── Luxemburg.js ├── Macedonia.js ├── Madagascar.js ├── Malawi.js ├── Malaysia.js ├── Maldives.js ├── Mali.js ├── Malta.js ├── Marshall_Islands.js ├── Mauritania.js ├── Mauritius.js ├── Mexico.js ├── Moldova.js ├── Monaco.js ├── Mongolia.js ├── Montenegro.js ├── Montserrat.js ├── Morocco.js ├── Mozambique.js ├── Myanmar.js ├── Namibia.js ├── Nauru.js ├── Nepal.js ├── New_Zealand.js ├── Nicaragua.js ├── Niger.js ├── Nigeria.js ├── Niue.js ├── North_Korea.js ├── Norway.js ├── Oman.js ├── Pakistan.js ├── Palau.js ├── Palestine.js ├── Panama.js ├── Papua_New_Guinea.js ├── Paraguay.js ├── Peru.js ├── Philippines.js ├── Pitcairn_Islands.js ├── Poland.js ├── Portugal.js ├── Qatar.js ├── Republic_of_Kosovo.js ├── Romania.js ├── Russia.js ├── Russian_Federation.js ├── Rwanda.js ├── Sahrawi_Arab_Democratic_Republic.js ├── Saint_Helena_Ascension_and_Tristan_da_Cunha.js ├── Saint_Kitts_and_Nevis.js ├── Saint_Lucia.js ├── Saint_Vincent_and_the_Grenadines.js ├── Samoa.js ├── San_Marino.js ├── Saudi_Arabia.js ├── Senegal.js ├── Serbia.js ├── Seychelles.js ├── Sierra_Leone.js ├── Singapore.js ├── Slovakia.js ├── Slovenia.js ├── Solomon_Islands.js ├── Somalia.js ├── South_Africa.js ├── South_Georgia_and_the_South_Sandwich_Islands.js ├── South_Korea.js ├── South_Sudan.js ├── Spain.js ├── Sri_Lanka.js ├── Sudan.js ├── Suriname.js ├── Swaziland.js ├── Sweden.js ├── Switzerland.js ├── Syria.js ├── Tajikistan.js ├── Tanzania.js ├── Thailand.js ├── The_Bahamas.js ├── The_Gambia.js ├── The_Netherlands.js ├── Togo.js ├── Tokelau.js ├── Tonga.js ├── Trinidad_and_Tobago.js ├── Tunisia.js ├── Turkey.js ├── Turkmenistan.js ├── Turks_and_Caicos_Islands.js ├── Tuvalu.js ├── USA.js ├── Uganda.js ├── Ukraine.js ├── United_Arab_Emirates.js ├── United_Kingdom.js ├── Uruguay.js ├── Uzbekistan.js ├── Vanuatu.js ├── Vatican_City.js ├── Venezuela.js ├── Vietnam.js ├── Yemen.js ├── Zambia.js ├── Zimbabwe.js ├── china-cities.js ├── china.js ├── eckert3-world.js ├── index.js └── world.js ├── echarts.min.js ├── geojson └── shape-with-internal-borders │ ├── colombia.geojson │ ├── eckert3-world.geojson │ ├── fiji.geojson │ ├── italy.geojson │ ├── nauru.geojson │ ├── switzerland.geojson │ └── tanzania.geojson ├── gulpfile.js ├── haifa_bahai_shrine.jpg ├── index.html ├── package-lock.json ├── package.json ├── preview.html ├── registry.json └── templates ├── README.mdt └── index.pug /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=JavaScript -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: chfw 4 | patreon: chfw 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | .DS_store 61 | .pyc 62 | *~ 63 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "starbucks"] 2 | path = starbucks 3 | url = https://github.com/pissang/starbucks.git 4 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # change log 2 | # 1.0.6 - 23.11.2024 3 | 4 | added Nauru. 5 | 6 | update Italy, Tanzania, Colombia 7 | 8 | # 1.0.5 - 13.02.2022 9 | 10 | added ODC Open Database License 11 | 12 | # 1.0.4 - 23.02.2018 13 | 14 | added word map from echarts 15 | -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- 1 | function make_map(cityname, dom_id){ 2 | achart = echarts.init(document.getElementById(dom_id)); 3 | var option = { 4 | "title": [ 5 | { 6 | "textStyle": { 7 | "color": "#000", 8 | "fontSize": 18 9 | }, 10 | "subtext": "", 11 | "text": cityname, 12 | "top": "auto", 13 | "subtextStyle": { 14 | "color": "#aaa", 15 | "fontSize": 12 16 | }, 17 | "left": "auto" 18 | } 19 | ], 20 | "legend": [ 21 | { 22 | "selectedMode": "multiple", 23 | "top": "top", 24 | "orient": "horizontal", 25 | "data": [ 26 | "" 27 | ], 28 | "left": "center", 29 | "show": true 30 | } 31 | ], 32 | "backgroundColor": "#fff", 33 | "series": [ 34 | { 35 | "mapType": cityname, 36 | "data": [], 37 | "name": "", 38 | "symbol": "circle", 39 | "type": "map", 40 | "roam": true 41 | } 42 | ] 43 | }; 44 | achart.setOption(option); 45 | } 46 | -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echarts-maps/echarts-countries-js/911551f6f3ee2fdfa012a1313919bc0984e62873/demo.png -------------------------------------------------------------------------------- /echarts-countries-js/Andorra.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('安道尔', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Andorra la Vella"},"geometry":{"type":"Polygon","coordinates":["@@PL®ZvBo·T}v"],"encodeOffsets":[[1496,43525]]}},{"type":"Feature","properties":{"name":"Canillo"},"geometry":{"type":"Polygon","coordinates":["@@HŽŒ”†JÜ_zwœ[¡e±HķY"],"encodeOffsets":[[1600,43568]]}},{"type":"Feature","properties":{"name":"Encamp"},"geometry":{"type":"Polygon","coordinates":["@@`nĸZ²GY«mY“F±N»r"],"encodeOffsets":[[1584,43545]]}},{"type":"Feature","properties":{"name":"Escaldes-Engordany"},"geometry":{"type":"Polygon","coordinates":["@@rB¼q²MKq¹A‰QWTApu€"],"encodeOffsets":[[1559,43544]]}},{"type":"Feature","properties":{"name":"La Massana"},"geometry":{"type":"Polygon","coordinates":["@@´³ŠG_mqA­Y—¢BtbjvF"],"encodeOffsets":[[1505,43630]]}},{"type":"Feature","properties":{"name":"Ordino"},"geometry":{"type":"Polygon","coordinates":["@@‹“G‰H³´Tœ’M~V®}"],"encodeOffsets":[[1642,43649]]}},{"type":"Feature","properties":{"name":"Sant Julià de Lòria"},"geometry":{"type":"Polygon","coordinates":["@@~u¸SXSQs‰GÑZG„]d†X"],"encodeOffsets":[[1496,43525]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Anguilla.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('安圭拉', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Anguilla"},"geometry":{"type":"MultiPolygon","coordinates":[["@@VBLKUGKR"],["@@ELZRTAEQaW@N"],["@@g[WAILWBSOQB[OSFJR`RJPjDlNDTXFVTKVJJn\\fPJGZLPG\\NVKSQDecSIHM[YGKeO"]],"encodeOffsets":[[[-64776,18721]],[[-64466,18721]],[[-64582,18621]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Antigua_and_Barbuda.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('安提瓜和巴布达', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Antigua and Barbuda"},"geometry":{"type":"MultiPolygon","coordinates":[["@@HLL@VJDPPD^_PURDNMZDTULU\\UfkJORBQMaDUEMD]WJgBQZSJM@QPiXQBWIWQIPNnFbIzSZCPIT]TX\\"],["@@DLmAOJT\\RJ\\BHKVBTEGVSFDTLZPPCF`PTKhFFMTGBW^MKGQWVA@YPATJER`VDGQOTY^AB[TE\\FHPNKPHLCASKK]GFSPIVHJeAOUGGQiBiVW@LaRQSGNKYQQ@SXKSQNTJ@TW@MSmB@GUAUGAPyTuFMZC^HDHVHDWXJTTALT"],["@@BVZG[M"]],"encodeOffsets":[[[-63359,18134]],[[-63360,17508]],[[-63241,17561]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Armenia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('亚美尼亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Aragatsotn region"},"geometry":{"type":"Polygon","coordinates":["@@ǚÐĨiǴMÊnMĀçÒúüɖ±hÇêçƉĉÇjÑs“ƁœÝ¿ďIœt˜įfígçæNĀ"],"encodeOffsets":[[44644,41411]]}},{"type":"Feature","properties":{"name":"Ararat"},"geometry":{"type":"Polygon","coordinates":["@@Ģ¥Ĩ֌ÁƸêƆZQćìĉLō«×ĽÁ­nşɡɂūÆbĜêG"],"encodeOffsets":[[45501,41100]]}},{"type":"Feature","properties":{"name":"Armavir"},"geometry":{"type":"Polygon","coordinates":["@@îhİe̛ŔsĐJÞÀƂ›jçéHaěοWŕÀéZŠÆ•Ĕ"],"encodeOffsets":[[44721,41232]]}},{"type":"Feature","properties":{"name":"Gegharkunik"},"geometry":{"type":"Polygon","coordinates":["@@ʈŮQð°ŮYؓZ·Ò‹i½ÖÃÞqÀÁɺÏ¢ę×ñoéɑ@m_ɣāuıÛKŎëĊRĈ¯n¥Ƙıɤ"],"encodeOffsets":[[45891,41626]]}},{"type":"Feature","properties":{"name":"Kotayk"},"geometry":{"type":"Polygon","coordinates":["@@ɲ‰ºJxsIJɣ¦Ɨ°mƅYƷé‹ÂEđÂħEiÒĊȐƊéègÈ"],"encodeOffsets":[[45521,41684]]}},{"type":"Feature","properties":{"name":"Lori"},"geometry":{"type":"Polygon","coordinates":["@@ń@ƸŒŌ™ĶXh ʊ{«Ē±U¡ıuOĒ‰ƒýġÑ\\Ĺ¹IɱŠɕ²ū¸G àŒÊê×X…âµrZð"],"encodeOffsets":[[45092,42178]]}},{"type":"Feature","properties":{"name":"Shirak"},"geometry":{"type":"Polygon","coordinates":["@@Yï¶q†áØWÉéߋHŸŬ·ùûèÑNÿÉmdzNħjǙÏ\\ØÚâÀŚÏĨMþǟĀSöĠtƶ‰úªnjz"],"encodeOffsets":[[45092,42178]]}},{"type":"Feature","properties":{"name":"Syunik"},"geometry":{"type":"Polygon","coordinates":["@@V‰ŦƒǞƫà[¥l½įšĎŸÖůŃcúÛGǫƏ€ã_ăµÝĢ‘ľ^“ĞRúǥÞœČĔĸO²ôè"],"encodeOffsets":[[46915,40819]]}},{"type":"Feature","properties":{"name":"Tavush"},"geometry":{"type":"Polygon","coordinates":["@@áj_²ź}úÃÜN©ŋƨ±İIĜßł¡³ěīy¯ÍהŭZï¯ŭRė‡wt[ĺĢ҄þđŠPžIJvV¢đ²¬Ž"],"encodeOffsets":[[45980,42201]]}},{"type":"Feature","properties":{"name":"Vayots Dzor"},"geometry":{"type":"Polygon","coordinates":["@@¬ØIJÜĂvɤXƜw†íóçP±‹ķěƒĉ·ű~ċÐĹŰ¯|"],"encodeOffsets":[[46148,40745]]}},{"type":"Feature","properties":{"name":"Yerevan"},"geometry":{"type":"Polygon","coordinates":["@@t”ĨFĒÁFħÕġ¦iè"],"encodeOffsets":[[45480,41184]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Bahrain.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('巴林', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Capital Governorate"},"geometry":{"type":"Polygon","coordinates":["@@O@GVY\\]E_JBZ\\@NLVJlKBMnTSZTBHOXKB[HIXB@OPQQOgMWLgAEE"],"encodeOffsets":[[51775,26826]]}},{"type":"Feature","properties":{"name":"Central Governorate"},"geometry":{"type":"MultiPolygon","coordinates":[["@@P@H[Z_ŒmHeTSOUAW]NWpSKÕpBGSdBxVPnJdB"],["@@FObLJOiO@a[pDLSJUl\\XXBJMD]GY"],["@@F[UG@TPP"]],"encodeOffsets":[[[51767,26826]],[[51841,26781]],[[51804,26823]]]}},{"type":"Feature","properties":{"name":"Muharraq Governorate"},"geometry":{"type":"Polygon","coordinates":["@@U]g^Gl[N\\RHQ`GRN\\DRLu`RXdARVRM[oKYVMNJFRVAPuI]Y@CmPI€@n•GISbFHUh]@HaCO[CKOSpKPDRYlKESX"],"encodeOffsets":[[51840,26886]]}},{"type":"Feature","properties":{"name":"Northern Governorate"},"geometry":{"type":"MultiPolygon","coordinates":[["@@KCBUAIZ@@‡LGE]OH_C[DBTMXD\\VLPXJGFLC\\NA"],["@@AY`I^FZ[HUcAmIUOAwTcKWLKNÁ‡MEfDPMvQNQjS‚NpB^OHEVMDDXnRPIˆFKfYI@TVHTw"],["@@BSUIBZXL`\\PWSMaB"]],"encodeOffsets":[[[51622,26820]],[[51720,26866]],[[51665,26876]]]}},{"type":"Feature","properties":{"name":"Southern Governorate"},"geometry":{"type":"MultiPolygon","coordinates":[["@@KRBPZLPKEMYS"],["@@CUqKMrVEhCFE"],["@@GFL^ELXljpXGJVPGBS[WL[e]WELePKUgXcUIKsaV@RPZCbF^QT"],["@@GLVPJUWE"],["@@ˆNMÂKLLXAHÖoTLXo^MTC@aSQDkTIM_HaOEI{EIFcG]DGOqDIEHMGY_iFQSGgeSjEpIZepSlO@inkXQ`GhFX\\dBbVd@Z"]],"encodeOffsets":[[[52027,26278]],[[52036,26263]],[[51959,26269]],[[51997,26363]],[[51695,26676]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Barbados.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('巴巴多斯', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Christ Church"},"geometry":{"type":"Polygon","coordinates":["@@šj´v’Ÿ[UQAS]mOOJM\\UFYCmRsL"],"encodeOffsets":[[-61043,13393]]}},{"type":"Feature","properties":{"name":"Saint Andrew"},"geometry":{"type":"Polygon","coordinates":["@@Jvp|Nkp‹i[YaoXCl"],"encodeOffsets":[[-61031,13556]]}},{"type":"Feature","properties":{"name":"Saint George"},"geometry":{"type":"Polygon","coordinates":["@@zV\\Z„›IU³u[¸"],"encodeOffsets":[[-61012,13474]]}},{"type":"Feature","properties":{"name":"Saint James"},"geometry":{"type":"Polygon","coordinates":["@@DkK][WH—mQA¦GRDXEb–Z"],"encodeOffsets":[[-61031,13556]]}},{"type":"Feature","properties":{"name":"Saint John"},"geometry":{"type":"Polygon","coordinates":["@@||relW•™ƒœ"],"encodeOffsets":[[-60969,13498]]}},{"type":"Feature","properties":{"name":"Saint Joseph"},"geometry":{"type":"Polygon","coordinates":["@@Zbj\\hiXG{{[YIna\\"],"encodeOffsets":[[-61005,13522]]}},{"type":"Feature","properties":{"name":"Saint Lucy"},"geometry":{"type":"Polygon","coordinates":["@@ÍqERApZjbPRBŠwAS"],"encodeOffsets":[[-61007,13617]]}},{"type":"Feature","properties":{"name":"Saint Michael"},"geometry":{"type":"Polygon","coordinates":["@@nR‚V\\·™iDZcRBZSt"],"encodeOffsets":[[-61068,13454]]}},{"type":"Feature","properties":{"name":"Saint Peter"},"geometry":{"type":"Polygon","coordinates":["@@ÎrJGo{Iu•YC`DpGR"],"encodeOffsets":[[-61078,13592]]}},{"type":"Feature","properties":{"name":"Saint Philip"},"geometry":{"type":"Polygon","coordinates":["@@JV¤¢T]TKVAP[Qos…cY‘ "],"encodeOffsets":[[-60940,13441]]}},{"type":"Feature","properties":{"name":"Saint Thomas"},"geometry":{"type":"Polygon","coordinates":["@@pWb[JmyUUG˜\\XL^"],"encodeOffsets":[[-61029,13534]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Belize.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('伯利兹', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Belize District"},"geometry":{"type":"MultiPolygon","coordinates":[["@@s™UMmP¦~RZ"],["@@v¶TD@jfnTYI…mkg}cG"],["@@`ZxšH†^’wZnRIdpŽDnblf{F‹qsg¡Wiw¹iwWI"],["@@ĀSo‹Je]åW…Yg]OAs[EQkZQnCSwWO[RUUGgFãlgbEhsœOLgyYaTcUQauħY•YÇAÕH—]YgMɇDzb`–VlWzalFxGVD”EdMƎgI_cMGOľTd^’¶^S~LxK|T„AnOfNx^Šɠº"],["@@Zol­waCZV¤_‚"],["@@VfXI”PRRDn”Vii]BMqmQBGr‘cq¡YBv’Nb"]],"encodeOffsets":[[[-90069,18361]],[[-90104,18360]],[[-90075,18360]],[[-90394,18405]],[[-89935,17831]],[[-89999,17858]]]}},{"type":"Feature","properties":{"name":"Cayo"},"geometry":{"type":"Polygon","coordinates":["@@xΤ`Ȝ@ɒ€€PDž€r]ŠTœN|G†ZRh¤CdFnI°BnPhp|RPKbdpKdN`€hJNƍFcC“HUEwbkXyUk_•yaUMr‘lYAWeMYqAeck]CIk‰{F¡w}hk£WWSSm_[e™Js}UKgYCF_GQ]ekKkmgBieF[kCq]Y@YhU]ƒqOQFU[[Iaƒ…"],"encodeOffsets":[[-91333,16795]]}},{"type":"Feature","properties":{"name":"Corozal"},"geometry":{"type":"Polygon","coordinates":["@@ÿTƑŜ‘êĩ¤OPLŒQF¸ÄIhj„HvTz’~ˆY’`b_ÊN`aJ]…cO¡}DqxKŠ`Yy\\K’`zPv@@[tRVUvBpŒFMuqSGiŠbK•RyA{LcIoOÍQYKycasWKeJYWiAeQY"],"encodeOffsets":[[-90298,18395]]}},{"type":"Feature","properties":{"name":"Orange Walk"},"geometry":{"type":"Polygon","coordinates":["@@POĪ£’éƒśɟ¹]‰MwPeBmSƒL{KwT}µ]]‘ScPĽHoLacOL{QgomO¯AmJcE£DQg…Y{H›M‰Sq^OC@рCľxˆZIVVrZdEl^ŠiRs„O^B^WTsŒgpCD~\\`zT€ŠD^``GZ°€Ep^¤rxMˆ\\A‚ntNZz"],"encodeOffsets":[[-90729,18690]]}},{"type":"Feature","properties":{"name":"Stann Creek"},"geometry":{"type":"Polygon","coordinates":["@@ɈChN^ZXcFiZct@\\Åb‰Qy}QiWQ¡„ÉgFŸ…h©WoFwGaEIWQo]A_Y}T‰YAEnJzPNP€VFJVTCVXBTSA[uoB¡yu^acYg@ōHR`FŽa~qtRfOf³€³Qƒ@kP_QItfš`\\TnXT¤Xglx~E¢Š|Jl^DdlBfZrfNBXkZq’VN"],"encodeOffsets":[[-90715,17518]]}},{"type":"Feature","properties":{"name":"Toledo"},"geometry":{"type":"Polygon","coordinates":["@@„†Jb\\\\ŽVRE‚P„rV^ZgZ@r^lDE\\jfhAlnlL€fR^`HEZDLh~V`RlO„@´R´PeQersb}EQ_ŎGbQGYqiFQeiB]‰…Jm[wsgswAo{GcimVorcEBqMM‹G_SaBG[aKNyUYNgEeŸkY…kEmqCi{g[ek@cn¿MW@UNFgGB`“JkYeV}MgSsdw_oCt͊Pŀ"],"encodeOffsets":[[-91333,16795]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Benin.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('贝宁', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Alibori"},"geometry":{"type":"Polygon","coordinates":["@@ƖƜĸÞM ŚȚJĉÂgƦÜCŐ ÈLŔòÞKæēÀmŠÉĎ×Čđ¸ŃÈJЏÚ݀ۗčeşƓ ›ƬįEċŠifõsíˆē²‘F›ˍq˃ÝʹUÞďC•‡ĽQ͞×wĵI…{KЎȭή"],"encodeOffsets":[[2067,11702]]}},{"type":"Feature","properties":{"name":"Atakora"},"geometry":{"type":"Polygon","coordinates":["@@ȮέLЍçûH²Ù€ıqÙŷE¥ĝ€£UŝZ­kÍÝÍWïùbÕUɍżˑȐRŰlèFĸÎÒRĸ„ĆôÌjƒÐH[¶Ä¾RðĪA¨|MÎÂ~\\À¬|öwȳ¼A¨„ºSĊvŪe"],"encodeOffsets":[[2067,11702]]}},{"type":"Feature","properties":{"name":"Atlantique"},"geometry":{"type":"Polygon","coordinates":["@@G˜ÀĪa†ʴJžËd˵œ™cùĭAOĕMɑCFGJsþ~Ø@ň¤ń"],"encodeOffsets":[[2087,6897]]}},{"type":"Feature","properties":{"name":"Borgou"},"geometry":{"type":"Polygon","coordinates":["@@F¦ŸrÚIJ±ÚGžèü†|ĶJØxΝľR–ˆĐDĝʺV˄ÞˎrJµ·ƻﮕkÃƗ€»Ò…g˗qeŃéą«Tċ‰ÕŠ«ĝďÁă‰]eÍpť‡§…ŋƻ•ĻTVãµȁҗJhœŃйê|ŶáöEøŠþĀPt€ŒɢÁèoÎnĔGĘ"],"encodeOffsets":[[2145,10269]]}},{"type":"Feature","properties":{"name":"Collines"},"geometry":{"type":"Polygon","coordinates":["@@Dzv¬ÂSĜÍČY¸ŠCŤuĶҘInĭJƑÃőrĕ†kŋ¯ǧ ÓKũȅF[ĝ¿ÙC…įÖƉ‚ŕB¡ÐÅ|ĕTūkM؆EĀ|œ‰ú"],"encodeOffsets":[[1664,8794]]}},{"type":"Feature","properties":{"name":"Donga"},"geometry":{"type":"Polygon","coordinates":["@@ÖVúaðÎXÎÞ®lŞY¤VĞHėmēpÍÂç‹ɡsÿO‰ýF÷âõ{ŵºéń‰g›vĵDţ·‰ċZěÎÁT«žDZuFʚQƎ£ĸ¹œēŒ[Ŕ­È|¨[Ͳ"],"encodeOffsets":[[1388,10236]]}},{"type":"Feature","properties":{"name":"Kouffo"},"geometry":{"type":"Polygon","coordinates":["@@àśhåĒĭrěƊƩbb…¿ĩH—ÉXùæïrśÙ…y´X˟ĀêCDϔVò"],"encodeOffsets":[[1695,7711]]}},{"type":"Feature","properties":{"name":"Littoral"},"geometry":{"type":"Polygon","coordinates":["@@f}ţQPŽĮB"],"encodeOffsets":[[2537,6543]]}},{"type":"Feature","properties":{"name":"Mono"},"geometry":{"type":"Polygon","coordinates":["@@‚†ŜÚðqúåÊW£Ń@Ň}×týõJ¡ƒ¥Œ«ź•¶ýè}ޘª"],"encodeOffsets":[[1662,6905]]}},{"type":"Feature","properties":{"name":"Ouémé"},"geometry":{"type":"Polygon","coordinates":["@@‚ÄĂDE߮ɂëUĿŦđoÛCõǩae~dú›šc˶Ì"],"encodeOffsets":[[2444,7098]]}},{"type":"Feature","properties":{"name":"Plateau"},"geometry":{"type":"Polygon","coordinates":["@@`ę¶«BÉ£K@ţzůyj½£û|qOţ¤c@Õ«·AāťĒVŀì­ÊFà¦BƒƔ·¶©ȂD†ÀÚ\\ĞȆE"],"encodeOffsets":[[2785,7841]]}},{"type":"Feature","properties":{"name":"Zou"},"geometry":{"type":"Polygon","coordinates":["@@ŬlĖSÆ{¢ÏŖAƊİÕªȁ¸µ„Ɠ¥AāCÃʳIaƉƪqĜđĮgæßŜ[Ě"],"encodeOffsets":[[1681,7820]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Bermuda.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('百慕达群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"City of Hamilton"},"geometry":{"type":"Polygon","coordinates":["@@FDL@BMMAEL"],"encodeOffsets":[[-66343,33073]]}},{"type":"Feature","properties":{"name":"Devonshire"},"geometry":{"type":"Polygon","coordinates":["@@T[EACGKEKL]OI\\TDTHNH"],"encodeOffsets":[[-66303,33093]]}},{"type":"Feature","properties":{"name":"Hamilton"},"geometry":{"type":"MultiPolygon","coordinates":[["@@TRNQUKKL"],["@@GEMFBDGHIAEGOCAEICGUG@BJFHALDDBFLDPHJJPAFMBGNC"]],"encodeOffsets":[[[-66267,33105]],[[-66252,33117]]]}},{"type":"Feature","properties":{"name":"Paget"},"geometry":{"type":"Polygon","coordinates":["@@VFDHLHHB^PLKc[GIMKICSZ"],"encodeOffsets":[[-66348,33057]]}},{"type":"Feature","properties":{"name":"Pembroke"},"geometry":{"type":"Polygon","coordinates":["@@J[OAANK@ECFKOAIFMCCRBFM@GBJHL@FCVAbD"],"encodeOffsets":[[-66330,33083]]}},{"type":"Feature","properties":{"name":"Saint George's"},"geometry":{"type":"MultiPolygon","coordinates":[["@@B@HFPE@GJDBGWEMR"],["@@BBVHDDN@BDjCHGNDAHL@DECE@GSAAGHEEGIPOHSBCA@MEA@PKFKKM@CH"],["@@IEOCIGAC[KMBTJHFZPJJPH@CLIFGQD"]],"encodeOffsets":[[[-66257,33114]],[[-66260,33140]],[[-66226,33160]]]}},{"type":"Feature","properties":{"name":"Sandys"},"geometry":{"type":"MultiPolygon","coordinates":[["@@]MAHGTBDJBLIPCLCFDNAEESDEA"],["@@RAJHDGN@GQICEODIKCGHFFDFCDAPEJCD"]],"encodeOffsets":[[[-66421,33045]],[[-66438,33081]]]}},{"type":"Feature","properties":{"name":"Smith's"},"geometry":{"type":"Polygon","coordinates":["@@NJHINJRBPCAJDFLKECCGECIAKIKCMGS\\"],"encodeOffsets":[[-66303,33093]]}},{"type":"Feature","properties":{"name":"Southhampton"},"geometry":{"type":"Polygon","coordinates":["@@^N@CBU\\GdHBDNFLBLOUKK@KCKBSBGCM@OJQPAF"],"encodeOffsets":[[-66436,33038]]}},{"type":"Feature","properties":{"name":"Warwick"},"geometry":{"type":"Polygon","coordinates":["@@TYeOUKKPI@OADJNBJDLFTFNLD@"],"encodeOffsets":[[-66348,33057]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Bosnia_and_Herzegovina.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('波斯尼亚-黑塞哥维那', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Brcko district of Bosnia and Herzegowina"},"geometry":{"type":"Polygon","coordinates":["@@HDD@@@r`@L†œd^zNbjjPºVfwWGRMYdUGeªoŠsĸExJSY£…D[sqßT…q{MKV»aqiiJsKO\\ƒFyK‡rQnN`uvŒ@~b"],"encodeOffsets":[[19025,45914]]}},{"type":"Feature","properties":{"name":"Entity Federation of Bosnia and Herzegovina"},"geometry":{"type":"MultiPolygon","coordinates":[["@@•Y‹@S…b[\\}lc‚Sl]Tsd]dCnZ˜€ĂWNIÔFtNZ{ncd\\¤C aŒ«I‘Ng²‡K‰hM\\aE…fmOY·Q@c™Kß`ăX»FÙIYMYT“®qve¶yvipCŠk¶oˆ‰œel]ªs`g¬‹öŸ@O–w aŽIĀVK\\„°PŽUp‘xK~eŒu|iNDpŠ|SnLˆnVÆilRR^ˆE€a¸£‚g¦[NSšF„PdI–p†Džh€hĒp°€h†Ez[€}Œi\\_‚BlzpLj~^vO¨B”gC‹Š£]Y^{z^”NªH¶wzN˜KºZXlsLSteE}V]x‘Ncd³JgZ§LOXZ^I`b\\Î^œQžFPldX[fFnfLhrdJ^‚ÄI`ar[fg\\•lCdP}a‹@vuM_RmˆqzL„EP[tLjIrj¼bLU|NxYUƒ—M_[—`{œmBmŠAjiŒQ~B ÚvV|Ev_H}_ÙsaRemWcB›¥»D{wgAce©_QkJw`mHi¨•cc^u[i‘i³_¡w‹omqƒ«ÏDkO™^¯Sy‡CijGZeKStWdgźJ¾‰E¢QCbh\\Aj^pfFdh¤BŠS†X~KV“fEtwrUdmCq—s{C—]ĕy£^›DīŒoLkfÉEi|£]g}G‘‡QUSJƒIPw£K¯JeI‰BƒS§^¿G‡Y…µAcŒmX•Pµ{—›KciGyv…EY¨Kj[N]kwyRmiƒ^_D_jI‡ZgށRc’kvk¸yž›tc¦¥ @µC{[mZ…Fkl}LQr_J›„“ZAZ‰Z[Z‘XSlkJk€D`]f‡^osi`“XB{[X‰X^zÂv„LÑĮí”å„™jV`Wd§‚‡Tyœyve°SdŒ’qŠŸfËI}t»†™byly~}`¶_Bmf}^[vWR¡NƒŒA†O\\Á‚i^”Rm¢stÏLJŠ]buGFUhXS~khÜa˜cdGŒVjf^Sh‹\\‹H|lJ^gJ[”Rh¡°qBfkzŽLPpo–gB‡`o”qC‡’qmaTco…|WB£´Wt„H€bƒp@dk¨T€vDXn[X{´tZ@^jzW\\[ˆZdzr˜`ŽILT„MŽE^Xš{Mg€M™Aire SfWFgbiˆKJS@`g"],["@@€IxH„bJdŽ]Gc¦KIlhb^]ievmfAvmUaÈIQy¹Uùˆ“X¹x³‚"],["@@pfWršdlIHaxCh]äRhCdmvekCqAFaiSiNYwkBGjobW`uf¡\\"]],"encodeOffsets":[[[16680,46076]],[[18922,46144]],[[18635,46161]]]}},{"type":"Feature","properties":{"name":"Republika Srpska"},"geometry":{"type":"MultiPolygon","coordinates":[["@@†ràStrC\\¤†TZ¼Ljb†T¤‚t@\\edEz`rQ‚F¶ykwUqcKEyR{k…B•mSacMsiYawki]CLuuq‡CKgfG[XcCm‘kGkXwhICmvadinXfKH]~Qx^¤ODeheVqBqžY\\utYb`hAWsjGl‰ W–Ad­­]FU{_WaÿB…TUM߈™JPHs^”ªÇ¢¯rAZi†Y`}ŽgCq^mKc…¥h[}]‡TuEpoHkcÁPgiMwHeuCÑRƒcaF“agCBl±~Y{kEGgR_Fw˜c\\YFklWEn[lƒEg›SuqZEduNM\\Vb‚ÃHqSZiÁg±o›udeg³P›JÍOáFqYiqW{Gv•iKF_mUCaem^gV•fKˆo–Io}Daja‘qQY|sLY±PcaW£x{zwHŸ@¥¦sdœ·zul‘lQd‚YhJˆiC`]`j„QnxzlM^i\\§LFZu†HzdjœL|˜O¶W–‹nBd†¶ˆZÀH¨]„TŠAfJ°I¤LOxJ‚I„VTˆRH’h~¤^j{ÊFlepKĬ‹œC¤]Ėz˜^|D˜tDrcnqVsxeFU”}L…W‰T£AcgeE]oBig[Da¡RF½ŠŹIchsXLTYfiHDjzˆ°Tž]PšCl¬Ðž„nr‚pŽŒ¢x´`’j\\j]vdd§–Gj_nIxRlª`dfhB|x¼Cœ¦dAnXQftb`ÚG~u`{FuUŸÙ}A‹Rij‰BAn›n_|\\˜Ž`˜NV„wZ"],["@@‚NxAVRElxlFzbbQ\\˜^p\\flGlbtŽffK°Rr_Öc~Væm€R¬¶bFLbdJbo_mœ@ŠarG€i’YÎ}À@r–”k€o¸O¬hAy”BheÎLfO¸v´m˜snApiˆcjCŽ^rO`RX†VJ^v`rg€VriQeˆkŽFpOtB¢[veX_paHilAZxjMjTEb‚B‚rlDRI´ºw”Wú‡iOaiyMc]…›@Kq_@@C@GCcOkD[–ehq\\_bÃJ]cIgqeKEm\\ecWOkE›RÍ]a[J_Y]PW¨KhY´Idc’M^w~UfFTstKWk¹Y—LyMµx©G“My]]|^Z‰¤DŒ“h§AuP}]KiyoAk`j[~‹\\Fyg…¯đogg…C•ocJƒO™EMT¥\\h·¤b‡FQ]kQÅjmUK‡Tm‰{CojMv{f‹L}’wVoOƒ¯L[ÿUJŸb•x@Põ «Œ_h©tk^›f‡Šµp‰loDujµzuf­rS”NZ‚ZÚJ¼EĄWà_šL@d¸RPZenF†[bgNLбˆMhJ’‹¬Ÿb£Dc[mdY|sMÓEMJāX—mYcDc^Stk^Tkd[~a\\T†Œ@–Z"]],"encodeOffsets":[[[19262,45830]],[[16680,46076]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Botswana.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('博茨瓦纳', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central District"},"geometry":{"type":"Polygon","coordinates":["@@P}}Iu\\“ÈáDu|‡Di†ÍdÁ`YXÁX‹æŸÆT }‹rqˆN~»|kðe¦…bŸllVº_p©zFØsnBŊ­ºNšqVg¢wÀC”¿hÍfeJ¡^©OwDÉY¹FYE­h¿—Iy‡mScF™[¡Vžuvm¬ăBX_Q³L¹pgZ—G_d»E_f›l[Vs¬Ëª_rHŒ•€WæWhSÂdİH^ezQHX]ÞEČqĀ\\Ø[®êƒ†tœZ`]°UXcêwªvAˆkĐiŒJNc¸_X[{{s³Ah­†Ä{ÎAŽZdWp¥Ž}Š‘}YUd½K•^uO‰yDoQ£JokU‹‰E‘P}y³w}\\£[CuĵwљÛCkcUud‘FčI‰‡wKƒ•‰O¥­F“yu{±yVŸ[oÝ¡qIRÑom£e[g­[h}sec}HOnFƒs‡VCu]_­Hƒ‡‹ÉBuYOyu\\©\\gIu¹—SËueo]`‰•FCwŸ_n}GekQv‹HD‰}[QŸOy…g‰£“KausWŸǡĨˏƪŷðe`UXŧLjٌYhɹ˺Q`[ZȅɰƏǦŻLjəˤƋǦȩʬşƮƵȠWNEpCˈĜJnˆozAvd|FExŠx|LxnxC~jªi`ƒž`Z_Q}fŒW¤Áz_|@j`ÎKɀfͪ€Tɮŵ¼gZ@аJшͺAɶ@ʰ@"],"encodeOffsets":[[26613,-19457]]}},{"type":"Feature","properties":{"name":"Ghanzi District"},"geometry":{"type":"Polygon","coordinates":["@@ʜAϘCͼAɢ@˜A̬C’FРAɈ@XMƶȟŠƭȪʫƌǥɚˣżLJƐǥȆɯ\\YAaǁ̇US͋@ѕD̃@SBν@еFɛCȍBϙAķB̗AȫD˅@ʭDȫCǏB̅B@઺͚Anj@Θ@@Ɉ@ق"],"encodeOffsets":[[21503,-21499]]}},{"type":"Feature","properties":{"name":"Kgalagadi District"},"geometry":{"type":"Polygon","coordinates":["@@̆AǐAȬDʮCˆ@ȬC̘BĸAϚBȎAɜD@ēďB@ſČ@BűCɿAɩCɗCʓLuΨDˮ@ȲFdEƆŻFŷX̝ŰśüETõ_K‰`mckHqcuRvDhEgN©Ø_XqUÁBg¿@B|Lio—XHhu|‰NAjw@ƒkVE€‹nWYƒ„IGh^SlsF¹šk~‰jm‰§VObÇOih‰KHuw{Ym\\¹]¡TNk‡UU—µW……oU±¡y­ozgK‰kSM¥Uo~m™u@w]ut[miF‰O‘«JJ¹‡aSƒ{ygIA{{‘oB©tYkCosN_gioKHyijyOmŸuPycWE‰]mŸeQq©{C̓wHµIT•aaybgL[í·ÉKojÁF_ejçhyQ™JymVÓ_][™M§pÛLy„E‰bq@“kuGIiuBoq­OkWœLjwLGr{p`lW`Rpg’jjKnD¸o€G‚\\ÞzR‚Ž˜ÄxjZvz\\v´Ap ´“~jji|`bg„p˜ƒŠOx\\~sRB´wX}”c‹xZšs„†dy’pXx›ÜNpH£öVff¥ÐpŠ—\\D‚a†…jLx±|Wfdg”¿‚k_‚…AyzFfshuJQl}pAˤ@˲@ȠBҮ"],"encodeOffsets":[[20480,-23868]]}},{"type":"Feature","properties":{"name":"Kgatleng District"},"geometry":{"type":"Polygon","coordinates":["@@f_ŸïːƩǢħ tXbv”LФ€hz†‚Pmÿ`}y¥J{ceKµguOeKdąkyTeq{™w£YeR{c³¹á¯Oc¥…“ē“ygu_Rǧ¥›ÄLJĮŸb}ˆTâÈäžϺrȼCn"],"encodeOffsets":[[26642,-24124]]}},{"type":"Feature","properties":{"name":"Kweneng District"},"geometry":{"type":"Polygon","coordinates":["@@жEξ@TĀ@іC͌@VTǂ̈BbR_ɺ˹Zgł‹ŨLJVWDmqȻϹÇãSá~‡ aswȧȥćHŷæȃ¾ʭòΧĶ˩ĄʭôɍÚҍƄDʀAŲċ@@ƀĐA@Ĕ"],"encodeOffsets":[[23611,-23870]]}},{"type":"Feature","properties":{"name":"North-East District"},"geometry":{"type":"Polygon","coordinates":["@@Ø~`S²GŒ^Ö_‚Wœ`tg¢RˆƒS»ae@¯|£Kû_«e_PyUjoSmHµe[N‰¸É®k¤Ã€©fSdƒ@ynql©O‡tSYrS`‰GyR]fįGÁcgTåXX‹–qG©`«ÌUtk\\eœF`c¼H`Y˜ohKºR´W`A«ĄunvU‚\\¢EšTdˆnJzŽ˜gÀF®"],"encodeOffsets":[[27944,-20990]]}},{"type":"Feature","properties":{"name":"North-West District"},"geometry":{"type":"Polygon","coordinates":["@@ʯ@ɵ@͹BIч@ЯhYŶ»SɭͩȿeÍLi_{@y`£Â‹Xe€R~Y`__„©j}iwDwm{K‰wFw{EucyB‡pImH́DˇFoɇ@ПB‘E̫D˛Bɡ@ͻBϗDʛBBϞAŴ@Ѹ@ɾ@Μ@܈Ϣ@˸ÄɊ¢Ϡôɘ¨˰Èǘ@rF•^GœßfUKƒŠAŽtFrsZyK]|{M¡\\sUefk@wši”pvšŒ@άbš`NlœŽf@fxE€^zv¶„Fh‚SĐϤGzXpeTpjT¢¢pO€HºËGWp}ØK†¦Jpxfhz~JrlX€ŠHzZxv’F ˆpOhf®œ~€{¼|f~œY¤GRiu¿A‡x‰b•N‰~§ŠY`wnGnÓX…t“‚랝”­ŒYPoŠ«tg‚Q„oj¿Yƒ`Íh¡ªwž…z[„»Hy"],"encodeOffsets":[[26613,-19457]]}},{"type":"Feature","properties":{"name":"South-East District"},"geometry":{"type":"Polygon","coordinates":["@@ȨȦtxLjĭœÃƯ‹—sėOa„X«q“kµĥɵ{…WísùÓ|¯TÖȢ¸ƼÏGšĺ[d¼tAØ"],"encodeOffsets":[[26303,-25365]]}},{"type":"Feature","properties":{"name":"Southern District"},"geometry":{"type":"Polygon","coordinates":["@@ҎƃɎÙʮó˪ăΨĵʮñȄ½ŸåĈGB×»s\\c™ĹÐH·ƻÕȡ°SÔ{åơɛ›Y“ý•×D³VƒO‡Rċ†iC‡YŸ}¿IyYÇj™gÝp™|iA¹n`LSöûFůŜW̞EŸƅżcFȱE˭@ΧCKvDʔDɘBɪ"],"encodeOffsets":[[23608,-24576]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/British_Indian_Ocean_Territory.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('英属印度洋领地', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"British Indian Ocean Territory"},"geometry":{"type":"MultiPolygon","coordinates":[["@@kwUmOGOBELEˆ\\ ItSTYLyx[NOVdTNGEc|izYIQH]C‹QcC_J{TITtT^dX"],["@@VCRJH]oX"]],"encodeOffsets":[[[74212,-7567]],[[73083,-6842]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/British_Virgin_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('英属维尔京群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"British Virgin Islands"},"geometry":{"type":"MultiPolygon","coordinates":[["@@[IBPZE"],["@@GDO\\qCDNVEXFTEDc"],["@@I@iPUAWFOISZOJJNLEpJbKLD^ETPlMRGd_^eFSMKWTmXAHcF[@"],["@@EeBS_F@TJH@`RAVFLJCVJjHHZCVIFQbHLRRDRUY@GMcI[FE]]@iU"],["@@O@IPVNRSMI"],["@@gAPZ\\ERJLT@L\\NMRJXVIJ\\REnCTFVKz\\LCJ_]IA_KBIQWCYXUDGMPKMM[@AMQKOAmSMPSC"],["@@QDb\\tGLS]SOFKNUC"],["@@KCOJPLVGLHRMDMMOKVQD"],["@@FSS@JTIPAVLJNSI["]],"encodeOffsets":[[[-66161,18752]],[[-66115,18777]],[[-65887,19167]],[[-65972,18902]],[[-66114,18912]],[[-66240,18830]],[[-66315,18886]],[[-66085,18883]],[[-66080,18916]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Brunei.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('文莱', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Belait"},"geometry":{"type":"Polygon","coordinates":["@@n±z”GZiD±€eôć–ï̝J­³^]÷ė͋Ř}†O–¥l“ĂÓpÅC`ðsb@¬Ÿö͎yz˜bêdŨª¶~"],"encodeOffsets":[[117239,4803]]}},{"type":"Feature","properties":{"name":"Brunei-Muara"},"geometry":{"type":"Polygon","coordinates":["@@ov\\ŮþØǦØN•£ÓP…‹saÁÙP‹e­§i"],"encodeOffsets":[[117525,4837]]}},{"type":"Feature","properties":{"name":"Temburong"},"geometry":{"type":"Polygon","coordinates":["@@€Œ^¦¤lc†²hI|GZy˜‡E‘p‰Ou„»R‹kÝX­Os~Ÿ £D…ykw–¥F÷–—U[Ąe–UÊ}²VZyĒ"],"encodeOffsets":[[117783,4863]]}},{"type":"Feature","properties":{"name":"Tutong"},"geometry":{"type":"Polygon","coordinates":["@@[ŭpu‚¡ZģHóVŸ¢EF±Y“·Ëž•ðóĈfC²Yj“Hy‚m²°ŽňĪð°"],"encodeOffsets":[[117515,5015]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Cayman_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('开曼群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Cayman Islands"},"geometry":{"type":"MultiPolygon","coordinates":[["@@lqxG~bFX~JGh[lžgjJpM¬R†AZWIm_™@SNME‹wiAqR}P]YbPXCfLrUvuRH\\vXpSaUhOa"],["@@RRŽJ¤ZT[…G¡m[FOUcMiARbxZ"],["@@hXtNˆnrLtbpJXYog©[­k‰A"]],"encodeOffsets":[[[-83322,19786]],[[-81991,20160]],[[-81808,20161]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Comoros.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('科摩罗', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Anjouan"},"geometry":{"type":"Polygon","coordinates":["@@jEPW‚I~ShDNNhAlL`XT\\bFJrTbWlŒn\\@luKmV[Ld…DoLMLƒUqX¿KweSiRFhmvg^cNGXYV[Fc|fiG­vUT`aZVP"],"encodeOffsets":[[45279,-12459]]}},{"type":"Feature","properties":{"name":"Grande Comore"},"geometry":{"type":"Polygon","coordinates":["@@V`Z‚X\\Iz@œTˆIzVnBlYšP„Nbpf®ZfOfAn»Q‘OWBeNMA•McO‘RqGSNY`YDU^aFgVUNgDwISR[NsJAzRKHmQESmO@_Y]@qb‰„YtuNiGuDgT_^[Šk^U¦"],"encodeOffsets":[[44268,-12014]]}},{"type":"Feature","properties":{"name":"Moheli"},"geometry":{"type":"Polygon","coordinates":["@@BdnXVIŒI–gf[\\AJU^GRU†SxmRgIg³f©TÁHeIWHJl_dYB[’"],"encodeOffsets":[[44673,-12574]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Congo-Brazzaville.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('刚果-布拉柴维尔', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Bouenza"},"geometry":{"type":"Polygon","coordinates":["@@Ş…ĔɩŌāˈA†ģŎfĎɊĔ„ŤǎƲ}ĢĢü•Äōā·ƒɕ҉óƏǕō»ǽƗI…ȧĝµMÐǓĢŭǾƧvÙ¶ĽȐɓʆªʀ"],"encodeOffsets":[[12961,-3612]]}},{"type":"Feature","properties":{"name":"Brazzaville"},"geometry":{"type":"Polygon","coordinates":["@@­ũ˹đíNjʃăŁƿħŊŌ˂UƦĔŰºʂɾƩƐŒĸĥÎţìu"],"encodeOffsets":[[16343,-3878]]}},{"type":"Feature","properties":{"name":"Cuvette"},"geometry":{"type":"Polygon","coordinates":["@@¸Šx׮ɮÂɚrźƆjĢƁŘŠǸ»Ǵśˆ«ɐʜ–†ĺýĖŶĢȮµǨĤŢkȔƽrőǴåת̐źƷ©ŝŠȱ¡ɥàSǷÖ·ȶEƳȫǍÇǑġūűŕɷ́İ«Ÿ˛ŪǙĸĊɡgɽɗŗ˫əõƧɣęñğö"],"encodeOffsets":[[14717,-1974]]}},{"type":"Feature","properties":{"name":"Cuvette-Ouest"},"geometry":{"type":"Polygon","coordinates":["@@ȄfþƝƾƪĹŀaâó¹ţEʉǎīŵġþĕ…Ĺʛ•¬ɏŜ‡¼dzşǷƂŗiġŹƅəqɭÁ‘ŰĮͦÁŬĻöīNíŪǙÒLƎÓɦȐ˪ŎaŞĔİʘůƮ×Ș"],"encodeOffsets":[[14616,1406]]}},{"type":"Feature","properties":{"name":"Kouilou"},"geometry":{"type":"Polygon","coordinates":["@@ȊƉʒĩǞǡŠœǂÍŇƛȥ—Ïƭŕl‘ŗƅōĻƢ•İkŚŋŦʙȰéŔƿŚĈȴɔƸĈcĒƍžU"],"encodeOffsets":[[12123,-3794]]}},{"type":"Feature","properties":{"name":"Lékoumou"},"geometry":{"type":"Polygon","coordinates":["@@’’̄čĪxȎǼè’Ĵǿ¿ęȶoÚŁĤݖƕßıċÓ¡řNjȋ»ĻţǍēƒčɉōe…ĤˇBŋĂēɪŝ†«ĦĶĬǘ`ƺŨlŶġزĚÕφ"],"encodeOffsets":[[13314,-2424]]}},{"type":"Feature","properties":{"name":"Likouala"},"geometry":{"type":"Polygon","coordinates":["@@¼ňVDzÞΞЪךìŤöĨÝǾgjÓְ¾ôĵC˭ãËŧ̟ŷƽcģĩřȧAћĝǫ‰ƣåĿšȵkƋĎƉ]ùŏŇñʟµēŒǁgǛƗljȵFÕ¸TǸ߂¢ɦ‰ȲªŞŹƸ˫δmƊæÔnŢćɰNǀ¨Ŕ…ɌˆÂoɮ¯ĀǁŊ¥Ğ"],"encodeOffsets":[[16836,2786]]}},{"type":"Feature","properties":{"name":"Niari"},"geometry":{"type":"Polygon","coordinates":["@@Öυ±ęĢ×kŵƹŧǗ_ĵī¬ĥ©ɿɔʅľȏÚµƨuŮǽǔġNÏų»ƅĈşƞŸ—˅ȼǁΉŔǝǢʑĪȉƊBŲĪɤɉĬ„ŖÝǰĝ„ĎƖ­ļĄĠɆ¸ŲÑ͘âȜÉƨǚĆƚïèȟĘćIŃ"],"encodeOffsets":[[13314,-2424]]}},{"type":"Feature","properties":{"name":"Plateaux"},"geometry":{"type":"Polygon","coordinates":["@@ŤžāĞĂĒVƈĜŽĠõĚòƨɤɚöŘˬɾɘɢhŽĉǚķ˜ũ¬ŷ̂įƏʟˁʑgƏ¾ɏ¯˭ŭQǯĸćkɃƇȗ[ŗņƕCƪý«ɽʻɑČàIJ•ƖģÞÙł"],"encodeOffsets":[[14450,-2552]]}},{"type":"Feature","properties":{"name":"Pool"},"geometry":{"type":"Polygon","coordinates":["@@¼ļnjȌ¢ŚČÔɒċɾʼþ¬žƩƖDŘŅȘ\\ɄƈĈlǰķŮRjΑȯλëvÍŤķĦƏőɽƪ¹ʁēůVƥŋˁĨʼnƟƧ§ijǓīõ¶Ə\\RٟŤĸňljĦ͗Ƴ¼ǾǖŎôƐňŠƑɖøÃŎû–ġġƱ~"],"encodeOffsets":[[14193,-3623]]}},{"type":"Feature","properties":{"name":"Sangha"},"geometry":{"type":"Polygon","coordinates":["@@¦ĝǂʼn°ÿpɭ‡Á†ɋ§œMƿĈɯmšåÓnƉˬγש̏dzæqŒȓƾšlǧģȭ¶ǍĬFʊºŤáôĿbƩĺƽŽýƞȃeǗFə®ɁŷǁTȩɲÊȶ[ĺĢŔCĜ੺RːƍŸ‹Ǣ¤ĈĭŜÔɘÃŚŇȾ\\éǚ~ƾł~Ȟо"],"encodeOffsets":[[16836,2786]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Cook_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('库克群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Aitutaki"},"geometry":{"type":"Polygon","coordinates":["@@nVBe[UnLX"],"encodeOffsets":[[-163631,-19311]]}},{"type":"Feature","properties":{"name":"Atiu"},"geometry":{"type":"Polygon","coordinates":["@@GUƒaitD~~Ft"],"encodeOffsets":[[-161876,-20481]]}},{"type":"Feature","properties":{"name":"Mangaia"},"geometry":{"type":"Polygon","coordinates":["@@rA_³Ms^AhTp’VT]"],"encodeOffsets":[[-161688,-22430]]}},{"type":"Feature","properties":{"name":"Mauke"},"geometry":{"type":"Polygon","coordinates":["@@wEOxLjzQB‰"],"encodeOffsets":[[-161101,-20663]]}},{"type":"Feature","properties":{"name":"Mitiaro"},"geometry":{"type":"Polygon","coordinates":["@@FtfJncK{sUYx"],"encodeOffsets":[[-161508,-20347]]}},{"type":"Feature","properties":{"name":"Palmerston"},"geometry":{"type":"Polygon","coordinates":["@@ZÈpž^”bxœš¸~ÄVCŠQœk|kÈÉh}\\ƒV»G“U_Ÿ©¥{g_‡S‰G‰D¯\\ƒ^{hsr—ÄoÄE„"],"encodeOffsets":[[-167323,-18489]]}},{"type":"Feature","properties":{"name":"Puaikura"},"geometry":{"type":"Polygon","coordinates":["@@†WicHYŠPZ"],"encodeOffsets":[[-163659,-21716]]}},{"type":"Feature","properties":{"name":"Takitumu"},"geometry":{"type":"Polygon","coordinates":["@@XjxHvjXuWugIZ"],"encodeOffsets":[[-163636,-21770]]}},{"type":"Feature","properties":{"name":"Te-Au-O-Tonga"},"geometry":{"type":"Polygon","coordinates":["@@uiwG…‚|R’IfW"],"encodeOffsets":[[-163569,-21724]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Coral_Sea_Islands_Territory.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('珊瑚海群岛领地', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Coral Sea Islands Territory"},"geometry":{"type":"MultiPolygon","coordinates":[["@@żǚҠë΢̪΢˜ǾʱǍ˓ֽʫۧØ©˪"],["@@–ʜͨ\\̄џġʃ֟Ь"],["@@ѴǶ¢ե˕«ȿМ"],["@@Ā̸ʹàƆЉɉȣͯɖ"],["@@˨̨̮ůǭ·Чǐ"],["@@ư˜Β§ăϥнƲ"],["@@‚ϞӀêȝ٩̣Ȣ"]],"encodeOffsets":[[[154207,-17851]],[[153347,-16696]],[[151676,-17992]],[[155596,-19687]],[[156978,-22387]],[[151136,-16920]],[[162593,-30662]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Costa_Rica.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('哥斯达黎加', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Alajuela"},"geometry":{"type":"Polygon","coordinates":["@@€]ˊijȘŞØ€ZVc⁈~Mhh”jdij·n@do®eXK—Æ]MǙ@ƛCȁHĥYßs[`gՕ‹@‡_`BkU•Hߟ¡{‚ÕRK~fZjˆ‚Dz€nRFŠ_`­D™æ@´UPp¤Ihƒ|§iƒpctt Yj`~]ž@’i@‹rot儯ªiÌËn‹Gct·L‹f§GštqAsŠOšmžl†²šPšXÀ"],"encodeOffsets":[[-87305,11344]]}},{"type":"Feature","properties":{"name":"Cartago"},"geometry":{"type":"Polygon","coordinates":["@@ƒéÌ{Ē¡ʪA“fğýķMāë\\yR·±ŽTŸ†oF{w½VWŒéfU¤}E\\ulI‚yRCtƒD±ScLdˆ’j€ª_nT–ŠFlZ„B®bM¶m|dqÌ"],"encodeOffsets":[[-85961,10391]]}},{"type":"Feature","properties":{"name":"Guanacaste"},"geometry":{"type":"Polygon","coordinates":["@@W¿™€™O…±knP™t‰rB€s€™¨HŒe¸KdsŒHÌmj˰©æƒpsŒqj@@‘^_}ZisŸ‘j…}oçJ‰•sQ•ģžsG\\…aÕpq¢M¯PÇT]ˆWR›lqq—ÿc__VoÂ]p“lGi›Hu“lGvcl‹P_b¯l­TW[Ïtÿf…hEh‡¾™’… ‘ĈenAx_†^žgŒt¨„TJpnhqˆH„brdUžtbE`ˆ~Zd‚—dnzQ”Fžiˆ_C¥hi_‹r`^·^gfÁrĄ˜Š…Rx¨FxZhv¿’t€^mr@jfs†êަQŒ•Č‘ÈCĈ£"],"encodeOffsets":[[-87305,11344]]}},{"type":"Feature","properties":{"name":"Heredia"},"geometry":{"type":"Polygon","coordinates":["@@pA^k~AÒrTiˆkLcŠe”\\vInvØt„}Mc£YqWO™\\i[}`£A—•Myn…TGÁ[É«eŚe[idss™ki¯SÑX_ht\\ZàGĦDȂ@ƜNǚ"],"encodeOffsets":[[-86175,11045]]}},{"type":"Feature","properties":{"name":"Limón"},"geometry":{"type":"Polygon","coordinates":["@@ʬ\\‚HÂS€m†Nz–€B˜_¤\\~[jPšŽXZr¤ŽNdƒ~®p’JVl]ˆRÜ|u¢ā\\Íd½ˆùt«¶ĕ¨Ûèċ†‡òę¨Ñ€…®JnSJ•ŸǕ´›~£ŠQpa¦S¢Fl’sƒ}K…[¥Z_~·¨}ZcI…b‡eQydepûw@ͧeQo~U´ÅfYâق‹š­EkrqJ†s‰›[}zobÊM€a^Q¸[zĂìNžþĸeĠ”ʩBđ¢Ë|Ƒê\\’"],"encodeOffsets":[[-85947,10432]]}},{"type":"Feature","properties":{"name":"Puntarenas"},"geometry":{"type":"MultiPolygon","coordinates":[["@@Xl¦RAq›m_b"],["@@tHĤR––tIŠpè†~’ids„o¨j„{Jgo£VO@³šå®C`_E‰mQyCi‡eYL}ÖQ|\\ÕEP÷rsJ‰qÈL`kŒ A‚Ô@bZªqªS®RfgWynspZlQK™ŠÀ™z“„n`G`•rmZyF§¼vGnv„o–ݘabo¼{ fPŒpŒOn^\\¦|~`€Œ¤~yœ\\tŠž…rIlq®FŒ™ÚZáÆeV³p}fR¤T\\¤o’}†UVunaLwYaq«i•Q{udq¡‡CyòėPÍciP•Oq{‘Ç_ƒ‡—…‘iLaÐyž™Es^s_]¼ÉªÏ‡ˆ\\ˆdPls¢X˜Ÿ‚X–…~Mmӈ…B‘nC’«t‹woN‹Kž¹AyÀ³¦Kf{jMIf{SÉYoųÂËVƒQ™hg‚|¿ÂmNB¦bNP”¬P\\K¼R`ºˆ[fW°_CYÂB†u°ÓÞeLwŠl†×°—pҦHstAz«€ąvkDœŽÃSMTá´Abz[È¢Æw¢§ÄqpbrmjGrVDՀѤY~…\\[j»Ž"],["@@‚žGvjœkHo”Á^Up``Ādr˜¨… YbP’‰¨Fˆa]—`U@áUcAGjw[N›wMƒ{uígG{fGŒ§¤}Ì"],["@@Ÿo•XWŠ„LŒWLorJ"]],"encodeOffsets":[[[-89184,5651]],[[-87118,10407]],[[-87273,9972]],[[-87136,10339]]]}},{"type":"Feature","properties":{"name":"San José"},"geometry":{"type":"Polygon","coordinates":["@@€¢à –GlV‚A_ˆ`Œ@֖ÒW°Tljtšct\\j‚fTΐf[‘r˂cn{Nµ­aƒAkY‰ES•`m©‘ic‡dK²T„CDszQJvk‚[~FV£êeX‹¾U|xpE …‚S²b]N€Épa‹£_{}[¥ž]Pmo‹O‹Ÿe»|ap—b•ÞƒpmuuH»E¨Yzqn_–_Hƒmy”¿š‰LškRoYmtXzeh­Q©T©raYÓ@B‹Ÿ_lÇKrIŠqtOø€F[Ö"],"encodeOffsets":[[-86602,10066]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Cyprus.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('塞浦路斯', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Famagusta"},"geometry":{"type":"MultiPolygon","coordinates":[["@@zGKOmX"],["@@H^ŠdÀ`VR[\\IZtNt\\\\V^Jr^fL€@`E‚BtN\\PpBÄdVRfFlZjHxflF‚Zt€bRBV–GtJTV”L tVhŠ^bClnExL^T„RPV^HvB[mFYe_™Q]SqIeikMks]sO{g_a{e‹UuY‹Y£ygg‡}IsSY³MUNmEg]skmES@wEo\\‰NEbsVQˆ•Šu€@Ex…Em•PeV]A}L]K™OUQ‡TeI[XrPBXgJSV@V[Z]NfflQXB€jVSjTDPgzYTYAF…oe‹Hsi{WkVo_[X^pOHc]KH¹–@U`[GqVGXxhFdSRC~ZHGZSFIŒ"]],"encodeOffsets":[[[34567,35840]],[[34360,36122]]]}},{"type":"Feature","properties":{"name":"Kyrenia"},"geometry":{"type":"Polygon","coordinates":["@@JY\\[UQ¿_‰cG]OEmF·AkQB]‡]GŸDLmPgEg]W@EXYLiC]R_W“N—KkdiK‡BaG\\J~I¢QNM NDpSfEpe†EnOI|XŽUtGbRª[VJ^IZF`Kz@dO~HfK„@|JlI¸X˜LrNXC~F"],"encodeOffsets":[[34457,36207]]}},{"type":"Feature","properties":{"name":"Larnaca"},"geometry":{"type":"Polygon","coordinates":["@@Ž~|Yb@^PdMFU˜dTff\\v]PLpBbIXNLZKr`ElWt^dSNZXNDh]šSZnnMTl`dUŽOZj€@º•OM@inOE[f]SU@YYa]M]O»HUKeiJwAWGecs[EOqA—WY[kEmYMiS{LYKOlJZFvcpiRYns\\WCoTWEsRPn"],"encodeOffsets":[[33932,35721]]}},{"type":"Feature","properties":{"name":"Limassol"},"geometry":{"type":"Polygon","coordinates":["@@@^PdAXd@ZV²o’BbGŒl^IhBjm„URg\\S`RpCNQhEOmtQXFpSXDt[ZmjQdoEuIYPk]YÍB™L›W‘]i_QCwoKUSS~lDbLHZ‡HWY}B[OpCdƒBKSYE[_…CIsUGkFcQoT…NEtFNM`ZBXhdDbbfRLbKV]ZxtjPARVdjR`bKT_FC\\"],"encodeOffsets":[[33561,35743]]}},{"type":"Feature","properties":{"name":"Nicosia"},"geometry":{"type":"Polygon","coordinates":["@@jRbAl`lDœU`@ÞoPQ†UpNfXXFrpb†Zž[bHˆAjLlc˜L”M`X^QjDZKFWX@h^hFnOK C‚Hˆ^A^lR¸BnEPFJ‹TEHYYGD}TQEcwgHWrU\\HV_YiPcVk_NSmmTY^™CgWMMYcTs]kX_FLqKYWMaJoAOKu^e[Se—cEVcN]Oa@{Z}gFMRoD_Q[TQhƒVingA]J‹kaH‘A±pYUc@BWOc@]yXSKWqmRSKkjGpdxE„axONoHQfWPR\\bJB†qRF\\iTW\\cZ"],"encodeOffsets":[[33350,36014]]}},{"type":"Feature","properties":{"name":"Paphos"},"geometry":{"type":"Polygon","coordinates":["@@dYX[jSE[rQA…aIQ[XORepGPMbwFƒcwHoliTLnQXrTLzWD[`ELS_aiQUcBQiOws^YLUKaeQaacCWgYAN_EMFs‡Tg^`o@_TkI‚[FyzKhMP@jKvfWBG\\szTP@b]nF`A~S^wxM†HhX`jmr[„o`IzAlH˜rz~rœZJXrhG"],"encodeOffsets":[[33350,36014]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Djibouti.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('吉布提', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Ali Sabieh"},"geometry":{"type":"Polygon","coordinates":["@@ǚúœĬĎTČFĮÇɕΏKYÿ_SXÉPOœ}ž‘eqGol‰bqsCƊÄz"],"encodeOffsets":[[43691,11530]]}},{"type":"Feature","properties":{"name":"Arta"},"geometry":{"type":"Polygon","coordinates":["@@~gĈ§LFPuQU’‰’y‚@bZEFrs\\Vb‚dÞfdhnGÀDŠN@¹ɚGtopQHeda{¥ĭÈċEčS›īǙùƟCŷŖMƴª¾"],"encodeOffsets":[[43405,11916]]}},{"type":"Feature","properties":{"name":"Dikhil"},"geometry":{"type":"Polygon","coordinates":["@@ú͈‘Ʋƅ”w©½NƳŸŕƠDÃyDƉć}å³µ^}B¯[][ÍMQTãGMY{QIoÝCOElsDñr‰`RvDȸFÈ[âoĆ`ªdvFì|Þ¸pJŒ°fîĶ"],"encodeOffsets":[[43049,12219]]}},{"type":"Feature","properties":{"name":"Djibouti"},"geometry":{"type":"Polygon","coordinates":["@@@º¼AĀLv] \\ˆÉəH"],"encodeOffsets":[[43955,11810]]}},{"type":"Feature","properties":{"name":"Obock"},"geometry":{"type":"Polygon","coordinates":["@@–TZv’FjhGzo^J‚p€„RZšdp~G~\\‚pŪ¼NGd©Öćâď\\\\`»lqdçDXUn—PĽW™…ɃKƒH[iD»U«§»aQstąŴ§¾uœ—¦_ŒďŬ@|"],"encodeOffsets":[[43735,12673]]}},{"type":"Feature","properties":{"name":"Tadjourah"},"geometry":{"type":"Polygon","coordinates":["@@x¢zzŒ¸^T\\”nznŽªÒº¤jÊ¢¾fˆ¼²ÆmŒsÚ՞“l\\@{Đū`‹˜¥v›¨½ĆųtsYgáKiumCÁR{[qi‘Os“Ekwcm}K•]mYƒdgUn]HgiKEć¨}h“xƱƆ‡’ùÎ"],"encodeOffsets":[[43049,12219]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Dominica.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('多米尼克', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Saint Andrew Parish"},"geometry":{"type":"Polygon","coordinates":["@@EKBAAA@ACC@CD]AK[WQBUmKGAZUVKNKFUBOJM@]GMJUXEPK^DLAL[NDP@\\ARBTOHIJKFDXW†j@PGNQHSHEN[NI\\ATLPGDG\\DN@HMNARBPABYHKHADYLQHGX@HGAMEKDK"],"encodeOffsets":[[-62743,15892]]}},{"type":"Feature","properties":{"name":"Saint David Parish"},"geometry":{"type":"Polygon","coordinates":["@@FLFZPJDN@RLHVnRA\\XBLC^@DDD@BBBABFLLBVCAQCKLGN_AOHEEQ@SKKIWDINB@KCOHIKWV@BKUIAOPGKGCSLqK@]ISAcMOIBRERIHYLAVKN@JJhARMN"],"encodeOffsets":[[-62803,15780]]}},{"type":"Feature","properties":{"name":"Saint George Parish"},"geometry":{"type":"Polygon","coordinates":["@@DBbCVF@PTP`HVNHLZKJGFQAQEeOWSMQC[cAQ{X@ZEPYPD`CF"],"encodeOffsets":[[-62864,15686]]}},{"type":"Feature","properties":{"name":"Saint John Parish"},"geometry":{"type":"Polygon","coordinates":["@@X…CWLEJIPGASBQ@[CO\\MBKCKL]aFQTaLWRi@AKEHCLRPHBLLJfIVKBICKBBNT@LRI\\@RJZLHVB"],"encodeOffsets":[[-62919,16015]]}},{"type":"Feature","properties":{"name":"Saint Joseph Parish"},"geometry":{"type":"Polygon","coordinates":["@@TTZRPXRLVDP@VWNI^HN@PIVALELMVUBY@QCMOIEYEK[ISOUGmNY@gSIFCR@\\QXCPYRHTOR"],"encodeOffsets":[[-62929,15834]]}},{"type":"Feature","properties":{"name":"Saint Luke Parish"},"geometry":{"type":"Polygon","coordinates":["@@|WBSSKOEEMMRIdDV"],"encodeOffsets":[[-62848,15638]]}},{"type":"Feature","properties":{"name":"Saint Mark Parish"},"geometry":{"type":"Polygon","coordinates":["@@FNPFTDFYFIL_gIWDEFNZ@JIH"],"encodeOffsets":[[-62838,15600]]}},{"type":"Feature","properties":{"name":"Saint Patrick Parish"},"geometry":{"type":"Polygon","coordinates":["@@BR\\dRDTNPXFfPJdNTB^JL@JSCQImD]OI@KEM@WEKOKUEIBKEGHWBKEIaSEKICKK`EJEZ@HAT"],"encodeOffsets":[[-62818,15626]]}},{"type":"Feature","properties":{"name":"Saint Paul Parish"},"geometry":{"type":"Polygon","coordinates":["@@hTZ@nMVHTP\\JNMBQIg@ILMBUGKUM_GSO@OUEaDCAEDCVHNEfCJMLERKTOJ"],"encodeOffsets":[[-62894,15760]]}},{"type":"Feature","properties":{"name":"Saint Peter Parish"},"geometry":{"type":"Polygon","coordinates":["@@BLj@XQbKRSbEFOO@UCQKOWYQSSI`UhFP@HOj"],"encodeOffsets":[[-62950,15903]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/East_Timor.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('东帝汶', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Aileu"},"geometry":{"type":"Polygon","coordinates":["@@XDâh„F†b’IBwpK`e@gn}Asa©…•‰EbpKX­I“aWyµ{TW†aXx¬Sn”XP‚W´"],"encodeOffsets":[[128530,-8824]]}},{"type":"Feature","properties":{"name":"Ainaro"},"geometry":{"type":"Polygon","coordinates":["@@djvžTx@´žS¶|Xz”b®JLWaoGumÛcsB}q]kiOnDƒª›t_fsXri“G›^wMw—MχE…emˆCŠO`p€qZ@fŒlLfuVOz¤hˆnfn"],"encodeOffsets":[[128448,-9205]]}},{"type":"Feature","properties":{"name":"Baucau"},"geometry":{"type":"Polygon","coordinates":["@@Nb_j™@ƒd}dSL±¹gQĥV{EKZZÏD‡aA}^¥UƒD§f{Uo¼PzM–_˜pPzMlbpJŠxnFnrjCŠ\\m¨]¢}î€Ü"],"encodeOffsets":[[129757,-8613]]}},{"type":"Feature","properties":{"name":"Bobonaro"},"geometry":{"type":"Polygon","coordinates":["@@ŒBLQ Cre€Cb[l…nϜqR±n_ÂGem‡m£gPyvUKe‹k@erYo…Z…sh§fb\\k~\\ B¬€S@o~qoayK«™fQhD„®ÐZ~L€†„~Pv„K "],"encodeOffsets":[[128094,-8951]]}},{"type":"Feature","properties":{"name":"Cova Lima"},"geometry":{"type":"Polygon","coordinates":["@@¨e€g†t†YP_D‰n‡£y‡iG«µ«Ecmk]^A }FlcPyzQ„_nB¤€jŒ@pKpqˆt˜J"],"encodeOffsets":[[128181,-9390]]}},{"type":"Feature","properties":{"name":"Dili"},"geometry":{"type":"MultiPolygon","coordinates":[["@@jsqsWE“{¯O‘J…aƒEágNà\\Mº@JnªEjW¶VdX¢Td\\"],["@@j@F{Q}o{A…SykosXk@{„pŒvPÊî"]],"encodeOffsets":[[[128847,-8694]],[[128634,-8329]]]}},{"type":"Feature","properties":{"name":"Ermera"},"geometry":{"type":"Polygon","coordinates":["@@Œd|AˆVÔ²t@h˜€°@X³O“WTmw«bWX…@³SwuciÁHm`Q²›rmÐk†a\\Dqf"],"encodeOffsets":[[128186,-8961]]}},{"type":"Feature","properties":{"name":"Lautém"},"geometry":{"type":"MultiPolygon","coordinates":[["@@_ÊhR²ºKžcTc~@„iša`M€^RŠghHĴ¶|pxV’JrclGbi¬IˆVzpbCŠ•¤ObQD‡iOkw{]m}ąÇïýKY½@“y}Y…}M·ZiS"],["@@kPAjnB@{"]],"encodeOffsets":[[[129783,-8967]],[[130388,-8647]]]}},{"type":"Feature","properties":{"name":"Liquiçá"},"geometry":{"type":"Polygon","coordinates":["@@MßWC¯@—gs@Ó±‡U{B‹cŸDKR‹AT~Elr¦Ö|–N¸D^ZĚx|SpF\\ZlA~h"],"encodeOffsets":[[128549,-8742]]}},{"type":"Feature","properties":{"name":"Manatuto"},"geometry":{"type":"Polygon","coordinates":["@@°P”|XFrtitt`ŖY€oØOz^PlM`—N•Oyp»¥Y¯F£Áa[@w’·LÕZav]Xu[¡•mˆsf‡J]Š‹`‘Jgbc˜•®‰`³D†–bªBtm~@h_foLAx"],"encodeOffsets":[[128733,-8787]]}},{"type":"Feature","properties":{"name":"Manufahi"},"geometry":{"type":"Polygon","coordinates":["@@ŠF´CŠ_–­d—ha’IŒ_^‰ˆIten‡­y«sçV‹woH•gqAyyqjWžets`©œC„m‚jP^l~rtA€dnÜHv"],"encodeOffsets":[[128707,-9016]]}},{"type":"Feature","properties":{"name":"Oecusse"},"geometry":{"type":"Polygon","coordinates":["@@‚`pBŽtjDbb\\~ŠX‚BNTŽ^PX¼D€X\\\\ŒLzOSC•YaRƒm_Ce…K{‡D{smZ…mm›ieBR¦s´—|›oUw{O_faE¹Î"],"encodeOffsets":[[127019,-9564]]}},{"type":"Feature","properties":{"name":"Viqueque"},"geometry":{"type":"Polygon","coordinates":["@@|V¨e„C¦V~]bBŽˆÐCYLY|FĦU`ÉiB³YŸƒsF£§}a‰a]É@³_§gÝN—E‹]WŽu^YbK֑¸@xb\\¤Â°E¦Z"],"encodeOffsets":[[129250,-8885]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/El_Salvador.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('萨尔瓦多', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Departamento de Ahuachapán"},"geometry":{"type":"Polygon","coordinates":["@@ŠDysÏÛG^_•CÍysT›{SDŽ™—ōºu¼Šô”dbš¸~´œn|Îj˜}D"],"encodeOffsets":[[-91888,14372]]}},{"type":"Feature","properties":{"name":"Departamento de Cabañas"},"geometry":{"type":"Polygon","coordinates":["@@¶I’tÐ`jjB®l„I腤AZĩķ­HMd·zāPkÃW­¨Û¨BŽ”‚"],"encodeOffsets":[[-91081,14276]]}},{"type":"Feature","properties":{"name":"Departamento de Cuscatlán"},"geometry":{"type":"Polygon","coordinates":["@@ð_ˆÛlm¨Q“AÜ§®§Eƒ¿yėtdzĎíȎx§ÆXÞfz"],"encodeOffsets":[[-91279,14402]]}},{"type":"Feature","properties":{"name":"Departamento de La Libertad"},"geometry":{"type":"Polygon","coordinates":["@@¬¨N®zzC~àĀfàKº¼RÔXx¨`¦icclåŠSƒšFù|wZēY—t› BX‹gyŁ´ƭb±Kďz"],"encodeOffsets":[[-91780,13847]]}},{"type":"Feature","properties":{"name":"Departamento de La Paz"},"geometry":{"type":"Polygon","coordinates":["@@hzWŒXìc„¾Vº¨ĘsŽzX¿ c†Å]ϔÃYŧ¿ıºïˆıÈ"],"encodeOffsets":[[-91307,13749]]}},{"type":"Feature","properties":{"name":"Departamento de La Unión"},"geometry":{"type":"Polygon","coordinates":["@@J~¨¨JĮb~gÖh¸I†¼˜j¨Rƒdš¸HÆc~ĂPÜa®·P‹ċAó‹Ýf_ªGA¿…EuËHMìw€}³½ÃwS©ǁb"],"encodeOffsets":[[-90214,13489]]}},{"type":"Feature","properties":{"name":"Departamento de Morazán"},"geometry":{"type":"Polygon","coordinates":["@@†”L”º_ŠX¾u°ÿÄrd}Gř·„cQÁi§»—ãC…jPt¿JÏÂEž˜TBvra–†haÈ"],"encodeOffsets":[[-90375,14247]]}},{"type":"Feature","properties":{"name":"Departamento de San Miguel"},"geometry":{"type":"Polygon","coordinates":["@@žĸjW²|¼_ÜbDžgb•‚qAu—SFÐÁÀIOs†iäDJ…g·hÕa}Iĭ§§I}sK¹È•VTˆá¸·H…ŽbĮeü\\´nu~£D‰ž"],"encodeOffsets":[[-90659,14075]]}},{"type":"Feature","properties":{"name":"Departamento de San Salvador"},"geometry":{"type":"Polygon","coordinates":["@@ĎC~`eyWݨōwîǞčcy¹§½UdƒWëŸAsœZ˜YĔ{xEú„މTkædd"],"encodeOffsets":[[-91413,14388]]}},{"type":"Feature","properties":{"name":"Departamento de Santa Ana"},"geometry":{"type":"Polygon","coordinates":["@@ ‰Js–wYÉ¥sJă»Jƒk{l™xDQÓ»L¹eßqnŸVon­m«Þ±`tÐCz‰€U|€Ø  ŒhŠEÌfJt¹ÒO|^ÐÈGŠbŠcžŒ„y"],"encodeOffsets":[[-91500,14767]]}},{"type":"Feature","properties":{"name":"Departamento de San Vicente"},"geometry":{"type":"Polygon","coordinates":["@@ÀF„ÄXžlĂO¸yNc®GŠ›™‘·›I‘—_ë­ÿTy‰‘™qDy`¨ÀZƓÄ^ЅƟdWÀ"],"encodeOffsets":[[-91034,14002]]}},{"type":"Feature","properties":{"name":"Departamento de Sonsonate"},"geometry":{"type":"Polygon","coordinates":["@@š˜Èƒ|TSœztDÎ`–]€ÜH²_¬Ý®npm UrmßÿD}yyM­«§µXĹOØıÌ"],"encodeOffsets":[[-92118,13997]]}},{"type":"Feature","properties":{"name":"Departamento de Usulután"},"geometry":{"type":"Polygon","coordinates":["@@¤Cv}žm[³fûaĭ†¸Gâ·S‡–UºÇēIĿX¡[tq]ŧŒőp±fCzšrŠ’Sz®Ā`쒘œJ’¸œš"],"encodeOffsets":[[-90622,14028]]}},{"type":"Feature","properties":{"name":"Departemento de Chalatenango"},"geometry":{"type":"Polygon","coordinates":["@@äM‚cƦ·Id¯‚gŒ³êsªÃÒCz¿˜w­kAiiÏ_‘sµJ§Rkn‡Üï`}_čD¥j§_WwwCkšl|I„Ą¼Iž¦tZʕxItŸŠ"],"encodeOffsets":[[-91500,14767]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Equatorial_Guinea.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('赤道几内亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Región Continental"},"geometry":{"type":"MultiPolygon","coordinates":[["@@wZF„€SM‰"],["@@^qE‘\\Ž[fƒjNtaæo\\RxWˆH\\SbȪBɌ@˾ADC̠BIYQ˟F̡HϿ͛BȷAɃ@˟@ʍ@­AU~]fw^‹JÁYu[‹AO‚]zov­PωqNs¢efxTb~VºxPf‚d\\H€G„jxr–˜‚ÌFf|tiˆH‚lrxdx’nTntZvA‚’†X|`ND|Sž‹Ę|°BÔI¤Y²€V^\\"]],"encodeOffsets":[[[9555,909]],[[10059,2406]]]}},{"type":"Feature","properties":{"name":"Región Insular"},"geometry":{"type":"MultiPolygon","coordinates":[["@@Vhf_NoWscjMr"],["@@[nG¾j®frhRÜ[hPX|Wr†’HĖz|’¬TxrZfÜE®HjR|]l•H—W“ic›Ão«w•Cu]aw[N—O«­Y}ms‘lŸ^wK¡bcAµrEp"]],"encodeOffsets":[[[5755,-1456]],[[8640,3383]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Eritrea.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('厄立特里亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Anseba"},"geometry":{"type":"Polygon","coordinates":["@@P›iÍpƗ[ęQŸƒ‹{\\åt‡M…ĕOáÚadTäŒAnY‚¡K{@ۆ—–Txa`Z­ò‘|³@»q¿s“O¯ž­Ž[¥xgŠIŒHŽM¬e†^ŽcŠMNcKwb{JM…p¯JÅ{WIi‰I³ƒeVUÞsJÑA‘s—[kÿˆ±˜³|¿_¿IuTJˆtvOœ‰†©g‰goÀƒjqLƒzū@õH•X•c©F»^ߦ¹ÄďœR¾ǃƊ£j«Ak¬C€R”Oh™¢O¦l´Q~Lxv~ŽtzÜHŌqph”N˜kxDt~H„q’AŒlKžd¤O°Š‚EÈgfA¾ÚR’n†ZºoÌބ’TâT–^^”bX`„’^r}’WŽd†˜Öš"],"encodeOffsets":[[38955,17967]]}},{"type":"Feature","properties":{"name":"Debubawi Kayih Bahri"},"geometry":{"type":"Polygon","coordinates":["@@ŌȈŠXltP|EˆixAöU†UĒL|ŽrBƒtoZVŠCP_cL[®H®³J‘_why¢s„CÚ\\Xg€a`@ps¸J€W„EbWÄgNsv‰Šg¬¡fT§zg€…nµ’ytsx—Œ×Žw„ƒ`VI’ù„HFi¤G’Ndyvw~D¨[€CPujC^§rO^‡XCŒÁ\\}~`Š‹d‡ro^X]€XzާfYb@‘€…^ZÓ\\ībif@‚]¨GnXT|bDBƒbQn{ZG˜—~¯ŽA€_NeO‹UabYnU“t{šfÆ·€eftXI„dMlVbMtTGTJShe\\SV¿S_pZ`°aŠƒFGTgJWfWdy†YPcTÅ|{ũ»o}[}HcoY™ƒQoIp]Hyig‘EYu‡Aym”Ù֋tÅn»±ĿƖ¹ńñ`ÙpwÈÁ²‹ôÂåüÓÐaŒ«¦u¾ŝ¼­˜Xÿⷀ­úsv±Č•ºßŊ«ÂÍ®ÁŽĻªĩœķŽß QZ"],"encodeOffsets":[[41334,14712]]}},{"type":"Feature","properties":{"name":"Gash-Barka Region"},"geometry":{"type":"Polygon","coordinates":["@@¬B¤iDŽƉQ½Đ›ºÃॼ]ªE–d–WöGŬ@„yrK„ip¿ŠhªhŠ…P›suI‡vSÀJÀ`´{²—‡l˜\\’tÒBtIVÝfUN³RYi¥Cÿq]Kgyq^—Óu‰D‰hq{õF‰ZQi‚³€IÕáƒ[o³‘CŒÂ}A}qƒ»wGkZ…{yd™BcQby`½ZytLZdAf‘œKn‚͓׭ZynBŠmP§ŽR†oNLn©¼“lŸWaTg»_ƒÁD¥_u§Eu_£˜ĥxSWqNáL£mµ\\eeµWYmiĔ•Ό̼ČîÌǞŒZk’Òɜư€îł˦¨’B~"],"encodeOffsets":[[37860,16686]]}},{"type":"Feature","properties":{"name":"Maekel Region"},"geometry":{"type":"Polygon","coordinates":["@@´„ŠJJj|XŠsKox³¦s@åve|ÑB»•Ç••q@čŽIVァJ]˜zrLhr^DĀj¦QZM´"],"encodeOffsets":[[39677,15904]]}},{"type":"Feature","properties":{"name":"Semienawi Kayih Bahri"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nz‚W¯a"],["@@{fGb‚Nrsoa"],["@@ODi™aAmqk_\\]l«OC¤bNSO´VXz…"],["@@lbbaPsWsyVBz†pEh"],["@@‰Sg^H`ˆHbq"],["@@E™‹EEj`rxD"],["@@~xpwkIJ"],["@@d‹‹uDY^lˆT|xI"],["@@GaƒWGxbVrS"],["@@wcod@ ‚r„L}¡`{"],["@@cz~@Yy"],["@@nFHʼn]WrrnE~"],["@@yrsŠ£Zik”d|naŒQY’tn€KGtifCNl~GTYÆ}R…Iw”BGrùn[¢UfHFp‚t¡AHz²B„Sj‰–en@NɳV©Y—fZ³Q›d]_§QmnqXsKonI¬žsTi€S€^Jv"],["@@jPˆ]M‰L]vG^jGš´V‚}’NZpAš¸„Ž~ôǤIJĒfYV‰xOZqBqv£z•b[ªájo‚£z¯X™t{v«p½FtµJ±tsD¯LQhãf¥@mX{V¯€»HydqJv½G»Mgp{[oF{fkp³K{N¥T_KZ—K]ŒƧfdÉZ[^»tO”¥¾…Tqcup‘BzyWqw`ƒN…ŒOˆfzDtUrl¯rětkv£D{_£Iµl‹†C`q¤RPš€®EЉÒw_S¬^Ž_žzbCZxvvR@nzE¦‹ ™Þ‘zyGw»ÁZU^›xuPw`[A«žUhQq´›¸]bo¶f€Â\\“rZL~œJn“xYVđV…BõjwF‡O{ks‰WŋȇėšoÅŸµP­—Gu™o‰wEuh‚…pcM}xsŒ©N[f»~WVD–YtBjp€F”f†S–iR]xsQaTgŒaEAŒ“Z‡˜¥dk„uV›ª³`Mx\\²›z…BwbUKg•c@A¼{Òuf@æ¥tw´Lp‰tIÆo°N†IŽa|LxMd‰Nd…]«fN‹G‰Jwh¦\\®P°t”rÀ@¼{´ñ’Y®_€wb•S…˜@ÜL|¢mZ‹Bã€cSÙbPâ†ĖN€sˆ[æ|ž„ŒR \\ĚoƘjÎOœ"]],"encodeOffsets":[[[41760,15868]],[[41132,16404]],[[41041,16470]],[[41123,16561]],[[40877,16713]],[[41140,16947]],[[40563,16283]],[[41295,15415]],[[41240,15607]],[[41249,15486]],[[41098,16156]],[[41148,16115]],[[41041,16043]],[[38955,17967]]]}},{"type":"Feature","properties":{"name":"Southern Red Sea Region"},"geometry":{"type":"Polygon","coordinates":["@@†|lYxH€¼r„B~Á~‹€D´’\\pâ„JÖ€´RjŠYöEr|ŠgŠCÔv¢IäJUύr@–––Èd@h–VLxa†Aœy‚±‚[Nw´_œ©vUlƒ¦cˆ—”YB‹bFh‹bStR^wjQT•e…E“oAiZsC•XUwKsV‹k‘‡E}h…CIh•@™€ƒB]yHu·YyƒOokHS†„„K€i ‡D¡˜Gœ¯cÍDÉgq•K‡…M—]qciN“W—F—k§AÑsHoMqlCf‘~mNOp‘˜@n…Šo¸"],"encodeOffsets":[[39180,15027]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Falkland_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('福克兰群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Falkland Islands"},"geometry":{"type":"MultiPolygon","coordinates":[["@@›QeSSdÂTTQ"],["@@q_ËbYbLAX’N‚Uf@b„zoOjklW"],["@@qkUFfvbO"],["@@‹BWNvb€BQs"],["@@a]uLBRwZ pnbzBD[gRi"],["@@]bz@[a"],["@@KRt\\|JX\\ŽIK[hwK]^qm]—j[@cbNbJ"],["@@YSe@¥_‰GkFS`ÜCDRÂLBvz[m]"],["@@X¡aKWE[‚h\\Ynj\\uˆmMml‚VFgÐJ`kSo"],["@@]G‹HQVˆ\\N`jGNaQg"],["@@kXJpDSkdAb]IOuO"],["@@¯AAVhNil‚Gr…"],["@@eQ¡vZVhe†S"],["@@XGŽT@u…DOMZp\\"],["@@zEPVtAFn–VdRw˜NNœNJqMwYaS}N[[MOm‚JA[aKGaokkFoU]_uMW^_FS^wn•PMdeNI~T~qKhzl@ŒUhTdŠ®AdetBC_qI‹u}SnU"],["@@dV^ŠG|B~UrNrafKRXhDÎ]ˆLrCÔ\\ ~_PKOU‰OEfl~†~oPt\\wŠz~EFMcj]ayiW„OpFrrp@OfoNzfotœTDgd[nJlI^Td€OtLXÃV{o]AZeS…Fc{Å}¡JYJiYAk{A@diPœWBOzYn\\VbUŽK˜gK–JÎh|XÔQ¤Vf^tUˆs´U€JpKpL¹b@N›K‘^cfsbF^WP—C]Jg„oQ…FqPƒj¡Z\\Uf„Z‚E Sb@FfeJgtyDMbÃ][L¥N™ˆEv…^FLšMFbxYÄ[¢i†U¦qXY䅮cžGhLXQÐC^d~M\\Z”FMdiLÇDx’|KF\\ab–LHeaGL]zH¢pjIR\\rANošSbJ–QVVfIFWÙ[\\gªCšVJ¤TnGrJ–hzjbG_eƒa»WN[’IT^xSžIfZpDˆlŸjOXTZix”OGhtP„qÔgàu¡g‰MhW]g¬H‘a«—}\\@m^O‡ƒ[mB]Wme‰F`j©aaR‡}fU‹k‰wc}k•YwuiHQmS_aUg[Ÿ{ON}q­_Nl‡l_My\\eOGgX][S«H™EQV‹RcJß_‹‡iGS‡FCn™A…[K_syµqmAuQa]rP^uR€Tm^JXwL[bcPVXz@]jyYg\\¡AWXyc~itCVW´sÁWmLQVZVKVLOfsTŸDcR@`wZ‡NANXG bLrUCi`I˜BfNÐKšPZP´PEbÁBS\\"],["@@Jk~JprLfMŠPwtlTpDNhd^n@R]’^N`vNjMhZxE^_[U†©qQRkQo”HŒ”g@U\\K¶yEZ¦abuL‰dCTÃlSTpRd~”zZ{n‹h[ZfcX`TqfQjv\\nF©tP]WmVErpPfrl]|O˜TH”|B„ILNªGZXNh¹ HPzfh‚u€S”I`[d@¦[ä_ŠHPV€FlhZM€JjUžPFY¢A~xWjcJqZ]ikEYiC›R•OydE~cJSs_XxlWRuƒLg^kYy[OjYrŠ|_fV†ycg@o„ZJi°aI^Z^ºoJ¯pOFc„CxG€X@–ePT³lcp–RG\\…ON`pA^{[CU‹AmLb^Nd†„zbBX`xšLlIĊT°RªOrR¢A|QRg–_cgrYR{hUn@vWGYÅNoTc[ÚOŽUA[gKŇHÁR_twE{LZ{‰POePwªY„GPi´GrHøQĜc^IRiyg[V_Y§OYUšU|fMvBHY}BƒUue‘QÃJR[ëgµAµQ“R“M@xg”LpKRU«FËOs@_i¡GXQ’VZbˆBQbW—CFa…I•e[W³Sa[EY[IGkFD\\ÀIC\\Ù@BR“I‰LIU‡AŸJmMƒT­FIQ«^Q\\qF³^dUpoC“¤mˆG`g¦SiUŠc²c\\eflˆDZQ¶E^]l“uFiUJ{kDFa`eQS`[}Qs@^~s^•‚cG¥^@g™@_e‰[AWgWa]_p@nT_SaZ}E_\\ObgNqgÓDa`oa€ANM¬MBcQe`E’`’}‹KUetDbObTde©WoetCVVn_`fpBjMLYŸYuinUˆB[iHqkPƒF›ZUV™EOUpBxƒB}huC{lGFiiBWS€aCI_~]vTfMUk€OMwTacU…SD_ºq‹[Ih§NZfmP±O]RnlmTNR‘^UQ¥V|€FiXCve^cOap«d€LWnBnUDS‚LU„®T_vq@IhTV‹FAX~TT\\”RDZ¯VEnlthQBUŠCfY”n§\\GptKrYhVEn¥NbPC^‚DhI‚f"],["@@]ZPp^\\\\]qcvGA[m@"],["@@ÑLE^œG|a"],["@@M–xwi]"],["@@„K^OGƒoNAVolHP"],["@@epFeR‰ScRwBeXƒDo`ZTˆJŠAJ_”IÂD¬A[UnlF`XFZt@TV|OPegBS¹G›JY\\"],["@@HVTx@@["],["@@CTxLJ]}A"],["@@ŸRj\\SYY"],["@@lL’mAIWkF_`]]}NVVœPO`"],["@@q`T\\‚@PT–Ep__efemWXsb"],["@@T]KeRgvjZˆwrQV_"],["@@RX`hq"],["@@“bŠJJk"],["@@a\\Xf’@He["],["@@gfJ‰pBXŽJˆÂ[€@†V‚BBS~uQ]‰{“gAsRyO[S—LRbUl”T^hfMl_L}šDdvoV_C•\\q^"]],"encodeOffsets":[[[-60479,-53687]],[[-62676,-53104]],[[-62639,-53128]],[[-61127,-53650]],[[-61177,-53625]],[[-61167,-53344]],[[-59952,-53279]],[[-60260,-53467]],[[-61126,-53466]],[[-62324,-53252]],[[-61130,-53239]],[[-62536,-52291]],[[-62639,-52272]],[[-61037,-53026]],[[-62475,-53114]],[[-62280,-53234]],[[-60839,-53063]],[[-62772,-52999]],[[-62190,-52825]],[[-62137,-52915]],[[-62187,-52559]],[[-61031,-52560]],[[-61268,-52612]],[[-61097,-52617]],[[-61079,-52590]],[[-61209,-52559]],[[-61454,-52560]],[[-61964,-52532]],[[-61289,-52495]],[[-61028,-52660]],[[-61155,-52656]],[[-61670,-52559]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Faroe_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('法罗群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Eysturoy region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@rOIKkBWbQBOuSAVc\\eRJve\\"],["@@hf`[ˆPºnlAvY~KNKqKgXY^LŒN LnSeIIa¢R~K\\S]e‡AFObOvCnLjEhSÊUNeWA‘T™H[HWYJMšQ\\O€K„[yA•FEO„IpSb[uKkAUMMgL[[I“|KhhLDTQjob[^…\\“VMEÊvkLqGOiUQP…b]D‡~ƒNmC[Vy\\sN[t“ta|qv{J"]],"encodeOffsets":[[[-6850,63511]],[[-7288,63798]]]}},{"type":"Feature","properties":{"name":"Norðoyar region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@rXlAljvDrOV_AKItSWm¯SUjsd"],["@@`PrY^sls˜FWˆoC_y@{ZHv™„cTs|]v"],["@@RHvG\\b_jJvUd]RJvRLpKNgŒTIEY\\QðgJMU]‹MƒTq@vchM‚GEYZY]O™F}b_d[RYEfgBMfggI}j‡xSj"],["@@L€RJtOHejmv_n[MmDsZ]xiZav"],["@@nTrGvYR_EMfajQCYjULZVB„YFM•k¿VURk€YVVn“^SN"],["@@NXpFDQ`IlJPW{YuI[JOf"]],"encodeOffsets":[[[-6570,63766]],[[-6980,63861]],[[-6788,63732]],[[-6869,63828]],[[-6753,63881]],[[-6486,63836]]]}},{"type":"Feature","properties":{"name":"Sandoy region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@fH\\a{FET"],["@@HTvBjI^iDSƒAy\\KX"],["@@ˆIzB|W–BnQPQâatSNW`QxE]UuU^GF_cM^eaW•d…tMhWZT¿M[QmdLJYXU|OVub"]],"encodeOffsets":[[[-6931,63179]],[[-7023,63257]],[[-7119,63399]]]}},{"type":"Feature","properties":{"name":"Streymoy region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nJ~]hcMKkPyf_N"],["@@tŒCPTvYZVRBtZThEzPpQ€MnYb}†wnK\\ea]’I~]X]jD„[XeyEy]\\G~V’QjSto£UZQ”HtQb[IggSZS€QQSPqSO}H{V‰lÓvUn]`™EalFhajyVELDKG£BwRelH[bƒX"]],"encodeOffsets":[[[-7100,63453]],[[-7434,63669]]]}},{"type":"Feature","properties":{"name":"Suðuroy region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nV@V¸NtSOPOzC‹amIdSŽL¦Ahc†FrC`MSSjOMU—F‘\\HUzOP[¤EN[wOBKtQ‚E¡WYOuFUEŽY’NˆsG]jY@SeKsRwLcPEToZŸbDPqFe^AViL@`XZIJ}Tcl‘dVTyX`RoZ"],["@@fH\\a{FET"]],"encodeOffsets":[[[-7170,63102]],[[-6931,63179]]]}},{"type":"Feature","properties":{"name":"Vágar region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@lX”SVQ`DlI^^äfzcŽOh__šEbIXg_MAaMoHaKhOuG}Qƒ@y^NUL™J\\^X|MVFmXiA‰TY\\kTG`"],["@@œZ”@‚]»CµH"]],"encodeOffsets":[[[-7644,63626]],[[-7849,63593]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Federated_States_of_Micronesia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('密克罗尼西亚联邦', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Chuuk"},"geometry":{"type":"MultiPolygon","coordinates":[["@@NLHZLMKOUG"],["@@@GUMKWKIISK@dfNZRL"],["@@GLBN@\\PDDSMe"],["@@DTVGCIUA"],["@@XMDE@QSUM^F^"],["@@YPEJRBNEFOEE"],["@@AKRAHC\\DBKgCKMOAIMFKcQOFBRGPHTATGDZXLERMVB"],["@@S]BMHKMCEHAV`^"],["@@CPFNNBASMK"],["@@EJRBHFL@\\FLJRBHCGSGCIQIEQBMGKPQF"],["@@A\\QJKJIVAJPHTE@EZGJIGUFEAiDIGEQ@CFBV"],["@@FGBMEGW`VA"],["@@NGPFLAKSTDEOYAAKUCSDERL^TB"],["@@OGATHHNGCK"],["@@TSHSLO{WIHARJJ@PJF@LOFNPERSDCNKHFTTAPUDKRBNKPEES@WMNQF"],["@@LNNCJIAMEKUCQNLP"],["@@IQKHK@GJO@ETPLVYP@JE"]],"encodeOffsets":[[[157413,5448]],[[157174,5636]],[[152884,6834]],[[156398,7056]],[[155521,7491]],[[152765,7536]],[[155520,7639]],[[153290,8806]],[[152776,7525]],[[155199,7512]],[[155484,7504]],[[155309,7537]],[[155521,7568]],[[155437,7535]],[[155259,7535]],[[155214,7556]],[[155378,7555]]]}},{"type":"Feature","properties":{"name":"Kosrae"},"geometry":{"type":"Polygon","coordinates":["@@jRRBPARBPKB_EODIXEAIUHERGE@QBKNIRFHKI_AMQcIEMQOG[B[TDNKBKHKGAIQCk@]HOXBLILDHNJXFHHdRJRX\\H@CTNJ"],"encodeOffsets":[[166880,5489]]}},{"type":"Feature","properties":{"name":"Pohnpei"},"geometry":{"type":"MultiPolygon","coordinates":[["@@GD@VTAKM@I"],["@@hlDAegEA"],["@@VAFMAGMGWNLR"],["@@^EGKK@EE\\UHHP@NKDIPCBVTHN@DQR@FECWRULHDXLLLOECAOGQKKLEDMNFFXVFCSROEGHM@MJQEMPWUQGAGVMCKDIEOYJKPCDIPCFQKeQKKIBKLIWQUHQTIOIZODF[aGSTEKBK]AMDGNDPIFWOIFOBYJ@RQNOZNZIVOF@HXAFJKDCfMHUIIFJNEFKKOEDVIZATDPPFdXLGHFQLJH\\CJUPEJBNfMPCNFRFFLKNBJMBaLDCRHFMTHN"],["@@SMF`PHHSIE"]],"encodeOffsets":[[[164564,6347]],[[161792,6916]],[[162121,7020]],[[162001,7156]],[[162053,7167]]]}},{"type":"Feature","properties":{"name":"Yap"},"geometry":{"type":"MultiPolygon","coordinates":[["@@OPJBJGCI"],["@@AC[KCJNHTA"],["@@YSGBDPJHTE"],["@@@_MJBVL@"],["@@KKQDNVVHHIMK"],["@@a^DRRLPSCOFMEI"],["@@IaAOHQIEGUS]R_IBQX@VHHNDLVFtLX"],["@@D^NZBJIJNVRNL^H`LPLHNRCDR\\BHXRTDHG@IGIBSPFBQO]MAGMCYCMBaMIODMGMUUMGDKGBWIGA[UICZ"],["@@MQBQ_YK@KOYAKBCRGJCVLVDV\\RJPJBJUAMJIRHLNPIEQ"],["@@OFBNCH^nHRPFN[AYKOUGMS"]],"encodeOffsets":[[[147929,7412]],[[147300,7553]],[[150570,7561]],[[147366,7558]],[[143896,9996]],[[141476,9840]],[[142952,10205]],[[141370,9682]],[[141513,9783]],[[141471,9799]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Gabon.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('加蓬', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Estuaire"},"geometry":{"type":"Polygon","coordinates":["@@uťēŹU£‘O‚½€vøuİèǾÐǔØ`ʼni˕‡Mµƒċ»ÿl{Á¹aÛLiÃuQfݍD…¡µ_O—É}ƒ·K·Ÿ—£IááՕţ½Häm€Ód±¹Ʊe÷“PķĉÀ£Buž¹ªg’LγTløDĢdĂ{Ő]ŀ¤œŽʼnȗĜe‚Ŭ[¶¬ij˜ŷĈ_wÌéŌß|DÚfrĤj_ÅÎ_JÁŽ©ÎJ΍AŚ•„]ÐXł¡¶{Ē~ÌÜ`JŠæN¬Á֜B"],"encodeOffsets":[[10718,1027]]}},{"type":"Feature","properties":{"name":"Haut-Ogooué"},"geometry":{"type":"Polygon","coordinates":["@@dŜrܲĊž´OœžŶ¤Jr’¤rBŦÄc²“ƐɔĴƢħɄåƘčIJuĘL¨¤°CŒÚ_ƄN´uŤsŤõ€ĵ’”Ť‘¶˜óI× bĬMБ¬£œßfË·ãQÃl¿µ¹YьÿQƒŠ©KÛsÁm‡Ĺv£û³ˆÍOáZ—]Á`‡£ƒį“JÇ_ÿyÁǏˆ³º©ą­—ć§\\¿ox‰eÇjH°¸ª‹‚›Ú‹Ĥ§¬ýšťëÕ]…ċNǛ΃_ģ }‚I°¿ž—ªAÌyvuĀužÉb"],"encodeOffsets":[[13058,-1937]]}},{"type":"Feature","properties":{"name":"Moyen-Ogooué"},"geometry":{"type":"Polygon","coordinates":["@@ɘFĜPŽfæiɪJ±ĕ¿gŸ÷£¡ûî§T¹eÏôĩNʼn°“€¹ ťćJ÷€ŃöĉĚ“î§Ĺ¿ī‡ëïy¿±Ýÿ¿kyWýñě‘ŋ½JÙ_¿Nĵģ“Aã¤R’…„zêcĦ»”“[Łž­„­ǂ[ĈOĸø”Ʋf²ºÔcnGãŤ¾Ö–ââ¤J ˜L¸„¸Ê~P˜¶`†¢ŽCeÞvRjÄÜKºb"],"encodeOffsets":[[11076,233]]}},{"type":"Feature","properties":{"name":"Ngounié"},"geometry":{"type":"Polygon","coordinates":["@@ĶĤÀMÚ`¾I’ŌòĜXþlzĀÀ²ÞzÀìðĬˆĺÀ¨”íĊęńõøĈI³åFķŒÇBñŒƒƈÐSijȔDZKįeíd{ømņſ~P¶‡ÌaÐZ˜µQŧ€³Ž[ƒÍX³û^]͗á³@¯ÀRş‹}×RW’¹lq•@ҊŸdÛ·ı@¼ġt˼U†ĥdt©ĮÛ¶mÌÁ’̟ùec¢­¶]ŀĜ Å†w‰ă|‹_®ơ¦“nç؀^B¦äŒaƄþâlÌ"],"encodeOffsets":[[10335,-1266]]}},{"type":"Feature","properties":{"name":"Nyanga"},"geometry":{"type":"Polygon","coordinates":["@@æR°ˆÌÖü°¤ľªV[®ŽªŪêúf̠žÂ‘nËܵªĭ‚sĦcV…Ì»Ģs@»•£EÁìŠxK¸ûüċÕg©CëĒ“Î½êYTÁ¡…ÛƛZƒØ¡µÕŇp³OđƎ{hËC©ÝéYĿÿij·ĿċàUì§ÂğĦŁĔñ¾j–I´ĥê{²ăĔ¹ªȍƜģà"],"encodeOffsets":[[10265,-2865]]}},{"type":"Feature","properties":{"name":"Ogooué-Ivindo"},"geometry":{"type":"Polygon","coordinates":["@@g’ēÀÞÈ̮ȲÄ Ⱦƈàc”¤äjÐrd¦ĎžJ؞cƂW¾ÂÆR’uêPœª´nĊA¨âƜ]thÊ·Ölö@ª`õšŅœBN¥–ç°¡u·^oëëDÓ穵©ōb—h{y¡ç­‹å±ÙvÛE¿¤ʼnÝëţöţt³vƃMÙ`ċPãz£Ĵī°•{ÃYĹìk·ñ–{ĩ½ʿ›ɭȑăȿç˻ıõgŸŦº¯”MŊóĪfÐSºí¨¢üø¤ Àh²Ė"],"encodeOffsets":[[11853,247]]}},{"type":"Feature","properties":{"name":"Ogooué-Lolo"},"geometry":{"type":"Polygon","coordinates":["@@öh˼IJɀèȒĄœɮ¾ˀ|Īò•l¸ĺëÄZ–|Ĭ¯¤ijäyČOD‹£¯K§vėĎıæƗĨɃijơƏɓ±”ÃdAť£qq‘£IŽŵP›³±ĉqÛcś‡’Ç|ÃIÇ¥¿E—¶ÏYËbµˆ}OŅƀ÷nc|fîLİȓDzTĴƇϋ„Aò‹ÈEĸ´æ"],"encodeOffsets":[[11854,-749]]}},{"type":"Feature","properties":{"name":"Ogooué-Maritime"},"geometry":{"type":"Polygon","coordinates":["@@´SKÍh‘º©v¤AĊ¿\\ć®ǁ®ƒł”\\¼“dĥy醃Q‘䣔BkËýábƃã‹A¥]èŗ”mƢ¥Ž­Œ`Ą{xŠÆ…€Ÿ€ě^Ŀ®µd¡ũ鍩\\­©U£Ľû¯ËÕ¯‡åQĽüs¶ŗŜĝГÈGþ°ŧŮğŊĈâD`ǾÉ^¼£PN¸¯àÕj£Ãi´­WDú—Ɔ²ƕǨ•úP¦ćƂH’€Q–ÇĊc²ÏňlfØßLÁ¨{–ĈĠâ¼·´L_°Ŝƀ–ÔdÜBö"],"encodeOffsets":[[9528,-253]]}},{"type":"Feature","properties":{"name":"Woleu-Ntem"},"geometry":{"type":"Polygon","coordinates":["@@мB͜AGЀE̢V͖îǶMün¦ÞXäGĚVĂW^^øa‚wŠŨƒÖB b qŊkÊz˜qŖr²YĔ ÀszZ¶ÉeÑTÓõák±\\Ĺe©“ŸHçWÃĎĻrķу§؝dI¥čqciÏ£ãd“ßȽƇß̭ȱÝÇĔ¿h‘ɩIåjeěOɗE|Âk¼Ā„ČN¶–ˆjÌ_ŊǓ×ǽÏįç÷vu¾’PV¤ĔźvŦ"],"encodeOffsets":[[10718,1027]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Gibraltar.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('直布罗陀', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Gibraltar"},"geometry":{"type":"Polygon","coordinates":["@@N@LC@MBKEC@QBEE[EGGD@JMVFLENIHBJNADP"],"encodeOffsets":[[-5480,37023]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Guernsey.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('根西', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Alderney"},"geometry":{"type":"Polygon","coordinates":["@@\\N@HTBPBVAND@JnDJCMKSAFEGGI@UMQA[IgDAL"],"encodeOffsets":[[-2288,50903]]}},{"type":"Feature","properties":{"name":"Guernsey"},"geometry":{"type":"MultiPolygon","coordinates":[["@@DFP@LCJDLRALMPJAJFTCJF@FZAXHBJNFRDPVRDNNLCJDXKHPARTADGNAHJbGDKEKE@EODEEEI@WCKGCMFEEK@IJEMYPOBGQIGBFNM@_SIFAHS@GDKIOC[DGEUFE@QFGASHQEKBSFEL"],["@@TFAKPMGIMECHDLKP"]],"encodeOffsets":[[[-2739,50620]],[[-2516,50668]]]}},{"type":"Feature","properties":{"name":"Sark"},"geometry":{"type":"Polygon","coordinates":["@@JFVF@HKBGNXRCFFJJGNC@IRC@OIGU@MKCOMEEBIL"],"encodeOffsets":[[-2440,50601]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Guyana.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('圭亚那', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Guyana"},"geometry":{"type":"MultiPolygon","coordinates":[["@@œSŒ´ĚÄN~Ú¬Ú£Äxð…ºT Ÿ ŠĘœ¦¼Pĺ[¨ˆQÈʉŠ\\ÚĞv°t²¬š\\†¦žr„ÆKžÕª­Q{zğ¥Å´[†¦ÌsæûĎBĚJúŜN¶ÂÔĂYÔjòÒvœîZ|¼E²ŒXü¢¾Ī`~žì¶ad¼ƊýŪ×ȲũŔēǪș”oÀĕøuŮǣ°ñWė^¹Yұɻƕ@ÓcçžW\\¾ĖÚäÔhøeÀ›ĜHÐsǨƩÒÙIJč¤Ï”āΐ¬OŠāĆğºǁyƗCÿ—ćÏßO㹓À͖Užÿ­ƒªƒ[uálÛÝB}mÃC¡fñaãf·—{ËFãěäœ@£¹©ŏ}‹JĭãϋµlåLãòßäģ²ſÆ}¤Ç¦hËy¯f‘¦gÜp¢užnÎE¶vl¹_HąðſkÏdēdžǽI©„ãºÇI¦A±º‹L¯ĀĽŠ»ĘD˹]}끕’{yÏR«µij~u€åmijĒŕ¹k‚ËEm³ÅccċđħćU¯¤ñGM•ăU{¯^Dñu±±PËu¾ſRÝ£R¥ĻMF»ˆuđûD‘fåI}ëåyƒX¥Ì]ÆʼnLǣÈïŊD«ž_¬ijĮĽlAÝC[¤xêPĪaèj´k²M÷Æq°AÜÙĦP‚wºPȶˆÔSÖ¶ÞO¸ÄĜŠˆ…Ј^ înp„ؘFâÐ\\dŒ_¬Ð GŒ¹L_°‘ŽnÆÅ\\†AĖ´¼¹ÞϘėT»„ċ_ùrŽò®ZKަ¦ZŚ„ƠCÊĥ¶î‘D‰´ŗád¥‘ýt•WħŠÇS˯̈́ˣ̺"],["@@–Đ„ÙÏ"],["@@Dʊö¤AÇąi·"]],"encodeOffsets":[[[-62888,6115]],[[-59878,7086]],[[-59971,6886]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Hungary.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('匈牙利', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Great Plain and North"},"geometry":{"type":"Polygon","coordinates":["@@VVipÂSªcpRFd†R€pD††‚F˜[Šw…ueŽQ”L°€žQ€Ä²Wt\\„b™œĈ§nN–O‚¦†aÖeAjb`¾^„KftiXamnF’˜Šƒ˜…f—Txž¥Êģ —–ÄpzLl@‰k£~\\”SzÅÒ`r‘tsRmoOqƒU›°VvgHBšJE\\£O›@mdċP…IubC`›n·šCV®rVZSŠ‹A}~ÀBrd˜ev`˜BĤg`b dzDÐK¦`VY†n\\̐x~V¬†ˆQ^y”W^\\vEŠc`wšN”O~‰œˆ®XrSdrÀ„Nf´J®~ˆa”VTv€fB^’~IhdlG^ôÔDš€MRb’QÊtºTðHŒP”T’¸V¨MÀƒ‚|fGŒ\\ˆ@œS€Œö@pvàNq°e^RxkBs˜¯Fm†QRm¬e†FxOˆl¤ZbMvd–Cv^„]nTšQˆ|ºbt]Fipy¨KEuniB{~…‚J²M„T’‘”aIaŒÙÔWžpĘBDizer“—Ÿ‚i\\s‹‰]BÁR‡mOH™§Í_½@ː‘g_“ËCs`[iƒ]iDIƒyIQeM_ec‘Cë¥sqYz£@[o‹§JmQcuum©iqL©‘]u£e]ŸUSo‡{}I€‰m¡ko@C¡Qqµ[eWFuWqug–sHe‘‡iTcpccMkãTy‘hQ“‹g—^slAlsy‹[M§NeSSƒFmoYQ©HY‹g{JWf…MÍFRabë[[DusZ‡FW‘Ãigg夣\\Oi…uƒDyZ{IYb—gaDuq‘D¡~›]—€}Fazã@½qiC‡m¹jcd›l…F}iÁTOYµqrk¿sDY§‰‡Uabç‹HeãGµH[’{H‘\\‹ÕGewsK³R‹oŸFcZ’neNVp‚”sR…IÇHSbjdb€zT˜œCfŒà[j¤ITªkl]¾H`€ŽE–enEž‰˜n†ˆ@´l|„Fb¥ÞE`{nPªv~Nt]¼`Ž"],"encodeOffsets":[[19422,48159]]}},{"type":"Feature","properties":{"name":"Közép-Magyarország"},"geometry":{"type":"Polygon","coordinates":["@@u‚·nKœbjM šJJ€dx”A®T~}ŒBT‰UY­qDU¸™œmD_va†JČOncœ@¤P€[ŽF€IA™hGUuœ¯„VPrnptQ’s_qÆÑTy[“¤}Šl@Kkoy㘕ĤŸ¦Éw˜S†e„——‰E‘nmbjWesƒL½]a_BiÕf…b¥•PmM樛ašƒs[±XÝR¯“KRf€†v‰x—\\E……Co…QEcoQ©dÁTjoUUUXµ†oÐN¦zˆTšHBn¥Ž×ĂnG~‡ŠiA‡”JzUb‚d@\\´‚k^r`¤c‚F]ŠPlîTifHdcеl"],"encodeOffsets":[[19301,48966]]}},{"type":"Feature","properties":{"name":"Transdanubia"},"geometry":{"type":"Polygon","coordinates":["@@¶kd‰GcjeíSOk^‰E£dq_l]³@[cVaIyˆ“jBˆ‰H}mØÃ¦AmGS™y‡M¥p϶…VW_^»Msu}O©|mF_¦ÝEa{ƒ³k‡@m…Š—FfmF•G_^½lkS©£J\\i‹ßDe—›ySaicTaÈG†JtQ“UofM‘mdY}‰ñ’yE£•GƒmK‘‹QwRSy‰KDo‰DenyXccÏ@LQ^™XeW¡\\]ayQ»`g^ÙOgL§kmj«v‡TÕNi^Gdƒ˜¥xyEùbUm‘DWd‘E€Œ½_Q~PhxBkr@jmHDvmF]’kfÿz¹tƒDϦ_J[ NN᪹B‹h‘®‰Hĕ–_ºqZ„iDƒjMj†LR†ŸHUr©‚K˜xNPŠ‘ba`»FÅ_EnŠ~\\`€ªX~ZAlv^Ð@’L’AxSZbcbœˆ£bMjÆzYl¿MAžsEWjfTN„Š^Xdw²ybn\\U’fL‚onj´EZ`քRfcr¬r«ČcJ›SÛz×VPˆ|Aڀ_^X^öJf]ÆK@[z“âDVl|bF”Cņb¬HohK¦Ybj\\i|“jÊhˆ¦kNtvmV’nÊvtGªm¶Až‹fK€{l‡øƒtˆRĪË¢KZQèL„M°NpZ‚W„V¦Aî]šBØWŦthR¦WˆVÔKÒT¤xPd®T²I"],"encodeOffsets":[[19301,48966]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Iraq.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('伊拉克', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Iraq"},"geometry":{"type":"Polygon","coordinates":["@@ȚĶɼŨˊƌвɆńưúʀŢǒĈɤÆhT¨PL^„ˆĘǦĘŀP”YØHäQ’J†IìNÔdæ‚Čg„NŒÆöGT¸ÒYǾĩǼdŀ\\Ų\\`M^ĎŴPR̤°°RÈ¢¶ªz\\|Œ̖ˆjrmPAhĠzIJZNpbZЍf\\HrnTpvpVt~†‚~MNqpA¢gÆYTTŽPpjŒZâHX[àWz‚Uvp„BXg¢wS`cŽ[VP®F˜{¶L`PĦQz}hzÀA”¤Al|FŠ€ [²Rî•bDjylSF‡ReEu«I½¦³UQXm€…KT^ šGp„CÖp¨|ETŠlvzrHtn´c„F®SRq}g~qHidOdyŽP\\_tETqk§~‹@ec›ƒOo{N‹ØEnR~‡vH‚Y†§L¹]]{WZqCguGScXg”YP—\\OL}‚gŒA|Z¶`³G›W}”u‰kž]Hcja[uHpjIVgQƒimSZo¢GŒzfOlV„K–Hz{’[–{^{|_Pilmrˆ^„I~R†fº]nX B„j†Dœ]@e|qbX|aphZK”d¨MN[qwA™ƒy[}PqU[omN•OH…\\kkI©RmI‰‰XLq`]Y§¬÷|‹rS¬\\y¥æoQwygC‡Šeq•Wq\\eIK‘RaheQ§zcGK‘cAs\\›AcqoE}{F[XƒDT‹EgkiiMTƒu^mIaiUi™œoIsZMh—KY`i@¥sHhWO¿GVƒŒWOaƒXqA[i•L}g`sX­|—X`®il{A­[‰[]v©Çƒ‰G…YoŸ@w€]¤L¤·ªÕLenUfuQcˆŸjQx{¦oe™°n¦b¤LTUWkzYz]_ë«úC~brE~©N‚@}ŽAcha²yD…Qs`Y£‰wÍV[šE‚c€E@imsCKq’MÐbÌAĔw²qj]xIĂŖsÄk±Pc†cVm¨‘̇d_º‹ºÜ“`HÂD†t¤W¢Epiz‡ˆw[ƒV‹`SšSiq’™nGB‰‰o@wnO^m†J¨…ImtyvSh^›zwpKLejKWmPa¦{T{Ƶ͛@ȑ@ƙ¢AɴAvCMбAqäm´wjwN¡h‰šrtOþāŒuP]C{}Hm„in}F›^q¦{ægnUÝc‰d_acX«A§vŸhǔ½pđH“Sƒy‹LcÈ[ziZ]t`zI\\Lˆbfb¢GpcZčpƒcdµluTydGnsAml«€iReGyJƒȹĂ˯@ƒY§»_‹]§•‡ÅmÏeÇo}Q·y›_]_ƒ…Ce‹Í©±}sc…¿Ñ—¯Ç£“Ń‘ɝnг–ͥ€ȿfʩpùʃ|‡nɷǦȵƴǁŜȍƒ͍ɸɥnjBȼɥĪʟłʡŀ˵Ś˵Ŕ̽ƺɯŐ̻Ʋ΍ǔͱĊǫªýh“ľǻ©µƦĎrçȴǯՈ"],"encodeOffsets":[[39725,34177]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Isle_of_Man.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('马恩岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Ayre"},"geometry":{"type":"Polygon","coordinates":["@@nVtN”LšVJCAmI]]wC[gKCUZ[@a…W}kISUIo@QpHT[PPNKRP†xdNfwHAT"],"encodeOffsets":[[-4607,55689]]}},{"type":"Feature","properties":{"name":"Garff"},"geometry":{"type":"Polygon","coordinates":["@@VJJT~l†X@bY\\DVhLDSZ]tKzGPM]]eW[_YSCWqSOWDOZK__gKKFD^[foJSt"],"encodeOffsets":[[-4580,55545]]}},{"type":"Feature","properties":{"name":"Glenfaba"},"geometry":{"type":"Polygon","coordinates":["@@j[FMfBvWIYQSqaoowA[s[qCYIFjSTDTTH^nGXbX˜ZDJŒl"],"encodeOffsets":[[-4730,55566]]}},{"type":"Feature","properties":{"name":"Michael"},"geometry":{"type":"Polygon","coordinates":["@@tpVh`jVTVnbZ~XBSxGMewcO…LQOM\\OGSQCD_wOWQuXeAENi\\"],"encodeOffsets":[[-4730,55566]]}},{"type":"Feature","properties":{"name":"Middle"},"geometry":{"type":"Polygon","coordinates":["@@pprbRTJZXRxPC`RDRop@TspI\\eC]LECKsIUBaUHc]G_QeDOWUGSUo@}SBb\\^Gja\\EZ"],"encodeOffsets":[[-4723,55470]]}},{"type":"Feature","properties":{"name":"Rushen"},"geometry":{"type":"MultiPolygon","coordinates":[["@@LJnFFG[YS@OR"],["@@ZJrDt\\€\\xBFYb[Hi[]AaCM]IyG]OcA@NaVo@]KFOcCCMaASK]PLVPDb`_JXVdH`p"]],"encodeOffsets":[[[-4946,55351]],[[-4847,55434]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Israel.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('以色列', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Center District"},"geometry":{"type":"Polygon","coordinates":["@@v¼X\\zÌÂ]€Ž¤IUrihL¢bLYrTx±€j¸’Ŵ”ORR¸Q{rFTU‡yE›dwMc‡“uQEo€ƒF…Me`£Wãp…dGP‹M{‰EƒB‘WS{ÑUk]…ymœuV{›qXLhcv†\\Kd…D"],"encodeOffsets":[[35499,32626]]}},{"type":"Feature","properties":{"name":"Haifa District"},"geometry":{"type":"Polygon","coordinates":["@@Œ¡EW”MG]^we±ƒM{uQŸÉ@o˜eÄCRfrD|oŸ‰¡w]BuwqÑqE|·RQQ“PœƦ^ôCp`\\\\üCnvVŒqlRz”Rv"],"encodeOffsets":[[35919,33678]]}},{"type":"Feature","properties":{"name":"Jerusalem District"},"geometry":{"type":"Polygon","coordinates":["@@l^ÒVT|’X„Aam’C–xpIXcÂq®T€xdmOUC•Lqi_TÓdoK•·iK›¥Z‰|qXIŠNlWd\\b{Zov"],"encodeOffsets":[[35657,32551]]}},{"type":"Feature","properties":{"name":"North District"},"geometry":{"type":"Polygon","coordinates":["@@Ht[NR–xĂFˆÒ@ˆPvO°`pEHa‰nR¤J`t´C@pz`I\\`´I‚TNh¬bmŒqAv”XžnxnR’e‡‘ŒD•jSNsu‘A]„Ulķp‰™¯[½‹cQ‹—­m›}WRgP_‹QTA›mvsemLqakDċr‡JOhTlc˜›b¿Q—\\y|m[{pqCQeÃD—f@p ÊvRN|‚„f²]xH^“NFX‹¢"],"encodeOffsets":[[35919,33678]]}},{"type":"Feature","properties":{"name":"South District"},"geometry":{"type":"Polygon","coordinates":["@@†CLc…[duKgrW|œvUn›†zpu|Y[aXcMkJ‰rWŠ{€Y]mKFesueRg~{ð^ņEtRÒVÀ¢ò²^\\äJEÝ_³¥åM—Vy«J­w­QC­mqmBcei“GuXsIciOCieOAwcƒ_›e‹@ƒQ]C‡µH‘v¯‹QsA‘NM‘`y]Ñ_Acm[¡i…Lc@¯…ÇM}[acÙRqMƒ­÷³±s¦W®X¢m®OÂkœİ©Ų{Â×njWŒÇŽWtfȏŠ@ÖeØýƪÑƲÅƴvlŽlˆxN`Q²`x˜†°¬~nŽ^f|Õ¬Îú Ð¸Ė"],"encodeOffsets":[[35499,32626]]}},{"type":"Feature","properties":{"name":"Tel Aviv District"},"geometry":{"type":"Polygon","coordinates":["@@´ŘhÀ²SwZqaKK¡jgVq£JÁ^"],"encodeOffsets":[[35567,32772]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Jamaica.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('牙买加', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Cornwall County"},"geometry":{"type":"Polygon","coordinates":["@@A]TaHiGMJ]c±Mãy§£|L£[HğžŻlċKYHgBkM}JiIyH]N[\\eP[b@`oVaXHRIfRnMdaX“VwMgLQv]`]|SB…h@^OTHdSn[Z_P]BGM[RKoBELOuYQ@e\\ETiJ_GwRZS^EZRTX@R`F€C”XL\\UV`F`„@MZLNl\\P\\`HRZTC†@CUZMLn^F´YjJVEŒJLJ\\W^HpOjCJPORZNIZLl¤fxJv@„I„O\\BnGVQtO~HHQhIVN`KrN„@jOnB\\IvBNU"],"encodeOffsets":[[-79314,18913]]}},{"type":"Feature","properties":{"name":"Middlesex County"},"geometry":{"type":"MultiPolygon","coordinates":[["@@fLb[HYQEWZeV"],["@@VVTA„gLVjAfQ†HVT´[jCb[^KbLbIX[”]ŠBVN^AVLlGTSNF~OtGJThJ~GV[QMJgXA”oVWbINQOQVKNgferTz_\\PRKµķkPfkScPOWUBQHWD{QO[@ESXIG‹€aXuc@_KQ]MESF][kkwyUW\\QBiUQVi@SKIT^^Kfsf[GMR[W{GysKoOSHcWGC]ZSIYgADT[DaWBUv@hOZZZGE_`UB_icuGwRaTUZaRgtoNEV‹„u^eLj‰B}M]mTk^WBkȝżGĠ¤\\žK¤{z¨Näd²I^HNGjSbB^"]],"encodeOffsets":[[[-78932,18315]],[[-79314,18913]]]}},{"type":"Feature","properties":{"name":"Surrey County"},"geometry":{"type":"Polygon","coordinates":["@@^B\\WR_dY~BbNt{tKXNVSbFXPfC\\kjMFNdBNM†EnMR_\\FLYAY^OBaxLSLoNU@ahcPaXKIiFSXQjBdwQQWNmIMSkESQeFg[cHJbaIEg[@•\\[BQSFK]Ae[eG[PGTgL‡GUNUp]ZafcRSCmVƒOqB]YMNXV†I^JM^UN‹IsDpUeWbHŒWJFT\\@RPC|GXR‚VAPXdOlT‚elO¶ĸ"],"encodeOffsets":[[-78540,18705]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Jersey.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('泽西', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Jersey"},"geometry":{"type":"Polygon","coordinates":["@@NPbAHHNIRARML@bFLATRdBPKdBJIZBHJNCTQDKNCdDJFNKTATEDKKUNSLGWIIULeMEYHQBmK[X]B@MQBJNMNBFYNeF[CMGAYLMGKOLWADRYLUO]EOBULNFPTF^K`W\\UPCH"],"encodeOffsets":[[-2308,50432]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Jordan.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('约旦', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Ajlun"},"geometry":{"type":"Polygon","coordinates":["@@ï³G«ñuw‰¿vu̞ĎÖGhrĦD–"],"encodeOffsets":[[36779,33118]]}},{"type":"Feature","properties":{"name":"Amman"},"geometry":{"type":"Polygon","coordinates":["@@ŠDĂ÷ÀƒÈlĒJŽŽĶKŠıë×ňďI֒ʎəȾȷࣳ@ʱAMØ{Øvp¤Ă[²›€kЂr@òŁUpº½¸È‚Z„Ŏļ"],"encodeOffsets":[[36756,32855]]}},{"type":"Feature","properties":{"name":"Aqaba"},"geometry":{"type":"Polygon","coordinates":["@@ƀÿ@Çm÷ÍėtíE«ÛÝiåŒã¶mĤPòÉdŖ¥ªƥª̱ٕİOü‚äm¨Š¾`Ő°ĨKԆè„p^Ò_zBĴžÄ}À¶Vêòņ"],"encodeOffsets":[[36138,31447]]}},{"type":"Feature","properties":{"name":"Balqa"},"geometry":{"type":"Polygon","coordinates":["@@šÐQĺkˆb´gð¢ŪäAÀuNcĬFÌ©QeōĻYƒÇ¾·o¹¯Eq¿±uÙI"],"encodeOffsets":[[36364,32442]]}},{"type":"Feature","properties":{"name":"Irbid"},"geometry":{"type":"Polygon","coordinates":["@@PõóYTÅ»b£w•žĥCgqÕHčvËãBoǢPĦnQúʚŶ¼Ąƒ®H€±ºQF³Èß"],"encodeOffsets":[[36963,33300]]}},{"type":"Feature","properties":{"name":"Jerash"},"geometry":{"type":"Polygon","coordinates":["@@xŠòvH¬ð´¤x¼aÁÇ|áõē˪īEMd"],"encodeOffsets":[[36570,32942]]}},{"type":"Feature","properties":{"name":"Kerak"},"geometry":{"type":"Polygon","coordinates":["@@œpVČx®I®¥æN˜¦ædêĄM΃ðZ¦a|×N×ʲBCûèËǥˋīÌUŽã¬ȓ¨ázŸ¡“á¿’"],"encodeOffsets":[[36221,31670]]}},{"type":"Feature","properties":{"name":"Ma’an"},"geometry":{"type":"Polygon","coordinates":["@@òUèX¤eƦŒ˜l¸uĂŪǦˌçÌDüࣴ@жХ¦·Ǡǩ˧ƗƓ˩طŋȽ̳˷ȳûÓ˯°©̲©Ʀ•¦cÆñÊģOµn‹äjæÜÞF¬sîÎĘnø@È"],"encodeOffsets":[[36298,31351]]}},{"type":"Feature","properties":{"name":"Madaba"},"geometry":{"type":"Polygon","coordinates":["@@dƦh¼ÚJ²vrÀ°FłV@ñqlϜ\\±£āuo¥bïYĩ„ăN"],"encodeOffsets":[[36326,32201]]}},{"type":"Feature","properties":{"name":"Mafraq"},"geometry":{"type":"Polygon","coordinates":["@@SÆôZOöĢBĊ»Đçʂ—jeňI˜næĚĒW’vĐǤ^ĖWÄ ĆĢȂœltNú¤xøOΐȈĠÀȺľĬÌǰՇèȳčq¶ƥǼª”ĽʛȗӹšԱſىȀҧƂšţ]¹‚ǝEÁÎ{âÂÈ"],"encodeOffsets":[[36891,33129]]}},{"type":"Feature","properties":{"name":"Tafilah"},"geometry":{"type":"Polygon","coordinates":["@@À‘”â ¢âyȔ§ä«VĬËāũ·v—kƥ‹£fçWñVſĀJ¬ž®OªŽº"],"encodeOffsets":[[36221,31670]]}},{"type":"Feature","properties":{"name":"Zarqa"},"geometry":{"type":"Polygon","coordinates":["@@RföĔÂÍǞFºŤ^‚™ҨƁيǿϛī̃ñʍɚՑJŇĐìØşIJĵLđIÇk¿„āø‰C"],"encodeOffsets":[[36756,32855]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Juguang.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('undefined', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Juguang"},"geometry":{"type":"MultiPolygon","coordinates":[["@@^fTMk[ED"],["@@hDQ]UZ"]],"encodeOffsets":[[[122840,26574]],[[122803,26604]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Kiribati.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('基里巴斯', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Kiribati"},"geometry":{"type":"MultiPolygon","coordinates":[["@@_jPHPq"],["@@zJ`N`Gj@^W@QcIc[cPa\\gHKL"],["@@mBSR@NbXNA\\kIK"],["@@WPcb[VH`¤HRLdC[DeCIeMGF"],["@@YH@‚VFDkJ[IG"],["@@ahanNLp}Fc"],["@@_TNPRKfgQISZ"],["@@XB\\UIuKTBXSDKZ"],["@@]TQn{rmlWRLL|GPORwP]neJi"],["@@HOUGWXYJQZTJE`O`QRcFH^`QjN_jq"],["@@g~]Ty|KbaXQHi\\YHMVPhfkHWpO^WNaZYFWPA†‘B]"],["@@IRPXV@RUE]gJ"],["@@j_psnYT[HEaDa\\wPƒAoSK]VLJPKNNBZOzWdEtDlIjA`SVYH[V[jUFS`"],["@@OTTLJo[‹OOWCdhRl@\\"],["@@FXlEBGbUkCiP"],["@@OWYD@NTHVA"],["@@PJZx@fY\\{X[`Q\\JbGNSDGVhMFIGg@[X[fQjMVWFQKq_oIB"],["@@aGMTVBZM"],["@@KMeBf\\AnNAD[C_"],["@@WLIZSEYDKVJNdMleZMjkA]MU[MWSOUuËSADV^hRrPfzpLL@ZQ^[V"],["@@KAGŒZ}EK"],["@@RkSBSj—OT[ROAUMQ_GZLTVLVFp_²¥"],["@@W@OfJDRaLG"],["@@fEpJtZHPPFf@dN„@PJ\\KPDBld[CWKE}L[EqDcMeAg]sW{ASH"],["@@NHfIVRRfRDDTfBA`NRONE–ETmrW@YIEKY`FXXHxBzOjsvaxO|C^QN]K_cMSSW{FYAaH}V]XELQrWXAVQTCn_`CVKzMXcFGYMGe@eI{T[bmVsdWVaJeTcHiA…N_JypMVMhOR_RoMOISDSTQbrjJXˆpSeu]IWBWVMFXpB"],["@@diF_z‘vuIIq~_rW\\EZ_v"],["@@XHFLpL\\ADHWƒNiAiIqYQSgQOOSR€Pfb"],["@@Tm|ITNUdLBVcOQƒFUDI\\DT"],["@@IR@\\O`]EERLRRDNS`©MN"],["@@Y[KTdfZEDK[K"],["@@TOH[LSXKnMzLVXZDLIgwGiHOLcnKj"],["@@n\\VFLSuIUKIO@gFMfSEUaZS\\CTZn"],["@@‘Nq\\S\\@dLTFuVW\\MnCfU@G"],["@@@KUM_BbARRHhCzUDI"],["@@HaBYLY^IEM[PQ`AlQ\\MFR\\Pk"],["@@^Cv[]SWWSTIx"],["@@KRqnNPZON[Hc"]],"encodeOffsets":[[[-155454,-11720]],[[-159677,-5767]],[[-175339,-4574]],[[-158645,-4146]],[[-175185,-3221]],[[181090,-2735]],[[180205,-2561]],[[179255,-1504]],[[180729,-1438]],[[180251,-1394]],[[178988,-1284]],[[173596,-886]],[[178561,-604]],[[177805,180]],[[177708,182]],[[179804,-1988]],[[179808,-1987]],[[177957,396]],[[178117,320]],[[177193,1020]],[[178117,354]],[[178091,441]],[[177195,1510]],[[177120,1365]],[[-161280,1926]],[[177121,1949]],[[176953,3161]],[[177412,2047]],[[177450,2054]],[[177148,3460]],[[-163186,3951]],[[-163207,4018]],[[-163073,3959]],[[-164199,4794]],[[177121,1641]],[[177573,238]],[[177573,238]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Kuwait.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('科威特', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Ahmadi"},"geometry":{"type":"Polygon","coordinates":["@@V‚„¢D`d‚ÞNŒIPLÂOFŶ^pĪsØA~DnSÚZfÉF‡PUVµd™zƒLc|s¤[QsA›x•¤q‚AFOY‹^ƒO™ZqJsv‡ĝA}EDžCÙ_ŗXƵCBh­®e†wnaÀP’[ây†g†"],"encodeOffsets":[[48678,29598]]}},{"type":"Feature","properties":{"name":"Al Asimah"},"geometry":{"type":"MultiPolygon","coordinates":[["@@~Th_F’MpLpb jrzfBPeh[uglƒ—EeZÅU{HõBiV^hA|"],["@@jJ\\W€Q¢—Ua}Vor…@‡Nj„"]],"encodeOffsets":[[[48917,30076]],[[49449,30175]]]}},{"type":"Feature","properties":{"name":"Farwaniya"},"geometry":{"type":"Polygon","coordinates":["@@v’tJRTD¤|GÆVfYRHƒb}am×Bĩt"],"encodeOffsets":[[48951,29908]]}},{"type":"Feature","properties":{"name":"Hawalli"},"geometry":{"type":"Polygon","coordinates":["@@˜Fk„vh€g†VNOQo@£qKßBQŽ"],"encodeOffsets":[[49131,30008]]}},{"type":"Feature","properties":{"name":"Jahra"},"geometry":{"type":"MultiPolygon","coordinates":[["@@B{]gjUöAC£QSsIu‘]oEŵÁPOK‹JÝMcC_ƒ¡Uw„Y~‚˳ʇ„¹HȁrHhxxȤ˜°ÀÒd†~tª²ŒÎDf†ž`„`^zœR¸p~‚Èf‚nЈƨ–Œ^¼`¨‚„Z˰@ȺāRa–IGo^©MHu’óvqvWB}d‰x™Tƒv‘mykt«lÁZ@Wk[Ս»Ÿaw‡‹kByqJevCŽX"],["@@dFT‚D|l„y`cGGymPPf™vB\\vN”Gp[¨‘’^yTMj‘zi^uAcYƒsss³§{a‘Tcx[‚I~opS’gnƒV@\\~Rb\\C‚°e"],["@@aAiZnV^m"],["@@yVwf~Vpr`m€_[s]UaT"],["@@[…uakKaRp„|ZtD"]],"encodeOffsets":[[[48917,30076]],[[49321,30544]],[[49244,30562]],[[49255,30621]],[[49255,30739]]]}},{"type":"Feature","properties":{"name":"Mubarak Al-Kabeer"},"geometry":{"type":"Polygon","coordinates":["@@àArL|ïÙYmT}Cbna~G„"],"encodeOffsets":[[49140,29969]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Kyrgyzstan.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('吉尔吉斯斯坦', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Batken"},"geometry":{"type":"Polygon","coordinates":["@@Ā\\º”ÊNr«¯}ĸţMŧ¢_̹X…Ą\\¾ûmwųÙű}ȅ@ÿšťN¡¢«f¯¡éy{Ÿý­L«­¥vÍĕWoíŹŧ`MÂģĶõ\\‰v»‘×@å«şr“‚ō¥c€ÛRÕaùˆĝC±‘ŁsġfUƤ‹ˆgд¦{œĈèÀÉàdyæ|êŞQł¦ȀÔżñĮ[È¡ÈoĞS–sGÚ@¬ªDþĞb®šŶ´oÆĦHº¤ÔN̍ºV¸…ê_P“ĈiF¼¾DPçžqŲČèc","@@h¿QÍĠûVÕΝzÖ~wĎÛv","@@ĮW“¦Ù","@@Ε~³Ì’p LJX"],"encodeOffsets":[[73694,41211],[72704,41148],[73436,40926],[72219,40834]]}},{"type":"Feature","properties":{"name":"Chui Province"},"geometry":{"type":"Polygon","coordinates":["@@çĪ‚ƴІjĈKԔ D ¬XȎòÀQ¶¾ɞt{¦Ď[ŜÛہŽ¡ŖăĐTƸáǎÇĘBê_ŴQكšŠÀĘĨbú›ƖjĪ}ˆ‘ŢxŒ†ƼeŤÚÆYôbŴUʯBŸó¹³[šDij_[k˩lā‡Ƶđ£Tř‡ƓFB±íMßß·mû\\ȟgŏx™oǟXÕUÐĥīg³¥ǝyŹGsÕ¼›¿“FÁÛãƥKăʽsĵ@Àŷ]ɓ¢¡ÈƟ|F”½tDÐÌW´ƶ`ĪWĬt¼Ąýʱ­"],"encodeOffsets":[[75280,43454]]}},{"type":"Feature","properties":{"name":"Issyk-Kul"},"geometry":{"type":"Polygon","coordinates":["@@ààîNA²ƔEڈ¤SŽŽƶĒÈ˪k\\lĴ`ŢC´\\ôºA ŎeÌ|ņX~qĮWêVǀÁÊ^ŘKvnŸwޞŴ·Ȋ•ÄuńDŤz{»XöÛÚgƄţŘI‚tĨƒƴ]\\¯Čþҗ•†Éº“ñyĥdĩM³i«đ‹uŃ@}‰ġióHñ{ħïíE•ƒš™ŁïùGãïñPs‡ű§NjF—uYĹĩ­ĥQw`ƇvÅöçbÁƁƒÌĺĭÌÁ°p‚ÆWrĂ҃ˉ\\ÓiõLɜ¶ĺù’×™ÇRM®à’´ÖūÆƑ`ītď}ˆŘ¿b§¦™ŀZ²ã`‘‘ÇGƗø"],"encodeOffsets":[[77457,43464]]}},{"type":"Feature","properties":{"name":"Jalal-Abad"},"geometry":{"type":"Polygon","coordinates":["@@ĠBĜmň†Ė©Ķgʤù˜jRä¤ÂêGСʐľËÌ@ĎÖúgºdƠ{¢Çɔ¡Ÿ^¿ĥû·De­Ħ¥ƈuÊšʼn‰ś¨Dž«ăÕĤ³GÙø‹²\\Ú§Ěĉš»ÑQõï_ąŝÐo¶Ł‘e­ĉZÝ×g¯©C¡lÙGٛę²ĵMķf‘½^‰ªĻRŏ@¾ÑĔǛµrŃtq„ÂĀƷƄô·Ÿ|ӍÓñ·Ét}iiĉ`{‘¿Ÿ¶Q͂¯Aٓĝ¤µ{ïÊÁ·{`EǀÁðĽK“Ÿ³WñÖĕ¨¿{ÅnŽĆ¦GĔ”~ŠČˆ€âÎhÊöDŽˆa¶x°ņoŠŒŪܚM¤Ì"],"encodeOffsets":[[72978,43219]]}},{"type":"Feature","properties":{"name":"Naryn"},"geometry":{"type":"Polygon","coordinates":["@@Ķ@¾tĄÉƦLÜäEÂÀ”»œtÖźHǞz´¦ĬhÏĦÖVǠWšpŐwȠhü[¸nƘ÷ÈH’’ä_Y±šĿ¨¥Àa‡ŗĐ~Ĭsƒ_ŬųÕߑN­ÈQؚú‘µĹʛöKÔjˊ[ņ„qāÅXoÂ¯ĮËËĹƂ„èaÆõƈux_đ»jù—ıAÁiĭJą–ĝ‰inĽ@ŠĹIí}ĭÙ¹Ƒ¿s\\ş•U¹Å[Ñĉíčw²»Zē«ãbŸ{·lÓijný¯ÌbȘ¨Û„o’NÞûrʥƽīEƒmӀ]ǔē\\ħTń[àƅ”¥†ţŎ]zʣƬ‡À™¼ęĊÙ¨±[÷ŒHÚģ´ĄÖdž¬Ŝ§ŊŠÉŢƇvĥ¦f®¸CĦü"],"encodeOffsets":[[75565,42948]]}},{"type":"Feature","properties":{"name":"Osh"},"geometry":{"type":"Polygon","coordinates":["@@| êz°¢¬e¢¡ŦMĀ™Ȇ@Ų~ŴÚnx½üă[W†Ëº¡`NŨķŤ°~q¬ÉM¹“ÿ[Ž€šļîEžÖ‚ƨ›Ú‹~ÔŪÈÉ|TĜ™´LpØÄrš²Ū°š„ŲjE–ªDh°ÞØĊYf®ł’pµŞÏ`ĆöðÒRˆ¿ʤƫ^yŤō¦…Ɔ“\\ßĺƒĨSiÑĠå™}Ó~õ{‘©ÏRÃÕƳī‘lĕRǻÙK™ÍëI·¯w_«Ò‹œĻÏáI¹ŭmó\\Ñe«fą}ď¿īyÿpů}ùBȷªƒăj}}ĵc—‘•įēĈ¡MÏĎ߇§ĭM¥¦šªSÌãZÅaá^e¨Pè™n"],"encodeOffsets":[[73224,40561]]}},{"type":"Feature","properties":{"name":"Talas"},"geometry":{"type":"Polygon","coordinates":["@@²®þÉ»ăīsĩXƵ_³ËXCϾsE“¹cùhčÕË@ĽÌʏÏ¢éH£ÁQã—iʣúĵhĕªŇ…ěnğA«båºĝV‰‘ą|uŽøèvĄĀs×ĨƮtC¤f¦ôĴbÌWÈd̉Žnǂ˜njÁždĬJǼ×øAƀ›¬·ĨǬddž…J»–kŊezd"],"encodeOffsets":[[75280,43454]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Latvia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('拉脱维亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Courland"},"geometry":{"type":"Polygon","coordinates":["@@©[iC@\\AXMnÓy]ËMg^“wsK”kii«q}X‘Hi]ROaSR›O­BcpyG«CDŸMM[™DBU|Eh•]]F¡Ir‰gJOW‹YFg_MVYS]~sWQVQcKMm°EhGr]¤KhJrCPUQQá[ãDJgcAcTgBuhc@ePoEwNgA}T@sN…QmBiO…`ÏSsZOX•I‘Z­MsO[PeUgAagI_eF‡YI›PŸwM‡o©CUN³L‡Sia…QUL‡q_m…M[oEUqm_MS[Ÿ]ZwI]ƒeCiXeMßUyÀ§äKŽLCbY’BtpÀJ|YºPDF€\\‚x¦ZŒN„AêK~dr|V^T¸rxRœhvdhf`J tjbx„VjLnAŠS¾PœEž\\„~htx\\RˆÂˆdxrxphj‚LdtfrPÈT¦T¸AØH”P²\\ÒnĜzǒ²ÄbÈXfBmQ•Ly\\u‚‰ŽuƁæwŒaƒl[JUˆiÄi\\UªYšEVMQYTizqP}VUCulo\\ojoGsP}|qn[]ˆUÖS¨AŽ‘x]"],"encodeOffsets":[[24119,58348]]}},{"type":"Feature","properties":{"name":"Latgale"},"geometry":{"type":"Polygon","coordinates":["@@fDBjŒP{fNZ˜_RUrWL_nJj`tTrU^YjLJRfDRnfFXYjR@fWN▆@N[ˆB’Okj…fAR‰^Nobv|mzwìs`•ZÊh̸Hbx@VhžGHa¬yAknD²ptdà@@UÐFMZ]D|„@LöJnUPRFjcNDf¼hcZCZd\\_TKjtxEbŒĞv`rPbZqnE€}J}^d„mP‹@^fM^drnAzPxfNnʜVdd`‚R@P”nlp‚HPRtI`fXKHARŠjvL ƒpV†@@fˆA@cÄBB^~@Bx’Br\\vDTRCŽ€SŠMlUK_RM„F^G’}SuNeo]_kEaTSC_aq¹UAOmShMAQ}D”giYNWkcBU]ibKŒBs›I‹ƒOeF[gCu]eHa‚FXTÀ`~@xJpZvEES\\Uf…ÈZNoƒUBsoAkmfefKvid@G[dIhaC‰~XgpD¢GfUMm}K[[Tk€BK[`cª‡Y]Jqk{rYbˆ™o}iM[_hWkUEooS‘MiYE]oH—icNSuCaƒo{D‹]}CxWeY]u]O‹DGMû—@_yk`™q½«C£DéPkN­VIQ±[OGTKV›zuFc^‹E]KG]é@eSmGwwu@kDIsaImÏ]ag•Joj¹FaUS_‡KqL•EeT•`wN‘DwCSn_V•DpšCvsj}NmV}F}lu|e^BT‰ZUGsfÕ^‘FA`S`U@el"],"encodeOffsets":[[26441,57398]]}},{"type":"Feature","properties":{"name":"Vidzeme"},"geometry":{"type":"Polygon","coordinates":["@@–MfM†G DâRĄd°` d€dxnÀ\\œ^²pˆh~l¤l²„€v^jHjQ”KêYœK†B€cxLbKhTr\\Z[nQŽiv@zL|C†]Šjž´EFM `[xbd¨LPZªVZP˜idV|NbYp`zFCbÈRre„RêzžDtN´¢z@BXzDhIŒBŒsUQ^wrivGhTDˆUXy\\~lpWœœE’WfWqSŠYNO†JJO¦DdeWW¶YV]|GtS†lˆW ¡Ä_ H€MŠZnYˆDDWguW‡‚[XLÆaNc~G‚[su€SB[vMVrkxIVQ„@´YÊHl}RitQ‚CH\\tDR_lICh‚tdAX\\‚Aš^|OnV~AxTFplLjXh@HSlOKYðDZOPaˆG~]šC‚S€H„GnYbDz_lCjJ¢G|R²R²EQehGg±UBgƒ’W @h[¢MVkREDSQuCq[‘AAw}@A]ÃA@d‡B@e…@oUŸ„uK‰iBQGWL_esJOQGko“m@OQc_UcɛMmweyOmBcqN]]eŒ@nOcƒ~]~IFrmaYqOu_őĝFaswLi`Sc[DYdY»gCedMEiOQmVõIadgUS`XVHlėJģ”WgcaÅgBrcTsIkU’‡FaV½cQSWnUpaEa_‹TCVlBb\\‘dmI£^Ir]\\‚r]pwDMV‡byCbYoeTU‡UqBOdq@}d™FkOŸ^MjY\\G^ªVBZiFBbp^@TgVAz£xgM\\_KO_EqPB\\_jcPCaUCUwI[syVYC¡NF—G_M—TgaaHi^_W]Fy_«N}P›g“OFUķUƒDW`oI—DhcO[dŸDj]HWc[FS„WBMnS˜{KOCyO]F_ƒC·‡}Is@FUqKû‚mD·KU_»AKbuEgZŸESTNPc\\¿BQlmK‘BM}[WT‡TDzb~}\\odMpÏv]VcQ]TõAW[B@€jDª\\"],"encodeOffsets":[[24119,58348]]}},{"type":"Feature","properties":{"name":"Zemgale"},"geometry":{"type":"Polygon","coordinates":["@@öB^SdR^UÐuNopc~[a}CyˆSXS~\\€N’AnLRkÀAd[MOTS FhYvFLa¼BV`¸LnCürLEVt@~J¸ˆ„DE`P^DzLP—|mTANƒXETd\\GXi^ C€cP\\gd˜CpJX_„CĸVEV”Pœh~O¬Mz`^E`Xj]bGhb˜S`N˜HE¢MZDzU\\txJDVbVDdO`iA[rO`Fž‚LP[`hN¤wByhU@So]AajEAY©UH]Z[Ni ]lPšE~cr@PcrAˆVSVpfaZzDˆaNUxC^oq^[Jq¤]nJ’ca[kADUŒSb`bFVo‚mXRT¾dbUˆE‚‘lVtJdSAqÆhdbXhĤ“ĘIGkWUT_hVbc@K{ƒ^CNYÏE@Vß@sc±omCBl«zGbHUgw@GaË·Ég–Yt_xënyu{paMŠ]BQ†eli‘P‡AM\\…@á•XM@eiQWZeEQmeCIQiK]ZqVsSi_mIK`qXQV—`MY|e‹OAieCgN‘JqZ£TX„oVP\\UJm[£A‰L]l_HuMI[qC£XUScHBT§K_DmS‡\\UZ]DifeI]U§COL¥LmrMbLVWNAl…TK`qPeXM‚Fn{^cpgdb\\WX‡FgaRc‹IkByWWJ‹CwILSgW¯@CkieiIW_PUGa]BO‡YmEMOFd…MapqLkEIYƒQaB‘UoamFƒIE\\i^©FFhuXGfēDENįB[egZf†_LkIçGIµkwK‡FcT­Nif}RçHuWđEI[XcU«kohqIeXkŒ\\DaŠqAQPwBKW_GqDgI£Lq^gH¯FNndLURXR}tT^UZ`NEhŒZPXhIqŠ¢J^E^‚g–{FAVšCN\\ N‚C¬DzHdo®AœPžQbTQPj^’G~W¬rjj“ltL”xh]ÌNz^mԐN"],"encodeOffsets":[[24071,58259]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Lebanon.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('黎巴嫩', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Beirut Governorate"},"geometry":{"type":"Polygon","coordinates":["@@Wu¥UU„ÔH"],"encodeOffsets":[[36396,34719]]}},{"type":"Feature","properties":{"name":"Beqaa Governorate"},"geometry":{"type":"Polygon","coordinates":["@@ŒÒ@Z˜ÌšŠFœno€¬ÈtjZ~vxrBŽ ÚD¸Ph¦vP„†ªˆzhˆº¾xšL~tL’z‚TÚKjNl•î‰Rsssx­ŠQJigaX£‚s{]¯[A•Cw}a‰R‰SA_Ù±™»–~FˆwJiÕ@Ûv›u£lÁ‡mJ}©aAwqe@{kNsÖo`orU}}Ý_YY^ƒmo¯_µTU€qh…G£­eZi°R˜"],"encodeOffsets":[[36488,34329]]}},{"type":"Feature","properties":{"name":"Mount Lebanon Governorate"},"geometry":{"type":"Polygon","coordinates":["@@t¶VœZF`°v’FئVXv|A^Žzšzvevt¤O¢[LJ°`f¤k–QĖFž]¸A¼iOgC·ÙŸqAuwY}si«Çp›mE™‰—Ë@Y‹Ñ}z@”{@³i¿AÇl"],"encodeOffsets":[[36237,34400]]}},{"type":"Feature","properties":{"name":"Nabatiyeh Governorate"},"geometry":{"type":"Polygon","coordinates":["@@Nf|ˆvXp´¨@ާBb@~mj\\rŠ[v|BŽvFrhøTKq@É^²xš˜fY¤®†HrgV¶Sm‘—‡QwmmÝ[ang«iăo{@o³D_sÑ[¹¤"],"encodeOffsets":[[36148,33896]]}},{"type":"Feature","properties":{"name":"North Lebanon Governorate"},"geometry":{"type":"Polygon","coordinates":["@@X€O|j€ Rb¾ŽNž€M|ôn¸¨tXLp_úº]®BČP’OÌL\\¢xRZ~sŠQ†RF›`Wµ±uHmS‘ysKK}w™¹½g‡‡y…©Oƒ¥u»j·B^ĕE•R£l"],"encodeOffsets":[[36505,35036]]}},{"type":"Feature","properties":{"name":"South Lebanon Governorate"},"geometry":{"type":"Polygon","coordinates":["@@ÈkÀB´j|@@“~yQ—j¯™—±w]@ÊLr÷SqguEAu{‰\\[qni@}Ža¨A@³§Wo‡ue{MMN¯_uP‡OÕDZjxXrŽˆŠR†I’ŽºL ŽèrT”˜Vžl€"],"encodeOffsets":[[36237,34400]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Liechtenstein.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('列支敦士登', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Wahlkreis Oberland"},"geometry":{"type":"Polygon","coordinates":["@@JETN¬GJEZB@YrYP[jEEIDQTIQQIO\\SAcSASWMSŸYMR[PoICEaEKDKMQJINFLdNjXNZO‚GVQRQ^I`DT"],"encodeOffsets":[[9716,48323]]}},{"type":"Feature","properties":{"name":"Wahlkreis Unterland"},"geometry":{"type":"Polygon","coordinates":["@@FPR\\J\\`fTfTAhURSY[\\OTSLGGSOOYAIF«HSMIF"],"encodeOffsets":[[9716,48323]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Macedonia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('马其顿', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Eastern Region"},"geometry":{"type":"Polygon","coordinates":["@@zS†„fI¶\\pc´HFz°Bˆi`̆G bRn¤TboĒ¦‚Jni–QlN|o@PqA™|ßt[Zr˜QtŸ«Ç{[@©l}]sT_iP›IeTħnarF¡ÆsAYltjaZYˆƒ@gzÏB™lu‹}c[•ÁAucd¯dIÓ±›@—rAn±Faš‡cs|•Z}Cq„dzvS‚pnCh––¤[j^tG„gRW~¥nhž"],"encodeOffsets":[[22575,43032]]}},{"type":"Feature","properties":{"name":"Northeastern Region"},"geometry":{"type":"Polygon","coordinates":["@@¢i¨Sf\\Ô]ŽYzv¤Fl„jGŠ€’sŒTb†ðŔ^~x„GŒAo’yžYŠ•hQŒ³|KV£SQmŸa…H_ˇj¯AEy³Godµ[eJ…ƒyT‘A­uoj¥Mcw•cl‰O­„JlÁtyC§X¹ähzBzve¤"],"encodeOffsets":[[21985,43295]]}},{"type":"Feature","properties":{"name":"Pelagonia Region"},"geometry":{"type":"Polygon","coordinates":["@@¨Q’“IsbmĂŒoÎKÆR¦o~³hiDooix­ŒP€{qwCRcwwH•»‰K_ŸoF}ia«DqZ‡cmq酃”ËAŸV·‘‘U›A·bQe_‘GśBA˜}rďLP¾ŒRTvW^\\lZ̄zºvšŠŸÒ‹jJ|žjà@¬ˆEfʈjÈ†xŠLœ"],"encodeOffsets":[[21887,42604]]}},{"type":"Feature","properties":{"name":"Polog Region"},"geometry":{"type":"Polygon","coordinates":["@@—Mr‰kUVƒ“cŠYVG‰º­]‡ÇdÕ»‘IKƒ_Or¯E±Q]Wx‡X±K‡uMgNÝ[£ƒ}n‰Vyt¥Pb_pÒZn_ŽJrx‚vRWŽE”†Pvc’b€e¬v€ŽahRpanVȊ€ž\\–A†~|Z†@Îvfn¦f¤SFoœ›CY"],"encodeOffsets":[[21724,43127]]}},{"type":"Feature","properties":{"name":"Skopje Region"},"geometry":{"type":"Polygon","coordinates":["@@€o hr¼ÎؚST|Hf£‚uAygyºã¨WzDÂsIk®ƒŠP‚kU}eyGM£W}qH¹QQ}“őG«£k{e\\Nˆ…A…tYzÁ¦^ˆ¹®HŠU‰Z”dU„lVqŠ˜N"],"encodeOffsets":[[21724,43127]]}},{"type":"Feature","properties":{"name":"Southeastern Region"},"geometry":{"type":"Polygon","coordinates":["@@Ô²cJc°vdÂB\\–~dvŒškÐAhy„@Z‡bYsiZktB¢Å‚EbqĨmfSœJjOSql¡y{^qA‘}YĻH¡mDycĿ_kuG˜¥©yaw\\ýW­@•fqEœˆƒW`¦nZJl~K¦rT–K`ŠkLRÜIvy€Bru|"],"encodeOffsets":[[22803,42554]]}},{"type":"Feature","properties":{"name":"Southwestern Region"},"geometry":{"type":"Polygon","coordinates":["@@`oa¦OzsŠU~m¤„\\€MÞNhˆv²LˆWw^X²RF€q°`PL„’JÖ¼ÈcÂ¥Zy†s†BM‡f[p‹“K›w‰Ç…iė‡Fe«‡ß@iI{Œi Ñ™‰¹uƒyYË[kX]Su‹QO½mwÙF\\¿ƌ·Z@†[~£–oˆXZO”_†¬°L’—jg®sT]nfTKt¨JŒz"],"encodeOffsets":[[21049,42590]]}},{"type":"Feature","properties":{"name":"Vardar Region"},"geometry":{"type":"Polygon","coordinates":["@@l|¬¤ŒH”‚R~ºRrGX~N¤zH€fV~–ddx¦Npi®v’Bg¦mX}hQHƒ]s\\i•£g•mDouTcyrƒ~D–Yt{ˆdb™²EBm˜qœ@v{AqzJuQÛlK_‰•LqSL¥}IkmY_¥}iI“^if‹oµI½‰xxdQ‚Drx|‹Ow®pjCpgj}´¥pÅQÍL‹pā€anJt‘”§RŽ”oŒ"],"encodeOffsets":[[21902,42684]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Malawi.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('马拉维', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Region"},"geometry":{"type":"Polygon","coordinates":["@@ºUiÙ¯[|ábks}bé|M²™ŒB†|”Z„oˆAÀäºZ¶– ^hΝs›V‘†q]‡€OVo\\KŒÇZ—d`Ø´¶Ú^cKÂw\\³˜Ñ|m´O\\ynĉq—D¹dŸ²ÅxQe厏H¯†ĉS·nƵŸÁF£–ÃÂžZ’c†¥Šk@g†qk‹Xw…£H½]u»µdé‚åŽwGk„¾sR£ŠXa·v¡MÃT‘ˆoW­Ŵūž¿[ñ{e}ÛA›¿ȫC{JwˆÓHĵ†WĂB¤œªĜOèXb¿ĺ~ŽO˜yª‘lo‚Ê{Ž÷G‘ƒmN݃FƟXµƒƒ‡sI·¦q@[L‹{›zM¦gž•Ti¢ƒV¿¸IŠÁĊ‘\\M‚‹Žr¾k¬Fu~‹E{¼õokBwsŸ~V¸‡vYz‘~I’fÍJ‘€H`РWt¡ ÅA‘tO¨x`raˆDú¢X´h„ÜC¢†¤šêq®LĔxê@¾“L}’Pfaº`NĖƖ¸_ŒXz_¨f’ ¨`¬kpŽº”bˆÖÜ"],"encodeOffsets":[[34354,-12660]]}},{"type":"Feature","properties":{"name":"Northern Region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ÁxL]dـ³µ_טcÈYL‹p[UPˆr^’…œUžtg͟]µ•¹Y¿ã‡Bƒp“Y…{‹A±š{Naêt~al{â°\\jÚ¹Vcp±^©cŸIUr¯ÚF ³¾bظâ`´g†XÖQ~N”W®Hð{h­GM–h^GÄq€x†„qE¶šÆj´vjràkX_‘†kìA¢¦d’Yj”ævŠ[¬|Š„@tÀÔ̚xŠ©š_t@’»¶y¸Bž`¶KvŸŽ“b…”§†HƒpElœĈ|fQ¬}¦™VÁĊ_Üuz»Bu\\MÓ{LaŒ•cmNEÄl–uz“Üœ ØÏ¦wxu´[ªhj[¬^‚‰‚W¬ãÆY–ŠŒV|iè]„~”C—Ā¿Vig}Nđr¡n_WÇf‰¦¹I‡À¿˜ÃÒµr§”yJ­w‘]™po™}[‡vUÏv}W…VÍRűUiVË\\wu©B­`ë€ubÅPÓQ«~µIwz½[­‰q‘³ƒUëXg©s£ƒwÇT‡‡ëMß"],["@@~܊Ri\\mW«§oGª"],["@@‚ˆMn@y——‡`W°"]],"encodeOffsets":[[[34837,-12539]],[[35508,-12374]],[[35403,-12302]]]}},{"type":"Feature","properties":{"name":"Southern Region"},"geometry":{"type":"Polygon","coordinates":["@@Ķ…ÔGx‡|IDžÀȬBœ~Ü|f\\òÀųŬX®‡pS’NÄu¢b¸¾ffœQ¼ °ƒ¶˜®ŸbM…\\‰ŜÃTŸp}vM’ɘklw®ªôq|IÆuneÖHœµàJvcäkpwĈçZÿQqTm¢dlIº`Ĩ¼ÁƌŹŚƳɔʏ†õ̐Γ@ȁž@ŅɳÀȽuʿYǟO³X‰ħٗF£qÍ[OqƒNk‚™TU»Åci…Loi»ri‘«AÛ£qÏ¿pµĠïj±M…t‰©ě–—Y§d¡]ŸǕCghR‚{zL²Ôn‚¦eªR~›l£c՞K”ÇDQ¬§d_ʱpY”q„{\\OeÄeY|wNeú±ž]…\\‡€kÆfþhpMr‘d…¶ŸŽsAovQ¤æŠj|Cp¦¤„M„r`{ŔĄüC~âÊL¤ix"],"encodeOffsets":[[35414,-15575]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Maldives.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('马尔代夫', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Dhekunu Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nQGM]BKRDL"],["@@Q[bmDeS\\]|@L^L"],["@@E[KKKd^D"],["@@ANNLXaX[MImn"]],"encodeOffsets":[[[74901,-701]],[[74845,-592]],[[74996,-592]],[[75174,-296]]]}},{"type":"Feature","properties":{"name":"Mathi-Dhekunu Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@LTXGSOOD"],["@@APFV`Bcg"],["@@G^PHD]KG"]],"encodeOffsets":[[[75023,228]],[[75189,271]],[[74745,490]]]}},{"type":"Feature","properties":{"name":"Mathi-Uthuru Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@MPRHLMOI"],["@@OXTHC_"],["@@OfVEE_"],["@@G^TA@QKI"],["@@N^CZPJBWSeGC"],["@@@TLdTH_"],["@@d@WSKT"],["@@BRIZJLPQQe"],["@@Z_MIKj"]],"encodeOffsets":[[[74732,6695]],[[74808,6719]],[[74826,6771]],[[74836,6813]],[[74866,6838]],[[74925,6902]],[[74957,6981]],[[74971,7105]],[[74743,7195]]]}},{"type":"Feature","properties":{"name":"Medhu-Dhekunu Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@GRjLRHFI]MSSGF"],["@@CcKBPb"],["@@P_[yOuQDPTNjFŠJD"]],"encodeOffsets":[[[75321,2160]],[[75289,1915]],[[75310,1990]]]}},{"type":"Feature","properties":{"name":"Medhu-Uthuru Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@^\\FYcA"],["@@SJVLAU"],["@@BTPVLIKWQG"]],"encodeOffsets":[[[74574,3553]],[[74715,4537]],[[75220,5066]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Mali.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('马里', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Bamako District"},"geometry":{"type":"Polygon","coordinates":["@@²èڜާUřÑJg¨ÉL"],"encodeOffsets":[[-8267,12880]]}},{"type":"Feature","properties":{"name":"Gao"},"geometry":{"type":"Polygon","coordinates":["@@ؒƛȞ¹Ǣ͟ǐɧŠŷ̪űɬĵҚŀǀǰɤAࠈࢠoAԱB͗«AaƻDΛđӅċÝţQũ£Ïwı›»őwŋš¯@噝ϯÐW÷͑Rڋ“ҍyʽɹýwơWaơ®ĵƒƗŒƓuʳĔŧ×Åäĭ;׈¡ȰaӆpŀDƈܽÎ¥Ƃć͠Ӫ͆ư̲࢈"],"encodeOffsets":[[-909,19496]]}},{"type":"Feature","properties":{"name":"Kayes"},"geometry":{"type":"Polygon","coordinates":["@@ŶőŠ×œ£bď į™Ɯe‚ñSťl‡Ǝį»ÖaxũsƏGįc±x}°Åx±ÿÓußN˜÷RċÝLJÃ}áŠıĂ]žĔæjŽ¥B᝗¹čXĻÜÛZ÷»{iċ¿oī\\ĉÛōší³‘ķšéXsïţ÷ù¨īvėIoÏÞÃ_ï±}ġN£·ĩ}‰¥Kë±GŅx•ž­AĻÈďŠűda›ÿ·»LYó­Y¯ijÕFǐwĀRØ£^åĄŁKséďħ¥uïv±ìóv“âÆÎKČº~dĄ«zN²iŖ®F‹IJRà{ƆõÐMĒǰ‰æĩIq¡¿ƒ·îhÄïÂíǃĆĺøbĨÛ¾vĖKˇöÉjWÒć€gêØƎˬU°èbĈaĜjNüލƠ±È’ƴ”ÎhĨ’âèWňĪèIƆǽ iDzƕĀĿxæŒz†ú̊vĎÈoĶ€ƾcƌʓŤŽļUĪŽʆXƖĮĆjQkljdž@"],"encodeOffsets":[[-9360,15874]]}},{"type":"Feature","properties":{"name":"Kidal"},"geometry":{"type":"Polygon","coordinates":["@@؂ϻϾʩtljyő^ÃŜ\\Š¿Ȩݨ‘„ãMÕĚÍnòGIJ©ˆvĄqаšåìčļyŒ³Ėh´Ď•źUƘāĪ“{ěFė‚×Cû¯O}Ónçßû”ÏǎūϞøϨð@͉@ُ࢟pࠇ‚ɣBƿǯҙĿɫĶ̩ŲşŸǏɨǡ͠ȝºؑƜëĮ࣫܆ٜ͚͸˒պѬǺպ"],"encodeOffsets":[[-21,22411]]}},{"type":"Feature","properties":{"name":"Koulikoro"},"geometry":{"type":"Polygon","coordinates":["@@ՎAђAӒBזA΢ByĽËǩĻƝc­Ġƍ°ƭAÇÝ÷ņ±µĩƁůɣ[Ƴ\\ÉİĿfŇ —sËŇßTą¹ĭUā¡Ñ¾ÑՋOĵîIƺvšeâāž~ÔśĸGß|Çèe€Ý¢cær~ãGÑƑMiřˆŏd£¯fđŋǽA©¿iOĞɹÚ{ŒÛ@kĮŗ]eâ¤Ō›°J¾yĊұ½ąƙó{Ï\\›īùǫÓȓƷƟD÷œiÅÛDDžÛð»Ĉ¥kć~¼ǴbĠ³ÀßdpĂėò²ðģĖŤøtðêWĸŢ´’™îÜŎ[ĊpĬŽÀjȼ|YøÛÜWļºĎž˜A⍦åiēā^şIJ~âIÄÞKQȗøàMÔv²ĀÆw~¯²wİdƐHtŽwŪÕbÁ¼ƍİkˆTŦòƛfÁšŸİaЛ¤şØŵŒ","@@ÊKh§ÒIVŚ¨Ù›±ç"],"encodeOffsets":[[-9360,15874],[-8267,12880]]}},{"type":"Feature","properties":{"name":"Mopti"},"geometry":{"type":"Polygon","coordinates":["@@ńĸâÅɀiǴOȨÚÔ¤Œ–ĞÂúR~ßȵÒ[zćuÃǼkľŞªĜž¢”ÎČJfƒȰtfÇøMœ³dÝƂɫƟècʬĒȞxȒELj³Ğ«ƠţЂħ˗ɿȽ¯̡ȓċgŇP×[cʅĕ›ǍĐƧ¨ĭëñãƍåF½ÏƟ@ñ„ãſßØŝMEąwynLJlÝǟW^ĉ“mĽœíØ¥dÛäīT©ļPþ«Đ}ŞÕĊǍÅďƓƗġ됧Wť\\jŢuž”˳–ŷsũœRƨāŐ͋Ȝ˜ºvĂYÞ¼ƘǔœÞEĨĜƠëɴ¥pğH[°"],"encodeOffsets":[[-5485,15927]]}},{"type":"Feature","properties":{"name":"Ségou"},"geometry":{"type":"Polygon","coordinates":["@@ڸAŤ®\\¯ĠG¦oìɳěƟçÝFǓ›»ƗZÝuā—¹͌țĂŏQƧŪ›Ÿt´•“ĕvišŦ[¨XʏƘĢĐƔǎÆÖĉ~ŝ¬ďOýLşï‘ÿij»ñijĸŝbƁqé…{ãã}©RŅOa¬ē–yůµ£Ƀ‹ƒruĮĝĂÇáā{ÃʼnŦÙ¸ȱµƉJ¡ýůɧ±ķŽÓŜ}áÙfƹuíJPĶŏŒ½Ò¢ÒVÐĮĆºàSƈt̟˜eňįŀ[Ê\\ƴŰɤĪƂ²¶ĺ…ÞøBȯƮğƎd®ļƞÌǪzľ"],"encodeOffsets":[[-6459,15873]]}},{"type":"Feature","properties":{"name":"Sikasso"},"geometry":{"type":"Polygon","coordinates":["@@CÈÆÜŔjø€ƠCȔƸǬÔĬú[œ|Ðƚô¾Ćň²zĉI½œ¯£ŋfáŘ^lĭÜ@|‹ɺÙPĝÀjBªŌǾeǤ°Őcš‡jĺƒNHÒ}äåq¡dÞçf{ÈHਲŰÊ¢þƊIȲ¶Ú·Ŋť|ÄâĂĈĞāvĭ„qɄŒ¶¤zŰĔ•b«ņPCÁΣ Ý¯gé˜ÿÙqćÝrÇ¿EoáÏL‘Çđ`ëSǙ£ıĭÕBºė…ij®W’ÝBĉ³ÏAīϕD•·«ęsŽėL嘓¹ŁJƟ¿Ŀ•„óH­‹¿Pěéyý¡V‡ÙĻLġ¾–Ȣ}Úiņ÷ećXbċěeŕþƒÓJŋ–™¥ïģ‚áwÝLËěfϯqýĐŇT¯e‹†HºÅJĤ·T‡¡Ý¦÷œđąÿߟŸb†è‘úïC…ªĿv_Ā×Ɗ~ì‘Zpðž†eĒÁÌśT}ÓˏïOS¨ĪŐVÚÞjP¸¾–‚´ŃxÞ"],"encodeOffsets":[[-8735,11770]]}},{"type":"Feature","properties":{"name":"Tombouctou"},"geometry":{"type":"Polygon","coordinates":["@@ǹչչѫͷˑ͙ٛ࣬܅ìĭ±ࢇƯġөͅĈ͟¦ƁܾÍCƇoĿbӅ¢ȯØ˅Įͽɥ@ieЁĨƟŤĝ¬LJ´ȑFȝwʫđçdÅ Ɓɬcޛ´÷NeÈȯse„ċI“ÍŽ¡©ěĽŝǻlvÄyĈÑ\\Ƕ}àùQĝÁő•Ó£ȧÙdzPȿjáÆŃķţ­Ɣ۬ɳƖ™Φ«ІÅԒ±ШåטýܔĕޮÕհđݐßלć٪±т¹ѸӒ@ϔ@؂@تГаˋԬͯͤɉҒ͖̋ȿضЙͺɗо˓"],"encodeOffsets":[[-21,22411]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Malta.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('马耳他', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Comino"},"geometry":{"type":"Polygon","coordinates":["@@TFNAVQCG_CEJIFCJ"],"encodeOffsets":[[14667,36882]]}},{"type":"Feature","properties":{"name":"Gozo"},"geometry":{"type":"Polygon","coordinates":["@@DJZAJJVBR@TDbCHEXCNIDGRGPHVQVBFONAZUBO[IgBIKKAWGIBYIOFCFUBYFQAMTSHSCMFHHA^FFAJMFAJ"],"encodeOffsets":[[14524,36936]]}},{"type":"Feature","properties":{"name":"Malta"},"geometry":{"type":"Polygon","coordinates":["@@FJ`T`LLCJPLALSQCSOMGHMRBbHFGV@JGKGM]ZJNAHHPDBFPF@WPLVELQJHLQVCHDNCHGJCH]JFRGHMY@EKRENFN@W[LCdVPCZMLMHATOAKJKUKFSKGFYCQEACRKTOOIFO@FI@KR@HEEOYIiBaNe@SLWAYJqJAJgJ@HYNWJSLSVSFKLBLCLMNFHEJZ@EJIHBPRBBRKHQDAFXTCHC\\]AEF"],"encodeOffsets":[[14663,36835]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Mauritius.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('毛里求斯', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Black River"},"geometry":{"type":"Polygon","coordinates":["@@BMmgAuD{LMOTUMId]@OiJOUEc`}PBLYIO]PaQU@imUH[SRgWSGM_BcvwARhrGVR^lBhNRaNBP\\NYTJlXZUNGdD^h‚GNZtRB@`f\\VZP@zTJU"],"encodeOffsets":[[58852,-20659]]}},{"type":"Feature","properties":{"name":"Flacq"},"geometry":{"type":"Polygon","coordinates":["@@fLPRĔ˜TcEU[OPSraDe`]\\iAW]ERwMKD_WA@oo@aOMQ{IkRiDUEb¸ˆŒxƒz_V"],"encodeOffsets":[[59001,-20650]]}},{"type":"Feature","properties":{"name":"Grand Port"},"geometry":{"type":"Polygon","coordinates":["@@à¾dCRLZGZRVFjClQ|JNRbPp@UMLgSSiMU_cMMRUqzASOQ[Issy[eMUBG\\]hqfBNWZMjOCP"],"encodeOffsets":[[58903,-20886]]}},{"type":"Feature","properties":{"name":"Moka"},"geometry":{"type":"Polygon","coordinates":["@@PJ`F\\YlQV@ZRZKzrjL`U„y‹w‡a·YQYHQKcDoRkLepJPSfOnkFeTMh@BER@H@b"],"encodeOffsets":[[58854,-20670]]}},{"type":"Feature","properties":{"name":"Pamplemousses"},"geometry":{"type":"Polygon","coordinates":["@@œ‡EeWO¤wi]`ƒOQeKiKyqYLG„Ub_GMJ[AS^N\\VLIXFdNTNjfTFVTPI\\fD@W"],"encodeOffsets":[[58952,-20495]]}},{"type":"Feature","properties":{"name":"Plaines Wilhems"},"geometry":{"type":"Polygon","coordinates":["@@BG@a@GFQ@ANgfSlEPmTeIOfolKpQß½UCSRcUCeeCJPKZOA_~FdPVjI@Pc^NJSVPžKNC|Bvnh"],"encodeOffsets":[[58853,-20666]]}},{"type":"Feature","properties":{"name":"Port Louis"},"geometry":{"type":"Polygon","coordinates":["@@\\BNI`HVaHƒYQU@kR[Z_EOIAHAN^zVRPE"],"encodeOffsets":[[58886,-20624]]}},{"type":"Feature","properties":{"name":"Rivière du Rempart"},"geometry":{"type":"Polygon","coordinates":["@@ē—_„j^£xXPFf›ˆPAF^hbRDpQdW~KLyC[To`[@UŽS"],"encodeOffsets":[[59134,-20591]]}},{"type":"Feature","properties":{"name":"Rodrigues"},"geometry":{"type":"Polygon","coordinates":["@@gMcBmrChTL`EVRNEpxNKZTjV^DŠ[PMI[L]ƒsWHwMq@SGDS"],"encodeOffsets":[[64919,-20232]]}},{"type":"Feature","properties":{"name":"Savanne"},"geometry":{"type":"Polygon","coordinates":["@@XTQh\\TVGjnV@bR^OfDDfdVTQVD‚OPDNiXYAMre^gH[gMcWcGYBsQ}P]C‰dOMqG‘hEZ"],"encodeOffsets":[[58751,-20971]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Monaco.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('摩纳哥', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Monaco"},"geometry":{"type":"Polygon","coordinates":["@@HD@DPLHBHFDJLBFDBIEBGCGOMABGHBBCSMSJ"],"encodeOffsets":[[7587,44780]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Montserrat.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('蒙特塞拉特', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Saint Anthony"},"geometry":{"type":"Polygon","coordinates":["@@†Oj]zGJ]_g@cZizCh"],"encodeOffsets":[[-63726,17139]]}},{"type":"Feature","properties":{"name":"Saint Georges"},"geometry":{"type":"Polygon","coordinates":["@@FhXtXRjuDyHi^"],"encodeOffsets":[[-63691,17131]]}},{"type":"Feature","properties":{"name":"Saint Peter"},"geometry":{"type":"Polygon","coordinates":["@@WQWsEg…PCZX\\F`^rBdpIA_Tc"],"encodeOffsets":[[-63664,17186]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Morocco.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('摩洛哥', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Morocco"},"geometry":{"type":"MultiPolygon","coordinates":[["@@BwMU‚kLW¤avpežorPŒFA¡‚s¤iJ‡|GbY¸qškiGq‘esKcnWx…ASngHUnm^A’aāąZmˆuzKJ^‰šõañ…ůxą·Oƒ¢u€PXK`›‚_L›OqZcc}[QC•M_cQc›J@Wc^wTKbwnSv™Ji¾¯c\\…_iJe[yµcœ·ĮƅĤ™Ťā쭆]TYiuuaiu‰eecF›[UWCkSoyg`a@k[P›‰gmcXSÐd†Yh}ToyK[]sS…EcTÅEwP™GÝRmPÉWĵv_I‰NåtuHYK‡jÃM]ZXᇡIÅjLQ_wL³I‰HoOKTġ]­µJÑMùJ­G›Y†»^gC_|‰\\oHqMoneBi¥KŋoBKƃyýaÉ[˽ÃEC@șdO[_…]aCG]iG[d]uDo_QJkfCI_q]MYjwV]iG¬FBf˜hTcE§„GvnRz{|\\XŸiç{YHW}_Im}D—J`o_­WeuImŸeK[—m}J`…WMJ¿SƁQƣ³ʋȷˡţ‰sŵģkQā»Weƒc§KeR[{ġœ¯Í—©o‡WZyAoZkFˆsgyGO\\RrdhBZ{b¡XÁM_W‰@•K¹ciBW¡P¡Z…I¡Y•L±GyBqO•LyKŸqY[gHyE—NKQ³E‘Ys{}[³Lm^‡DcVÁ@UP‘S‘TcV…R‡@‹c‘[}céߕU_Q[JÍ_³@¯XuSOUBoY}sAíyc©™Y©{{Wcycݍyk“qsMimqO—‡[AŸ}ϹqoM]•sÓw­sßy@ŝ@˫Bȫ@DžAʍ@ǧDɿ@ɣ@Ɠ@ɡ@˩čAʥ@̯@ț@ɣ@ʥ@˓@Ʃ@̳@ʋAǫ@ͷBB˩AǙBȝAƒ@ƕBȝAƒ@ǙBǙA@ȝBȟA@Ǜ@ƫŽÙ‰œ½ǥwơğɇƁęō›ŕÆȃRáhʋJír˵Lďlʳ̟Dc@ʿBȁB̓@͵GƑAˋ@Ƒ@ɳBɿ@eBʷ@ū@ȩ@̇A—ǭ]‹mI_E¥o·Gg@ÅR•ob[HMj``Rza|Z”hŽCÞVŽFtPjMnLœb¾GˆJ„X€J¬d²@lVA¸N`DxIXEšz†Yœd tll~NfC|`pjÄX`X”\\vd¤|ZPTGlVbœ€dvf^zC`shB’VŒ^ €Bf`fd~T¬C\\TdBl\\plXŠ|T^Bx`¨HˆI|R†Xrˆ¬CfW\\^„h@´nf^‚ˆdœBnS|kn{P\\vvhޤVlG\\®ÜAxbX˜vx¶q~†jbvfTL`rŽf``x¢n”†xRrzjUZkGV‚M\\Ax}b}i@ukc{SEkKsmϙ‹_ucIGb ´@flbjºZhxt‚’„rNT²’æŒÐšbhG^VhnXplL^rf¬²¢’ˆjŠ€Zh†Œv”„Š„rjpŠdî|ˆjNxZrDhŒhºœPVIŽ\\¾l”j¼@¨JXPØU†UNFbQxP\\BvKœ`†@¨`vA`lŽCndœ¦†¶VˆD‚TˆTdFpVvd¸bTªÊPnnˆV€PRdŽV¦AŠHh_Št¨ž¸xt´RzTvtšzŠ”~¦ŽA„HÐbÆx¶œ¦nd^nRä–̐´”²²ŒÆ|Ìl܄Ôv¾AtV®|š\\|Šœr–HlnŽVŒrºVh\\®VjX¨z¬Jd~Vf^–^|vdŠ`PXœPNRŠ^VL`pVhp°DŠRƖdĞ`€RìZêbžNȌ˜‚VNP¾x’jšd¤`¢jЎânð‚ÂŽd„Š€zœp^Ll„ˆ¤ˆnh‚ެŒtt˜€vxf€TŠhŊ´ŠÎ¦tø¨¶ŽŠˆZdh^\\|hdp†ˆ„dl†x~^¢ˆp¨lzžšdpPnlfhÆ`rTLr’rtf„€v’~ĸHX€ˆHhzˆHhr’èzŒzĊIbTn`ö\\¨H„K`}Rsne²o”‰ROl‹Œ“b‡E{NF|^’ppERftz¾Ol[PfšSzM²bˆQ`BjQVPpI\\gPNpIbnšMrFnjšJ¦OYduNTp”’v¤F`vrž²ZxF Ctzl’–Œžš–DP|t†|r¬²ˆ€DbZbNš¾ÄV˜_„n¤ShwTS„J\\~|nª@nŠO€ä²¨Ž¸¤˜šzt¨†Ì¦šœœŽª¨TEhnL^’¦¦¤h„]dLT¢ V@hv‚hrcl@xTœr´–tŽÊldBœn|Düˆž\\ªtl@˜dr\\˜d‚BڊrdfÈTLQtXvJ¸†¾š^^rIˆ\\а„h¤P¾r¬ˆž\\xpȜ|zĊú”ž†œ~¢p¶Ž®ðĨ|”xœĞƸ–îœðjGGyxUTXMnwRY^¨Ĥn¶lÀjœZ†ZF’ĄŒĖÔNBp¾–ŬŽĢlZÀEŽQtY~jBj¼j’UnPpK¨`оdPpU¤JzRzoc«L¿Z½Ro`YŒJUihÁjŸ€c\\HvSjwžw¿TSzK\\J|} ‹Ze¢cXD¨›nM\\Y‚[ÒgzL†inDÔazBtW”UbJ®WЀ†T€GnV€NXIŒPv^ÈfhIpF®tHybg¼a’LˆhZ˜PR”\\rGh]ԑxQzC|Y„OvNnWúO~fžR\\dCŒl€ˆrQvRb^’´pžXŠŠBQoNW[XiC_rƒA]„uKxkQDar‹h[Ìy²GV^hLz]žYðSzH²h´˜~[®SœUŽcžU"],["@@xbFY}G"]],"encodeOffsets":[[[-2264,35928]],[[-5445,36749]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Namibia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('纳米比亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Namibia"},"geometry":{"type":"Polygon","coordinates":["@@vSd[vT^pŠL\\PR`’hRR`BŽThlI^JPR^MTURFrQlLh_PiVAbifKLWfGPPlSXP`@–^`]JNhVTTnEV]Eab]hAV^\\K|ApTdI\\^hKXRFb„XLTn`vF\\EF\\fXpNf`zRRhTVZAPRxXBddFrp„H\\PPj\\PŒ@PJlGhPzM€Z–HNSl@JapJf]VN`K|T~NfNzObY|GjU^@faj—leFaK]QKJUzU|cŽuPOhQRWˆwbA|m\\AreZILS|afKnY`Gˆ{po@YxqrLhG^b’_¢Q^^ZOlDNRxRzFTdŦ@ɬBǀ@ǂ@ǂ@Ȧ@ŜBǂAǂ@ŸBʚ@ǰ@ʂ@ȴ@ɒ@ȖBɦ@Ō@Ɍ@Ş@v}bsTEJ‡bEh[H[^MBgTa^[T]~@P[XEAwj[feXKdeZKŽyF[XMtFLePWšIN]reTHxe€A^HbUxF–U„B¨CDhdRtK^LTQ˜UFZ`BNS`FnazHXEE_zHfATUjOvAnPvQpPX@jW€BhXdK^FVZ’D^QXmTNfK^y\\Ebh„nXBtWhGŠLZ`\\AxU^[€@|eVHfbTKpEbaºpLV¢Q^@`KVn^H`Wh^^@rcdc\\FjG\\SpBr[HiNSx@bilUjE€VŽI`D\\QfILUfQdE~TEabHtQ\\YpA”RH|ˆLfRTT˜fdKfT–B^RtK^HJTdAvL‚IhN\\IR[ˆeRB~W^W–FTUAWjAlKPW࣠ǦǮ”ʊ²LjŽǞ’šPڬƊXFV[hF€AbK°jZBŒQlAhK†sdEpHJkNMtJlCXNV`dKFPnFNN~HnGTQlOZPVGRmP@vbnS‚B^e^O~PCahA^X\\UTyRIrVXCN_O]DUnXD_ZMPm`EH_QaLSf`R_h@P]GiXGto†BzeIM™HV[De}WN[m‡[cGUHN`S\\aYycWTeFFRubgeoPM__Cqc‘EwugAQWeESNOOWWIYa}ICU]OESaIAWSCIoOaY_WKCWiF[EaXoKo~HXGXUHKdSFKfo\\mDQKoPgayiSSoofyWuJmAYiiWUmaQqwaSTEgSO¡syu_@o]SkZSES_ce@o]EYeUMkeSiKDWY_KagUS[]G]eUK‹@GamwWA{m]H{bGPHhSHQdVfEnUFF`PRORH^i\\Q`L^Yz[HUlsEqnDP_P_GMR[GL„eVIzQB¤]HGXB~[LRTQfUJǗ@˯Çɗ§ɧ©Ʒ‰ăcƅ}˷Ãʋ@ƕ@@܇@ɋ@Ə@ɽ@ѷBųAϳ@ث@ɇƽ@ș@Nj@ɓBŅ@@[@ઝAҭ@ȟBɛAÕBʡAǫBc@ɗBʽAý@ſAǽBŧ@ˁAƋDʙAʼnBůA@ʻBãA‰@ˏ@˃@ʼnwDqUƒQsJ_GQWcGKigqQE‡PaVDƒ}oGEO£f‘eSHo]MKQ{UIQBmOYI‘SK[e‡[s_eD‡QeN‹FuQWcG]]Dip—tOL_W_}NqUMWum“]gBcQŸX_b]Tu@QNS‚Y\\¡lB§X_I«PIEƒVeDiM£KaHcCcUƒE•YgiOA…NcQ}Q»RWX±GJ_e}DoggZ{T_EyfkPiMYD… cdYHS^_NeGYheEuP«FiNsG}fQEM[YGQX_DggOyRSjHj[|SLkF]GKSo@}NmYSFegPNdGlZf@rJhMVPdE\\aNoOYZBhW|s\\MjLn``|@ZT\\~FjQj{ˆNrWdQHKlkxsDwiLcWcDijUhAtXŒBfKnTYTKdmli\\asAcmOEg`S@WYWGgNkAmgESPgI}HocQMRiRaUT_j_WSsAaIHWfU@mYSYDe^gAOWB{peRojagig]CYTOYk][w]KeHEbSTmI™sQgi_•UiO¥WWMWcSï¬tux‰„kr¥¤¥œul¯²yt¹œµž¿ ’OZv­®UhqxKdRLBdUdmnGbmzvo~mbBTabC\\JV[dN„[pa`GT{xDduŽBP[`K`‡|aXAXWjBPaTG`]NgŒ_tE‚Iz]dK†Nvc´RVSt]^I–N^F’_†q\\YI_ViLT~CZYN{ÎQRHˆgJI|Mf@z^bRIhN^GIqpLMTfrCZXVIroDO€@š]fG^OPTXERuvG\\yj‰joTmJYVepPTOlF \\pFlor[l€H`x@’QzUlDVUtev]^M\\KtD˜HRk~{vATabCVWTBbdHDlWnB|Lxh”LD\\r@fm¢o†N|˜GjHXD†YpRb`¤DZ`nC„TŠtŒA\\a–…Æi„SrFjINbQrs®o’‘šq~µ¾o~HlZjJ|MˆWz…Ðe†q¨m°Y˜mÐM~K¬HŒPtbjpPXfM”HlO€J^S†FfBèPhB`m¸q´sÐIn@nPbVHE‹ImN_voC€GjHXjfGbN’Gz_Â]Še–qÔiàLÀT\\hNB_Ok^ANRh@]³LBR|`^KZZL’–LbC¸J†k´JLDlObNªM€_zLnC\\k ejOhQŒU|]xB`OdYhKf[tqv™–šFn‡¢eb‹˜izid_hk†Y^—’I^‡€Ë®F\\Z\\L`EhwˆWjuˆE`W‚O`J\\q„cd[Œ»ÄGfƒ~e~@`Q\\uvm~wr]jYVo DXKzyˆi‚gtotIb’‡ØG\\Jb_´@t[zi¾etgŒMlgnGb[fC^NW¢E†OTiˆM`DvWp‰_r}vyb{‚K|MNMpG~ejqžK`U`EZanIlg¢¦Ypgª…¾qŠo²s†uœIf_rHdEr[†s€ShW`y®GlWx[\\]rCV‘„‘ŒYdClK\\E|Md¡°szBT_`Wf{ŠUjē𛆩šÏ²[^]vBPQfSVB˜IpWl}˜LjIjs”•¨ƒvOpa~D^I\\Cxc„M|@tE~DniºDZIhUnDrQzE¦Y~AŒQrBxHr@¢C~NhAhDvVfK†HhCŽK€"],"encodeOffsets":[[12031,-17663]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Nepal.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('尼泊尔', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Development Region"},"geometry":{"type":"Polygon","coordinates":["@@Ů«îVŠuŒ žXŎyb©° l⢛fčĊÅ¢»F³àÇu—¤ƒØA¦~™æHȆF” ¸q[‡lćÄG|{ªKЉv’žX„whŁ{ő›³µE·—ůƙQÝ ÑÜmš¡‘īvŸK›íw·­©Š}ƒv­aå¢á£ÍĻ´ÙmMƒé“ý¸šVĺ[r߂ĉ]û³™TÕ¥ř|gš`ªÿJ•māĤčx•†ÁgħšxœXŪ¹Ċ˟¦‘ÊßlÏ ­ÝĵLZhmÖĮEä`b~Ò®ø€¤‚Œm¢t€ÌJ¨ìP’¢Î}PĜU•ŀäĈ€ð¢a¾rTþĜŒÞ˜N"],"encodeOffsets":[[87151,29027]]}},{"type":"Feature","properties":{"name":"Eastern Development Region"},"geometry":{"type":"Polygon","coordinates":["@@lÀ‚¸xêGB©ôˆR¾½ĖUÈÏL‡ĮqŒ~ĆmĂn–pö`x—¸fºĘن‘ÄN¶…˜jĚqƙGŸ¥]Ù¹Ù“ģˆŸ‹½r……¥qťaW āœOˆ“h÷†{dĽwß½įQķ»‘ĉ~•°­…·^]™§běõ¨¥RßiÙ©ŸLe’ïSÏ eüšs•ϏƹtɈ{–ȟèſQ¤Î¡âbæu®~„ª‰¸®îxLœu ’Ĭ™¢ÛnŸÒRÞŰƚ¸˜¶Fœ´|Œgłƒx"],"encodeOffsets":[[88591,28629]]}},{"type":"Feature","properties":{"name":"Far-Western Development Region"},"geometry":{"type":"Polygon","coordinates":["@@Ĥ‹âWCĕ´€Ɯxz“ÐDP»“¥¯ijDĈÃi½€»g˓·ďMO³Fćï^]ŸÆ×啭éPqĠħžďMq²µ¢@–¥jÉq›Š‘qýf­œÅ\\{·ŠŸĄ•ä@I•žÇ\\ӕ¹ûõřiÅ†ŅŽřČ­FŸÖ­Eת‰uhĥ¿ÎëNďêqž…CćÔ­TKâÊøfĊ”‚¦gˆzQºzvxԍš…Ċ¶PIˆšjÆòR°§ØªÐÚA¼¶¢ĖÖ@ĖÈúԎjĒ\\ÈĝaÖ—̆"],"encodeOffsets":[[83223,30766]]}},{"type":"Feature","properties":{"name":"Mid-Western Development Region"},"geometry":{"type":"Polygon","coordinates":["@@VâĨêKx‚Òuf„ºĢUt´–cx„Ĭ±ǀ•¨sIJxl›Sp½šMBág‡IJcثܵŠpÎ烔•x鬅ĢFzæY‚ä^ÊgÄęÂGxǔK~ĻЙH‹¶‹æIp«Å}AęĩğaăĹ¡óSŃrLŸ­Ç]ÝTāŁA©´±Z‹Ĩ¡x…i›PjőJ‘·T½–‡{}×mßFąʼn}­ȟŸÑx…Ã~ÿÐón¹²ÿPËÙā¦ęì¯LƓöLŠ‹–ŁŒóümÒţ„jÄÆšüö–º[ԝÈJ–ã@㖉 |¸Æ[®›þe’rœ‰Êr¦i@•¶¡r±€NĐğĨOr®êæ–ÅØ^ ]ŽĈð´EPĐN”¸h̼j¾ćÄCްĴ”¦O¼ÏCy”ƛw³DĖáXģŒ"],"encodeOffsets":[[83223,30766]]}},{"type":"Feature","properties":{"name":"Western Development Region"},"geometry":{"type":"Polygon","coordinates":["@@Ax²’´Ež¾örǂƒÜýhĵÀ™qýB§ĒÂC˜D§²ƒÆRÊQÐčìsޑÂrz]ĠиF’“„×—ç{CTÿg—M‹ÝÛSý½q¡bïãć–ĿěVO€Í~‘¡ëOI§Ë¡s‹n£÷Ñ­a}ã_ĭFnÕYgÏs­ǷĊȍVfÅÏç“Bq¦ëÒŹKãhs„ljBjæ•æO¸~®ĆŊàEØn|~•ˆS¾’¸žIiŒžOjœw†ħ¢YŒ³²BªĂłÞS^®ÈK ńqôTĺ¢bĄĪĠBĚÆ~o¬"],"encodeOffsets":[[85665,29877]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Niger.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('尼日尔', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Agadez"},"geometry":{"type":"Polygon","coordinates":["@@ȳRܧOѳOλGГCDZě؅̟ëͩĿЃȍë۷қџ˯ͣɛɩéɑœʕţƕ£ŵNƧ›ȫvȧŠůȽ˥IJʡSšЄ¶ʚǹøçÞǝϬċłι˜ƷĖǟĆßƎùĆƋôYĐťxI°öń@ͳƬjÄÂðtĎȯḌQBІÌL܀ƞՌłՄѺ‚„ѾϒϮ͚҆˘ψɰҾ˶°lפΈМʊٚξʔƶפͶӠķۺƳńä©Ԥхٜ͚Ú͙ĸԫPхè§˾Щ·›]·lïČÍ˒˿ȱΝñ֗ÃЛ—ٳ"],"encodeOffsets":[[15933,18439]]}},{"type":"Feature","properties":{"name":"Diffa"},"geometry":{"type":"Polygon","coordinates":["@@ì‚؆̠DzĜДDμHѴPܨPȴQ‹֣aιңӓ̵̃ȏȉĝťʱγčĩãƯjşÃoË¿fí¯‹ŭOįŮձɩA¥SěſïgųEǧōíėčUuģ‰K›ïŭbÄýg٘ŽĬǣ˜ó ŋ†ƱAԟe±ƄǬǐZĶƌŢîĄƢĬè…DzŠɎƾÔG¬âMĶàŽGخ@߄CתCк"],"encodeOffsets":[[12283,17915]]}},{"type":"Feature","properties":{"name":"Dosso"},"geometry":{"type":"Polygon","coordinates":["@@ò}úƕků¬ʅĜƇ~ʼnŗ…ȗǟý@@ˇƣ£óĥŹƗķĵđGķbţ‡ŝ ť·±T÷ªÛÑ»» ZŽÙÞĝÇI·ńċĒčØ‰Ê¿nħļā®EØ¿W½ÔVЕŔ„â܂C–ƉnÅŠŽäÜ[܊€žŚW†żk RĂÖX–¸ŦYlՆÒƌÇŪ²ɢȚfŔĮƖì´Ǩ¢@´ò†HĚ"],"encodeOffsets":[[4358,14987]]}},{"type":"Feature","properties":{"name":"Maradi"},"geometry":{"type":"Polygon","coordinates":["@@nĎÒx‘¢CÚèÄΰbĄKލlkƼä˼@ƢØɈĂƚʢT˦ı́UťàŏtǍŽ›]¿¸WIJ»QƙÔ¡ÆHĜþº¿ŢuĠ™ńijˆÓú‰Cñ|µqœŸUƃëõÃ@Ÿńó›xƕùƍƽĘɅz̓ȑ¥aƗ€ċğËgģFĹŞĻǒɥɖŵÜ"],"encodeOffsets":[[6428,14005]]}},{"type":"Feature","properties":{"name":"Niamey"},"geometry":{"type":"Polygon","coordinates":["@@ŬĊĜğW£Í“ĩä·j"],"encodeOffsets":[[2028,13830]]}},{"type":"Feature","properties":{"name":"Tahoua"},"geometry":{"type":"Polygon","coordinates":["@@€¦xIJ¤ÐRŪÞŤ†ČĒÔCΜbƼ¬B@ޘAن̤RȰCsčÁïiôƫ@ĵõŃJ¯ŦwZďƌóúąàƍǠąƸĕκ˛ČŁǞϫèÝǺ÷µʙŢЃāƙ×ɇ@ơã˻lƻŽkLšaăĩ¯çÃDْ¡ÑwmčķÂɓìǙÚď¤ƭ§ÏáÙgŇ`Ó_Ƒ‚ȥ«}Ŋěƈ«ʆlŰùƖñ~œŠRȖsƎȟѺ"],"encodeOffsets":[[3963,16074]]}},{"type":"Feature","properties":{"name":"Tillabéri"},"geometry":{"type":"Polygon","coordinates":["@@ȠѹtƍQȕŔşGęñ…@³ǧ¡ë³ĭƕeœɡșũ±ƋȅÑkŏťZ•·ÕWQālŸ…ŻřXÛ‰Û\\ãÆşƊmD•ہƒá–œUϾÓÀXF×Ă­Ù¯ĕÇKŏŸÛDhƥŠÁIÕ«˱ϨĔ¸ČAF¸˜GÞĿŎěL»}¹ă݃м@ɬnj­ĀŒŽ²û¤Y¼įČŃlCšůGMêŷŬëŚDZЄÈǴü¢òYðƎ‡Ķ„Ƣ­žbƢXþxʾɺҎzڌ”͒QXøϰϚž@氂ŌŢÜJ҄","@@¸iĪãΔX¤ěĠūĉ"],"encodeOffsets":[[3963,16074],[2028,13830]]}},{"type":"Feature","properties":{"name":"Zinder"},"geometry":{"type":"Polygon","coordinates":["@@ŰȾȨ‰ȬuƨœŶMƖ¤ʖŤɒŔɪêͤɜѠ˰۸ҜìžЄȎͪŀDйDש@߃HحߍNĵ«áÓHɍƽDZ‰ç†ơīíăƋšYĵǫǏ²ƃǡÕɗaljõƛŽ›Ñřŭɭ^¯WűpǡA˧Ģ£âāªïcƉŶúƎwƖ‚œŃô@ öÄƄì VrŔ{¶DòùЇÔŃĴğššv¹ÀěýÅGÓ¢Rƚı¼·X^ÀœsǎßŐVŦ˂"],"encodeOffsets":[[7531,15688]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Niue.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('纽埃', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Alofi"},"geometry":{"type":"Polygon","coordinates":["@@mNBn\\ZACcC]uuKMMJuNEAKFEEuJBDFFD@\\TF@DFHDBDFN@L@HCJERAN"],"encodeOffsets":[[-174001,-19472]]}},{"type":"Feature","properties":{"name":"Avatele"},"geometry":{"type":"Polygon","coordinates":["@@JBHXvTJKIgAIG@@IE@CEGDM[IDMBIAGBED@DNJFFBHAJAH"],"encodeOffsets":[[-173991,-19571]]}},{"type":"Feature","properties":{"name":"Hakupu"},"geometry":{"type":"Polygon","coordinates":["@@LNvvdkvmGEEGIKMKIEIIKMGO@AGGQ@WEKCIEA@BzEBFD@FCBAHJhIL"],"encodeOffsets":[[-173955,-19548]]}},{"type":"Feature","properties":{"name":"Hikutavake"},"geometry":{"type":"Polygon","coordinates":["@@A]XWW_ghQTDDFBDFHFHDB@L@DBF@FB"],"encodeOffsets":[[-173938,-19411]]}},{"type":"Feature","properties":{"name":"Lakepa"},"geometry":{"type":"Polygon","coordinates":["@@`\\DVZBJVTA@HNBBKB@FSJQBEAGACAIcMcE[UDdYB"],"encodeOffsets":[[-173931,-19480]]}},{"type":"Feature","properties":{"name":"Liku"},"geometry":{"type":"Polygon","coordinates":["@@D^\\VdFdNDIDCBEDEBCDGB@DI@CJMDADIAGEG@CCIOSCCCECEGKIEuncl"],"encodeOffsets":[[-173922,-19514]]}},{"type":"Feature","properties":{"name":"Makefu"},"geometry":{"type":"Polygon","coordinates":["@@TE^Wz]m[MAnAFFNPNFFFD"],"encodeOffsets":[[-173985,-19450]]}},{"type":"Feature","properties":{"name":"Mutalau"},"geometry":{"type":"Polygon","coordinates":["@@X`VZMVBFE@CHL@VCPEL@FALCHCFGDKBI@KAAMA@GSBIUYACU_[Ot"],"encodeOffsets":[[-173939,-19454]]}},{"type":"Feature","properties":{"name":"Namukulu"},"geometry":{"type":"Polygon","coordinates":["@@RScEBHHLHF"],"encodeOffsets":[[-173968,-19424]]}},{"type":"Feature","properties":{"name":"Tamakautoga"},"geometry":{"type":"Polygon","coordinates":["@@vIFFLEFBvMNIuSGWIAELABUTSLEFOTAF"],"encodeOffsets":[[-174028,-19532]]}},{"type":"Feature","properties":{"name":"Toi"},"geometry":{"type":"Polygon","coordinates":["@@B@FBNFDGF@AENUUYWXB^"],"encodeOffsets":[[-173938,-19411]]}},{"type":"Feature","properties":{"name":"Tuapa"},"geometry":{"type":"Polygon","coordinates":["@@dFhgPsy^]XSFFHJR"],"encodeOffsets":[[-173977,-19437]]}},{"type":"Feature","properties":{"name":"Vaiea"},"geometry":{"type":"Polygon","coordinates":["@@N\\HCDFF@@JH@BJBGDA@EECFAAyEAGFOPOJ"],"encodeOffsets":[[-173976,-19599]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Palau.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('帕劳', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Aimeliik"},"geometry":{"type":"Polygon","coordinates":["@@b@VKRm^GDYIeJGKUSUUPU@JV[JQVMbYAl"],"encodeOffsets":[[137715,7662]]}},{"type":"Feature","properties":{"name":"Airai"},"geometry":{"type":"Polygon","coordinates":["@@V@VOTVLV\\PZITHLORE@QUIZkFYMGCQWBD`]BDMKQOB[QybCXHROh"],"encodeOffsets":[[137731,7579]]}},{"type":"Feature","properties":{"name":"Angaur"},"geometry":{"type":"Polygon","coordinates":["@@CWa[IRDTG`fCNM"],"encodeOffsets":[[137371,7080]]}},{"type":"Feature","properties":{"name":"Hatohobei"},"geometry":{"type":"MultiPolygon","coordinates":[["@@DjR’FPA`Rt`d~‚N\\V„^hdVfHdA\\IXOZaL_BaV_TeHeCWSmC_[uQs@]K_OUqa_ee[_M]A…JWH_V]jIZEl"],["@@D`J\\T\\n\\bFfAjQVWPeB_GaSiY][QaEYBgP_fOdC^"]],"encodeOffsets":[[[134834,2890]],[[134215,3080]]]}},{"type":"Feature","properties":{"name":"Koror"},"geometry":{"type":"MultiPolygon","coordinates":[["@@LUNEZFHSkOQjBP"],["@@aGSZ^AXO"],["@@FXhGDSaGOL"],["@@RuTGMYU`aDMM@[OUUAMQKNllL\\fLPL@Z"],["@@QT^@NLnDEQTaQ]QHV\\oTWI"]],"encodeOffsets":[[[137568,7342]],[[137692,7528]],[[137700,7481]],[[137661,7470]],[[137700,7512]]]}},{"type":"Feature","properties":{"name":"Melekeok"},"geometry":{"type":"Polygon","coordinates":["@@\\LPKNi^]AMYQQRO@YOI^SJSPVVJTRD"],"encodeOffsets":[[137826,7716]]}},{"type":"Feature","properties":{"name":"Ngaraard"},"geometry":{"type":"Polygon","coordinates":["@@LDJE@oFMDoGKBaKSDYOKJM‰LKhJ^THdjPlQ\\JZ"],"encodeOffsets":[[137863,7869]]}},{"type":"Feature","properties":{"name":"Ngarchelong"},"geometry":{"type":"Polygon","coordinates":["@@KCOLQlMHFTTNTK@QPINWO]"],"encodeOffsets":[[137869,7871]]}},{"type":"Feature","properties":{"name":"Ngardmau"},"geometry":{"type":"Polygon","coordinates":["@@I]LgGgWb[WeC_HFTIhHLXGPFJTfXdQ"],"encodeOffsets":[[137831,7795]]}},{"type":"Feature","properties":{"name":"Ngaremlengui"},"geometry":{"type":"Polygon","coordinates":["@@`GfD\\XXaCoQCISUUTOGYOE@UOWMHOn[VKJMMcJIPHXAX^@LjREPT"],"encodeOffsets":[[137767,7747]]}},{"type":"Feature","properties":{"name":"Ngatpang"},"geometry":{"type":"MultiPolygon","coordinates":[["@@\\UPmNGB_UmDK[OIHJfCZ]HQnFZ\\LDR"],["@@a@IXvDI["]],"encodeOffsets":[[[137762,7684]],[[137732,7662]]]}},{"type":"Feature","properties":{"name":"Ngchesar"},"geometry":{"type":"Polygon","coordinates":["@@PX@VPFHZTIJ]ZPP@RQSQOY@gM@U_BaQFKPSGYJCLVnA`"],"encodeOffsets":[[137791,7646]]}},{"type":"Feature","properties":{"name":"Ngiwal"},"geometry":{"type":"Polygon","coordinates":["@@DpHhŠK@iW[QEOL[K"],"encodeOffsets":[[137826,7716]]}},{"type":"Feature","properties":{"name":"Peleliu"},"geometry":{"type":"Polygon","coordinates":["@@JV\\P@YMYP[a]wWCbHZ\\NRV"],"encodeOffsets":[[137471,7200]]}},{"type":"Feature","properties":{"name":"Sonsorol"},"geometry":{"type":"Polygon","coordinates":["@@M\\RBC]"],"encodeOffsets":[[135399,5445]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Palestine.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('巴勒斯坦', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Gaza Strip"},"geometry":{"type":"Polygon","coordinates":["@@Ö«@UeekSaI}m[]ecQG[aeWqm_wR±M_qYU]_WmSukwÚGBaxœŒrp àä`hlj”ª"],"encodeOffsets":[[35320,32354]]}},{"type":"Feature","properties":{"name":"West Bank"},"geometry":{"type":"Polygon","coordinates":["@@J`\\ztvXlNrE\\@rL‚L\\npZdfdjL’rfPjpXATbXAXN\\G`WLHfA\\OJF`STbFZPRKrL^@^GZPVYPLNUP_IIXDTGZQNWWNMLsAggP[KJWs@uNUR]DWNWdoJSGmgSG‘DCLfbŠFN|@lO`cHURLRebRˆ@nLFEh_¤AXPNO`JfGLYHFNcbE^LRZD\\NbbfrNdU\\UBHZFœZRZ@@PTXCTQH\\nXžRZd^^A^N„j€lfbhXZa`YjOnKXBˆR`AœaDc`sGCKgPgnWZNtCXO–URIZDTiUOLWIKFYESTWC[JWQUNUESTQSSTYMEFeHK[SB[SMVUAO]CLaW_KEZiYaGiMBBuLII_\\SEQZaKG@uKaQ@C[R_AU\\QDOQONYBeKUBURQGYPw}s»U‘M™G¯Ks¯@sI][µ{c¿¡qEM_AsQÇF½@‡OoA]KY@UZgbQl"],"encodeOffsets":[[35719,32148]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Paraguay.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('巴拉圭', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Región Occidental"},"geometry":{"type":"Polygon","coordinates":["@@ŽŸg劻¬PP³¼±¡ytXĽ¤±B£TßK}ufÁxObŸ¸Yt©}§°³cìݤPŽĉ¾m²ÁJ›w‰¼›ZÏ}Û®ÿ֋ü½HÛoV…‘Ìir‰U}™e¢ÉË@e¼±Zë|uIãx›•‰€±w›€{YÛÃmX{Éƒgˆ¹–aQ³busg·¯ÃՍ±LimS·­¿ÁY•v¯©°Hz³¾sԛZuœ…lęKk˜Ç@Qv£DeŒ“J•”ėÍ©œ¡Ôō¸ċU­´ßBהûέF|×^±®«bīÌg²¡\\¥ÖʅƒʅƆƁƒĥNŃÒ©`“a—No˜ĩtmhŅF½ ËJm´ËÐ_àݪHęúûdwz³Tm˜ēøĝšc¾‹P¹ºœîkr\\˜k¦µ¬WŽ©jq²~Gˆ©ºvÈ­hyŒÍlÑ ]Š›F»¬¹r[®ƼӞǔԨFÎOΪ̀ЊǀϤौƬՈƌЪHΖFݼґ‹‡J¿€ŝns¥Ž¯‡on“ªZUÁxÁ¬]tŸgáj‡e™š‰c—ŠaŠ„ž³Ks¹Ju¶H–ƒLwћžkÄÅ¥¹j·aƒ`±SÁ™jy¢]S¡¯cÁ‘«Fšui­œÍ¥‰Œk¥ižƒqX}‹ëqYJ¿"],"encodeOffsets":[[-59385,-22620]]}},{"type":"Feature","properties":{"name":"Región Oriental"},"geometry":{"type":"Polygon","coordinates":["@@u°Z–‚®ÀT¸jn²K֎°Äh¸vt´aR‚•b‡º„hŽÊW|ÄnZÜ|xœ²–ŠwœJä{vY컲@fČ¡ÊšfV~qŠËj†’Up€GÜû¾ÕŒ­Ā~ÜYлœxŠIœ±Â½nĊ£OëÞdž¯´~¨sª·Za wPeÂ~vàL¤SA£²Wľs‚¢z»²O´«O‰¼h捠ªNX‡ÈYzXˆʪšVªc¨L}¼LŒmŠJ¶cx{¶TÊwl~èI€m–dĪsÀR«ČºHÊkzˆ®zòžz¬@¨µT–—Öc|‘ÞSZ\\ĴiÐZæAÂē”B\\ÙYŸpĊÝZģ«]¹``čŽŅ°‰f—gy[÷ª½‘ÏCÕh›G½²kR­Šñ_Łv“ê‡f~è™òd–pœyςO¶®ĀhlnòFŒ¢âm؝Úgt«øÁ–«±£Mq|ġf»Áć]»fÇMá…牻‘ŧiųz«ÓƋë釱róGëb‡ËIOqˆă€…ą\\“ok|µm÷¨™»Áx¡¿cÝǧo³f˗‰fåwQõ[_õSùÑPã¹g—vËiÃC©¯īïFB©™ESŸˆsg™B·ë“­Ç¥J«„³ÄõU©’§Jõ‡É½§_B՝a•›¿|áŎÃN—{“Lu•”­Yy·u£d«eý¢o²ÝlċE÷dã¢čMÙeĵ¬āÐÙc‹H¹º›XşBğ]ëd¥]ġYÙ\\ï{ƒR`ÂÏ \\´Ăh@¢†°ž@gÄƤèa”°tФ_ĆÄOWTªq‚”Џ VŠœjPĆªnc¨NŒ‚Ž˜Aüžp~Ðx‡˜jŒŠZ´¸d\\€ƒª®D”‚‡tx¤ÐBMšÌA|ŽBšr䟠v"],"encodeOffsets":[[-59030,-25980]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Pitcairn_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('皮特凱恩群島', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Pitcairn Islands"},"geometry":{"type":"MultiPolygon","coordinates":[["@@TGHGNGKEAGU@MNQF@FLFDDJB"],["@@KNEPQVEPATHTLJFVHDRCR@TFXLIW@MNqDOHOA]F[ACMGMHML_DMH"]],"encodeOffsets":[[[-133232,-25661]],[[-131415,-24993]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Qatar.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('卡塔尔', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Al Ghuwariyah"},"geometry":{"type":"Polygon","coordinates":["@@ZPU~F`VJXhT@fkG]XM`XEXTRQxƐJ@¸ŘLF‹´@DsE‡÷ăěHDzȭE"],"encodeOffsets":[[52126,26348]]}},{"type":"Feature","properties":{"name":"Al Jumaliyah"},"geometry":{"type":"Polygon","coordinates":["@@ȮFCyĜGKט·@åęA‘™TĹM™ĉGBśɯGF|QxE~AÎJ€OÄFVQVJXQT\\®LTY`xr\\DTWHePGHwLOhLYšcf\\hDx[r_OWPX`|L^f`A^ce¡VYGclMRe^TA€H^d†TA\\[ZRA\\hn_@uOSQkXW`MnHNKŒT^"],"encodeOffsets":[[52126,26348]]}},{"type":"Feature","properties":{"name":"Al Khawr"},"geometry":{"type":"Polygon","coordinates":["@@øĄFˆÔBCņzYL„Grc‚YfRR[WkWAR}¨r^ZRC׉JRiCUoaOUCgvSN[[uA]UGcv_FWxSHkdCOyMIOiKImT[M]ƻDc`—¸LØ"],"encodeOffsets":[[52481,26318]]}},{"type":"Feature","properties":{"name":"Al Wakrah"},"geometry":{"type":"Polygon","coordinates":["@@äƒGĂŎ¶IV€RtTfoBkQ_L‰H›WgBoRQtARMeOBKjQCNuvDI__WaKMWZO§}‰eYQa_QLWImMQAwœDK˔"],"encodeOffsets":[[52574,25688]]}},{"type":"Feature","properties":{"name":"Ar Rayyan"},"geometry":{"type":"Polygon","coordinates":["@@FÓĤ‹NsŽLÂę^Bh‹JUōµHāã„QC`@\\›n؊^RŸŠūAS咚ĚB"],"encodeOffsets":[[52519,26099]]}},{"type":"Feature","properties":{"name":"Ash Shamal"},"geometry":{"type":"Polygon","coordinates":["@@DŅÓACt³@EŒŗK@·ƏIkHAzfTIVNbZPJdEˆpXdh@hP€KL†\\ZZZA\\VdMvdNv ~ZKh`ZFrazM²…E¡nhWBZU"],"encodeOffsets":[[52648,26584]]}},{"type":"Feature","properties":{"name":"Doha"},"geometry":{"type":"MultiPolygon","coordinates":[["@@î|waxMMX@D]YECgr@ZQVRrOZ^l¥}SBQsSQgŒ]AÁĚ"],["@@VRjSHe‡h"]],"encodeOffsets":[[[52682,25967]],[[52770,25984]]]}},{"type":"Feature","properties":{"name":"Jariyan Al Batnah"},"geometry":{"type":"Polygon","coordinates":["@@ɰHAŜĊHNšŬB ş]Q׉œm@[‚_RDL˓ŔCqc›IiWMw@YcS‘M]_QiZB`xjCjS`cES[aDW†_ekO[Bm[I]zQvFpY`@PQ]kD‰Q}w@UµQ]MµOÕl}Xǖ¯Č}¦¤zVn\\NŠW^EbPhBlInUpmbGfqr@„brQ„Ufg\\Cp"],"encodeOffsets":[[51992,25733]]}},{"type":"Feature","properties":{"name":"Umm Salal"},"geometry":{"type":"Polygon","coordinates":["@@d_ƼC_‰`kASfaViZMN[O]R[OSí{KMtģŒEÔ@æ"],"encodeOffsets":[[52519,26182]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Rwanda.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('卢旺达', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Amajvepfo"},"geometry":{"type":"Polygon","coordinates":["@@~D~oRN–—@]|qJk’OR]vj€EÒ±TsDEFBDCEID@XåuaLc~YA™{GmR›{õCo_›VaZ³@‘sWO‰[oTwLµe»}Ÿ£euEU`}QQ}]W‰Y£~kAykyLÉm}t³Ca__WšoœfZC†ajX@p¨Y‚]²iJH€c^}LEbXtœXM‚r„m–p|~DžpdKˆZʢ†W””ôQš\\zpPG®VNCˆO^LôU"],"encodeOffsets":[[30371,-1775]]}},{"type":"Feature","properties":{"name":"East Province"},"geometry":{"type":"Polygon","coordinates":["@@Dp|öQœHn‚|Bšh`bMÊZˆnxOn‹lVTÎIx€^^pM|WFJ€ej\\df@E~i–MŒ\\TOlujc’]Fm”Ož˜]’§ÔȒOxVdGt”Aˆ†RdnVbl^šŠZIxjš‚OŽJfbh]]g@kbwDuŽ_b•t‹dïšYb‡®W²µLËĄŅe•AaVĕoĽ°ýZKp“s—Y…AqauA‰V@Ÿ…—mEimyR}ru]QismŸ^‘i·fEX‹nUhC|}SgdyaMsåk‹BonYIKu]K[‘·S}^‡‚]|udaA™b"],"encodeOffsets":[[30679,-2383]]}},{"type":"Feature","properties":{"name":"Iburengerazuba"},"geometry":{"type":"Polygon","coordinates":["@@Š­¤]rDŽi’BI£N‡I•p_VKóP]D‡UMH­oO[yR™“óX“Á…É¡‡YcLo}Co{n•qƒN›WWsFa~Kd]GjI^±Zo§W@KxZlƒSuZw@[haDe_foSYoPuYgPqqy|iV_S{jgDklRd]ì{„vhH|s’T‚‚€G~‚j \\PäZpj¢ČTx@ˆcÞuÚCŽR˜h”öĺA|ZRX~–|v¬bVRxöF"],"encodeOffsets":[[30158,-1542]]}},{"type":"Feature","properties":{"name":"Kigali City"},"geometry":{"type":"Polygon","coordinates":["@@fiIXEN{]o]JwSÍkUmŒwP‡mÉYaNg_}ZKdvbWæC@FJCDEACFStCvXtZ\\yvdLdˆX^K„~f@°§zG"],"encodeOffsets":[[30974,-1890]]}},{"type":"Feature","properties":{"name":"Majyaruguru"},"geometry":{"type":"Polygon","coordinates":["@@žÄhTTj”rÔBŒL\\bŠtˆM\\cl^r’jQj•fLJÏXƒdmæˆd~–KGjfb¨Ó^‘€—Pn“^Ed‘viPk[SN‹j•F}e@[cyH¯¨e@ƒ}]L‡WKcuc[zsYWDuѲFuiQ^‘PIl{r@^•˜QM}p}Co`J–MˆJ¤‘AjqC£^‰®"],"encodeOffsets":[[30158,-1542]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Sahrawi_Arab_Democratic_Republic.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('撒拉威阿拉伯民主共和国', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Sahrawi Arab Democratic Republic"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ÞnŰZĐ¼Ğİ” îZÐmɘ¶¬¬ÒĬĢĴƦšƆ@Ǭ”ŎˆàŽjkì^Ô²IJlòĚɔ@vªĂ´pxªĤ| pºUܪĸ’¦EĠœÂy~¤XَâNì¤öœxĂĖÖ~–àԊ¼òöܪm¸âJ”¨`j¸Ʀǜ¾ĤAø¹ÈÜļBͱAϻBͳAҁ@͇ŽǭćǥwΩɡęō›ŕÆȃ„ϛªع̟DҥD̓@͵G̓A"],["@@ôǜj`dŒÄÄI„ĈƦĮðBxËÈE’øŒĖlȔhØkĐT¾[ČRÎYϧ˜JĨwl‡ŬBŨ¥Ċ^¨M˼¸ÞŰàâAİvŬ_ H\\ŽŞBƦm„ÄGô‹°XȔaľĶŤ@@̏Dң@ٟ٣Aп@ڣ@̳@ӏA"]],"encodeOffsets":[[[-15401,21850]],[[-11952,26623]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Saint_Helena_Ascension_and_Tristan_da_Cunha.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('圣赫勒拿-阿森松和特里斯坦-达库尼亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Ascension"},"geometry":{"type":"Polygon","coordinates":["@@FLVNHXCHFHVTPCFJRANKJBRIAEVURDFIPKJYVGFGJ@HICKKCGHGAEYKGGBaQKKQHUKSBMGOAKEMFONKRJPGTGLCR@N"],"encodeOffsets":[[-14766,-8125]]}},{"type":"Feature","properties":{"name":"Saint Helena"},"geometry":{"type":"Polygon","coordinates":["@@NPR\\NJDVJT^RNDTVVJPJAJJFDJLDDGTKRBJENJTAJQCIHICIFIN@BIJEGUF_O@KEAMKIM@WYQAKGWJMAOMUGOIQOOFINANIHWBCHYH"],"encodeOffsets":[[-5928,-16380]]}},{"type":"Feature","properties":{"name":"Tristan da Cunha"},"geometry":{"type":"MultiPolygon","coordinates":[["@@PLBHTTARNHTAZFTCJFJERAXFPGJUVWJYNUdOFYGEUgQDU@GDYBFJENQBYJYNALYV[FMHO@OJOB"],["@@DHTBJHNGDOKGIDSGIR"],["@@@VPDRJJNP@XMDEZAROGGMAQKeM_BUV"],["@@FPHFDZFBNZPDJJBRHFzALDLAVBRKNE^SVaNaW[GCWWUGGOSI@KGGWC[ROFWEMNIPafKR"]],"encodeOffsets":[[[-10259,-41278]],[[-12794,-38321]],[[-13010,-38200]],[[-12646,-38009]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Saint_Kitts_and_Nevis.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('圣基茨和尼维斯', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Saint Kitts and Nevis"},"geometry":{"type":"MultiPolygon","coordinates":[["@@VUVAV]F}FIO}MOU@‹YQHSTWjJfCXDZP\\BLT^fDZA"],["@@KRUP@bJRTVXLNAXLRBTWJFfOJM\\UfOŠ•HURWBQLCDadUVWdMVKHSYSqSKXNPCjOT]JILeHKT_A]GEF_@_JYLQ^^e`@L"]],"encodeOffsets":[[[-64079,17620]],[[-64355,17771]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Saint_Lucia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('圣卢西亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Saint Lucia"},"geometry":{"type":"Polygon","coordinates":["@@hbCRDRRXZA\\IDSIMDMRG@WTFTKNUEkH_EGJePI@]IOFK@eGOOECSPGOKRS@U]SBQT@BuQQEQ@oIS@]SWQAIHOKJIYeDOQOB_QJFNOR_@KPICYbcA[HidQZQL@TUPXVJRKFRpeXCbVnXlAP\\J@NLVNHLvTIJLEhZHNAHVTLPRAx"],"encodeOffsets":[[-62437,14401]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Saint_Vincent_and_the_Grenadines.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('圣文森特和格林纳丁斯', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Charlotte"},"geometry":{"type":"Polygon","coordinates":["@@NJEh\\lbHGrNJ@PIJBRGRDbGVRAHTMNDVIPf@HIjKEMRiP[DoDWGaFaCGFcQOOyKOGWCa‹ZIRKFQPKV"],"encodeOffsets":[[-62674,13528]]}},{"type":"Feature","properties":{"name":"Grenadines"},"geometry":{"type":"MultiPolygon","coordinates":[["@@XRIVdHFQhADKKKeBWQYL"],["@@DTRTLIa]"],["@@\\I`NE\\GL@XZKRFF_WAEgkKUX"],["@@RTGHPTVFLUSGMoYX"],["@@FDRYMCIZ"],["@@lNbANJLTYD@LXL^ZPBHPLBI_[UPUGQ[QI@KM{N[C"]],"encodeOffsets":[[[-62935,12893]],[[-62873,12932]],[[-62827,13010]],[[-62664,13179]],[[-62616,13267]],[[-62757,13302]]]}},{"type":"Feature","properties":{"name":"Saint Andrew"},"geometry":{"type":"Polygon","coordinates":["@@\\B\\P`HZ\\^LFgMI@UkgEWMK@KS@BREJSJSPBNIZ"],"encodeOffsets":[[-62742,13520]]}},{"type":"Feature","properties":{"name":"Saint David"},"geometry":{"type":"Polygon","coordinates":["@@PXhNFJCZPNNdLJRvVHRRVDJOCUNMGSQBHUCaHQAQJI@OMIHqaGQNK@SKaCWRmV"],"encodeOffsets":[[-62733,13594]]}},{"type":"Feature","properties":{"name":"Saint George"},"geometry":{"type":"Polygon","coordinates":["@@LUROLEJQŒYAYIMUIUigJo\\_ALROPK@@LNLFXlh@V"],"encodeOffsets":[[-62674,13528]]}},{"type":"Feature","properties":{"name":"Saint Patrick"},"geometry":{"type":"Polygon","coordinates":["@@nUXQbDTLL@RM[k]KY[_G[O[AMLJlETH`ZXEP"],"encodeOffsets":[[-62733,13594]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Samoa.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('萨摩亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Samoa"},"geometry":{"type":"MultiPolygon","coordinates":[["@@BSI@KLDJPA"],["@@CQfABQIM]OMMFEbDJC^TJLPYHDAW\\AJBbQPMHQZIRLNGP[JEHQ@]ScGSKAuDmJQEgBSDSI@qFUNWEcESEKFeBWRWDCIYCUOiCIDY@GJFNMHETILQFWAUF]AUVLF@NiCKLKKKAeU]GYBebI@QNGXKLE\\QRENOEBOKMIDBRWJELIBFXQJYAwVKNMFDPMV@RPHNVZPP\\PHRBRIl@nF`XL@JJL@ZLL@RLREXAJJf@ZCXBTJZURGAK`QBG^EDJ\\QJPLGJDHYXARGBITIDORF^IHFdARQPGNFP@NSLE`VVBXKGIBMTA\\Q"],["@@WLGVZHNSGU"],["@@IOIF@LTA"],["@@PNLARKZDRCd@PFH\\P@XH\\DTET@JPVAdQFHVITQHKVYLY\\_NAFSrsDWRIBU^MEIRYPsHEGOJKPeJMLIISWSQWE_NEEKgY@OIOR[D_CSKGKOUBOCMPWEQHKZIFG^MHMBQJ]OEWKIaBIJW@OKWBKI[EOJcM_CSIQLUD[UcAODEIWCSHQJGNATcTOFIP@VOFKJ@bBFIVUTYJmvERYNKLMTIFBLKPgLUVKDO\\OVUHMLMBkhIFM`UXTTDLPPNBZKPPNMTCTQVOdGbJPA^TLETSTALRGLRFRNNFX@\\GNLhPPBTLZD`GTJL@TH"]],"encodeOffsets":[[[-175533,-14396]],[[-175679,-14234]],[[-176235,-14193]],[[-176277,-14153]],[[-176628,-13791]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/San_Marino.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('圣马力诺', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Acquaviva"},"geometry":{"type":"Polygon","coordinates":["@@HMOIBGeOQRCV`JbA"],"encodeOffsets":[[12735,45012]]}},{"type":"Feature","properties":{"name":"Borgo Maggiore"},"geometry":{"type":"Polygon","coordinates":["@@\\TXEFKKWdQLESWeID\\KLcPPJGN"],"encodeOffsets":[[12735,45012]]}},{"type":"Feature","properties":{"name":"Chiesanuova"},"geometry":{"type":"Polygon","coordinates":["@@`O@QHWgEMjNV"],"encodeOffsets":[[12714,44986]]}},{"type":"Feature","properties":{"name":"Città di San Marino"},"geometry":{"type":"Polygon","coordinates":["@@fPAHdOLKC[mE@R_PAD"],"encodeOffsets":[[12713,44988]]}},{"type":"Feature","properties":{"name":"Domagnano"},"geometry":{"type":"Polygon","coordinates":["@@ZJNKRL^DHWOOYF]UcRLX"],"encodeOffsets":[[12764,45013]]}},{"type":"Feature","properties":{"name":"Faetano"},"geometry":{"type":"Polygon","coordinates":["@@TXKF^VZEPPJWeeGMcJGD"],"encodeOffsets":[[12772,44977]]}},{"type":"Feature","properties":{"name":"Fiorentino"},"geometry":{"type":"Polygon","coordinates":["@@nFfJHC@cKKgAOTOEGX"],"encodeOffsets":[[12730,44969]]}},{"type":"Feature","properties":{"name":"Montegiardino"},"geometry":{"type":"Polygon","coordinates":["@@LL@ddIKgcB"],"encodeOffsets":[[12770,44951]]}},{"type":"Feature","properties":{"name":"Serravalle"},"geometry":{"type":"Polygon","coordinates":["@@jXnJ\\RLgIO]CQKMLYIELWF"],"encodeOffsets":[[12749,45022]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Serbia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('塞尔维亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Serbia"},"geometry":{"type":"Polygon","coordinates":["@@ŠpìbÔiºGĎl°s¡eÁt“ðM°…Ðg”w،l”}ʔEL¦t¨ňŽY~Ü ®’hž_CwĮčÀ_tqH‘™q¨™N©’g†‘ªyÔGìXô¨àDÆ`†ŒĮh´x°ŸłE²cdÑ~mŘ@Ǽ{~“N•ž¡žq¸L¸üÒøÔ\\~xÀLþÓÈuŠJì±No³kՀ·EaŸ“q»K–µ€ÕŒĀap}S•yW‹ćX™ñUWƒħ]AÃ}āk‰Ž¥ZÁì³GϞć–OnwÀSfòa¾£j©¢¥Ġ“mÙÁƒk“£ÅoG£‡Á[½pë[gsÙ§ž³gĝ{͂SÞ¯Xmñ•Gm»ĻW‘zăS}wœ]ïža…‹S‘tß»£Eyuġxi ‘`T†Ĥ®qŽÐ®R’ž\\[’´ª¨ÏQāVs~‰QnçEŽņÓA€£MŸ¼@®·SmŒcÜëI¯|}_ñœ‘N”¢¹ woÁH¯“ÃGL‡ˆU”Ïk¥·‡—Ka}‘D{‹¦¥£]£…{\\¯]Qàı„㜥cŸ¨½†w¬›o§nÛ`U„ùXjiÛjcÌшUŠ™R͔ŸR½„@z¤ôÂOld¾w¾M¨ĄY ­¦Ñ†ċĸ“€e¶ÚYà‡ŜGŽ˜®^c®õZkŠÏx[vZƒðÛMij°{°š˜qðʞKvÖÀž¬A–l†K¶¦¶_T"],"encodeOffsets":[[19817,45967]]}},{"type":"Feature","properties":{"name":"Vojvodina"},"geometry":{"type":"Polygon","coordinates":["@@³wĭg…‹Å_ßCó§ëWÓH©z…’‘hMª§ššrG’sr¿`ĭĎDx`‘g€­ÛŸZ}ҍs§K¥“F~Ék“ŗ‹“xÏh¯†ïNs”f¢ž¯tčk¹HÓjëa‰oĉry_³lē·K}¨żˆH†ÑGxFÎ{†T€²]œˆFˆö{ŜI|~uŒíAā^ś°q£D£x˜‚‰¬TŠðE\\€¯ZirÏo¿Œdœ´˜½ÂW¬‡dBÊwœà~´Qš„ÖH[Œ’˜™Ś@Gf茪K¤¤ÀtqlƌÂSÄdÀºiݤä@¤~€˜œ^ƈğ`™¢“àW€½®fX“â‘’áØHzaF叙ÄÙ½Ė›ô󲗠P‚‰ä~v»Ô‡dZdž§š­¡cJ{‡‹ó…ηœ@ÔwL—Ík‹Jõ]@‹"],"encodeOffsets":[[21871,45899]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Seychelles.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('塞舌尔', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Mahé"},"geometry":{"type":"Polygon","coordinates":["@@XIIZn\\PAfFPLH¢fCTSHQSWHQCcRWFWbMdaJFreWcFySgTm@]RIJYk@]RCROFUt_KGJJdNC\\DDRWTHXILOG[bBL]TMCYNCJaNIRQJOG[HCN"],"encodeOffsets":[[56696,-4750]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Sierra_Leone.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('塞拉利昂', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Eastern Province"},"geometry":{"type":"Polygon","coordinates":["@@bRxŠŠ@rY¾\\œa~phB@ÄOšTHWĺpfоf dV¾Rz\\zˆUŽtZ®–ŒwxT€G‚•އdu\\Aœ{~Z\\KÂZb\\_hNt´†œfzaQ­bÍE]d£Ew–‡R‘h‰tGmmu£U‡eDmeomOsËK¡P‹e\\uhJÆgl{x\\Ž€Zv ˆ€Ž\\Ž€@„f˜kL›K›aN_]‰agrÅ·Ío`W_‹A‰PWoaWy©{OBɟ“KgcU]yƒKcq[eyDakS—›q{m_TýÙ›i—¡ÇP›z}L«ž[´WnvhJvOxuzE¦×ã[{[Q‡VfÒ¡¢ªœjDNg„PL|^lEl¢…YU\\D l†rTΨhšU¢AÌe–@~rc†xY¤UZ©b@jevNŒeTq’"],"encodeOffsets":[[-11880,8701]]}},{"type":"Feature","properties":{"name":"Northern Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ZnzqyUYZ"],["@@yb›e³…Ms`ga[ÁY[L}Y›|[Bcvˆ–HwS‹x­•sYVy‡y[½QcUeŸ‰½oeXĹSGP™@ÃgA}o›b½[qZ‰@w‰aQ—D…O—Lw‰B]‹¡…Q‡•›Mw^iA£luG›­ˆ¡m_…rWE•lwˆËPyj»mbcCW…‰Eƒm_V­]¹luyPkduWmF[gyX{„§kk½igqmAlŽu¸Et©BŸSoL_~«tG^ܦPhtt¦XxŽtÕ¤K“W{DuoU‰FwœOx{œSzNÀMlE²–š”iŒ^™„TnH‹Œ©LUXDŽU€vxÔjdXšºOT†|F”€p¬xVi VTf®ˆyx€ÔGl\\^˜tHS–ŒJ†h\\ºrˆOzx‚R‚~Cb´LšŒ^LtŠèEptNzvøXLVİ|Jq¤w¤QǴÊXºͨ@ʖ@Ie”gNuPÉtYŠF”bž‡tÃFq QN«|Uj½ŽaqiV«‚qUsêUpŸœkHU‡X[Q¯YL‹]Ë~E„N W mOg"]],"encodeOffsets":[[[-13556,9114]],[[-10835,9249]]]}},{"type":"Feature","properties":{"name":"Southern Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@¨TObšhvG¢^ÞIz^ÄD˜Mdi‚Q€iTgUo\\‰yQ±JuqIÌđšħˆſŒ"],["@@‚cY[g€"],["@@pd~RnBhr€jl¾¨l|ƒzW\\hnEvXlczOvºk®^`U„nŠFX†dDŽa¼nziÌOx‡–kXF†qn`‡¢œ®vH¤kjBx]œNˆ–†RŒ¢A^xŠ˜K†P˜Cr‘fSM‹fu@iªaVYZ£wd…q@}f•BËV¡g™Í§qSk…CŸV[†Z€¡Fk]kK{ƒOMhiC©›¢¡eшU\\R\\|ØäF¥vyPwIuugXm\\³¬~KœyÈOF]ycW“Í…aLëąhuC‹JSaL—uiewcK^ua‹Gĝ¸o~‹~ۜíš÷–Ǚäȱþē~…P`r°LÎ}ƒŽ…V‰O{~|¨jj V…l•BS®Ñ¶J^xXB˜Ñ«…F»jyO‘Œ‘taxiJ|yXg~Ȱ_ÌF´]R}¾£¦D~"]],"encodeOffsets":[[[-13269,7755]],[[-12856,7840]],[[-13300,8435]]]}},{"type":"Feature","properties":{"name":"Western Area"},"geometry":{"type":"Polygon","coordinates":["@@ TªAFsv·k}QocÕD›‹mIwJ”aÔUBo¬uP}c°D”€^ºWž¯¨aXyŽK"],"encodeOffsets":[[-13354,8578]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Singapore.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('新加坡', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Singapore Community Development Council"},"geometry":{"type":"Polygon","coordinates":["@@dbFVa\\\\`JXGfTrPHPOX@TXhNbU@ISWSiA[_@GcLkZUMMAqJMAIWQOJMKY@OGYFL\\WDYNDb"],"encodeOffsets":[[106287,1337]]}},{"type":"Feature","properties":{"name":"North East Community Development Council"},"geometry":{"type":"Polygon","coordinates":["@@B\\TjTX\\LjcN[VMbCTJFQacFM]QYBGSM@iQ[^GVMAMNDX"],"encodeOffsets":[[106370,1403]]}},{"type":"Feature","properties":{"name":"North West Community Development Council"},"geometry":{"type":"Polygon","coordinates":["@@TV|hbFTElW\\kCUSWW@OPOGSqHeIW[_b[EUcaaP]V@RVFO|WrA~NRBT"],"encodeOffsets":[[106253,1473]]}},{"type":"Feature","properties":{"name":"South East Community Development Council"},"geometry":{"type":"MultiPolygon","coordinates":[["@@CWNMNBHU\\]jRN@HTZA^RENbdERBLVBZGTiJDfSAMSgBe[CQGaN[A­]mOeYEBINBrNNYVKlHd`@"],["@@]DITJVbaCZ|NXIVOJQKmuUetKH"],["@@WPUJPPjS\\DlEAMWCKI[EQN"]],"encodeOffsets":[[[106370,1403]],[[106526,1441]],[[106446,1441]]]}},{"type":"Feature","properties":{"name":"South West Community Development Council"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ZH@SYL"],["@@]VRFTKjGUW[P"],["@@TJLU_L"],["@@XB@SKEKX"],["@@T@diaSOAeQCRQPJ{[UONBVYtxfXBW]XDV^JA"],["@@ASMQB}XqP{UE@Q^UbOCaZMXCK[MESRSaMHP^QNMYiZLJZMFJoZuNCGcFyMOM{xCG^uSMCQaOKULYSAE`JHKVZhELj´r˜@ZRLNddLd^b@POXIZB"]],"encodeOffsets":[[[106316,1291]],[[106316,1277]],[[106201,1238]],[[106260,1238]],[[106201,1323]],[[106253,1473]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Somalia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('索马里', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Somalia"},"geometry":{"type":"MultiPolygon","coordinates":[["@@VAPdNW[mYGBl"],["@@YRH\\^BHQS]"],["@@VDguSPfb"],["@@ƄƂƒžZdŐǒİƜŢdžĨƄ|ŒAPX\\~œ˜’LVExlrNDJ\\lCRPª¼vdĚ@ƨT†HÒT¨@zH‚R¨h‚^„V„HäBRDˆjŒ~z~š°ŽÆJ^\\¸h€†|ިږǠČİ”d@XNĎrØh„FhZæ^Ţv EšN€H¢OƸCƐ]à@¬Q¬LƞM€HžEjnѴҢ΢΢ҔҺ¢œ̞̲όϠȀȐ΢ξ¿@ݿBiBرɈoPԋǘ̟İӝnjʷĔ¹d©dĵŒq`»tOXeRad•Zcx³žcZefo`’ƒjUZo^Y^[T{T]v|GVw`aduVQXUHF]x_JgbeXe’O„KNkZQR‘|O|WRQ~QTC^QLWÆAjW²ě²WYmD[N_Z§łUdw‚oTGRy€{zszww¤wØYª{¬K`S’]^YNWšBœTthzxœØĎ^`j„†–j†€ŽLZɖΐ|¦hBpIZJZRMZLJg\\QtmZJhEX[repDGiZ‘AYHVXcj]^C`‘bwf‰tl•p‡Ü÷ÎÕ½ˆ}¢‰ŽoŠwp[`aL[„srMdY¨‰~xmratY˜_œS\\@‚Tä[tM†C–NlX‚T~H~PŒI~D€M’I¼J|Z‚hKT^VvTdVtvjJ„FžtZB†dll\\l€|brfNhG`D”GœJ`NLX\\JdB\\PR\\dDnTJbTRP`THpDnThHrjr`|VXRH`PN’Ld]pUJMI[\\ObFOX@R†YŽs‚c”EžSrC~BðdŽE`Sti ¥\\O®S†@pF؀À\\rA†Vt\\VR~\\JL h\\VxXPT`PRTrRhdP\\|TL^bAdHLNjJt„vAjXjJdR^†hXRTLj¬b~^f^ŽhjJ^T¢``PpT„G RBbKxk®NC€e‚KŠV~\\zHêKfFhT†SfAfHŒA`F^NlChJžGdL†|prTHdb|JtNhZŒŽxHVRdF€EzDhPr`|H°EŠXrL–]º]jMÌy†[O’BzJhRxJxRœRrDVŠJLFŽLbLp`VVtGÂ@|HrVFXrNHT`BbPltZpZb`J¦F’Ld^dBpS„SÔD|N~\\„pzX¬Y¸FfDҔ`JrHzNXZhB`LhXbj\\D²vfVxR€j~z|Œ`šTLA^R†Txdp„tlHTZPB†MdFfXhRvLz\\lFŽwlQfAš[zGjOZQ²nOPHbG²D˜oxGnU„RbUGoM]e{A}UmPgB][s_[GUwsAIik_k‰ÃJyCcU—gY‰C‰Gu@qN‰Xs\\aXG”K^DHe³i»QAqD©FiHÝD]B—EƒHy^_L•RsViYW‡Ee[BcNyQcaeME…EYIJƒLMĂd`AªD|@BRWTw|AbPXEfbAVW‚iTB‚gzIhVVB€KNg`[SuMKMgcQC[iBSN«GaHKNJvQR{L©G¿QÅ]Y•g³}c]OUE›DPƒ@eO•SsAiH‹NiAgHo]u@eKoSy@]eqD[Ka@eIwSqJ]O—DISqF[UmU“C‡FW@s\\z_Cg_…w¡ak‹±{_YW[goqWaU@]NmI›O_gqkYg{_Q‘ks]WCUcsMIQ}G‹]ƒMy@cQe[S[_]sQ‘NiE]co¥›Y]U}]UmGge]a…G‹SgK}aci]ww™i¥‡SW—‘eq[QycgcuK]KwG™DcNKF_\\CGWFcQSFgekcuMGWiI…wëėgáįÇíS]…™“Åcsy…µ»]es¡IWcss›gU‘OWm³u­Gq[uEWi¡]›M}CuIqLƒ@_]¯Wi™©ĩ¹įw…¥¿“¿¡Ñ­q‰CQs—›¯‡›G_]ia_w‹sƒŸu{Éó·s•]agiOo_…ƒ«ƒÁm¿Ma±k{s}ïí«·‹Ucgk{skmYc{w­½gu§½k{emÁÅÁ½ƒ…•su‘§KU¥©OWűŷ‡‰•u}¥«……•¥‡‡™™u‡u§‘qqgmogyaoiOkkYKwQUq[scsisyCUU[OGK]gSgkOg_g¹Ÿiwgas[icµ“w_sS—{Y@SS¯¹‹}[±…u[Û§M@£{oeyY]QYCUWĉIO‘WSQkKSQQFaWcmyosWWS—usU·‘‹k•ySCck…cmgqU}kGS_U]AW]}cUMSwcWW»¡³‘§“_kUI͹cuUE“…kkC]e…syu_{UAaS“}]mù¿…ƒoa_GUum­‘¡—QUÓ¿ÉÅāăćę»Éñă©·ēġ±¿¹ÁăāegyŸ‹…ka…“ScCeacGU[FaS•UOIYXS]eWZWcYO_a[iisME—©o…¥ÅEeU@]aYs‰IWoeEaScBYJaGNSXLdW[kIg}yK[ce@_MYy_YceA[a{SUOiSWaOSqcwhEUS}AQNUHEWqw‡]ƒWaWQqBGakI_QOeuaw›eeE[SGcmO_D[_K]c@ÂőƴůǚƏȆijƊ@ՒB͎@Ȑ@Ĝ@ΐAʨCߐAŒCѦ"]],"encodeOffsets":[[[43341,-655]],[[44509,11700]],[[43052,-1023]],[[41973,2897]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/South_Georgia_and_the_South_Sandwich_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('南乔治亚和南桑威奇群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"South Georgia"},"geometry":{"type":"MultiPolygon","coordinates":[["@@­KD|ªo"],["@@gkR\\t®zÖHÀeî`LtĔ‡¦DZW¤B¶€ˆNVg¥UJ}seĢJZRÈS]¬VrhÂo‹WCŽ@Š„èrb¹waoƂ²ÞWQ‹gP”ªD†W²KÉ¿’Iv`ðZtiĕ¯ÃDSYÎs‚HÄx¬HhYiA¡¼\\Ž“˜]`pu“~ˆdÒMHyªufwoR]ÎJ^uikŠ{¤NªuT…BJkw]boÌX’]Üz‡éf]X§zƒœ}t…ãIm]ïSÔi‘qįa™^Nj÷’…R}ˆ‹r_²{bEhŸxU€ãnŠŒur“JăSƒRFj£CħxJv•–‡HFr™hkÿxj\\ˆ“Cgb³D‡tgm‹WĩHIfîT[p«VFtŐhybęOËXùA\\wÙcÉZqоnYV©QQdâ~q€ùm‘Eyb•cÃ\\‰@"]],"encodeOffsets":[[[-37919,-55805]],[[-38880,-55344]]]}},{"type":"Feature","properties":{"name":"South Sandwich Islands"},"geometry":{"type":"MultiPolygon","coordinates":[["@@b}“E¡hBbÒE"],["@@©›yzäb"],["@@`]èmBg‘uÛSךAZþŠ"],["@@ºTêeMyRÅ­fƒGífdEjˆ‚vA"],["@@JtŠr’Qbs¢cƒ[åIj"],["@@¡NLx€\\Ø[Is·Q"],["@@’I^‰CypT^"],["@@…z†Zt]su"]],"encodeOffsets":[[[-27809,-60853]],[[-27982,-60839]],[[-27168,-60383]],[[-27052,-59813]],[[-27173,-59199]],[[-27860,-58091]],[[-27384,-58443]],[[-28235,-57670]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/South_Sudan.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('南苏丹', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Equatoria"},"geometry":{"type":"Polygon","coordinates":["@@ ÂƀŸ~`àE®ƒ¸Á¼hƼŤLjĖÒ¦ªÒFǘb¾¼ĊxĶuð“ŽįÐýĊȹǸƠZêŰΆ˱ОZ²I¾pÚTɀ]îWƢQFą»ÅÏ[¯~ĥG±“Ļ@™¨ǽŠĉÂùrħ¥ûïįƒů›ŏ»¹ā½¿¥ƭXěIqýÛō•}sNjĄ½šĿ@ūďŸGoµ»áë”w𥵏hˍÁnd˜Hê{úßY¹†Ã¶Í„ÅaaìƒtDÈĕbÖÍfNÒ¿ªÃSŠEÄbľ"],"encodeOffsets":[[30530,4672]]}},{"type":"Feature","properties":{"name":"Eastern Equatoria"},"geometry":{"type":"Polygon","coordinates":["@@Ħ[ྀùǪÒĈvŸ¾ĔhLj®Oç\\¯ľǟG¿ưķF‘g퀗ú|þ¸ÂUº{þJĐ«–…‰‘ŽÝŸëA˛ŌţIYȵ@@¶¥^“ÕċAóż´ŎOfƅ[ŠČ•ZěۂţÝʟĥǫ·w_ñĥ˩ˣË¡ЉГ˭pŷĪŁÝƱ¡ʯmǿũj‹o­ĕz™®ëgAÜăŢ¹ˆWĜ¦Ʈ¾ÀμºœŐ„ŰðݦüqĨÁú‰Ċ§Ǿ@š”ļH²}Ħ\\°ÆÐ¼EĆ"],"encodeOffsets":[[33003,6041]]}},{"type":"Feature","properties":{"name":"Jonglei"},"geometry":{"type":"Polygon","coordinates":["@@ƒƽNJ³žYêƒôįÚıúƗ¼µĊķƜǐĺĂĤªFŒuUñĒNȿtïêùÐkìS–{h§Eĭ‡éGāl³ĀÙâkL¹¨»njcÔÏʆŊ[¾ LĄ¾Íäy†ŸĖÿ‚¿FëÆđîJù܍’©¾ôNÐÉZ‰[»ºwˆ^ä©\\Ì¿~bÖMĴĿX‰{R—§ēp™QNJ±@­LJ­ēgŷ½ćuǩÑཿúĥ\\ơRíXȿ^ÙSÕŬ¯Ú‡Ǝ‘¦¥Ģƒ„þėƒrŕŎõ¦i~įØóä×ƈwþ¿ÊSò·øKŽĔėƖ“Ħ©¢BƖWîf¦_ÊÁĒ æËäF܁ĒE¢ªØäÄÐN”mޖĸúêÞHź[ȞS"],"encodeOffsets":[[31682,9758]]}},{"type":"Feature","properties":{"name":"Lakes"},"geometry":{"type":"Polygon","coordinates":["@@ʬýĶrĂĪUȄÉĠ•꥾kĪžÎИҺȂzȄ‡€s¾ĭ¨ĵ¤×ĘȯœťlQǂHŮIǨZİ×j}ö¥ŖōqĘƑý„ƒ¦ġ’¥ˆƍ°ÙÖū½o±JНY΅˲éůƟYŃSğɴ˓YjƱƍƷµˏԃ¶ɓǠɗ̴Aǐ"],"encodeOffsets":[[29189,6618]]}},{"type":"Feature","properties":{"name":"Northern Bahr el Ghazal State"},"geometry":{"type":"Polygon","coordinates":["@@޵Ĉëöɏ˜Ã¢}ź•žƒ¢PɰĚIJp̜EɂažLŒɝǣϑSÓHïÕǑÝƝ‡¯ġñħÃ÷½˥Ɲù©ŧ¹×PÛ~ëªĉ’»¶ġÀíøsČfɶWøÍľ™ľfƮd࠾"],"encodeOffsets":[[26705,10300]]}},{"type":"Feature","properties":{"name":"Unity State"},"geometry":{"type":"Polygon","coordinates":["@@ ÂÒZΜ@@˨ͺǦ¸@Ѿ˝ʰȽHĎA@ȃȝTŹ\\ÝGùé•ķnÝM“ÃϏã©×F¡‚đEÛÌãŸåÂđ`Ée¥XíAƕª¡”ĥĘƕēLÁ¸÷TñÀÉxýØƇôãǧYŭJǁGkR›ŦėȰ£Ø§Ķ½ĮtȃˆgʠRǰeŊ» õ¤ǁń»IJĽǬËàíTǷC}ʲ¼ČƶŦjv"],"encodeOffsets":[[29696,9906]]}},{"type":"Feature","properties":{"name":"Upper Nile State"},"geometry":{"type":"Polygon","coordinates":["@@@ȄȮ@ĐTê´̴πœˆ¼úŲɪƈôɜɚ¶˜áŚ@Ѵʛȴղ@\\ÂwȈӀc“ÏÕͯ•ˁÄǡÌͽq¥ɪŕŶǙŔęĎƏÈsB­p{Iŧsģ¡•W‡wȗȖBϽ@՝©¯uq“¥ZÏeqÑÉS•…ßh[¸±t·Dřiuuï”ą‘w™d©}CĉlÅ×}…ƒK¥]A•©álÿÚk´HÈêFĮg¨•|ëTÏléúsðMɀđVò‹vEŽģ©ĹāƛǏĉĸ»¶ùƘÙIJóİ鄮Zlj´ė¾ÿ„"],"encodeOffsets":[[31682,9758]]}},{"type":"Feature","properties":{"name":"Warrap"},"geometry":{"type":"Polygon","coordinates":["@@ˆ°ÞƞÖǒGðTÔǤϒőɞÓƴ@̺ʚ@Ҽ@ʾ@@бiuƵť»ċ~ʱǸDîSÌßľǫ¼ıǂŃö£¼ŸfʼnQǯhʟȁyЗҹŽÍlĩ¦½–ŹÊğVȃāĩĵqʫþ„͔cȖLĈŽƬ{ÔëìÞĭÒăœŏüDž¦Õ’ʼnƸ¡ü»Ǝ"],"encodeOffsets":[[28307,8522]]}},{"type":"Feature","properties":{"name":"Western Bahr el Ghazal State"},"geometry":{"type":"Polygon","coordinates":["@@c࠽eƭšĽÎĽX÷eɵtċî÷Ģ¿¼µĊ‘ì©Ü}ØOŨºúª˦ƞø¾ĨÄĢò¼ƍ¢ûŊƷ֑dž¥ŐûĄ›ĮяÝìë|ӍƫKćdȕƒ͓qɼƟ‰š@ĥ¦ŇØˡ«˛̕{̉—śŧÄŽƐϨuÈ·n£ÔínïÆ™AѦۆíRąÐozM¼¹ª‰O§šBÄpš¶¤Pv]ČÇì£|ÕYŸšá˜·¶ŸŎ·vQ‘póVā_³|Y†ŗEđfË kœnĈĖIJŽtœïp•[Ǚ„—U«hąmŗ~Ïu{ÄX’ˆ€°Dþ£…Û~\\Œn¦¶LĊĄSÐvø…\\KĈÎľ̜G G\\¼ôVx”ĸtºa|„Î`œ…ŠZÊe¼šäŸ¦tļö\\ªÄÆ[Žš~IŒ—x–H¸Š¦îLxˆÊMČj”h¬eÚtŪJhbľFĈ—AǙ²a¦”Ç"],"encodeOffsets":[[26705,10300]]}},{"type":"Feature","properties":{"name":"Western Equatoria"},"geometry":{"type":"Polygon","coordinates":["@@Ŝ€̊˜̖|˜€ˢ¬ň×Ħ¥Ţ@ƠŠrɻBǏɘ̳ɔǟԄµ¶ːƎƸiƲ˔ZĠɳńTȺǷþĉİϔvïwĵ»ĉa½EǗ©ÑÑ¥LJĕƻţ»g·Â­„ßF}_ſŷŸÁÃPʼnøŇˆađyӕŸ…Cm×ßB¡³éô·J™¶Ł_črM²ÓU…—y×ÇSa…ÉI«ëçSuʯPāQ³Ø»P©œHªqr×fi‰N™ ¥buìbŽWÂÃt·âõG« Ln¿˜H¦¾ůŤE¨¬G²†¤tè¿ÊCÈmÑ²¹P¹¸ăžïôÕlčOÿôasz®ˆ„ cŒ—T­Ì½GeŠÅ˜MĔ’ gžlŽÀœ"],"encodeOffsets":[[27063,6802]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Sri_Lanka.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('斯里兰卡', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Province"},"geometry":{"type":"Polygon","coordinates":["@@nDxІMTx’LWz‚€oÒr°o~QÖyÈeRB‚Æ„ŠN€šl^JžrEn†¨j¸ylwaƒ]ÿSquEK½`¿üXZtMÈ\\L»a‹KµFǕ”ś—…{@fKÿuqU£gY‰B{so§x±y¯Çƒ÷MŁb\\IŽfte¢·jV¾WVˆ†WИLvhj€ƒˆVl•¦¯¢Gn"],"encodeOffsets":[[82353,7532]]}},{"type":"Feature","properties":{"name":"Eastern"},"geometry":{"type":"Polygon","coordinates":["@@n–ĀZhlŽVkonŒn–inx{lA–Ѱ³~·fiGŸXusUiŸliƒ´MZ‰hQ®JP˜Šb„}ˆšnϾƿf}¦‡P‡joKgT‘hwxEn“²…Þʼnj¯xō^ixõH«M›Iʼnj×S«o¿B[m[»Nom}Cky•Js_¥kkƒÃkHovmBŽj˪R¢ijSœXxmbß~c¦l¢lbmГŒV`e´F|eˆé»Zy‰IHËyccTU¢{ށpkèbzHÜ[l·c¯™‡Ku A”‰~bŒK¼¼EœLt‰àw”bDÀ[–Tجx¨S@h…ÔPǰul¥Ï‰LD€›Xcj…G{`—NKMŠ“„]xŒìtd•ŠEž£ÈEbh¬ƒÂJˆz¤q„ÛžyJ{_"],"encodeOffsets":[[82692,9119]]}},{"type":"Feature","properties":{"name":"North Central"},"geometry":{"type":"Polygon","coordinates":["@@dAJĤtb„Gĸ~D§ˆ_b«¤]^xzTC|€ž’†´…–„œ`N‚¨wŠTFjÔD¢xŽL|`zIܝrƒy£I‡„Ág«Fa¤ÇF–‰sc‹ë^w”ƒN‰žL˜M|_†HdiœWCŠK¦ÐvkOǯ†Ó@g§T«wSŗ\\•C¿“aßxsŠ›K»FÇ[NYsûW_ÀL¾vFTr^Āb„kx·z§im…qFIk]™‰MŃ_PG®[xI’‡dMâ¥b«°§F[bş°Š•^‹Se¤M¼m‚Œ®tdx¬S„"],"encodeOffsets":[[81954,8732]]}},{"type":"Feature","properties":{"name":"Northern Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@}Çª¡l«VŒ|¢MÔmª—imš}‡w"],["@@bWaÅ~G†lX˜k"],["@@UgkÿYm•K¡wÓCEi€Sx‰§_Mƒ›Á•³†‘…D{yS]w£^a¬‡`C¨ķ}ƒHsaIģcBħ’BxjlfĤ›ö^¶AœÂÜ¢v‚¶HŽr˜dªF–UnZlƒzuJS¸ü ”¦m„ćæ¼m¬‹¢S”wI—ÎI´zPj¯´īеtRӆ»~µM±ªcWi¤in¦ŒèhÄQždÌR€M–ËÖăǀŷĸûØÕÆ­†¿`­jŸèŗQM©¾so¨ƒ"],["@@pIK­TPlzZ"],["@@gQfa_nw¸šDlyÚ£"],["@@Vd€Km­g–"]],"encodeOffsets":[[[81809,9171]],[[81629,9759]],[[82870,9208]],[[81756,9843]],[[81902,9854]],[[81772,9980]]]}},{"type":"Feature","properties":{"name":"North Western Province"},"geometry":{"type":"Polygon","coordinates":["@@Ĩ‘Tƒw«sc‹­nN»f£ŒT–]‚‰Š¯\\a¨E¬¯¦aNáˆcJ‘\\wH­`OAfQzÇRÕp}q¯pсXy‘KSw…Nw‰mC}–‡UMŸÏi뻡”o€»›·ˆuw­aéGmł}ŞGÊXNDÎ]þ‘Ɔļ@ø[–tX piY‹goVck½pōÒWTž‘¢šÄcŒOÄxÔR’EÔl†Dº\\hˆXHf"],"encodeOffsets":[[81838,8773]]}},{"type":"Feature","properties":{"name":"Sabaragamuwa Province"},"geometry":{"type":"Polygon","coordinates":["@@ì¼ÐjN ˆV~•Hm°¡–¥Uk„‡iug—KXXUU½¸if¡esJ€[łaøNȄF‰–Q@u“]`‰xW²ZQwwY»‡¹^‡I¯„xOn©€±ÏLwtÇE÷qEY¢¥OP¨ïQAYûjeG“†ïŘfT wREvžWvmöp^oxT”pnL¬‹Peà¦Ø¥MQÆxD^Ä"],"encodeOffsets":[[82121,7433]]}},{"type":"Feature","properties":{"name":"Southern Province"},"geometry":{"type":"Polygon","coordinates":["@@rE¨}¨iR]Êa|tlG¬§PTW²âŠZC”…fHüiBZðRO§¦PZ¡rFøÈFxsÐK²žxªnWr¦ÄBToPŒ³‚Ontþr¶v QRò–r„ŽRNd‚nApulG]o—“{[Ie·³ii‹[Ÿ¥£ikuçcaa¡S¡…ʼniű±™O}ƒwKƒÇIÅYdĉAiv‡Q芽Z}„‡LǺq|WˆsrWœe„Jp¥Ů"],"encodeOffsets":[[81908,6595]]}},{"type":"Feature","properties":{"name":"Uva"},"geometry":{"type":"Polygon","coordinates":["@@Š}B“vŸˆL°š¸d\\kGÛaylç‚o|V¡dSzdG̊J€‚Yzê¼f‡E{f³U_”‹nÏkak¡d¥à}naWwT›jiQ¡i˩McQƒ•qQñŸRµuýqmsP‹´OSpÃAÁ¥Xq©mwmªwPƒžJ°]ˆˆºZ¼xxR€±YwX_Š”^@v•REŠz°w²p¨|tŠAhZV¤vrLĀe|@˜†“ŜEǖL¶"],"encodeOffsets":[[82922,7808]]}},{"type":"Feature","properties":{"name":"Western Province"},"geometry":{"type":"Polygon","coordinates":["@@êH®bvx¸‡¼œp¢“]ÃwCRŦN¥×fߌOK«omS“pwo]nõXuŽFuxQ‚ŸeSðŗYDá‰X±OS«¨kH{sÉbQ^§j§~qFKҟŊ‡â‹ĘIžcÄz„G’mĔ~PKœ}|Là"],"encodeOffsets":[[81759,7448]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Suriname.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('苏里南', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Brokopondo"},"geometry":{"type":"Polygon","coordinates":["@@ĶħßƻeŽÇÏjƍÁœ̏ʁÂm͌πħưĶńdIJ̨@RėĂàƉ"],"encodeOffsets":[[-56150,5123]]}},{"type":"Feature","properties":{"name":"Commewijne"},"geometry":{"type":"Polygon","coordinates":["@@‡ũ~ŏþœλwsƐáîGNCFADCFCJ@@Âì^Č͔W"],"encodeOffsets":[[-56007,6122]]}},{"type":"Feature","properties":{"name":"Coronie"},"geometry":{"type":"Polygon","coordinates":["@@GıƩųǩJƑ¿ŁǀĂ\\īǪ@DzԈŵİÅ]ß"],"encodeOffsets":[[-57245,5799]]}},{"type":"Feature","properties":{"name":"Marowijne"},"geometry":{"type":"Polygon","coordinates":["@@иýư½„ÙkǓƻȣěå̙Ƃ¦ƤýŔ}ՈŪ"],"encodeOffsets":[[-56007,6122]]}},{"type":"Feature","properties":{"name":"Nickerie"},"geometry":{"type":"Polygon","coordinates":["@@@DZĬǩā[łƿɽZПï‹ȀĨƨ~ɘżø̜©"],"encodeOffsets":[[-57962,6101]]}},{"type":"Feature","properties":{"name":"Para"},"geometry":{"type":"Polygon","coordinates":["@@KġϐxèxUƎ¾ˆɴ€tƏμx¥ƣĹǓ±LJŸƊāÄQĘ̧@cıĵŃď×ƭĄȧLöΌ"],"encodeOffsets":[[-57257,5661]]}},{"type":"Feature","properties":{"name":"Paramaribo"},"geometry":{"type":"MultiPolygon","coordinates":[],"encodeOffsets":[]}},{"type":"Feature","properties":{"name":"Saramacca"},"geometry":{"type":"Polygon","coordinates":["@@½‡VƍçwϏwLĢPbHIJ~ÌßƊ¸àʐ~ɦö¥ąȭ"],"encodeOffsets":[[-56671,5807]]}},{"type":"Feature","properties":{"name":"Sipaliwini"},"geometry":{"type":"Polygon","coordinates":["@@РðɾYƒÀǪIƪŴOaõ΋ȨKƮăĐØĨƯžοn͋‚Á̐źÂŔiƎÈÐfžàƼĵĨ²Ljĺǔ̚Ɓƽ˭®ǏOʅª½IƵůƎȍÀCĸȟYŵƁǧ`ɕƩďŋÃŹĿĵNj‹NĺƵSœŶċÅǻUÅąĩrȹǁļƻʃàmŜ˷ā³˯ĘœXĭâėCǏɶēǚyŎDžǾHƤïƀSǞʟ—˺RļƏň±ƀƕDŽwƊİņIĮĪȖãƸäĜƀðǸiƠpkÜŬäĀ"],"encodeOffsets":[[-58595,5390]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Swaziland.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('史瓦济兰', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Sifundza seHhohho"},"geometry":{"type":"Polygon","coordinates":["@@®Ŷɼ\\¾ŘĤ¬ÊĎp̊ǻćaVǯői‡Ëǣ¿“ÓA×ßKĩxužũà"],"encodeOffsets":[[31640,-26947]]}},{"type":"Feature","properties":{"name":"Sifundza seLubombo"},"geometry":{"type":"Polygon","coordinates":["@@UǰĈbĒÁĜ €¡æQdŷ}ŧFċ¶ķAˁ•ˆÛ]iĕiȯÓDřņÃQƉث¸ÒÃÆ€úîžHȀêþKƆ"],"encodeOffsets":[[32439,-26791]]}},{"type":"Feature","properties":{"name":"Sifundza seManzini"},"geometry":{"type":"Polygon","coordinates":["@@ŪßvĪwàLBؔÔǤÀˆÌŒjLƅéýGǿíùbűÛÏlŁ­ŸòƅUݵmŎ^ȸþŴ"],"encodeOffsets":[[31640,-26947]]}},{"type":"Feature","properties":{"name":"Sifundza seShiselweni"},"geometry":{"type":"Polygon","coordinates":["@@ƆV ñł®ÐkŲܐaÄŷѬÁƊ×ÄRŚŅÔCFŵПF˽ĨljǮ^êÑ´WÆ"],"encodeOffsets":[[31632,-27429]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Syria.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('叙利亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Aleppo"},"geometry":{"type":"Polygon","coordinates":["@@Ź…Ǔ»ÃƃáǕgç}ÛćFÉIJėmµãï¯ųF±ǨƵΏCĻ\\ʼnÈȁWō¤ŁÔƒĄ˜¢ÿ¢ıżM¾ō¼qŽĤøÇĤĕIǘ±Ő¢ìc֐ðÔæ̐÷_ÍāԔɊ‘®¬ƨÎÞOȮÞd†ǦÂŲmƈ³â¿"],"encodeOffsets":[[39559,37666]]}},{"type":"Feature","properties":{"name":"Al-Hasakah"},"geometry":{"type":"Polygon","coordinates":["@@͆º̪ĸǒϔŽĠXȠĈżLǚ‹ĐØfȌEäxǔpȬ®ŲĖƆ³m›„ōЁΗÇ¡ΓÁĝƅʯĪǻZǽ·Ñ͋pƽ¶۱֜īƄ›ªŕžěVÝŀ"],"encodeOffsets":[[40386,37578]]}},{"type":"Feature","properties":{"name":"Ar-Raqqah"},"geometry":{"type":"Polygon","coordinates":["@@ĮÛɬHdž“ȖxÞĿĜUŖœ©Ǘα̧ڃįŒȏ¨̿¨ȅKÇ®ǧƶE²°Ŵäðn¶ıĘEÊÜĈè~ǖhƄâ¼Ä†ǔź"],"encodeOffsets":[[39559,37666]]}},{"type":"Feature","properties":{"name":"As-Suwayda"},"geometry":{"type":"Polygon","coordinates":["@@Ȳ„Ö•úķņ†¹Ŋ‰hÙǢƍőŏŹEšŇđXåę—m˙žVŔ{ØāXœĒëfDŘkĢê®ĠDŸ¾SĒĀ|"],"encodeOffsets":[[37449,33992]]}},{"type":"Feature","properties":{"name":"Daraa"},"geometry":{"type":"Polygon","coordinates":["@@êļ¾’FĤˆČgÞªwǘ nÊĚóƖþÀďÿ{Tđ ½ğCé­lġCŗìe›đĂW|×UœęjǙŤŅM©Š¹R²řˆ"],"encodeOffsets":[[36658,33540]]}},{"type":"Feature","properties":{"name":"Deir ez-Zor"},"geometry":{"type":"Polygon","coordinates":["@@̨ڄǘβĬƃ۲֛ƾµ͌o½ĉZρċqŹT̓ėĿėǥ¥˳éБȩƋǢӉ֞TâéŨıÚ"],"encodeOffsets":[[40184,36096]]}},{"type":"Feature","properties":{"name":"Hama"},"geometry":{"type":"Polygon","coordinates":["@@©ǦpƪwÖ¶ÞæWâ»eÏRŋń×ńeƊxâ·Ģ‰Īv´ŜŪŎ£ȂXŊÇļ[ΐDÈ­Cő«éGßű«ğŕōĨ…Üá~ƏÙ§HÁď^ǥ•ȓűðŸZǹÅĕUµž×ååUežéĸŒ´]Ŧ"],"encodeOffsets":[[37123,36069]]}},{"type":"Feature","properties":{"name":"Homs"},"geometry":{"type":"Polygon","coordinates":["@@fæVØæ¶ĖVǺÆ Y²ïȔÆǦ–Đ]GÂÚ¨Ɛ‚â}†ÛŎħĠŖŲ¬Hà¬êDŒȆL̀§Ȑ§İ‹IJÙêŧSáӊ֝ƌǡܝλҝʅã£̙ƽЧ˚ãfĝÆûŘȱǂÅĆ¥CŹÚÝĘćČé{ƅFt»Űb¨Ɨâ|ĖĥpƵCB~ĊŒĊĖ"],"encodeOffsets":[[37185,35740]]}},{"type":"Feature","properties":{"name":"Idlib"},"geometry":{"type":"Polygon","coordinates":["@@xĦļ”Þ¤EƖƈÊúЀ{äĖJÈģģ÷rŎ»N½IJŻĀ¡—¡„ăłÓśũž³ĩuġŠá¸ƉwŃfŃØQŌfÐá¼åX`”ķX"],"encodeOffsets":[[37017,36669]]}},{"type":"Feature","properties":{"name":"Latakia"},"geometry":{"type":"Polygon","coordinates":["@@ĸW_“µÝxÕoƩªǥ™hƽqógƌƳŦªÐaŠÞæsâæüÚdn¯ĪmŠ«"],"encodeOffsets":[[37017,36669]]}},{"type":"Feature","properties":{"name":"Quneitra"},"geometry":{"type":"Polygon","coordinates":["@@øĝh݇ċE콑¦Ê¤€ƈ“tUŔ"],"encodeOffsets":[[36733,34113]]}},{"type":"Feature","properties":{"name":"Rif Dimashq"},"geometry":{"type":"Polygon","coordinates":["@@¨úÞ`SÄÕpnàĊĠưˆÜu„¢ÓŠš¼ĦæŠQŰźƆEê|ĈċÞėźÙ¦DÆąȲǁüŗĞÅäeШ˙Ώȇ÷P£wyĭȁ›wqǡƎgÚʼnŠ…ºŅŽùĸՖȱƒ¿ĐƕýęômÉǗŸ©x÷Ğ|Ŋ"],"encodeOffsets":[[36763,34246]]}},{"type":"Feature","properties":{"name":"Tartus"},"geometry":{"type":"Polygon","coordinates":["@@ôƾršg^ť‹³êķĉĕĉőA}ś@ŸŪ¹ĶzĢUúÄøcÊ"],"encodeOffsets":[[36797,36104]]}},{"type":"Feature","properties":{"name":"United Nations Disengagement Observer Force"},"geometry":{"type":"Polygon","coordinates":["@@{ʼnVœ”sƇ£¥ÉéĻÖȒwƾÑƘ®Î؎"],"encodeOffsets":[[36763,34246]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Tajikistan.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('塔吉克斯坦', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Districts of Republican Subordination"},"geometry":{"type":"Polygon","coordinates":["@@˂žÖþƬ‚ʰ›ƘÐľNŠÒĚN¸ĩþ˜ŒÈmäŐDø¶ȒSŜ¤Ȗ–ȔϰēŨ_ź€pîƚ¦ʘŽVŏȌU…ĵ¦¥ĮNİðÐčØE¢íyÃơƁNƓ¹¯ŃoŃ·ĻkƓŽūRęĺęO¹ǒȗ‹£œƷýš­ŻšïúƻTœĜĝSŧĽÓlďijȋƑ·Ìũ’ƵoŅÛġZŭi}şµãnõÝđƿIzİвvĪď´ũĴïƆVĴĬɄ"],"encodeOffsets":[[69834,39839]]}},{"type":"Feature","properties":{"name":"Gorno-Badakhshan Autonomous Province"},"geometry":{"type":"Polygon","coordinates":["@@żŢ™®Ƹþ¤›ȘŒºǑĚPĚĹŬQƔžļlń¸ńpº°MƔƢƂzÄĪżȸx„ȸ©Ȫ|ĀoĬzǖþà¿¥ŗÐĞōú͖÷ąSµÅÌċq¼ĵƼñîðĦ|ˎƙŨs°ƍO¯ĊwpīĆ»GƗ°ĕÏñˆąǼůićȭÃéĆʼn†ĩUƹžċmùÉȁ‡ĹÅdz`”¼Č†JĄŕMŁ”ŋwé`ųµ±ãš…ƩăħƩ˱‹ʵƛƥŋƗQĥþŋʖlŶ€ŒVʎªǀ¢îGIJÉ~ǑÇ»ĆĠƨEĆǭŌįpµÞǵųtƉğıȍŅÅ×Ëa¤ÊĶ^ʊêØ"],"encodeOffsets":[[72130,39441]]}},{"type":"Feature","properties":{"name":"Khatlon Province"},"geometry":{"type":"Polygon","coordinates":["@@ǀJÞĒmö¶ä~ŠŮjĢYņÜƶpŪ‘¸ËȌƒĐĴÔkŨľĞTŔěƼSðùé×]ʉÉĵb£ij³\\ãĨç‹ŇŁġƩŠ‘ ʝ•ģVĹŋŠǡkÝí£ĩEȯǪʡ¥½Ýíǻ¡¡ėáRĻïɧƘNþ¸ĮĸšĶưǚĎǀŜm"],"encodeOffsets":[[69918,38822]]}},{"type":"Feature","properties":{"name":"Sughd Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ȓčȕ•ś£ȑT÷µŏCnã‹Çý—·ĪęM‰ÑĽMƗÏʯœƫÕýˁđIJơH«sƑAyŨɱæòŸ©ĶjÚ˲êŪµɲ¡ʤiĘĚ`ǸȨX¸Àëĸĺf ô͍ÝčÊȺºɌtɨ…CƢĶ»¬ŎhǀĈrø}ĴŃľÊɲ®ʮŤrňÖ^ê½ƀƳðÁʥȉƇ£œÛƨdħºÃņVdËĝaCý«©çøĝTŏÒĭ\\Żò́ĹŝR{ézåßc¿Êćçwā´ėVƣĢeƴÆǘƒʤvƴ³Ǻþŀ‘Âã"],["@@LjWûñċĊ"]],"encodeOffsets":[[[72411,40451]],[[72219,40834]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/The_Gambia.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('冈比亚', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Banjul"},"geometry":{"type":"Polygon","coordinates":["@@ŠLr«­FMš"],"encodeOffsets":[[-16994,13790]]}},{"type":"Feature","properties":{"name":"Basse"},"geometry":{"type":"Polygon","coordinates":["@@¨¼WÚ¾ÊĤ×ĆrntŮºĈjòòĥC™ÇÇȷ‰ãµÕdûačÐ÷r"],"encodeOffsets":[[-14898,13645]]}},{"type":"Feature","properties":{"name":"Brikama"},"geometry":{"type":"Polygon","coordinates":["@@¤…æH®EdçĮ…Ŝ¶‘ĮyŖhŲ«BÕαCϏFï«m˜DøkxZĘÚÒ"],"encodeOffsets":[[-17120,13776]]}},{"type":"Feature","properties":{"name":"Janjanbureh"},"geometry":{"type":"Polygon","coordinates":["@@üÐĨ½ð”ìcBîtÜMòϽÉXÙ§»y†ā]óÖ­BƻÖÕÎ"],"encodeOffsets":[[-15434,13887]]}},{"type":"Feature","properties":{"name":"Kanifing"},"geometry":{"type":"Polygon","coordinates":["@@tpĈSN™åG£†"],"encodeOffsets":[[-17120,13776]]}},{"type":"Feature","properties":{"name":"Kerewan"},"geometry":{"type":"Polygon","coordinates":["@@xŽ]äҊD;AňM^¨þMnģ˜Y•Éē¾ėj¹³½€ĿŸʃcÓPęāśĭ†cèq¬"],"encodeOffsets":[[-16957,13796]]}},{"type":"Feature","properties":{"name":"Kuntaur"},"geometry":{"type":"Polygon","coordinates":["@@¨ĜĔ¢˜¥º\\ŜÐæĒ@Ä£xùĂkAëdï“ħ¾ûÏcã¥ő—ZmĤýN"],"encodeOffsets":[[-15833,13963]]}},{"type":"Feature","properties":{"name":"Mansakonko"},"geometry":{"type":"Polygon","coordinates":["@@ĚĂÔOʄdŀ ¾º´ĘiĔ½–ÊŒžuiġÏ«ãUī¿‡ŁVijiCğű¬ŕgĭzµ’"],"encodeOffsets":[[-16653,13663]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Togo.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('多哥', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Centrale Region"},"geometry":{"type":"Polygon","coordinates":["@@¬LT~†šZ‚`dhU~tpˆ’@¢ƒ¤cĠhV„pDJh]xAÖb†ˆJŒ`ŽA¼_¼JžfÊfjGÆ Úóº›Rst‰^¹EÕH»P{E˩Š©{›O«Uq̓Ni{IŸvµRÕEQgF§u‹R[qĿq£CÃx‡YYJÁ_[\\ƒq‰Q‘JwWks½EqæLˆcÒPžfna¢tLfœˆA^l˜NC²eRE‚kxRMÐad¹hOd©fg„iDążJ޾CºtIrn\\Df"],"encodeOffsets":[[533,9085]]}},{"type":"Feature","properties":{"name":"Kara Region"},"geometry":{"type":"Polygon","coordinates":["@@\\@L­Žc`P–_h™jYŠRjSpdzAUtj–C^¨”ÄV”\\^€L^oÌbPopf®OjZf–ĈͰ{ǞĿRƛRcS‘LƟ{§€ÁnENčbµfmşiHÉee»I»`B‹_‡Ia…BÕ^wIgoCUƒğg£d¡„‘@o‡}sgV_cY…™S}«KO†H‚k`èHŠv’O€‚jnžwœ‚ªdLUvlÊYd·nTjaj‘Z­O‡Pm¡¯mƒNiz@l”Opur‘CG¢tItTêDVZu„­ysr[˜\\lbIpynJVfIkR@¤‚ÚI€P¨xPyªD¦M"],"encodeOffsets":[[421,10262]]}},{"type":"Feature","properties":{"name":"Maritime Region"},"geometry":{"type":"Polygon","coordinates":["@@¤R „`r˜lÔSÐ@”Ȋ[NY’}ˆ]œ}¼¼’‚´z¨W„@~Z²jV|eQ‡L£Qi|½ƒSHm]]zuIyNm”do†uSaª“VyhcU_f‘D‰Z_@•ég‡C£măm—MķÕom]Ùm@´ĭ@Ady¢_F}´I”ġC‰¨kZXMrƒVKaP]Žbd"],"encodeOffsets":[[747,6704]]}},{"type":"Feature","properties":{"name":"Plateaux Region"},"geometry":{"type":"Polygon","coordinates":["@@¾FltxX’IŠR„r\\[Â`ZIˆZÄw¤DŀrrQ\\vŒE¨RhFžQÖu¶J j|̔MlaH˝@ƹPÏM[Fţ\\ñW÷BǍEɅéDdÙiU±}Yƒ@§X³y‘»»›~‡^‘~MZȉ\\@“TÏkӗ_qŸƒ£Qfbg€wKyt_Kk„^„M\\Jªy^N]jTnSd‡NH jRT‘dIznh V\\nMŽ^ža\\jŽd¤Xì\\v]ìV™gƒˆ_òHäh^˜\\E¢N‚ŠN]šh\\]V¾MŽ"],"encodeOffsets":[[636,8096]]}},{"type":"Feature","properties":{"name":"Savanes Region"},"geometry":{"type":"Polygon","coordinates":["@@e•iY­PoeOpËa]pK[]U““Ã]§Di•VsyBociT‰QiZgš•`_OdK®[@NŠkp‘VGhXxY°TvB|´™M[z—’V`a~i[ùdApaZYÂs`³hg’č€g¶L䤢CÀfˆD¤ŒbOè{œƒCag‘@hS„İo~CxYǔɞ­UobYW•ƌÈǖE¶DAco·b™a_Q½ÍÑSŸN×M±]uQůȊƁ"],"encodeOffsets":[[1025,10465]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Tokelau.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('托克劳', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Tokelau"},"geometry":{"type":"MultiPolygon","coordinates":[["@@LIT[C@[f"],["@@E`FC@["],["@@BJKBGPVMCM"]],"encodeOffsets":[[[-175308,-9559]],[[-175909,-9370]],[[-176608,-8768]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Tonga.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('汤加', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Tonga"},"geometry":{"type":"MultiPolygon","coordinates":[["@@IJCPLFFANMGKIC"],["@@L^HRXZLLFPJLDRFPHNRPNABQGK@GHYHSDWCGDO@GDK@UCUH_BQCGBEAGAKHW@OAC@QKKKDKL[XMPUFAHSZOJALGRARDR@F"],["@@^^VZNFBGGGKSGQAIFcHIRER@`GTGRAHD\\ARFVAHFNAJKLJTC\\IHGRGNBDC\\AHUEGODGAQGCH]HAFIDGAEIIEYSIMNOXAPER@JHCFKBEJL@@VHFFCBINGFDRLFGN@HEBIJDJ@LDHIGISIE@EDO@KECSFIVCDLDBDKLL@LH@HGNDFEHDBHCFLHLNFDANKJDHGFGKGDDLJNBLANTFJFTHP@^IbGZG^[CMMMIEUGS@EACEQGCEEOOSGMMKEQLYDSCQEMMOUOOCSB_L_RSLIPAHIJGXMLCAQL[NgJ[F]A]XaTWTYLIFMLCH@JIZAZEXK\\"],["@@HA@MEGG@GRNF"],["@@BLFFFEPFPAFKEGKAQHEAGMCFBH"],["@@BFJBLFDIEEEKBEGKBKAEG@aVOJBJFJ^BJC"],["@@FDNCDEEMEAMFEHHH"],["@@GFCPVRHK@EKQEC"],["@@DJDNB^XMJC@KQOKUGIGFMBHJHF"],["@@GKQKMGGAQJN@FFHNJ@`RCM"],["@@I@MD@HDFJANGCG"],["@@@DHZ@LFFBLFJBJFHVLHCLAnGFGHORYHWDOGYAGEIGCAGKCW@IAMDOBGNGBEJGFEJQJEH"],["@@DJf^HHJ@TBLNADVTLO@GGICGCWEKGEKAQDOC_AO@"],["@@BHNBZRFL@FL`DF@NGLFBNLFGAKBQGQCMDSAKDIJGCGMGI@aHADU@"],["@@GJPLLCFECMGDMA"],["@@ELQJDPIJKJ@ZL@BCPYHOVUDK@SOCET"],["@@EHDLATFTFJLNFBPEHSDAFKESEGKIC@OKICEH"],["@@GDAFFFRJHGIKKE"],["@@AFNZHHJDHCLDZQF@TSGMKYIGIBCEQBQJAHORCH"],["@@E@CHPFJ@HFHEJ@DEOCKBM@CE"],["@@EBGHBPLJHDFEKEA["],["@@LQGYBIEKOJKRF\\JAGPYNCFDFPENKBGNC"],["@@KI@RL@PJNBDFVHDAEO@KIB@DKDQAEGGC"],["@@EEBGI@MPDFT@HFDELEGEKD"],["@@DIHCCMKKO@KDALDDBNJHJ@HA"],["@@HDPTJFHQCQII[]MQKKEASJMP@FFDEPFNTFRHVA"],["@@GR@XFFROLKAOQEGB"],["@@BJHLBLFHJJPHjNVBXINKLKDK@]EYEIWW]GIEQBKDEDORC@QRINAN"],["@@EDKBLJBJLFNAHJLCLAFDRCAEMCGDKASGO[GYECG@JLAJHH@J"],["@@EJDF@JHF@HFFNFHHFSDC@IUOBEPFJCAIQI@GHCHFBMHG@GKHOAKBJROPIH"],["@@NUEGEDERDH"],["@@LBMMEGIKEAW@GAEDANDPAJMDATED@LHPTDJDHCNBFIJAHFDHHBHLBFPLFHFX@XP@`TLBBCVOJAFHPEJBFFL@TSAKGKBKJ@FEGIAGHGJCLDHEBODGESODOH@HMXEFCJEBGGDGDMCCDIEIQFUNAC@MHCJDCSHCEIMJIE@MBGCQGACDHJBPODIBAEFEAIDIAOIEGDFV@PCHIFODCCKAALN@JDBFTDFLLHALFH@DGLMHSFOMKKBGRLP@TIAQ[UIAFNGAIGUJKEI@CEDICS"]],"encodeOffsets":[[[-180435,-22884]],[[-179172,-21883]],[[-179565,-21599]],[[-179178,-21618]],[[-179616,-21041]],[[-178981,-20730]],[[-178964,-20491]],[[-178906,-20436]],[[-178599,-20388]],[[-178576,-20318]],[[-178909,-20290]],[[-179309,-20230]],[[-178520,-20236]],[[-178560,-20302]],[[-178745,-20306]],[[-178459,-20159]],[[-179229,-20160]],[[-178676,-20114]],[[-178861,-19255]],[[-178290,-19199]],[[-178131,-19159]],[[-178199,-19144]],[[-178274,-19154]],[[-178097,-19093]],[[-178494,-18445]],[[-177938,-16327]],[[-177920,-16242]],[[-179896,-15978]],[[-178301,-19136]],[[-178186,-19130]],[[-178200,-19120]],[[-178203,-19102]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Trinidad_and_Tobago.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('特立尼达和多巴哥', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Trinidad and Tobago"},"geometry":{"type":"MultiPolygon","coordinates":[["@@CbRBFSSO"],["@@`HXZdPBVlLVNV@RPRGxlPEjPXYlPGZRH^ERYEUUYRwWe]AQWeLWOSaeOmoeKILy@QYWS[D]R]_IBW_ASSK]ACRwJ[GF\\ETr@jj@VXNNTEL^Lnp"],["@@nHhZPXC\\jDfXªJŽ\\Ab†TdT`fM^PZZDxQhSpEfF¦xR^DXZ`WnPPO|ohBhEzLlLXT„GH@`TZFbOdQ„YtSFC`KRiVad§PIP[QBQ]OG^iA]ZLPOPFNnHRZ\\LPT|BRE^NhEVL¦@VVVAbHVURJETb\\LMZP^HhnZM˜SjBLGrAºJr\\X@^VzC¦Z\\GLXˆFNK®GRR^MXBGWJM[UWEQiCe]QaeM_SQEQWCMHUIUqFkX³D‡TWCIMWCE_L—b·b‘Xen@@S[B[{CG•LŸE_QHWAoQ_‡OSO¯oyHiMuL[LWEcLkEYIYAMFOFƒISDsIeCSLYESJ{EYDMqWKJa@ehsN{@‘GcOcXoEkYwS]UeOkFILFV\\XL\\„J"],["@@RCH[WIUNT\\"]],"encodeOffsets":[[[-63237,10939]],[[-62201,11521]],[[-63359,10335]],[[-63169,10959]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Turkmenistan.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('土库曼', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Ahal"},"geometry":{"type":"Polygon","coordinates":["@@Ü¿ŐÔɴ|ϬjȒØ̊‘Ȕ¥Ŵċ̘MӂRY̏¾×ǖ€òŵƠvі\\oƣǯ™Ý̗ŗ•Qįı§ŚΡȖƏǔɅĩ£žĿġƒþɛȐƨËĔíƋñóŢƛŽЦԳ“֑ĢqQùįÃþŇÓэœŋdxž™İû|ĐŸïʀšƀ‘ĈЃqˣNßņćúŁƢĥlƅêǵLi®şŎIƌ¦ĽaƙIJő’ɕ_µɫŠoúƧ€țĀǹŽÉeƏâtÞœǖ×Dćã¿ÂƳĚƻvşÌHĊƎʎȊՂê´hƆ³òW؞Ôƌè"],"encodeOffsets":[[58501,41029]]}},{"type":"Feature","properties":{"name":"Balkan"},"geometry":{"type":"Polygon","coordinates":["@@ÄƽƊƓżɵĤéłɥŁĬŃƋçÓXŗ´ñgƅé³ȉՁƍʍGĉŠËƼuƴęÀÁƁfŹÐţ™ǃ\\ĕãaùʁKɭ¢ʱƙăŭƹŽĹÛwƿijõùlƹ欓ɝvŭ͘eƨ¦ʂTƺ“ŒxŚÞŲöĦǫƐğpǛȼó¦ÍuɃÀŔĦǨnÂÑƂR„ì™ÀŁŽēĤ®ÌŎÜÁ¶ş†ēף¢ƓAơ¥āĺ~æ¹ľ˜ȦĖŜ|ƮĬİ’ū­×Ć{ƀLŪ¤êIJœŔƅͤÆȼGƔvÍøŮVŎæ¬ÞeŐɃǒǥÐǝńãĀ{ȤďĀpČ×Ĩʧhɝ›ƙCőïƹȕ³™cĭŬ‹¹ƭɁŚ~ŠśÞ̠҆ӰƖծúҾ˝ƠũCÕƔȇǚȁƸŝ̈́äҬ"],"encodeOffsets":[[57784,42292]]}},{"type":"Feature","properties":{"name":"Daşoguz"},"geometry":{"type":"Polygon","coordinates":["@@Ԩ‹šĤ¯ÒWŠ¡ð¬ôłfÒ·@ğì§Ĩ’ƮIþêüFòŬęîãLùƚɊƆæAhłðŚ æ½DŽJcĎŵ¾Ťâƨĺ`ĊÎǺƧŚ£ĺdĄÛ’ùňËŎ]ɘzǂā—ßމOåć{ȒšćįĈďËëUŇ͐ljǪŠɖSAȟُm@ՙǸyªۥƟuñŶǕ½ØZ̐ӁQ̗NųČȓ¦̉’ȑ×ϫiɳ{ŏÓÛÀīń‚łŁɦģêŻɶƉƔÃƾ"],"encodeOffsets":[[57784,42292]]}},{"type":"Feature","properties":{"name":"Lebap province"},"geometry":{"type":"Polygon","coordinates":["@@ʞđøFúŚǤi†Ȍijðó^ƳńȭĂóŢÏÄɝa×úŭ̴ֶͅDžżģX¡ІɝżvLjŭʮƅǰÕŒēͤǵͤ¡ʐñżķȄe²©ŅƝSDZĊăëŇĥ‰řJјïÆͧĐ£ÙHđąċ˥uų^ɉĝ“ÅpġýેMјȚǸѽаΝĺ̢̛ৃߠƧOѕ[©ۦǷz@՚ِnBȠ"],"encodeOffsets":[[62408,42238]]}},{"type":"Feature","properties":{"name":"Mary"},"geometry":{"type":"Polygon","coordinates":["@@ƨPৄߟ̡̜ΞĹѾЯșǷ‚їૈNĵƷqånĻéŃšŷi©ŁJǥŇǭÁƃYëÁǙ£ǯOľŽœ¿€ý…ďÁEͽǡƏ¾ŷųcļɓDŽÏTƁ¡ǥ„ƯĪYŒÔńýňİÄRúġr”֒ХԴƜôšƌòēîƧÌȏŽýɜĢ„ŀΤǓɆȕƐř΢IJ¨RİؖÞ̘ǰšpƤ"],"encodeOffsets":[[62427,40456]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Turks_and_Caicos_Islands.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('特克斯和凯科斯群岛', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Caicos and East Caicos"},"geometry":{"type":"MultiPolygon","coordinates":[["@@hAQcUf"],["@@ZdlAFfTrJÍIQƒA[h"],["@@dhPS–u°M`]I¥WEM^klYFAVcA“lWbQH"]],"encodeOffsets":[[[-73362,21811]],[[-73262,22026]],[[-73317,22263]]]}},{"type":"Feature","properties":{"name":"Grand Turk"},"geometry":{"type":"Polygon","coordinates":["@@NbEpLlZN@“J…eYQh"],"encodeOffsets":[[-72861,21960]]}},{"type":"Feature","properties":{"name":"Middle Caicos"},"geometry":{"type":"Polygon","coordinates":["@@fF`]^MtB`HxQrAXT\\M\\F^[FiiFF{loDaeRk„i^WS{AgLIKqGKLw@OlPPajGj"],"encodeOffsets":[[-73578,22376]]}},{"type":"Feature","properties":{"name":"North Caicos"},"geometry":{"type":"MultiPolygon","coordinates":[["@@r^n|NakWea[B"],["@@XxfR„D†K„SAL`orkBUaAOmsCE|•”UxfD`zBdiA@u]MUeebyB[f"],["@@Nv`NIscO"]],"encodeOffsets":[[[-73867,22370]],[[-73779,22451]],[[-73802,22432]]]}},{"type":"Feature","properties":{"name":"Provinciales and West Caicos"},"geometry":{"type":"MultiPolygon","coordinates":[["@@\\’BvLTdVZAMcS¡e__I"],["@@jRDf]MCjdšEfRDX_\\KthetItAj\\`HbtPWbKi[gƒeKiP{U[ZUOGciJs\\‡USN"]],"encodeOffsets":[[[-74221,22142]],[[-74093,22279]]]}},{"type":"Feature","properties":{"name":"Salt Cay"},"geometry":{"type":"Polygon","coordinates":["@@PŽ~F‡“E@"],"encodeOffsets":[[-72929,21814]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Tuvalu.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('吐瓦鲁', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Nanumanga"},"geometry":{"type":"Polygon","coordinates":["@@LS@QOQKVPb"],"encodeOffsets":[[180553,-6424]]}},{"type":"Feature","properties":{"name":"Niulakita"},"geometry":{"type":"Polygon","coordinates":["@@HŠR‚VpVh\\dppl`nZ`NxP€LlBtC‚KfKpW„mvs`kR_VmT…F{@mK…OqOcWikwqmeYƒaqOcGE‘F{N‡`kZ_Xcds‚[xI\\QŽCz"],"encodeOffsets":[[183567,-11045]]}},{"type":"Feature","properties":{"name":"Niutao"},"geometry":{"type":"Polygon","coordinates":["@@^CAOYAAV"],"encodeOffsets":[[181594,-6249]]}},{"type":"Feature","properties":{"name":"Vaitupu"},"geometry":{"type":"Polygon","coordinates":["@@PCTSGQ]bBH"],"encodeOffsets":[[182952,-7639]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Uganda.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('乌干达', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Central Region"},"geometry":{"type":"Polygon","coordinates":["@@XBˆlÊH¼Sˆ]h}¸uvEv[‚szYZcjKnHdUNe\\e†ƒxCš^Jîh`ó@‰Z]Ka^onEPcZDjLgb}H‘Pci¯B…MUH‹PMN}Ai\\QNq†…V‡`YpùIKV‡Y·V_IsncZ…Ƴ–·Zo”IŠ]RYB`UŠC’i\\…ruIaRqĂāB˿Cٯէ@Ľ@ف@ƗBʅCɷBMdNˆ»¤KznbIdydNÀ[faV_pib“dDˆ\\€bbxÔ@ÚijO|kªiˆ[¾LdG`jªVÄE_r}FuSFvxnD€M†O\\ZvSz}nGl^pI\\|bj|fPnf^Rj]h]H`prCt^tžLXXvPˆEn‘xnV¬Þ@h¼wrO\\phdG´’pMZZzH|ejE„hN¶„`jAnW^wXe`axqlK‚yPQK{\\W`kXe@QZ~z BN`t^ŠAf\\LrŒf~ІFZE„iL~YŽAjU^B’~ŽJzr\\|vbXdfHœdMdHfdXCVˆ`p@dŠvZ@„MTZ\\"],"encodeOffsets":[[32866,1691]]}},{"type":"Feature","properties":{"name":"Eastern Region"},"geometry":{"type":"Polygon","coordinates":["@@ØLâGBäOtG’ch¨|CbLrvMnFˆp@`h|CZZ€EzNRpAL^dDˆ†jDfXV€lJFzPjDr~nXArmTfY\\Z†V\\~Z^jldbBbTXZˆ–FZzUn@`hŠvC¤OxnGPchKtHhp’CFV|n~xƨğʪƿL­D¹L¯Eů@ƋN@Bá~@X[xN|GhdfKrF`UhBV^hF„t²@~e MRyŽm~DHsRk\\MK}xs~mNuœ·D“UK]SOAõ]I_ugsYƒSG©¡Rq‰QsM›FcS—a{YWG‡saWcFomGyyŸYMLwcM…{cKWF[gS@og_GUqAeUaH‘uFPQRQg‘‰cmGe}{UcéīAU|ċœŇAk]ć‰DZMÝBɩHË@ĽΏ@DٰÀāĂQrJbqv[†‘j‰D_VA€QZ‰^“JYp•¸Å´Y†mdJtU`Z¸UˆJLoú_ZUˆ…†Mr[RBjM~ONGŒNVA†j°OdG’a~Khi€YCOdmF]pLbY^@Š_ô"],"encodeOffsets":[[33608,1514]]}},{"type":"Feature","properties":{"name":"Western Region"},"geometry":{"type":"Polygon","coordinates":["@@Y[NS@ƒuYc‰o@‡_DUcWGeNc›ceGWcua[{yqI‘}]AiVB}ZKƒjYF…E}‰‹eKqe[‰Bs]M_ŸA}yRYf@lWX_|[RLzOLrkbwf_xWX]Bm_iµƒgMFƒfiG{YyNY‘oH³gc[oqP»x@g«ÝmU’wFmO‡WuWK]sDsoqG_^^gQie]Om{eai{J[]oHk~mTyYuP[N…CwmEuvT~E`qFUÃi©H_Kc\\½j‡l©P{ji@ÙwÓaa[C‡”cja`obU\\eM¿zcJcmaLy¼£M‡Ncȝ@ȥ@qZWBmeoUe@kaguK¡PsGeS}DYV£^eaeDgMPSQ@cUcJw‰YS]I{akmUQc‡…mJeGHsUcPwsK_YIgiVoCUccSHi•Lc}å‡cnW„IÐeKi–iRq‘@kkN[d‡N‰s[a‹K—BXÊ]šXzBxUJkxZ|O`XôM„T¢K|J^UlPL¤@MVG„\\tWŠF¤MlvìX`Wt\\vUTDpdDA„TRCxJhtȖlŢEŒHhW˜G°`RL”zpBZjPtMRT¤ǺøĦd`GhJj[fLne˜b¨CtPtYˆR†`†T`\\fBV\\rA^ZzYznP^Hf€fTI°Fpb”OdZb^FZjbNnkt@Bhj€|[tTŒ@lZlIFˆlt|@ѸӾȔɐB’|ˆAdSBhQnAjfˆTT^nXn@jWpBpaf`€NRPš^hx^LtrpVbS€HžE^k\\DT[^C`[jOTwxN°‰lGhk–Gpr~ATX~]\\ohkHkEq^mIar‡OCyShSP]_[EՉco@Iw›k_HUW‘I]_£{MLiK"],"encodeOffsets":[[32866,1691]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Uzbekistan.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('乌兹别克斯坦', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Andijan Province"},"geometry":{"type":"Polygon","coordinates":["@@ÜĠƼŠDzyźĜɐ~ŚƇȮWƄùʡƗo×NjzÅųƿìMî̇¨ʥŸ"],"encodeOffsets":[[73287,41752]]}},{"type":"Feature","properties":{"name":"Bukhara Province"},"geometry":{"type":"Polygon","coordinates":["@@ȢǮFĚLJƐȘêɑ̲̐ˆŰƱň³ĸǡÖRΖė̤ǵĮǚŀFDĿ̎lèɄhǘƑ˄}ƠœUƗĻaăNjɩ|FǭțƁ«çNJƻǘ¥Ĝțɋƥ”ğ͡ĥķėǙZЅɞƓƆ̳džֵ͆śФųä"],"encodeOffsets":[[63692,41491]]}},{"type":"Feature","properties":{"name":"Fergana Province"},"geometry":{"type":"Polygon","coordinates":["@@ƺ†ʎũʦƄʦŷ̈§NíЧ˓ǹÄűúƓxȳ¹ÿÃȝ™ÝƬƧ€ĬŀʪǸ"],"encodeOffsets":[[72496,41704]]}},{"type":"Feature","properties":{"name":"Jizzakh Province"},"geometry":{"type":"Polygon","coordinates":["@@Ԟ[̲²ȜƒfĽĖčģÿɬſ§ď^ŹÿÓIĵȺEʔ®WğMý͎ÞťʑȧW_ǷėęӕÌũ¶˱éiÙřôEüĎĤœŰ̻ºŁÆŠĮÍÌiȘɥbƼɬ™ŀōÀkƈŰx"],"encodeOffsets":[[68359,42129]]}},{"type":"Feature","properties":{"name":"Khorezm Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ĜĖʤÍŨȻ͘ȱǜÕİŏƇÅȯĈ˃^ǩ‰͏NJâǴćĐÐŨ"],["@@LjƏEęȡǭïàŃȮ]ƴïôɑƄǿFĄôˤ™ˮʩÞW"]],"encodeOffsets":[[[61589,42878]],[[63740,41983]]]}},{"type":"Feature","properties":{"name":"Namangan Province"},"geometry":{"type":"Polygon","coordinates":["@@ȆÄƆȗɄñȨfüŐĈIƾƌƸƃŃ˔ĝY½ŹěDZzƻ‰ÛğʥƃʍŪƹ…˗ˆµɢäö"],"encodeOffsets":[[72187,42391]]}},{"type":"Feature","properties":{"name":"Navoiy province"},"geometry":{"type":"Polygon","coordinates":["@@ȨZचŐђ©֪yͮƒÐiƶȁ̾ǥʈγɆäC̹ÿǣEΣ҆¹Ø͑Č̑¦@ůwlƇŎ¿šĿƻɫčŀą­Ə’ÅăUȭçǽɉ“́ŐíɃʃuĄƓ‰ħÂÿų—ěȜǗ¦ljƼ¬èȜƂEǮɪ{ĄnjļbVƘƟ›˃~ǗƒɃgkç̍€CŀĿEĭỤ̈̌ǶΕĘÕQķǢŇ´ůƲ̱‡ɯʺűǞʘźćƼ°̬ςԚ˫ÈŧƸ"],"encodeOffsets":[[63493,44550]]}},{"type":"Feature","properties":{"name":"Qashqadaryo Province"},"geometry":{"type":"Polygon","coordinates":["@@ĸĘ͢Ħ“ĠɌƦŴ˜ͨWdžtŐƕĶiʂêŀÃŨöȄepĉȄ–Ȓ›MË̂ûdŋƱÉ¢Ƨů›ɇȉġƫğɁǧsğɭÈŻĸʏòͣ¢ͣǶőĔǯÖʭƆũĞ"],"encodeOffsets":[[65923,39882]]}},{"type":"Feature","properties":{"name":"Republic of Karakalpakstan"},"geometry":{"type":"Polygon","coordinates":["@@ŨƷˬÇρԙ¯̫ĈƻʗŹŲǝɰʹɒ̏ȗéÝX˭ʪˣšăóMµįŐǛÖ͗ȲŧȼʣÎěĕđŦuǐǁĂɗyɕêŕƖɓ€ǹƨȃíƧvȭ΃TZDZýÓǝcƒĊɏĖƽűēʍíįÚғ࢓¾EᎮ@਺஺ˬॼɌ™Ʒŗşǃ΁ìǫÍƷư›ƦŰ_İðļËĺĔǮ£ŦĖȄ̊ƷϺDžfȻΊĴ࠾ӹĮ©€œܮ؃"],"encodeOffsets":[[63493,44550]]}},{"type":"Feature","properties":{"name":"Samarkand Province"},"geometry":{"type":"Polygon","coordinates":["@@ɦajȗÎˉĭłÅ̼¹›ůčģFûŚóªĵųÕȑœȃ•oĊȃfŧõĿÄʁéĵjŏƖDžsͧXÁŠĨăƔʄvîɄ̂ŏɊ”èǾVȮÆĄƐ‘Ć®ĎĿ"],"encodeOffsets":[[68219,41467]]}},{"type":"Feature","properties":{"name":"Sirdarya Province"},"geometry":{"type":"Polygon","coordinates":["@@ɈăĞE̊¾hÈíǂ÷ǎƥzƕ—ĝĂěőbͩ¹XĠʓ­ȹFJĶĀÔ]ź¨Đ"],"encodeOffsets":[[69887,41652]]}},{"type":"Feature","properties":{"name":"Surxondaryo Province"},"geometry":{"type":"Polygon","coordinates":["@@tĠɂǨƬĠ€ĢɈȊۜ¡ƨƲÊͶRĐëĩʉUijðƅȺƧuĩŷŷíDčƿƯǙ­˷Ȼ`“˜ɓçdzǔ̏oŻȈTDzľƦ"],"encodeOffsets":[[68273,38878]]}},{"type":"Feature","properties":{"name":"Tashkent"},"geometry":{"type":"Polygon","coordinates":["@@¬ĆŨlàĵǏ×ãÜ"],"encodeOffsets":[[70781,42256]]}},{"type":"Feature","properties":{"name":"Tashkent Province"},"geometry":{"type":"Polygon","coordinates":["@@ƐƞȢŞDĢɔÔˈȌ˸ÒǚĬƌǀƀÔƄÿƐNJȐîȴăȫŇƏ[Uĥǃ‡Ɨƿʃĝʀǵãõ¶ɡčťʭţɱ­ĽÉijńƿLgƿÑû„ʗŕdāĜ˜ĞyƖǍƦǁøÇî","@@äÛǐØßĶŧk«ą"],"encodeOffsets":[[70288,41928],[70781,42256]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Vanuatu.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('瓦努阿图', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Malampa"},"geometry":{"type":"MultiPolygon","coordinates":[["@@PR^ŽŠDTO\\Akv»JqbC—PeGkog“Q‡NeOyDs[§jgDwZW\\PƒnUfRKnJplB„RZX¾Bª–\\L"],["@@YJap`hzBVYPw[SgB"],["@@PŒRvxFLOOmAsYogBQX"],["@@~oRc`WPccudUCYlk†kR]f``EUwfGµrEd[Ni‚epNKmnoZDT_x_^Cd[@_XsFi[QR]llZW^…memGGcge@mg@spAR©TBeb[oc_^SK[eOM\\aGMƒgX¯Dark^AnnbE€‡„Až[HSˆH®\\ZWdIrP–]Jgh_rQ|‡[Wg}k[DgbTW`Afi`Lœ\\^T–SºJrXR†^ŽOŽm‚QKY`"]],"encodeOffsets":[[[172148,-16536]],[[172377,-16930]],[[172249,-16894]],[[171360,-16345]]]}},{"type":"Feature","properties":{"name":"Penama"},"geometry":{"type":"MultiPolygon","coordinates":[["@@è‚TC˜Vt[w•u{OƒÅÅeaRD{OH}jAzȲnJzxpb^@"],["@@Y˜c€@tSv@rUvD”[|O|LRŒU`CQ^Ÿ@aVQRwB…fÃBgfSEeT]DiQeLPwQaRUW™ƒDK€Wj@hQŠNŠQÄ"],["@@YiHey›wLOOqvR€QZHn]„Q¦HxMnmfFfYXH\\StY`R\\Un\\^FšX¨FÞPNlKSuBiXUfANAY]fDcZKMaZiD{n¯AoT{REN›EwXK"]],"encodeOffsets":[[[171861,-15683]],[[172144,-15542]],[[172321,-16304]]]}},{"type":"Feature","properties":{"name":"Sanma"},"geometry":{"type":"MultiPolygon","coordinates":[["@@r‡`V`"],["@@€b²@xOˆCTKCwasdoWu}Q}Z™voRmpC`Lp"],["@@xI]y½CyVVft|rbjiGg"],["@@|FcsqaZ"],["@@NfpjTvCŽMZZžUtNrŒhf[ZeFed›EgJgBfiPsTK`fnUEcj«@[e„a^uFua_E`i@[\\yd[Ka^gZBDi]M{PƒFsWW…£™‘Lgh[MeH[KeN§Om_LisDwQAo][g@—fE^Rn@nktEXgTsŠUˆ}”G`cdAdjšIVŒCtƒàGœk¸@rM’uŠIjg¬CbWbPnHž@ˆN|\\b@j’‚jsl¡vk\\‰jy†[TQBsrãCgX‡I‰lyE\\ÃTQ˜QpHpEtR"]],"encodeOffsets":[[[171143,-15310]],[[171102,-16018]],[[171215,-15948]],[[171270,-15953]],[[170955,-15525]]]}},{"type":"Feature","properties":{"name":"Shefa Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@XeaKaTl^"],["@@XjJnXZxV\\dH‚tLNn€l^C\\s¦\\XR˜IXSPq†{N—XGtoJežEDKƒ¡HUSWSŸe—ZmcƒGiLJzcQidiFW^mW@njAF`{…b™‰O_yHRvGf"],["@@T]WWSCGZT\\hDr``K"],["@@]@LrjGWi"],["@@cRo–Zd\\@La‚¥oC"],["@@G}cE]R@^~\\vzpK\\k"],["@@HhrUyQ"],["@@RXŒiC]w}aMkBE„LlfJ"],["@@~Wb—bEF[bg”Uzf\\GnmGyLe]Ią˜OXŸ@¥{oSeX•NI`cVI˜inWrRJLšxtAvK`ŒJjqVkBg^YEefs†X"]],"encodeOffsets":[[[172251,-18008]],[[172212,-18112]],[[172336,-17931]],[[172536,-17912]],[[172406,-17901]],[[172470,-17469]],[[172666,-17423]],[[172597,-17279]],[[172327,-17077]]]}},{"type":"Feature","properties":{"name":"Tafea"},"geometry":{"type":"MultiPolygon","coordinates":[["@@napOZkCuiuUIRÛTyžD|xj¼FTE"],["@@ZTxHY‡aDUh"],["@@_h€Z~Eˆtj¶\\‚U_C{R£r‡fI„@riPav@Z{aGgHQqgkHuR“jmLOpŠ[‚"],["@@\\EGq_TLd"],["@@NWCmƒmW}P}lSA—p}EZaXoJWbN}dE~tpO|ivP”P\\Mvxb`ÒR†YzEfjW¢bt“ÃMeMTe~wÀ}~ƒJi"]],"encodeOffsets":[[[173919,-20621]],[[174283,-19995]],[[173296,-19953]],[[173666,-19706]],[[173402,-19369]]]}},{"type":"Feature","properties":{"name":"Torba"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ErbX~OUyoKSL"],["@@\\CždÀg`iQS^oi“]w_¥JSL«Gg\\hŽWpLVMf\\ˆ~\\"],["@@€vJvŒAfJJw‹YKQ­O"],["@@Vs[c}KkXQdTn`XtCZY"],["@@TYGYqCO\\hdNG"],["@@_I[hH†i^™¤B¬R†œ”Rr[fgBWhXOCaW]JyVU\\X^[ƒ[MQÇU^‹c]"],["@@g‚F^fR^KLc[QA"],["@@\\K„BU•uQodIjfd"],["@@|]J[eSEh_FF`"],["@@@{LYO…fGšdj]tBZzQTWCi"]],"encodeOffsets":[[[172058,-14822]],[[171485,-14552]],[[171643,-14032]],[[171372,-13842]],[[171728,-14165]],[[171493,-14298]],[[170693,-13770]],[[170608,-13536]],[[170627,-13650]],[[170582,-13428]]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/Vatican_City.js: -------------------------------------------------------------------------------- 1 | (function (root, factory) {if (typeof define === 'function' && define.amd) {define(['exports', 'echarts'], factory);} else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {factory(exports, require('echarts'));} else {factory({}, root.echarts);}}(this, function (exports, echarts) {var log = function (msg) {if (typeof console !== 'undefined') {console && console.error && console.error(msg);}};if (!echarts) {log('ECharts is not Loaded');return;}if (!echarts.registerMap) {log('ECharts Map is not loaded');return;}echarts.registerMap('梵蒂冈', {"type":"FeatureCollection","features":[{"type":"Feature","properties":{"name":"Vatican City"},"geometry":{"type":"Polygon","coordinates":["@@LJLAEKQD"],"encodeOffsets":[[12745,42908]]}}],"UTF8Encoding":true});})); -------------------------------------------------------------------------------- /echarts-countries-js/index.js: -------------------------------------------------------------------------------- 1 | define(["require", "exports"], function (require, exports) { 2 | "use strict"; 3 | Object.defineProperty(exports, "__esModule", { value: true }); 4 | var version = '1.0.4'; 5 | function load_ipython_extension() { 6 | console.log("echarts-countries-js " + version + " has been loaded"); 7 | } 8 | exports.load_ipython_extension = load_ipython_extension; 9 | }); 10 | -------------------------------------------------------------------------------- /haifa_bahai_shrine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echarts-maps/echarts-countries-js/911551f6f3ee2fdfa012a1313919bc0984e62873/haifa_bahai_shrine.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | echarts-countries-js 5 | 6 | 7 | 46 | 47 | 48 | Fork me on GitHub 49 |
50 |
51 | Preview 214 countries and regions (3.2MB)

52 | https://github.com/echarts-maps/echarts-countries-js

53 | Fork 54 | Star

55 | 56 |

57 |
58 | 59 | 60 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "echarts-countries-js", 3 | "version": "1.0.6", 4 | "description": "Packages all countries for front end developers", 5 | "main": "main.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/chfw/echarts-countries-js.git" 12 | }, 13 | "keywords": [ 14 | "echarts" 15 | ], 16 | "author": "C.W.", 17 | "license": "ISC", 18 | "bugs": { 19 | "url": "https://github.com/chfw/echarts-countries-js/issues" 20 | }, 21 | "homepage": "https://github.com/chfw/echarts-countries-js#readme", 22 | "devDependencies": { 23 | "d3": "^5.9.2", 24 | "d3-geo": "^1.11.3", 25 | "echarts": "^4.0.2", 26 | "echarts-mapmaker": "^1.0.14", 27 | "glob": "^7.1.2", 28 | "gulp": "^3.9.1", 29 | "gulp-minify": "^2.1.0", 30 | "gulp-rename": "^1.2.2", 31 | "pug": "^2.0.0-rc.4", 32 | "swig": "^1.4.2" 33 | }, 34 | "overrides": { 35 | "graceful-fs": "^4.2.11" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /templates/README.mdt: -------------------------------------------------------------------------------- 1 | # echarts-countries-js 2 | 3 | [![npm version](https://badge.fury.io/js/echarts-countries-js.svg)](https://badge.fury.io/js/echarts-countries-js) 4 | 5 | It collects all geo-jsons in javascript of {{num_cities}} countries and regions 6 | and acts as a static asset to jupyter-echarts or your echarts collection. 7 | 8 | ## Installation 9 | 10 | ``` 11 | npm i echarts-countries-js 12 | ``` 13 | 14 | This library will be included in [pyecharts](https://github.com/chenjiandongx/pyecharts). No action is required from pyecharts user. 15 | 16 | ## echarts usage 17 | 18 | ``` 19 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 32 |
33 | 34 | 37 | 38 | 39 | ``` 40 | 41 | ![Usage with echarts](https://echarts-maps.github.io/echarts-countries-js/demo.png) 42 | 43 | ## Featuring Cities(or for Single Download) 44 | 45 | Cities: 46 | {% for english_name, chinese_name in countries %} 47 | 1. [{{chinese_name}}](https://echarts-maps.github.io/echarts-countries-js/preview.html#{{chinese_name}}) ([{{english_name}}](https://raw.githubusercontent.com/echarts-maps/echarts-countries-js/refs/heads/master/echarts-countries-js/{{english_name|replace(' ', '_', 'g')}}.js)) {% endfor %} 48 | 49 | ## Development 50 | 51 | ```shell 52 | $ npm install 53 | $ gulp switzerland # as this is special fix 54 | $ gulp 55 | ``` 56 | 57 | ## Credit and geojson source 58 | 59 | Italy, Tanzania, Colombia, Nauru, Fiji, Switzerland map comes from [natural earth data](https://www.naturalearthdata.com/downloads/10m-cultural-vectors/) 60 | 61 | Other maps come from [pissang](https://github.com/pissang) and his [starbucks](https://github.com/pissang/starbucks) project. 62 | 63 | 64 | ## License 65 | 66 | ODC Open Database License (ODbL) 67 | 68 | 69 | ## Note 70 | 71 | This projects is NOT associated with official Apache ECharts (incubating) project -------------------------------------------------------------------------------- /templates/index.pug: -------------------------------------------------------------------------------- 1 | doctype html 2 | html 3 | head 4 | title #{num_countries} countries and regions 5 | meta(charset="utf-8") 6 | style(type="text/css"). 7 | .map{ 8 | width: 300px; 9 | height: 300px; 10 | } 11 | body { 12 | background-color: #eee; 13 | } 14 | script(src="echarts.min.js") 15 | each country in countryFiles 16 | script(src=country) 17 | body 18 | table 19 | tr 20 | each country, index in countries 21 | if index % 4 == 0 22 | | 23 | td 24 | a(href='#'+country) #{country} 25 | div(id=country,class="map") 26 | script(src="demo.js") 27 | script 28 | each country in countries 29 | | make_map( "#{country}" ,"#{country}"); 30 | | 31 | --------------------------------------------------------------------------------