├── .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":["@@HJÜ_zw[¡e±HķY"],"encodeOffsets":[[1600,43568]]}},{"type":"Feature","properties":{"name":"Encamp"},"geometry":{"type":"Polygon","coordinates":["@@`nĸZ²GY«mYF±N»r"],"encodeOffsets":[[1584,43545]]}},{"type":"Feature","properties":{"name":"Escaldes-Engordany"},"geometry":{"type":"Polygon","coordinates":["@@rB¼q²MKq¹AQWTApu"],"encodeOffsets":[[1559,43544]]}},{"type":"Feature","properties":{"name":"La Massana"},"geometry":{"type":"Polygon","coordinates":["@@´³G_mqAY¢BtbjvF"],"encodeOffsets":[[1505,43630]]}},{"type":"Feature","properties":{"name":"Ordino"},"geometry":{"type":"Polygon","coordinates":["@@GH³´TM~V®}"],"encodeOffsets":[[1642,43649]]}},{"type":"Feature","properties":{"name":"Sant Julià de Lòria"},"geometry":{"type":"Polygon","coordinates":["@@~u¸SXSQsGÑZG]dX"],"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[ĺĢÒþđPIJvV¢đ²¬"],"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@nGISbFHUh]@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ÁMEfDPMvQNQjSNpB^OHEVMDDXnRPIFKfYI@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|Nkpi[YaoXCl"],"encodeOffsets":[[-61031,13556]]}},{"type":"Feature","properties":{"name":"Saint George"},"geometry":{"type":"Polygon","coordinates":["@@zV\\ZIU³u[¸"],"encodeOffsets":[[-61012,13474]]}},{"type":"Feature","properties":{"name":"Saint James"},"geometry":{"type":"Polygon","coordinates":["@@DkK][WHmQA¦GRDXEbZ"],"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":["@@ÍqERApZjbPRBwAS"],"encodeOffsets":[[-61007,13617]]}},{"type":"Feature","properties":{"name":"Saint Michael"},"geometry":{"type":"Polygon","coordinates":["@@nRV\\·iDZcRBZSt"],"encodeOffsets":[[-61068,13454]]}},{"type":"Feature","properties":{"name":"Saint Peter"},"geometry":{"type":"Polygon","coordinates":["@@ÎrJGo{IuYC`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[JmyUUG\\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":[["@@sUMmP¦~RZ"],["@@v¶TD@jfnTYI mkg}cG"],["@@`ZxH^wZnRIdpDnblf{Fqsg¡Wiw¹iwWI"],["@@ĀSoJe]åW Yg]OAs[EQkZQnCSwWO[RUUGgFãlgbEhsOLgyYaTcUQauħYYÇAÕH]YgMɇDzb`VlWzalFxGVDEdMƎgI_cMGOľTd^¶^S~LxK|TAnOfNx^ɠº"],["@@ZolwaCZV¤_"],["@@VfXIPRRDnVii]BMqmQBGrcq¡YBvNb"]],"encodeOffsets":[[[-90069,18361]],[[-90104,18360]],[[-90075,18360]],[[-90394,18405]],[[-89935,17831]],[[-89999,17858]]]}},{"type":"Feature","properties":{"name":"Cayo"},"geometry":{"type":"Polygon","coordinates":["@@xΤ`Ȝ@ɒPDr]TN|GZRh¤CdFnI°BnPhp|RPKbdpKdN`hJNƍFcCHUEwbkXyUk_yaUMrlYAWeMYqAeck]CIk{F¡w}hk£WWSSm_[eJs}UKgYCF_GQ]ekKkmgBieF[kCq]Y@YhU]qOQFU[[Ia "],"encodeOffsets":[[-91333,16795]]}},{"type":"Feature","properties":{"name":"Corozal"},"geometry":{"type":"Polygon","coordinates":["@@ÿTƑŜêĩ¤OPLQF¸ÄIhjHvTz~Y`b_ÊN`aJ] cO¡}DqxK`Yy\\K`zPv@@[tRVUvBpFMuqSGibKRyA{LcIoOÍQYKycasWKeJYWiAeQY"],"encodeOffsets":[[-90298,18395]]}},{"type":"Feature","properties":{"name":"Orange Walk"},"geometry":{"type":"Polygon","coordinates":["@@POĪ£éƒśɟ¹]MwPeBmSL{KwT}µ]]ScPĽHoLacOL{QgomO¯AmJcE£DQg Y{HMSq^OC@рCľxZIVVrZdEl^iRsO^B^WTsgpCD~\\`zTD^``GZ°Ep^¤rxM\\AntNZz"],"encodeOffsets":[[-90729,18690]]}},{"type":"Feature","properties":{"name":"Stann Creek"},"geometry":{"type":"Polygon","coordinates":["@@ɈChN^ZXcFiZct@\\ÅbQy}QiWQ¡ÉgF h©WoFwGaEIWQo]A_Y}TYAEnJzPNPVFJVTCVXBTSA[uoB¡yu^acYg@ōHR`Fa~qtRfOf³³Q@kP_QItf`\\TnXT¤Xglx~E¢|Jl^DdlBfZrfNBXkZqVN"],"encodeOffsets":[[-90715,17518]]}},{"type":"Feature","properties":{"name":"Toledo"},"geometry":{"type":"Polygon","coordinates":["@@Jb\\\\VREPrV^ZgZ@r^lDE\\jfhAlnlLfR^`HEZDLh~V`RlO@´R´PeQersb}EQ_ŎGbQGYqiFQeiB] Jm[wsgswAo{GcimVorcEBqMMG_SaBG[aKNyUYNgEekY kEmqCi{g[ek@cn¿MW@UNFgGB`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ŝZkÍÝÍ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÷âõ{ŵºéńgvĵ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ÃʳIaƉƪ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`@Ld^zNbjjPºVfwWGRMYdUGeªosĸExJSY£ D[sqßT q{MKV»aqiiJsKO\\FyKrQnN`uv@~b"],"encodeOffsets":[[19025,45914]]}},{"type":"Feature","properties":{"name":"Entity Federation of Bosnia and Herzegovina"},"geometry":{"type":"MultiPolygon","coordinates":[["@@Y@S b[\\}lcSl]Tsd]dCnZĂWNIÔFtNZ{ncd\\¤C a«INg²KhM\\aE fmOY·Q@cKß`ăX»FÙIYMYT®qve¶yvipCk¶oel]ªs`g¬ö@Ow aIĀVK\\°PUpxK~eu|iNDp|SnLnVÆilRR^Ea¸£g¦[NSFPdIpDhhĒp°hEz[}i\\_BlzpLj~^vO¨BgC£]Y^{z^NªH¶wzNKºZXlsLSteE}V]xNcd³JgZ§LOXZ^I`b\\Î^QFPldX[fFnfLhrdJ^ÄI`ar[fg\\lCdP}a@vuM_RmqzLEP[tLjIrj¼bLU|NxYUM_[`{mBmAjiQ~B ÚvV|Ev_H}_ÙsaRemWcB¥»D{wgAce©_QkJw`mHi¨cc^u[ii³_¡womq«ÏDkO^¯SyCijGZeKStWdgźJ¾E¢QCbh\\Aj^pfFdh¤BSX~KVfEtwrUdmCqs{C]ĕy£^DīoLkfÉEi|£]g}GQUSJIPw£K¯JeIBS§^¿GY µAcmXPµ{KciGyv EY¨Kj[N]kwyRmi^_D_jIZgRckvk¸ytc¦¥ @µC{[mZ Fkl}LQr_JZAZZ[ZXSlkJkD`]f^osi`XB{[XX^zÂvLÑĮíåjV`Wd§Tyyve°SdqfËI}t»byly~}`¶_Bmf}^[vWR¡NAO\\Ái^Rm¢stÏLJ]buGFUhXS~khÃacdGVjf^Sh\\H|lJ^gJ[Rh¡°qBfkzLPpogB`oqCqmaTco |WB£´WtHbp@dk¨TvDXn[X{´tZ@^jzW\\[Zdzr`ILTME^X{MgMAire SfWFgbiKJS@`g"],["@@IxHbJd]Gc¦KIlhb^]ievmfAvmUaÈIQy¹UùX¹x³"],["@@pfWrdlIHaxCh]äRhCdmvekCqAFaiSiNYwkBGjobW`uf¡\\"]],"encodeOffsets":[[[16680,46076]],[[18922,46144]],[[18635,46161]]]}},{"type":"Feature","properties":{"name":"Republika Srpska"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ràStrC\\¤TZ¼LjbT¤t@\\edEz`rQF¶ykwUqcKEyR{k BmSacMsiYawki]CLuuqCKgfG[XcCmkGkXwhICmvadinXfKH]~Qx^¤ODeheVqBqY\\utYb`hAWsjGl WAd]FU{_WaÿB TUMßJPHs^ªÇ¢¯rAZiY`}gCq^mKc ¥h[}]TuEpoHkcÁPgiMwHeuCÑRcaFagCBl±~Y{kEGgR_Fwc\\YFklWEn[lEgSuqZEduNM\\VbÃHqSZiÁg±oudeg³PJÃOáFqYiqW{GviKF_mUCaem^gVfKoIo}DajaqQY|sLY±PcaW£x{zwH@¥¦sd·zullQdYhJiC`]`jQnxzlM^i\\§LFZuHzdjL|O¶WnBd¶ZÀH¨]TAfJ°I¤LOxJIVTRHh~¤^j{ÊFlepKĬC¤]Ėz^|DtDrcnqVsxeFU}L WT£AcgeE]oBig[Da¡RF½ŹIchsXLTYfiHDjz°T]PCl¬Ðnrp¢x´`j\\j]vdd§Gj_nIxRlª`dfhB|x¼C¦dAnXQftb`ÚG~u`{FuUÙ}ARijBAnn_|\\`NVwZ"],["@@NxAVRElxlFzbbQ\\^p\\flGlbtffK°Rr_Öc~VæmR¬¶bFLbdJbo_m@arGiYÎ}À@rko¸O¬hAyBheÎLfO¸v´msnApicjC^rO`RXVJ^v`rgVriQekFpOtB¢[veX_paHilAZxjMjTEbBrlDRI´ºwWúiOaiyMc] @Kq_@@C@GCcOkD[ehq\\_bÃJ]cIgqeKEm\\ecWOkERÍ]a[J_Y]PW¨KhY´IdcM^w~UfFTstKWk¹YLyMµx©GMy]]|^Z¤Dh§AuP}]KiyoAk`j[~\\Fyg ¯đogg CocJOEMT¥\\h·¤bFQ]kQÅjmUKTm{CojMv{fL}wVoO¯L[ÿUJbx@Põ «_h©tk^fµploDujµzufrSNZZÚJ¼EĄWà_L@d¸RPZenF[bgNL±MhJ¬b£Dc[mdY|sMÓEMJāXmYcDc^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 }rqN~»|kðe¦ bllVº_p©zFØsnBŊºNqVg¢wÀC¿hÍfeJ¡^©OwDÉY¹FYEh¿IymScF[¡Vuvm¬ăBX_Q³L¹pgZG_d»E_fl[Vs¬Ëª_rHWæWhSÂdİH^ezQHX]ÞEČqĀ\\Ø[®êtZ`]°UXcêwªvAkĐiJNc¸_X[{{s³AhÄ{ÎAZdWp¥}}YUd½K^uOyDoQ£JokUEP}y³w}\\£[CuĵwÑÛCkcUudFčIwKO¥Fyu{±yV[oÝ¡qIRÑom£e[g[h}sec}HOnFsVCu]_HÉBuYOyu\\©\\gIu¹SËueo]`FCw_n}GekQvHD}[QOy g£KausWǡĨˏƪŷðe`UXŧLjŁYhɹ˺Q`[ZȅɰƏǦŻLjəˤƋǦȩʬşƮƵȠWNEpCˈĜJnozAvd|FExx|LxnxC~jªi``Z_Q}fW¤Á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̬CFР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`mckHqcuRvDhEgN©Ø_XqUÁBg¿@B|LioXHhu|NAjw@kVEnWYIGh^SlsF¹k~jm§VObÇOihKHuw{Ym\\¹]¡TNkUUµW oU±¡yozgKkSM¥Uo~mu@w]ut[miFO«JJ¹aS{ygIA{{oB©tYkCosN_gioKHyijyOmuPycWE]meQq©{CÍwHµITaaybgL[í·ÉKojÁF_ejçhyQJymVÓ_][M§pÛLyEbq@kuGIiuBoqOkWLjwLGr{p`lW`RpgjjKnD¸oG\\ÞzRÄxjZvz\\v´Ap ´~jji|`bgpOx\\~sRB´wX}cxZsdypXxÜNpH£öVff¥Ðp\\Da jLx±|Wfdg¿k_ AyzFfshuJQl}pAˤ@˲@ȠBҮ"],"encodeOffsets":[[20480,-23868]]}},{"type":"Feature","properties":{"name":"Kgatleng District"},"geometry":{"type":"Polygon","coordinates":["@@f_ŸïːƩǢħ tXbvL¤hzPmÿ`}y¥J{ceKµguOeKdą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¢RS»ae@¯|£Kû_«e_PyUjoSmHµe[N¸É®k¤Ã©fSd@ynql©OtSYrS`GyR]fįGÁcgTåXXqG©`«ÌUtk\\eF`c¼H`YohKºR´W`A«ĄunvU\\¢ETdnJzgÀF®"],"encodeOffsets":[[27944,-20990]]}},{"type":"Feature","properties":{"name":"North-West District"},"geometry":{"type":"Polygon","coordinates":["@@ʯ@ɵ@BIч@ЯhYŶ»SɭͩȿeÍLi_{@y`£ÂXeR~Y`__©j}iwDwm{KwFw{EucyBpImH́DˇFoɇ@ПBE̫D˛Bɡ@ͻBϗDʛBBϞAŴ@Ѹ@ɾ@Μ@܈Ϣ@˸ÄɊ¢Ϡôɘ¨˰Èǘ@rF^GßfUKAtFrsZyK]|{M¡\\sUefk@wipv@άb`Nlf@fxE^zv¶FhSĐϤGzXpeTpjT¢¢pOHºËGWp}ØK¦Jpxfhz~JrlXHzZxvF pOhf®~{¼|f~Y¤GRiu¿AxbN~§Y`wnGnÓX tëYPo«tgQoj¿Y`Íh¡ªw z[»Hy"],"encodeOffsets":[[26613,-19457]]}},{"type":"Feature","properties":{"name":"South-East District"},"geometry":{"type":"Polygon","coordinates":["@@ȨȦtxLjĭÃƯsėOaX«qkµĥɵ{ 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³VORċiCY}¿IyYÇjgÝ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]CQcC_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±zGZiD±eôćïÌJ³^]÷ėÍÅ}O¥lĂÓpÅC`ðsb@¬öÍyzbêdŨª¶~"],"encodeOffsets":[[117239,4803]]}},{"type":"Feature","properties":{"name":"Brunei-Muara"},"geometry":{"type":"Polygon","coordinates":["@@ov\\ŮþØǦØN£ÓP saÁÙPe§i"],"encodeOffsets":[[117525,4837]]}},{"type":"Feature","properties":{"name":"Temburong"},"geometry":{"type":"Polygon","coordinates":["@@^¦¤lc²hI|GZyEpOu»RkÝXOs~ £D ykw¥F÷U[ĄeUÊ}²VZyĒ"],"encodeOffsets":[[117783,4863]]}},{"type":"Feature","properties":{"name":"Tutong"},"geometry":{"type":"Polygon","coordinates":["@@[ŭpu¡ZģHóV¢EF±Y·ËðóĈfC²YjHym²°ňĪð°"],"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[lgjJpM¬RAZWIm_@SNMEwiAqR}P]YbPXCfLrUvuRH\\vXpSaUhOa"],["@@RRJ¤ZT[ G¡m[FOUcMiARbxZ"],["@@hXtNnrLtbpJXYog©[kA"]],"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":["@@jEPWI~ShDNNhAlL`XT\\bFJrTbWln\\@luKmV[Ld DoLMLUqX¿KweSiRFhmvg^cNGXYV[Fc|fiGvUT`aZVP"],"encodeOffsets":[[45279,-12459]]}},{"type":"Feature","properties":{"name":"Grande Comore"},"geometry":{"type":"Polygon","coordinates":["@@V`ZX\\Iz@TIzVnBlYPNbpf®ZfOfAn»QOWBeNMAMcORqGSNY`YDU^aFgVUNgDwISR[NsJAzRKHmQESmO@_Y]@qbYtuNiGuDgT_^[k^U¦"],"encodeOffsets":[[44268,-12014]]}},{"type":"Feature","properties":{"name":"Moheli"},"geometry":{"type":"Polygon","coordinates":["@@BdnXVIIgf[\\AJU^GRUSxmRgIg³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":["@@GUaitD~~Ft"],"encodeOffsets":[[-161876,-20481]]}},{"type":"Feature","properties":{"name":"Mangaia"},"geometry":{"type":"Polygon","coordinates":["@@rA_³Ms^AhTpVT]"],"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¸~ÄVCQk|kÈÉh}\\V»GU_©¥{g_SGD¯\\^{hsrÄoÄE"],"encodeOffsets":[[-167323,-18489]]}},{"type":"Feature","properties":{"name":"Puaikura"},"geometry":{"type":"Polygon","coordinates":["@@WicHYPZ"],"encodeOffsets":[[-163659,-21716]]}},{"type":"Feature","properties":{"name":"Takitumu"},"geometry":{"type":"Polygon","coordinates":["@@XjxHvjXuWugIZ"],"encodeOffsets":[[-163636,-21770]]}},{"type":"Feature","properties":{"name":"Te-Au-O-Tonga"},"geometry":{"type":"Polygon","coordinates":["@@uiwG |RIfW"],"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â~Mhhjdij·n@do®eXKÆ]MǙ@ƛCȁHĥYßs[`gÕ@_`BkUHß¡{ÕRK~fZjDznRF_`Dæ@´UPp¤Ih|§ipctt Yj`~]@i@rot寪iÌËnGct·Lf§GtqAsOml²PXÀ"],"encodeOffsets":[[-87305,11344]]}},{"type":"Feature","properties":{"name":"Cartago"},"geometry":{"type":"Polygon","coordinates":["@@ƒéÌ{Ē¡ʪAfğýķMāë\\yR·±ToF{w½VWéfU¤}E\\ulIyRCtD±ScLdjª_nTFlZB®bM¶m|dqÌ"],"encodeOffsets":[[-85961,10391]]}},{"type":"Feature","properties":{"name":"Guanacaste"},"geometry":{"type":"Polygon","coordinates":["@@W¿O ±knPtrBs¨He¸KdsHÌmj˰©æpsqj@@^_}Zisj }oçJsQģsG\\ aÕpq¢M¯PÇT]WRlqqÿc__VoÂ]plGiHulGvclP_b¯lTW[Ïtÿf hEh¾ ĈenAx_^gt¨TJpnhqHbrdUtbE`~ZddnzQFi_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ÒrTikLce\\vInvØt}Mc£YqWO\\i[}`£AMyn TGÁ[É«eSÍe[idsski¯SÑX_ht\\ZàGĦDȂ@ƜNǚ"],"encodeOffsets":[[-86175,11045]]}},{"type":"Feature","properties":{"name":"Limón"},"geometry":{"type":"Polygon","coordinates":["@@ʬ\\HÂSmNzB_¤\\~[jPXZr¤Nd~®pJVl]RÜ|u¢ā\\Íd½ùt«¶ĕ¨Ûèċòę¨Ñ ®JnSJŸǕ´~£Qpa¦S¢Fls}K [¥Z_~·¨}ZcI beQydepûw@ͧeQo~U´ÅfYâÙEkrqJs[}zobÊMa^Q¸[zĂìNþĸeĠʩBđ¢Ë|Ƒê\\"],"encodeOffsets":[[-85947,10432]]}},{"type":"Feature","properties":{"name":"Puntarenas"},"geometry":{"type":"MultiPolygon","coordinates":[["@@Xl¦RAqm_b"],["@@tHĤRtIpè~idso¨j{Jgo£VO@³å®C`_EmQyCieYL}ÖQ|\\ÕEP÷rsJqÈL`k AÔ@bZªqªS®RfgWynspZlQKÀzn`G`rmZyF§¼vGnvoÝabo¼{ fPpOn^\\¦|~`¤~y\\t rIlq®FÚZáÆeV³p}fR¤T\\¤o}UVunaLwYaq«iQ{udq¡CyòėPÍciPOq{Ç_ iLaÐyEs^s_]¼ÉªÏ\\dPls¢XX ~MmÓ BnC«twoNK¹AyÀ³¦Kf{jMIf{SÉYoųÂËVQhg|¿ÂmNB¦bNP¬P\\K¼R`º[fW°_CYÂBu°ÓÞeLwl×°pҦHstAz«ąvkDœÃSMTá´Abz[È¢Æw¢§ÄqpbrmjGrVDÕѤY~ \\[j»"],["@@GvjkHoÁ^Up``Ādr¨ YbP¨Fa]`U@áUcAGjw[NwM{uígG{fG§¤}Ì"],["@@oXWLWLorJ"]],"encodeOffsets":[[[-89184,5651]],[[-87118,10407]],[[-87273,9972]],[[-87136,10339]]]}},{"type":"Feature","properties":{"name":"San José"},"geometry":{"type":"Polygon","coordinates":["@@¢à GlVA_`@ÖÒW°Tljtct\\jfTÎf[rËcn{NµaAkYES`m©icdK²TCDszQJvk[~FV£êeX¾U|xpE S²b]NÉpa£_{}[¥]PmoOe»|apbÞpmuuH»E¨Yzqn__Hmy¿LkRoYmtXzehQ©T©raYÓ@B_lÇKrIqtOø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@`EBtN\\PpBÄdVRfFlZjHxflFZtbRBVGtJTVL tVh^bClnExL^TRPV^HvB[mFYe_Q]SqIeikMks]sO{g_a{eUuYY£ygg}IsSY³MUNmEg]skmES@wEo\\NEbsVQu@Ex EmPeV]A}L]KOUQTeI[XrPBXgJSV@V[Z]NfflQXBjVSjTDPgzYTYAF oeHsi{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]]GDLmPgEg]W@EXYLiC]R_WNKkdiKBaG\\J~I¢QNM NDpSfEpeEnOI|XUtGbRª[VJ^IZF`Kz@dO~HfK@|JlI¸XLrNXC~F"],"encodeOffsets":[[34457,36207]]}},{"type":"Feature","properties":{"name":"Larnaca"},"geometry":{"type":"Polygon","coordinates":["@@~|Yb@^PdMFUdTff\\v]PLpBbIXNLZKr`ElWt^dSNZXNDh]SZnnMTl`dUOZj@ºOM@inOE[f]SU@YYa]M]O»HUKeiJwAWGecs[EOqAWY[kEmYMiS{LYKOlJZFvcpiRYns\\WCoTWEsRPn"],"encodeOffsets":[[33932,35721]]}},{"type":"Feature","properties":{"name":"Limassol"},"geometry":{"type":"Polygon","coordinates":["@@@^PdAXd@ZV²oBbGl^IhBjmURg\\S`RpCNQhEOmtQXFpSXDt[ZmjQdoEuIYPk]YÍBLW]i_QCwoKUSS~lDbLHZHWY}B[OpCdBKSYE[_ CIsUGkFcQoT NEtFNM`ZBXhdDbbfRLbKV]ZxtjPARVdjR`bKT_FC\\"],"encodeOffsets":[[33561,35743]]}},{"type":"Feature","properties":{"name":"Nicosia"},"geometry":{"type":"Polygon","coordinates":["@@jRbAl`lDU`@ÞoPQUpNfXXFrpbZ[bHAjLlcLM`X^QjDZKFWX@h^hFnOK CH^A^lR¸BnEPFJTEHYYGD}TQEcwgHWrU\\HV_YiPcVk_NSmmTY^CgWMMYcTs]kX_FLqKYWMaJoAOKu^e[SecEVcN]Oa@{Z}gFMRoD_Q[TQhVingA]JkaHA±pYUc@BWOc@]yXSKWqmRSKkjGpdxEaxONoHQfWPR\\bJBqRF\\iTW\\cZ"],"encodeOffsets":[[33350,36014]]}},{"type":"Feature","properties":{"name":"Paphos"},"geometry":{"type":"Polygon","coordinates":["@@dYX[jSE[rQA aIQ[XORepGPMbwFcwHoliTLnQXrTLzWD[`ELS_aiQUcBQiOws^YLUKaeQaacCWgYAN_EMFsTg^`o@_TkI[FyzKhMP@jKvfWBG\\szTP@b]nF`A~S^wxMHhX`jmr[o`IzAlHrz~rZJXrhG"],"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}eqGolbqsCƊÄz"],"encodeOffsets":[[43691,11530]]}},{"type":"Feature","properties":{"name":"Arta"},"geometry":{"type":"Polygon","coordinates":["@@~gĈ§LFPuQUy@bZEFrs\\VbdÞfdhnGÀDN@¹ɚ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ÝCOElsDñ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":["@@TZvFjhGzo^JpRZdp~G~\\pŪ¼NGd©Öćâď\\\\`»lqdçDXUnPĽW ÉKH[iD»U«§»aQstąŴ§¾u¦_ďŬ@|"],"encodeOffsets":[[43735,12673]]}},{"type":"Feature","properties":{"name":"Tadjourah"},"geometry":{"type":"Polygon","coordinates":["@@x¢zz¸^T\\nznªÒº¤jÊ¢¾f¼²ÆmsÚÕl\\@{Đū`¥v¨½ĆųtsYgáKiumCÁR{[qiOsEkwcm}K]mYdgUn]HgiKEć¨}hxƱƆùÎ"],"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@\\ARBTOHIJKFDXWj@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âhFbIBwpK`e@gn}Asa© EbpKXIaWyµ{TWaXx¬SnXPW´"],"encodeOffsets":[[128530,-8824]]}},{"type":"Feature","properties":{"name":"Ainaro"},"geometry":{"type":"Polygon","coordinates":["@@djvTx@´S¶|Xzb®JLWaoGumÛcsB}q]kiOnDªt_fsXriG^wMwMÏE emCO`pqZ@flLfuVOz¤hnfn"],"encodeOffsets":[[128448,-9205]]}},{"type":"Feature","properties":{"name":"Baucau"},"geometry":{"type":"Polygon","coordinates":["@@Nb_j@d}dSL±¹gQĥV{EKZZÏDaA}^¥UD§f{Uo¼PzM_pPzMlbpJxnFnrjC\\m¨]¢}îÜ"],"encodeOffsets":[[129757,-8613]]}},{"type":"Feature","properties":{"name":"Bobonaro"},"geometry":{"type":"Polygon","coordinates":["@@BLQ CreCb[l nÏqR±n_ÂGemm£gPyvUKek@erYo Z sh§fb\\k~\\ B¬S@o~qoayK«fQhD®ÐZ~L~PvK "],"encodeOffsets":[[128094,-8951]]}},{"type":"Feature","properties":{"name":"Cova Lima"},"geometry":{"type":"Polygon","coordinates":["@@¨egtYP_Dn£yiG«µ«Ecmk]^A }FlcPyzQ_nB¤j@pKpqtJ"],"encodeOffsets":[[128181,-9390]]}},{"type":"Feature","properties":{"name":"Dili"},"geometry":{"type":"MultiPolygon","coordinates":[["@@jsqsWE{¯OJ aEágNà\\Mº@JnªEjW¶VdX¢Td\\"],["@@j@F{Q}o{A SykosXk@{pvPÊî"]],"encodeOffsets":[[[128847,-8694]],[[128634,-8329]]]}},{"type":"Feature","properties":{"name":"Ermera"},"geometry":{"type":"Polygon","coordinates":["@@d|AVÔ²t@h°@X³OWTmw«bWX @³SwuciÁHm`Q²rmÐka\\Dqf"],"encodeOffsets":[[128186,-8961]]}},{"type":"Feature","properties":{"name":"Lautém"},"geometry":{"type":"MultiPolygon","coordinates":[["@@_ÊhR²ºKcTc~@ia`M^RghHĴ¶|pxVJrclGbi¬IVzpbC¤ObQDiOkw{]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{BcDKRAT~Elr¦Ö|N¸D^ZĚx|SpF\\ZlA~h"],"encodeOffsets":[[128549,-8742]]}},{"type":"Feature","properties":{"name":"Manatuto"},"geometry":{"type":"Polygon","coordinates":["@@°P|XFrtitt`ŖYoØOz^PlM`NOyp»¥Y¯F£Áa[@w·LÕZav]Xu[¡msfJ]`Jgbc®`³DbªBtm~@h_foLAx"],"encodeOffsets":[[128733,-8787]]}},{"type":"Feature","properties":{"name":"Manufahi"},"geometry":{"type":"Polygon","coordinates":["@@F´C_dhaI_^Iteny«sçVwoHgqAyyqjWets`©CmjP^l~rtAdnÜHv"],"encodeOffsets":[[128707,-9016]]}},{"type":"Feature","properties":{"name":"Oecusse"},"geometry":{"type":"Polygon","coordinates":["@@`pBtjDbb\\~XBNT^PX¼DX\\\\LzOSCYaRm_Ce K{D{smZ mmieBR¦s´|oUw{O_faE¹Î"],"encodeOffsets":[[127019,-9564]]}},{"type":"Feature","properties":{"name":"Viqueque"},"geometry":{"type":"Polygon","coordinates":["@@|V¨eC¦V~]bBÐCYLY|FĦU`ÉiB³YsF£§}aa]É@³_§gÝNE]Wu^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{SÇōºu¼ôdb¸~´n|Îj}D"],"encodeOffsets":[[-91888,14372]]}},{"type":"Feature","properties":{"name":"Departamento de Cabañas"},"geometry":{"type":"Polygon","coordinates":["@@¶ItÐ`jjB®lIè ¤AZĩķHMd·zāPkÃW¨Û¨B"],"encodeOffsets":[[-91081,14276]]}},{"type":"Feature","properties":{"name":"Departamento de Cuscatlán"},"geometry":{"type":"Polygon","coordinates":["@@ð_Ûlm¨QAܧ®§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ēYt BXgyŁ´ƭb±Kďz"],"encodeOffsets":[[-91780,13847]]}},{"type":"Feature","properties":{"name":"Departamento de La Paz"},"geometry":{"type":"Polygon","coordinates":["@@hzWXìc¾Vº¨ĘszX¿ 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¿ EuË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ÏÂETBvrahaÈ"],"encodeOffsets":[[-90375,14247]]}},{"type":"Feature","properties":{"name":"Departamento de San Miguel"},"geometry":{"type":"Polygon","coordinates":["@@ĸjW²|¼_ĂbÇ gbqAuSFÐÁÀIOsiä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¹§½UdWëAsZYĔ{xEúŢTkædd"],"encodeOffsets":[[-91413,14388]]}},{"type":"Feature","properties":{"name":"Departamento de Santa Ana"},"geometry":{"type":"Polygon","coordinates":["@@ JswYÉ¥sJă»Jk{lxDQÓ»L¹eßqnVonm«Þ±`tÐCzU|Ø hEÌfJt¹ÒO|^ÐÈGbcy"],"encodeOffsets":[[-91500,14767]]}},{"type":"Feature","properties":{"name":"Departamento de San Vicente"},"geometry":{"type":"Polygon","coordinates":["@@ÀFÄXlĂO¸yNc®G·I_ëÿTyqDy`¨ÀZÆÄ^Ð ÆdWÀ"],"encodeOffsets":[[-91034,14002]]}},{"type":"Feature","properties":{"name":"Departamento de Sonsonate"},"geometry":{"type":"Polygon","coordinates":["@@È|TSztDÎ`]Ü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â·SUºÇēIĿX¡[tq]ŧőp±fCzrSz®Ā`ìJ¸"],"encodeOffsets":[[-90622,14028]]}},{"type":"Feature","properties":{"name":"Departemento de Chalatenango"},"geometry":{"type":"Polygon","coordinates":["@@äMcƦ·Id¯g³êsªÃÒCz¿wkAiiÏ_sµJ§RknÜï`}_čD¥j§_WwwCkl|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":[["@@wZFSM"],["@@^qE\\[fjNtaæo\\RxWH\\SbȪBɌ@˾ADC̠BIYQ˟F̡HϿ͛BȷAɃ@˟@ʍ@AU~]fw^JÁYu[AO]zovPÏqNs¢efxTb~VºxPfd\\HGjxrÌFf|tiHlrxdxnTntZvAX|`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|WrHĖz|¬TxrZfÜE®HjR|]lHWicÃo«wCu]aw[NO«Y}msl^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":["@@PiÍpƗ[ęQ{\\åtM ĕOáÚadTäAnY¡K{@ÛTxa`Zò|³@»q¿sO¯[¥xgIHM¬e^cMNcKwb{JM p¯JÅ{WIiI³eVUÞsJÑAs[kÿ±³|¿_¿IuTJtvO©ggoÀjqLzū@õHXc©F»^ߦ¹ÄďR¾ǃƊ£j«Ak¬CROh¢O¦l´Q~Lxv~tzÜHŌqphNkxDt~HqAlKd¤O°EÈgfA¾ÚRnZºoÌÞTâT^^bX`^r}WdÖ"],"encodeOffsets":[[38955,17967]]}},{"type":"Feature","properties":{"name":"Debubawi Kayih Bahri"},"geometry":{"type":"Polygon","coordinates":["@@ŌȈXltP|EixAöUUĒL|rBtoZVCP_cL[®H®³J_why¢sCÚ\\Xga`@ps¸JWEbWÄgNsvg¬¡fT§zg nµytsx×w`VIùHFi¤GNdyvw~D¨[CPujC^§rO^XCÁ\\}~`dro^X]Xz§fYb@ ^ZÓ\\ībif@]¨GnXT|bDBbQn{ZG~¯A_NeOUabYnUt{fÆ·eftXIdMlVbMtTGTJShe\\SV¿S_pZ`°aFGTgJWfWdyYPcTÅ|{ũ»o}[}HcoYQoIp]HyigEYuAymÙÖ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½ĐºÃॼ]ªEdWöGŬ@yrKip¿hªh PsuIvSÀJÀ`´{²Āl\\tÒBtIVÝfUN³RYi¥Cÿq]Kgyq^ÓuDhq{õFZQi³IÕá[o³CÂ}A}q»wGkZ {ydBcQby`½ZytLZdAfKn͓ZynBmP§RoNLn©¼lWaTg»_ÁD¥_u§Eu_£ĥxSWqNáL£mµ\\eeµWYmiĔΌ̼ČîÌǞZkÒɜưîł˦¨B~"],"encodeOffsets":[[37860,16686]]}},{"type":"Feature","properties":{"name":"Maekel Region"},"geometry":{"type":"Polygon","coordinates":["@@´JJj|XsKox³¦s@åve|ÑB»Çq@čIVã¡J]zrLhr^DĀj¦QZM´"],"encodeOffsets":[[39677,15904]]}},{"type":"Feature","properties":{"name":"Semienawi Kayih Bahri"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nzW¯a"],["@@{fGbNrsoa"],["@@ODiaAmqk_\\]l«OC¤bNSO´VXz "],["@@lbbaPsWsyVBzpEh"],["@@Sg^H`Hbq"],["@@EEEj`rxD"],["@@~xpwkIJ"],["@@duDY^lT|xI"],["@@GaWGxbVrS"],["@@wcod@ rL}¡`{"],["@@cz~@Yy"],["@@nFHÅ]WrrnE~"],["@@yrs£Zikd|naQYtnKGtifCNl~GTYÆ}R IwBGrùn[¢UfHFpt¡AHz²BSjen@NɳV©YfZ³Qd]_§QmnqXsKonI¬sTiS^Jv"],["@@jP]ML]vG^jG´V}NZpA¸~ôǤIJĒfYVxOZqBqv£zb[ªájo£z¯Xt{v«p½FtµJ±tsD¯LQhãf¥@mX{V¯»HydqJv½G»Mgp{[oF{fkp³K{N¥T_KZK]ƧfdÉZ[^»tO¥¾ TqcupBzyWqw`N OfzDtUrl¯rětkv£D{_£IµlC`q¤RP®EÒw_S¬^_zbCZxvvR@nzE¦ ÞzyGw»ÁZU^xuPw`[A«UhQq´¸]bo¶fÂ\\rZL~JnxYVđV BõjwFO{ksWŋȇėoÅŸµPGuowEuh pcM}xs©N[f»~WVDYtBjpFfSiR]xsQaTgaEAZ¥dkuVª³`Mx\\²z BwbUKgc@A¼{Òuf@æ¥tw´LptIÆo°NIa|LxMdNd ]«fNGJwh¦\\®P°trÀ@¼{´ñY®_wbS @ÜL|¢mZBãcSÙbPâĖNs[æ|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¼rB~Á~D´\\pâJÖ´RjYöEr|gCÔv¢IäJUĎr@Èd@hVLxaAy±[Nw´_©vUl¦cYBbFhbStR^wjQTe EoAiZsCXUwKsVkE}h CIh@B]yHu·YyOokHSKi D¡G¯cÍDÉgqK M]qciNWFk§AÑsHoMqlCf~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_ËbYbLAXNUf@bzoOjklW"],["@@qkUFfvbO"],["@@BWNvbBQs"],["@@a]uLBRwZ pnbzBD[gRi"],["@@]bz@[a"],["@@KRt\\|JX\\IK[hwK]^qm]j[@cbNbJ"],["@@YSe@¥_GkFS`ÜCDRÂLBvz[m]"],["@@X¡aKWE[h\\Ynj\\umMmlVFgÐJ`kSo"],["@@]GHQV\\N`jGNaQg"],["@@kXJpDSkdAb]IOuO"],["@@¯AAVhNilGr "],["@@eQ¡vZVheS"],["@@XGT@u DOMZp\\"],["@@zEPVtAFnVdRwNNNJqMwYaS}N[[MOmJA[aKGaokkFoU]_uMW^_FS^wnPMdeNI~T~qKhzl@UhTd®AdetBC_qIu}SnU"],["@@dV^G|B~UrNrafKRXhDÎ]LrCÔ\\ ~_PKOUOEfl~~oPt\\wz~EFMcj]ayiWOpFrrp@OfoNzfotTDgd[nJlI^TdOtLXÃV{o]AZeS Fc{Å}¡JYJiYAk{A@diPWBOzYn\\VbUKgKJÎh|XÔQ¤Vf^tUs´UJpKpL¹b@NK^cfsbF^WPC]JgoQ FqPj¡Z\\UfZE Sb@FfeJgtyDMbÃ][L¥NEv ^FLMFbxYÄ[¢iU¦qXYä ®cGhLXQÐC^d~M\\ZFMdiLÇDx|KF\\abLHeaGL]zH¢pjIR\\rANoSbJQVVfIFWÙ[\\gªCVJ¤TnGrJhzjbG_ea»WN[IT^xSIfZpDljOXTZixOGhtPqÔgàu¡gMhW]g¬Ha«}\\@m^O[mB]WmeF`j©aaR}fUkwc}kYwuiHQmS_aUg[{ON}q_Nll_My\\eOGgX][S«HEQVRcJß_iGSFCnA [K_syµqmAuQa]rP^uRTm^JXwL[bcPVXz@]jyYg\\¡AWXyc~itCVW´sÁWmLQVZVKVLOfsTDcR@`wZNANXG bLrUCi`IBfNÐKPZP´PEbÁBS\\"],["@@Jk~JprLfMPwtlTpDNhd^n@R]^N`vNjMhZxE^_[U©qQRkQoHg@U\\K¶yEZ¦abuLdCTÃlSTpRd~zZ{nh[ZfcX`TqfQjv\\nF©tP]WmVErpPfrl]|OTH|BILNªGZXNh¹ HPzfhuSI`[d@¦[ä_HPVFlhZMJjUPFY¢A~xWjcJqZ]ikEYiCROydE~cJSs_XxlWRuLg^kYy[OjYr|_fVycg@oZJi°aI^Z^ºoJ¯pOFcCxGX@ePT³lcpRG\\ ON`pA^{[CUAmLb^NdzbBX`xLlIĊT°RªOrR¢A|QRg_cgrYR{hUn@vWGYÅNoTc[ÚOUA[gKŇHÁR_twE{LZ{POePwªYGPi´GrHøQĜc^IRiyg[V_Y§OYUU|fMvBHY}BUueQÃJR[ëgµAµQRM@xgLpKRU«FËOs@_i¡GXQVZbBQbWCFa Ie[W³Sa[EY[IGkFD\\ÀIC\\Ù@BRILIUAJmMTFIQ«^Q\\qF³^dUpoC¤mG`g¦SiUc²c\\eflDZQ¶E^]luFiUJ{kDFa`eQS`[}Qs@^~s^cG¥^@g@_e[AWgWa]_p@nT_SaZ}E_\\ObgNqgÓDa`oaANM¬MBcQe`E`}KUetDbObTde©WoetCVVn_`fpBjMLYYuinUB[iHqkPFZUVEOUpBxB}huC{lGFiiBWSaCI_~]vTfMUkOMwTacU SD_ºq[Ih§NZfmP±O]RnlmTNR^UQ¥V|FiXCve^cOap«dLWnBnUDSLU®T_vq@IhTVFAX~TT\\RDZ¯VEnlthQBUCfYn§\\GptKrYhVEn¥NbPC^DhIf"],["@@]ZPp^\\\\]qcvGA[m@"],["@@ÑLE^G|a"],["@@Mxwi]"],["@@K^OGoNAVolHP"],["@@epFeRScRwBeXDo`ZTJAJ_IÂD¬A[UnlF`XFZt@TV|OPegBS¹GJY\\"],["@@HVTx@@["],["@@CTxLJ]}A"],["@@Rj\\SYY"],["@@lLmAIWkF_`]]}NVVPO`"],["@@q`T\\@PTEp__efemWXsb"],["@@T]KeRgvjZwrQV_"],["@@RX`hq"],["@@bJJk"],["@@a\\Xf@He["],["@@gfJpBXJÂ[@VBBS~uQ]{gAsRyO[SLRbUlT^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":[["@@rOIKkBWbQBOuSAVc\\eRJve\\"],["@@hf`[PºnlAvY~KNKqKgXY^LN LnSeIIa¢R~K\\S]eAFObOvCnLjEhSÊUNeWATH[HWYJMQ\\OK[yAFEOIpSb[uKkAUMMgL[[I|KhhLDTQjob[^ \\VMEÊvkLqGOiUQP b]D~NmC[Vy\\sN[tta|qv{J"]],"encodeOffsets":[[[-6850,63511]],[[-7288,63798]]]}},{"type":"Feature","properties":{"name":"Norðoyar region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@rXlAljvDrOV_AKItSWm¯SUjsd"],["@@`PrY^slsFWoC_y@{ZHvcTs|]v"],["@@RHvG\\b_jJvUd]RJvRLpKNgTIEY\\QðgJMU]MTq@vchMGEYZY]OF}b_d[RYEfgBMfggI}jxSj"],["@@LRJtOHejmv_n[MmDsZ]xiZav"],["@@nTrGvYR_EMfajQCYjULZVBYFMk¿VURkYVVn^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^iDSAy\\KX"],["@@IzB|WBnQPQâatSNW`QxE]UuU^GF_cM^eaWd tMhWZT¿M[QmdLJYXU|OVub"]],"encodeOffsets":[[[-6931,63179]],[[-7023,63257]],[[-7119,63399]]]}},{"type":"Feature","properties":{"name":"Streymoy region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nJ~]hcMKkPyf_N"],["@@tCPTvYZVRBtZThEzPpQMnYb}wnK\\ea]I~]X]jD[XeyEy]\\G~VQjSto£UZQHtQb[IggSZSQQSPqSO}H{VlÓvUn]`EalFhajyVELDKG£BwRelH[bX"]],"encodeOffsets":[[[-7100,63453]],[[-7434,63669]]]}},{"type":"Feature","properties":{"name":"Suðuroy region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@nV@V¸NtSOPOzCamIdSL¦AhcFrC`MSSjOMUF\\HUzOP[¤EN[wOBKtQE¡WYOuFUEYNsG]jY@SeKsRwLcPEToZbDPqFe^AViL@`XZIJ}TcldVTyX`RoZ"],["@@fH\\a{FET"]],"encodeOffsets":[[[-7170,63102]],[[-6931,63179]]]}},{"type":"Feature","properties":{"name":"Vágar region"},"geometry":{"type":"MultiPolygon","coordinates":[["@@lXSVQ`DlI^^äfzcOh__EbIXg_MAaMoHaKhOuG}Q@y^NULJ\\^X|MVFmXiATY\\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¹ªgLγ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Ádzº©ąć§\\¿oxeÇjH°¸ªÚĤ§¬ýšťëÕ] ċNǛÎ_ģ }I°¿ªAÌyvuĀuÉb"],"encodeOffsets":[[13058,-1937]]}},{"type":"Feature","properties":{"name":"Moyen-Ogooué"},"geometry":{"type":"Polygon","coordinates":["@@ɘFĜPfæ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ĥdt©ĮÛ¶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ì§ÂğĦŁĔñ¾jI´ĥê{²ăĔ¹ªȍƜģà"],"encodeOffsets":[[10265,-2865]]}},{"type":"Feature","properties":{"name":"Ogooué-Ivindo"},"geometry":{"type":"Polygon","coordinates":["@@gēÀÞÈ̮ȲÄ Ⱦƈàc¤äjÐrd¦ĎJ؞cƂW¾ÂÆRuêPª´nĊA¨âƜ]thÊ·Ölö@ª`õŅBN¥ç°¡u·^oëëDÓ穵©ōbh{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¦ćƂHQÇĊ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^^øawÂŨÖB b qŊkÊzqŖr²YĔ ÀszZ¶ÉeÑTÓõák±\\Ĺe©HçWÃĎĻrķѧ؝dI¥čqciÏ£ãdßȽƇÃ̭ȱÝÇĔ¿hɩIåjeě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¢unÎ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đûDfåI}ëåyX¥Ì]ÆʼnLǣÈïŊD«_¬ijĮĽlAÝC[¤xêPĪaèj´k²M÷Æq°AÜÙĦPwºPȶÔSÖ¶ÞO¸ÄĜ Ðî» ^ înpØFâÐ\\d_¬Ð G¹L_°nÆÅ\\AĖ´¼¹ÞÏėT»ċ_ùrò®ZK¦¦ZŚƠCÊĥ¶îD´ŗád¥ýtWħÇ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ªcpRFdRpDF[w ueQL°QIJWt\\bĈ§nNO¦aÖeAjb`¾^KftiXamnF fTx¥Êģ ÃpzLl@k£~\\SzÅÒ`rtsRmoOqU°VvgHBJE\\£O@mdċP IubC`n·CV®rVZSA}~ÀBrdev`BĤg`b dzDÐK¦`VYn\\Ìx~V¬Q^yW^\\vEc`wNO~®XrSdrÀNf´J®~aVTvfB^~IhdlG^ôÔDMRbQÊtºTðHPT¸V¨MÀ|fG\\@Sö@pvàNq°e^RxkBs¯FmQRm¬eFxOl¤ZbMvdCv^]nTQ|ºbt]Fipy¨KEuniB{~ J²MTaIaÙÔWpĘBDizeri\\s]BÁRmOH§Í_½@Ëg_ËCs`[i]iDIyIQeM_ecCë¥sqYz£@[o§JmQcuum©iqL©]u£e]USo{}Im¡ko@C¡Qqµ[eWFuWqugsHeiTcpccMkãTyhQg^slAlsy[M§NeSSFmoYQ©HYg{JWf MÍFRabë[[DusZFWÃigg夣\\Oi uDyZ{IYbgaDuqD¡~]}Fazã@½qiCm¹jcdl F}iÁTOYµqrk¿sDY§UabçHeãGµH[{H\\ÕGewsK³RoFcZneNVpsR IÇHSbjdbzTCfà[j¤ITªkl]¾H`EenEn@´l|Fb¥ÞE`{nPªv~Nt]¼`"],"encodeOffsets":[[19422,48159]]}},{"type":"Feature","properties":{"name":"Közép-Magyarország"},"geometry":{"type":"Polygon","coordinates":["@@u·nKbjM JJdxA®T~}BTUYqDU¸mD_vaJČOnc@¤P[FIAhGUu¯VPrnptQs_qÆÑTy[¤}l@KkoyÄĤ¦ÉwSeEnmbjWesL½]a_BiÕf b¥PmMć¨as[±XÃR¯KRfvx\\E Co QEcoQ©dÁTjoUUUXµoÐN¦zTHBn¥×ÄnG~iAJzUbd@\\´k^r`¤cF]PlîTifHdcµl"],"encodeOffsets":[[19301,48966]]}},{"type":"Feature","properties":{"name":"Transdanubia"},"geometry":{"type":"Polygon","coordinates":["@@¶kdGcjeíSOk^E£dq_l]³@[cVaIyjBH}mØÃ¦AmGSyM¥p϶ VW_^»Msu}O©|mF_¦ÝEa{³k@m FfmFG_^½lkS©£J\\ißDeySaicTaÈGJtQUofMmdY}ñyE£GmKQwRSyKDoDenyXccÏ@LQ^XeW¡\\]ayQ»`g^ÙOgL§kmj«vTÕNi^Gd¥xyEùbUmDWdE½_Q~PhxBkr@jmHDvmF]kfÿz¹tDϦ_J[ NN᪹Bh®Hĕ_ºqZiDjMjLRHUr©KxNPba`»FÅ_En~\\`ªX~ZAlv^Ð@LAxSZbcb£bMjÆzYl¿MAsEWjfTN^Xdw²ybn\\UfLonj´EZ`ÖRfcr¬r«ČcJSÛz×VP|AÚ_^X^öJf]ÆK@[zâDVl|bFCņb¬HohK¦Ybj\\i|jÊh¦kNtvmVnÊvtGªm¶AfK{løtRĪË¢KZQèLM°NpZWV¦Aî]BØWŦthR¦WVÔ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^ĘǦĘŀPYØHäQJIìNÔdæČgNÆöGT¸ÒYǾĩǼdŀ\\Ų\\`M^ĎŴPR̤°°RÈ¢¶ªz\\|̖ˆjrmPAhĠzIJZNpbZ¨f\\HrnTpvpVt~~MNqpA¢gÆYTTPpjZâHX[àWzUvpBXg¢wS`c[VP®F{¶L`PĦQz}hzÀA¤Al|F [²RîbDjylSFReEu«I½¦³UQXm KT^ GpCÖp¨|ETlvzrHtn´cF®SRq}g~qHidOdyP\\_tETqk§~@ecOo{NØEnR~vHY§L¹]]{WZqCguGScXgYP\\OL}gA|Z¶`³GW}uk]Hcja[uHpjIVgQimSZo¢GzfOlVKHz{[{^{|_Pilmr^I~Rfº]nX BjD]@e|qbX|aphZKd¨MN[qwAy[}PqU[omNOH \\kkI©RmIXLq`]Y§¬÷|rS¬\\y¥æoQwygCeqWq\\eIKRaheQ§zcGKcAs\\AcqoE}{F[XDTEgkiiMTu^mIaiUioIsZMhKY`i@¥sHhWO¿GVWOaXqA[iL}g`sX|X`®il{A[[]v©ÇG Yo@w]¤L¤·ªÕLenUfuQcjQx{¦oe°n¦b¤LTUWkzYz]_ë«úC~brE~©N@}Acha²yD Qs`Y£wÍV[EcE@imsCKqMÐbÌAĔw²qj]xIĂÅsÄk±PccVm¨Ìd_ººÜ`HÂDt¤W¢Epizw[V`SSiqnGBo@wnO^mJ¨ ImtyvSh^zwpKLejKWmPa¦{T{Ƶ͛@ȑ@ƙ¢AɴAvCMбAqäm´wjwN¡hrtOþāuP]C{}Hmin}F^q¦{ægnUÝcd_acX«A§vhǽpđHSyLcÈ[ziZ]t`zI\\Lbfb¢GpcZčpcdµ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":["@@nVtNLVJCAmI]]wC[gKCUZ[@a W}kISUIo@QpHT[PPNKRPxdNfwHAT"],"encodeOffsets":[[-4607,55689]]}},{"type":"Feature","properties":{"name":"Garff"},"geometry":{"type":"Polygon","coordinates":["@@VJJT~lX@bY\\DVhLDSZ]tKzGPM]]eW[_YSCWqSOWDOZK__gKKFD^[foJSt"],"encodeOffsets":[[-4580,55545]]}},{"type":"Feature","properties":{"name":"Glenfaba"},"geometry":{"type":"Polygon","coordinates":["@@j[FMfBvWIYQSqaoowA[s[qCYIFjSTDTTH^nGXbXZDJl"],"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{rFTUyEdwMcuQEoF Me`£Wãp dGPM{EBWS{ÑUk] ymuV{qXLhcv\\Kd D"],"encodeOffsets":[[35499,32626]]}},{"type":"Feature","properties":{"name":"Haifa District"},"geometry":{"type":"Polygon","coordinates":["@@¡EWMG]^we±M{uQÉ@oeÄCRfrD|o¡w]BuwqÑqE|·RQQPƦ^ôCp`\\\\üCnvVqlRzRv"],"encodeOffsets":[[35919,33678]]}},{"type":"Feature","properties":{"name":"Jerusalem District"},"geometry":{"type":"Polygon","coordinates":["@@l^ÒVT|XAamCxpIXcÂq®TxdmOUCLqi_TÓdoK·iK¥Z|qXINlWd\\b{Zov"],"encodeOffsets":[[35657,32551]]}},{"type":"Feature","properties":{"name":"North District"},"geometry":{"type":"Polygon","coordinates":["@@Ht[NRxĂFÒ@PvO°`pEHanR¤J`t´C@pz`I\\`´ITNh¬bmqAvXnxnReDjSNsuA]Ulķp¯[½cQm}WRgP_QTAmvsemLqakDċrJOhTlcb¿Q\\y|m[{pqCQeÃDf@p ÊvRN|f²]xH^NFX¢"],"encodeOffsets":[[35919,33678]]}},{"type":"Feature","properties":{"name":"South District"},"geometry":{"type":"Polygon","coordinates":["@@CLc [duKgrW|vUnzpu|Y[aXcMkJrW{Y]mKFesueRg~{ð^ņEtRÒVÀ¢ò²^\\äJEÝ_³¥åMVy«JwQCmqmBceiGuXsIciOCieOAwc_e@Q]CµHv¯QsANM`y]Ñ_Acm[¡i Lc@¯ ÇM}[acÙRqM÷³±s¦W®X¢m®OÂkİ©Ų{Â×njWÇWtfÈ@ÖeØýƪÑƲÅƴvllxN`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@`oVaXHRIfRnMdaXVwMgLQv]`]|SB h@^OTHdSn[Z_P]BGM[RKoBELOuYQ@e\\ETiJ_GwRZS^EZRTX@R`FCXL\\UV`F`@MZLNl\\P\\`HRZTC@CUZMLn^F´YjJVEJLJ\\W^HpOjCJPORZNIZLl¤fxJv@IO\\BnGVQtO~HHQhIVN`KrN@jOnB\\IvBNU"],"encodeOffsets":[[-79314,18913]]}},{"type":"Feature","properties":{"name":"Middlesex County"},"geometry":{"type":"MultiPolygon","coordinates":[["@@fLb[HYQEWZeV"],["@@VVTAgLVjAfQHVT´[jCb[^KbLbIX[]BVN^AVLlGTSNF~OtGJThJ~GV[QMJgXAoVWbINQOQVKNgferTz_\\PRKµķkPfkScPOWUBQHWD{QO[@ESXIGaXuc@_KQ]MESF][kkwyUW\\QBiUQVi@SKIT^^Kfsf[GMR[W{GysKoOSHcWGC]ZSIYgADT[DaWBUv@hOZZZGE_`UB_icuGwRaTUZaRgtoNEVu^eLjB}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\\kjMFNdBNMEnMR_\\FLYAY^OBaxLSLoNU@ahcPaXKIiFSXQjBdwQQWNmIMSkESQeFg[cHJbaIEg[@\\[BQSFK]Ae[eG[PGTgLGUNUp]ZafcRSCmVOqB]YMNXVI^JM^UNIsDpUeWbHWJFT\\@RPC|GXRVAPXdOlTelO¶ĸ"],"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ĺkb´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ĦnQúÊŶ¼Ą®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ňInæĚĒWvĐǤ^ĖWÄ ĆĢȂltNú¤xøOΐȈĠÀȺľĬÌǰՇèȳčq¶ƥǼªĽʛȗӹšԱſىȀҧƂţ]¹ǝEÁÎ{âÂÈ"],"encodeOffsets":[[36891,33129]]}},{"type":"Feature","properties":{"name":"Tafilah"},"geometry":{"type":"Polygon","coordinates":["@@Àâ ¢âyȔ§ä«VĬËāũ·vkƥ£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^WNaZYFWPAB]"],["@@IRPXV@RUE]gJ"],["@@j_psnYT[HEaDa\\wPAoSK]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"],["@@KAGZ}EK"],["@@RkSBSjOT[ROAUMQ_GZLTVLVFp_²¥"],["@@W@OfJDRaLG"],["@@fEpJtZHPPFf@dN@PJ\\KPDBld[CWKE}L[EqDcMeAg]sW{ASH"],["@@NHfIVRRfRDDTfBA`NRONEETmrW@YIEKY`FXXHxBzOjsvaxO|C^QN]K_cMSSW{FYAaH}V]XELQrWXAVQTCn_`CVKzMXcFGYMGe@eI{T[bmVsdWVaJeTcHiA N_JypMVMhOR_RoMOISDSTQbrjJXpSeu]IWBWVMFXpB"],["@@diF_zvuIIq~_rW\\EZ_v"],["@@XHFLpL\\ADHWNiAiIqYQSgQOOSRPfb"],["@@Tm|ITNUdLBVcOQFUDI\\DT"],["@@IR@\\O`]EERLRRDNS`©MN"],["@@Y[KTdfZEDK[K"],["@@TOH[LSXKnMzLVXZDLIgwGiHOLcnKj"],["@@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ÞNIPLÂOFŶ^pĪsØA~DnSÚZfÉFPUVµdzLc|s¤[QsAx¤qAFOY^OZqJsvĝA}EDžCÙ_ŗXƵCBh®ewnaÀP[âyg"],"encodeOffsets":[[48678,29598]]}},{"type":"Feature","properties":{"name":"Al Asimah"},"geometry":{"type":"MultiPolygon","coordinates":[["@@~Th_FMpLpb jrzfBPeh[uglEeZÅU{HõBiV^hA|"],["@@jJ\\WQ¢Ua}Vor @Nj"]],"encodeOffsets":[[[48917,30076]],[[49449,30175]]]}},{"type":"Feature","properties":{"name":"Farwaniya"},"geometry":{"type":"Polygon","coordinates":["@@vtJRTD¤|GÆVfYRHb}am×Bĩt"],"encodeOffsets":[[48951,29908]]}},{"type":"Feature","properties":{"name":"Hawalli"},"geometry":{"type":"Polygon","coordinates":["@@FkvhgVNOQo@£qKßBQ"],"encodeOffsets":[[49131,30008]]}},{"type":"Feature","properties":{"name":"Jahra"},"geometry":{"type":"MultiPolygon","coordinates":[["@@B{]gjUöAC£QSsIu]oEŵÁPOKJÝMcC_¡UwY~˳ʇ¹HȁrHhxxȤ°ÀÒd~tª²ÎDf``^zR¸p~ÈfnÐÆ¨^¼`¨Z˰@ȺāRaIGo^©MHuóvqvWB}dxTvmykt«lÁZ@Wk[Õ»awkByqJevCX"],["@@dFTD|ly`cGGymPPfvB\\vNGp[¨^yTMjzi^uAcYsss³§{aTcx[I~opSgnV@\\~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ĞSsGÃ@¬ª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ŏxoǟ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ƄţŘItĨƴ]\\¯ČþŇɺñyĥdĩM³i«đuŃ@}ġióHñ{ħïíEšŁïùGãïñPsű§NjFuYĹĩĥ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ǠWpŐ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ȨÛoNÞûrʥƽīEmÓ]Çē\\ħ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@\\AXMnÓy]ËMg^wsKkii«q}XHi]ROaSROBcpyG«CDMM[DBU|Eh]]F¡IrgJOWYFg_MVYS]~sWQVQcKMm°EhGr]¤KhJrCPUQQá[ãDJgcAcTgBuhc@ePoEwNgA}T@sN QmBiO `ÏSsZOXIZMsO[PeUgAagI_eFYIPwMo©CUN³LSia QULq_m M[oEUqm_MS[]ZwI]eCiXeMßUyÀ§äKLCbYBtpÀJ|YºPDF\\x¦ZNAêK~dr|V^T¸rxRhvdhf`J tjbxVjLnAS¾PE\\~htx\\RÂdxrxphjLdtfrPÈT¦T¸AØHP²\\ÒnĜzǒ²ÄbÈXfBmQLy\\uuÆæwal[JUiÄi\\UªYEVMQYTizqP}VUCulo\\ojoGsP}|qn[]UÖS¨Ax]"],"encodeOffsets":[[24119,58348]]}},{"type":"Feature","properties":{"name":"Latgale"},"geometry":{"type":"Polygon","coordinates":["@@fDBjP{fNZ_RUrWL_nJj`tTrU^YjLJRfDRnfFXYjR@fWNâ@N[BOkj fAR^Nobv|mzwìs`ZÊh̸Hbx@VhGHa¬yAknD²ptdà@@UÐFMZ]D|@LöJnUPRFjcNDf¼hcZCZd\\_TKjtxEbŒĞv`rPbZqnE}J}^dmP@^fM^drnAzPxfNnÊVdd`R@PnlpHPRtI`fXKHARjvL pV@@fA@cÄBB^~@BxBr\\vDTRCSMlUK_RMF^G}SuNeo]_kEaTSC_aq¹UAOmShMAQ}DgiYNWkcBU]ibKBsIOeF[gCu]eHaFXTÀ`~@xJpZvEES\\Uf ÈZNoUBsoAkmfefKvid@G[dIhaC~XgpD¢GfUMm}K[[TkBK[`cªY]Jqk{rYbo}iM[_hWkUEooSMiYE]oHicNSuCao{D]}CxWeY]u]ODGMû@_yk`q½«C£DéPkNVIQ±[OGTKVzuFc^E]KG]é@eSmGwwu@kDIsaImÏ]agJoj¹FaUS_KqLEeT`wNDwCSn_VDpCvsj}NmV}F}lu|e^BTZUGsfÕ^FA`S`U@el"],"encodeOffsets":[[26441,57398]]}},{"type":"Feature","properties":{"name":"Vidzeme"},"geometry":{"type":"Polygon","coordinates":["@@MfMG DâRĄd°` ddxnÀ\\^²ph~l¤l²v^jHjQKêYKBcxLbKhTr\\Z[nQiv@zL|C]j´EFM `[xbd¨LPZªVZPidV|NbYp`zFCbÈRreRêzDtN´¢z@BXzDhIBsUQ^wrivGhTDUXy\\~lpWEWfWqSYNOJJO¦DdeWW¶YV]|GtSlW ¡Ä_ HMZnYDDWguW[XLÆaNc~G[suSB[vMVrkxIVQ@´YÊHl}RitQCH\\tDR_lIChtdAX\\A^|OnV~AxTFplLjXh@HSlOKYðDZOPaG~]CSHGnYbDz_lCjJ¢G|R²R²EQehGg±UBgW @h[¢MVkREDSQuCq[AAw}@A]ÃA@dB@e @oUuKiBQGWL_esJOQGkom@OQc_UcÉMmweyOmBcqN]]e@nOc~]~IFrmaYqOu_őĝFaswLi`Sc[DYdY»gCedMEiOQmVõIadgUS`XVHlėJģWgcaÅgBrcTsIkUFaV½cQSWnUpaEa_TCVlBb\\dmI£^Ir]\\r]pwDMVbyCbYoeTUUqBOdq@}dFkO^MjY\\G^ªVBZiFBbp^@TgVAz£xgM\\_KO_EqPB\\_jcPCaUCUwI[syVYC¡NFG_MTgaaHi^_W]Fy_«N}PgOFUķUDW`oIDhcO[dDj]HWc[FSWBMnS{KOCyO]F_C·}Is@FUqKûmD·KU_»AKbuEgZESTNPc\\¿BQlmKBM}[WTTDzb~}\\odMpÏv]VcQ]TõAW[B@jDª\\"],"encodeOffsets":[[24119,58348]]}},{"type":"Feature","properties":{"name":"Zemgale"},"geometry":{"type":"Polygon","coordinates":["@@öB^SdR^UÐuNopc~[a}CySXS~\\NAnLRkÀAd[MOTS FhYvFLa¼BV`¸LnCürLEVt@~J¸DE`P^DzLP|mTANXETd\\GXi^ CcP\\gdCpJX_CĸVEVPh~O¬Mz`^E`Xj]bGhbS`NHE¢MZDzU\\txJDVbVDdO`iA[rO`FLP[`hN¤wByhU@So]AajEAY©UH]Z[Ni ]lPE~cr@PcrAVSVpfaZzDaNUxC^oq^[Jq¤]nJca[kADUSb`bFVomXRT¾dbUElVtJdSAqÆhdbXhĤĘIGkWUT_hVbc@K{^CNYÏE@Vß@sc±omCBl«zGbHUgw@GaË·ÉgYt_xënyu{paM]BQeliPAM\\ @áXM@eiQWZeEQmeCIQiK]ZqVsSi_mIK`qXQV`MY|eOAieCgNJqZ£TXoVP\\UJm[£AL]l_HuMI[qC£XUScHBT§K_DmS\\UZ]DifeI]U§COL¥LmrMbLVWNAl TK`qPeXMFn{^cpgdb\\WXFgaRcIkByWWJCwILSgW¯@CkieiIW_PUGa]BOYmEMOFd MapqLkEIYQaBUoamFIE\\i^©FFhuXGfēDENįB[egZf_LkIçGIµkwKFcTNif}RçHuWđEI[XcU«kohqIeXk\\DaqAQPwBKW_GqDgI£Lq^gH¯FNndLURXR}tT^UZ`NEhZPXhIq¢J^E^g{FAVCN\\ NC¬DzHdo®APQbTQPj^G~W¬rjjltLxh]Ì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ÌFno¬ÈtjZ~vxrB ÚD¸Ph¦vPªzhº¾xL~tLzTÚKjNlîRsssxQJigaX£s{]¯[ACw}aRSA_Ù±»~FwJiÕ@Ûvu£lÁmJ}©aAwqe@{kNsÖo`orU}}Ý_YY^mo¯_µTUqh G£eZi°R"],"encodeOffsets":[[36488,34329]]}},{"type":"Feature","properties":{"name":"Mount Lebanon Governorate"},"geometry":{"type":"Polygon","coordinates":["@@t¶VZF`°vFئVXv|A^zzvevt¤O¢[LJ°`f¤kQĖF]¸A¼iOgC·ÙqAuwY}si«ÇpmEË@YÑ}z@{@³i¿AÇl"],"encodeOffsets":[[36237,34400]]}},{"type":"Feature","properties":{"name":"Nabatiyeh Governorate"},"geometry":{"type":"Polygon","coordinates":["@@Nf|vXp´¨@§Bb@~mj\\r[v|BvFrhøTKq@É^²xfY¤®HrgV¶SmQwmmÝ[ang«iăo{@o³D_sÑ[¹¤"],"encodeOffsets":[[36148,33896]]}},{"type":"Feature","properties":{"name":"North Lebanon Governorate"},"geometry":{"type":"Polygon","coordinates":["@@XO|j Rb¾NM|ôn¸¨tXLp_úº]®BČPOÌL\\¢xRZ~sQRF`Wµ±uHmSysKK}w¹½gy ©O¥u»j·B^ĕER£l"],"encodeOffsets":[[36505,35036]]}},{"type":"Feature","properties":{"name":"South Lebanon Governorate"},"geometry":{"type":"Polygon","coordinates":["@@ÈkÀB´j|@@~yQj¯±w]@ÊLr÷SqguEAu{\\[qni@}a¨A@³§Woue{MMN¯_uPOÕDZjxXrRIºL èrTVl"],"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\\SAcSASWMSYMR[PoICEaEKDKMQJINFLdNjXNZOGVQRQ^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":["@@zSfI¶\\pc´HFz°Bi`ÌG bRn¤TboǦJniQlN|o@PqA|ßt[ZrQt«Ç{[@©l}]sT_iPIeTħnarF¡ÆsAYltjaZY@gzÏBlu}c[ÁAucd¯dIÓ±@rAn±Facs|Z}CqdzvSpnCh¤[j^tGgRW~¥nh"],"encodeOffsets":[[22575,43032]]}},{"type":"Feature","properties":{"name":"Northeastern Region"},"geometry":{"type":"Polygon","coordinates":["@@¢i¨Sf\\Ô]Yzv¤FljGsTbðŔ^~xGÂAoyYhQ³|KV£SQma H_Ëj¯AEy³Godµ[eJ yTAuoj¥McwclOJlÁtyC§X¹ähzBzve¤"],"encodeOffsets":[[21985,43295]]}},{"type":"Feature","properties":{"name":"Pelagonia Region"},"geometry":{"type":"Polygon","coordinates":["@@¨QIsbmĂoÎKÆR¦o~³hiDooixP{qwCRcwwH»K_oF}ia«DqZcmqé ËAV·UA·bQe_GśBA}rďLP¾RTvW^\\lZÌzºvÒjJ|jà@¬EfĘjÈxL"],"encodeOffsets":[[21887,42604]]}},{"type":"Feature","properties":{"name":"Polog Region"},"geometry":{"type":"Polygon","coordinates":["@@MrkUVcYVGº]ÇdÕ»IK_Or¯E±Q]WxX±KuMgNÝ[£}nVyt¥Pb_pÒZn_JrxvRWEPvcbe¬vahRpanVÈ\\A~|Z@Îvfn¦f¤SFoCY"],"encodeOffsets":[[21724,43127]]}},{"type":"Feature","properties":{"name":"Skopje Region"},"geometry":{"type":"Polygon","coordinates":["@@o hr¼ÎØST|Hf£uAygyºã¨WzDÂsIk®PkU}eyGM£W}qH¹QQ}őG«£k{e\\N A tYzÁ¦^¹®HUZdUlVqN"],"encodeOffsets":[[21724,43127]]}},{"type":"Feature","properties":{"name":"Southeastern Region"},"geometry":{"type":"Polygon","coordinates":["@@Ô²cJc°vdÂB\\~dvkÐAhy@ZbYsiZktB¢ÅEbqĨmfSJjOSql¡y{^qA}YĻH¡mDycĿ_kuG¥©yaw\\ýW@fqEœW`¦nZJl~K¦rTK`kLRÜIvyBru|"],"encodeOffsets":[[22803,42554]]}},{"type":"Feature","properties":{"name":"Southwestern Region"},"geometry":{"type":"Polygon","coordinates":["@@`oa¦OzsU~m¤\\MÞNhv²LWw^X²RFq°`PLJÖ¼ÈcÂ¥ZysBMf[pKwÇ iėFe«ß@iI{i ѹuyYË[kX]SuQO½mwÙF\\¿ƌ·Z@[~£oXZO_¬°Ljg®sT]nfTKt¨Jz"],"encodeOffsets":[[21049,42590]]}},{"type":"Feature","properties":{"name":"Vardar Region"},"geometry":{"type":"Polygon","coordinates":["@@l|¬¤ŒHR~ºRrGX~N¤zHfV~ddx¦Npi®vBg¦mX}hQH]s\\i£gmDouTcyr~DYt{db²EBmq@v{AqzJuQÛlK_LqSL¥}IkmY_¥}iI^ifoµI½xxdQDrx|Ow®pjCpgj}´¥pÅQÍLpāanJt§Ro"],"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|ZoAÀäºZ¶ ^hÎsVq]OVo\\KÇZd`Ø´¶Ú^cKÂw\\³Ñ|m´O\\ynĉqD¹d²ÅxQeåH¯ĉS·nƵÁF£ÃÂīZc¥k@gqkXw £H½]u»µdéåwGk¾sR£Xa·v¡MÃToWŴū¿[ñ{e}ÛA¿ȫC{JwÓHĵWĂB¤ªĜOèXb¿ĺ~OyªloÊ{÷GmNŻFƟXµsI·¦q@[L{zM¦gTi¢V¿¸IÁĊ\\Mr¾k¬Fu~E{¼õokBws~V¸vYz~IfÍJH`Ð Wt¡ ÅAtO¨x`raDú¢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":[["@@ÁxL]dÙ³µ_×cÈYLp[UPr^ UtgÍ]µ¹Y¿ãBpY {A±{Naêt~al{â°\\jÚ¹Vcp±^©cIUr¯ÚF ³¾bظâ`´gXÖQ~NW®Hð{hGMh^GÄqxqE¶Æj´vjràkX_kìA¢¦dYjæv[¬|@tÀÔÌx©_t@»¶y¸B`¶Kvb §HpElĈ|fQ¬}¦VÁĊ_Üuz»Bu\\MÓ{LacmNEÄluzÜ ØÏ¦wxu´[ªhj[¬^W¬ãÆYV|iè]~CĀ¿Vig}Nđr¡n_WÇf¦¹IÀ¿ÃÒµr§yJw]po}[vUÏv}W VÍRűUiVË\\wu©B`ëubÅPÓQ«~µIwz½[q³UëXg©s£wÇTëMß"],["@@~ÜRi\\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®pSNÄu¢b¸¾ffQ¼ °¶®bM \\ŜÃTp}vMÉklw®ªôq|IÆuneÖHµàJvcäkpwĈçZÿQqTm¢dlIº`Ĩ¼ÁƌŹŚƳɔʏõ̐Γ@ȁ@ŅɳÀȽuʿYǟO³XħÙF£qÍ[OqNkTU»Åci Loi»ri«AÛ£qÏ¿pµĠïj±M t©ěY§d¡]ǕCghR{zL²Ôn¦eªR~l£cÕKÇDQ¬§d_ʱpYq{\\OeÄeY|wNeú±] \\kÆfþhpMrd ¶sAovQ¤æj|Cp¦¤Mr`{ŔĄü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_[yOuQDPTNjFJD"]],"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ơWaơ®ĵƗƓ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ŅxAĻÈďűdaÿ·»LYóY¯ijÕFÇwĀRØ£^åĄŁKséďħ¥uïv±ìóvâÆÎKČº~dĄ«zN²iŖ®FIJRà{ƆõÐ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זAByĽËǩĻƝcĠƍ°ƭAÇÝ÷űµĩƁůɣ[Ƴ\\ÉİĿfŇ sËÅßTą¹ĭUā¡Ñ¾ÑŐOĵîIƺveâā~ÔśĸGß|ÇèeÝ¢cær~ãGÑƑMiĹŏd£¯fđŋǽA©¿iOĞɹÚ{Û@kĮŗ]eâ¤Ō°J¾yĊұ½ąƙó{Ï\\īùǫÓȓƷƟD÷œiÅÛDÇ Ûð»Ĉ¥kć~¼ǴbĠ³ÀßdpĂėò²ðģĖŤøtðêWĸŢ´îÜŎ[ĊpĬÀjȼ|YøÛÜWļºĎAâ¦åiēā^şIJ~âIÄÞKQČøàMÔv²ĀÆw~¯²wİdƐHtwŪÕbÁ¼ƍİkTŦòƛ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´ĕvišŦ[¨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Ǥ°Őcjĺƒ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¯eHºÅ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{LMOTUMId]@OiJOUEc`}PBLYIO]PaQU@imUH[SRgWSGM_BcvwARhrGVR^lBhNRaNBP\\NYTJlXZUNGdD^hGNZtRB@`f\\VZP@zTJU"],"encodeOffsets":[[58852,-20659]]}},{"type":"Feature","properties":{"name":"Flacq"},"geometry":{"type":"Polygon","coordinates":["@@fLPRĔTcEU[OPSraDe`]\\iAW]ERwMKD_WA@oo@aOMQ{IkRiDUEb¸xz_V"],"encodeOffsets":[[59001,-20650]]}},{"type":"Feature","properties":{"name":"Grand Port"},"geometry":{"type":"Polygon","coordinates":["@@à¾dCRLZGZRVFjClQ|JNRbPp@UMLgSSiMU_cMMRUqzASOQ[Issy[eMUBG\\]hqfBNWZMjOCP"],"encodeOffsets":[[58903,-20886]]}},{"type":"Feature","properties":{"name":"Moka"},"geometry":{"type":"Polygon","coordinates":["@@PJ`F\\YlQV@ZRZKzrjL`Uywa·YQYHQKcDoRkLepJPSfOnkFeTMh@BER@H@b"],"encodeOffsets":[[58854,-20670]]}},{"type":"Feature","properties":{"name":"Pamplemousses"},"geometry":{"type":"Polygon","coordinates":["@@EeWO¤wi]`OQeKiKyqYLGUb_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^NJSVPKNC|Bvnh"],"encodeOffsets":[[58853,-20666]]}},{"type":"Feature","properties":{"name":"Port Louis"},"geometry":{"type":"Polygon","coordinates":["@@\\BNI`HVaHYQU@kR[Z_EOIAHAN^zVRPE"],"encodeOffsets":[[58886,-20624]]}},{"type":"Feature","properties":{"name":"Rivière du Rempart"},"geometry":{"type":"Polygon","coordinates":["@@ē_j^£xXPFfPAF^hbRDpQdW~KLyC[To`[@US"],"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^OfDDfdVTQVDOPDNiXYAMre^gH[gMcWcGYBsQ}P]CdOMqGhEZ"],"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":["@@FhXtXRjuDyHi^"],"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":[["@@BwMUkLW¤avpeorPFA¡s¤iJ|GbY¸qkiGqesKcnWx ASngHUnm^AaāąZmuzKJ^õañ ůxą·O¢uPXK`_LOqZcc}[QCM_cQcJ@Wc^wTKbwnSvJi¾¯c\\ _iJe[yµc·ĮƅĤŤāì]TYiuuaiueecF[UWCkSoyg`a@k[PgmcXSÐdYh}ToyK[]sS EcTÅEwPGÝRmPÉWĵv_INåtuHYKjÃM]ZXį¡IÅjLQ_wL³IHoOKTġ]µJÑMùJGY»^gC_|\\oHqMoneBi¥KŋoBKƃyýaÉ[˽ÃEC@șdO[_ ]aCG]iG[d]uDo_QJkfCI_q]MYjwV]iG¬FBfhTcE§GvnRz{|\\Xiç{YHW}_Im}DJ`o_WeuImeK[m}J` WMJ¿SƁQƣ³ʋȷˡţsŵģkQā»Wec§KeR[{ġœ¯Í©oWZyAoZkFsgyGO\\RrdhBZ{b¡XÁM_W@K¹ciBW¡P¡Z I¡YL±GyBqOLyKqY[gHyENKQ³EYs{}[³Lm^DcVÁ@UPSTcV R@c[}céßU_Q[JÍ_³@¯XuSOUBoY}sAíyc©Y©{{WcycÝykqsMimqO[A}ϹqoM]sÓwsß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ǭ]mI_E¥o·Gg@ÅRob[HMj``Rza|ZhCÞVFtPjMnLb¾GJXJ¬d²@lVA¸N`DxIXEzYd tll~NfC|`pjÄX`X\\vd¤|ZPTGlVbdvf^zC`shBV^ Bf`fd~T¬C\\TdBl\\plX|T^Bx`¨HI|RXr¬CfW\\^h@´nf^dBnS|kn{P\\vvh¤VlG\\®ÜAxbXvx¶q~jbvfTL`rf``x¢nxRrzjUZkGVM\\Ax}b}i@ukc{SEkKsmÏ_ucIGb ´@flbjºZhxtrNT²æÐbhG^VhnXplL^rf¬²¢jZhvrjpdî|jNxZrDhhºPVI\\¾lj¼@¨JXPØUUNFbQxP\\BvK`@¨`vA`lCnd¦¶VDTTdFpVvd¸bTªÊPnnVPRdV¦AHh_t¨¸xt´RzTvtz~¦AHÐbÆx¶¦nd^nRäÌ´²²Æ|ÌlÜÔv¾AtV®|\\|rHlnVrºVh\\®VjX¨z¬Jd~Vf^^|vd`PXPNR^VL`pVhp°DRƖdĞ`RìZêbNȌVNP¾xjd¤`¢jĞânðÂdzp^Ll¤nh¬ttvxfThŊ´ŠÎ¦tø¨¶Zdh^\\|hdpdlx~^¢p¨lzdpPnlfhÆ`rTLrrtfv~ĸHXHhzHhrèzzĊIbTn`ö\\¨HK`}Rsne²oROlbE{NF|^ppERftz¾Ol[PfSzM²bQ`BjQVPpI\\gPNpIbnMrFnjJ¦OYduNTpv¤F`vr²ZxF CtzlDP|t|r¬²DbZbN¾ÄV_n¤ShwTSJ\\~|nª@nO䲨¸¤zt¨Ì¦ª¨TEhnL^¦¦¤h]dLT¢ V@hvhrcl@xTr´tÊldBn|Dü\\ªtl@dr\\dBÚrdfÈTLQtXvJ¸¾^^rI\\аh¤P¾r¬\\xpÈ|zĊú~¢p¶®ðĨ|xĞƸîðjGGyxUTXMnwRY^¨Ĥn¶lÀjZZFĄĖÔNBp¾ŬĢlZÀEQtY~jBj¼jUnPpK¨`оdPpU¤JzRzoc«L¿Z½Ro`YJUihÁjc\\HvSjww¿TSzK\\J|} Ze¢cXD¨nM\\Y[ÒgzLinDÔazBtWUbJ®WÐTGnVNXIPv^ÈfhIpF®tHybg¼aLhZPR\\rGh]ÔxQzC|YOvNnWúO~fR\\dClrQvRb^´pXBQoNW[XiC_rA]uKxkQDarh[Ìy²GV^hLz]YðSzH²h´~[®SUcU"],["@@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^pL\\PR`hRR`BThlI^JPR^MTURFrQlLh_PiVAbifKLWfGPPlSXP`@^`]JNhVTTnEV]Eab]hAV^\\K|ApTdI\\^hKXRFbXLTn`vF\\EF\\fXpNf`zRRhTVZAPRxXBddFrpH\\PPj\\P@PJlGhPzMZHNSl@JapJf]VN`K|T~NfNzObY|GjU^@fajleFaK]QKJUzU|cuPOhQRWwbA|m\\AreZILS|afKnY`G{po@YxqrLhG^b_¢Q^^ZOlDNRxRzFTdŦ@ɬBǀ@ǂ@ǂ@Ȧ@ŜBǂAǂ@ŸBʚ@ǰ@ʂ@ȴ@ɒ@ȖBɦ@Ō@Ɍ@Ş@v}bsTEJbEh[H[^MBgTa^[T]~@P[XEAwj[feXKdeZKyF[XMtFLePWIN]reTHxeA^HbUxFUB¨CDhdRtK^LTQUFZ`BNS`FnazHXEE_zHfATUjOvAnPvQpPX@jWBhXdK^FVZD^QXmTNfK^y\\EbhnXBtWhGLZ`\\AxU^[@|eVHfbTKpEbaºpLV¢Q^@`KVn^H`Wh^^@rcdc\\FjG\\SpBr[HiNSx@bilUjEVI`D\\QfILUfQdE~TEabHtQ\\YpARH|LfRTTfdKfTB^RtK^HJTdAvLIhN\\IR[eRB~W^WFTUAWjAlKPW࣠ǦǮʊ²LjǞPڬƊXFV[hFAbK°jZBQlAhKsdEpHJkNMtJlCXNV`dKFPnFNN~HnGTQlOZPVGRmP@vbnSB^e^O~PCahA^X\\UTyRIrVXCN_O]DUnXD_ZMPm`EH_QaLSf`R_h@P]GiXGtoBzeIMHV[De}WN[m[cGUHN`S\\aYycWTeFFRubgeoPM__CqcEwugAQWeESNOOWWIYa}ICU]OESaIAWSCIoOaY_WKCWiF[EaXoKo~HXGXUHKdSFKfo\\mDQKoPgayiSSoofyWuJmAYiiWUmaQqwaSTEgSO¡syu_@o]SkZSES_ce@o]EYeUMkeSiKDWY_KagUS[]G]eUK@GamwWA{m]H{bGPHhSHQdVfEnUFF`PRORH^i\\Q`L^Yz[HUlsEqnDP_P_GMR[GLeVIzQB¤]HGXB~[LRTQfUJǗ@˯Çɗ§ɧ©Ʒăcƅ}˷Ãʋ@ƕ@@܇@ɋ@Ə@ɽ@ѷBųAϳ@ث@ɇƽ@ș@Nj@ɓBŅ@@[@ઝAҭ@ȟBɛAÕBʡAǫBc@ɗBʽAý@ſAǽBŧ@ˁAƋDʙAʼnBůA@ʻBãA@ˏ@˃@ʼnwDqUQsJ_GQWcGKigqQEPaVD}oGEO£feSHo]MKQ{UIQBmOYISK[e[s_eDQeNFuQWcG]]DiptOL_W_}NqUMWum]gBcQX_b]Tu@QNSY\\¡lB§X_I«PIEVeDiM£KaHcCcUEYgiOA NcQ}Q»RWX±GJ_e}DoggZ{T_EyfkPiMYD cdYHS^_NeGYheEuP«FiNsG}fQEM[YGQX_DggOyRSjHj[|SLkF]GKSo@}NmYSFegPNdGlZf@rJhMVPdE\\aNoOYZBhW|s\\MjLn``|@ZT\\~FjQj{NrWdQHKlkxsDwiLcWcDijUhAtXBfKnTYTKdmli\\asAcmOEg`S@WYWGgNkAmgESPgI}HocQMRiRaUT_j_WSsAaIHWfU@mYSYDe^gAOWB{peRojagig]CYTOYk][w]KeHEbSTmIsQgi_UiO¥WWMWcSï¬tuxkr¥¤¥ul¯²yt¹µ¿ OZv®UhqxKdRLBdUdmnGbmzvo~mbBTabC\\JV[dN[pa`GT{xDduBP[`K`|aXAXWjBPaTG`]Ng_tEIz]dKNvc´RVSt]^IN^F_q\\YI_ViLT~CZYN{ÎQRHgJI|Mf@z^bRIhN^GIqpLMTfrCZXVIroDO@]fG^OPTXERuvG\\yjjoTmJYVepPTOlF \\pFlor[lH`x@QzUlDVUtev]^M\\KtDHRk~{vATabCVWTBbdHDlWnB|LxhLD\\r@fm¢oN|GjHXDYpRb`¤DZ`nCTtA\\a ÆiSrFjINbQrs®oq~µ¾o~HlZjJ|MWz Ðeq¨m°YmÐM~K¬HPtbjpPXfMHlOJ^SFfBèPhB`m¸q´sÐIn@nPbVHEImN_voCGjHXjfGbNGz_Â]eqÔiàLÀT\\hNB_Ok^ANRh@]³LBR|`^KZZLLbC¸Jk´JLDlObNªM_zLnC\\k ejOhQU|]xB`OdYhKf[tqvFn¢ebizid_hkY^I^Ë®F\\Z\\L`EhwWjuE`WO`J\\qcd[»ÄGf~e~@`Q\\uvm~wr]jYVo DXKzyigtotIbØG\\Jb_´@t[zi¾etgMlgnGb[fC^NW¢EOTiM`DvWp_r}vyb{K|MNMpG~ejqK`U`EZanIlg¢¦Ypgª ¾qo²suIf_rHdEr[sShW`y®GlWx[\\]rCVYdClK\\E|Md¡°szBT_`Wf{Ujēð©Ï²[^]vBPQfSVBIpWl}LjIjs¨vOpa~D^I\\CxcM|@tE~DniºDZIhUnDrQzE¦Y~AQrBxHr@¢C~NhAhDvVfKHhCK"],"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":["@@Ů«îVu XŎyb©° lâ¢fčĊÅ¢»F³àÇu¤ØA¦~æHÈF ¸q[lćÄG|{ªKÐvXwhŁ{ő³µE·ůƙQÝ ÑÜm¡īvKíw·©}vaå¢á£ÍĻ´ÙmMéý¸Vĺ[rßĉ]û³TÕ¥ř|g`ªÿJmāĤčxÁgħxXŪ¹Ċ˟¦Êß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Änpö`x¸fºĘŮÄN¶ jĚqÆG¥]Ù¹Ùģ½r ¥qťaW āOh÷{dĽwß½įQķ»ĉ~° ·^]§běõ¨¥RßiÙ©LeïSÏ eüšsÏƹtÉ{ȟèſQ¤Î¡âbæu®~ª¸®îxLu Ĭ¢Û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ÉqqýfÅ\\{·Ąä@IÇ\\Ó¹ûõÅià ŅřČFÖEתuhĥ¿ÎëNďêq CćÔTKâÊøfĊ¦gzQºzvxÔ Ċ¶PIjÆòR°§ØªÐÚA¼¶¢ĖÖ@ÄÈúÔjîĒ\\ÈĝaÖĚ"],"encodeOffsets":[[83223,30766]]}},{"type":"Feature","properties":{"name":"Mid-Western Development Region"},"geometry":{"type":"Polygon","coordinates":["@@VâĨêKxÒufºĢUt´cxĬ±ǀ¨sIJxlSp½MBágIJcثܵpÎçĀxé¬ ĢFzæYä^ÊgÄęÂGxÇK~ĻÐH¶æIp«Å}AęĩğaăĹ¡óSŃrLÇ]ÝTāŁA©´±ZĨ¡x iPjőJ·T½{}×mßFąʼn}ȟÑx Ã~ÿÐón¹²ÿPËÙā¦ęì¯LƓöLŁóümÒţjÄÆüöº[ÔÈJã@ă |¸Æ[®þerÊ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§ĒÂCD§²ÆRÊQÐčìsÞÂrz]ĠиF×ç{CTÿgMÝÃSý½q¡bïãćĿěVOÍ~¡ëOI§Ë¡sn£÷Ña}ã_ĭFnÕYgÏsǷĊȍVfÅÏçBq¦ëÒŹKãhsljBjææO¸~®ĆŊàEØn|~S¾¸IiŒOjwħ¢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[MAnAFFNPNFFFD"],"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":[["@@DjRFPA`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@oFMDoGKBaKSDYOKJMLKhJ^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":["@@DpHhK@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ÚGBaxrp àä`hljª"],"encodeOffsets":[[35320,32354]]}},{"type":"Feature","properties":{"name":"West Bank"},"geometry":{"type":"Polygon","coordinates":["@@J`\\ztvXlNrE\\@rLL\\npZdfdjLrfPjpXATbXAXN\\G`WLHfA\\OJF`STbFZPRKrL^@^GZPVYPLNUP_IIXDTGZQNWWNMLsAggP[KJWs@uNUR]DWNWdoJSGmgSGDCLfbFN|@lO`cHURLRebR@nLFEh_¤AXPNO`JfGLYHFNcbE^LRZD\\NbbfrNdU\\UBHZFZRZ@@PTXCTQH\\nXRZd^^A^NjlfbhXZa`YjOnKXBR`AaDc`sGCKgPgnWZNtCXOURIZDTiUOLWIKFYESTWC[JWQUNUESTQSSTYMEFeHK[SB[SMVUAO]CLaW_KEZiYaGiMBBuLII_\\SEQZaKG@uKaQ@C[R_AU\\QDOQONYBeKUBURQGYPw}s»UMG¯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³¼±¡ytXĽ¤±B£TßK}ufÁxOb¸Yt©}§°³cìݤPĉ¾m²ÁJw¼ZÏ}Û®ÿÖü½HÛoV ÌirU}e¢ÉÃ@e¼±Zë|uIãx±w{YÛÃmX{Ég¹aQ³busg·¯ÃÕ±LimS·¿ÁYv¯©°Hz³¾sÔZu lęKkÇ@Qv£DeJėÍ©¡Ôō¸ċU´ßB×ûÎF|×^±®«bīÌg²¡\\¥ÖʅƒʅƆƁĥNŃÒ©`aNoĩtmhŅF½ ËJm´ËÐ_àݪHęúûdwz³Tmēøĝc¾P¹ºœîkr\\k¦µ¬W©jq²~G©ºvÈhyÍlÑ ]F»¬¹r[®ƼӞǔԨFÎOΪ̀ЊǀϤौƬՈƌЪHΖFݼґJ¿ŝns¥¯onªZUÁxÁ¬]tgájeca³Ks¹Ju¶HLwÑkÄÅ¥¹j·a`±SÁjy¢]S¡¯cÁ«FuiÍ¥k¥iqX}ëqYJ¿"],"encodeOffsets":[[-59385,-22620]]}},{"type":"Feature","properties":{"name":"Región Oriental"},"geometry":{"type":"Polygon","coordinates":["@@u°Z®ÀT¸jn²KÖ°Äh¸vt´aRbºhÊW|ÄnZÜ|x²wJä{vY컲@fÄ¡ÊfV~qËjUpGÜû¾ÕĀ~ÜYлxI±Â½nĊ£OëÞd¯´~¨sª·Za wPeÂ~vàL¤SA£²Wľs¢z»²O´«O¼hæ ªNXÈYzXʪVªc¨L}¼LmJ¶cx{¶TÊwl~èImdĪsÀR«ČºHÊkz®zòz¬@¨µTÖc|ÞSZ\\ĴiÐZæAÂēB\\ÙYpĊÝZģ«]¹``čҰfgy[÷ª½ÏCÕhG½²kRñ_Łvêf~èòdpyÄ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ã¹gvËiÃC©¯īïFB©ESsgB·ëÇ¥J«³ÄõU©§Jõɽ§_BÕa¿|áŎÃN{LuYy·u£d«eý¢o²ÝlċE÷dã¢čMÙeĵ¬āÐÙcH¹ºXşBğ]ëd¥]ġYÙ\\ï{R`ÂÏ \\´Ăh@¢°@gÄƤèa°t¤_ĆÄOWTªqÐ VjPĆªnc¨NAüp~ÐxjZ´¸d\\ª®Dtx¤ÐBMÌA|Brä 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×·@åęATĹMĉGBśɯGF|QxE~AÎJOÄFVQVJXQT\\®LTY`xr\\DTWHePGHwLOhLYcf\\hDx[r_OWPX`|L^f`A^ce¡VYGclMRe^TAH^dTA\\[ZRA\\hn_@uOSQkXW`MnHNKT^"],"encodeOffsets":[[52126,26348]]}},{"type":"Feature","properties":{"name":"Al Khawr"},"geometry":{"type":"Polygon","coordinates":["@@øĄFÔBCņzYLGrcYfRR[WkWAR}¨r^ZRC×JRiCUoaOUCgvSN[[uA]UGcv_FWxSHkdCOyMIOiKImT[M]ƻDc`¸LØ"],"encodeOffsets":[[52481,26318]]}},{"type":"Feature","properties":{"name":"Al Wakrah"},"geometry":{"type":"Polygon","coordinates":["@@äGĂŎ¶IVRtTfoBkQ_LHWgBoRQtARMeOBKjQCNuvDI__WaKMWZO§}eYQa_QLWImMQAwœDK˔"],"encodeOffsets":[[52574,25688]]}},{"type":"Feature","properties":{"name":"Ar Rayyan"},"geometry":{"type":"Polygon","coordinates":["@@FÓĤNsLÂę^BhJUōµHāãQC`@\\nØ^RŠūASĺĚB"],"encodeOffsets":[[52519,26099]]}},{"type":"Feature","properties":{"name":"Ash Shamal"},"geometry":{"type":"Polygon","coordinates":["@@DŅÓACt³@EŗK@·ƏIkHAzfTIVNbZPJdEpXdh@hPKL\\ZZZA\\VdMvdNv ~ZKh`ZFrazM² E¡nhWBZU"],"encodeOffsets":[[52648,26584]]}},{"type":"Feature","properties":{"name":"Doha"},"geometry":{"type":"MultiPolygon","coordinates":[["@@î|waxMMX@D]YECgr@ZQVRrOZ^l¥}SBQsSQg]AÁĚ"],["@@VRjSHeh"]],"encodeOffsets":[[[52682,25967]],[[52770,25984]]]}},{"type":"Feature","properties":{"name":"Jariyan Al Batnah"},"geometry":{"type":"Polygon","coordinates":["@@ɰHAŜĊHNŬB ş]Q×m@[_RDL˓ŔCqcIiWMw@YcSM]_QiZB`xjCjS`cES[aDW_ekO[Bm[I]zQvFpY`@PQ]kDQ}w@UµQ]MµOÕl}XǯČ}¦¤zVn\\NW^EbPhBlInUpmbGfqr@brQUfg\\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@]|qJkOR]vjEÒ±TsDEFBDCEID@XåuaLc~YA{GmR{õCo_VaZ³@sWO[oTwLµe»}£euEU`}QQ}]WY£~kAykyLÉm}t³Ca__WofZCajX@p¨Y]²iJHc^}LEbXtXMrmp|~DpdKZÊ¢ÂWôQ\\zpPG®VNCO^LôU"],"encodeOffsets":[[30371,-1775]]}},{"type":"Feature","properties":{"name":"East Province"},"geometry":{"type":"Polygon","coordinates":["@@Dp|öQHn|Bh`bMÊZnxOnlVTÎIx^^pM|WFJej\\df@E~iM\\TOlujc]FmO]§ÔČOxVdGtARdnVbl^ZIxjOJfbh]]g@kbwDu_btdïYb®W²µLËĄŅeAaVĕoĽ°ýZKpsY AqauAV@ mEimyR}ru]Qism^i·fEXnUhC|}SgdyaMsåkBonYIKu]K[·S}^]|udaAb"],"encodeOffsets":[[30679,-2383]]}},{"type":"Feature","properties":{"name":"Iburengerazuba"},"geometry":{"type":"Polygon","coordinates":["@@¤]rDiBI£NIp_VKóP]DUMHoO[yRóXÁ É¡YcLo}Co{nqNWWsFa~Kd]GjI^±Zo§W@KxZlSuZw@[haDe_foSYoPuYgPqqy|iV_S{jgDklRd]ì{vhH|sTG~j \\PäZpj¢ČTx@cÞuÚCRhöĺA|ZRX~|v¬bVRxöF"],"encodeOffsets":[[30158,-1542]]}},{"type":"Feature","properties":{"name":"Kigali City"},"geometry":{"type":"Polygon","coordinates":["@@fiIXEN{]o]JwSÍkUmwPmÉYaNg_}ZKdvbWæC@FJCDEACFStCvXtZ\\yvdLdX^K~f@°§zG"],"encodeOffsets":[[30974,-1890]]}},{"type":"Feature","properties":{"name":"Majyaruguru"},"geometry":{"type":"Polygon","coordinates":["@@ÄhTTjrÔBL\\btM\\cl^rjQjfLJÏXdmæd~KGjfb¨Ó^Pn^EdviPk[SNjF}e@[cyH¯¨e@}]LWKcuc[zsYWDuѲFuiQ^PIl{r@^QM}p}Co`JMJ¤AjqC£^®"],"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\\UfOHURWBQLCDadUVWdMVKHSYSqSKXNPCjOT]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[DoDWGaFaCGFcQOOyKOGWCaZIRKFQPKV"],"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":["@@LUROLEJQYAYIMUIUigJo\\_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° ÐgwŘl}ÊEL¦t¨ňY~Ü ®h_CwĮčÀ_tqHq¨N©gªyÔGìXô¨àDÆ`Įh´x°łE²cdÑ~mŘ@Ǽ{~N¡q¸L¸üÒøÔ\\~xÀLþÓÈuJì±No³kÕ·Eaq»KµÕĀap}SyWćXñUWħ]AÃ}āk¥ZÁì³GÏćOnwÀSfòa¾£j©¢¥ĠmÙÁk£ÅoG£Á[½pë[gsÙ§³gĝ{ÍSÞ¯XmñGm»ĻWzăS}wœ]ïa Stß»£Eyuġxi `TĤ®qЮR\\[´ª¨ÏQāVs~QnçEņÓA£M¼@®·SmcÜëI¯|}_ñN¢¹ woÁH¯ÃGLUÏk¥·Ka}D{¦¥£]£ {\\¯]Qàıã¥c¨½w¬o§nÛ`UùXjiÛjcÌÑURÍR½@z¤ôÂOld¾w¾M¨ĄY ¦Ñċĸe¶ÚYàŜG®^c®õZkÏx[vZðÛMij°{°qðÊKvÖÀ¬AlK¶¦¶_T"],"encodeOffsets":[[19817,45967]]}},{"type":"Feature","properties":{"name":"Vojvodina"},"geometry":{"type":"Polygon","coordinates":["@@³wĭg Å_ßCó§ëWÓH©z hMª§rGsr¿`ĭĎDx`gÛZ}Ňs§K¥F~ÉkŗxÏh¯ïNsf¢¯tčk¹HÓjëaoĉry_³lē·K}¨żHÑGxFÎ{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ÍkJõ]@"],"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@ÄOTHWĺpf¾f dV¾Rz\\zUtZ®wxTGdu\\A{~Z\\KÂZb\\_hNt´fzaQbÍE]d£EwRhtGmmu£UeDmeomOsËK¡Pe\\uhJÆgl{x\\Zv \\@fkLKaN_]agrÅ·Ío`W_APWoaWy©{OBɟKgcU]yKcq[eyDakSq{m_TýÙi¡ÇPz}L«[´WnvhJvOxuzE¦×ã[{[QVfÒ¡¢ªjDNgPL|^lEl¢ YU\\D lrTΨhU¢AÌe@~rcxY¤UZ©b@jevNeTq"],"encodeOffsets":[[-11880,8701]]}},{"type":"Feature","properties":{"name":"Northern Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@ZnzqyUYZ"],["@@ybe³ Ms`ga[ÁY[L}Y|[BcvHwSxsYVyy[½QcUe½oeXĹSGP@ÃgA}ob½[qZ@waQD OLwB]¡ QMw^iA£luG¡m_ rWElwËPyj»mbcCW Em_V]¹luyPkduWmF[gyX{§kk½igqmAlu¸Et©BSoL_~«tG^ܦPhtt¦XxtÕ¤KW{DuoUFwOx{SzNÀMlE²i^TnH©LUXDUvxÔjdXºOT|Fp¬xVi VTf®yxÔGl\\^tHSJh\\ºrOzxR~Cb´L^LtèEptNzvøXLVİ|Jq¤w¤QǴÊXºͨ@ʖ@IegNuPÉtYFbtÃFq QN«|Uj½aqiV«qUsêUpkHUX[Q¯YL]Ë~EN W mOg"]],"encodeOffsets":[[[-13556,9114]],[[-10835,9249]]]}},{"type":"Feature","properties":{"name":"Southern Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@¨TObhvG¢^ÞIz^ÄDMdiQiTgUo\\yQ±JuqIÌđħſ"],["@@cY[g"],["@@pd~RnBhrjl¾¨l|zW\\hnEvXlczOvºk®^`UnFXdDa¼nziÌOxkXFqn`¢®vH¤kjBx]NR¢A^xKPCrfSMfu@iªaVYZ£wd q@}fBËV¡gͧqSk CV[Z¡Fk]kK{OMhiC©¢¡eÑU\\R\\|ØäF¥vyPwIuugXm\\³¬~KyÈOF]ycWÍ aLëąhuCJSaLuiewcK^uaGĝ¸o~~Ûí÷Ǚäȱþē~ P`r°LÎ} VO{~|¨jj V lBS®Ñ¶J^xXBÑ« F»jyOtaxiJ|yXg~Ȱ_ÌF´]R}¾£¦D~"]],"encodeOffsets":[[[-13269,7755]],[[-12856,7840]],[[-13300,8435]]]}},{"type":"Feature","properties":{"name":"Western Area"},"geometry":{"type":"Polygon","coordinates":["@@ TªAFsv·k}QocÕDmIwJaÔUBo¬uP}c°D^ºW¯¨aXyK"],"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Ě@ƨTHÒT¨@zHR¨h^VHäBRDj~z~°ÆJ^\\¸h|Þ¨ÚǠČİd@XNĎrØhFhZæ^Ţv ENH¢OƸCƐ]à@¬Q¬LƞMHEjnѴҢҔҺ¢̞̲όϠȀȐξ¿@ݿBiBرɈoPԋǘ̟İӝnjʷĔ¹d©dĵq`»tOXeRadZcx³cZefo`jUZo^Y^[T{T]v|GVw`aduVQXUHF]x_JgbeXeOKNkZQR|O|WRQ~QTC^QLWÆAjW²ě²WYmD[N_Z§łUdwoTGRy{zszww¤wØYª{¬K`S]^YNWBTthzxØĎ^`jjLZɖΐ|¦hBpIZJZRMZLJg\\QtmZJhEX[repDGiZAYHVXcj]^C`bwftlpÜ÷ÎÕ½}¢owp[`aL[srMdY¨~xmratY_S\\@Tä[tMCNlXT~H~PI~DMI¼J|ZhKT^VvTdVtvjJFtZBdll\\l|brfNhG`DGJ`NLX\\JdB\\PR\\dDnTJbTRP`THpDnThHrjr`|VXRH`PNLd]pUJMI[\\ObFOX@RYscESrC~BðdE`Sti ¥\\O®S@pFØÀ\\rAVt\\VR~\\JL h\\VxXPT`PRTrRhdP\\|TL^bAdHLNjJtvAjXjJdR^hXRTLj¬b~^f^hjJ^T¢``PpTG RBbKxk®NCeKV~\\zHêKfFhTSfAfHA`F^NlChJGdL|prTHdb|JtNhZxHVRdFEzDhPr`|H°EXrL]º]jMÌy[OBzJhRxJxRRrDVJLFLbLp`VVtGÂ@|HrVFXrNHT`BbPltZpZb`J¦FLd^dBpSSÔD|N~\\pzX¬Y¸FfDÒ`JrHzNXZhB`LhXbj\\D²vfVxRj~z|`TLA^RTxdptlHTZPBMdFfXhRvLz\\lFwlQfA[zGjOZQ²nOPHbG²DoxGnURbUGoM]e{A}UmPgB][s_[GUwsAIik_kÃJyCcUgYCGu@qNXs\\aXGK^DHe³i»QAqD©FiHÝD]BEHy^_LRsViYWEe[BcNyQcaeME EYIJLMĂd`AªD|@BRWTw|AbPXEfbAVWiTBgzIhVVBKNg`[SuMKMgcQC[iBSN«GaHKNJvQR{L©G¿QÅ]Yg³}c]OUEDP@eOSsAiHNiAgHo]u@eKoSy@]eqD[Ka@eIwSqJ]ODISqF[UmUCFW@s\\z_Cg_ w¡ak±{_YW[goqWaU@]NmIO_gqkYg{_Qks]WCUcsMIQ}G]My@cQe[S[_]sQNiE]co¥Y]U}]UmGge]a GSgK}aci]wwi¥SWeq[QycgcuK]KwGDcNKF_\\CGWFcQSFgekcuMGWiI wëėgáįÇíS] Åcsy µ»]es¡IWcssgUOWm³uGq[uEWi¡]M}CuIqL@_]¯Wi©ĩ¹įw ¥¿¿¡ÑqCQs¯G_]ia_wsu{Éó·s]agiOo_ «Ám¿Ma±k{s}ïí«·Ucgk{skmYc{w½gu§½k{emÁÅÁ½ su§KU¥©OWűŷu}¥« ¥uu§qqgmogyaoiOkkYKwQUq[scsisyCUU[OGK]gSgkOg_g¹iwgas[icµw_sS{Y@SS¯¹}[± u[Û§M@£{oeyY]QYCUWĉIOWSQkKSQQFaWcmyosWWSusU·kySCck cmgqU}kGS_U]AW]}cUMSwcWW»¡³§_kUI͹cuUE kkC]e syu_{UAaS}]mù¿ oa_GUum¡QUÓ¿ÉÅāăćę»Éñă©·ēġ±¿¹Áăāegy ka ScCeacGU[FaSUOIYXS]eWZWcYO_a[iisME©o ¥ÅEeU@]aYsIWoeEaScBYJaGNSXLdW[kIg}yK[ce@_MYy_YceA[a{SUOiSWaOSqcwhEUS}AQNUHEWqw]WaWQqBGakI_QOeuaweeE[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ÂoWC@èrb¹waoƂ²ÞWQgPªDW²KÉ¿Iv`ðZtiĕ¯ÃDSYÎsHÄx¬HhYiA¡¼\\]`pu~dÒMHyªufwoR]ÎJ^uik{¤NªuT BJkw]boÌX]Üzéf]X§z}t ãIm]ïSÔiqįa^Nj÷ R}r_²{bEhxUãnurJăSRFj£CħxJvHFrhkÿxj\\Cgb³DtgmWĩHIfîT[p«VFtŐhybęOËXùA\\wÙcÉZq¾nYV©QQdâ~qùmEybcÃ\\@"]],"encodeOffsets":[[[-37919,-55805]],[[-38880,-55344]]]}},{"type":"Feature","properties":{"name":"South Sandwich Islands"},"geometry":{"type":"MultiPolygon","coordinates":[["@@b}E¡hBbÒE"],["@@©yzäb"],["@@`]èmBguÛS×AZþ"],["@@ºTêeMyRÅfGífdEjvA"],["@@JtrQbs¢c[åIj"],["@@¡NLx\\Ø[Is·Q"],["@@I^CypT^"],["@@ zZt]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ËÁndHê{úßY¹Ã¶ÍÅaaìtDÈĕbÖÍfNÒ¿ªÃSEÄbľ"],"encodeOffsets":[[30530,4672]]}},{"type":"Feature","properties":{"name":"Eastern Equatoria"},"geometry":{"type":"Polygon","coordinates":["@@Ħ[ྀùǪÒĈvŸ¾ĔhLj®Oç\\¯ľǟG¿ưķFgíú|þ¸ÂUº{þJĐ« ÝëA˛ŌţIYȵ@@¶¥^ÕċAóż´ŎOfƅ[ČZěÃţÝʟĥǫ·w_ñĥ˩ˣË¡ЉГ˭pŷĪŁÝƱ¡ʯmǿũjoĕz®ëgAÜăŢ¹WĜ¦Ʈ¾ÀĂ¼ºŐŰðݦüqĨÁúĊ§Ǿ@ļH²}Ħ\\°ÆÐ¼EĆ"],"encodeOffsets":[[33003,6041]]}},{"type":"Feature","properties":{"name":"Jonglei"},"geometry":{"type":"Polygon","coordinates":["@@ĀƽNJ³žYêôįÚıúƗ¼µĊķƜǐĺĂĤªFuUñĒNȿtïêùÐkìS{h§EĭéGāl³ĀÙâkL¹¨»njcÔÏÊŊ[¾ LĄ¾ÍäyĖÿ¿FëÆđîJùÜ©¾ôNÐÉZ[»ºw^ä©\\Ì¿~bÖMĴĿX{R§ēpQDZ@LJēgŷ½ćuǩÑཿúĥ\\ơRíXȿ^ÙSÕŬ¯ÚƎ¦¥ĢþėƒrŕŎõ¦i~įØóä×ƈwþ¿ÊSò·øKÂĔėƖĦ©¢BƖWîf¦_ÊÁĒ æËäFÜĒE¢ªØäÄÐNmÞĸúêÞ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¥ɪŕŶǙŔęĎƏÈsBp{Iŧsģ¡WwȗȖBϽ@Υ©¯uq¥ZÏeqÑÉS ßh[¸±t·Dřiuuïąwd©}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á·¶Ŏ·vQpóVā_³|YŗEđfË knĈĖIJtïp[ǙU«hąmŗ~Ïu{ÄX°Dþ£ Û~\\Œn¦¶LĊĄSÐvø \\KĈÎľ̜G G\\¼ôVxĸtºa|Î` ZÊe¼ä¦tļö\\ªÄÆ[~IxH¸¦îLxÊMČjh¬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×fiN ¥buìbWÂÃt·âõG« Ln¿H¦¾ůŤE¨¬G²¤tè¿ÊCÈmѲ¹P¹¸ăïôÕlčOÿôasz® cT̽GeÅMĔ glÀ"],"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":["@@nDxMTxLWzoÒr°o~QÖyÈeRBÆNl^JrEn¨j¸ylwa]ÿSquEK½`¿üXZtMÈ\\L»aKµFǕś {@fKÿuqU£gYB{so§x±y¯Ç÷MŁb\\Ifte¢·jV¾WVWĐLvhjVl¦¯¢Gn"],"encodeOffsets":[[82353,7532]]}},{"type":"Feature","properties":{"name":"Eastern"},"geometry":{"type":"Polygon","coordinates":["@@nĀZhlVkonninx{lAѰ³~·fiGXusUili´MZhQ®JPb}šnϾƿf}¦PjoKgThwxEn² Þʼnj¯xō^ixõH«MIʼnj×S«o¿B[m[»Nom}CkyJs_¥kkÃkHovmBj˪R¢ijSXxmbß~c¦l¢lbmÐV`e´F|eé»ZyIHËyccTU¢{pkèbzHÜ[l·c¯Ku A~bK¼¼ELtàwbDÀ[Tجx¨S@h ÔPǰul¥ÏLDXcj G{`NKM]xìtdE£ÈEbh¬ÂJz¤qÛyJ{_"],"encodeOffsets":[[82692,9119]]}},{"type":"Feature","properties":{"name":"North Central"},"geometry":{"type":"Polygon","coordinates":["@@dAJĤtbGĸ~D§_b«¤]^xzTC|´ Â`N¨wTFjÔD¢xL|`zIÜry£IÁg«Fa¤ÇFscë^wNLM|_HdiWCK¦ÐvkOǯÓ@g§T«wSŗ\\C¿aßxsK»FÇ[NYsûW_ÀL¾vFTr^Ābkx·z§im qFIk]MÅ_PG®[xIdMâ¥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"],["@@bWaÅ~GlXk"],["@@UgkÿYmK¡wÓCEiSx§_MÁ³ D{yS]w£^a¬`C¨ķ}HsaIģcBħBxjlfĤö^¶AÂÜ¢v¶HrdªFUnZlzuJS¸ü ¦mćæ¼m¬¢SwIÎI´zPj¯´īеtRû~µM±ªcWi¤in¦èhÄQdÌRMËÖăǀŷĸûØÕÆ¿`jèŗQM©¾so¨"],["@@pIKTPlzZ"],["@@gQfa_nw¸DlyÚ£"],["@@VdKmg"]],"encodeOffsets":[[[81809,9171]],[[81629,9759]],[[82870,9208]],[[81756,9843]],[[81902,9854]],[[81772,9980]]]}},{"type":"Feature","properties":{"name":"North Western Province"},"geometry":{"type":"Polygon","coordinates":["@@ĨTw«scnN»f£T]Н\\a¨E¬¯¦aNácJ\\wH`OAfQzÇRÕp}q¯pÑXyKSw NwmC}UMÏi뻡o»·uwaéGmł}ŞGÊXNDÎ]þƆļ@ø[ÂtX piYgoVck½pōÒWT¢ÄcOÄxÔREÔlDº\\hXHf"],"encodeOffsets":[[81838,8773]]}},{"type":"Feature","properties":{"name":"Sabaragamuwa Province"},"geometry":{"type":"Polygon","coordinates":["@@ì¼ÐjN V~Hm°¡¥UkiugKXď XUU½¸if¡esJ[łaøNÈFQ@u]`xW²ZQwwY»¹^I¯xOn©±ÏLwtÇE÷qEY¢¥OP¨ïQAYûjeGïŘfT wREvWvmöp^oxTpnL¬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¦ÄBToP³Ontþr¶v QRòrRNdnApulG]o{[Ie·³ii[¥£ikuçcaa¡S¡ ʼniű±O}wKÇIà YdĉAivQč½Z}LǺq|WsrWeJp¥Ů"],"encodeOffsets":[[81908,6595]]}},{"type":"Feature","properties":{"name":"Uva"},"geometry":{"type":"Polygon","coordinates":["@@}BvL°¸d\\kGÛaylço|V¡dSzdGÌJYzê¼fE{f³U_nÏkak¡d¥à}naWwTjiQ¡i˩McQqQñRµuýqmsP´OSpÃAÁ¥Xq©mwmªwPJ°]ºZ¼xxR±YwX_^@vREz°w²p¨|tAhZV¤vrLĀe|@ŜEǖL¶"],"encodeOffsets":[[82922,7808]]}},{"type":"Feature","properties":{"name":"Western Province"},"geometry":{"type":"Polygon","coordinates":["@@êH®bvx¸¼p¢]ÃwCRŦN¥×fßOK«omSpwo]nõXuFuxQeSðŗYDáX±OS«¨kH{sÉbQ^§j§~qFKÒŊâĘIcÄzGmĔ~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ŵƁǧ`ɕƩďŋÃŹĿĵNjNĺƵ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ŹÚÝĘćČé{ƅFt»Ű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":["@@ôƾrg^ť³êķĉĕĉő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ï«mDø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ĠhVpDJh]xAÖbJ`A¼_¼JfÊfjGÆ ÚóºRst^¹EÕH»P{E˩©{O«Uq̓Ni{IvµRÕEQgF§uR[qĿq£CÃxYYJÁ_[\\qQJwWks½EqæLcÒPfna¢tLfA^lNC²eREkxRMÐad¹hOd©fgiDążJ¾CºtIrn\\Df"],"encodeOffsets":[[533,9085]]}},{"type":"Feature","properties":{"name":"Kara Region"},"geometry":{"type":"Polygon","coordinates":["@@\\@Lc`P_hjYRjSpdzAUtjC^¨ÄV\\^L^oÌbPopf®OjZfĈͰ{ǞĿRƛRcSLƟ{§ÁnENčbµfmÅiHÉee»I»`B_Ia BÕ^wIgoCUğg£d¡@o}sgV_cY S}«KOHk`èHvOjnwªdLUvlÊYd·nTjajZOPm¡¯mNiz@lOpurCG¢tItTêDVZuysr[\\lbIpynJVfIkR@¤ÚIP¨xPyªD¦M"],"encodeOffsets":[[421,10262]]}},{"type":"Feature","properties":{"name":"Maritime Region"},"geometry":{"type":"Polygon","coordinates":["@@¤R `rlÔSÐ@Ȋ[NY}]}¼¼´z¨W@~Z²jV|eQL£Qi|½SHm]]zuIyNmdouSaªVyhcU_fDZ_@égC£mămMķÕom]Ùm@´ĭ@Ady¢_F}´IġC¨kZXMrVKaP]bd"],"encodeOffsets":[[747,6704]]}},{"type":"Feature","properties":{"name":"Plateaux Region"},"geometry":{"type":"Polygon","coordinates":["@@¾FltxXIRr\\[Â`ZIZÄw¤DŀrrQ\\vE¨RhFQÖu¶J j|̔MlaH˝@ƹPÏM[Fţ\\ñW÷BǍEɅéDdÙiU±}Y@§X³y»»~^~MZȉ\\@TÏkÓ_q£QfbgwKyt_Kk^M\\Jªy^N]jTnSdNH jRTdIznh V\\nM^a\\jd¤Xì\\v]ìVg_òHäh^\\E¢NN]h\\]V¾M"],"encodeOffsets":[[636,8096]]}},{"type":"Feature","properties":{"name":"Savanes Region"},"geometry":{"type":"Polygon","coordinates":["@@eiYPoeOpËa]pK[]UÃ]§DiVsyBociTQiZg`_OdK®[@NkpVGhXxY°TvB|´M[zV`a~i[ùdApaZYÂs`³hgčg¶L䤢CÀfD¤bOè{Cag@hSİo~CxYǔɞUobYWƌÈǖE¶DAco·ba_Q½ÍÑSN×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\\AbTdT`fM^PZZDxQhSpEfF¦xR^DXZ`WnPPO|ohBhEzLlLXTGH@`TZFbOdQYtSFC`KRiVad§PIP[QBQ]OG^iA]ZLPOPFNnHRZ\\LPT|BRE^NhEVL¦@VVVAbHVURJETb\\LMZP^HhnZMSjBLGrAºJr\\X@^VzC¦Z\\GLXFNK®GRR^MXBGWJM[UWEQiCe]QaeM_SQEQWCMHUIUqFkX³DTWCIMWCE_Lb·bXen@@S[B[{CGLE_QHWAoQ_OSO¯oyHiMuL[LWEcLkEYIYAMFOFISDsIeCSLYESJ{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ÍIQA[h"],["@@dhPSu°M`]I¥WEM^klYFAVcAlWbQH"]],"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{loDaeRki^WS{AgLIKqGKLw@OlPPajGj"],"encodeOffsets":[[-73578,22376]]}},{"type":"Feature","properties":{"name":"North Caicos"},"geometry":{"type":"MultiPolygon","coordinates":[["@@r^n|NakWea[B"],["@@XxfRDKSAL`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]MCjdEfRDX_\\KthetItAj\\`HbtPWbKi[geKiP{U[ZUOGciJs\\USN"]],"encodeOffsets":[[[-74221,22142]],[[-74093,22279]]]}},{"type":"Feature","properties":{"name":"Salt Cay"},"geometry":{"type":"Polygon","coordinates":["@@P~FE@"],"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":["@@HRVpVh\\dppl`nZ`NxPLlBtCKfKpWmvs`kR_VmT F{@mK OqOcWikwqmeYaqOcGEF{N`kZ_Xcds[xI\\QCz"],"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":["@@XBlÊH¼S]h}¸uvEv[szYZcjKnHdUNe\\exC^Jîh`ó@Z]Ka^onEPcZDjLgb}HPci¯B MUHPMN}Ai\\QNq V`YpùIKVY·V_IsncZ Ƴ·ZoI]RYB`UCi\\ ruIaRqĂāB˿Cٯէ@Ľ@ف@ƗBʅCɷBMdN»¤KznbIdydNÀ[faV_pibdD\\bbxÔ@ÚijO|kªi[¾LdG`jªVÄE_r}FuSFvxnDMO\\ZvSz}nGl^pI\\|bj|fPnf^Rj]h]H`prCt^tLXXvPEnxnV¬Þ@h¼wrO\\phdG´pMZZzH|ejEhN¶`jAnW^wXe`axqlKyPQK{\\W`kXe@QZ~z BN`t^Af\\Lrf~FZEiL~YAjU^B~Jzr\\|vbXdfHdMdHfdXCV`p@dvZ@MTZ\\"],"encodeOffsets":[[32866,1691]]}},{"type":"Feature","properties":{"name":"Eastern Region"},"geometry":{"type":"Polygon","coordinates":["@@ØLâGBäOtGch¨|CbLrvMnFp@`h|CZZEzNRpAL^dDjDfXVlJFzPjDr~nXArmTfY\\ZV\\~Z^jldbBbTXZFZzUn@`hvC¤OxnGPchKtHhpCFV|n~xƨğʪƿLD¹L¯Eů@ƋN@Bá~@X[xN|GhdfKrF`UhBV^hFt²@~e MRym~DHsRk\\MK}xs~mNu·DUK]SOAõ]I_ugsYSG©¡RqQsMFcSa{YWGsaWcFomGyyYMLwcM {cKWF[gS@og_GUqAeUaHuFPQRQgcmGe}{UcéīAU|ċŇAk]ćDZMÝBɩHË@ĽΏ@DٰÀāĂQrJbqv[jD_VAQZ^JYp¸Å´YmdJtU`Z¸UJLoú_ZU Mr[RBjM~ONGNVAj°OdGa~KhiYCOdmF]pLbY^@_ô"],"encodeOffsets":[[33608,1514]]}},{"type":"Feature","properties":{"name":"Western Region"},"geometry":{"type":"Polygon","coordinates":["@@Y[NS@uYco@_DUcWGeNcceGWcua[{yqI}]AiVB}ZKjYF E}eKqe[Bs]M_A}yRYf@lWX_|[RLzOLrkbwf_xWX]Bm_iµgMFfiG{YyNYoH³gc[oqP»x@g«ÝmUwFmOWuWK]sDsoqG_^^gQie]Om{eai{J[]oHk~mTyYuP[N CwmEuvT~E`qFUÃi©H_Kc\\½jl©P{ji@ÙwÓaa[Ccja`obU\\eM¿zcJcmaLy¼£MNcȝ@ȥ@qZWBmeoUe@kaguK¡PsGeS}DYV£^eaeDgMPSQ@cUcJwYS]I{akmUQc mJeGHsUcPwsK_YIgiVoCUccSHiLc}åcnWIÐeKiiRq@kkN[dNs[aKBXÊ]XzBxUJkxZ|O`XôMT¢K|J^UlPL¤@MVG\\tWF¤MlvìX`Wt\\vUTDpdDATRCxJhtȖlŢEHhWG°`RLzpBZjPtMRT¤ǺøĦd`GhJj[fLneb¨CtPtYR`T`\\fBV\\rA^ZzYznP^HffTI°FpbOdZb^FZjbNnkt@Bhj|[tT@lZlIFlt|@ѸӾȔɐB|ĀAdSBhQnAjfTT^nXn@jWpBpaf`NRP^hx^LtrpVbSHE^k\\DT[^C`[jOTwxN°lGhkGpr~ATX~]\\ohkHkEq^mIarOCyShSP]_[EÕco@Iwk_HUWI]_£{MLiK"],"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ÂPeGkogQNeOyDs[§jgDwZW\\PnUfRKnJplBRZX¾Bª\\L"],["@@YJap`hzBVYPw[SgB"],["@@PRvxFLOOmAsYogBQX"],["@@~oRc`WPccudUCYlkkR]f``EUwfGµrEd[NiepNKmnoZDT_x_^Cd[@_XsFi[QR]llZW^ memGGcge@mg@spAR©TBeb[oc_^SK[eOM\\aGMgX¯Dark^AnnbEA[HSH®\\ZWdIrP]Jgh_rQ|[Wg}k[DgbTW`Afi`L\\^TSºJrXR^OmQKY`"]],"encodeOffsets":[[[172148,-16536]],[[172377,-16930]],[[172249,-16894]],[[171360,-16345]]]}},{"type":"Feature","properties":{"name":"Penama"},"geometry":{"type":"MultiPolygon","coordinates":[["@@èTCVt[wu{OÅà eaRD{OH}jAzȲnJzxpb^@"],["@@Yc@tSv@rUvD[|O|LRU`CQ^@aVQRwB fÃBgfSEeT]DiQeLPwQaRUWDKWj@hQNQÄ"],["@@YiHeywLOOqvRQZHn]Q¦HxMnmfFfYXH\\StY`R\\Un\\^FX¨FÞPNlKSuBiXUfANAY]fDcZKMaZiD{n¯AoT{RENEwXK"]],"encodeOffsets":[[[171861,-15683]],[[172144,-15542]],[[172321,-16304]]]}},{"type":"Feature","properties":{"name":"Sanma"},"geometry":{"type":"MultiPolygon","coordinates":[["@@r`V`"],["@@b²@xOCTKCwasdoWu}Q}ZvoRmpC`Lp"],["@@xI]y½CyVVft|rbjiGg"],["@@|FcsqaZ"],["@@NfpjTvCMZZUtNrhf[ZeFedEgJgBfiPsTK`fnUEcj«@[ea^uFua_E`i@[\\yd[Ka^gZBDi]M{PFsWW £Lgh[MeH[KeN§Om_LisDwQAo][g@fE^Rn@nktEXgTsU}G`cdAdjIVCtàGk¸@rMuIjg¬CbWbPnH@N|\\b@jjsl¡vk\\jy[TQBsrãCgXIlyE\\ÃTQQpHpEtR"]],"encodeOffsets":[[[171143,-15310]],[[171102,-16018]],[[171215,-15948]],[[171270,-15953]],[[170955,-15525]]]}},{"type":"Feature","properties":{"name":"Shefa Province"},"geometry":{"type":"MultiPolygon","coordinates":[["@@XeaKaTl^"],["@@XjJnXZxV\\dHtLNnl^C\\s¦\\XRIXSPq{NXGtoJeEDK¡HUSWSeZmcGiLJzcQidiFW^mW@njAF`{ bO_yHRvGf"],["@@T]WWSCGZT\\hDr``K"],["@@]@LrjGWi"],["@@cRoZd\\@La¥oC"],["@@G}cE]R@^~\\vzpK\\k"],["@@HhrUyQ"],["@@RXiC]w}aMkBELlfJ"],["@@~WbbEF[bgUzf\\GnmGyLe]IąOX@¥{oSeXNI`cVIinWrRJLxtAvK`JjqVkBg^YEefsX"]],"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ÛTyD|xj¼FTE"],["@@ZTxHYaDUh"],["@@_hZ~Etj¶\\U_C{R£rfI@riPav@Z{aGgHQqgkHuRjmLOp["],["@@\\EGq_TLd"],["@@NWCmmW}P}lSAp}EZaXoJWbN}dE~tpO|ivPP\\Mvxb`ÒRYzEfjW¢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"],["@@\\CdÀg`iQS^oi]w_¥JSL«Gg\\hWpLVMf\\~\\"],["@@vJvAfJJwYKQO"],["@@Vs[c}KkXQdTn`XtCZY"],["@@TYGYqCO\\hdNG"],["@@_I[hHi^¤B¬RRr[fgBWhXOCaW]JyVU\\X^[[MQÇU^c]"],["@@gF^fR^KLc[QA"],["@@\\KBUuQodIjfd"],["@@|]J[eSEh_FF`"],["@@@{LYO fGdj]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 |