-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbubble-map-with-folium.html
12679 lines (6026 loc) · 652 KB
/
bubble-map-with-folium.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>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.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_2c70182b1a70f7f1b81c753c11518f6c {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_2c70182b1a70f7f1b81c753c11518f6c" ></div>
</body>
<script>
var map_2c70182b1a70f7f1b81c753c11518f6c = L.map(
"map_2c70182b1a70f7f1b81c753c11518f6c",
{
center: [46.0, 2.0],
crs: L.CRS.EPSG3857,
zoom: 6,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_fc89ba7e4c9d55544e9578d1335bc124 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eODbL\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var circle_marker_5dec1839551587b8ef15abc051d616b4 = L.circleMarker(
[49.0428713757, 3.51138201699],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0055, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_755331522e1a13bed5d6f28c5b84be4d = L.popup({"maxWidth": "100%"});
var html_284e59e0cfd3fc1688daacef60c0e5cb = $(`<div id="html_284e59e0cfd3fc1688daacef60c0e5cb" style="width: 100.0%; height: 100.0%;">CR02239</div>`)[0];
popup_755331522e1a13bed5d6f28c5b84be4d.setContent(html_284e59e0cfd3fc1688daacef60c0e5cb);
circle_marker_5dec1839551587b8ef15abc051d616b4.bindPopup(popup_755331522e1a13bed5d6f28c5b84be4d)
;
var circle_marker_b842150bf5ec2aec548fd4237e502869 = L.circleMarker(
[49.5493580112, 3.4177638358],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0144, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_4a4d5d02ab93cc41f1a0ccc06921d1d2 = L.popup({"maxWidth": "100%"});
var html_8c22082838139dc2b41fb16535b7a0ce = $(`<div id="html_8c22082838139dc2b41fb16535b7a0ce" style="width: 100.0%; height: 100.0%;">CR02619</div>`)[0];
popup_4a4d5d02ab93cc41f1a0ccc06921d1d2.setContent(html_8c22082838139dc2b41fb16535b7a0ce);
circle_marker_b842150bf5ec2aec548fd4237e502869.bindPopup(popup_4a4d5d02ab93cc41f1a0ccc06921d1d2)
;
var circle_marker_0c2dd188fd9c66104250cd606d23205c = L.circleMarker(
[46.0602181682, 3.65546570851],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0014, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_d516ac7419ad38eea67afa18b28e6368 = L.popup({"maxWidth": "100%"});
var html_fa03c5d678cef186cd0b95a1d2d71988 = $(`<div id="html_fa03c5d678cef186cd0b95a1d2d71988" style="width: 100.0%; height: 100.0%;">CR03165</div>`)[0];
popup_d516ac7419ad38eea67afa18b28e6368.setContent(html_fa03c5d678cef186cd0b95a1d2d71988);
circle_marker_0c2dd188fd9c66104250cd606d23205c.bindPopup(popup_d516ac7419ad38eea67afa18b28e6368)
;
var circle_marker_f8d0455e0445b9e5b97b1255897dcfd7 = L.circleMarker(
[44.0231804287, 6.14073798744],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0033, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_1f7b4461238e27ec6e7cc971117dc927 = L.popup({"maxWidth": "100%"});
var html_a8b29985428d0b59950b096f60adf391 = $(`<div id="html_a8b29985428d0b59950b096f60adf391" style="width: 100.0%; height: 100.0%;">CR04046</div>`)[0];
popup_1f7b4461238e27ec6e7cc971117dc927.setContent(html_a8b29985428d0b59950b096f60adf391);
circle_marker_f8d0455e0445b9e5b97b1255897dcfd7.bindPopup(popup_1f7b4461238e27ec6e7cc971117dc927)
;
var circle_marker_4d51fa8d8b76e485e949eab3355dec6e = L.circleMarker(
[48.0989054968, 4.11142843878],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0059, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_a2fa5bf784ca5131950ac4852a96c53d = L.popup({"maxWidth": "100%"});
var html_abd9c825a624aed622213c0955494bcb = $(`<div id="html_abd9c825a624aed622213c0955494bcb" style="width: 100.0%; height: 100.0%;">CR10202</div>`)[0];
popup_a2fa5bf784ca5131950ac4852a96c53d.setContent(html_abd9c825a624aed622213c0955494bcb);
circle_marker_4d51fa8d8b76e485e949eab3355dec6e.bindPopup(popup_a2fa5bf784ca5131950ac4852a96c53d)
;
var circle_marker_54a5c352f6b45a0440d1a95100c0ce21 = L.circleMarker(
[48.224064228, 4.04074318461],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0042, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_4135f43cce7fab86be950e60aa0ca158 = L.popup({"maxWidth": "100%"});
var html_51231ef090aeb0cbfe8b14e1dee395cc = $(`<div id="html_51231ef090aeb0cbfe8b14e1dee395cc" style="width: 100.0%; height: 100.0%;">CR10360</div>`)[0];
popup_4135f43cce7fab86be950e60aa0ca158.setContent(html_51231ef090aeb0cbfe8b14e1dee395cc);
circle_marker_54a5c352f6b45a0440d1a95100c0ce21.bindPopup(popup_4135f43cce7fab86be950e60aa0ca158)
;
var circle_marker_b21d86295294b551dd5f9570494d8815 = L.circleMarker(
[43.2996016528, 2.06333742676],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0191, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_64545f9dcb5a5ff9cc902b5cf5c8588e = L.popup({"maxWidth": "100%"});
var html_4e438bfc6e18c76fdff224798c884547 = $(`<div id="html_4e438bfc6e18c76fdff224798c884547" style="width: 100.0%; height: 100.0%;">CR11192</div>`)[0];
popup_64545f9dcb5a5ff9cc902b5cf5c8588e.setContent(html_4e438bfc6e18c76fdff224798c884547);
circle_marker_b21d86295294b551dd5f9570494d8815.bindPopup(popup_64545f9dcb5a5ff9cc902b5cf5c8588e)
;
var circle_marker_aaa94926c85ce3720de877fb1240657b = L.circleMarker(
[43.3559262458, 1.91704210416],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0048, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_fce65cb78268dd18a0bc2b50abf2a441 = L.popup({"maxWidth": "100%"});
var html_77550e557077bf19ec12e6ed9cb0fcdd = $(`<div id="html_77550e557077bf19ec12e6ed9cb0fcdd" style="width: 100.0%; height: 100.0%;">CR11382</div>`)[0];
popup_fce65cb78268dd18a0bc2b50abf2a441.setContent(html_77550e557077bf19ec12e6ed9cb0fcdd);
circle_marker_aaa94926c85ce3720de877fb1240657b.bindPopup(popup_fce65cb78268dd18a0bc2b50abf2a441)
;
var circle_marker_d1cb4c021c579a939720a7d47a20b057 = L.circleMarker(
[44.4038329146, 2.29228871208],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0032, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_f020e85aa9e1302c69f41effe9b934cc = L.popup({"maxWidth": "100%"});
var html_855fc51c5c7be87de6e6396988913755 = $(`<div id="html_855fc51c5c7be87de6e6396988913755" style="width: 100.0%; height: 100.0%;">CR12199</div>`)[0];
popup_f020e85aa9e1302c69f41effe9b934cc.setContent(html_855fc51c5c7be87de6e6396988913755);
circle_marker_d1cb4c021c579a939720a7d47a20b057.bindPopup(popup_f020e85aa9e1302c69f41effe9b934cc)
;
var circle_marker_7a9e007019e57a4751c6b04f99104a9f = L.circleMarker(
[43.8788015376, 2.62311158409],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0129, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_d6cbd8780b578be694edcb7f5b54f2ba = L.popup({"maxWidth": "100%"});
var html_2f98c29f7cb44096d94a2f9391c73fd9 = $(`<div id="html_2f98c29f7cb44096d94a2f9391c73fd9" style="width: 100.0%; height: 100.0%;">CR12248</div>`)[0];
popup_d6cbd8780b578be694edcb7f5b54f2ba.setContent(html_2f98c29f7cb44096d94a2f9391c73fd9);
circle_marker_7a9e007019e57a4751c6b04f99104a9f.bindPopup(popup_d6cbd8780b578be694edcb7f5b54f2ba)
;
var circle_marker_3c0bc38c6a4a38f4ac3ca1002d55396e = L.circleMarker(
[49.1315977028, -0.422983283738],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0015, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_d3a9747cf7156db1970f74d1798d7d54 = L.popup({"maxWidth": "100%"});
var html_215ad053fbff1d0c256433224fd15fbd = $(`<div id="html_215ad053fbff1d0c256433224fd15fbd" style="width: 100.0%; height: 100.0%;">CR14396</div>`)[0];
popup_d3a9747cf7156db1970f74d1798d7d54.setContent(html_215ad053fbff1d0c256433224fd15fbd);
circle_marker_3c0bc38c6a4a38f4ac3ca1002d55396e.bindPopup(popup_d3a9747cf7156db1970f74d1798d7d54)
;
var circle_marker_0d0ffa04b0bd0f067bc50e0c628869d1 = L.circleMarker(
[49.0231039076, -0.437703643826],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0018, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_49ec5fc983e27d1f0bb823166641ba2f = L.popup({"maxWidth": "100%"});
var html_c8eabfd88dd3593d3f3a7d47d8787717 = $(`<div id="html_c8eabfd88dd3593d3f3a7d47d8787717" style="width: 100.0%; height: 100.0%;">CR14458</div>`)[0];
popup_49ec5fc983e27d1f0bb823166641ba2f.setContent(html_c8eabfd88dd3593d3f3a7d47d8787717);
circle_marker_0d0ffa04b0bd0f067bc50e0c628869d1.bindPopup(popup_49ec5fc983e27d1f0bb823166641ba2f)
;
var circle_marker_52fe773c4b783235be98b3c25df8af58 = L.circleMarker(
[49.2154597119, -0.400916151699],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0801, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_0f8ffec7a556b65bc8ceb35d94126647 = L.popup({"maxWidth": "100%"});
var html_2b49c0630cf5f77b642742f22c210276 = $(`<div id="html_2b49c0630cf5f77b642742f22c210276" style="width: 100.0%; height: 100.0%;">CR14566</div>`)[0];
popup_0f8ffec7a556b65bc8ceb35d94126647.setContent(html_2b49c0630cf5f77b642742f22c210276);
circle_marker_52fe773c4b783235be98b3c25df8af58.bindPopup(popup_0f8ffec7a556b65bc8ceb35d94126647)
;
var circle_marker_95dc30d7d212efb4487ba295d16f4654 = L.circleMarker(
[45.7450738873, -0.337808012724],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0043, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_68402d130c63a6ea0ffb13587c9b8b31 = L.popup({"maxWidth": "100%"});
var html_b85a9871eeaed7c060613f3d89ad1633 = $(`<div id="html_b85a9871eeaed7c060613f3d89ad1633" style="width: 100.0%; height: 100.0%;">CR16097</div>`)[0];
popup_68402d130c63a6ea0ffb13587c9b8b31.setContent(html_b85a9871eeaed7c060613f3d89ad1633);
circle_marker_95dc30d7d212efb4487ba295d16f4654.bindPopup(popup_68402d130c63a6ea0ffb13587c9b8b31)
;
var circle_marker_0c3125eb4210fd25ba3502d2df53f5a8 = L.circleMarker(
[47.0183022938, 2.30988777756],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.007, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_40890efa62f7a33a829a6e1f06ba3692 = L.popup({"maxWidth": "100%"});
var html_6422498499f1301c89990b44d2d67a3d = $(`<div id="html_6422498499f1301c89990b44d2d67a3d" style="width: 100.0%; height: 100.0%;">CR18255</div>`)[0];
popup_40890efa62f7a33a829a6e1f06ba3692.setContent(html_6422498499f1301c89990b44d2d67a3d);
circle_marker_0c3125eb4210fd25ba3502d2df53f5a8.bindPopup(popup_40890efa62f7a33a829a6e1f06ba3692)
;
var circle_marker_0a4709f64e5c001b867983876b6ddf2b = L.circleMarker(
[45.5542315824, 2.14009183651],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0139, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_9dd6db4e0a207431f4f2676a454f43e4 = L.popup({"maxWidth": "100%"});
var html_30809afca8d2db60bcc98c46996d148e = $(`<div id="html_30809afca8d2db60bcc98c46996d148e" style="width: 100.0%; height: 100.0%;">CR19136</div>`)[0];
popup_9dd6db4e0a207431f4f2676a454f43e4.setContent(html_30809afca8d2db60bcc98c46996d148e);
circle_marker_0a4709f64e5c001b867983876b6ddf2b.bindPopup(popup_9dd6db4e0a207431f4f2676a454f43e4)
;
var circle_marker_82f8bb17368734d461e3523b15404f9b = L.circleMarker(
[45.3149479371, 1.75065002598],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.005, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_e1e74f002113206b0267bd461d531ebc = L.popup({"maxWidth": "100%"});
var html_ba16a2780d6cc6bd4f9687181b8e4eb2 = $(`<div id="html_ba16a2780d6cc6bd4f9687181b8e4eb2" style="width: 100.0%; height: 100.0%;">CR19146</div>`)[0];
popup_e1e74f002113206b0267bd461d531ebc.setContent(html_ba16a2780d6cc6bd4f9687181b8e4eb2);
circle_marker_82f8bb17368734d461e3523b15404f9b.bindPopup(popup_e1e74f002113206b0267bd461d531ebc)
;
var circle_marker_4635e1937e1b0c4502582386938a5ff9 = L.circleMarker(
[45.3714171238, 2.25865560062],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0197, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_eb485cc1cccc8e814c8bc9a66ba65d7c = L.popup({"maxWidth": "100%"});
var html_a73a8ed530246c97e8b909b4bac905ca = $(`<div id="html_a73a8ed530246c97e8b909b4bac905ca" style="width: 100.0%; height: 100.0%;">CR19148</div>`)[0];
popup_eb485cc1cccc8e814c8bc9a66ba65d7c.setContent(html_a73a8ed530246c97e8b909b4bac905ca);
circle_marker_4635e1937e1b0c4502582386938a5ff9.bindPopup(popup_eb485cc1cccc8e814c8bc9a66ba65d7c)
;
var circle_marker_78a709e1f0374594709b3cf89238b0c4 = L.circleMarker(
[45.2931226913, 1.44040079279],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0121, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_ade237e160fd978e2cd3145bb2ab499f = L.popup({"maxWidth": "100%"});
var html_3ab492824325df985d340a5d56b95aff = $(`<div id="html_3ab492824325df985d340a5d56b95aff" style="width: 100.0%; height: 100.0%;">CR19288</div>`)[0];
popup_ade237e160fd978e2cd3145bb2ab499f.setContent(html_3ab492824325df985d340a5d56b95aff);
circle_marker_78a709e1f0374594709b3cf89238b0c4.bindPopup(popup_ade237e160fd978e2cd3145bb2ab499f)
;
var circle_marker_d5882b38d52217c6fa340a4b19f1acb1 = L.circleMarker(
[47.2617509825, 5.295682026],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0036, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_4831e5690294f1e99394a48b5126d8b2 = L.popup({"maxWidth": "100%"});
var html_730ae94db17275f91bf0af63fc28793d = $(`<div id="html_730ae94db17275f91bf0af63fc28793d" style="width: 100.0%; height: 100.0%;">CR21351</div>`)[0];
popup_4831e5690294f1e99394a48b5126d8b2.setContent(html_730ae94db17275f91bf0af63fc28793d);
circle_marker_d5882b38d52217c6fa340a4b19f1acb1.bindPopup(popup_4831e5690294f1e99394a48b5126d8b2)
;
var circle_marker_4012fb86fe02d4d487bb5eb36a7d0e86 = L.circleMarker(
[48.4272969207, -2.65707016677],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0045, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_5a1fa349b1a928b6eb2b146c6994e1bd = L.popup({"maxWidth": "100%"});
var html_7eb2996b7206228d71978c27410e22dd = $(`<div id="html_7eb2996b7206228d71978c27410e22dd" style="width: 100.0%; height: 100.0%;">CR22258</div>`)[0];
popup_5a1fa349b1a928b6eb2b146c6994e1bd.setContent(html_7eb2996b7206228d71978c27410e22dd);
circle_marker_4012fb86fe02d4d487bb5eb36a7d0e86.bindPopup(popup_5a1fa349b1a928b6eb2b146c6994e1bd)
;
var circle_marker_5c85b16f54edac3bfc0c6a3ab759b0f1 = L.circleMarker(
[46.0861690765, 2.02430101436],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0087, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_34728b233fd618a6caed9df381d6f3e2 = L.popup({"maxWidth": "100%"});
var html_d6d6850cc11fd7a2c6864200efe18c4f = $(`<div id="html_d6d6850cc11fd7a2c6864200efe18c4f" style="width: 100.0%; height: 100.0%;">CR23001</div>`)[0];
popup_34728b233fd618a6caed9df381d6f3e2.setContent(html_d6d6850cc11fd7a2c6864200efe18c4f);
circle_marker_5c85b16f54edac3bfc0c6a3ab759b0f1.bindPopup(popup_34728b233fd618a6caed9df381d6f3e2)
;
var circle_marker_e62acefa262d41f072b595209217f0e9 = L.circleMarker(
[45.889520976, 2.18271124708],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.012, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_013999b16ee63be1bd3d6c16aa654485 = L.popup({"maxWidth": "100%"});
var html_32091f070270b860a5bd205fee197128 = $(`<div id="html_32091f070270b860a5bd205fee197128" style="width: 100.0%; height: 100.0%;">CR23079</div>`)[0];
popup_013999b16ee63be1bd3d6c16aa654485.setContent(html_32091f070270b860a5bd205fee197128);
circle_marker_e62acefa262d41f072b595209217f0e9.bindPopup(popup_013999b16ee63be1bd3d6c16aa654485)
;
var circle_marker_db0fb3ca502de91ff887b77b6257f914 = L.circleMarker(
[45.2753181041, 0.911755704648],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0414, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_395a1cb66fe1a1986dab8d37cfba5249 = L.popup({"maxWidth": "100%"});
var html_995868a659894fcc0923e235d39f11c8 = $(`<div id="html_995868a659894fcc0923e235d39f11c8" style="width: 100.0%; height: 100.0%;">CR24527</div>`)[0];
popup_395a1cb66fe1a1986dab8d37cfba5249.setContent(html_995868a659894fcc0923e235d39f11c8);
circle_marker_db0fb3ca502de91ff887b77b6257f914.bindPopup(popup_395a1cb66fe1a1986dab8d37cfba5249)
;
var circle_marker_bc612a34307ad99792402d7dc3e1ab9c = L.circleMarker(
[47.2062426754, 5.86495393288],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0157, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_cc41349663ed03b1a7d35160e20ea02b = L.popup({"maxWidth": "100%"});
var html_16772247b487f8ca730f086ab9c27888 = $(`<div id="html_16772247b487f8ca730f086ab9c27888" style="width: 100.0%; height: 100.0%;">CR25195</div>`)[0];
popup_cc41349663ed03b1a7d35160e20ea02b.setContent(html_16772247b487f8ca730f086ab9c27888);
circle_marker_bc612a34307ad99792402d7dc3e1ab9c.bindPopup(popup_cc41349663ed03b1a7d35160e20ea02b)
;
var circle_marker_ca6cbedc13687136a3d88a36ab681db7 = L.circleMarker(
[46.9571786318, 6.11754093497],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0041, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_cfd15e9547cbb5fe856cf02330d32891 = L.popup({"maxWidth": "100%"});
var html_ee53e0e16c3ec07fb4c8602b60827484 = $(`<div id="html_ee53e0e16c3ec07fb4c8602b60827484" style="width: 100.0%; height: 100.0%;">CR25334</div>`)[0];
popup_cfd15e9547cbb5fe856cf02330d32891.setContent(html_ee53e0e16c3ec07fb4c8602b60827484);
circle_marker_ca6cbedc13687136a3d88a36ab681db7.bindPopup(popup_cfd15e9547cbb5fe856cf02330d32891)
;
var circle_marker_dfa7ba064dd40f758f9c0900f6d030b2 = L.circleMarker(
[47.198418447, 6.16243839446],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0153, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_5f35aec53cddf5d6d1198816cc314841 = L.popup({"maxWidth": "100%"});
var html_1364f8771936c9ac242b74319c213909 = $(`<div id="html_1364f8771936c9ac242b74319c213909" style="width: 100.0%; height: 100.0%;">CR25364</div>`)[0];
popup_5f35aec53cddf5d6d1198816cc314841.setContent(html_1364f8771936c9ac242b74319c213909);
circle_marker_dfa7ba064dd40f758f9c0900f6d030b2.bindPopup(popup_5f35aec53cddf5d6d1198816cc314841)
;
var circle_marker_0931ea6d94ab6febbc4a680969475d81 = L.circleMarker(
[45.2359387102, 4.95905904864],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0051, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_6a3612a88bd8d8097a06b0dc4ab3050d = L.popup({"maxWidth": "100%"});
var html_0b8eaa31ca4786d0a8009b298565b5d2 = $(`<div id="html_0b8eaa31ca4786d0a8009b298565b5d2" style="width: 100.0%; height: 100.0%;">CR26083</div>`)[0];
popup_6a3612a88bd8d8097a06b0dc4ab3050d.setContent(html_0b8eaa31ca4786d0a8009b298565b5d2);
circle_marker_0931ea6d94ab6febbc4a680969475d81.bindPopup(popup_6a3612a88bd8d8097a06b0dc4ab3050d)
;
var circle_marker_dcbcbce5dcfbb529e60371a42eecf9f5 = L.circleMarker(
[48.3607988018, 1.42399697169],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0027, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_f6595beceda276115dff8c0ad05d098c = L.popup({"maxWidth": "100%"});
var html_fd2ed16829684eef29e785db27ba97ee = $(`<div id="html_fd2ed16829684eef29e785db27ba97ee" style="width: 100.0%; height: 100.0%;">CR28253</div>`)[0];
popup_f6595beceda276115dff8c0ad05d098c.setContent(html_fd2ed16829684eef29e785db27ba97ee);
circle_marker_dcbcbce5dcfbb529e60371a42eecf9f5.bindPopup(popup_f6595beceda276115dff8c0ad05d098c)
;
var circle_marker_8603fd6c465292703ec40dacbd2d7e68 = L.circleMarker(
[48.4134954931, 1.59645296484],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0039, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_fe418e618a3070ab4ca3e04a4416fa2a = L.popup({"maxWidth": "100%"});
var html_78ace9f1f229b4cec5cd60587a006ac2 = $(`<div id="html_78ace9f1f229b4cec5cd60587a006ac2" style="width: 100.0%; height: 100.0%;">CR28380</div>`)[0];
popup_fe418e618a3070ab4ca3e04a4416fa2a.setContent(html_78ace9f1f229b4cec5cd60587a006ac2);
circle_marker_8603fd6c465292703ec40dacbd2d7e68.bindPopup(popup_fe418e618a3070ab4ca3e04a4416fa2a)
;
var circle_marker_25bd057c2f86977da7c581ffca325c9a = L.circleMarker(
[48.3059334041, -4.1421494556],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0044, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_b9002727a6e0e369b039385e850ac4a8 = L.popup({"maxWidth": "100%"});
var html_d27e49912a380d518a41ae020aaed70c = $(`<div id="html_d27e49912a380d518a41ae020aaed70c" style="width: 100.0%; height: 100.0%;">CR29053</div>`)[0];
popup_b9002727a6e0e369b039385e850ac4a8.setContent(html_d27e49912a380d518a41ae020aaed70c);
circle_marker_25bd057c2f86977da7c581ffca325c9a.bindPopup(popup_b9002727a6e0e369b039385e850ac4a8)
;
var circle_marker_578843cc34741ebd9aaec5faeb737201 = L.circleMarker(
[48.27577758200001, -4.44432214727],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.027, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_7a1387e5e0381799d412b30963ed3981 = L.popup({"maxWidth": "100%"});
var html_42474da81562644f13f26bf973efa3e5 = $(`<div id="html_42474da81562644f13f26bf973efa3e5" style="width: 100.0%; height: 100.0%;">CR29120</div>`)[0];
popup_7a1387e5e0381799d412b30963ed3981.setContent(html_42474da81562644f13f26bf973efa3e5);
circle_marker_578843cc34741ebd9aaec5faeb737201.bindPopup(popup_7a1387e5e0381799d412b30963ed3981)
;
var circle_marker_68f69b44441386aefe1e16253789828c = L.circleMarker(
[48.3017361102, -4.03428132272],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0092, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_966a020c5c5e5f200568a968b9c53852 = L.popup({"maxWidth": "100%"});
var html_80b3b06d71dd5bcbef2798aea16d4b8b = $(`<div id="html_80b3b06d71dd5bcbef2798aea16d4b8b" style="width: 100.0%; height: 100.0%;">CR29139</div>`)[0];
popup_966a020c5c5e5f200568a968b9c53852.setContent(html_80b3b06d71dd5bcbef2798aea16d4b8b);
circle_marker_68f69b44441386aefe1e16253789828c.bindPopup(popup_966a020c5c5e5f200568a968b9c53852)
;
var circle_marker_b3e1903a3bbbc9f3aee9210c3d674226 = L.circleMarker(
[43.7861277519, 1.30409747557],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0045, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_8cdb485b57f9d4881f9bb98cd896de5e = L.popup({"maxWidth": "100%"});
var html_0156d9aa756defbd28af4cb3df5fab83 = $(`<div id="html_0156d9aa756defbd28af4cb3df5fab83" style="width: 100.0%; height: 100.0%;">CR31403</div>`)[0];
popup_8cdb485b57f9d4881f9bb98cd896de5e.setContent(html_0156d9aa756defbd28af4cb3df5fab83);
circle_marker_b3e1903a3bbbc9f3aee9210c3d674226.bindPopup(popup_8cdb485b57f9d4881f9bb98cd896de5e)
;
var circle_marker_968794568db319ce4d0cc5bc02ea424f = L.circleMarker(
[43.4317876537, 0.586727332554],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0064, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_8d218d14768f45926d4c3ffba5f2d1cb = L.popup({"maxWidth": "100%"});
var html_6d50753175da72336c4ccc753bef6947 = $(`<div id="html_6d50753175da72336c4ccc753bef6947" style="width: 100.0%; height: 100.0%;">CR32242</div>`)[0];
popup_8d218d14768f45926d4c3ffba5f2d1cb.setContent(html_6d50753175da72336c4ccc753bef6947);
circle_marker_968794568db319ce4d0cc5bc02ea424f.bindPopup(popup_8d218d14768f45926d4c3ffba5f2d1cb)
;
var circle_marker_6211430df4454bcae12a1ad124a37fe7 = L.circleMarker(
[43.7612028008, -0.0306381303587],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0024, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_3b4e3948b3fb3a15cebcba4420fbf010 = L.popup({"maxWidth": "100%"});
var html_2ed5e2b036119bd5f2b3277ea5e22f7a = $(`<div id="html_2ed5e2b036119bd5f2b3277ea5e22f7a" style="width: 100.0%; height: 100.0%;">CR32296</div>`)[0];
popup_3b4e3948b3fb3a15cebcba4420fbf010.setContent(html_2ed5e2b036119bd5f2b3277ea5e22f7a);
circle_marker_6211430df4454bcae12a1ad124a37fe7.bindPopup(popup_3b4e3948b3fb3a15cebcba4420fbf010)
;
var circle_marker_336ed99eacf73d8fae04dcd581d3c75d = L.circleMarker(
[44.9320818849, -0.126958398554],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0101, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_9157408f840f6d651532e9027a1dd9e9 = L.popup({"maxWidth": "100%"});
var html_9bca323271b7ddcdb804c314c8a49821 = $(`<div id="html_9bca323271b7ddcdb804c314c8a49821" style="width: 100.0%; height: 100.0%;">CR33290</div>`)[0];
popup_9157408f840f6d651532e9027a1dd9e9.setContent(html_9bca323271b7ddcdb804c314c8a49821);
circle_marker_336ed99eacf73d8fae04dcd581d3c75d.bindPopup(popup_9157408f840f6d651532e9027a1dd9e9)
;
var circle_marker_806c257c696c0d1442bcd9647bea9ef2 = L.circleMarker(
[47.0224840365, 1.15675534886],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.006, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_47decf2737308d54352305d0411b7489 = L.popup({"maxWidth": "100%"});
var html_691761b87cada734f0fce35ef36b980b = $(`<div id="html_691761b87cada734f0fce35ef36b980b" style="width: 100.0%; height: 100.0%;">CR36188</div>`)[0];
popup_47decf2737308d54352305d0411b7489.setContent(html_691761b87cada734f0fce35ef36b980b);
circle_marker_806c257c696c0d1442bcd9647bea9ef2.bindPopup(popup_47decf2737308d54352305d0411b7489)
;
var circle_marker_b292e006b18c9e96862bd0a420be23f1 = L.circleMarker(
[46.9775766117, 5.78997395755],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0141, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_2439ba7e40410789eeae54cd6ffd7b7e = L.popup({"maxWidth": "100%"});
var html_a0b130151806e7cdc33a1e1b9cd39fde = $(`<div id="html_a0b130151806e7cdc33a1e1b9cd39fde" style="width: 100.0%; height: 100.0%;">CR39370</div>`)[0];
popup_2439ba7e40410789eeae54cd6ffd7b7e.setContent(html_a0b130151806e7cdc33a1e1b9cd39fde);
circle_marker_b292e006b18c9e96862bd0a420be23f1.bindPopup(popup_2439ba7e40410789eeae54cd6ffd7b7e)
;
var circle_marker_5972cc93a3e64f4328d8af275c877b9e = L.circleMarker(
[43.7412885635, -0.752690282166],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0046, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_4cc8f2380d3de921414f29b53202c8a6 = L.popup({"maxWidth": "100%"});
var html_dd475e2b13e067e7a2b25cd2c08543f5 = $(`<div id="html_dd475e2b13e067e7a2b25cd2c08543f5" style="width: 100.0%; height: 100.0%;">CR40201</div>`)[0];
popup_4cc8f2380d3de921414f29b53202c8a6.setContent(html_dd475e2b13e067e7a2b25cd2c08543f5);
circle_marker_5972cc93a3e64f4328d8af275c877b9e.bindPopup(popup_4cc8f2380d3de921414f29b53202c8a6)
;
var circle_marker_0100f61d671fd585aba7f1ab631faf05 = L.circleMarker(
[46.0988370504, 4.1699750449],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0097, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_fa8e65c2bd408145a16624c98a93ee94 = L.popup({"maxWidth": "100%"});
var html_c85ebade8c034b2b881d2356e2c33ad6 = $(`<div id="html_c85ebade8c034b2b881d2356e2c33ad6" style="width: 100.0%; height: 100.0%;">CR42152</div>`)[0];
popup_fa8e65c2bd408145a16624c98a93ee94.setContent(html_c85ebade8c034b2b881d2356e2c33ad6);
circle_marker_0100f61d671fd585aba7f1ab631faf05.bindPopup(popup_fa8e65c2bd408145a16624c98a93ee94)
;
var circle_marker_1b36910ad5cd139771557d3150118580 = L.circleMarker(
[46.0404897361, 4.14491926088],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0028, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_c3d16774bf104d1d028bc33e2781865b = L.popup({"maxWidth": "100%"});
var html_0609c52fb1477291183f16126698927f = $(`<div id="html_0609c52fb1477291183f16126698927f" style="width: 100.0%; height: 100.0%;">CR42170</div>`)[0];
popup_c3d16774bf104d1d028bc33e2781865b.setContent(html_0609c52fb1477291183f16126698927f);
circle_marker_1b36910ad5cd139771557d3150118580.bindPopup(popup_c3d16774bf104d1d028bc33e2781865b)
;
var circle_marker_6c147b7ceb022c8cc629f26bae410f61 = L.circleMarker(
[45.2888928849, 3.43014729837],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0127, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_af80486df2bb6ab11d14267307dfc535 = L.popup({"maxWidth": "100%"});
var html_06725deb3ca1b8a0049a56b969b46810 = $(`<div id="html_06725deb3ca1b8a0049a56b969b46810" style="width: 100.0%; height: 100.0%;">CR43096</div>`)[0];
popup_af80486df2bb6ab11d14267307dfc535.setContent(html_06725deb3ca1b8a0049a56b969b46810);
circle_marker_6c147b7ceb022c8cc629f26bae410f61.bindPopup(popup_af80486df2bb6ab11d14267307dfc535)
;
var circle_marker_04b5c63a7d268fe5b4d84ea235f8bdc2 = L.circleMarker(
[47.2077664835, -1.29844309328],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0089, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_d5a4918c57a27711b023d0f5afd073c2 = L.popup({"maxWidth": "100%"});
var html_2d6a43ad5394c52d2e72418bc73750b3 = $(`<div id="html_2d6a43ad5394c52d2e72418bc73750b3" style="width: 100.0%; height: 100.0%;">CR44079</div>`)[0];
popup_d5a4918c57a27711b023d0f5afd073c2.setContent(html_2d6a43ad5394c52d2e72418bc73750b3);
circle_marker_04b5c63a7d268fe5b4d84ea235f8bdc2.bindPopup(popup_d5a4918c57a27711b023d0f5afd073c2)
;
var circle_marker_bb93cb0a9752bb99960ad50da4f64f81 = L.circleMarker(
[47.8386989042, 2.72939898012],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0134, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_d890f2b963592c37e4219ec61ee39a71 = L.popup({"maxWidth": "100%"});
var html_21f62cbe08b6e8a4c9c4a5587604329b = $(`<div id="html_21f62cbe08b6e8a4c9c4a5587604329b" style="width: 100.0%; height: 100.0%;">CR45229</div>`)[0];
popup_d890f2b963592c37e4219ec61ee39a71.setContent(html_21f62cbe08b6e8a4c9c4a5587604329b);
circle_marker_bb93cb0a9752bb99960ad50da4f64f81.bindPopup(popup_d890f2b963592c37e4219ec61ee39a71)
;
var circle_marker_e8230c270b8a4f0748f166bb6b65a1c3 = L.circleMarker(
[44.7233900467, 3.28132614741],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0034, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_2f29f46721aa2674b4921fafc217b994 = L.popup({"maxWidth": "100%"});
var html_0bf5aa0e212de60ba70216c280a2220f = $(`<div id="html_0bf5aa0e212de60ba70216c280a2220f" style="width: 100.0%; height: 100.0%;">CR48009</div>`)[0];
popup_2f29f46721aa2674b4921fafc217b994.setContent(html_0bf5aa0e212de60ba70216c280a2220f);
circle_marker_e8230c270b8a4f0748f166bb6b65a1c3.bindPopup(popup_2f29f46721aa2674b4921fafc217b994)
;
var circle_marker_a42f550f7c5f6589a1cda455276095df = L.circleMarker(
[48.9733821282, 4.00541672872],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0094, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_04a18e6d193f1f303a2c855218dbb9bd = L.popup({"maxWidth": "100%"});
var html_c807014e50b61789973dcbaf1bd9da9b = $(`<div id="html_c807014e50b61789973dcbaf1bd9da9b" style="width: 100.0%; height: 100.0%;">CR51029</div>`)[0];
popup_04a18e6d193f1f303a2c855218dbb9bd.setContent(html_c807014e50b61789973dcbaf1bd9da9b);
circle_marker_a42f550f7c5f6589a1cda455276095df.bindPopup(popup_04a18e6d193f1f303a2c855218dbb9bd)
;
var circle_marker_b8b502dade9386bf41a91bd490d8580d = L.circleMarker(
[49.1187938082, 4.58881261321],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0041, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_d02c70653827d9e28929c4bd747a47c7 = L.popup({"maxWidth": "100%"});
var html_b2911edec012779ca853fef7a086b1da = $(`<div id="html_b2911edec012779ca853fef7a086b1da" style="width: 100.0%; height: 100.0%;">CR51546</div>`)[0];
popup_d02c70653827d9e28929c4bd747a47c7.setContent(html_b2911edec012779ca853fef7a086b1da);
circle_marker_b8b502dade9386bf41a91bd490d8580d.bindPopup(popup_d02c70653827d9e28929c4bd747a47c7)
;
var circle_marker_8f4615e4788d52b37f7ada30f52f9f2b = L.circleMarker(
[48.992390138, 4.61434632836],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0064, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);
var popup_f6e305fd73ffd6cdc13c68f88a996069 = L.popup({"maxWidth": "100%"});
var html_2afa7c046853c607c076e6ae9b9e8a43 = $(`<div id="html_2afa7c046853c607c076e6ae9b9e8a43" style="width: 100.0%; height: 100.0%;">CR51548</div>`)[0];
popup_f6e305fd73ffd6cdc13c68f88a996069.setContent(html_2afa7c046853c607c076e6ae9b9e8a43);
circle_marker_8f4615e4788d52b37f7ada30f52f9f2b.bindPopup(popup_f6e305fd73ffd6cdc13c68f88a996069)
;
var circle_marker_789ab0560cfcbf2853fc048f5846a7bd = L.circleMarker(
[49.2589058142, 3.94531513362],
{"bubblingMouseEvents": true, "color": "#69b3a2", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "#69b3a2", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 0.0126, "stroke": true, "weight": 3}
).addTo(map_2c70182b1a70f7f1b81c753c11518f6c);