-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1928 lines (1879 loc) · 115 KB
/
index.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>British Citizen Tourist Map</title>
<meta name="description" content="A map of entry requirements for British citizens who want to travel the world.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@NathOnTravels">
<meta name="twitter:creator" content="@NathOnTravels">
<meta name="twitter:title" content="British Citizen Tourist Map">
<meta name="twitter:description"
content="A map of entry requirements for British citizens who want to travel the world.">
<meta name="twitter:image" content="https://touristmap.travel.nathan.sx/assets/images/twitter/card.png">
<link rel="apple-touch-icon" href="/assets/images/favicons/apple-touch-icon.png" sizes="180x180">
<link rel="icon" href="/assets/images/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="/assets/images/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
<link rel="manifest" href="/assets/images/favicons/manifest.json">
<!-- <link rel="mask-icon" href="/assets/images/favicons/safari-pinned-tab.svg" color="#0f2744"> -->
<link rel="icon" href="/favicon.png">
<meta name="msapplication-config" content="/assets/images/favicons/browserconfig.xml">
<meta name="theme-color" content="#0f2744">
<link rel="stylesheet" href="/assets/css/responsive.css">
<link rel="stylesheet" href="/assets/css/jquery-jvectormap.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/balloon-css/0.5.0/balloon.min.css"
integrity="sha256-NBgeI1K43CnPptaOS0A2PfGfTg+8gtmTyDEe7GmiP64=" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://code.ionicframework.com/ionicons/1.3.3/css/ionicons.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="/assets/js/jquery-jvectormap-2.0.5.min.js"></script>
<script src="/assets/js/jquery-jvectormap-world-mill.js"></script>
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: #0f2744;
font-size: 16px;
}
a {
text-decoration: none;
color: #fff;
}
#header {
padding: 10px;
color: #fff;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #0a1b2f;
}
#header-right {
float: right;
}
@media screen and (max-width: 991px) {
#header {
text-align: center !important;
}
}
#title {
font-weight: bold;
}
#subtitle {
font-size: 14px;
}
#notice {
display: none;
font-size: 14px;
padding: 5px;
color: #fff;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: #ff851b;
text-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
#vmap {
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 500px !important;
}
}
@media screen and (min-width: 1440px) {
#vmap {
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 800px !important;
}
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
#vmap {
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 500px !important;
}
}
@media screen and (max-width: 767px) {
#vmap {
left: 0;
right: 0;
top: 0;
bottom: 0;
height: 500px !important;
}
.jvectormap-zoomin,
.jvectormap-zoomout {
visibility: hidden;
display: none;
}
}
@media screen and (max-width: 767px) and (orientation:landscape) {
#header {
display: none !important;
}
#notice {
display: none !important;
}
#footer {
display: none !important;
}
}
#footer {
padding: 10px;
color: #fff;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
position: fixed;
bottom: 0;
width: 100%;
background-color: #0a1b2f;
}
#credit {
float: right;
margin-right: 20px;
}
@media screen and (max-width: 1200px) {
#credit {
float: none;
text-align: center;
clear: left;
padding-top: 5px;
}
}
.square {
float: left;
width: 20px;
height: 20px;
}
.square-wrapper {
float: left;
}
.square-visa {
background-color: #e74c3c;
}
.square-evisa {
background-color: #ff851b;
}
.square-no-visa {
background-color: #2ecc71;
}
.square-no-visa-less-than-one-month {
background-color: #3498db;
}
.square-visa-on-arrival {
background-color: #9b59b6;
}
#vmap {
width: 100%;
height: 300px;
position: absolute;
margin: auto;
max-width: 100%;
max-height: 100%;
overflow: auto;
}
#noscript {
text-align: center;
color: #fff;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
width: 100%;
height: 100px;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
max-width: 100%;
max-height: 100%;
overflow: auto;
}
</style>
<script>
$(function () {
var isMobile = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
var no_visa = "#2ecc71";
var no_visa_less_than_one_month = "#3498db";
var visa = "#e74c3c";
var evisa = "#ff851b";
var visa_on_arrival = "#9b59b6";
var gone = "#000000";
var data = {
"AE": visa_on_arrival,
"AF": visa,
"AL": no_visa,
"AM": no_visa,
"AO": no_visa_less_than_one_month,
"AR": no_visa,
"AT": no_visa,
"AU": evisa,
"AZ": evisa,
"BA": no_visa,
"BD": visa_on_arrival,
"BE": no_visa,
"BF": visa_on_arrival,
"BG": no_visa,
"BI": visa_on_arrival,
"BJ": evisa,
"BN": no_visa,
"BO": no_visa,
"BR": no_visa,
"BS": no_visa_less_than_one_month,
"BT": evisa,
"BW": no_visa,
"BY": no_visa_less_than_one_month,
"BZ": no_visa_less_than_one_month,
"CA": evisa,
"CD": visa,
"CF": visa,
"CG": visa,
"CH": no_visa,
"CI": evisa,
"CL": no_visa,
"CM": visa,
"CN": visa,
"CO": no_visa,
"CR": no_visa,
"CU": visa,
"CY": no_visa,
"CZ": no_visa,
"DE": no_visa,
"DJ": evisa,
"DK": no_visa,
"DO": no_visa_less_than_one_month,
"DZ": visa,
"EC": no_visa,
"EE": no_visa,
"EG": visa_on_arrival,
"EH": no_visa,
"ER": visa,
"ES": no_visa,
"ET": evisa,
"FI": no_visa,
"FJ": no_visa,
"FK": no_visa,
"FR": no_visa,
"GA": evisa,
"GB": no_visa,
"GE": no_visa,
"GH": visa,
"GL": no_visa,
"GM": no_visa_less_than_one_month,
"GN": evisa,
"GQ": evisa,
"GR": no_visa,
"GT": no_visa,
"GW": visa_on_arrival,
"GY": no_visa,
"HN": visa,
"HR": no_visa,
"HT": no_visa,
"HU": no_visa,
"ID": visa_on_arrival,
"IE": no_visa,
"IL": evisa,
"IN": evisa,
"IQ": visa_on_arrival,
"IR": visa,
"IS": no_visa,
"IT": no_visa,
"JM": no_visa,
"JO": visa_on_arrival,
"JP": no_visa,
"KE": evisa,
"KG": no_visa,
"KH": visa_on_arrival,
"KP": evisa,
"KR": evisa,
"KW": visa_on_arrival,
"KZ": no_visa_less_than_one_month,
"LA": visa_on_arrival,
"LB": visa_on_arrival,
"LK": evisa,
"LR": visa,
"LS": no_visa_less_than_one_month,
"LT": no_visa,
"LU": no_visa,
"LV": no_visa,
"LY": evisa,
"MA": no_visa,
"MD": no_visa,
"ME": no_visa,
"MG": no_visa_less_than_one_month,
"MK": no_visa,
"ML": visa,
"MM": evisa,
"MN": no_visa_less_than_one_month,
"MR": evisa,
"MT": no_visa,
"MW": no_visa_less_than_one_month,
"MX": no_visa,
"MY": no_visa,
"MZ": no_visa_less_than_one_month,
"NA": no_visa,
"NC": no_visa,
"NE": visa,
"NG": visa,
"NI": no_visa,
"NL": no_visa,
"NO": no_visa,
"NP": visa_on_arrival,
"NZ": evisa,
"OM": no_visa_less_than_one_month,
"PA": no_visa,
"PE": no_visa,
"PG": visa_on_arrival,
"PH": no_visa_less_than_one_month,
"PK": evisa,
"PL": no_visa,
"PR": evisa,
"PS": no_visa,
"PT": no_visa,
"PY": no_visa,
"QA": no_visa_less_than_one_month,
"RO": no_visa,
"RS": no_visa,
"RU": visa,
"RW": visa_on_arrival,
"SA": visa_on_arrival,
"SB": no_visa,
"SD": visa,
"SE": no_visa,
"SI": no_visa,
"SK": no_visa,
"SL": visa_on_arrival,
"SN": no_visa,
"SO": visa_on_arrival,
"SS": evisa,
"SR": evisa,
"SV": no_visa,
"SY": evisa,
"SZ": no_visa_less_than_one_month,
"TD": evisa,
"TF": visa,
"TG": evisa,
"TH": no_visa,
"TJ": evisa,
"TL": visa_on_arrival,
"TM": visa,
"TN": no_visa,
"TR": no_visa,
"TT": no_visa,
"TW": no_visa,
"TZ": visa_on_arrival,
"UA": no_visa,
"UG": evisa,
"US": evisa,
"UY": no_visa,
"UZ": no_visa_less_than_one_month,
"VE": visa_on_arrival,
"VN": no_visa,
"VU": no_visa_less_than_one_month,
"XC": no_visa,
"XK": no_visa,
"XS": visa_on_arrival,
"YE": visa,
"ZA": no_visa,
"ZM": no_visa,
"ZW": visa_on_arrival
};
var markers = [{
latLng: [41.90, 12.45],
name: 'Vatican City: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [43.73, 7.41],
name: 'Monaco: Allowed to stay 90 days without a visa. Immigration is handled by France for Monaco.',
style: {
fill: no_visa
}
}, {
latLng: [-0.52, 166.93],
name: 'Nauru: Need a visa.',
style: {
fill: visa
}
}, {
latLng: [-8.51, 179.21],
name: 'Tuvalu: Free visa on arrival.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [43.93, 12.46],
name: 'San Marino: You don\'t need a visa to visit San Marino. If you\'re staying in San Marino for less than 30 days in an official residency (ie hotel or bed and breakfast) you don\'t need a \'permesso di soggiorno turistico\'. However, if you\'re staying privately, you\'ll need to report your stay to the Ufficio Stranieri (Foreigners\' Office) of the local Gendarmerie within 24 hours of arrival.',
style: {
fill: no_visa
}
}, {
latLng: [47.14, 9.52],
name: 'Liechtenstein: Allowed to stay for up to 90 days in any 180-day period (entire Schengen area) without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [7.11, 171.06],
name: 'Marshall Islands: Allowed to stay for up to 90 days in any 180-day period without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [17.3, -62.73],
name: 'Saint Kitts and Nevis: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [3.2, 73.22],
name: 'Maldives: 30 day visa on arrival available provided you hold a valid onward or return ticket and enough funds to cover your stay. With the exception of the capital Malé, tourists are generally prohibited from visiting non-resort islands without the express permission of the Government of Maldives.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [35.88, 14.5],
name: 'Malta: Allowed to stay for up to 90 days in any 180-day period (entire Schengen area) without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [12.05, -61.75],
name: 'Grenada: No visa needed. On entry, you will be granted a specified period to stay.',
style: {
fill: no_visa
}
}, {
latLng: [13.16, -61.23],
name: 'Saint Vincent and the Grenadines: No visa needed. On entry, you will be granted a specified period to stay.',
style: {
fill: no_visa
}
}, {
latLng: [13.16, -59.55],
name: 'Barbados: No visa needed. On entry, you will be granted a specified period to stay.',
style: {
fill: no_visa
}
}, {
latLng: [17.11, -61.85],
name: 'Antigua and Barbuda: Allowed to stay up to 6 months without a visa. On entry, you will be granted a specified period to stay.',
style: {
fill: no_visa
}
}, {
latLng: [-4.61, 55.45],
name: 'Seychelles: Although Seychelles is a visa-free country, you must hold an onward or return ticket, have confirmed accommodation, and have sufficient funds for duration of your stay.',
style: {
fill: no_visa
}
}, {
latLng: [7.35, 134.46],
name: 'Palau: Visas are not required for British nationals visiting for periods of up to 30 days. Extensions of stay are not automatically granted. On arrival you can ask for entry to be granted for all the time you believe you will need. Consult the Bureau of Immigration before you travel if you are likely to seek an extension of stay.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [42.5, 1.51],
name: 'Andorra: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [14.01, -60.98],
name: 'Saint Lucia: No visa needed. On entry, you will be granted a specified period to stay.',
style: {
fill: no_visa
}
}, {
latLng: [6.91, 158.18],
name: 'Federated States of Micronesia: Tourist/visitor visas are issued on arrival and the duration of stay is authorised for the number of days requested. You may extend your visa by up to 30 days. Subsequent extensions may be granted for another 30 days but the total time of stay shall not exceed 90 days. There is no fee charged for an extension of stay.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [1.3, 103.8],
name: 'Singapore: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [1.46, 173.03],
name: 'Kiribati: Allowed to stay 120 days without a visa provided.',
style: {
fill: no_visa
}
}, {
latLng: [-21.13, -175.2],
name: 'Tonga: British passport holders visiting Tonga as a tourist or on business are normally given permission to enter the country for up to 30 days. You should be able to provide an onward air or sea ticket, adequate funds and relevant health certificates. If you wish to extend your stay you must obtain permission from the Principal Immigration Officer.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [15.3, -61.38],
name: 'Dominica: No visa needed. On entry, you will be granted a specified period to stay.',
style: {
fill: no_visa
}
}, {
latLng: [-20.2, 57.5],
name: 'Mauritius: Allowed to stay 60 days without a visa. You\'ll need to be able to provide evidence of onward or return travel.',
style: {
fill: no_visa
}
}, {
latLng: [26.02, 50.55],
name: 'Bahrain: You can get a visa on arrival, but to ensure a smoother process at the border in Bahrain it is best to get a visa in advance, either online or from the Embassy of the Kingdom of Bahrain in the UK. You may be asked to provide evidence of onward or return travel.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [0.33, 6.73],
name: 'São Tomé and Príncipe: Allowed to visit for up to 15 days without a visa. It is possible to obtain an eVisa.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [22.2, 114.1],
name: 'Hong Kong: Allowed to stay 6 months without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [61.89, -6.91],
name: 'Faroe Islands: No visa needed for tourism, but you should get a work and residence permit before entry if you intend to live and work there.',
style: {
fill: no_visa
}
}, {
latLng: [-11.6, 43.3],
name: 'Comoros: Visas can be obtained on arrival at Hahaya airport, or at other points of entry for €30.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [-21.1, 55.5],
name: 'Réunion: Réunion is an Overseas Department of France. If your passport describes you as a British Citizen you will not need a visa to enter Réunion.',
style: {
fill: no_visa
}
}, {
latLng: [-24.3, -128.3],
name: 'Pitcairn Island: If you are an adult wishing to stay on Pitcairn for under two weeks you do not require a visa or licence prior to arrival. The Immigration Officer assesses applications for short-term visitors to Pitcairn upon arrival. If you wish to stay on Pitcairn for two weeks or more you must contact the Pitcairn Island Office in Auckland before making any plans to travel. Without a valid "licence to land and reside", access to Pitcairn will not be granted.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [32.2, -64.7],
name: 'Bermuda: Allowed to stay 90 days without a visa, but you must book accommodation before you arrive. It is extendable up to 6 months.',
style: {
fill: no_visa
}
}, {
latLng: [-9.2, -171.8],
name: 'Tokelau: All visitors must obtain a permit to enter Tokelau from the Tokelau Apia Liaison Office in Apia, at least 2 weeks prior to travel. A permit from the Samoan Immigration Authorities is required to leave and re-enter Samoa.',
style: {
fill: visa
}
}, {
latLng: [19.3, -81.2],
name: 'Cayman Islands: No visa needed.',
style: {
fill: no_visa
}
}, {
latLng: [21.6, -71.7],
name: 'Turks and Caicos: Usually allowed to stay up to 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [18.4, -64.6],
name: 'British Virgin Islands: British nationals don\'t need a visa to visit the British Virgin Islands (BVI). It\'s normal practice for BVI immigration authorities to issue you with a one-month entry stamp on arrival. You may also be granted an extension for one further month. Extensions for up to 6 months are granted on the discretion of the Chief Immigration Officer provided that the individual can show proof of independent financial means. You may need to provide evidence of accommodation and your plans to leave the BVI at the end of your stay.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [16.7, -62.1],
name: 'Montserrat: No visa needed.',
style: {
fill: no_visa
}
}, {
latLng: [16.2, -61.5],
name: 'Guadeloupe: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [14.6, -61.0],
name: 'Martinique: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [18.2, -63.0],
name: 'Anguilla: Allowed to stay 90 days without a visa but accommodation must be booked prior to arrival.',
style: {
fill: no_visa
}
}, {
latLng: [12.5, -69.9],
name: 'Aruba: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [12.1, -68.9],
name: 'Curaçao: British nationals do not require a visa for stays of up to 90 days in a calendar year. Extensions beyond 90 days can be requested at Immigration. Tourists who apply for an extension beyond the 90days must have travel insurance for the duration of their extended stay.',
style: {
fill: no_visa
}
}, {
latLng: [12.2, -68.2],
name: 'Bonaire: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-17.6, -149.4],
name: 'French Polynesia: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-14.2, -178.1],
name: 'Wallis and Futuna: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-21.2, -159.7],
name: 'Cook Islands: Allowed to stay up to 31 days without a visa.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [-14.3, -170.6],
name: 'American Samoa: If you are a British passport holder you don\'t need a visa. You will normally be given permission to enter for up to 30 days provided you have an onward air or sea ticket and any relevant health certificates.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [22.1, 113.5],
name: 'Macau: Allowed to stay 6 months without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-12.8, 45.1],
name: 'Mayotte: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-13.7, -172.1],
name: 'Samoa: Visitor\'s Permit on arrival.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [-54.4, -36.5],
name: 'South Georgia and the South Sandwich Islands: Access is restricted and visitor permits are required. Visas aren\'t required, but you must apply to the Commissioner for permission to land on the Islands before you travel regardless of your nationality or mode of transport.',
style: {
fill: visa
}
}, {
latLng: [-15.9, -5.7],
name: 'Saint Helena: An Entry Permit costs £20 and allows a stay of up to 183 days. You will need to provide evidence of a return ticket, or funds for a return ticket, medical insurance, adequate accommodation and sufficient funds for your stay.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [-7.9, -14.3],
name: 'Ascension: You must get permission to visit Ascension Island from the Administrator before travel. You must be able to produce evidence of holding comprehensive travel and medical insurance. You must also be able to produce on request evidence of a return air ticket (or other evidence of pre-paid onward travel), pre-booked accommodation and sufficient funds to cover your stay on the island. It is possible to obtain an eVisa.',
style: {
fill: evisa
}
}, {
latLng: [-37.1, -12.2],
name: 'Tristan da Cunha: You will need the prior permission of the Island Council to land on Tristan. You must have a confirmed and fully paid return passage; comprehensive travel and medical insurance that cover the cost of medical treatment and evacuation to Cape Town; and sufficient funds to cover the cost of your visit. A small landing fee is payable on arrival at the Island.',
style: {
fill: visa
}
}, {
latLng: [18.0, -63.0],
name: 'St Maarten: Allowed to stay 90 days without a visa. There are no border formalities when crossing St Maarten from the Dutch side to the French side.',
style: {
fill: no_visa
}
}, {
latLng: [46.8, -56.3],
name: 'St Pierre & Miquelon: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [36.1, -5.3],
name: 'Gibraltar: British nationals don\'t need a visa to enter Gibraltar.',
style: {
fill: no_visa
}
}, {
latLng: [17.4, -62.9],
name: 'St Eustatius: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [17.6, -63.2],
name: 'Saba: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [11.7, 92.6],
name: 'Andaman & Nicobar: The Andaman and Nicobar Islands are territories of India. You need a valid Indian visa to visit the Andaman islands. A Restricted Area Permit is issued free of charge upon arrival at Port Blair. Entry to the Nicobar islands is not permitted to tourists. North Sentinel Island is home to the Sentinelese people who reject any contact with the outside world and entry to the island is not permitted.',
style: {
fill: visa
}
}, {
latLng: [45.3, 34.2],
name: 'Crimea: Crimea is internationally recognised as part of Ukraine. Crimea was annexed by Russia in 2014 and as of March 2018 remains under its control. As such, to enter Crimea you are required to obtain a Russian visa.',
style: {
fill: visa
}
}, {
latLng: [15.1, -23.6],
name: 'Capo Verde: You can enter Capo Verde as a visitor for stays of up to 30 days without a visa, but you need to register with the Capo Verde authorities on the EASE website before travelling.',
style: {
fill: evisa
}
}, {
latLng: [-7.3, 72.4],
name: 'British Indian Ocean Territory: Access to the British Indian Ocean Territory is restricted and a permit is required in advance of travel. There are no commercial flights and permits for yachts are only issued to allow safe passage through the Indian Ocean (outer islands only). Access to Diego Garcia is only permitted to those with connections either to the military facility or to the Territory\'s Administration.',
style: {
fill: visa
}
}, {
latLng: [-27.1, -109.3],
name: 'Easter Island: Easter Island is part of Chile. Allowed to stay 90 days without a visa providing you have a flight ticket showing you will leave the country within 90 days.',
style: {
fill: no_visa
}
}, {
latLng: [-0.6, -90.5],
name: 'Galápagos Islands: The Galápagos Islands are a part of Ecuador. Online pre-registration is required. Transit Control Card must also be obtained at the airport prior to departure.',
style: {
fill: evisa
}
}, {
latLng: [37.7, -25.6],
name: 'The Azores: The Azores is an autonomous region of Portugal. Allowed to stay for up to 90 days in any 180-day period (entire Schengen area) without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-10.4, 105.6],
name: 'Christmas Island: Christmas Island is an Australian external territory. Passports and visas are not required when travelling to Christmas Island from the Australian mainland. However, photographic identification, such as an Australian Driver\'s Licence or Proof of Age card, must be produced for each passenger (including children) for clearance through Customs and Immigration. A valid passport meets this identification requirement and is the preferred means of documentation to expedite passenger processing and provide passenger identification in the case of a flight diversion to another country. Normal Australian Customs and Immigration procedures apply when entry is made from outside Australia.',
style: {
fill: evisa
}
}, {
latLng: [-12.1, 96.8],
name: 'Cocos (Keeling) Islands: Cocos (Keeling) Islands is an Australian external territory. Passports and visas are not required when travelling to Cocos (Keeling) Islands from the Australian mainland. However, photographic identification, such as an Australian Driver\'s Licence or Proof of Age card, must be produced for each passenger (including children) for clearance through Customs and Immigration. A valid passport meets this identification requirement and is the preferred means of documentation to expedite passenger processing and provide passenger identification in the case of a flight diversion to another country. Normal Australian Customs and Immigration procedures apply when entry is made from outside Australia.',
style: {
fill: evisa
}
}, {
latLng: [-29.0, 167.9],
name: 'Norfolk Island: Norfolk Island is an Australian external territory. Passports and visas are not required when travelling to Norfolk Island from the Australian mainland. However, photographic identification, such as an Australian Driver\'s Licence or Proof of Age card, must be produced for each passenger (including children) for clearance through Customs and Immigration. A valid passport meets this identification requirement and is the preferred means of documentation to expedite passenger processing and provide passenger identification in the case of a flight diversion to another country. Normal Australian Customs and Immigration procedures apply when entry is made from outside Australia.',
style: {
fill: evisa
}
}, {
latLng: [10.2, 103.9],
name: 'Phu Quoc: Vietnam allows all foreign tourists to visit Phu Quoc visa-free for a period of up to 30 days. You must have a round trip air ticket to and from Phu Quoc / Vietnam.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [26.5, 54.0],
name: 'Kish Island: Kish Island is an Iranian island. Visa on arrival allows you to stay 14 days or less. You must arrange for a certified escort/guide, through an Iranian travel agent. The Travel Agent must inform the Iranian Ministry of Foreign Affairs about your visit at least 2 weeks in advance of travel, and receive confirmation that a visa will be issued on arrival. You must have a hotel reservation prior to travelling. Your guide must pass a copy of the hotel reservation confirmation to the Immigration Office at Kish Airport at least 48 hours before your arrival, and meet you at the airport upon your arrival.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [28.0, -15.3],
name: 'Canary Islands: The Canary Islands are an autonomous region of Spain. Allowed to stay for up to 90 days in any 180-day period (entire Schengen area) without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [36.1, 44.0],
name: 'Iraqi Kurdistan: Iraqi Kurdistan is an autonomous region of Iraq. Effective March 1, 2023, all travelers traveling to the Kurdistan Region of Iraq, will require a visa. It is possible to obtain an eVisa.',
style: {
fill: evisa
}
}, {
latLng: [32.3, -16.2],
name: 'Madeira: Madeira is an autonomous region of Portugal. Allowed to stay for up to 90 days in any 180-day period (entire Schengen area) without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [13.4, 144.7],
name: 'Guam: Guam is an unincorporated territory of the United States. Allowed to stay 45 days without a visa providing you have a round-trip air or sea ticket, or a ticket from Guam to another country.',
style: {
fill: no_visa
}
}, {
latLng: [19.0, 109.6],
name: 'Hainan: Hainan is an island province of China. You can get a visa on arrival valid for 15 days at Haikou Meilan International Airport and Sanya Phoenix International Airport. You can visit visa free for 30 days when booked with a Hainan travel agency.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [17.9, -62.8],
name: 'Saint Barthélemy: Allowed to stay 90 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [-19.0, -169.8],
name: 'Niue: Allowed to stay up to 30 days without a visa. You must have a return or onward ticket and sufficient funds for length of stay. Accomodation must be booked prior to arrival.',
style: {
fill: no_visa_less_than_one_month
}
}, {
latLng: [-12.2, 123.0],
name: 'Ashmore and Cartier Islands: The Territory of Ashmore and Cartier Islands is an uninhabited external territory of Australia. Special permit required.',
style: {
fill: visa
}
}, {
latLng: [47.2, 29.1],
name: 'Transnistria: Allowed to stay up to 45 days without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [70.9, -8.5],
name: 'Jan Mayen: Jan Mayen is an uninhabited Norwegian volcanic island. A special permit is required to visit the island.',
style: {
fill: visa
}
}, {
latLng: [-46.7, 37.8],
name: 'Prince Edward Islands: The Prince Edward Islands are a part of South Africa and are designated as a Special Nature Reserve. Tourism to the islands is not permitted.',
style: {
fill: visa
}
}, {
latLng: [54.2, -4.5],
name: 'Isle of Man: The Isle of Man is a self-governing British Crown dependency. It is not part of Great Britain, the United Kingdom, or the European Union, however it is part of the Common Travel Area.',
style: {
fill: no_visa
}
}, {
latLng: [60.1, 20.3],
name: 'Åland Islands: Åland is an autonomous, Swedish speaking group of islands which form a part of Finland. Allowed to stay for up to 90 days in any 180-day period (entire Schengen area) without a visa.',
style: {
fill: no_visa
}
}, {
latLng: [15.1, 145.7],
name: 'Northern Mariana Islands: Northern Mariana Islands is an unincorporated territory of the United States. Allowed to stay 45 days without a visa providing you have a round-trip air or sea ticket, or a ticket from Northern Mariana Islands to another country.',
style: {
fill: no_visa
}
}, {
latLng: [42.3, 44.0],
name: 'South Ossetia: South Ossetia is internationally recognized as a part of Georgia. Visitors to South Ossetia do not require a visa. However, visitors are required to hold a valid Russian visa that permits them to return to Russia and to notify authorities about their visit in advance.',
style: {
fill: visa
}
}, {
latLng: [40.0, 46.9],
name: 'Artsakh (Nagorno-Karabakh): Artsakh was an Armenian enclave inside Azerbaijan. It was invaded by Azerbaijani forces in 2020 and 2023 who displaced the local population who left for Armenia fearing ethnic cleansing. As of January 1st 2024 Artsakh has been dissolved.',
style: {
fill: gone
}
}, {
latLng: [10.2, -109.2],
name: 'Clipperton Island: A special permit is required to visit Clipperton Island. Despite that, unless a French Navy patrol visits the island, there are obviously no officials on the island to check permits.',
style: {
fill: visa
}
}, {
latLng: [18.3, -64.8],
name: 'US Virgin Islands: ESTA required. Please see travel advice for USA.',
style: {
fill: evisa
}
}, {
latLng: [33.0, 88.0],
name: 'Tibet: A permit is required to visit Tibet. Independent travel is not possible. You also need to obtain a visa for China to visit Tibet.',
style: {
fill: visa
}
}, {
latLng: [43.0, 41.0],
name: 'Abkhazia: Abkhazia is internationally recognized as a part of Georgia. A visa is required to visit Abkhazia. You can apply for one online and you will be given a clearance letter to enter Abkhazia. Upon your arrival to Abkhazia you must visit the Consular Service in Sukhum within three working days in order to receive the visa of the Republic of Abkhazia. The fee for a visa for a period up to 10 days is around $10.',
style: {
fill: visa
}
}, {
latLng: [-53.0, 73.5],
name: 'Heard Island and McDonald Islands: The Territory of Heard Island and McDonald Islands is an Australian external territory comprising a volcanic group of barren Antarctic islands. A permit is required to visit.',
style: {
fill: visa
}
}, {
latLng: [19.2, 166.6],
name: 'United States Minor Outlying Islands: Special permits required for Baker Island, Howland Island, Jarvis Island, Johnston Atoll, Kingman Reef, Midway Atoll, Palmyra Atoll and Wake Island.',
style: {
fill: visa
}
}, {
latLng: [26.9, 56.2],
name: 'Qeshm Island: Qeshm Island is an Iranian island. Visa on arrival allows you to stay 14 days or less. You must arrange for a certified escort/guide, through an Iranian travel agent. The Travel Agent must inform the Iranian Ministry of Foreign Affairs about your visit at least 2 weeks in advance of travel, and receive confirmation that a visa will be issued on arrival. You must have a hotel reservation prior to travelling. Your guide must pass a copy of the hotel reservation confirmation to the Immigration Office at Kish Airport at least 48 hours before your arrival, and meet you at the airport upon your arrival.',
style: {
fill: visa_on_arrival
}
}, {
latLng: [-54.8, -90.5],
name: 'Peter I Island: Special authorisation required. All people visiting the island must follow laws regarding protection of nature, treatment of waste, pollution and insurance for search and rescue operations. NOTE: Technically part of Antarctica (which isn\'t shown on this map) and further south.',
style: {
fill: visa
}
}, {
latLng: [-54.4, 3.3],
name: 'Bouvet Island: Special authorisation required. All people visiting the island must follow laws regarding protection of nature, treatment of waste, pollution and insurance for search and rescue operations.',
style: {
fill: visa
}
}, {