-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolonial_relationships_map.html
15552 lines (7794 loc) · 683 KB
/
colonial_relationships_map.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/leaflet@1.9.3/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/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/leaflet@1.9.3/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/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_edb04242b47dcdf05a708d5973782ac5 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_edb04242b47dcdf05a708d5973782ac5" ></div>
</body>
<script>
var map_edb04242b47dcdf05a708d5973782ac5 = L.map(
"map_edb04242b47dcdf05a708d5973782ac5",
{
center: [0.0, 0.0],
crs: L.CRS.EPSG3857,
zoom: 2,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_9d614831b82b2d2f102fee82332051ae = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_9d614831b82b2d2f102fee82332051ae.addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_84113b4eee0bc85a4e638aaa7e476902 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_a8dee4407f2ef43e81fd645919ccee9e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_84113b4eee0bc85a4e638aaa7e476902.setIcon(icon_a8dee4407f2ef43e81fd645919ccee9e);
var popup_4a1f188fd7034c974fb0280e0727ce76 = L.popup({"maxWidth": "100%"});
var html_8e6fc75f8fb08bd25226bf66f8e51f29 = $(`<div id="html_8e6fc75f8fb08bd25226bf66f8e51f29" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_4a1f188fd7034c974fb0280e0727ce76.setContent(html_8e6fc75f8fb08bd25226bf66f8e51f29);
marker_84113b4eee0bc85a4e638aaa7e476902.bindPopup(popup_4a1f188fd7034c974fb0280e0727ce76)
;
var marker_a1ee4e867fe9559eaf182f4a59e015d2 = L.marker(
[-0.789275, 113.921327],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_1c4853df1c71a9e6a8555cb6aa6ad680 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_a1ee4e867fe9559eaf182f4a59e015d2.setIcon(icon_1c4853df1c71a9e6a8555cb6aa6ad680);
var popup_d1b24c11a7a2f114669f978920bf4480 = L.popup({"maxWidth": "100%"});
var html_ede36cc6c94665a4ed17245e48b1b829 = $(`<div id="html_ede36cc6c94665a4ed17245e48b1b829" style="width: 100.0%; height: 100.0%;">Colony: Indonesia</div>`)[0];
popup_d1b24c11a7a2f114669f978920bf4480.setContent(html_ede36cc6c94665a4ed17245e48b1b829);
marker_a1ee4e867fe9559eaf182f4a59e015d2.bindPopup(popup_d1b24c11a7a2f114669f978920bf4480)
;
var poly_line_619d28f835ea19f1026ffd83e96e1603 = L.polyline(
[[55.378051, -3.435973], [-0.789275, 113.921327]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_cc08c34bc611cd7529c36ddc99dd21ad = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_df1b467ae6d6e92d10f4a3763308629f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_cc08c34bc611cd7529c36ddc99dd21ad.setIcon(icon_df1b467ae6d6e92d10f4a3763308629f);
var popup_f278948de7a2cd7e42cbdbd93b30abec = L.popup({"maxWidth": "100%"});
var html_6e52c70da2920eebd309c18757cbf4fe = $(`<div id="html_6e52c70da2920eebd309c18757cbf4fe" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_f278948de7a2cd7e42cbdbd93b30abec.setContent(html_6e52c70da2920eebd309c18757cbf4fe);
marker_cc08c34bc611cd7529c36ddc99dd21ad.bindPopup(popup_f278948de7a2cd7e42cbdbd93b30abec)
;
var marker_236c2f907eca38b045688ee57aebdaff = L.marker(
[14.497401, -14.452362],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_97d578e37c33648d36afe347da3871b9 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_236c2f907eca38b045688ee57aebdaff.setIcon(icon_97d578e37c33648d36afe347da3871b9);
var popup_f320846329620ece1b6468d10c53f531 = L.popup({"maxWidth": "100%"});
var html_13acc7e570e2feb365e6aafb0fa4a2da = $(`<div id="html_13acc7e570e2feb365e6aafb0fa4a2da" style="width: 100.0%; height: 100.0%;">Colony: Senegal</div>`)[0];
popup_f320846329620ece1b6468d10c53f531.setContent(html_13acc7e570e2feb365e6aafb0fa4a2da);
marker_236c2f907eca38b045688ee57aebdaff.bindPopup(popup_f320846329620ece1b6468d10c53f531)
;
var poly_line_75bc968e725fd07229fad4f0fbec6dc5 = L.polyline(
[[55.378051, -3.435973], [14.497401, -14.452362]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_aad3ec673c2e0a0510cd3dd54ef80c3c = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_3927fc68b4cc643fed91b916736a6916 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_aad3ec673c2e0a0510cd3dd54ef80c3c.setIcon(icon_3927fc68b4cc643fed91b916736a6916);
var popup_106d9ea0bc9805b031cc246321c6ce05 = L.popup({"maxWidth": "100%"});
var html_909aa13e73ec10a6a73b0ba8b63b2c7d = $(`<div id="html_909aa13e73ec10a6a73b0ba8b63b2c7d" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_106d9ea0bc9805b031cc246321c6ce05.setContent(html_909aa13e73ec10a6a73b0ba8b63b2c7d);
marker_aad3ec673c2e0a0510cd3dd54ef80c3c.bindPopup(popup_106d9ea0bc9805b031cc246321c6ce05)
;
var marker_0f56c017fa95e70e05423610c4a5bab2 = L.marker(
[15.552727, 48.516388],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_a6dbc4010400be6068b90548ee25ff49 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_0f56c017fa95e70e05423610c4a5bab2.setIcon(icon_a6dbc4010400be6068b90548ee25ff49);
var popup_772c8bb058c87d334e4269aff7e60122 = L.popup({"maxWidth": "100%"});
var html_b038f0ff361b990676d67acdb4045cf6 = $(`<div id="html_b038f0ff361b990676d67acdb4045cf6" style="width: 100.0%; height: 100.0%;">Colony: Yemen</div>`)[0];
popup_772c8bb058c87d334e4269aff7e60122.setContent(html_b038f0ff361b990676d67acdb4045cf6);
marker_0f56c017fa95e70e05423610c4a5bab2.bindPopup(popup_772c8bb058c87d334e4269aff7e60122)
;
var poly_line_373ed2f017537e4b6ae32ccd8b448a5e = L.polyline(
[[55.378051, -3.435973], [15.552727, 48.516388]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_f587575dafae4f57bbb455706937feef = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_266df1383aac3e47efe1bc2de62c64c8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_f587575dafae4f57bbb455706937feef.setIcon(icon_266df1383aac3e47efe1bc2de62c64c8);
var popup_3211f8df4074de072b0665e1927e7612 = L.popup({"maxWidth": "100%"});
var html_2f6baa8d10a54b21caa1d9f270644cfc = $(`<div id="html_2f6baa8d10a54b21caa1d9f270644cfc" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_3211f8df4074de072b0665e1927e7612.setContent(html_2f6baa8d10a54b21caa1d9f270644cfc);
marker_f587575dafae4f57bbb455706937feef.bindPopup(popup_3211f8df4074de072b0665e1927e7612)
;
var marker_69f80b9f646efaa3f27dc2a0edde5fd2 = L.marker(
[33.93911, 67.709953],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_105e99787702bd569e37f19dc66a7456 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_69f80b9f646efaa3f27dc2a0edde5fd2.setIcon(icon_105e99787702bd569e37f19dc66a7456);
var popup_c140c952592b5479259027ec32ffe000 = L.popup({"maxWidth": "100%"});
var html_e644d44e4d48969cb2b44c83aae1b9b7 = $(`<div id="html_e644d44e4d48969cb2b44c83aae1b9b7" style="width: 100.0%; height: 100.0%;">Colony: Afghanistan</div>`)[0];
popup_c140c952592b5479259027ec32ffe000.setContent(html_e644d44e4d48969cb2b44c83aae1b9b7);
marker_69f80b9f646efaa3f27dc2a0edde5fd2.bindPopup(popup_c140c952592b5479259027ec32ffe000)
;
var poly_line_6ea138f3a4ece16442559be73e4b95ee = L.polyline(
[[55.378051, -3.435973], [33.93911, 67.709953]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_adb142164666299e709ca7f16a71cf3f = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_c6286d43c6ed011c9179ffe09e95750f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_adb142164666299e709ca7f16a71cf3f.setIcon(icon_c6286d43c6ed011c9179ffe09e95750f);
var popup_7b9d8792993ba0447f7a95e90b6fc264 = L.popup({"maxWidth": "100%"});
var html_cc8f466914c48db18a4f9b254f49e2dc = $(`<div id="html_cc8f466914c48db18a4f9b254f49e2dc" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_7b9d8792993ba0447f7a95e90b6fc264.setContent(html_cc8f466914c48db18a4f9b254f49e2dc);
marker_adb142164666299e709ca7f16a71cf3f.bindPopup(popup_7b9d8792993ba0447f7a95e90b6fc264)
;
var marker_5349709789e8330a68a365f78adf66fe = L.marker(
[18.109581, -77.297508],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_6649ddcce47de8421618c6068bbfc42a = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_5349709789e8330a68a365f78adf66fe.setIcon(icon_6649ddcce47de8421618c6068bbfc42a);
var popup_21095d0c3b1db505a7ce95acbf5e71b1 = L.popup({"maxWidth": "100%"});
var html_a40377588183496518a9b9bfd01d5458 = $(`<div id="html_a40377588183496518a9b9bfd01d5458" style="width: 100.0%; height: 100.0%;">Colony: Jamaica</div>`)[0];
popup_21095d0c3b1db505a7ce95acbf5e71b1.setContent(html_a40377588183496518a9b9bfd01d5458);
marker_5349709789e8330a68a365f78adf66fe.bindPopup(popup_21095d0c3b1db505a7ce95acbf5e71b1)
;
var poly_line_2296aaef4199eb093f86ceae8d4e1f48 = L.polyline(
[[55.378051, -3.435973], [18.109581, -77.297508]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_9d3e2328b01087fcadf182abf674bcce = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_fce83e62d2d9e2d5a13634ce67fb6488 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_9d3e2328b01087fcadf182abf674bcce.setIcon(icon_fce83e62d2d9e2d5a13634ce67fb6488);
var popup_6090ef5d1ed28d17923a9f77bb6341fc = L.popup({"maxWidth": "100%"});
var html_6591a652f212514bbbcdcc5b19beaec0 = $(`<div id="html_6591a652f212514bbbcdcc5b19beaec0" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_6090ef5d1ed28d17923a9f77bb6341fc.setContent(html_6591a652f212514bbbcdcc5b19beaec0);
marker_9d3e2328b01087fcadf182abf674bcce.bindPopup(popup_6090ef5d1ed28d17923a9f77bb6341fc)
;
var marker_2c7b7ff5893e8d547e317f67e6de7afe = L.marker(
[12.865416, -85.207229],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_7635cab0390dd9af7c111d39abfefee1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2c7b7ff5893e8d547e317f67e6de7afe.setIcon(icon_7635cab0390dd9af7c111d39abfefee1);
var popup_8a912f01854760b4da1173122259cebf = L.popup({"maxWidth": "100%"});
var html_4854611cf28aa280133b9510ac9ae077 = $(`<div id="html_4854611cf28aa280133b9510ac9ae077" style="width: 100.0%; height: 100.0%;">Colony: Nicaragua</div>`)[0];
popup_8a912f01854760b4da1173122259cebf.setContent(html_4854611cf28aa280133b9510ac9ae077);
marker_2c7b7ff5893e8d547e317f67e6de7afe.bindPopup(popup_8a912f01854760b4da1173122259cebf)
;
var poly_line_975612e513124acd1d15d3eb105aa41d = L.polyline(
[[55.378051, -3.435973], [12.865416, -85.207229]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_cd3eb469e3accca211062cca58e1ee46 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_7ddfd46a3fc1e10b40d7ed9ec8c41289 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_cd3eb469e3accca211062cca58e1ee46.setIcon(icon_7ddfd46a3fc1e10b40d7ed9ec8c41289);
var popup_a164fdf901864a101b2bf498a4c5bd7a = L.popup({"maxWidth": "100%"});
var html_75ad0353366b01143846d3525cd1cfbf = $(`<div id="html_75ad0353366b01143846d3525cd1cfbf" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_a164fdf901864a101b2bf498a4c5bd7a.setContent(html_75ad0353366b01143846d3525cd1cfbf);
marker_cd3eb469e3accca211062cca58e1ee46.bindPopup(popup_a164fdf901864a101b2bf498a4c5bd7a)
;
var marker_2c4cee2995168be2cc70bb64ed15d911 = L.marker(
[56.130366, -106.346771],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_131636cc72d60bc562f8a08fdc21b2f3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_2c4cee2995168be2cc70bb64ed15d911.setIcon(icon_131636cc72d60bc562f8a08fdc21b2f3);
var popup_81a856dd83440918bfb314e72d4ccbb5 = L.popup({"maxWidth": "100%"});
var html_4e83e2fef9ce32c105f4ac5ec3cae419 = $(`<div id="html_4e83e2fef9ce32c105f4ac5ec3cae419" style="width: 100.0%; height: 100.0%;">Colony: Canada</div>`)[0];
popup_81a856dd83440918bfb314e72d4ccbb5.setContent(html_4e83e2fef9ce32c105f4ac5ec3cae419);
marker_2c4cee2995168be2cc70bb64ed15d911.bindPopup(popup_81a856dd83440918bfb314e72d4ccbb5)
;
var poly_line_da28a818d3a34459435d5e0ec832eff9 = L.polyline(
[[55.378051, -3.435973], [56.130366, -106.346771]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_b1d5cbe63c784c283a2b690c650cbc17 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_acbb18898f4a5cca5e37f43d2a6483db = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_b1d5cbe63c784c283a2b690c650cbc17.setIcon(icon_acbb18898f4a5cca5e37f43d2a6483db);
var popup_24126246134c25c993ae5da30fa7abe7 = L.popup({"maxWidth": "100%"});
var html_c2e881258d19f5749fdf798fff0bb860 = $(`<div id="html_c2e881258d19f5749fdf798fff0bb860" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_24126246134c25c993ae5da30fa7abe7.setContent(html_c2e881258d19f5749fdf798fff0bb860);
marker_b1d5cbe63c784c283a2b690c650cbc17.bindPopup(popup_24126246134c25c993ae5da30fa7abe7)
;
var marker_d57258bd4fe166e6eff9bd03247ceab0 = L.marker(
[12.862807, 30.217636],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_7f972b08b7b5150536c97968d26af3aa = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d57258bd4fe166e6eff9bd03247ceab0.setIcon(icon_7f972b08b7b5150536c97968d26af3aa);
var popup_bd56837fac29101fb9cc6c3421ce1aa4 = L.popup({"maxWidth": "100%"});
var html_8da306b7638ea3a14b83feb67115d388 = $(`<div id="html_8da306b7638ea3a14b83feb67115d388" style="width: 100.0%; height: 100.0%;">Colony: Sudan</div>`)[0];
popup_bd56837fac29101fb9cc6c3421ce1aa4.setContent(html_8da306b7638ea3a14b83feb67115d388);
marker_d57258bd4fe166e6eff9bd03247ceab0.bindPopup(popup_bd56837fac29101fb9cc6c3421ce1aa4)
;
var poly_line_7b0784e6154e5a8863cbc838c774cc51 = L.polyline(
[[55.378051, -3.435973], [12.862807, 30.217636]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_4ecdb2a85b79a240a01b0c16d929ae48 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_7206e19ae86b66479d3b6964770a30df = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_4ecdb2a85b79a240a01b0c16d929ae48.setIcon(icon_7206e19ae86b66479d3b6964770a30df);
var popup_0c9ad25f122549acf76a91df1644946e = L.popup({"maxWidth": "100%"});
var html_a33a53e9e6b01ca6a29b48a691c97aa6 = $(`<div id="html_a33a53e9e6b01ca6a29b48a691c97aa6" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_0c9ad25f122549acf76a91df1644946e.setContent(html_a33a53e9e6b01ca6a29b48a691c97aa6);
marker_4ecdb2a85b79a240a01b0c16d929ae48.bindPopup(popup_0c9ad25f122549acf76a91df1644946e)
;
var marker_87eefdedd52d60737534cdc3630698e2 = L.marker(
[7.946527, -1.023194],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_c2e166fda454d8de2401df053b554531 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_87eefdedd52d60737534cdc3630698e2.setIcon(icon_c2e166fda454d8de2401df053b554531);
var popup_ea1af6ab0c3fbbf265846073554a27b3 = L.popup({"maxWidth": "100%"});
var html_fadc52b8e52e96a22696daef095732f3 = $(`<div id="html_fadc52b8e52e96a22696daef095732f3" style="width: 100.0%; height: 100.0%;">Colony: Ghana</div>`)[0];
popup_ea1af6ab0c3fbbf265846073554a27b3.setContent(html_fadc52b8e52e96a22696daef095732f3);
marker_87eefdedd52d60737534cdc3630698e2.bindPopup(popup_ea1af6ab0c3fbbf265846073554a27b3)
;
var poly_line_416a2b6198d014dff07215444401c766 = L.polyline(
[[55.378051, -3.435973], [7.946527, -1.023194]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_6a963e8a1206f6bbe76e15665ed02271 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_6b7503d954907ab4d7626ad2e1c08adb = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_6a963e8a1206f6bbe76e15665ed02271.setIcon(icon_6b7503d954907ab4d7626ad2e1c08adb);
var popup_b3486409c8e4f7c0d815adb225679bd1 = L.popup({"maxWidth": "100%"});
var html_fd89ceba5bd81772da75a4df38b2bd23 = $(`<div id="html_fd89ceba5bd81772da75a4df38b2bd23" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_b3486409c8e4f7c0d815adb225679bd1.setContent(html_fd89ceba5bd81772da75a4df38b2bd23);
marker_6a963e8a1206f6bbe76e15665ed02271.bindPopup(popup_b3486409c8e4f7c0d815adb225679bd1)
;
var marker_feb9181ba604b0ca23407f304c08add4 = L.marker(
[25.03428, -77.39628],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_b856a94c0dcd3abfc2322ad6d6d71a7b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_feb9181ba604b0ca23407f304c08add4.setIcon(icon_b856a94c0dcd3abfc2322ad6d6d71a7b);
var popup_766390aed7d94aefdf2042ac0691a0d7 = L.popup({"maxWidth": "100%"});
var html_a87bea43837fa005035f23085c83539f = $(`<div id="html_a87bea43837fa005035f23085c83539f" style="width: 100.0%; height: 100.0%;">Colony: Bahamas</div>`)[0];
popup_766390aed7d94aefdf2042ac0691a0d7.setContent(html_a87bea43837fa005035f23085c83539f);
marker_feb9181ba604b0ca23407f304c08add4.bindPopup(popup_766390aed7d94aefdf2042ac0691a0d7)
;
var poly_line_e92d54235c0ad7371cb6d76b65d2a31c = L.polyline(
[[55.378051, -3.435973], [25.03428, -77.39628]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_761dde37577b231384af6a67a514ae0e = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_70051a5035ccdd5f37f67fd4ca98e0e1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_761dde37577b231384af6a67a514ae0e.setIcon(icon_70051a5035ccdd5f37f67fd4ca98e0e1);
var popup_add6370093c9ae9987c1d0fae1b574de = L.popup({"maxWidth": "100%"});
var html_39a399d3224647705616feb3cbf231a7 = $(`<div id="html_39a399d3224647705616feb3cbf231a7" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_add6370093c9ae9987c1d0fae1b574de.setContent(html_39a399d3224647705616feb3cbf231a7);
marker_761dde37577b231384af6a67a514ae0e.bindPopup(popup_add6370093c9ae9987c1d0fae1b574de)
;
var marker_5d75dbdefa4d494ea6f94e39ce0efbad = L.marker(
[-29.609988, 28.233608],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_891103cc0e7cf0536abf2921a95fa71f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_5d75dbdefa4d494ea6f94e39ce0efbad.setIcon(icon_891103cc0e7cf0536abf2921a95fa71f);
var popup_b5cb9439c4066724a8ba00908f9fd1a2 = L.popup({"maxWidth": "100%"});
var html_1f4e38471f0921cc3d06dcad965ee115 = $(`<div id="html_1f4e38471f0921cc3d06dcad965ee115" style="width: 100.0%; height: 100.0%;">Colony: Lesotho</div>`)[0];
popup_b5cb9439c4066724a8ba00908f9fd1a2.setContent(html_1f4e38471f0921cc3d06dcad965ee115);
marker_5d75dbdefa4d494ea6f94e39ce0efbad.bindPopup(popup_b5cb9439c4066724a8ba00908f9fd1a2)
;
var poly_line_24a4a19ac38fa4d9cf51a0bbcdeaf8cd = L.polyline(
[[55.378051, -3.435973], [-29.609988, 28.233608]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_8b777e571a0d537aa15c6610cfc6b3d9 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_ff8c941b2ae9618a4c0690859c719e17 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_8b777e571a0d537aa15c6610cfc6b3d9.setIcon(icon_ff8c941b2ae9618a4c0690859c719e17);
var popup_01e8b6a7d31ec2c594bdb011d2bd3321 = L.popup({"maxWidth": "100%"});
var html_6fe325589d62d611cb29b724374f7791 = $(`<div id="html_6fe325589d62d611cb29b724374f7791" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_01e8b6a7d31ec2c594bdb011d2bd3321.setContent(html_6fe325589d62d611cb29b724374f7791);
marker_8b777e571a0d537aa15c6610cfc6b3d9.bindPopup(popup_01e8b6a7d31ec2c594bdb011d2bd3321)
;
var marker_8e57f088b16388e67d01e3d3300aae4c = L.marker(
[-0.023559, 37.906193],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_c9c6a6c5dd67c5e8ac317685da1077cc = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_8e57f088b16388e67d01e3d3300aae4c.setIcon(icon_c9c6a6c5dd67c5e8ac317685da1077cc);
var popup_38e86297a1bcab22e1016788655d2413 = L.popup({"maxWidth": "100%"});
var html_526f620da285d2d0aa593d7bba9b3e7b = $(`<div id="html_526f620da285d2d0aa593d7bba9b3e7b" style="width: 100.0%; height: 100.0%;">Colony: Kenya</div>`)[0];
popup_38e86297a1bcab22e1016788655d2413.setContent(html_526f620da285d2d0aa593d7bba9b3e7b);
marker_8e57f088b16388e67d01e3d3300aae4c.bindPopup(popup_38e86297a1bcab22e1016788655d2413)
;
var poly_line_f68e26fb2f396398ba0c152622c5ed4d = L.polyline(
[[55.378051, -3.435973], [-0.023559, 37.906193]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_3d405ac8c05b5914e856e8cafd57cfc8 = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_9bf3795950074a87ec78a7413c394a64 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_3d405ac8c05b5914e856e8cafd57cfc8.setIcon(icon_9bf3795950074a87ec78a7413c394a64);
var popup_303162660a6deb96b415c4d578ab7684 = L.popup({"maxWidth": "100%"});
var html_47910a107839068421c108c8fbb66a77 = $(`<div id="html_47910a107839068421c108c8fbb66a77" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_303162660a6deb96b415c4d578ab7684.setContent(html_47910a107839068421c108c8fbb66a77);
marker_3d405ac8c05b5914e856e8cafd57cfc8.bindPopup(popup_303162660a6deb96b415c4d578ab7684)
;
var marker_3c0ed691dc0e4cbf09ba05dbf0c538fa = L.marker(
[4.860416, -58.93018],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_8f9156063156e6c750028f926ceef08f = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_3c0ed691dc0e4cbf09ba05dbf0c538fa.setIcon(icon_8f9156063156e6c750028f926ceef08f);
var popup_2bec7f2ef6a7e90322be61ba38d8ce7d = L.popup({"maxWidth": "100%"});
var html_f01aaf34feb6aafc82768d032631538e = $(`<div id="html_f01aaf34feb6aafc82768d032631538e" style="width: 100.0%; height: 100.0%;">Colony: Guyana</div>`)[0];
popup_2bec7f2ef6a7e90322be61ba38d8ce7d.setContent(html_f01aaf34feb6aafc82768d032631538e);
marker_3c0ed691dc0e4cbf09ba05dbf0c538fa.bindPopup(popup_2bec7f2ef6a7e90322be61ba38d8ce7d)
;
var poly_line_d6c300624bc2e8b93071682457965719 = L.polyline(
[[55.378051, -3.435973], [4.860416, -58.93018]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_1494169b2a6375daf9dd5abe2923605a = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_c512f829cccfb953b9acadb637588411 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_1494169b2a6375daf9dd5abe2923605a.setIcon(icon_c512f829cccfb953b9acadb637588411);
var popup_17d151715bfb33e083df6a69c89aa62f = L.popup({"maxWidth": "100%"});
var html_411378ba8070582ad390334604b2ab05 = $(`<div id="html_411378ba8070582ad390334604b2ab05" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_17d151715bfb33e083df6a69c89aa62f.setContent(html_411378ba8070582ad390334604b2ab05);
marker_1494169b2a6375daf9dd5abe2923605a.bindPopup(popup_17d151715bfb33e083df6a69c89aa62f)
;
var marker_d8f723f5d3491d83bf0f36943f602582 = L.marker(
[17.189877, -88.49765],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_caf7eaa5c108661ca770e8777da64d50 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_d8f723f5d3491d83bf0f36943f602582.setIcon(icon_caf7eaa5c108661ca770e8777da64d50);
var popup_e67505f2cf6f26c4d3da83fb06f8638e = L.popup({"maxWidth": "100%"});
var html_6a66a2d18e287c8ea12d56e91a347e90 = $(`<div id="html_6a66a2d18e287c8ea12d56e91a347e90" style="width: 100.0%; height: 100.0%;">Colony: Belize</div>`)[0];
popup_e67505f2cf6f26c4d3da83fb06f8638e.setContent(html_6a66a2d18e287c8ea12d56e91a347e90);
marker_d8f723f5d3491d83bf0f36943f602582.bindPopup(popup_e67505f2cf6f26c4d3da83fb06f8638e)
;
var poly_line_e8f86345e98d68faa0708327a0777da0 = L.polyline(
[[55.378051, -3.435973], [17.189877, -88.49765]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_8cd9b7bfab1ebf6394f644d0214bbaec = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_437e2c4255ecd4315676596fbf204828 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_8cd9b7bfab1ebf6394f644d0214bbaec.setIcon(icon_437e2c4255ecd4315676596fbf204828);
var popup_fba29872101891a26c83a0b0dedf3b39 = L.popup({"maxWidth": "100%"});
var html_4a8faab0548032a2f2e6403c1295a61d = $(`<div id="html_4a8faab0548032a2f2e6403c1295a61d" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_fba29872101891a26c83a0b0dedf3b39.setContent(html_4a8faab0548032a2f2e6403c1295a61d);
marker_8cd9b7bfab1ebf6394f644d0214bbaec.bindPopup(popup_fba29872101891a26c83a0b0dedf3b39)
;
var marker_1fae34fa45aaca96c9deaea6cc760d53 = L.marker(
[15.414999, -61.370976],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_28ca0764b4e513e2513ea3e2395d4305 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_1fae34fa45aaca96c9deaea6cc760d53.setIcon(icon_28ca0764b4e513e2513ea3e2395d4305);
var popup_d190e54014d5f1bebdbc8c669eb655bc = L.popup({"maxWidth": "100%"});
var html_da4466e72d14c4dc44f1a2a352029c61 = $(`<div id="html_da4466e72d14c4dc44f1a2a352029c61" style="width: 100.0%; height: 100.0%;">Colony: Dominica</div>`)[0];
popup_d190e54014d5f1bebdbc8c669eb655bc.setContent(html_da4466e72d14c4dc44f1a2a352029c61);
marker_1fae34fa45aaca96c9deaea6cc760d53.bindPopup(popup_d190e54014d5f1bebdbc8c669eb655bc)
;
var poly_line_d15b8bf2b721807ab25d5ecb476c32d5 = L.polyline(
[[55.378051, -3.435973], [15.414999, -61.370976]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var marker_1bdfb03e7ab2c8e92fff60643e6a537b = L.marker(
[55.378051, -3.435973],
{}
).addTo(map_edb04242b47dcdf05a708d5973782ac5);
var icon_9a3ab38b84952142e72902fc676cf980 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_1bdfb03e7ab2c8e92fff60643e6a537b.setIcon(icon_9a3ab38b84952142e72902fc676cf980);
var popup_0b53d91e3d10b2ffbcf80a8eeb81b5fe = L.popup({"maxWidth": "100%"});
var html_e6b7fd322eb60625258a1bf3ec608233 = $(`<div id="html_e6b7fd322eb60625258a1bf3ec608233" style="width: 100.0%; height: 100.0%;">Colonizer: United Kingdom*</div>`)[0];
popup_0b53d91e3d10b2ffbcf80a8eeb81b5fe.setContent(html_e6b7fd322eb60625258a1bf3ec608233);
marker_1bdfb03e7ab2c8e92fff60643e6a537b.bindPopup(popup_0b53d91e3d10b2ffbcf80a8eeb81b5fe)
;
var marker_bb9721aa27544baeb95ecaa1583da481 = L.marker(
[17.357822, -62.782998],