-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_with_population_info_eu.html
17786 lines (7665 loc) · 882 KB
/
map_with_population_info_eu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-glyphicons.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_ddb0ffa7c4471f9d6e6bbcca3ad6447e {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
</head>
<body>
<div class="folium-map" id="map_ddb0ffa7c4471f9d6e6bbcca3ad6447e" ></div>
</body>
<script>
var map_ddb0ffa7c4471f9d6e6bbcca3ad6447e = L.map(
"map_ddb0ffa7c4471f9d6e6bbcca3ad6447e",
{
center: [54.526, 15.2551],
crs: L.CRS.EPSG3857,
zoom: 4,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_2dad6f0667ab0071afb69b1b629eb523 = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}
);
tile_layer_2dad6f0667ab0071afb69b1b629eb523.addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var color_map_ed6bf89c44c57ffded09157df15b8dd8 = {};
color_map_ed6bf89c44c57ffded09157df15b8dd8.color = d3.scale.threshold()
.domain([455.0, 17266.112224448898, 34077.224448897796, 50888.33667334669, 67699.44889779559, 84510.56112224449, 101321.67334669338, 118132.78557114229, 134943.89779559118, 151755.0100200401, 168566.12224448897, 185377.23446893788, 202188.34669338676, 218999.45891783567, 235810.57114228458, 252621.68336673346, 269432.79559118237, 286243.90781563125, 303055.0200400802, 319866.13226452906, 336677.24448897794, 353488.3567134269, 370299.46893787576, 387110.58116232464, 403921.6933867735, 420732.80561122246, 437543.91783567134, 454355.0300601202, 471166.14228456916, 487977.25450901804, 504788.3667334669, 521599.47895791585, 538410.5911823647, 555221.7034068137, 572032.8156312625, 588843.9278557114, 605655.0400801604, 622466.1523046092, 639277.2645290581, 656088.3767535071, 672899.4889779559, 689710.6012024048, 706521.7134268538, 723332.8256513026, 740143.9378757515, 756955.0501002003, 773766.1623246493, 790577.2745490982, 807388.386773547, 824199.498997996, 841010.6112224449, 857821.7234468937, 874632.8356713427, 891443.9478957916, 908255.0601202404, 925066.1723446894, 941877.2845691383, 958688.3967935871, 975499.5090180361, 992310.621242485, 1009121.7334669338, 1025932.8456913828, 1042743.9579158317, 1059555.0701402805, 1076366.1823647295, 1093177.2945891784, 1109988.4068136273, 1126799.519038076, 1143610.631262525, 1160421.743486974, 1177232.8557114229, 1194043.9679358718, 1210855.0801603207, 1227666.1923847694, 1244477.3046092184, 1261288.4168336673, 1278099.5290581163, 1294910.6412825652, 1311721.7535070141, 1328532.8657314628, 1345343.9779559118, 1362155.0901803607, 1378966.2024048097, 1395777.3146292586, 1412588.4268537075, 1429399.5390781562, 1446210.6513026052, 1463021.763527054, 1479832.875751503, 1496643.987975952, 1513455.1002004007, 1530266.2124248496, 1547077.3246492986, 1563888.4368737475, 1580699.5490981964, 1597510.6613226454, 1614321.773547094, 1631132.885771543, 1647943.997995992, 1664755.110220441, 1681566.2224448898, 1698377.3346693388, 1715188.4468937875, 1731999.5591182364, 1748810.6713426854, 1765621.7835671343, 1782432.8957915832, 1799244.0080160322, 1816055.1202404809, 1832866.2324649298, 1849677.3446893787, 1866488.4569138277, 1883299.5691382766, 1900110.6813627256, 1916921.7935871743, 1933732.9058116232, 1950544.0180360721, 1967355.130260521, 1984166.24248497, 2000977.3547094187, 2017788.4669338677, 2034599.5791583166, 2051410.6913827655, 2068221.8036072145, 2085032.9158316634, 2101844.028056112, 2118655.140280561, 2135466.25250501, 2152277.364729459, 2169088.476953908, 2185899.589178357, 2202710.7014028057, 2219521.8136272547, 2236332.9258517036, 2253144.038076152, 2269955.150300601, 2286766.26252505, 2303577.374749499, 2320388.486973948, 2337199.599198397, 2354010.7114228457, 2370821.8236472947, 2387632.9358717436, 2404444.0480961925, 2421255.1603206415, 2438066.2725450904, 2454877.384769539, 2471688.496993988, 2488499.6092184368, 2505310.7214428857, 2522121.8336673346, 2538932.9458917836, 2555744.0581162325, 2572555.1703406814, 2589366.2825651304, 2606177.3947895793, 2622988.5070140283, 2639799.6192384767, 2656610.7314629257, 2673421.8436873746, 2690232.9559118235, 2707044.0681362725, 2723855.1803607214, 2740666.2925851704, 2757477.4048096193, 2774288.5170340682, 2791099.629258517, 2807910.741482966, 2824721.853707415, 2841532.9659318635, 2858344.0781563125, 2875155.1903807614, 2891966.3026052103, 2908777.4148296593, 2925588.527054108, 2942399.639278557, 2959210.751503006, 2976021.863727455, 2992832.975951904, 3009644.088176353, 3026455.2004008014, 3043266.3126252503, 3060077.4248496993, 3076888.537074148, 3093699.649298597, 3110510.761523046, 3127321.873747495, 3144132.985971944, 3160944.098196393, 3177755.210420842, 3194566.3226452908, 3211377.4348697397, 3228188.547094188, 3244999.659318637, 3261810.771543086, 3278621.883767535, 3295432.995991984, 3312244.108216433, 3329055.220440882, 3345866.3326653307, 3362677.4448897797, 3379488.5571142286, 3396299.6693386775, 3413110.7815631265, 3429921.893787575, 3446733.006012024, 3463544.118236473, 3480355.230460922, 3497166.3426853707, 3513977.4549098196, 3530788.5671342686, 3547599.6793587175, 3564410.7915831665, 3581221.9038076154, 3598033.0160320643, 3614844.128256513, 3631655.2404809617, 3648466.3527054107, 3665277.4649298596, 3682088.5771543086, 3698899.6893787575, 3715710.8016032064, 3732521.9138276554, 3749333.0260521043, 3766144.1382765532, 3782955.250501002, 3799766.362725451, 3816577.4749498996, 3833388.5871743485, 3850199.6993987975, 3867010.8116232464, 3883821.9238476953, 3900633.0360721443, 3917444.148296593, 3934255.260521042, 3951066.372745491, 3967877.48496994, 3984688.597194389, 4001499.7094188374, 4018310.8216432864, 4035121.9338677353, 4051933.0460921843, 4068744.158316633, 4085555.270541082, 4102366.382765531, 4119177.49498998, 4135988.607214429, 4152799.719438878, 4169610.831663327, 4186421.9438877758, 4203233.056112224, 4220044.168336674, 4236855.280561122, 4253666.3927855715, 4270477.50501002, 4287288.617234469, 4304099.729458918, 4320910.841683366, 4337721.953907816, 4354533.066132264, 4371344.178356714, 4388155.290581162, 4404966.4028056115, 4421777.51503006, 4438588.627254509, 4455399.739478958, 4472210.851703407, 4489021.963927856, 4505833.076152304, 4522644.188376754, 4539455.300601202, 4556266.4128256515, 4573077.5250501, 4589888.637274549, 4606699.749498998, 4623510.861723447, 4640321.973947896, 4657133.086172345, 4673944.198396794, 4690755.310621242, 4707566.422845691, 4724377.53507014, 4741188.647294589, 4757999.759519038, 4774810.871743487, 4791621.983967936, 4808433.096192385, 4825244.208416834, 4842055.320641283, 4858866.432865731, 4875677.545090181, 4892488.657314629, 4909299.769539078, 4926110.881763527, 4942921.993987976, 4959733.106212425, 4976544.2184368735, 4993355.330661323, 5010166.442885771, 5026977.555110221, 5043788.667334669, 5060599.779559119, 5077410.891783567, 5094222.004008016, 5111033.116232465, 5127844.2284569135, 5144655.340681363, 5161466.452905811, 5178277.565130261, 5195088.677354709, 5211899.789579159, 5228710.901803607, 5245522.0140280565, 5262333.126252505, 5279144.2384769535, 5295955.350701403, 5312766.462925851, 5329577.575150301, 5346388.687374749, 5363199.799599199, 5380010.911823647, 5396822.0240480965, 5413633.136272545, 5430444.248496994, 5447255.360721443, 5464066.472945891, 5480877.585170341, 5497688.697394789, 5514499.809619239, 5531310.921843687, 5548122.0340681365, 5564933.146292585, 5581744.258517034, 5598555.370741483, 5615366.482965932, 5632177.595190381, 5648988.70741483, 5665799.819639279, 5682610.931863727, 5699422.044088176, 5716233.156312625, 5733044.268537074, 5749855.380761523, 5766666.492985972, 5783477.605210421, 5800288.71743487, 5817099.829659319, 5833910.941883768, 5850722.054108216, 5867533.166332665, 5884344.278557114, 5901155.390781563, 5917966.503006012, 5934777.615230461, 5951588.72745491, 5968399.8396793585, 5985210.951903808, 6002022.064128256, 6018833.176352706, 6035644.288577154, 6052455.400801603, 6069266.513026052, 6086077.625250501, 6102888.73747495, 6119699.8496993985, 6136510.961923848, 6153322.074148296, 6170133.186372746, 6186944.298597194, 6203755.410821644, 6220566.523046092, 6237377.6352705415, 6254188.74749499, 6270999.8597194385, 6287810.971943888, 6304622.084168336, 6321433.196392786, 6338244.308617234, 6355055.420841684, 6371866.533066132, 6388677.6452905815, 6405488.75751503, 6422299.869739479, 6439110.981963928, 6455922.094188376, 6472733.206412826, 6489544.318637274, 6506355.430861724, 6523166.543086172, 6539977.6553106215, 6556788.76753507, 6573599.879759519, 6590410.991983968, 6607222.104208417, 6624033.216432866, 6640844.328657314, 6657655.440881764, 6674466.553106212, 6691277.665330661, 6708088.77755511, 6724899.889779559, 6741711.002004008, 6758522.114228457, 6775333.226452906, 6792144.338677355, 6808955.450901804, 6825766.563126253, 6842577.675350701, 6859388.78757515, 6876199.899799599, 6893011.012024048, 6909822.124248497, 6926633.236472946, 6943444.348697395, 6960255.460921844, 6977066.573146293, 6993877.685370741, 7010688.797595191, 7027499.909819639, 7044311.022044088, 7061122.134268537, 7077933.246492986, 7094744.358717435, 7111555.4709418835, 7128366.583166333, 7145177.695390781, 7161988.807615231, 7178799.919839679, 7195611.032064129, 7212422.144288577, 7229233.256513026, 7246044.368737475, 7262855.4809619235, 7279666.593186373, 7296477.705410821, 7313288.817635271, 7330099.929859719, 7346911.042084169, 7363722.154308617, 7380533.2665330665, 7397344.378757515, 7414155.490981963, 7430966.603206413, 7447777.715430861, 7464588.827655311, 7481399.939879759, 7498211.052104209, 7515022.164328657, 7531833.2765531065, 7548644.388777555, 7565455.501002004, 7582266.613226453, 7599077.725450902, 7615888.837675351, 7632699.949899799, 7649511.062124249, 7666322.174348697, 7683133.2865731465, 7699944.398797595, 7716755.511022044, 7733566.623246493, 7750377.735470942, 7767188.847695391, 7783999.95991984, 7800811.072144289, 7817622.184368737, 7834433.296593186, 7851244.408817635, 7868055.521042084, 7884866.633266533, 7901677.745490982, 7918488.857715431, 7935299.96993988, 7952111.082164329, 7968922.194388778, 7985733.306613226, 8002544.418837675, 8019355.531062124, 8036166.643286573, 8052977.755511022, 8069788.867735471, 8086599.97995992, 8103411.0921843685, 8120222.204408818, 8137033.316633266, 8153844.428857716, 8170655.541082164, 8187466.653306614, 8204277.765531062, 8221088.877755511, 8237899.98997996, 8254711.1022044085, 8271522.214428858, 8288333.326653306, 8305144.438877756, 8321955.551102204, 8338766.663326654, 8355577.775551102, 8372388.8877755515, 8389200.0])
.range(['#008000ff', '#018100ff', '#038200ff', '#048200ff', '#068300ff', '#078400ff', '#098500ff', '#0a8500ff', '#0c8600ff', '#0d8700ff', '#0f8800ff', '#108800ff', '#128900ff', '#148a00ff', '#158b00ff', '#178b00ff', '#188c00ff', '#1a8d00ff', '#1b8e00ff', '#1d8f00ff', '#1e8f00ff', '#209000ff', '#219100ff', '#239200ff', '#249200ff', '#269300ff', '#289400ff', '#299500ff', '#2b9500ff', '#2c9600ff', '#2e9700ff', '#2f9800ff', '#319900ff', '#329900ff', '#349a00ff', '#359b00ff', '#379c00ff', '#389c00ff', '#3a9d00ff', '#3c9e00ff', '#3d9f00ff', '#3f9f00ff', '#40a000ff', '#42a100ff', '#43a200ff', '#45a200ff', '#46a300ff', '#48a400ff', '#49a500ff', '#4ba600ff', '#4ca600ff', '#4ea700ff', '#50a800ff', '#51a900ff', '#53a900ff', '#54aa00ff', '#56ab00ff', '#57ac00ff', '#59ac00ff', '#5aad00ff', '#5cae00ff', '#5daf00ff', '#5fb000ff', '#60b000ff', '#62b100ff', '#64b200ff', '#65b300ff', '#67b300ff', '#68b400ff', '#6ab500ff', '#6bb600ff', '#6db600ff', '#6eb700ff', '#70b800ff', '#71b900ff', '#73b900ff', '#74ba00ff', '#76bb00ff', '#78bc00ff', '#79bd00ff', '#7bbd00ff', '#7cbe00ff', '#7ebf00ff', '#7fc000ff', '#81c000ff', '#82c100ff', '#84c200ff', '#85c300ff', '#87c300ff', '#88c400ff', '#8ac500ff', '#8cc600ff', '#8dc700ff', '#8fc700ff', '#90c800ff', '#92c900ff', '#93ca00ff', '#95ca00ff', '#96cb00ff', '#98cc00ff', '#99cd00ff', '#9bcd00ff', '#9cce00ff', '#9ecf00ff', '#a0d000ff', '#a1d000ff', '#a3d100ff', '#a4d200ff', '#a6d300ff', '#a7d400ff', '#a9d400ff', '#aad500ff', '#acd600ff', '#add700ff', '#afd700ff', '#b0d800ff', '#b2d900ff', '#b4da00ff', '#b5da00ff', '#b7db00ff', '#b8dc00ff', '#badd00ff', '#bbde00ff', '#bdde00ff', '#bedf00ff', '#c0e000ff', '#c1e100ff', '#c3e100ff', '#c5e200ff', '#c6e300ff', '#c8e400ff', '#c9e400ff', '#cbe500ff', '#cce600ff', '#cee700ff', '#cfe700ff', '#d1e800ff', '#d2e900ff', '#d4ea00ff', '#d5eb00ff', '#d7eb00ff', '#d9ec00ff', '#daed00ff', '#dcee00ff', '#ddee00ff', '#dfef00ff', '#e0f000ff', '#e2f100ff', '#e3f100ff', '#e5f200ff', '#e6f300ff', '#e8f400ff', '#e9f500ff', '#ebf500ff', '#edf600ff', '#eef700ff', '#f0f800ff', '#f1f800ff', '#f3f900ff', '#f4fa00ff', '#f6fb00ff', '#f7fb00ff', '#f9fc00ff', '#fafd00ff', '#fcfe00ff', '#fdfe00ff', '#ffff00ff', '#ffff00ff', '#ffff00ff', '#fffe00ff', '#fffe00ff', '#fffd00ff', '#fffc00ff', '#fffc00ff', '#fffb00ff', '#fffb00ff', '#fffa00ff', '#fffa00ff', '#fff900ff', '#fff900ff', '#fff800ff', '#fff800ff', '#fff700ff', '#fff600ff', '#fff600ff', '#fff500ff', '#fff500ff', '#fff400ff', '#fff400ff', '#fff300ff', '#fff300ff', '#fff200ff', '#fff200ff', '#fff100ff', '#fff000ff', '#fff000ff', '#ffef00ff', '#ffef00ff', '#ffee00ff', '#ffee00ff', '#ffed00ff', '#ffed00ff', '#ffec00ff', '#ffec00ff', '#ffeb00ff', '#ffea00ff', '#ffea00ff', '#ffe900ff', '#ffe900ff', '#ffe800ff', '#ffe800ff', '#ffe700ff', '#ffe700ff', '#ffe600ff', '#ffe600ff', '#ffe500ff', '#ffe500ff', '#ffe400ff', '#ffe300ff', '#ffe300ff', '#ffe200ff', '#ffe200ff', '#ffe100ff', '#ffe100ff', '#ffe000ff', '#ffe000ff', '#ffdf00ff', '#ffdf00ff', '#ffde00ff', '#ffdd00ff', '#ffdd00ff', '#ffdc00ff', '#ffdc00ff', '#ffdb00ff', '#ffdb00ff', '#ffda00ff', '#ffda00ff', '#ffd900ff', '#ffd900ff', '#ffd800ff', '#ffd700ff', '#ffd700ff', '#ffd600ff', '#ffd600ff', '#ffd500ff', '#ffd500ff', '#ffd400ff', '#ffd400ff', '#ffd300ff', '#ffd300ff', '#ffd200ff', '#ffd200ff', '#ffd100ff', '#ffd000ff', '#ffd000ff', '#ffcf00ff', '#ffcf00ff', '#ffce00ff', '#ffce00ff', '#ffcd00ff', '#ffcd00ff', '#ffcc00ff', '#ffcc00ff', '#ffcb00ff', '#ffca00ff', '#ffca00ff', '#ffc900ff', '#ffc900ff', '#ffc800ff', '#ffc800ff', '#ffc700ff', '#ffc700ff', '#ffc600ff', '#ffc600ff', '#ffc500ff', '#ffc400ff', '#ffc400ff', '#ffc300ff', '#ffc300ff', '#ffc200ff', '#ffc200ff', '#ffc100ff', '#ffc100ff', '#ffc000ff', '#ffc000ff', '#ffbf00ff', '#ffbe00ff', '#ffbe00ff', '#ffbd00ff', '#ffbd00ff', '#ffbc00ff', '#ffbc00ff', '#ffbb00ff', '#ffbb00ff', '#ffba00ff', '#ffba00ff', '#ffb900ff', '#ffb900ff', '#ffb800ff', '#ffb700ff', '#ffb700ff', '#ffb600ff', '#ffb600ff', '#ffb500ff', '#ffb500ff', '#ffb400ff', '#ffb400ff', '#ffb300ff', '#ffb300ff', '#ffb200ff', '#ffb100ff', '#ffb100ff', '#ffb000ff', '#ffb000ff', '#ffaf00ff', '#ffaf00ff', '#ffae00ff', '#ffae00ff', '#ffad00ff', '#ffad00ff', '#ffac00ff', '#ffab00ff', '#ffab00ff', '#ffaa00ff', '#ffaa00ff', '#ffa900ff', '#ffa900ff', '#ffa800ff', '#ffa800ff', '#ffa700ff', '#ffa700ff', '#ffa600ff', '#ffa600ff', '#ffa500ff', '#ffa400ff', '#ffa300ff', '#ffa200ff', '#ffa100ff', '#ffa000ff', '#ff9f00ff', '#ff9e00ff', '#ff9d00ff', '#ff9c00ff', '#ff9b00ff', '#ff9a00ff', '#ff9900ff', '#ff9800ff', '#ff9700ff', '#ff9600ff', '#ff9500ff', '#ff9400ff', '#ff9300ff', '#ff9200ff', '#ff9100ff', '#ff9000ff', '#ff8f00ff', '#ff8e00ff', '#ff8d00ff', '#ff8c00ff', '#ff8b00ff', '#ff8a00ff', '#ff8900ff', '#ff8800ff', '#ff8700ff', '#ff8600ff', '#ff8500ff', '#ff8400ff', '#ff8300ff', '#ff8200ff', '#ff8100ff', '#ff8000ff', '#ff7f00ff', '#ff7e00ff', '#ff7d00ff', '#ff7c00ff', '#ff7b00ff', '#ff7a00ff', '#ff7900ff', '#ff7800ff', '#ff7700ff', '#ff7600ff', '#ff7500ff', '#ff7400ff', '#ff7300ff', '#ff7200ff', '#ff7100ff', '#ff7000ff', '#ff6f00ff', '#ff6e00ff', '#ff6d00ff', '#ff6c00ff', '#ff6b00ff', '#ff6a00ff', '#ff6900ff', '#ff6800ff', '#ff6700ff', '#ff6600ff', '#ff6500ff', '#ff6400ff', '#ff6300ff', '#ff6200ff', '#ff6100ff', '#ff6000ff', '#ff5f00ff', '#ff5e00ff', '#ff5d00ff', '#ff5c00ff', '#ff5b00ff', '#ff5a00ff', '#ff5900ff', '#ff5800ff', '#ff5700ff', '#ff5600ff', '#ff5500ff', '#ff5400ff', '#ff5300ff', '#ff5200ff', '#ff5100ff', '#ff5000ff', '#ff4f00ff', '#ff4e00ff', '#ff4d00ff', '#ff4c00ff', '#ff4b00ff', '#ff4a00ff', '#ff4900ff', '#ff4800ff', '#ff4700ff', '#ff4600ff', '#ff4500ff', '#ff4400ff', '#ff4300ff', '#ff4200ff', '#ff4100ff', '#ff4000ff', '#ff3f00ff', '#ff3e00ff', '#ff3d00ff', '#ff3c00ff', '#ff3b00ff', '#ff3a00ff', '#ff3900ff', '#ff3800ff', '#ff3700ff', '#ff3600ff', '#ff3500ff', '#ff3400ff', '#ff3300ff', '#ff3200ff', '#ff3100ff', '#ff3000ff', '#ff2f00ff', '#ff2e00ff', '#ff2d00ff', '#ff2c00ff', '#ff2b00ff', '#ff2a00ff', '#ff2900ff', '#ff2800ff', '#ff2700ff', '#ff2600ff', '#ff2500ff', '#ff2400ff', '#ff2300ff', '#ff2200ff', '#ff2100ff', '#ff2000ff', '#ff1f00ff', '#ff1e00ff', '#ff1d00ff', '#ff1c00ff', '#ff1b00ff', '#ff1a00ff', '#ff1900ff', '#ff1800ff', '#ff1700ff', '#ff1600ff', '#ff1500ff', '#ff1400ff', '#ff1300ff', '#ff1200ff', '#ff1100ff', '#ff1000ff', '#ff0f00ff', '#ff0e00ff', '#ff0d00ff', '#ff0c00ff', '#ff0b00ff', '#ff0a00ff', '#ff0900ff', '#ff0800ff', '#ff0700ff', '#ff0600ff', '#ff0500ff', '#ff0400ff', '#ff0300ff', '#ff0200ff', '#ff0100ff', '#ff0000ff', '#ff0000ff']);
color_map_ed6bf89c44c57ffded09157df15b8dd8.x = d3.scale.linear()
.domain([455.0, 8389200.0])
.range([0, 450 - 50]);
color_map_ed6bf89c44c57ffded09157df15b8dd8.legend = L.control({position: 'topright'});
color_map_ed6bf89c44c57ffded09157df15b8dd8.legend.onAdd = function (map) {var div = L.DomUtil.create('div', 'legend'); return div};
color_map_ed6bf89c44c57ffded09157df15b8dd8.legend.addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
color_map_ed6bf89c44c57ffded09157df15b8dd8.xAxis = d3.svg.axis()
.scale(color_map_ed6bf89c44c57ffded09157df15b8dd8.x)
.orient("top")
.tickSize(1)
.tickValues([455.0, 2796703.3333333335, 5592951.666666667, 8389200.0]);
color_map_ed6bf89c44c57ffded09157df15b8dd8.svg = d3.select(".legend.leaflet-control").append("svg")
.attr("id", 'legend')
.attr("width", 450)
.attr("height", 40);
color_map_ed6bf89c44c57ffded09157df15b8dd8.g = color_map_ed6bf89c44c57ffded09157df15b8dd8.svg.append("g")
.attr("class", "key")
.attr("fill", "black")
.attr("transform", "translate(25,16)");
color_map_ed6bf89c44c57ffded09157df15b8dd8.g.selectAll("rect")
.data(color_map_ed6bf89c44c57ffded09157df15b8dd8.color.range().map(function(d, i) {
return {
x0: i ? color_map_ed6bf89c44c57ffded09157df15b8dd8.x(color_map_ed6bf89c44c57ffded09157df15b8dd8.color.domain()[i - 1]) : color_map_ed6bf89c44c57ffded09157df15b8dd8.x.range()[0],
x1: i < color_map_ed6bf89c44c57ffded09157df15b8dd8.color.domain().length ? color_map_ed6bf89c44c57ffded09157df15b8dd8.x(color_map_ed6bf89c44c57ffded09157df15b8dd8.color.domain()[i]) : color_map_ed6bf89c44c57ffded09157df15b8dd8.x.range()[1],
z: d
};
}))
.enter().append("rect")
.attr("height", 40 - 30)
.attr("x", function(d) { return d.x0; })
.attr("width", function(d) { return d.x1 - d.x0; })
.style("fill", function(d) { return d.z; });
color_map_ed6bf89c44c57ffded09157df15b8dd8.g.call(color_map_ed6bf89c44c57ffded09157df15b8dd8.xAxis).append("text")
.attr("class", "caption")
.attr("y", 21)
.attr("fill", "black")
.text("Population of cities in Europe");
var circle_marker_9076c0edf4fdd5166e551c2cb694b3b1 = L.circleMarker(
[41.3281482, 19.8184435],
{"bubblingMouseEvents": true, "color": "#188c00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#188c00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_96a4a91d0a32965dc02c51e407d9c309 = L.popup({"maxWidth": "100%"});
var html_d99fd46bba430ba2d9e19cec62e38bdc = $(`<div id="html_d99fd46bba430ba2d9e19cec62e38bdc" style="width: 100.0%; height: 100.0%;">Tirana: 270,000 habitants</div>`)[0];
popup_96a4a91d0a32965dc02c51e407d9c309.setContent(html_d99fd46bba430ba2d9e19cec62e38bdc);
circle_marker_9076c0edf4fdd5166e551c2cb694b3b1.bindPopup(popup_96a4a91d0a32965dc02c51e407d9c309)
;
var circle_marker_b222bbda7f7191ed14c8109c4c90bb4a = L.circleMarker(
[42.5069391, 1.5212467],
{"bubblingMouseEvents": true, "color": "#018100ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#018100ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_383575a1368324c9dc80d84b46079802 = L.popup({"maxWidth": "100%"});
var html_18f4fdacc35fd6a9d2bcff29acd4a688 = $(`<div id="html_18f4fdacc35fd6a9d2bcff29acd4a688" style="width: 100.0%; height: 100.0%;">Andorra la Vella: 21,189 habitants</div>`)[0];
popup_383575a1368324c9dc80d84b46079802.setContent(html_18f4fdacc35fd6a9d2bcff29acd4a688);
circle_marker_b222bbda7f7191ed14c8109c4c90bb4a.bindPopup(popup_383575a1368324c9dc80d84b46079802)
;
var circle_marker_a4e1cfbb9d49bb92bcd677901dea42c9 = L.circleMarker(
[48.2083537, 16.3725042],
{"bubblingMouseEvents": true, "color": "#93c900ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#93c900ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_9b8e30c2fdf4f76b9c87161962edbad2 = L.popup({"maxWidth": "100%"});
var html_42952b38608f022d2a3fb7209c99c3d8 = $(`<div id="html_42952b38608f022d2a3fb7209c99c3d8" style="width: 100.0%; height: 100.0%;">Wien: 1,608,144 habitants</div>`)[0];
popup_9b8e30c2fdf4f76b9c87161962edbad2.setContent(html_42952b38608f022d2a3fb7209c99c3d8);
circle_marker_a4e1cfbb9d49bb92bcd677901dea42c9.bindPopup(popup_9b8e30c2fdf4f76b9c87161962edbad2)
;
var circle_marker_2355eaac9f2b2dfdda72b91a1216f144 = L.circleMarker(
[47.0708678, 15.4382786],
{"bubblingMouseEvents": true, "color": "#168b00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#168b00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_0a8fac73ce69a159540761f99f645343 = L.popup({"maxWidth": "100%"});
var html_6be5f51c3b4a50e8a12d984430f618c1 = $(`<div id="html_6be5f51c3b4a50e8a12d984430f618c1" style="width: 100.0%; height: 100.0%;">Graz: 240,967 habitants</div>`)[0];
popup_0a8fac73ce69a159540761f99f645343.setContent(html_6be5f51c3b4a50e8a12d984430f618c1);
circle_marker_2355eaac9f2b2dfdda72b91a1216f144.bindPopup(popup_0a8fac73ce69a159540761f99f645343)
;
var circle_marker_49cc82b2a12decc993868e9148a3be6c = L.circleMarker(
[48.3059078, 14.286198],
{"bubblingMouseEvents": true, "color": "#118900ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#118900ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_9f4a0fd2dc7fa2c8797c2c6bc01491e2 = L.popup({"maxWidth": "100%"});
var html_8f9ee2ebcfc96860d881a87c52fd8da7 = $(`<div id="html_8f9ee2ebcfc96860d881a87c52fd8da7" style="width: 100.0%; height: 100.0%;">Linz: 188,022 habitants</div>`)[0];
popup_9f4a0fd2dc7fa2c8797c2c6bc01491e2.setContent(html_8f9ee2ebcfc96860d881a87c52fd8da7);
circle_marker_49cc82b2a12decc993868e9148a3be6c.bindPopup(popup_9f4a0fd2dc7fa2c8797c2c6bc01491e2)
;
var circle_marker_9eaa2a2bed6f5a85417c9226e160a877 = L.circleMarker(
[47.7981346, 13.0464806],
{"bubblingMouseEvents": true, "color": "#0d8700ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d8700ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_88e13af861dfa12b6f092fe7f782b74a = L.popup({"maxWidth": "100%"});
var html_438fbe9aa212e4c62fa20d0335252a45 = $(`<div id="html_438fbe9aa212e4c62fa20d0335252a45" style="width: 100.0%; height: 100.0%;">Salzburg: 144,247 habitants</div>`)[0];
popup_88e13af861dfa12b6f092fe7f782b74a.setContent(html_438fbe9aa212e4c62fa20d0335252a45);
circle_marker_9eaa2a2bed6f5a85417c9226e160a877.bindPopup(popup_88e13af861dfa12b6f092fe7f782b74a)
;
var circle_marker_45d579c6a1ae9f14289d9034e417ce81 = L.circleMarker(
[47.2654296, 11.3927685],
{"bubblingMouseEvents": true, "color": "#0a8500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a8500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_14b8058f5d04d3adf0869dfb19d711a5 = L.popup({"maxWidth": "100%"});
var html_bdb9145d17cb969b91a2e9305c017cfa = $(`<div id="html_bdb9145d17cb969b91a2e9305c017cfa" style="width: 100.0%; height: 100.0%;">Innsbruck: 111,752 habitants</div>`)[0];
popup_14b8058f5d04d3adf0869dfb19d711a5.setContent(html_bdb9145d17cb969b91a2e9305c017cfa);
circle_marker_45d579c6a1ae9f14289d9034e417ce81.bindPopup(popup_14b8058f5d04d3adf0869dfb19d711a5)
;
var circle_marker_15d94321de888e2ca249738e683fcee5 = L.circleMarker(
[46.623943, 14.3075976],
{"bubblingMouseEvents": true, "color": "#088400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#088400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_41fbd8376fc79ef19bfcb55acadae511 = L.popup({"maxWidth": "100%"});
var html_06841c2eebd9c1fe5fe35f77cba6ae10 = $(`<div id="html_06841c2eebd9c1fe5fe35f77cba6ae10" style="width: 100.0%; height: 100.0%;">Klagenfurt: 91,141 habitants</div>`)[0];
popup_41fbd8376fc79ef19bfcb55acadae511.setContent(html_06841c2eebd9c1fe5fe35f77cba6ae10);
circle_marker_15d94321de888e2ca249738e683fcee5.bindPopup(popup_41fbd8376fc79ef19bfcb55acadae511)
;
var circle_marker_eee085d2bcfccc2fa0c63e22f7c7394f = L.circleMarker(
[51.2211097, 4.3997081],
{"bubblingMouseEvents": true, "color": "#289400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#289400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_ec957f5af16592c9901036cb23617995 = L.popup({"maxWidth": "100%"});
var html_95537102b0fe31b0fb4a8260e949cf6d = $(`<div id="html_95537102b0fe31b0fb4a8260e949cf6d" style="width: 100.0%; height: 100.0%;">Antwerpen: 446,525 habitants</div>`)[0];
popup_ec957f5af16592c9901036cb23617995.setContent(html_95537102b0fe31b0fb4a8260e949cf6d);
circle_marker_eee085d2bcfccc2fa0c63e22f7c7394f.bindPopup(popup_ec957f5af16592c9901036cb23617995)
;
var circle_marker_6d194408be91c76b149143b552c0001a = L.circleMarker(
[51.0538286, 3.7250121],
{"bubblingMouseEvents": true, "color": "#148a00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#148a00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_67204cc2ece4518400c67468e6831752 = L.popup({"maxWidth": "100%"});
var html_5da525b2ad8a5c473142690dc377614a = $(`<div id="html_5da525b2ad8a5c473142690dc377614a" style="width: 100.0%; height: 100.0%;">Gent: 224,180 habitants</div>`)[0];
popup_67204cc2ece4518400c67468e6831752.setContent(html_5da525b2ad8a5c473142690dc377614a);
circle_marker_6d194408be91c76b149143b552c0001a.bindPopup(popup_67204cc2ece4518400c67468e6831752)
;
var circle_marker_607c37e5f1dbfba3476910cbea95ffb9 = L.circleMarker(
[50.4116233, 4.444528],
{"bubblingMouseEvents": true, "color": "#128900ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#128900ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_8697f32e1a0dbe5e1f4cbb3e2f444e2a = L.popup({"maxWidth": "100%"});
var html_4cf42c29d47353cccc0e7ad160ace62c = $(`<div id="html_4cf42c29d47353cccc0e7ad160ace62c" style="width: 100.0%; height: 100.0%;">Charleroi: 200,827 habitants</div>`)[0];
popup_8697f32e1a0dbe5e1f4cbb3e2f444e2a.setContent(html_4cf42c29d47353cccc0e7ad160ace62c);
circle_marker_607c37e5f1dbfba3476910cbea95ffb9.bindPopup(popup_8697f32e1a0dbe5e1f4cbb3e2f444e2a)
;
var circle_marker_a6cce4e9f477b64e39b41df0f3e90da0 = L.circleMarker(
[50.6450944, 5.5736112],
{"bubblingMouseEvents": true, "color": "#108800ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#108800ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_2f2864e2b62588f002325b620bbca5ac = L.popup({"maxWidth": "100%"});
var html_a79ca92ebcc209a87bcdaf68c2587d0a = $(`<div id="html_a79ca92ebcc209a87bcdaf68c2587d0a" style="width: 100.0%; height: 100.0%;">Liège: 185,639 habitants</div>`)[0];
popup_2f2864e2b62588f002325b620bbca5ac.setContent(html_a79ca92ebcc209a87bcdaf68c2587d0a);
circle_marker_a6cce4e9f477b64e39b41df0f3e90da0.bindPopup(popup_2f2864e2b62588f002325b620bbca5ac)
;
var circle_marker_3748b79684d50c9bc8d0bd3ae22a00e0 = L.circleMarker(
[50.8465573, 4.351697],
{"bubblingMouseEvents": true, "color": "#0c8600ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0c8600ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_de728b4c8c96ecf4436f8054a0c2cebc = L.popup({"maxWidth": "100%"});
var html_175577fdf81b7f9a60afbcaedda7ffb0 = $(`<div id="html_175577fdf81b7f9a60afbcaedda7ffb0" style="width: 100.0%; height: 100.0%;">Bruxelles [Brussel]: 133,859 habitants</div>`)[0];
popup_de728b4c8c96ecf4436f8054a0c2cebc.setContent(html_175577fdf81b7f9a60afbcaedda7ffb0);
circle_marker_3748b79684d50c9bc8d0bd3ae22a00e0.bindPopup(popup_de728b4c8c96ecf4436f8054a0c2cebc)
;
var circle_marker_889ec22cab0212f75b727dab312e4485 = L.circleMarker(
[51.2085526, 3.226772],
{"bubblingMouseEvents": true, "color": "#0a8500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a8500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_8a8d6addb8403607cd21336c23315097 = L.popup({"maxWidth": "100%"});
var html_27c78f344f0b4be127a5093fb04d3cac = $(`<div id="html_27c78f344f0b4be127a5093fb04d3cac" style="width: 100.0%; height: 100.0%;">Brugge: 116,246 habitants</div>`)[0];
popup_8a8d6addb8403607cd21336c23315097.setContent(html_27c78f344f0b4be127a5093fb04d3cac);
circle_marker_889ec22cab0212f75b727dab312e4485.bindPopup(popup_8a8d6addb8403607cd21336c23315097)
;
var circle_marker_f018a262a5e17babbe9787e714d5e91f = L.circleMarker(
[50.8676041, 4.3737121],
{"bubblingMouseEvents": true, "color": "#098500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#098500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_120526d47970b56c3034ec8a7731e34b = L.popup({"maxWidth": "100%"});
var html_ec10703de8db08648b8f5b8c7018f760 = $(`<div id="html_ec10703de8db08648b8f5b8c7018f760" style="width: 100.0%; height: 100.0%;">Schaerbeek: 105,692 habitants</div>`)[0];
popup_120526d47970b56c3034ec8a7731e34b.setContent(html_ec10703de8db08648b8f5b8c7018f760);
circle_marker_f018a262a5e17babbe9787e714d5e91f.bindPopup(popup_120526d47970b56c3034ec8a7731e34b)
;
var circle_marker_4fc93c6a4aa140a7a46b0a3dd884dac0 = L.circleMarker(
[50.4665284, 4.8661892],
{"bubblingMouseEvents": true, "color": "#098500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#098500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_feb4ed5dbee15712840fdadfe95200a1 = L.popup({"maxWidth": "100%"});
var html_94fa2786dee7b93d16020b0bfedaea24 = $(`<div id="html_94fa2786dee7b93d16020b0bfedaea24" style="width: 100.0%; height: 100.0%;">Namur: 105,419 habitants</div>`)[0];
popup_feb4ed5dbee15712840fdadfe95200a1.setContent(html_94fa2786dee7b93d16020b0bfedaea24);
circle_marker_4fc93c6a4aa140a7a46b0a3dd884dac0.bindPopup(popup_feb4ed5dbee15712840fdadfe95200a1)
;
var circle_marker_9cb104c00f779f22100bc11b8e7a3d31 = L.circleMarker(
[50.4549568, 3.951958],
{"bubblingMouseEvents": true, "color": "#088400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#088400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_a2c500d315125dcb240a0cc508e787a5 = L.popup({"maxWidth": "100%"});
var html_1039201e84694666e642f053981aee7a = $(`<div id="html_1039201e84694666e642f053981aee7a" style="width: 100.0%; height: 100.0%;">Mons: 90,935 habitants</div>`)[0];
popup_a2c500d315125dcb240a0cc508e787a5.setContent(html_1039201e84694666e642f053981aee7a);
circle_marker_9cb104c00f779f22100bc11b8e7a3d31.bindPopup(popup_a2c500d315125dcb240a0cc508e787a5)
;
var circle_marker_9433a99b0f130c2871184c00058ccaae = L.circleMarker(
[42.6977028, 23.3217359],
{"bubblingMouseEvents": true, "color": "#66b300ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#66b300ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_34da0550b891bcda8ddf0e28d5b90d1d = L.popup({"maxWidth": "100%"});
var html_ec31208d91b281e302177158fd624aae = $(`<div id="html_ec31208d91b281e302177158fd624aae" style="width: 100.0%; height: 100.0%;">Sofija: 1,122,302 habitants</div>`)[0];
popup_34da0550b891bcda8ddf0e28d5b90d1d.setContent(html_ec31208d91b281e302177158fd624aae);
circle_marker_9433a99b0f130c2871184c00058ccaae.bindPopup(popup_34da0550b891bcda8ddf0e28d5b90d1d)
;
var circle_marker_6d0a16bbc4e3bf58239df1e394528af5 = L.circleMarker(
[42.1418541, 24.7499297],
{"bubblingMouseEvents": true, "color": "#1f9000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#1f9000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_652417fe3ec1e83e2f420171ee5bf5b7 = L.popup({"maxWidth": "100%"});
var html_0374160fb1022a3260d3a1d5e6da8e08 = $(`<div id="html_0374160fb1022a3260d3a1d5e6da8e08" style="width: 100.0%; height: 100.0%;">Plovdiv: 342,584 habitants</div>`)[0];
popup_652417fe3ec1e83e2f420171ee5bf5b7.setContent(html_0374160fb1022a3260d3a1d5e6da8e08);
circle_marker_6d0a16bbc4e3bf58239df1e394528af5.bindPopup(popup_652417fe3ec1e83e2f420171ee5bf5b7)
;
var circle_marker_1d1ea02fb6d1660753702dd0f30a2329 = L.circleMarker(
[43.2073873, 27.9166653],
{"bubblingMouseEvents": true, "color": "#1b8e00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#1b8e00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_e23fe122521ef98d1953329b63379582 = L.popup({"maxWidth": "100%"});
var html_df0be87f5f862cbe1239a8973a203817 = $(`<div id="html_df0be87f5f862cbe1239a8973a203817" style="width: 100.0%; height: 100.0%;">Varna: 299,801 habitants</div>`)[0];
popup_e23fe122521ef98d1953329b63379582.setContent(html_df0be87f5f862cbe1239a8973a203817);
circle_marker_1d1ea02fb6d1660753702dd0f30a2329.bindPopup(popup_e23fe122521ef98d1953329b63379582)
;
var circle_marker_9b9e3a6dc8c25b4eab55c403c3d81d28 = L.circleMarker(
[42.4936616, 27.4721276],
{"bubblingMouseEvents": true, "color": "#118900ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#118900ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_9dba104ff558396c4283368e4d149b8a = L.popup({"maxWidth": "100%"});
var html_b1d8e547878b9efbf2c4067f966b410e = $(`<div id="html_b1d8e547878b9efbf2c4067f966b410e" style="width: 100.0%; height: 100.0%;">Burgas: 195,255 habitants</div>`)[0];
popup_9dba104ff558396c4283368e4d149b8a.setContent(html_b1d8e547878b9efbf2c4067f966b410e);
circle_marker_9b9e3a6dc8c25b4eab55c403c3d81d28.bindPopup(popup_9dba104ff558396c4283368e4d149b8a)
;
var circle_marker_859cb93ccf33dab56f6cac3b9391f041 = L.circleMarker(
[43.8350657, 25.95799152318159],
{"bubblingMouseEvents": true, "color": "#0f8800ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0f8800ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_ef440cf6f0b33f4ddd7b9016d664667c = L.popup({"maxWidth": "100%"});
var html_7fc1d6dd9059c20a413c3ae156805ee3 = $(`<div id="html_7fc1d6dd9059c20a413c3ae156805ee3" style="width: 100.0%; height: 100.0%;">Ruse: 166,467 habitants</div>`)[0];
popup_ef440cf6f0b33f4ddd7b9016d664667c.setContent(html_7fc1d6dd9059c20a413c3ae156805ee3);
circle_marker_859cb93ccf33dab56f6cac3b9391f041.bindPopup(popup_ef440cf6f0b33f4ddd7b9016d664667c)
;
var circle_marker_67c46e28daf64f584d17e5a7d140e6f7 = L.circleMarker(
[42.4248111, 25.6257479],
{"bubblingMouseEvents": true, "color": "#0d8700ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d8700ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_edb5f3c781b06a7e698c46baa5235d68 = L.popup({"maxWidth": "100%"});
var html_3c52fd3a437ea754883a011fbb71fb36 = $(`<div id="html_3c52fd3a437ea754883a011fbb71fb36" style="width: 100.0%; height: 100.0%;">Stara Zagora: 147,939 habitants</div>`)[0];
popup_edb5f3c781b06a7e698c46baa5235d68.setContent(html_3c52fd3a437ea754883a011fbb71fb36);
circle_marker_67c46e28daf64f584d17e5a7d140e6f7.bindPopup(popup_edb5f3c781b06a7e698c46baa5235d68)
;
var circle_marker_e07bd33b781fb90d13e8e2bb44c1f659 = L.circleMarker(
[43.4809895, 24.6060664603708],
{"bubblingMouseEvents": true, "color": "#0b8600ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0b8600ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_ee24a53c1163869baf7139f176ef9a7f = L.popup({"maxWidth": "100%"});
var html_5ebc323f3b738c7aa4e20cc2dbe95f8c = $(`<div id="html_5ebc323f3b738c7aa4e20cc2dbe95f8c" style="width: 100.0%; height: 100.0%;">Pleven: 121,952 habitants</div>`)[0];
popup_ee24a53c1163869baf7139f176ef9a7f.setContent(html_5ebc323f3b738c7aa4e20cc2dbe95f8c);
circle_marker_e07bd33b781fb90d13e8e2bb44c1f659.bindPopup(popup_ee24a53c1163869baf7139f176ef9a7f)
;
var circle_marker_f4e01891bd3df6315efa1469d086556f = L.circleMarker(
[42.64169, 26.263428283625732],
{"bubblingMouseEvents": true, "color": "#098500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#098500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_e6c1b79cf4ac650a6428c4c28992916f = L.popup({"maxWidth": "100%"});
var html_b18626866809dc802b26337a9841af1f = $(`<div id="html_b18626866809dc802b26337a9841af1f" style="width: 100.0%; height: 100.0%;">Sliven: 105,530 habitants</div>`)[0];
popup_e6c1b79cf4ac650a6428c4c28992916f.setContent(html_b18626866809dc802b26337a9841af1f);
circle_marker_f4e01891bd3df6315efa1469d086556f.bindPopup(popup_e6c1b79cf4ac650a6428c4c28992916f)
;
var circle_marker_bd1a81c73bbf31e8d705f2672e88136d = L.circleMarker(
[43.66377745, 27.90021225939759],
{"bubblingMouseEvents": true, "color": "#098500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#098500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_f57dce72f2a1f1ea892a69c83d0022cc = L.popup({"maxWidth": "100%"});
var html_b9b51b9d267967288bc7a3a7a6ae3a76 = $(`<div id="html_b9b51b9d267967288bc7a3a7a6ae3a76" style="width: 100.0%; height: 100.0%;">Dobric: 100,399 habitants</div>`)[0];
popup_f57dce72f2a1f1ea892a69c83d0022cc.setContent(html_b9b51b9d267967288bc7a3a7a6ae3a76);
circle_marker_bd1a81c73bbf31e8d705f2672e88136d.bindPopup(popup_f57dce72f2a1f1ea892a69c83d0022cc)
;
var circle_marker_660392fd0cdcdcf871194fd984a6c11d = L.circleMarker(
[43.2703797, 26.9247362],
{"bubblingMouseEvents": true, "color": "#088400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#088400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_7c052715fb9b9891c379d2dd8ed71870 = L.popup({"maxWidth": "100%"});
var html_909dac474282879bdf21d7592dc5a844 = $(`<div id="html_909dac474282879bdf21d7592dc5a844" style="width: 100.0%; height: 100.0%;">Šumen: 94,686 habitants</div>`)[0];
popup_7c052715fb9b9891c379d2dd8ed71870.setContent(html_909dac474282879bdf21d7592dc5a844);
circle_marker_660392fd0cdcdcf871194fd984a6c11d.bindPopup(popup_7c052715fb9b9891c379d2dd8ed71870)
;
var circle_marker_97905e8939909ed316490608e02f7680 = L.circleMarker(
[43.8519774, 18.3866868],
{"bubblingMouseEvents": true, "color": "#209000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#209000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_da8672fdb7ac2be18f04c58aa52c0d7b = L.popup({"maxWidth": "100%"});
var html_cfac036993657cd1d717a1ad4a81010a = $(`<div id="html_cfac036993657cd1d717a1ad4a81010a" style="width: 100.0%; height: 100.0%;">Sarajevo: 360,000 habitants</div>`)[0];
popup_da8672fdb7ac2be18f04c58aa52c0d7b.setContent(html_cfac036993657cd1d717a1ad4a81010a);
circle_marker_97905e8939909ed316490608e02f7680.bindPopup(popup_da8672fdb7ac2be18f04c58aa52c0d7b)
;
var circle_marker_13fbe59a90cd5fd59b9648f0ec60c31d = L.circleMarker(
[44.7720845, 17.1917651],
{"bubblingMouseEvents": true, "color": "#0d8700ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d8700ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_2ac2aacf16e8d733194efe4c4b6e187c = L.popup({"maxWidth": "100%"});
var html_5b3c02f67a6891af7ed7a3842b4591a7 = $(`<div id="html_5b3c02f67a6891af7ed7a3842b4591a7" style="width: 100.0%; height: 100.0%;">Banja Luka: 143,079 habitants</div>`)[0];
popup_2ac2aacf16e8d733194efe4c4b6e187c.setContent(html_5b3c02f67a6891af7ed7a3842b4591a7);
circle_marker_13fbe59a90cd5fd59b9648f0ec60c31d.bindPopup(popup_2ac2aacf16e8d733194efe4c4b6e187c)
;
var circle_marker_3562308fc0aef29472c3969b2434df78 = L.circleMarker(
[44.199828, 17.9093012],
{"bubblingMouseEvents": true, "color": "#088400ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#088400ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_8a69a0bbeff646e7f8b112fded008535 = L.popup({"maxWidth": "100%"});
var html_7b9cfe8e5d98437f507ca1cd4fbb6956 = $(`<div id="html_7b9cfe8e5d98437f507ca1cd4fbb6956" style="width: 100.0%; height: 100.0%;">Zenica: 96,027 habitants</div>`)[0];
popup_8a69a0bbeff646e7f8b112fded008535.setContent(html_7b9cfe8e5d98437f507ca1cd4fbb6956);
circle_marker_3562308fc0aef29472c3969b2434df78.bindPopup(popup_8a69a0bbeff646e7f8b112fded008535)
;
var circle_marker_183590a6c3e776a29a1e79efdfc881b1 = L.circleMarker(
[53.9024716, 27.5618225],
{"bubblingMouseEvents": true, "color": "#99cc00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#99cc00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_36c29b014dd39f21f2f9260c165540aa = L.popup({"maxWidth": "100%"});
var html_6680750763a1743aea5e71cc2d2c9dde = $(`<div id="html_6680750763a1743aea5e71cc2d2c9dde" style="width: 100.0%; height: 100.0%;">Minsk: 1,674,000 habitants</div>`)[0];
popup_36c29b014dd39f21f2f9260c165540aa.setContent(html_6680750763a1743aea5e71cc2d2c9dde);
circle_marker_183590a6c3e776a29a1e79efdfc881b1.bindPopup(popup_36c29b014dd39f21f2f9260c165540aa)
;
var circle_marker_6a25c5f347e7a5a7f9687c9eee4e2eaf = L.circleMarker(
[52.4238936, 31.0131698],
{"bubblingMouseEvents": true, "color": "#2b9600ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#2b9600ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_6a0837e78b6300b0d263b1b3ee7571a5 = L.popup({"maxWidth": "100%"});
var html_1c2c8a1bff15d7707195bd5f01ae4e4d = $(`<div id="html_1c2c8a1bff15d7707195bd5f01ae4e4d" style="width: 100.0%; height: 100.0%;">Gomel: 475,000 habitants</div>`)[0];
popup_6a0837e78b6300b0d263b1b3ee7571a5.setContent(html_1c2c8a1bff15d7707195bd5f01ae4e4d);
circle_marker_6a25c5f347e7a5a7f9687c9eee4e2eaf.bindPopup(popup_6a0837e78b6300b0d263b1b3ee7571a5)
;
var circle_marker_c66d55660ef49abf8a95021d62ced080 = L.circleMarker(
[53.9090245, 30.3429838],
{"bubblingMouseEvents": true, "color": "#209000ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#209000ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_fa2ff6bc2f4f95e694df60da62708b87 = L.popup({"maxWidth": "100%"});
var html_2851a17128545db6f38e97645832799a = $(`<div id="html_2851a17128545db6f38e97645832799a" style="width: 100.0%; height: 100.0%;">Mogiljov: 356,000 habitants</div>`)[0];
popup_fa2ff6bc2f4f95e694df60da62708b87.setContent(html_2851a17128545db6f38e97645832799a);
circle_marker_c66d55660ef49abf8a95021d62ced080.bindPopup(popup_fa2ff6bc2f4f95e694df60da62708b87)
;
var circle_marker_4cbefb9c207952220da7dee19858615f = L.circleMarker(
[55.1930197, 30.2070437],
{"bubblingMouseEvents": true, "color": "#1f8f00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#1f8f00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_9a47755132ee3d1c857144a89a486e1f = L.popup({"maxWidth": "100%"});
var html_30cbd52000982e6b5c3e2f74198d0afd = $(`<div id="html_30cbd52000982e6b5c3e2f74198d0afd" style="width: 100.0%; height: 100.0%;">Vitebsk: 340,000 habitants</div>`)[0];
popup_9a47755132ee3d1c857144a89a486e1f.setContent(html_30cbd52000982e6b5c3e2f74198d0afd);
circle_marker_4cbefb9c207952220da7dee19858615f.bindPopup(popup_9a47755132ee3d1c857144a89a486e1f)
;
var circle_marker_bf4859adb31cfb39ac5f43ca04e87358 = L.circleMarker(
[53.6834599, 23.8342648],
{"bubblingMouseEvents": true, "color": "#1b8e00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#1b8e00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_2f9c17c1e89932fa3eac16ce37f2101f = L.popup({"maxWidth": "100%"});
var html_a5cacda7cafd2b62709376da116d3af3 = $(`<div id="html_a5cacda7cafd2b62709376da116d3af3" style="width: 100.0%; height: 100.0%;">Grodno: 302,000 habitants</div>`)[0];
popup_2f9c17c1e89932fa3eac16ce37f2101f.setContent(html_a5cacda7cafd2b62709376da116d3af3);
circle_marker_bf4859adb31cfb39ac5f43ca04e87358.bindPopup(popup_2f9c17c1e89932fa3eac16ce37f2101f)
;
var circle_marker_b7564b9bb1e9642353fabdec2099c730 = L.circleMarker(
[52.093751, 23.6851851],
{"bubblingMouseEvents": true, "color": "#1a8d00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#1a8d00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_bb98cb6bebd4e57a9f033f8b1c40cc77 = L.popup({"maxWidth": "100%"});
var html_5eaf7cc12cab474e4431d203311b5781 = $(`<div id="html_5eaf7cc12cab474e4431d203311b5781" style="width: 100.0%; height: 100.0%;">Brest: 286,000 habitants</div>`)[0];
popup_bb98cb6bebd4e57a9f033f8b1c40cc77.setContent(html_5eaf7cc12cab474e4431d203311b5781);
circle_marker_b7564b9bb1e9642353fabdec2099c730.bindPopup(popup_bb98cb6bebd4e57a9f033f8b1c40cc77)
;
var circle_marker_b36616f35826b314d1d9be226bb9db2a = L.circleMarker(
[53.1378769, 29.195439314870455],
{"bubblingMouseEvents": true, "color": "#148a00ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#148a00ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_60ac13c5178bf4554d58143a720d2a0c = L.popup({"maxWidth": "100%"});
var html_978e95e49726e6297a557a2e1a1d8ba2 = $(`<div id="html_978e95e49726e6297a557a2e1a1d8ba2" style="width: 100.0%; height: 100.0%;">Bobruisk: 221,000 habitants</div>`)[0];
popup_60ac13c5178bf4554d58143a720d2a0c.setContent(html_978e95e49726e6297a557a2e1a1d8ba2);
circle_marker_b36616f35826b314d1d9be226bb9db2a.bindPopup(popup_60ac13c5178bf4554d58143a720d2a0c)
;
var circle_marker_76e4218fa1709275b8cf736f924d33cc = L.circleMarker(
[53.13217855, 25.97101338172825],
{"bubblingMouseEvents": true, "color": "#0f8800ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0f8800ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_31910202e6b0d68cd6aea67d138b0643 = L.popup({"maxWidth": "100%"});
var html_8ec5e33010265e594ac4738567914ac1 = $(`<div id="html_8ec5e33010265e594ac4738567914ac1" style="width: 100.0%; height: 100.0%;">Baranovitši: 167,000 habitants</div>`)[0];
popup_31910202e6b0d68cd6aea67d138b0643.setContent(html_8ec5e33010265e594ac4738567914ac1);
circle_marker_76e4218fa1709275b8cf736f924d33cc.bindPopup(popup_31910202e6b0d68cd6aea67d138b0643)
;
var circle_marker_ecd2e75d718085fc50ad35163636f9de = L.circleMarker(
[54.2240665, 28.5117849],
{"bubblingMouseEvents": true, "color": "#0d8700ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0d8700ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_01ea5b6e98c3d80d4761bb7840d39d31 = L.popup({"maxWidth": "100%"});
var html_dc07e2d8af2d7b4670a3163bfccfb8ec = $(`<div id="html_dc07e2d8af2d7b4670a3163bfccfb8ec" style="width: 100.0%; height: 100.0%;">Borisov: 151,000 habitants</div>`)[0];
popup_01ea5b6e98c3d80d4761bb7840d39d31.setContent(html_dc07e2d8af2d7b4670a3163bfccfb8ec);
circle_marker_ecd2e75d718085fc50ad35163636f9de.bindPopup(popup_01ea5b6e98c3d80d4761bb7840d39d31)
;
var circle_marker_2d53a360345bc0e258da619c11800e09 = L.circleMarker(
[52.1113862, 26.1025274],
{"bubblingMouseEvents": true, "color": "#0b8600ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0b8600ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_e4699ea758139fdea4b78425c2b888ee = L.popup({"maxWidth": "100%"});
var html_407e6d37fc8517e333c1d06f08ed2194 = $(`<div id="html_407e6d37fc8517e333c1d06f08ed2194" style="width: 100.0%; height: 100.0%;">Pinsk: 130,000 habitants</div>`)[0];
popup_e4699ea758139fdea4b78425c2b888ee.setContent(html_407e6d37fc8517e333c1d06f08ed2194);
circle_marker_2d53a360345bc0e258da619c11800e09.bindPopup(popup_e4699ea758139fdea4b78425c2b888ee)
;
var circle_marker_dfd968aeb47d12c094ae1f7648d4c17d = L.circleMarker(
[54.5119008, 30.4254486],
{"bubblingMouseEvents": true, "color": "#0b8600ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0b8600ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_0b7ec08de3cc6b979eb384c27fe2c19f = L.popup({"maxWidth": "100%"});
var html_13f9655f1d60fc31f3e07479a59620fd = $(`<div id="html_13f9655f1d60fc31f3e07479a59620fd" style="width: 100.0%; height: 100.0%;">Orša: 124,000 habitants</div>`)[0];
popup_0b7ec08de3cc6b979eb384c27fe2c19f.setContent(html_13f9655f1d60fc31f3e07479a59620fd);
circle_marker_dfd968aeb47d12c094ae1f7648d4c17d.bindPopup(popup_0b7ec08de3cc6b979eb384c27fe2c19f)
;
var circle_marker_d8baf06dfc540b2ed59e71a419e428e2 = L.circleMarker(
[52.0475482, 29.2667179],
{"bubblingMouseEvents": true, "color": "#0a8500ff", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#0a8500ff", "fillOpacity": 0.7, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_ddb0ffa7c4471f9d6e6bbcca3ad6447e);
var popup_86924c9fd60432d686f6ba7ba1303684 = L.popup({"maxWidth": "100%"});
var html_264dffb2e8d2545ded27893975034b86 = $(`<div id="html_264dffb2e8d2545ded27893975034b86" style="width: 100.0%; height: 100.0%;">Mozyr: 110,000 habitants</div>`)[0];
popup_86924c9fd60432d686f6ba7ba1303684.setContent(html_264dffb2e8d2545ded27893975034b86);