-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoutput.html
1529 lines (875 loc) · 67.2 KB
/
output.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<script src="https://use.fontawesome.com/releases/v5.15.4/js/all.js" data-auto-replace-svg="nest"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css"/>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_36df8d3998a38802d36d52183b3b8735 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet-minimap/3.6.1/Control.MiniMap.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet-minimap/3.6.1/Control.MiniMap.css"/>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>
<style>
#float_image_ce17dda67644491d839ba0951855f251 {
position: absolute;
bottom: 0%;
left: 86%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_36df8d3998a38802d36d52183b3b8735" ></div>
<img id="float_image_ce17dda67644491d839ba0951855f251" alt="float_image"
src="legend.png"
style="z-index: 999999">
</img>
</body>
<script>
var map_36df8d3998a38802d36d52183b3b8735 = L.map(
"map_36df8d3998a38802d36d52183b3b8735",
{
center: [0.0, 0.0],
crs: L.CRS.EPSG3857,
zoom: 2,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_1187c63c88762314a5ad99cc3bfafe4d = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png",
{"attribution": "Map tiles by \u003ca target=\"_blank\" href=\"http://stamen.com\"\u003eStamen Design\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://creativecommons.org/licenses/by/3.0\"\u003eCC BY 3.0\u003c/a\u003e. Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" 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_36df8d3998a38802d36d52183b3b8735);
var tile_layer_e305d5eeedea7cfd6d9153c98ad21b93 = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" 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_36df8d3998a38802d36d52183b3b8735);
var tile_layer_5779f2ff6acc62efbd6d93ecb90e5837 = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.jpg",
{"attribution": "Map tiles by \u003ca target=\"_blank\" href=\"http://stamen.com\"\u003eStamen Design\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://creativecommons.org/licenses/by/3.0\"\u003eCC BY 3.0\u003c/a\u003e. Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://creativecommons.org/licenses/by-sa/3.0\"\u003eCC BY SA\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var tile_layer_6bc23578b159d20a268a00bcff864d1d = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png",
{"attribution": "Map tiles by \u003ca target=\"_blank\" href=\"http://stamen.com\"\u003eStamen Design\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://creativecommons.org/licenses/by/3.0\"\u003eCC BY 3.0\u003c/a\u003e. Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" 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_36df8d3998a38802d36d52183b3b8735);
var tile_layer_92cb41e1062783a4f097742dcf2f8334 = L.tileLayer(
"https://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.jpg",
{"attribution": "Map tiles by \u003ca target=\"_blank\" href=\"http://stamen.com\"\u003eStamen Design\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://creativecommons.org/licenses/by/3.0\"\u003eCC BY 3.0\u003c/a\u003e. Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" href=\"http://creativecommons.org/licenses/by-sa/3.0\"\u003eCC BY SA\u003c/a\u003e.", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var tile_layer_3dd2669fc743a105f9e2e9d824f75b72 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca target=\"_blank\" href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca target=\"_blank\" href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca target=\"_blank\" href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var tile_layer_8f36b2de98b3cac095cce33a731291bc = L.tileLayer(
"https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "Data by \u0026copy; \u003ca target=\"_blank\" href=\"http://openstreetmap.org\"\u003eOpenStreetMap\u003c/a\u003e, under \u003ca target=\"_blank\" 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}
);
var mini_map_e6733ac60755660aa6806e2583071fc7 = new L.Control.MiniMap(
tile_layer_8f36b2de98b3cac095cce33a731291bc,
{"autoToggleDisplay": false, "centerFixed": false, "collapsedHeight": 25, "collapsedWidth": 25, "height": 150, "minimized": false, "position": "bottomright", "toggleDisplay": true, "width": 150, "zoomAnimation": false, "zoomLevelOffset": -5}
);
map_36df8d3998a38802d36d52183b3b8735.addControl(mini_map_e6733ac60755660aa6806e2583071fc7);
var feature_group_262278893dd3852eaa8efe468705b5dd = L.featureGroup(
{}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var heat_map_d36bd9bac427c8ccabab92e4d534ca17 = L.heatLayer(
[[45.7578137, 4.8320114, 3], [45.4401467, 4.3873058, 10], [45.6886292, 5.9146362, 2], [45.1875602, 5.7357819, 2], [45.8992348, 6.1288847, 4], [46.0338359, 6.1069469, 4], [46.1066771, 6.2676644, 2], [46.0190661, 5.9293421, 2], [45.9756168, 6.229819726831506, 2]],
{"blur": 15, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 25}
).addTo(feature_group_262278893dd3852eaa8efe468705b5dd);
var feature_group_3f942e0e87442fb043c443d14c24f633 = L.featureGroup(
{}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var marker_9b9d921066074f71cbd43c73e8fcb5bd = L.marker(
[45.75759659645885, 4.832191053872918],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_ee3d99c149f7b25c0295ae4720568f18 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_9b9d921066074f71cbd43c73e8fcb5bd.setIcon(icon_ee3d99c149f7b25c0295ae4720568f18);
var popup_81ad5fd4f4f5ccaa0efe0234654f6dc5 = L.popup({"maxWidth": "100%"});
var html_d97c0fed6c6a06ce264145735d2ac597 = $(`<div id="html_d97c0fed6c6a06ce264145735d2ac597" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of Pierre MARTIN</div></div>`)[0];
popup_81ad5fd4f4f5ccaa0efe0234654f6dc5.setContent(html_d97c0fed6c6a06ce264145735d2ac597);
marker_9b9d921066074f71cbd43c73e8fcb5bd.bindPopup(popup_81ad5fd4f4f5ccaa0efe0234654f6dc5)
;
marker_9b9d921066074f71cbd43c73e8fcb5bd.bindTooltip(
`<div>
Life of Pierre MARTIN
</div>`,
{"sticky": true}
);
var marker_fd14c0d1e37ea11ce9176df86eb166d4 = L.marker(
[45.440592568078685, 4.387230258397656],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_245637fb323681b033f872a02ae42bc7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_fd14c0d1e37ea11ce9176df86eb166d4.setIcon(icon_245637fb323681b033f872a02ae42bc7);
var popup_071dde691c5fd6143ed28ece7a5c92b0 = L.popup({"maxWidth": "100%"});
var html_4bdd4b7d3378a1706426a9234052464b = $(`<div id="html_4bdd4b7d3378a1706426a9234052464b" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of 0 Antoine MARTIN</div></div>`)[0];
popup_071dde691c5fd6143ed28ece7a5c92b0.setContent(html_4bdd4b7d3378a1706426a9234052464b);
marker_fd14c0d1e37ea11ce9176df86eb166d4.bindPopup(popup_071dde691c5fd6143ed28ece7a5c92b0)
;
marker_fd14c0d1e37ea11ce9176df86eb166d4.bindTooltip(
`<div>
Life of 0 Antoine MARTIN
</div>`,
{"sticky": true}
);
var marker_f125aac29ac46dc327a42a535be5edb1 = L.marker(
[45.440550764545335, 4.387005379362079],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_0e49f50859f37ecc49606f0c7ca22c3e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_f125aac29ac46dc327a42a535be5edb1.setIcon(icon_0e49f50859f37ecc49606f0c7ca22c3e);
var popup_f1a8a42a8e977e4f6023c6e5026de1e2 = L.popup({"maxWidth": "100%"});
var html_c34da289f3d31ea3af8c77c512525e9e = $(`<div id="html_c34da289f3d31ea3af8c77c512525e9e" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of 00 Gabriel MARTIN</div></div>`)[0];
popup_f1a8a42a8e977e4f6023c6e5026de1e2.setContent(html_c34da289f3d31ea3af8c77c512525e9e);
marker_f125aac29ac46dc327a42a535be5edb1.bindPopup(popup_f1a8a42a8e977e4f6023c6e5026de1e2)
;
marker_f125aac29ac46dc327a42a535be5edb1.bindTooltip(
`<div>
Life of 00 Gabriel MARTIN
</div>`,
{"sticky": true}
);
var marker_b8058bf1c6ae162f53862b1b97469fc3 = L.marker(
[45.43979827277164, 4.387308924482301],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_2f7ac5dfbbabe9e4cd81c15bf9ed31f6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_b8058bf1c6ae162f53862b1b97469fc3.setIcon(icon_2f7ac5dfbbabe9e4cd81c15bf9ed31f6);
var popup_7c66201c8318705102c8f89ea56869d5 = L.popup({"maxWidth": "100%"});
var html_dfea9c91a2783c184b5a2a5daa05967e = $(`<div id="html_dfea9c91a2783c184b5a2a5daa05967e" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>000 Jean-Baptiste MARTIN father of Gabriel MARTIN</div></div>`)[0];
popup_7c66201c8318705102c8f89ea56869d5.setContent(html_dfea9c91a2783c184b5a2a5daa05967e);
marker_b8058bf1c6ae162f53862b1b97469fc3.bindPopup(popup_7c66201c8318705102c8f89ea56869d5)
;
marker_b8058bf1c6ae162f53862b1b97469fc3.bindTooltip(
`<div>
000 Jean-Baptiste MARTIN father of Gabriel MARTIN
</div>`,
{"sticky": true}
);
var marker_cddd4d471e013c0bee4a26eec88a76ce = L.marker(
[45.43982133021885, 4.387658050318294],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_2f10a8c324670e0d8a0596fcb2a686d1 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_cddd4d471e013c0bee4a26eec88a76ce.setIcon(icon_2f10a8c324670e0d8a0596fcb2a686d1);
var popup_250c1e79944b5af61902aebd871fca1e = L.popup({"maxWidth": "100%"});
var html_948448ba4caa0a6e84e60dd1661c3f71 = $(`<div id="html_948448ba4caa0a6e84e60dd1661c3f71" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>00 Gabriel MARTIN father of Antoine MARTIN</div></div>`)[0];
popup_250c1e79944b5af61902aebd871fca1e.setContent(html_948448ba4caa0a6e84e60dd1661c3f71);
marker_cddd4d471e013c0bee4a26eec88a76ce.bindPopup(popup_250c1e79944b5af61902aebd871fca1e)
;
marker_cddd4d471e013c0bee4a26eec88a76ce.bindTooltip(
`<div>
00 Gabriel MARTIN father of Antoine MARTIN
</div>`,
{"sticky": true}
);
var marker_8aa655de03e0b64b97df236f9eecd9c5 = L.marker(
[45.43971151514998, 4.3869671873224885],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_5274e33e65124248f457ab82d7d0ced2 = L.AwesomeMarkers.icon(
{"extraClasses": "fas", "icon": "male", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_8aa655de03e0b64b97df236f9eecd9c5.setIcon(icon_5274e33e65124248f457ab82d7d0ced2);
var popup_ff175dddd5849f5282ce45a79102d92f = L.popup({"maxWidth": "100%"});
var html_287108ee54dc788d7f89cd40125c8ca1 = $(`<div id="html_287108ee54dc788d7f89cd40125c8ca1" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>00 Gabriel MARTIN father of Antoine MARTIN</div></div>`)[0];
popup_ff175dddd5849f5282ce45a79102d92f.setContent(html_287108ee54dc788d7f89cd40125c8ca1);
marker_8aa655de03e0b64b97df236f9eecd9c5.bindPopup(popup_ff175dddd5849f5282ce45a79102d92f)
;
marker_8aa655de03e0b64b97df236f9eecd9c5.bindTooltip(
`<div>
00 Gabriel MARTIN father of Antoine MARTIN
</div>`,
{"sticky": true}
);
var poly_line_1489de5bcfad8388747672460b16aa1e = L.polyline(
[[45.43982133021885, 4.387658050318294], [45.43971151514998, 4.3869671873224885]],
{"bubblingMouseEvents": true, "color": "#2b8cbe", "dashArray": [5, 5], "dashOffset": null, "fill": false, "fillColor": "#2b8cbe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "arcs", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 7}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var popup_f70e343cfb726808f942c6e7c45268c0 = L.popup({"maxWidth": "100%"});
var html_61ef4ddedfb39f69462b9ba77e3e80f6 = $(`<div id="html_61ef4ddedfb39f69462b9ba77e3e80f6" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>00 Gabriel MARTIN father of Antoine MARTIN</div></div>`)[0];
popup_f70e343cfb726808f942c6e7c45268c0.setContent(html_61ef4ddedfb39f69462b9ba77e3e80f6);
poly_line_1489de5bcfad8388747672460b16aa1e.bindPopup(popup_f70e343cfb726808f942c6e7c45268c0)
;
poly_line_1489de5bcfad8388747672460b16aa1e.bindTooltip(
`<div>
00 Gabriel MARTIN
</div>`,
{"sticky": true}
);
var marker_fcc1a923f0975016997b0e511a5c1b56 = L.marker(
[45.75778260808422, 4.832157191090383],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_aaf7da11f444952952a4aa741e69c4f4 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_fcc1a923f0975016997b0e511a5c1b56.setIcon(icon_aaf7da11f444952952a4aa741e69c4f4);
var popup_243caff2341e695d08bcc28932c15113 = L.popup({"maxWidth": "100%"});
var html_e2c838f75a560165026e95649156943d = $(`<div id="html_e2c838f75a560165026e95649156943d" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>0 Antoine MARTIN father of Pierre MARTIN</div></div>`)[0];
popup_243caff2341e695d08bcc28932c15113.setContent(html_e2c838f75a560165026e95649156943d);
marker_fcc1a923f0975016997b0e511a5c1b56.bindPopup(popup_243caff2341e695d08bcc28932c15113)
;
marker_fcc1a923f0975016997b0e511a5c1b56.bindTooltip(
`<div>
0 Antoine MARTIN father of Pierre MARTIN
</div>`,
{"sticky": true}
);
var marker_c6994c6cf658ac1b4d85182be979363f = L.marker(
[45.44006704527695, 4.387730327015937],
{"opacity": 0.5}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var icon_67fa0b6e3cc5e9010c1ffc518f03d78f = L.AwesomeMarkers.icon(
{"extraClasses": "fas", "icon": "male", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_c6994c6cf658ac1b4d85182be979363f.setIcon(icon_67fa0b6e3cc5e9010c1ffc518f03d78f);
var popup_416d09ab4c993c569e093fa3c2fa62d7 = L.popup({"maxWidth": "100%"});
var html_c613182976d8b956c31ee502c915c351 = $(`<div id="html_c613182976d8b956c31ee502c915c351" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>0 Antoine MARTIN father of Pierre MARTIN</div></div>`)[0];
popup_416d09ab4c993c569e093fa3c2fa62d7.setContent(html_c613182976d8b956c31ee502c915c351);
marker_c6994c6cf658ac1b4d85182be979363f.bindPopup(popup_416d09ab4c993c569e093fa3c2fa62d7)
;
marker_c6994c6cf658ac1b4d85182be979363f.bindTooltip(
`<div>
0 Antoine MARTIN father of Pierre MARTIN
</div>`,
{"sticky": true}
);
var poly_line_941149a7f918e9c4230dca6801fc98b8 = L.polyline(
[[45.75778260808422, 4.832157191090383], [45.44006704527695, 4.387730327015937]],
{"bubblingMouseEvents": true, "color": "#2b8cbe", "dashArray": [5, 5], "dashOffset": null, "fill": false, "fillColor": "#2b8cbe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "arcs", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 12}
).addTo(feature_group_3f942e0e87442fb043c443d14c24f633);
var popup_9910102ced5b70b24eaf2bc56ed43234 = L.popup({"maxWidth": "100%"});
var html_e633c272ef82172c22dbd974dc04b2d1 = $(`<div id="html_e633c272ef82172c22dbd974dc04b2d1" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>0 Antoine MARTIN father of Pierre MARTIN</div></div>`)[0];
popup_9910102ced5b70b24eaf2bc56ed43234.setContent(html_e633c272ef82172c22dbd974dc04b2d1);
poly_line_941149a7f918e9c4230dca6801fc98b8.bindPopup(popup_9910102ced5b70b24eaf2bc56ed43234)
;
poly_line_941149a7f918e9c4230dca6801fc98b8.bindTooltip(
`<div>
0 Antoine MARTIN
</div>`,
{"sticky": true}
);
var feature_group_f774f83b39268bbf16cd51c613d73613 = L.featureGroup(
{}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var marker_a201f4422e122b2c56c0d2e84ea85e26 = L.marker(
[45.89902154123299, 6.128384991874728],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_a6b65155b1713d691af8ee048e7d66d3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_a201f4422e122b2c56c0d2e84ea85e26.setIcon(icon_a6b65155b1713d691af8ee048e7d66d3);
var popup_1cc45fc3b5d531477ff2679c399cffa9 = L.popup({"maxWidth": "100%"});
var html_bc06c9c7dd0b47e9dd29d2d44f818294 = $(`<div id="html_bc06c9c7dd0b47e9dd29d2d44f818294" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of 1 C©♭line BERNARD</div></div>`)[0];
popup_1cc45fc3b5d531477ff2679c399cffa9.setContent(html_bc06c9c7dd0b47e9dd29d2d44f818294);
marker_a201f4422e122b2c56c0d2e84ea85e26.bindPopup(popup_1cc45fc3b5d531477ff2679c399cffa9)
;
marker_a201f4422e122b2c56c0d2e84ea85e26.bindTooltip(
`<div>
Life of 1 C©♭line BERNARD
</div>`,
{"sticky": true}
);
var marker_4116654d2f3658f7b5e20eef091711bd = L.marker(
[46.0339319575233, 6.1068706083967745],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_50f3bd540d8e999aa46bbff7b4aad75e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_4116654d2f3658f7b5e20eef091711bd.setIcon(icon_50f3bd540d8e999aa46bbff7b4aad75e);
var popup_5d94ef02253a0c85611b014311888580 = L.popup({"maxWidth": "100%"});
var html_f60e38ee9ffb7157da6bc3a90c676788 = $(`<div id="html_f60e38ee9ffb7157da6bc3a90c676788" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of 10 Pierre BERNARD</div></div>`)[0];
popup_5d94ef02253a0c85611b014311888580.setContent(html_f60e38ee9ffb7157da6bc3a90c676788);
marker_4116654d2f3658f7b5e20eef091711bd.bindPopup(popup_5d94ef02253a0c85611b014311888580)
;
marker_4116654d2f3658f7b5e20eef091711bd.bindTooltip(
`<div>
Life of 10 Pierre BERNARD
</div>`,
{"sticky": true}
);
var marker_695c148a7b99f301c6df8d821676fe0b = L.marker(
[46.10647080181351, 6.267449979743183],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_6ab1f8b462311e4eab879a4e2c6374e8 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_695c148a7b99f301c6df8d821676fe0b.setIcon(icon_6ab1f8b462311e4eab879a4e2c6374e8);
var popup_1995af00ad459e92f9723e69a441cad8 = L.popup({"maxWidth": "100%"});
var html_f2ea76b2817cd15e32ff158f1e0e6a76 = $(`<div id="html_f2ea76b2817cd15e32ff158f1e0e6a76" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of 100 Charles BERNARD</div></div>`)[0];
popup_1995af00ad459e92f9723e69a441cad8.setContent(html_f2ea76b2817cd15e32ff158f1e0e6a76);
marker_695c148a7b99f301c6df8d821676fe0b.bindPopup(popup_1995af00ad459e92f9723e69a441cad8)
;
marker_695c148a7b99f301c6df8d821676fe0b.bindTooltip(
`<div>
Life of 100 Charles BERNARD
</div>`,
{"sticky": true}
);
var marker_60bc084edc8abec13c24aa3ff131669e = L.marker(
[46.033567032983264, 6.106816503746704],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_0cc8d223d7320abcd46791331880166e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_60bc084edc8abec13c24aa3ff131669e.setIcon(icon_0cc8d223d7320abcd46791331880166e);
var popup_8ceed6686a9c5803d84c4a8ca795d94f = L.popup({"maxWidth": "100%"});
var html_133c843fc6e0009a5ff7b3110c69006c = $(`<div id="html_133c843fc6e0009a5ff7b3110c69006c" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>100 Charles BERNARD father of Pierre BERNARD</div></div>`)[0];
popup_8ceed6686a9c5803d84c4a8ca795d94f.setContent(html_133c843fc6e0009a5ff7b3110c69006c);
marker_60bc084edc8abec13c24aa3ff131669e.bindPopup(popup_8ceed6686a9c5803d84c4a8ca795d94f)
;
marker_60bc084edc8abec13c24aa3ff131669e.bindTooltip(
`<div>
100 Charles BERNARD father of Pierre BERNARD
</div>`,
{"sticky": true}
);
var marker_9ec2a4688beee411e054120a9f4a1a7c = L.marker(
[46.107091295798035, 6.267575888235183],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_7d5d5483c9ee20db6b234d9ce788e30a = L.AwesomeMarkers.icon(
{"extraClasses": "fas", "icon": "male", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_9ec2a4688beee411e054120a9f4a1a7c.setIcon(icon_7d5d5483c9ee20db6b234d9ce788e30a);
var popup_e38172be64976369f3f9f3e8539a9461 = L.popup({"maxWidth": "100%"});
var html_b24a66787121c8429063aad523457a41 = $(`<div id="html_b24a66787121c8429063aad523457a41" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>100 Charles BERNARD father of Pierre BERNARD</div></div>`)[0];
popup_e38172be64976369f3f9f3e8539a9461.setContent(html_b24a66787121c8429063aad523457a41);
marker_9ec2a4688beee411e054120a9f4a1a7c.bindPopup(popup_e38172be64976369f3f9f3e8539a9461)
;
marker_9ec2a4688beee411e054120a9f4a1a7c.bindTooltip(
`<div>
100 Charles BERNARD father of Pierre BERNARD
</div>`,
{"sticky": true}
);
var poly_line_401c9a5b21a7a8e60d452ac047e5fe31 = L.polyline(
[[46.033567032983264, 6.106816503746704], [46.107091295798035, 6.267575888235183]],
{"bubblingMouseEvents": true, "color": "#2b8cbe", "dashArray": [5, 5], "dashOffset": null, "fill": false, "fillColor": "#2b8cbe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "arcs", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 4}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var popup_61f046420600b739519a218a58c6aec4 = L.popup({"maxWidth": "100%"});
var html_e14406cf311d13785be0c6ce0221368b = $(`<div id="html_e14406cf311d13785be0c6ce0221368b" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>100 Charles BERNARD father of Pierre BERNARD</div></div>`)[0];
popup_61f046420600b739519a218a58c6aec4.setContent(html_e14406cf311d13785be0c6ce0221368b);
poly_line_401c9a5b21a7a8e60d452ac047e5fe31.bindPopup(popup_61f046420600b739519a218a58c6aec4)
;
poly_line_401c9a5b21a7a8e60d452ac047e5fe31.bindTooltip(
`<div>
100 Charles BERNARD
</div>`,
{"sticky": true}
);
var marker_4de39bc93d6059c73d688ec7e2a39e63 = L.marker(
[45.899606893747496, 6.129184656043106],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_520330fb1b74bc281261749eab345c54 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_4de39bc93d6059c73d688ec7e2a39e63.setIcon(icon_520330fb1b74bc281261749eab345c54);
var popup_a4f22e1b323141dbcc21d4cb1abe66d0 = L.popup({"maxWidth": "100%"});
var html_acb2e24ec24bea83bef8ea41192097fd = $(`<div id="html_acb2e24ec24bea83bef8ea41192097fd" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>10 Pierre BERNARD father of C©♭line BERNARD</div></div>`)[0];
popup_a4f22e1b323141dbcc21d4cb1abe66d0.setContent(html_acb2e24ec24bea83bef8ea41192097fd);
marker_4de39bc93d6059c73d688ec7e2a39e63.bindPopup(popup_a4f22e1b323141dbcc21d4cb1abe66d0)
;
marker_4de39bc93d6059c73d688ec7e2a39e63.bindTooltip(
`<div>
10 Pierre BERNARD father of C©♭line BERNARD
</div>`,
{"sticky": true}
);
var marker_a8d90db807aa57e0bc664768fa8b8795 = L.marker(
[46.03371645458407, 6.107185704634649],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_9689f51fd5e8a2dc9b2ccce4f257176e = L.AwesomeMarkers.icon(
{"extraClasses": "fas", "icon": "male", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_a8d90db807aa57e0bc664768fa8b8795.setIcon(icon_9689f51fd5e8a2dc9b2ccce4f257176e);
var popup_84c10277a029f32ad59fc4cbf44ff21f = L.popup({"maxWidth": "100%"});
var html_7f5572da08d4786f6bb639e4fc65f1bf = $(`<div id="html_7f5572da08d4786f6bb639e4fc65f1bf" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>10 Pierre BERNARD father of C©♭line BERNARD</div></div>`)[0];
popup_84c10277a029f32ad59fc4cbf44ff21f.setContent(html_7f5572da08d4786f6bb639e4fc65f1bf);
marker_a8d90db807aa57e0bc664768fa8b8795.bindPopup(popup_84c10277a029f32ad59fc4cbf44ff21f)
;
marker_a8d90db807aa57e0bc664768fa8b8795.bindTooltip(
`<div>
10 Pierre BERNARD father of C©♭line BERNARD
</div>`,
{"sticky": true}
);
var poly_line_e570d7d0cbeb078c1cf7a9f30b7e435c = L.polyline(
[[45.899606893747496, 6.129184656043106], [46.03371645458407, 6.107185704634649]],
{"bubblingMouseEvents": true, "color": "#2b8cbe", "dashArray": [5, 5], "dashOffset": null, "fill": false, "fillColor": "#2b8cbe", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "arcs", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 7}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var popup_02b0c3e0e10ab33619c87d48f91166f3 = L.popup({"maxWidth": "100%"});
var html_cc2b9bc4eee9f614c43736891ce60f53 = $(`<div id="html_cc2b9bc4eee9f614c43736891ce60f53" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>10 Pierre BERNARD father of C©♭line BERNARD</div></div>`)[0];
popup_02b0c3e0e10ab33619c87d48f91166f3.setContent(html_cc2b9bc4eee9f614c43736891ce60f53);
poly_line_e570d7d0cbeb078c1cf7a9f30b7e435c.bindPopup(popup_02b0c3e0e10ab33619c87d48f91166f3)
;
poly_line_e570d7d0cbeb078c1cf7a9f30b7e435c.bindTooltip(
`<div>
10 Pierre BERNARD
</div>`,
{"sticky": true}
);
var marker_50fe8895eb163d05a727ed5fc1826be2 = L.marker(
[45.75743512167249, 4.83195201751822],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_d4310b0ab6d5dc895982561480c2477b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_50fe8895eb163d05a727ed5fc1826be2.setIcon(icon_d4310b0ab6d5dc895982561480c2477b);
var popup_8ce62031eba129c64aee4cbc27a5f6eb = L.popup({"maxWidth": "100%"});
var html_ef2d0d1b5d29adf7b28b2d53a5f3b8c2 = $(`<div id="html_ef2d0d1b5d29adf7b28b2d53a5f3b8c2" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>1 C©♭line BERNARD mother of Pierre MARTIN</div></div>`)[0];
popup_8ce62031eba129c64aee4cbc27a5f6eb.setContent(html_ef2d0d1b5d29adf7b28b2d53a5f3b8c2);
marker_50fe8895eb163d05a727ed5fc1826be2.bindPopup(popup_8ce62031eba129c64aee4cbc27a5f6eb)
;
marker_50fe8895eb163d05a727ed5fc1826be2.bindTooltip(
`<div>
1 C©♭line BERNARD mother of Pierre MARTIN
</div>`,
{"sticky": true}
);
var marker_d39cbbc26289f16127cf3bb0c78c0d32 = L.marker(
[45.89927693241576, 6.129380756436424],
{"opacity": 0.5}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var icon_8c4fdaf8e363e14eda292268b541f5d3 = L.AwesomeMarkers.icon(
{"extraClasses": "fas", "icon": "female", "iconColor": "white", "markerColor": "pink", "prefix": "fa"}
);
marker_d39cbbc26289f16127cf3bb0c78c0d32.setIcon(icon_8c4fdaf8e363e14eda292268b541f5d3);
var popup_8d3ccb04e9f7e44c141742a880e18874 = L.popup({"maxWidth": "100%"});
var html_194c5c01aa8455a293c1d7568a3c6911 = $(`<div id="html_194c5c01aa8455a293c1d7568a3c6911" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>1 C©♭line BERNARD mother of Pierre MARTIN</div></div>`)[0];
popup_8d3ccb04e9f7e44c141742a880e18874.setContent(html_194c5c01aa8455a293c1d7568a3c6911);
marker_d39cbbc26289f16127cf3bb0c78c0d32.bindPopup(popup_8d3ccb04e9f7e44c141742a880e18874)
;
marker_d39cbbc26289f16127cf3bb0c78c0d32.bindTooltip(
`<div>
1 C©♭line BERNARD mother of Pierre MARTIN
</div>`,
{"sticky": true}
);
var poly_line_1d582257bf48d9c410ed839b3bc70a81 = L.polyline(
[[45.75743512167249, 4.83195201751822], [45.89927693241576, 6.129380756436424]],
{"bubblingMouseEvents": true, "color": "pink", "dashArray": [5, 5], "dashOffset": null, "fill": false, "fillColor": "pink", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "arcs", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 12}
).addTo(feature_group_f774f83b39268bbf16cd51c613d73613);
var popup_70f344aa6ae9325480b2b4ff05165972 = L.popup({"maxWidth": "100%"});
var html_3548fc3cea6a2376425b3d1fec2b4a55 = $(`<div id="html_3548fc3cea6a2376425b3d1fec2b4a55" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>1 C©♭line BERNARD mother of Pierre MARTIN</div></div>`)[0];
popup_70f344aa6ae9325480b2b4ff05165972.setContent(html_3548fc3cea6a2376425b3d1fec2b4a55);
poly_line_1d582257bf48d9c410ed839b3bc70a81.bindPopup(popup_70f344aa6ae9325480b2b4ff05165972)
;
poly_line_1d582257bf48d9c410ed839b3bc70a81.bindTooltip(
`<div>
1 C©♭line BERNARD
</div>`,
{"sticky": true}
);
var feature_group_a6cb220df319aace11d501184e583950 = L.featureGroup(
{}
).addTo(map_36df8d3998a38802d36d52183b3b8735);
var marker_21e1e976b4b4d679ece21f97cfad8472 = L.marker(
[45.688534516825186, 5.914476314229866],
{"opacity": 0.5}
).addTo(feature_group_a6cb220df319aace11d501184e583950);
var icon_29062ab985b118788d05486633a1d514 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "child", "iconColor": "white", "markerColor": "orange", "prefix": "fa"}
);
marker_21e1e976b4b4d679ece21f97cfad8472.setIcon(icon_29062ab985b118788d05486633a1d514);
var popup_b88c950bebff7b560751037c8a6e65fe = L.popup({"maxWidth": "100%"});
var html_ab86428c08eda224edf268602c9dd466 = $(`<div id="html_ab86428c08eda224edf268602c9dd466" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>Life of 010 Jean-Pierre MARIE</div></div>`)[0];
popup_b88c950bebff7b560751037c8a6e65fe.setContent(html_ab86428c08eda224edf268602c9dd466);
marker_21e1e976b4b4d679ece21f97cfad8472.bindPopup(popup_b88c950bebff7b560751037c8a6e65fe)
;
marker_21e1e976b4b4d679ece21f97cfad8472.bindTooltip(
`<div>
Life of 010 Jean-Pierre MARIE
</div>`,
{"sticky": true}
);
var marker_28daca21cb2cfa3c7cff2a961304d053 = L.marker(
[45.68862670322688, 5.9147664815296865],
{"opacity": 0.5}
).addTo(feature_group_a6cb220df319aace11d501184e583950);
var icon_654dbd3753383e45388f218a9575ed72 = L.AwesomeMarkers.icon(
{"extraClasses": "fas", "icon": "male", "iconColor": "white", "markerColor": "blue", "prefix": "fa"}
);
marker_28daca21cb2cfa3c7cff2a961304d053.setIcon(icon_654dbd3753383e45388f218a9575ed72);
var popup_211ba1e169609771d5be9e3908dd0059 = L.popup({"maxWidth": "100%"});
var html_907d38c45d1cf51c3d41c6e2e7ec4c11 = $(`<div id="html_907d38c45d1cf51c3d41c6e2e7ec4c11" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>010 Jean-Pierre MARIE father of Henriette MARIE</div></div>`)[0];
popup_211ba1e169609771d5be9e3908dd0059.setContent(html_907d38c45d1cf51c3d41c6e2e7ec4c11);
marker_28daca21cb2cfa3c7cff2a961304d053.bindPopup(popup_211ba1e169609771d5be9e3908dd0059)
;
marker_28daca21cb2cfa3c7cff2a961304d053.bindTooltip(
`<div>
010 Jean-Pierre MARIE father of Henriette MARIE
</div>`,
{"sticky": true}
);
var marker_cf78589a7b55c7c847b03d5d88cedae0 = L.marker(
[45.43973067446289, 4.387645343030488],
{"opacity": 0.5}
).addTo(feature_group_a6cb220df319aace11d501184e583950);
var icon_79c6e71d57f3415419518486cbd1c25d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "baby", "iconColor": "white", "markerColor": "green", "prefix": "fa"}
);
marker_cf78589a7b55c7c847b03d5d88cedae0.setIcon(icon_79c6e71d57f3415419518486cbd1c25d);
var popup_bd734d94f68a59846c5b12bb6d216a2b = L.popup({"maxWidth": "100%"});
var html_03609653291bda7f0920388096e612a9 = $(`<div id="html_03609653291bda7f0920388096e612a9" style="width: 100.0%; height: 100.0%;"><div style='min-width: 150px'>01 Henriette MARIE mother of Antoine MARTIN</div></div>`)[0];
popup_bd734d94f68a59846c5b12bb6d216a2b.setContent(html_03609653291bda7f0920388096e612a9);
marker_cf78589a7b55c7c847b03d5d88cedae0.bindPopup(popup_bd734d94f68a59846c5b12bb6d216a2b)
;
marker_cf78589a7b55c7c847b03d5d88cedae0.bindTooltip(
`<div>
01 Henriette MARIE mother of Antoine MARTIN
</div>`,
{"sticky": true}
);
var feature_group_ddeefdafcb47de937c4f29f1a410ddde = L.featureGroup(