@versatiles/svelte 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BBoxMap → components/BBoxMap}/BBoxMap.d.ts +2 -2
- package/dist/{BBoxMap → components/BBoxMap}/BBoxMap.js +4 -3
- package/dist/{BBoxMap → components/BBoxMap}/BBoxMap.svelte +18 -9
- package/dist/components/BBoxMap/data/countries.jsonl +258 -0
- package/dist/components/BBoxMap/data/eu.jsonl +1876 -0
- package/dist/components/BBoxMap/data/us.jsonl +52 -0
- package/dist/components/BBoxMap/data/world.jsonl +7 -0
- package/dist/components/BBoxMap/helpers/geojson2bboxes.d.ts +2 -0
- package/dist/components/BBoxMap/helpers/geojson2bboxes.js +183 -0
- package/dist/components/BBoxMap/helpers/merge_bboxes.d.ts +2 -0
- package/dist/components/BBoxMap/helpers/merge_bboxes.js +84 -0
- package/dist/components/BBoxMap/helpers/population.raw.br +0 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -2
- package/package.json +7 -7
- package/dist/{AutoComplete → components}/AutoComplete.svelte +0 -0
- package/dist/{AutoComplete → components}/AutoComplete.svelte.d.ts +0 -0
- package/dist/{BBoxMap → components/BBoxMap}/BBoxMap.svelte.d.ts +1 -1
- /package/dist/{BBoxMap → components/BBoxMap}/README.md +0 -0
- /package/dist/{BBoxMap → components/BBoxMap}/bboxes.json +0 -0
@@ -9,7 +9,7 @@ export declare function dragBBox(bbox: BBox, drag: BBoxDrag, lngLat: LngLat): {
|
|
9
9
|
};
|
10
10
|
export declare function getCursor(drag: BBoxDrag): string | false;
|
11
11
|
export declare function getBBoxGeometry(bbox: BBox): GeoJSON;
|
12
|
-
export declare function
|
12
|
+
export declare function loadBBoxes(): Promise<{
|
13
13
|
key: string;
|
14
14
|
value: BBox;
|
15
|
-
}[]
|
15
|
+
}[]>;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import bboxes from './bboxes.json';
|
2
1
|
export function getBBoxDrag(point, bboxPixel) {
|
3
2
|
const maxDistance = 5;
|
4
3
|
const { x, y } = point;
|
@@ -198,12 +197,14 @@ export function getBBoxGeometry(bbox) {
|
|
198
197
|
];
|
199
198
|
}
|
200
199
|
}
|
201
|
-
export function
|
202
|
-
|
200
|
+
export async function loadBBoxes() {
|
201
|
+
const data = await import('./bboxes.json');
|
202
|
+
const bboxes = data.default.map((e) => {
|
203
203
|
const key = e[0];
|
204
204
|
const value = e.slice(1, 5);
|
205
205
|
value[2] = Math.round((value[2] + value[0]) * 1e5) / 1e5;
|
206
206
|
value[3] = Math.round((value[3] + value[1]) * 1e5) / 1e5;
|
207
207
|
return { key, value };
|
208
208
|
});
|
209
|
+
return bboxes;
|
209
210
|
}
|
@@ -1,21 +1,30 @@
|
|
1
1
|
<!-- BBoxMap.svelte -->
|
2
2
|
<script>import { onMount } from "svelte";
|
3
|
-
import maplibregl, {} from "maplibre-gl";
|
4
3
|
import "maplibre-gl/dist/maplibre-gl.css";
|
5
|
-
import { dragBBox, getBBoxDrag,
|
6
|
-
import AutoComplete from "../AutoComplete
|
7
|
-
import { getMapStyle, isDarkMode } from "
|
8
|
-
import { getCountry } from "
|
9
|
-
|
4
|
+
import { dragBBox, getBBoxDrag, loadBBoxes, getBBoxGeometry, getCursor } from "./BBoxMap.js";
|
5
|
+
import AutoComplete from "../AutoComplete.svelte";
|
6
|
+
import { getMapStyle, isDarkMode } from "../../utils/style.js";
|
7
|
+
import { getCountry } from "../../utils/location.js";
|
8
|
+
let bboxes = void 0;
|
10
9
|
let container;
|
11
10
|
const worldBBox = [-180, -85, 180, 85];
|
12
11
|
const startTime = Date.now();
|
13
12
|
export let selectedBBox = worldBBox;
|
14
13
|
let map;
|
15
14
|
let initialCountry = getCountry();
|
16
|
-
onMount(() =>
|
15
|
+
onMount(() => init());
|
16
|
+
async function init() {
|
17
|
+
let MaplibreMap = void 0;
|
18
|
+
await Promise.all([
|
19
|
+
(async () => bboxes = await loadBBoxes())(),
|
20
|
+
(async () => MaplibreMap = (await import("maplibre-gl")).Map)()
|
21
|
+
]);
|
22
|
+
if (MaplibreMap == null) throw Error();
|
23
|
+
initMap(MaplibreMap);
|
24
|
+
}
|
25
|
+
function initMap(MaplibreMap) {
|
17
26
|
const darkMode = isDarkMode(container);
|
18
|
-
map = new
|
27
|
+
map = new MaplibreMap({
|
19
28
|
container,
|
20
29
|
style: getMapStyle(darkMode),
|
21
30
|
bounds: selectedBBox,
|
@@ -81,7 +90,7 @@ onMount(() => {
|
|
81
90
|
});
|
82
91
|
map.on("mouseup", () => dragging = false);
|
83
92
|
return () => map.remove();
|
84
|
-
}
|
93
|
+
}
|
85
94
|
function redrawBBox() {
|
86
95
|
const bboxSource = map.getSource("bbox");
|
87
96
|
bboxSource.setData(getBBoxGeometry(selectedBBox));
|
@@ -0,0 +1,258 @@
|
|
1
|
+
{"label":"Afghanistan","population":30344083.067794695,"bbox":[60.48677779100012,29.386605326000037,74.89230676300008,38.47367340200013]}
|
2
|
+
{"label":"Akrotiri","population":16346.163182213992,"bbox":[32.760102265000114,34.56854889500005,33.030284050000034,34.70094829400007]}
|
3
|
+
{"label":"Åland","population":19777.84025463853,"bbox":[19.513194207000083,59.90448639500005,21.09669030000009,60.48078034100007]}
|
4
|
+
{"label":"Albania","population":2747628.6609138255,"bbox":[19.272032511000106,39.637013245000034,21.036679321000065,42.654813538000084]}
|
5
|
+
{"label":"Algeria","population":43225689.789521545,"bbox":[-8.68238521299989,18.975561218000067,11.96886071700007,37.09393952000005]}
|
6
|
+
{"label":"American Samoa","population":38212.8565092452,"bbox":[-171.0865372389999,-14.53289153399993,-168.16047115799992,-11.051364841999941]}
|
7
|
+
{"label":"Andorra","population":102737.31347670846,"bbox":[1.406456339000101,42.42867747000004,1.765090780000151,42.64936167400002]}
|
8
|
+
{"label":"Angola","population":35840098.34901637,"bbox":[11.66939414300009,-18.031404723999884,24.061714315000103,-4.391203714999932]}
|
9
|
+
{"label":"Anguilla","population":7415.431157567533,"bbox":[-63.42882239499994,18.169094143000052,-62.92568246172179,18.601263739000046]}
|
10
|
+
{"label":"Antarctica","population":3484552.9120540135,"bbox":[-180,-90,180,-60.51620859199994]}
|
11
|
+
{"label":"Antigua and Barb.","population":74048.383536755,"bbox":[-62.34826033833981,16.931969600900484,-61.66759192599994,17.727687893000052]}
|
12
|
+
{"label":"Argentina","population":45024645.27472778,"bbox":[-73.57273962499994,-55.05201588299991,-53.661551879999934,-21.786937763999973]}
|
13
|
+
{"label":"Armenia","population":2813239.380422218,"bbox":[43.43629398600007,38.863701274,46.602612346000114,41.290452373000065]}
|
14
|
+
{"label":"Aruba","population":79873.03374697098,"bbox":[-70.06240800699993,12.417669989000046,-69.87682044199994,12.632147528000075]}
|
15
|
+
{"label":"Ashmore and Cartier Is.","population":0.12908608271918642,"bbox":[123.57504316500001,-12.438571872999887,123.59774824300007,-12.426608981999891]}
|
16
|
+
{"label":"Australia","population":20808830.073074322,"bbox":[112.91944420700008,-54.75042083099993,159.1064559250001,-9.240166924999926]}
|
17
|
+
{"label":"Austria","population":8844606.200569225,"bbox":[9.52115482500011,46.37864308700007,17.148337850000075,49.00977447500007]}
|
18
|
+
{"label":"Azerbaijan","population":10048441.521936923,"bbox":[44.77455855300013,38.392644755000035,50.625743035000085,41.890441590000094]}
|
19
|
+
{"label":"Bahamas","population":267426.26171739976,"bbox":[-79.59434973899994,20.912398909000046,-72.7461645169999,26.92841217700004]}
|
20
|
+
{"label":"Bahrain","population":1542205.8614060713,"bbox":[50.38052953694196,25.579890923319237,50.81987514169949,26.287438796838625]}
|
21
|
+
{"label":"Baikonur","population":32561.426702521992,"bbox":[62.800641723000126,45.56582448300013,63.96713383000008,46.390838725]}
|
22
|
+
{"label":"Bajo Nuevo Bank","population":0.001742512287650149,"bbox":[-79.9892878899999,15.794175523000092,-79.9863988919999,15.796210028000075]}
|
23
|
+
{"label":"Bangladesh","population":161332780.73413327,"bbox":[88.02178959200006,20.738714911000045,92.64285119700003,26.623544007000064]}
|
24
|
+
{"label":"Barbados","population":238848.69561255712,"bbox":[-59.65420488199993,13.051174221000053,-59.42690995999993,13.344549872000073]}
|
25
|
+
{"label":"Belarus","population":9211028.096251588,"bbox":[23.165644979000035,51.2351683560001,32.71953210400005,56.15680592900007]}
|
26
|
+
{"label":"Belgium","population":11595332.26981201,"bbox":[2.521799927545686,49.49522288100006,6.374525187000074,51.49623769100005]}
|
27
|
+
{"label":"Belize","population":416698.0744689967,"bbox":[-89.23651220799991,15.879651999000075,-87.78307044199994,18.49075876900004]}
|
28
|
+
{"label":"Benin","population":12935004.823940877,"bbox":[0.759880818000113,6.213893947000088,3.837419067000013,12.39924428300013]}
|
29
|
+
{"label":"Bermuda","population":22230.8917669665,"bbox":[-64.88599398897043,32.248077381595785,-64.64763070564054,32.388657945000034]}
|
30
|
+
{"label":"Bhutan","population":1043757.5207804372,"bbox":[88.73006677200004,26.696149394000102,92.08877648900011,28.358398930786237]}
|
31
|
+
{"label":"Bir Tawil","population":6385.740909304418,"bbox":[33.181135614000084,21.71095743830486,34.08417936900008,21.995454407000082]}
|
32
|
+
{"label":"Bolivia","population":11863280.400457332,"bbox":[-69.66649226999988,-22.89725758799996,-57.465660766999946,-9.679821471999986]}
|
33
|
+
{"label":"Bosnia and Herz.","population":3400389.6259653103,"bbox":[15.716073852000108,42.55921213800009,19.618884725000044,45.28452382500008]}
|
34
|
+
{"label":"Botswana","population":2381766.5400670636,"bbox":[19.978345988000115,-26.891794127999987,29.350073689000055,-17.781807555999947]}
|
35
|
+
{"label":"Br. Indian Ocean Ter.","population":2.3133789249130223,"bbox":[71.26099694100003,-7.432224216999941,72.49463951900003,-5.226983330999929]}
|
36
|
+
{"label":"Brazil","population":211111112.2860774,"bbox":[-74.01847469099994,-33.74228037499992,-28.877064581999946,5.267224833000029]}
|
37
|
+
{"label":"Brazilian I.","population":37.85945156343884,"bbox":[-57.64246584634791,-30.193092102762034,-57.602792548565105,-30.182962747999937]}
|
38
|
+
{"label":"British Virgin Is.","population":18797.484902735494,"bbox":[-64.77399654899995,18.33466217700004,-64.27074133999992,18.746242580000057]}
|
39
|
+
{"label":"Brunei","population":426988.6515281764,"bbox":[113.99878991000003,4.016681010000042,115.36074100800016,5.057196356000077]}
|
40
|
+
{"label":"Bulgaria","population":7532237.094327794,"bbox":[22.345023234000053,41.238104147000044,28.603526238000086,44.228434539]}
|
41
|
+
{"label":"Burkina Faso","population":22786365.391179495,"bbox":[-5.522578084999878,9.391882629000108,2.390168904000092,15.079907532000092]}
|
42
|
+
{"label":"Burundi","population":11292986.129912468,"bbox":[28.9868917230001,-4.463344014999933,30.833962443000075,-2.303062438999888]}
|
43
|
+
{"label":"Cabo Verde","population":470662.5179108545,"bbox":[-25.36042232999995,14.803941148000092,-22.666574673999946,17.196600653000075]}
|
44
|
+
{"label":"Cambodia","population":19551744.310885906,"bbox":[102.3134237060001,10.415773620000024,107.61051639900006,14.704581605000016]}
|
45
|
+
{"label":"Cameroon","population":27814875.582437173,"bbox":[8.505056186000047,1.654551290000128,16.20772342900011,13.081140646000023]}
|
46
|
+
{"label":"Canada","population":36534365.58717861,"bbox":[-141.00556393099993,41.66908559200006,-52.61660722599993,83.11652252800008]}
|
47
|
+
{"label":"Cayman Is.","population":36023.95674725207,"bbox":[-81.41654202099994,19.263863615000048,-79.72664269199993,19.75763083700008]}
|
48
|
+
{"label":"Central African Rep.","population":5242880.820213078,"bbox":[14.387266072000074,2.236453756000046,27.441301310000142,11.000828349000074]}
|
49
|
+
{"label":"Chad","population":16604250.195219042,"bbox":[13.449183797000103,7.455566711000102,23.98440637200008,23.444719951000067]}
|
50
|
+
{"label":"Chile","population":20504853.33671433,"bbox":[-109.45372473899994,-55.9185042229999,-66.42080644399994,-17.506588197999946]}
|
51
|
+
{"label":"China","population":1426637055.778931,"bbox":[73.60225630700006,15.77537669500009,134.77257938700006,53.56944447900007]}
|
52
|
+
{"label":"Clipperton I.","population":0.23779950758270418,"bbox":[-109.23424231699994,10.28156159100007,-109.21035722599993,10.311021226000037]}
|
53
|
+
{"label":"Colombia","population":62847893.51360667,"bbox":[-81.72370357999995,-4.236484476999905,-66.87506058799994,13.57835521000004]}
|
54
|
+
{"label":"Comoros","population":707234.9589765709,"bbox":[43.213226759000065,-12.380303643999923,44.52906334700003,-11.361260674999926]}
|
55
|
+
{"label":"Congo","population":3815256.7769219102,"bbox":[11.114016304109821,-5.019630835999919,18.642406860000023,3.708276062000053]}
|
56
|
+
{"label":"Cook Is.","population":9462.490661290358,"bbox":[-165.82453365799992,-21.938897393999923,-157.31281490799992,-8.946709893999923]}
|
57
|
+
{"label":"Coral Sea Is.","population":0.0010375381833798438,"bbox":[154.38851972700002,-21.030043226999908,154.39128665500004,-21.028741143999923]}
|
58
|
+
{"label":"Costa Rica","population":4771379.971544469,"bbox":[-87.11766516799992,5.51508209800005,-82.56283687399991,11.209937032000099]}
|
59
|
+
{"label":"Côte d'Ivoire","population":25661176.330875862,"bbox":[-8.618719848999916,4.34406159100007,-2.506328083999932,10.726478170000036]}
|
60
|
+
{"label":"Croatia","population":3893471.67310727,"bbox":[13.501475457000083,42.41632721600007,19.40783817500011,46.546979065000116]}
|
61
|
+
{"label":"Cuba","population":10833867.832959954,"bbox":[-84.94961503799993,19.827826239000046,-74.1328832669999,23.265570380000042]}
|
62
|
+
{"label":"Curaçao","population":153791.72322330065,"bbox":[-69.17174231699994,12.04132721600007,-68.73973548099991,12.391506252000056]}
|
63
|
+
{"label":"Cyprus U.N. Buffer Zone","population":111883.88092966042,"bbox":[32.58480879000007,34.977762757000065,34.0219607300001,35.19940297400008]}
|
64
|
+
{"label":"Cyprus","population":749702.1550647046,"bbox":[32.27173912900008,34.62501943000002,34.09913170700008,35.18708213000012]}
|
65
|
+
{"label":"Czechia","population":10793449.246942766,"bbox":[12.076140991000045,48.557915752,18.837433716000106,51.04001230900009]}
|
66
|
+
{"label":"Dem. Rep. Congo","population":114505982.88055961,"bbox":[12.210541212000066,-13.45835052399994,31.280446818000087,5.375280253000085]}
|
67
|
+
{"label":"Denmark","population":5401761.7718017595,"bbox":[8.094004754000082,54.56858958500004,15.151377800000091,57.751166083000044]}
|
68
|
+
{"label":"Dhekelia","population":16035.04230682985,"bbox":[33.67409916200006,34.93789297100005,33.92147424400014,35.11899444600006]}
|
69
|
+
{"label":"Djibouti","population":1059293.3676994357,"bbox":[41.74911014800006,10.929824931000084,43.418711785000085,12.707912502000056]}
|
70
|
+
{"label":"Dominica","population":63126.68944032938,"bbox":[-61.48892167899993,15.20180898600006,-61.249256964999915,15.63385651200008]}
|
71
|
+
{"label":"Dominican Rep.","population":11593007.307214577,"bbox":[-72.0098376059999,17.54555898600006,-68.32860266799992,19.93768952000005]}
|
72
|
+
{"label":"Ecuador","population":17168960.078975845,"bbox":[-92.01158606699994,-5.011372578999939,-75.2272639579999,1.66437409100007]}
|
73
|
+
{"label":"Egypt","population":94889999.03772086,"bbox":[24.688342732000137,21.9943692020001,36.899180535000085,31.656480210000026]}
|
74
|
+
{"label":"El Salvador","population":6682820.064431181,"bbox":[-90.11477901199993,13.158636786000045,-87.69319351199994,14.445372620000086]}
|
75
|
+
{"label":"Eq. Guinea","population":1240443.9802833674,"bbox":[5.611989780000044,-1.475681247999944,11.33634118700013,3.772406317000048]}
|
76
|
+
{"label":"Eritrea","population":4225655.788699916,"bbox":[36.423647095000035,12.360021871000086,43.12387129000007,18.004828192000048]}
|
77
|
+
{"label":"Estonia","population":1311528.841784197,"bbox":[21.832367384000065,57.51581858300001,28.186475464000125,59.67088450700004]}
|
78
|
+
{"label":"eSwatini","population":1088380.9593161177,"bbox":[30.782906128000093,-27.31626434299993,32.11739831600005,-25.735999043999954]}
|
79
|
+
{"label":"Ethiopia","population":103870573.73885825,"bbox":[32.98979984500011,3.403333435000093,47.97916914900014,14.879532166000047]}
|
80
|
+
{"label":"Faeroe Is.","population":39066.6183714323,"bbox":[-7.644154425999943,61.39411041900007,-6.275786912999934,62.39891185100004]}
|
81
|
+
{"label":"Falkland Is.","population":2017.993026119999,"bbox":[-61.31818600199995,-52.406522725999935,-57.73428300699993,-51.02776458099993]}
|
82
|
+
{"label":"Fiji","population":776770.1881523916,"bbox":[-180,-21.711114190999922,180,-12.475274346999925]}
|
83
|
+
{"label":"Finland","population":5314160.605613691,"bbox":[20.62316451,59.81122467700004,31.56952478000011,70.07531036400012]}
|
84
|
+
{"label":"Fr. Polynesia","population":226417.7554026663,"bbox":[-154.5369766919999,-27.64120859199994,-134.94298255099994,-7.950127862999921]}
|
85
|
+
{"label":"Fr. S. Antarctic Lands","population":516.2611162954623,"bbox":[39.72828209700009,-49.72161223799992,77.58521569100003,-11.550632419999886]}
|
86
|
+
{"label":"France","population":68776218.80854306,"bbox":[-61.79784094999991,-21.37078215899993,55.854502800000034,51.08754088371883]}
|
87
|
+
{"label":"Gabon","population":2917279.940090998,"bbox":[8.695567254000082,-3.936856189796041,14.498990519000131,2.322495016000119]}
|
88
|
+
{"label":"Gambia","population":2213287.9817407476,"bbox":[-16.829701300999943,13.065008856000077,-13.818712524999881,13.81998443600007]}
|
89
|
+
{"label":"Georgia","population":3657177.5577706764,"bbox":[39.985976355436605,41.04411082000006,46.69480310100005,43.57584259000002]}
|
90
|
+
{"label":"Germany","population":78341467.95482695,"bbox":[5.852489868000106,47.27112091100007,15.022059367000054,55.065334377000056]}
|
91
|
+
{"label":"Ghana","population":32633157.577857014,"bbox":[-3.262509317999985,4.737127997000073,1.187968384000044,11.16293731700003]}
|
92
|
+
{"label":"Gibraltar","population":6042.44073191147,"bbox":[-5.358386758461411,36.11050039300005,-5.338773483242616,36.14111967199992]}
|
93
|
+
{"label":"Greece","population":9671877.29708973,"bbox":[19.626475457000083,34.81500885600008,28.239756707000083,41.750475973000064]}
|
94
|
+
{"label":"Greenland","population":409679.5831068553,"bbox":[-73.05724036399994,59.792629299000055,-11.37682044199994,83.63410065300008]}
|
95
|
+
{"label":"Grenada","population":81229.8075208436,"bbox":[-61.79051673099991,12.002834377000056,-61.42162024599992,12.529730536000045]}
|
96
|
+
{"label":"Guam","population":138962.76220849092,"bbox":[144.62419681100005,13.241034247000073,144.9521590500001,13.654120184000078]}
|
97
|
+
{"label":"Guatemala","population":18251946.75313648,"bbox":[-92.24625650399989,13.731404008980572,-88.22093665299991,17.81601959300012]}
|
98
|
+
{"label":"Guernsey","population":40965.78911731184,"bbox":[-2.673451300999943,49.41156647300005,-2.170318162999934,49.73139069200005]}
|
99
|
+
{"label":"Guinea-Bissau","population":1747797.951415872,"bbox":[-16.728436776914492,10.92763906500005,-13.660711832999937,12.679433900000063]}
|
100
|
+
{"label":"Guinea","population":12160701.426152552,"bbox":[-15.081125454999949,7.190208232000103,-7.662447469999961,12.673387757000029]}
|
101
|
+
{"label":"Guyana","population":701135.3864039881,"bbox":[-61.39671280899992,1.185820211000078,-56.481819010999914,8.558010158000059]}
|
102
|
+
{"label":"Haiti","population":13692766.63990651,"bbox":[-74.48916581899994,18.025946356000077,-71.63911088099988,20.089789130000042]}
|
103
|
+
{"label":"Heard I. and McDonald Is.","population":30.50154284986346,"bbox":[73.23601321700005,-53.19255950299993,73.81218509200005,-52.961602471999925]}
|
104
|
+
{"label":"Honduras","population":9516651.69097052,"bbox":[-89.36379125999989,12.979777324000068,-83.13044447244795,17.41864655200004]}
|
105
|
+
{"label":"Hong Kong","population":6009638.620794672,"bbox":[113.837331576,22.177069403000075,114.40129642000011,22.56394603200009]}
|
106
|
+
{"label":"Hungary","population":9385902.252603542,"bbox":[16.09403527800012,45.74134348600002,22.877600546000053,48.569232890000066]}
|
107
|
+
{"label":"Iceland","population":328156.01870283706,"bbox":[-24.539906378999945,63.39671458500004,-13.502919074999909,66.56415436400005]}
|
108
|
+
{"label":"India","population":1397724710.2215252,"bbox":[68.14340254000007,6.74555084800005,97.36225305200003,35.49540557900012]}
|
109
|
+
{"label":"Indian Ocean Ter.","population":498.3978889909734,"bbox":[96.82154381600003,-12.199965101999908,105.71469160200007,-10.430840752999927]}
|
110
|
+
{"label":"Indonesia","population":274327820.10135204,"bbox":[95.01270592500003,-10.922621351999908,140.97762699400005,5.910101630000042]}
|
111
|
+
{"label":"Iran","population":80233038.09476602,"bbox":[44.01486332200011,25.059408165000036,63.31962813300004,39.771526998000084]}
|
112
|
+
{"label":"Iraq","population":44198808.41659047,"bbox":[38.77451135200005,29.063136699000026,48.559255405000044,37.37549753800006]}
|
113
|
+
{"label":"Ireland","population":5231525.374998629,"bbox":[-10.478179490999935,51.44570547100005,-5.993519660999937,55.386379299000055]}
|
114
|
+
{"label":"Isle of Man","population":73468.7731331063,"bbox":[-4.790150519999941,54.05695221600007,-4.311919725999928,54.41901276200008]}
|
115
|
+
{"label":"Israel","population":8891640.159437058,"bbox":[34.24835085700005,29.48969147300005,35.88807255000012,33.4067217]}
|
116
|
+
{"label":"Italy","population":59472142.92312217,"bbox":[6.602728312000067,35.48924388200004,18.517425977000073,47.08521494500006]}
|
117
|
+
{"label":"Jamaica","population":2657724.058510137,"bbox":[-78.37466386599993,17.703192450000074,-76.18797766799992,18.525091864000046]}
|
118
|
+
{"label":"Japan","population":124682609.51149096,"bbox":[122.93816165500004,24.212103583000044,153.98560631600003,45.520412502000056]}
|
119
|
+
{"label":"Jersey","population":65213.029714172095,"bbox":[-2.242014126999948,49.17133209800005,-2.008290167999917,49.26703522300005]}
|
120
|
+
{"label":"Jordan","population":7121856.474386011,"bbox":[34.9493851167955,29.189950664,39.29199914500009,33.3716850790001]}
|
121
|
+
{"label":"Kazakhstan","population":18113185.08154683,"bbox":[46.47827884900005,40.58465566000011,87.32379602100013,55.43455027300003]}
|
122
|
+
{"label":"Kenya","population":54448920.00888919,"bbox":[33.890468384000144,-4.677504164999959,41.885019165000074,5.030375822607695]}
|
123
|
+
{"label":"Kiribati","population":14758.704624265225,"bbox":[-174.54340572799993,-11.461114190999922,176.850922071,4.723089911000045]}
|
124
|
+
{"label":"Kosovo","population":2059049.0849709501,"bbox":[20.024751424000016,41.84401031600008,21.772758422000067,43.26307098400004]}
|
125
|
+
{"label":"Kuwait","population":3336246.481221961,"bbox":[46.53243575000005,28.53350494400003,48.432781227000135,30.09821563700008]}
|
126
|
+
{"label":"Kyrgyzstan","population":6072367.114498318,"bbox":[69.22629602000012,39.18923695900007,80.2575606690001,43.26170155800007]}
|
127
|
+
{"label":"Laos","population":7531579.881999519,"bbox":[100.0970732020001,13.915456645000106,107.66436324000011,22.496044007000094]}
|
128
|
+
{"label":"Latvia","population":2431206.9281197446,"bbox":[20.968597852000073,55.66699086600006,28.217274617000072,58.07513844900008]}
|
129
|
+
{"label":"Lebanon","population":8812891.400958922,"bbox":[35.099619988000086,33.055580342,36.604101196000045,34.68754791300002]}
|
130
|
+
{"label":"Lesotho","population":1839567.1419817936,"bbox":[27.002154989000132,-30.658799335999916,29.435908244000075,-28.570761413999975]}
|
131
|
+
{"label":"Liberia","population":4318858.494931505,"bbox":[-11.476185675999943,4.347235419000071,-7.384118204999936,8.565395609000063]}
|
132
|
+
{"label":"Libya","population":6923409.258095363,"bbox":[9.286543823000073,19.496123759000014,25.156260613000086,33.18122531500005]}
|
133
|
+
{"label":"Liechtenstein","population":30148.10854058834,"bbox":[9.475886271000121,47.05240041200004,9.615722697000109,47.2628010050001]}
|
134
|
+
{"label":"Lithuania","population":2728046.636317686,"bbox":[20.924568700365,53.886841126,26.80072025600009,56.44260243700002]}
|
135
|
+
{"label":"Luxembourg","population":598173.0930618352,"bbox":[5.714927205000038,49.44132436200003,6.502579387000139,50.17497467100007]}
|
136
|
+
{"label":"Macao","population":176275.73651303057,"bbox":[113.519867384,22.10537344000005,113.58749433700007,22.220770575000074]}
|
137
|
+
{"label":"Madagascar","population":27581819.78306038,"bbox":[43.22291100400008,-25.59856536299992,50.503916863000086,-11.943617445999905]}
|
138
|
+
{"label":"Malawi","population":18466248.91933473,"bbox":[32.66330814700012,-17.135335387999902,35.90429895000011,-9.381235046999876]}
|
139
|
+
{"label":"Malaysia","population":33326213.39880714,"bbox":[99.64522806000008,0.851370341000106,119.27808678500003,7.35578034100007]}
|
140
|
+
{"label":"Maldives","population":126590.08165828328,"bbox":[72.68482506600003,-0.688571872999944,73.75318444100003,7.107245184000078]}
|
141
|
+
{"label":"Mali","population":23331199.8053837,"bbox":[-12.2641304119999,10.140054017000097,4.235637655000119,24.99506459600009]}
|
142
|
+
{"label":"Malta","population":366507.2827883944,"bbox":[14.183604363000086,35.801214911000045,14.567149285000085,36.07558828300006]}
|
143
|
+
{"label":"Marshall Is.","population":2906.605755459355,"bbox":[165.2822371750001,4.573797919000071,172.0297957690001,14.610500393000052]}
|
144
|
+
{"label":"Mauritania","population":4361238.54603364,"bbox":[-17.0811748859999,14.73439890600011,-4.821613117999902,27.285415751000116]}
|
145
|
+
{"label":"Mauritius","population":1212521.0206052635,"bbox":[56.524180535000085,-20.51734791499996,63.49390709700003,-10.32390715899993]}
|
146
|
+
{"label":"Mexico","population":139197942.61152866,"bbox":[-118.36880422899992,14.546279476000095,-86.70059160099993,32.71283640500009]}
|
147
|
+
{"label":"Micronesia","population":39111.98177432711,"bbox":[138.063812696,0.918158270000049,163.04656009200005,9.775580145000049]}
|
148
|
+
{"label":"Moldova","population":3634118.6300803996,"bbox":[26.617889038000015,45.46177398700006,30.131576375000122,48.486033834000054]}
|
149
|
+
{"label":"Monaco","population":22161.161865522656,"bbox":[7.365750207000076,43.71796907700008,7.43745403212602,43.76350555400002]}
|
150
|
+
{"label":"Mongolia","population":3166526.615486085,"bbox":[87.73570886300013,41.586144918000016,119.90702681500011,52.12958404600003]}
|
151
|
+
{"label":"Montenegro","population":602844.621376092,"bbox":[18.433530721000068,41.85236237200007,20.355170532000102,43.547885641000036]}
|
152
|
+
{"label":"Montserrat","population":3146.773293875063,"bbox":[-62.230132615999935,16.67536041900007,-62.14053300699993,16.81932200700004]}
|
153
|
+
{"label":"Morocco","population":35413689.345734164,"bbox":[-17.013743325393165,21.419971097583428,-1.031999470999949,35.92651914900006]}
|
154
|
+
{"label":"Mozambique","population":30611704.70647493,"bbox":[30.21384525500008,-26.86027150399994,40.847992384000065,-10.469008070999905]}
|
155
|
+
{"label":"Myanmar","population":47819563.57639467,"bbox":[92.17497277900003,9.790716864000046,101.17385502100007,28.53846588100008]}
|
156
|
+
{"label":"N. Cyprus","population":367020.2294942008,"bbox":[32.601898634000065,35.00272247300005,34.592539910000085,35.69196198100008]}
|
157
|
+
{"label":"N. Mariana Is.","population":30832.446329085553,"bbox":[144.90211022200003,14.110663153000075,145.86890709700003,20.55540599200009]}
|
158
|
+
{"label":"Namibia","population":2391695.7478634557,"bbox":[11.717621290000068,-28.959368183999885,25.259780721000112,-16.951057230999936]}
|
159
|
+
{"label":"Nauru","population":5638.619268398999,"bbox":[166.90699303500003,-0.551853122999944,166.95826256600003,-0.490411065999922]}
|
160
|
+
{"label":"Nepal","population":42053209.21012582,"bbox":[80.03028772000005,26.343767802000073,88.1690674240001,30.416904195000072]}
|
161
|
+
{"label":"Netherlands","population":17072315.344948884,"bbox":[-68.41738847599993,12.022040106000077,7.198505900000043,53.55809153900003]}
|
162
|
+
{"label":"New Caledonia","population":228162.21097206607,"bbox":[163.6157332690001,-22.670668226999908,171.343765287,-19.623711846999925]}
|
163
|
+
{"label":"New Zealand","population":3921510.5032353005,"bbox":[-177.9579971999999,-52.60031327099995,178.84392337300005,-8.543226820999905]}
|
164
|
+
{"label":"Nicaragua","population":6820022.491056958,"bbox":[-87.6858210929999,10.7134815470001,-82.72569739499994,15.030969950000099]}
|
165
|
+
{"label":"Niger","population":23885589.401682246,"bbox":[0.152941121000111,11.69577301000001,15.970321899000112,23.517351176000105]}
|
166
|
+
{"label":"Nigeria","population":214792831.03974712,"bbox":[2.671081990000118,4.272162177000041,14.66993615700008,13.880290832000057]}
|
167
|
+
{"label":"Niue","population":1020.1894487346665,"bbox":[-169.95042883999992,-19.142754815999922,-169.78290768099993,-18.964043877999927]}
|
168
|
+
{"label":"Norfolk Island","population":1256.9085749596522,"bbox":[167.9121199880001,-29.080010674999926,167.99634850400003,-28.997491143999923]}
|
169
|
+
{"label":"North Korea","population":22863129.815778505,"bbox":[124.21131598900001,37.67560455900008,130.69996178500003,43.010269878000074]}
|
170
|
+
{"label":"North Macedonia","population":2114165.7986540548,"bbox":[20.44415734900008,40.849394023000045,23.00958215300011,42.37033477900009]}
|
171
|
+
{"label":"Norway","population":4765609.2683846885,"bbox":[-9.11742102799991,-54.46249765399995,33.64039147200009,80.77008698100008]}
|
172
|
+
{"label":"Oman","population":3799790.6714151795,"bbox":[51.97861495000012,16.642401434000078,59.84457441500007,26.385972398000035]}
|
173
|
+
{"label":"Pakistan","population":228641834.3975766,"bbox":[60.844378703000075,23.694525458000044,77.04897098800006,37.05448354100004]}
|
174
|
+
{"label":"Palau","population":11528.394815031334,"bbox":[131.13111412900003,2.949042059000078,134.7273429907992,8.09661782863137]}
|
175
|
+
{"label":"Palestine","population":5339726.9454205055,"bbox":[34.200269441306034,31.211448958000076,35.572536255000045,32.54264007600004]}
|
176
|
+
{"label":"Panama","population":3907257.5274086073,"bbox":[-83.05324621699995,7.20571523600006,-77.16326981599991,9.62929248000006]}
|
177
|
+
{"label":"Papua New Guinea","population":9035709.641044546,"bbox":[140.84921106000002,-11.636325778999947,155.96753991000003,-1.346368096999925]}
|
178
|
+
{"label":"Paraguay","population":7431509.377704296,"bbox":[-62.65035721899994,-27.58684214299994,-54.24528885899994,-19.28672861699995]}
|
179
|
+
{"label":"Peru","population":35015262.38385546,"bbox":[-81.33755752899992,-18.337746206368088,-68.68425248299991,-0.029092711999922]}
|
180
|
+
{"label":"Philippines","population":99755225.93315874,"bbox":[116.95492597700002,4.65570709800005,126.61768639400009,21.122381903000075]}
|
181
|
+
{"label":"Pitcairn Is.","population":43.015159054925796,"bbox":[-130.75308183499993,-25.07708098799992,-124.77806555899991,-23.92441171699994]}
|
182
|
+
{"label":"Poland","population":39259596.56622137,"bbox":[14.12392297300002,48.994013164000094,24.143156372000107,54.838324286000045]}
|
183
|
+
{"label":"Portugal","population":9986619.022270313,"bbox":[-31.284901495999918,30.029242255000042,-6.205947224999932,42.15362966000002]}
|
184
|
+
{"label":"Puerto Rico","population":3482147.233925379,"bbox":[-67.93781490799995,17.92291901200008,-65.24461829299992,18.522772528000075]}
|
185
|
+
{"label":"Qatar","population":6410097.8208404565,"bbox":[50.750987175000034,24.559871521000062,51.61654707100007,26.160101630000042]}
|
186
|
+
{"label":"Romania","population":33199992.117807895,"bbox":[20.24282596900008,43.6500499480001,29.699554884000065,48.27483225600007]}
|
187
|
+
{"label":"Russia","population":142782239.86509684,"bbox":[-180,41.19268056200009,180,81.85871002800008]}
|
188
|
+
{"label":"Rwanda","population":13622664.978213506,"bbox":[28.857235555000074,-2.826854756999893,30.88780928500006,-1.058693948999874]}
|
189
|
+
{"label":"S. Geo. and the Is.","population":314.6363353785489,"bbox":[-38.08702551999994,-59.47275155999995,-26.23932857999995,-53.9724260399999]}
|
190
|
+
{"label":"S. Sudan","population":16753490.545512272,"bbox":[24.121555623000063,3.490201518000092,35.92083540900012,12.216154684000088]}
|
191
|
+
{"label":"Saint Helena","population":3156.5340599320198,"bbox":[-14.417713995999918,-40.39788176899992,-5.650380011999914,-7.877862237999921]}
|
192
|
+
{"label":"Saint Lucia","population":149249.31524594044,"bbox":[-61.07852128799993,13.714667059000078,-60.88296464799993,14.111883856000077]}
|
193
|
+
{"label":"Samoa","population":174897.52255015593,"bbox":[-172.7825821609999,-14.05282968499995,-171.43769283799992,-13.462823174999926]}
|
194
|
+
{"label":"San Marino","population":21185.934501325697,"bbox":[12.385628745000105,43.892055515,12.492392254000094,43.98256678600008]}
|
195
|
+
{"label":"São Tomé and Principe","population":182696.8092720209,"bbox":[6.461680535000085,0.024115302000041,7.462738477000073,1.699774481000077]}
|
196
|
+
{"label":"Saudi Arabia","population":36720230.75845469,"bbox":[34.57276451900009,16.37095774900007,55.63756473800004,32.12134796200006]}
|
197
|
+
{"label":"Scarborough Reef","population":0.0047361986565133,"bbox":[117.75185638100004,15.150082025000074,117.75569233100009,15.154369263000092]}
|
198
|
+
{"label":"Senegal","population":15597761.694140533,"bbox":[-17.536040818999936,12.305606588000089,-11.37777624499995,16.691385397000047]}
|
199
|
+
{"label":"Serbia","population":7053893.514607815,"bbox":[18.84497847500006,42.23494482000011,22.98457076000011,46.17387522400013]}
|
200
|
+
{"label":"Serranilla Bank","population":0.4031593062283465,"bbox":[-78.6404109369999,15.862087307000081,-78.63687089799993,15.867295640000066]}
|
201
|
+
{"label":"Seychelles","population":60927.44531026639,"bbox":[46.207367384000065,-9.75554778399993,56.287445509000065,-3.791110934999949]}
|
202
|
+
{"label":"Siachen Glacier","population":7757.499262439568,"bbox":[76.77735074100008,35.110441997000024,77.80034631400014,35.647799378000045]}
|
203
|
+
{"label":"Sierra Leone","population":6330331.475998915,"bbox":[-13.30109615799995,6.919419664000088,-10.282235879999888,9.996005961000066]}
|
204
|
+
{"label":"Singapore","population":3789619.4624393326,"bbox":[103.64039147200003,1.26430898600006,104.00342858200003,1.448635158000059]}
|
205
|
+
{"label":"Sint Maarten","population":10646.875890054456,"bbox":[-63.11888587099992,18.01911041900007,-63.01756858528839,18.062119859000063]}
|
206
|
+
{"label":"Slovakia","population":5421216.992513801,"bbox":[16.84448042800011,47.75000640900008,22.539636678000136,49.60177968400002]}
|
207
|
+
{"label":"Slovenia","population":2207896.571954466,"bbox":[13.365261271000094,45.42363678,16.515301554000075,46.86396230100003]}
|
208
|
+
{"label":"Solomon Is.","population":468646.81211284065,"bbox":[155.50798587300005,-12.290622653999947,168.82585696700005,-6.599867445999905]}
|
209
|
+
{"label":"Somalia","population":8359832.555467903,"bbox":[40.96538537600014,-1.696302992999961,51.41703781100006,11.989118646000065]}
|
210
|
+
{"label":"Somaliland","population":2778986.6385675673,"bbox":[42.64724654100013,7.996515605000084,48.939111999918396,11.498928127000056]}
|
211
|
+
{"label":"South Africa","population":59423993.22966578,"bbox":[16.469981316000087,-46.96575286299992,37.97779381600009,-22.126451924999927]}
|
212
|
+
{"label":"South Korea","population":50169886.847838886,"bbox":[124.613617384,33.19757721600007,131.86252188600008,38.624335028000075]}
|
213
|
+
{"label":"Southern Patagonian Ice Field","population":333.68825720976736,"bbox":[-73.58803584899991,-49.759959004999935,-73.05742351085179,-49.272753600999955]}
|
214
|
+
{"label":"Spain","population":51039328.4173226,"bbox":[-18.167225714999915,27.642238674000055,4.337087436000047,43.79344310100004]}
|
215
|
+
{"label":"Spratly Is.","population":0.5700079897174704,"bbox":[114.027679884,9.679510809000078,115.84880618600005,11.117987372000073]}
|
216
|
+
{"label":"Sri Lanka","population":20488677.384162266,"bbox":[79.65577233200008,5.923732815000051,81.89031009200005,9.829575914000088]}
|
217
|
+
{"label":"St-Barthélemy","population":4935.00508861449,"bbox":[-62.86733964799993,17.881984768000052,-62.79165605399993,17.92914459800005]}
|
218
|
+
{"label":"St-Martin","population":40013.414092987914,"bbox":[-63.14683997299994,18.033391472351283,-63.01073157499991,18.12213776200008]}
|
219
|
+
{"label":"St. Kitts and Nevis","population":44259.16139197797,"bbox":[-62.86107337099992,17.100531317000048,-62.536773240999935,17.415838934000078]}
|
220
|
+
{"label":"St. Pierre and Miquelon","population":3256.129048619428,"bbox":[-56.396595831999946,46.75275299700007,-56.14476477799991,47.14126211100006]}
|
221
|
+
{"label":"St. Vin. and Gren.","population":73248.51744264853,"bbox":[-61.459828253999945,12.585150458000044,-61.123931443999936,13.38076406500005]}
|
222
|
+
{"label":"Sudan","population":42650766.62341091,"bbox":[21.809448690000124,8.681641744000046,38.603851759000065,22.226964823000102]}
|
223
|
+
{"label":"Suriname","population":601192.2408052939,"bbox":[-58.067691202999924,1.83350677500006,-53.986357453999915,6.011573766000083]}
|
224
|
+
{"label":"Sweden","population":9650684.416946849,"bbox":[11.108164910000085,55.342678127000056,24.163413534000114,69.03635569300012]}
|
225
|
+
{"label":"Switzerland","population":8684107.499671761,"bbox":[5.954809204000128,45.820718486,10.466626831000013,47.801166077000076]}
|
226
|
+
{"label":"Syria","population":26670786.280937463,"bbox":[35.723399285000085,32.31304168700005,42.377185506000046,37.324906311000106]}
|
227
|
+
{"label":"Taiwan","population":23266417.034385443,"bbox":[118.27955162900003,21.90460846600007,122.00538170700008,25.28742096600007]}
|
228
|
+
{"label":"Tajikistan","population":9494136.503332289,"bbox":[67.34269006300013,36.678640849000104,75.16412479700006,41.039976705000115]}
|
229
|
+
{"label":"Tanzania","population":55845643.29102167,"bbox":[29.32103153500009,-11.73127248199998,40.44939212300005,-0.98583017999988]}
|
230
|
+
{"label":"Thailand","population":73916738.98976205,"bbox":[97.35140100100011,5.629890035000059,105.65099776200003,20.44500640900013]}
|
231
|
+
{"label":"Timor-Leste","population":1373837.1001261934,"bbox":[124.03003991000003,-9.501227721999967,127.31324303500003,-8.135023695999905]}
|
232
|
+
{"label":"Togo","population":8555587.24491192,"bbox":[-0.16610917099996,6.100490627000056,1.782350708000138,11.134980367000125]}
|
233
|
+
{"label":"Tonga","population":64476.12583656849,"bbox":[-176.21930904899992,-22.33879973799992,-173.91425533799992,-15.55950286299992]}
|
234
|
+
{"label":"Trinidad and Tobago","population":1248931.7315946373,"bbox":[-61.92870032499991,10.04205963700008,-60.52208411399994,11.351060289000088]}
|
235
|
+
{"label":"Tunisia","population":11301987.803546023,"bbox":[7.47983239800007,30.22890533500008,11.564130900000123,37.34520091400009]}
|
236
|
+
{"label":"Turkey","population":79069345.14594102,"bbox":[25.663259311000047,35.81977854500006,44.80699282900008,42.09878164300005]}
|
237
|
+
{"label":"Turkmenistan","population":9952033.558208,"bbox":[52.43767061735559,35.140646871000044,66.64578169800006,42.79118764300004]}
|
238
|
+
{"label":"Turks and Caicos Is.","population":23769.29223902213,"bbox":[-72.48131262899994,21.29010651200008,-71.12889563699991,21.95921458500004]}
|
239
|
+
{"label":"Tuvalu","population":1604.7220524962065,"bbox":[176.12525475400003,-9.420668226999908,179.9067488940001,-5.677504164999959]}
|
240
|
+
{"label":"U.S. Minor Outlying Is.","population":1.3619323132307823,"bbox":[-177.3895971339999,-0.388767184999949,166.6523543630001,28.215318101000037]}
|
241
|
+
{"label":"U.S. Virgin Is.","population":65047.49426424604,"bbox":[-65.04149344199993,17.682766018000052,-64.55939693899995,18.386598614000036]}
|
242
|
+
{"label":"Uganda","population":42250247.11298847,"bbox":[29.54845951300007,-1.47520599399985,35.006472615000064,4.219691875000095]}
|
243
|
+
{"label":"Ukraine","population":41303885.24226652,"bbox":[22.13283980300011,45.21356842700004,40.1595430910001,52.36894928000008]}
|
244
|
+
{"label":"United Arab Emirates","population":8763196.296600187,"bbox":[51.569346550000034,22.620945943000052,56.38363691500007,26.074791972000085]}
|
245
|
+
{"label":"United Kingdom","population":65235353.564648494,"bbox":[-13.69131425699993,49.90961334800005,1.77116946700005,60.84788646000004]}
|
246
|
+
{"label":"United States of America","population":337735710.76693296,"bbox":[-179.1435033839999,18.906117143000074,179.78093509200005,71.41250234600005]}
|
247
|
+
{"label":"Uruguay","population":3176147.3523196857,"bbox":[-58.43936113199993,-34.97340260199991,-53.1108361419999,-30.096869811999937]}
|
248
|
+
{"label":"USNB Guantanamo Bay","population":1043.3187652515985,"bbox":[-75.23285885299993,19.891142236000064,-75.09495029099989,19.97158369]}
|
249
|
+
{"label":"Uzbekistan","population":33186767.319142092,"bbox":[55.97583866300005,37.18514740000005,73.14864058400013,45.558718974]}
|
250
|
+
{"label":"Vanuatu","population":227177.8137449685,"bbox":[166.5205184250001,-20.253106377999927,169.8989363940001,-13.064873955999929]}
|
251
|
+
{"label":"Vatican","population":114.82289571623772,"bbox":[12.452714082000085,41.90275194100009,12.454035442000077,41.903914738000125]}
|
252
|
+
{"label":"Venezuela","population":31713183.725379623,"bbox":[-73.39114864099992,0.64931549100001,-59.81559484899992,15.702948309000078]}
|
253
|
+
{"label":"Vietnam","population":96598742.99332775,"bbox":[102.11865523300008,8.565578518000052,109.47242272200003,23.366275127000065]}
|
254
|
+
{"label":"W. Sahara","population":25702.784363784587,"bbox":[-17.104644334999932,20.766913153000075,-8.680809081999882,27.661465149]}
|
255
|
+
{"label":"Wallis and Futuna Is.","population":3382.9438845304135,"bbox":[-178.18573971299992,-14.319431247999944,-176.1255997389999,-13.208916924999926]}
|
256
|
+
{"label":"Yemen","population":29943352.199203163,"bbox":[42.54574629000007,12.111443672000064,54.54029381600009,18.99563751300012]}
|
257
|
+
{"label":"Zambia","population":18642072.992327727,"bbox":[21.97987756300006,-18.069231871999946,33.67420251500005,-8.194124042999917]}
|
258
|
+
{"label":"Zimbabwe","population":14234480.587197937,"bbox":[25.219369751000045,-22.39733978299992,33.04276818900013,-15.614808044999876]}
|