-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook_locations_map.html
More file actions
7498 lines (3612 loc) · 338 KB
/
Copy pathbook_locations_map.html
File metadata and controls
7498 lines (3612 loc) · 338 KB
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-glyphicons.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_d9e734056781acd68a7ab0f6245f0e04 {
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_d9e734056781acd68a7ab0f6245f0e04" ></div>
</body>
<script>
var map_d9e734056781acd68a7ab0f6245f0e04 = L.map(
"map_d9e734056781acd68a7ab0f6245f0e04",
{
center: [46.11711838224839, -21.51541708321216],
crs: L.CRS.EPSG3857,
...{
"zoom": 4,
"zoomControl": true,
"preferCanvas": false,
}
}
);
var tile_layer_30eac470b6ee7ad6950809ed2e2bc273 = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{
"minZoom": 0,
"maxZoom": 20,
"maxNativeZoom": 20,
"noWrap": false,
"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",
"subdomains": "abcd",
"detectRetina": false,
"tms": false,
"opacity": 1,
}
);
tile_layer_30eac470b6ee7ad6950809ed2e2bc273.addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var circle_marker_f2d1a53d1d6a71c61e3eb129571b5a39 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_8f15efaf6dd28b0b3c0bd4fe1a6dd18e = L.popup({
"maxWidth": "100%",
});
var html_f6bfed841327e5975412955898f7b72a = $(`<div id="html_f6bfed841327e5975412955898f7b72a" style="width: 100.0%; height: 100.0%;">LONDON (#0)</div>`)[0];
popup_8f15efaf6dd28b0b3c0bd4fe1a6dd18e.setContent(html_f6bfed841327e5975412955898f7b72a);
circle_marker_f2d1a53d1d6a71c61e3eb129571b5a39.bindPopup(popup_8f15efaf6dd28b0b3c0bd4fe1a6dd18e)
;
var circle_marker_dde2c7166b19e7469c3fee5886cbd194 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_23b9c5e7d061ff2b204f6fcaa0b4a16e = L.popup({
"maxWidth": "100%",
});
var html_3c34aa17da8fe54aad4d585ec5f26272 = $(`<div id="html_3c34aa17da8fe54aad4d585ec5f26272" style="width: 100.0%; height: 100.0%;">London (#1)</div>`)[0];
popup_23b9c5e7d061ff2b204f6fcaa0b4a16e.setContent(html_3c34aa17da8fe54aad4d585ec5f26272);
circle_marker_dde2c7166b19e7469c3fee5886cbd194.bindPopup(popup_23b9c5e7d061ff2b204f6fcaa0b4a16e)
;
var circle_marker_9cce8044f6716dfa2c0fee000e4fa761 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_4d9c6bdf317e9388844eaf31776a9516 = L.popup({
"maxWidth": "100%",
});
var html_1e553a30f21b1f8a8802fd26fa4994b3 = $(`<div id="html_1e553a30f21b1f8a8802fd26fa4994b3" style="width: 100.0%; height: 100.0%;">LONDON (#2)</div>`)[0];
popup_4d9c6bdf317e9388844eaf31776a9516.setContent(html_1e553a30f21b1f8a8802fd26fa4994b3);
circle_marker_9cce8044f6716dfa2c0fee000e4fa761.bindPopup(popup_4d9c6bdf317e9388844eaf31776a9516)
;
var circle_marker_f24fc18b66155e19c30721ed15594147 = L.circleMarker(
[51.1266817, -1.0067925887156761],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_7eef68b3daa643a290870524036a6cd4 = L.popup({
"maxWidth": "100%",
});
var html_6b415f747cc273fdb24066075478bf97 = $(`<div id="html_6b415f747cc273fdb24066075478bf97" style="width: 100.0%; height: 100.0%;">Chawton (#4)</div>`)[0];
popup_7eef68b3daa643a290870524036a6cd4.setContent(html_6b415f747cc273fdb24066075478bf97);
circle_marker_f24fc18b66155e19c30721ed15594147.bindPopup(popup_7eef68b3daa643a290870524036a6cd4)
;
var circle_marker_4e300239b6a78c6c27a836ecffa94378 = L.circleMarker(
[53.1666927, -1.5833223],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_d334f5edb27c863eab5908816eb72aeb = L.popup({
"maxWidth": "100%",
});
var html_3b0b026bda4471930b4729db2e9be3c1 = $(`<div id="html_3b0b026bda4471930b4729db2e9be3c1" style="width: 100.0%; height: 100.0%;">Derbyshire (#5)</div>`)[0];
popup_d334f5edb27c863eab5908816eb72aeb.setContent(html_3b0b026bda4471930b4729db2e9be3c1);
circle_marker_4e300239b6a78c6c27a836ecffa94378.bindPopup(popup_d334f5edb27c863eab5908816eb72aeb)
;
var circle_marker_d2f1ec3ff08b8c0da2cf05e261eedbed = L.circleMarker(
[41.931696, -87.9889556],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_c5ea2f40f44fa56591974eea25630f4c = L.popup({
"maxWidth": "100%",
});
var html_c73a0497785b3f494592eb15af342919 = $(`<div id="html_c73a0497785b3f494592eb15af342919" style="width: 100.0%; height: 100.0%;">Addison (#6)</div>`)[0];
popup_c5ea2f40f44fa56591974eea25630f4c.setContent(html_c73a0497785b3f494592eb15af342919);
circle_marker_d2f1ec3ff08b8c0da2cf05e261eedbed.bindPopup(popup_c5ea2f40f44fa56591974eea25630f4c)
;
var circle_marker_7731cf27f2f99714d62eac0ef5e7e5d5 = L.circleMarker(
[41.931696, -87.9889556],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_82865ed57ab45c7764418e3893d31526 = L.popup({
"maxWidth": "100%",
});
var html_56e05d45fe47d4df61dedb7b843f10f8 = $(`<div id="html_56e05d45fe47d4df61dedb7b843f10f8" style="width: 100.0%; height: 100.0%;">Addison (#7)</div>`)[0];
popup_82865ed57ab45c7764418e3893d31526.setContent(html_56e05d45fe47d4df61dedb7b843f10f8);
circle_marker_7731cf27f2f99714d62eac0ef5e7e5d5.bindPopup(popup_82865ed57ab45c7764418e3893d31526)
;
var circle_marker_100d38b89bd53ad4948867a5ee4f686c = L.circleMarker(
[41.814397, -112.1162914],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_a62c3d43fdff300f24a9557861db6e09 = L.popup({
"maxWidth": "100%",
});
var html_587557c25ea16a542a285cd853ceecd5 = $(`<div id="html_587557c25ea16a542a285cd853ceecd5" style="width: 100.0%; height: 100.0%;">Fielding (#8)</div>`)[0];
popup_a62c3d43fdff300f24a9557861db6e09.setContent(html_587557c25ea16a542a285cd853ceecd5);
circle_marker_100d38b89bd53ad4948867a5ee4f686c.bindPopup(popup_a62c3d43fdff300f24a9557861db6e09)
;
var circle_marker_638ae5e0f8b67e894334e531965e0af5 = L.circleMarker(
[41.931696, -87.9889556],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_f78effc4bcad9422f437275e3fac87cb = L.popup({
"maxWidth": "100%",
});
var html_87ef7ef749366103671e87a853c959fb = $(`<div id="html_87ef7ef749366103671e87a853c959fb" style="width: 100.0%; height: 100.0%;">Addison (#9)</div>`)[0];
popup_f78effc4bcad9422f437275e3fac87cb.setContent(html_87ef7ef749366103671e87a853c959fb);
circle_marker_638ae5e0f8b67e894334e531965e0af5.bindPopup(popup_f78effc4bcad9422f437275e3fac87cb)
;
var circle_marker_f800992a63bc6361a9c6f082d42ad594 = L.circleMarker(
[33.8137161, -92.4129303],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_97834ffbc7a5d743afb37521b43b3cc5 = L.popup({
"maxWidth": "100%",
});
var html_1e88e1c4dc30450c4a8586e1cb60986e = $(`<div id="html_1e88e1c4dc30450c4a8586e1cb60986e" style="width: 100.0%; height: 100.0%;">Fordyce (#10)</div>`)[0];
popup_97834ffbc7a5d743afb37521b43b3cc5.setContent(html_1e88e1c4dc30450c4a8586e1cb60986e);
circle_marker_f800992a63bc6361a9c6f082d42ad594.bindPopup(popup_97834ffbc7a5d743afb37521b43b3cc5)
;
var circle_marker_4cecbbb1c49b26e641d989c89a1cc5a5 = L.circleMarker(
[32.4334742, -97.1025077],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_7a9f155b610e6b7d206c97689aa596a7 = L.popup({
"maxWidth": "100%",
});
var html_8afd3b511db46fab3a4ac0fcc51b2560 = $(`<div id="html_8afd3b511db46fab3a4ac0fcc51b2560" style="width: 100.0%; height: 100.0%;">Venus (#11)</div>`)[0];
popup_7a9f155b610e6b7d206c97689aa596a7.setContent(html_8afd3b511db46fab3a4ac0fcc51b2560);
circle_marker_4cecbbb1c49b26e641d989c89a1cc5a5.bindPopup(popup_7a9f155b610e6b7d206c97689aa596a7)
;
var circle_marker_c761b9b91130c133c65502396399f285 = L.circleMarker(
[32.7410762, -101.9576048],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_7f699fcd5eed02451263e0b7779583bd = L.popup({
"maxWidth": "100%",
});
var html_d76656006b358a860c4de5c6ef7b02a9 = $(`<div id="html_d76656006b358a860c4de5c6ef7b02a9" style="width: 100.0%; height: 100.0%;">Dawson (#12)</div>`)[0];
popup_7f699fcd5eed02451263e0b7779583bd.setContent(html_d76656006b358a860c4de5c6ef7b02a9);
circle_marker_c761b9b91130c133c65502396399f285.bindPopup(popup_7f699fcd5eed02451263e0b7779583bd)
;
var circle_marker_480c36a30625988545d8669ca203edcb = L.circleMarker(
[52.5310214, -1.2649062],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_653c16f453ad898d697286f4ac5d0f12 = L.popup({
"maxWidth": "100%",
});
var html_764364527b4cb6a80c77661253831373 = $(`<div id="html_764364527b4cb6a80c77661253831373" style="width: 100.0%; height: 100.0%;">England (#13)</div>`)[0];
popup_653c16f453ad898d697286f4ac5d0f12.setContent(html_764364527b4cb6a80c77661253831373);
circle_marker_480c36a30625988545d8669ca203edcb.bindPopup(popup_653c16f453ad898d697286f4ac5d0f12)
;
var circle_marker_77c743a81a17ac2f39dbfe55cb0d469f = L.circleMarker(
[51.840052299999996, -0.09785519224523963],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_7aa20de91ea06e69fb22f4f5390b7958 = L.popup({
"maxWidth": "100%",
});
var html_ecf4a85df7a7b29c718c65dfef72fc01 = $(`<div id="html_ecf4a85df7a7b29c718c65dfef72fc01" style="width: 100.0%; height: 100.0%;">Hertfordshire (#14)</div>`)[0];
popup_7aa20de91ea06e69fb22f4f5390b7958.setContent(html_ecf4a85df7a7b29c718c65dfef72fc01);
circle_marker_77c743a81a17ac2f39dbfe55cb0d469f.bindPopup(popup_7aa20de91ea06e69fb22f4f5390b7958)
;
var circle_marker_e594d5b0303f49f488f372cd1b0230d3 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_34c241778d83b2db538ce8f3d98f90a8 = L.popup({
"maxWidth": "100%",
});
var html_f6b094755bbdd227da1d7dcd4f4db110 = $(`<div id="html_f6b094755bbdd227da1d7dcd4f4db110" style="width: 100.0%; height: 100.0%;">London (#15)</div>`)[0];
popup_34c241778d83b2db538ce8f3d98f90a8.setContent(html_f6b094755bbdd227da1d7dcd4f4db110);
circle_marker_e594d5b0303f49f488f372cd1b0230d3.bindPopup(popup_34c241778d83b2db538ce8f3d98f90a8)
;
var circle_marker_91d997d6f69da2b5620884d5b6b03431 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_739b931b9f408607679bb45759632473 = L.popup({
"maxWidth": "100%",
});
var html_5b1ee7d802193a13c5afbd681d7bed5b = $(`<div id="html_5b1ee7d802193a13c5afbd681d7bed5b" style="width: 100.0%; height: 100.0%;">London (#16)</div>`)[0];
popup_739b931b9f408607679bb45759632473.setContent(html_5b1ee7d802193a13c5afbd681d7bed5b);
circle_marker_91d997d6f69da2b5620884d5b6b03431.bindPopup(popup_739b931b9f408607679bb45759632473)
;
var circle_marker_ada975a28c00ead59f8b658dfdb7b491 = L.circleMarker(
[53.1666927, -1.5833223],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_2f8ce2c92c6fc193117a26cade06aa09 = L.popup({
"maxWidth": "100%",
});
var html_af3f63fd733191409957aad7aca85071 = $(`<div id="html_af3f63fd733191409957aad7aca85071" style="width: 100.0%; height: 100.0%;">Derbyshire (#17)</div>`)[0];
popup_2f8ce2c92c6fc193117a26cade06aa09.setContent(html_af3f63fd733191409957aad7aca85071);
circle_marker_ada975a28c00ead59f8b658dfdb7b491.bindPopup(popup_2f8ce2c92c6fc193117a26cade06aa09)
;
var circle_marker_cd6300fbd660e11f37cdeb75cd1eb610 = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_9712701ffef4ace347d8c781b8865fa7 = L.popup({
"maxWidth": "100%",
});
var html_bbde5f754b1d336b5d78d449911d0415 = $(`<div id="html_bbde5f754b1d336b5d78d449911d0415" style="width: 100.0%; height: 100.0%;">Netherfield (#18)</div>`)[0];
popup_9712701ffef4ace347d8c781b8865fa7.setContent(html_bbde5f754b1d336b5d78d449911d0415);
circle_marker_cd6300fbd660e11f37cdeb75cd1eb610.bindPopup(popup_9712701ffef4ace347d8c781b8865fa7)
;
var circle_marker_8c5cf24e4b4cf6991b044600c128533b = L.circleMarker(
[52.5310214, -1.2649062],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_363610cb2cf01f10623b61d135454987 = L.popup({
"maxWidth": "100%",
});
var html_977369c31e2e3317b25504049dd2accd = $(`<div id="html_977369c31e2e3317b25504049dd2accd" style="width: 100.0%; height: 100.0%;">England (#19)</div>`)[0];
popup_363610cb2cf01f10623b61d135454987.setContent(html_977369c31e2e3317b25504049dd2accd);
circle_marker_8c5cf24e4b4cf6991b044600c128533b.bindPopup(popup_363610cb2cf01f10623b61d135454987)
;
var circle_marker_d71ba4d61378fe9a4bfb6dc2cf2c6d91 = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_6c68f69d421a56718fc099aa29b0df86 = L.popup({
"maxWidth": "100%",
});
var html_f784190f979ff78ce63d814e65af3ab9 = $(`<div id="html_f784190f979ff78ce63d814e65af3ab9" style="width: 100.0%; height: 100.0%;">Netherfield (#20)</div>`)[0];
popup_6c68f69d421a56718fc099aa29b0df86.setContent(html_f784190f979ff78ce63d814e65af3ab9);
circle_marker_d71ba4d61378fe9a4bfb6dc2cf2c6d91.bindPopup(popup_6c68f69d421a56718fc099aa29b0df86)
;
var circle_marker_09148c45ec96753d6a3953a6bbb73c40 = L.circleMarker(
[35.2272086, -80.8430827],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_9e33d9df718122788e86dbe066298590 = L.popup({
"maxWidth": "100%",
});
var html_a41d1fc8dd96a337d223702be83216a7 = $(`<div id="html_a41d1fc8dd96a337d223702be83216a7" style="width: 100.0%; height: 100.0%;">Charlotte (#21)</div>`)[0];
popup_9e33d9df718122788e86dbe066298590.setContent(html_a41d1fc8dd96a337d223702be83216a7);
circle_marker_09148c45ec96753d6a3953a6bbb73c40.bindPopup(popup_9e33d9df718122788e86dbe066298590)
;
var circle_marker_754a9f48b58d4e82ee3f0455f5e8750d = L.circleMarker(
[35.2272086, -80.8430827],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_825fc3868dd62655c785353931d29830 = L.popup({
"maxWidth": "100%",
});
var html_49cfd45b526401651a9d3d1d129186d5 = $(`<div id="html_49cfd45b526401651a9d3d1d129186d5" style="width: 100.0%; height: 100.0%;">Charlotte (#22)</div>`)[0];
popup_825fc3868dd62655c785353931d29830.setContent(html_49cfd45b526401651a9d3d1d129186d5);
circle_marker_754a9f48b58d4e82ee3f0455f5e8750d.bindPopup(popup_825fc3868dd62655c785353931d29830)
;
var circle_marker_c5058123ef9152bdf65768a9160dbe42 = L.circleMarker(
[35.2272086, -80.8430827],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_5c8315c83dd979b223066d07aff7e329 = L.popup({
"maxWidth": "100%",
});
var html_d40a324fb1edf53e2dbadea47c8bb09f = $(`<div id="html_d40a324fb1edf53e2dbadea47c8bb09f" style="width: 100.0%; height: 100.0%;">Charlotte (#23)</div>`)[0];
popup_5c8315c83dd979b223066d07aff7e329.setContent(html_d40a324fb1edf53e2dbadea47c8bb09f);
circle_marker_c5058123ef9152bdf65768a9160dbe42.bindPopup(popup_5c8315c83dd979b223066d07aff7e329)
;
var circle_marker_c5dbad8a7da395ba24846c9a893ce744 = L.circleMarker(
[35.2272086, -80.8430827],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_7781b4103dafaafe322440e6b262d174 = L.popup({
"maxWidth": "100%",
});
var html_83728d947e5ed5eb67801d33ca161c1b = $(`<div id="html_83728d947e5ed5eb67801d33ca161c1b" style="width: 100.0%; height: 100.0%;">Charlotte (#24)</div>`)[0];
popup_7781b4103dafaafe322440e6b262d174.setContent(html_83728d947e5ed5eb67801d33ca161c1b);
circle_marker_c5dbad8a7da395ba24846c9a893ce744.bindPopup(popup_7781b4103dafaafe322440e6b262d174)
;
var circle_marker_43e30af4dbef6d7b5937e1bd7a0bd915 = L.circleMarker(
[35.2272086, -80.8430827],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_9b7b5f4ee0b0840d6f0c1c3e0e45e044 = L.popup({
"maxWidth": "100%",
});
var html_b2a83b932c46d5d781aba4fc802ef6db = $(`<div id="html_b2a83b932c46d5d781aba4fc802ef6db" style="width: 100.0%; height: 100.0%;">Charlotte (#25)</div>`)[0];
popup_9b7b5f4ee0b0840d6f0c1c3e0e45e044.setContent(html_b2a83b932c46d5d781aba4fc802ef6db);
circle_marker_43e30af4dbef6d7b5937e1bd7a0bd915.bindPopup(popup_9b7b5f4ee0b0840d6f0c1c3e0e45e044)
;
var circle_marker_7191b5aca7f8cae2c20e583c2bcc3e63 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_4d3c24d448d2cc93985fcea8fa54f4ba = L.popup({
"maxWidth": "100%",
});
var html_b350f506c1496b50be1dec4792682321 = $(`<div id="html_b350f506c1496b50be1dec4792682321" style="width: 100.0%; height: 100.0%;">London (#26)</div>`)[0];
popup_4d3c24d448d2cc93985fcea8fa54f4ba.setContent(html_b350f506c1496b50be1dec4792682321);
circle_marker_7191b5aca7f8cae2c20e583c2bcc3e63.bindPopup(popup_4d3c24d448d2cc93985fcea8fa54f4ba)
;
var circle_marker_38a03d053af9080a2231c949e94a0e72 = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_fa639142fde82ff4aea06a567445f31a = L.popup({
"maxWidth": "100%",
});
var html_221cf979383a8df07bc5e0d5092c58e2 = $(`<div id="html_221cf979383a8df07bc5e0d5092c58e2" style="width: 100.0%; height: 100.0%;">London (#27)</div>`)[0];
popup_fa639142fde82ff4aea06a567445f31a.setContent(html_221cf979383a8df07bc5e0d5092c58e2);
circle_marker_38a03d053af9080a2231c949e94a0e72.bindPopup(popup_fa639142fde82ff4aea06a567445f31a)
;
var circle_marker_4672196970fe84c53dd1512f8cfc3dbc = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_0c4e780808ca956223c6e3a586ed2864 = L.popup({
"maxWidth": "100%",
});
var html_9ec9d769f506ba1ddc4d5e330b8cbf68 = $(`<div id="html_9ec9d769f506ba1ddc4d5e330b8cbf68" style="width: 100.0%; height: 100.0%;">London (#28)</div>`)[0];
popup_0c4e780808ca956223c6e3a586ed2864.setContent(html_9ec9d769f506ba1ddc4d5e330b8cbf68);
circle_marker_4672196970fe84c53dd1512f8cfc3dbc.bindPopup(popup_0c4e780808ca956223c6e3a586ed2864)
;
var circle_marker_a35c9b841f4f3b19e4c0ba8a611eccf7 = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_4006a59bfa4b00ee62bac022681dd8c9 = L.popup({
"maxWidth": "100%",
});
var html_00e69893d7cce4f0db1d8289749f9b72 = $(`<div id="html_00e69893d7cce4f0db1d8289749f9b72" style="width: 100.0%; height: 100.0%;">Netherfield (#29)</div>`)[0];
popup_4006a59bfa4b00ee62bac022681dd8c9.setContent(html_00e69893d7cce4f0db1d8289749f9b72);
circle_marker_a35c9b841f4f3b19e4c0ba8a611eccf7.bindPopup(popup_4006a59bfa4b00ee62bac022681dd8c9)
;
var circle_marker_fb06b7eb4779605eedf37e39a7a4a98a = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_215ca526b3449185f13fad26e4ff2c0b = L.popup({
"maxWidth": "100%",
});
var html_b4c4e9d19c5124cb0a91cabbfd75f563 = $(`<div id="html_b4c4e9d19c5124cb0a91cabbfd75f563" style="width: 100.0%; height: 100.0%;">Netherfield (#30)</div>`)[0];
popup_215ca526b3449185f13fad26e4ff2c0b.setContent(html_b4c4e9d19c5124cb0a91cabbfd75f563);
circle_marker_fb06b7eb4779605eedf37e39a7a4a98a.bindPopup(popup_215ca526b3449185f13fad26e4ff2c0b)
;
var circle_marker_0a811dee7fffd9632caa5f2233d5f57d = L.circleMarker(
[52.5310214, -1.2649062],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_3b4a02986b5b77f2d521c0bc930a4064 = L.popup({
"maxWidth": "100%",
});
var html_5e5d98c417269a0485e288200343e801 = $(`<div id="html_5e5d98c417269a0485e288200343e801" style="width: 100.0%; height: 100.0%;">England (#31)</div>`)[0];
popup_3b4a02986b5b77f2d521c0bc930a4064.setContent(html_5e5d98c417269a0485e288200343e801);
circle_marker_0a811dee7fffd9632caa5f2233d5f57d.bindPopup(popup_3b4a02986b5b77f2d521c0bc930a4064)
;
var circle_marker_b8364a9de401ae17a26d6bde444f0c34 = L.circleMarker(
[53.1666927, -1.5833223],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_858d50d0c9ad8422ec6002f80cf1ee26 = L.popup({
"maxWidth": "100%",
});
var html_d15392a1d812906265488ed74517146a = $(`<div id="html_d15392a1d812906265488ed74517146a" style="width: 100.0%; height: 100.0%;">Derbyshire (#32)</div>`)[0];
popup_858d50d0c9ad8422ec6002f80cf1ee26.setContent(html_d15392a1d812906265488ed74517146a);
circle_marker_b8364a9de401ae17a26d6bde444f0c34.bindPopup(popup_858d50d0c9ad8422ec6002f80cf1ee26)
;
var circle_marker_adfe21f281539f53bb3fc6e0006950cd = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_6357901ee41e9d8b409ec00ea9b1294b = L.popup({
"maxWidth": "100%",
});
var html_52b681b04faa31d8e71e794ad2ec4252 = $(`<div id="html_52b681b04faa31d8e71e794ad2ec4252" style="width: 100.0%; height: 100.0%;">Netherfield (#33)</div>`)[0];
popup_6357901ee41e9d8b409ec00ea9b1294b.setContent(html_52b681b04faa31d8e71e794ad2ec4252);
circle_marker_adfe21f281539f53bb3fc6e0006950cd.bindPopup(popup_6357901ee41e9d8b409ec00ea9b1294b)
;
var circle_marker_3f2aca4244f2a7bb67d5b565647bb78a = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_5a6e7203dc01f3ee47a25bd0579218ad = L.popup({
"maxWidth": "100%",
});
var html_ba59969aa98f9282d9eb0ca97276cecc = $(`<div id="html_ba59969aa98f9282d9eb0ca97276cecc" style="width: 100.0%; height: 100.0%;">Netherfield (#34)</div>`)[0];
popup_5a6e7203dc01f3ee47a25bd0579218ad.setContent(html_ba59969aa98f9282d9eb0ca97276cecc);
circle_marker_3f2aca4244f2a7bb67d5b565647bb78a.bindPopup(popup_5a6e7203dc01f3ee47a25bd0579218ad)
;
var circle_marker_9ed6cebd6fefbeb2f2a7c52541908a3c = L.circleMarker(
[51.4893335, -0.14405508452768728],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_c4d78aa98303d8e54a8bcb63e149de0b = L.popup({
"maxWidth": "100%",
});
var html_b9d0b609f948407edc734188eb467128 = $(`<div id="html_b9d0b609f948407edc734188eb467128" style="width: 100.0%; height: 100.0%;">London (#35)</div>`)[0];
popup_c4d78aa98303d8e54a8bcb63e149de0b.setContent(html_b9d0b609f948407edc734188eb467128);
circle_marker_9ed6cebd6fefbeb2f2a7c52541908a3c.bindPopup(popup_c4d78aa98303d8e54a8bcb63e149de0b)
;
var circle_marker_bd55b582601480e766e38f3c0a7bfd90 = L.circleMarker(
[35.2272086, -80.8430827],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_4a5c9665c463521f3d5e7f0f37e3e9d5 = L.popup({
"maxWidth": "100%",
});
var html_80ae68d18091206896c3f8f0ad0733fd = $(`<div id="html_80ae68d18091206896c3f8f0ad0733fd" style="width: 100.0%; height: 100.0%;">Charlotte (#36)</div>`)[0];
popup_4a5c9665c463521f3d5e7f0f37e3e9d5.setContent(html_80ae68d18091206896c3f8f0ad0733fd);
circle_marker_bd55b582601480e766e38f3c0a7bfd90.bindPopup(popup_4a5c9665c463521f3d5e7f0f37e3e9d5)
;
var circle_marker_99b409bf670a7629114c4d47225dc1c1 = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_69471e371250ecd41769fafc4af3461f = L.popup({
"maxWidth": "100%",
});
var html_bff4cfe021d759bdb4d98cf235b5c703 = $(`<div id="html_bff4cfe021d759bdb4d98cf235b5c703" style="width: 100.0%; height: 100.0%;">Netherfield (#37)</div>`)[0];
popup_69471e371250ecd41769fafc4af3461f.setContent(html_bff4cfe021d759bdb4d98cf235b5c703);
circle_marker_99b409bf670a7629114c4d47225dc1c1.bindPopup(popup_69471e371250ecd41769fafc4af3461f)
;
var circle_marker_0f7c525ca6ce226723bdaa5b47caac10 = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_d02fea087e2d85f9778832f2b90f13ac = L.popup({
"maxWidth": "100%",
});
var html_fe35e04059573592b7ee3337ebb662ad = $(`<div id="html_fe35e04059573592b7ee3337ebb662ad" style="width: 100.0%; height: 100.0%;">Netherfield (#38)</div>`)[0];
popup_d02fea087e2d85f9778832f2b90f13ac.setContent(html_fe35e04059573592b7ee3337ebb662ad);
circle_marker_0f7c525ca6ce226723bdaa5b47caac10.bindPopup(popup_d02fea087e2d85f9778832f2b90f13ac)
;
var circle_marker_480a014fe9660580b9b7fd683200829b = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_e93aa48aa0d997e73f6a28fac98d16b6 = L.popup({
"maxWidth": "100%",
});
var html_5551a710aab89fada0155f7fce31e668 = $(`<div id="html_5551a710aab89fada0155f7fce31e668" style="width: 100.0%; height: 100.0%;">Netherfield (#39)</div>`)[0];
popup_e93aa48aa0d997e73f6a28fac98d16b6.setContent(html_5551a710aab89fada0155f7fce31e668);
circle_marker_480a014fe9660580b9b7fd683200829b.bindPopup(popup_e93aa48aa0d997e73f6a28fac98d16b6)
;
var circle_marker_666ab32f7bd90a88526fcff014019b93 = L.circleMarker(
[52.9636874, -1.0783876],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 8, "stroke": true, "weight": 3}
).addTo(map_d9e734056781acd68a7ab0f6245f0e04);
var popup_711b05b550d0eeaa53db357e566c801b = L.popup({
"maxWidth": "100%",
});
var html_27d86fc2b5c5858bf6278777273c2d82 = $(`<div id="html_27d86fc2b5c5858bf6278777273c2d82" style="width: 100.0%; height: 100.0%;">Netherfield (#40)</div>`)[0];
popup_711b05b550d0eeaa53db357e566c801b.setContent(html_27d86fc2b5c5858bf6278777273c2d82);
circle_marker_666ab32f7bd90a88526fcff014019b93.bindPopup(popup_711b05b550d0eeaa53db357e566c801b)