-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
16181 lines (8807 loc) · 690 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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_b5b1f4bbb9b65ef7784985055240bee6 {
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.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
<script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>
</head>
<body>
<div style="position: fixed;
bottom: 50px; left: 50px; width: 200px; height: auto;
background-color: white; border:2px solid grey; z-index:9999; font-size:14px;
overflow: auto; padding: 10px;">
<b>Legend</b><br><i style="background:red;width: 12px;height: 12px;float: left;margin-right: 5px;"></i> Restaurant<br><i style="background:green;width: 12px;height: 12px;float: left;margin-right: 5px;"></i> Hospital<br><i style="background:blue;width: 12px;height: 12px;float: left;margin-right: 5px;"></i> EHPAD/École/Senior<br><i style="background:purple;width: 12px;height: 12px;float: left;margin-right: 5px;"></i> Bar<br><i style="background:darkblue;width: 12px;height: 12px;float: left;margin-right: 5px;"></i> Hotel<br></div>
<div class="folium-map" id="map_b5b1f4bbb9b65ef7784985055240bee6" ></div>
</body>
<script>
var map_b5b1f4bbb9b65ef7784985055240bee6 = L.map(
"map_b5b1f4bbb9b65ef7784985055240bee6",
{
center: [47.322, 5.0415],
crs: L.CRS.EPSG3857,
zoom: 13,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_a794660f733c99e1d4aecfaf4fffa044 = L.tileLayer(
"https://tile.openstreetmap.org/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
);
tile_layer_a794660f733c99e1d4aecfaf4fffa044.addTo(map_b5b1f4bbb9b65ef7784985055240bee6);
var marker_cluster_03106bee5fadef45cec6e762cd25e8a4 = L.markerClusterGroup(
{}
);
var marker_df84d5948fcfe89f28f1e81ff2c5482c = L.marker(
[47.3244206, 5.0292406],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_2001532f1fb736868cf1753edc527e2e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_df84d5948fcfe89f28f1e81ff2c5482c.setIcon(icon_2001532f1fb736868cf1753edc527e2e);
var popup_bfeae0a4cb00e6e34f1f93bbe81b843e = L.popup({"maxWidth": 250});
var html_8dda0bd5c8f4153b56b62e85d0ffaf96 = $(`<div id="html_8dda0bd5c8f4153b56b62e85d0ffaf96" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Africain plats africain</b><br> 18 Rue des Perrières<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_bfeae0a4cb00e6e34f1f93bbe81b843e.setContent(html_8dda0bd5c8f4153b56b62e85d0ffaf96);
marker_df84d5948fcfe89f28f1e81ff2c5482c.bindPopup(popup_bfeae0a4cb00e6e34f1f93bbe81b843e)
;
marker_df84d5948fcfe89f28f1e81ff2c5482c.bindTooltip(
`<div>
Africain plats africain
</div>`,
{"sticky": true}
);
var marker_14dd398b4b90d2fcde7451d7e0af1e0e = L.marker(
[47.3154497, 5.0369768],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_aeb5f25e2416bd2db9a60c5d5dbd064d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_14dd398b4b90d2fcde7451d7e0af1e0e.setIcon(icon_aeb5f25e2416bd2db9a60c5d5dbd064d);
var popup_52d24243de4ac3db08a119ce5a6930b0 = L.popup({"maxWidth": 250});
var html_7173cad6361ad11ef09824ca108370c9 = $(`<div id="html_7173cad6361ad11ef09824ca108370c9" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Restaurant Africain Tokadiane 50,Rue du transvaal 21000 Dijon</b><br> 50 Rue du Transvaal<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_52d24243de4ac3db08a119ce5a6930b0.setContent(html_7173cad6361ad11ef09824ca108370c9);
marker_14dd398b4b90d2fcde7451d7e0af1e0e.bindPopup(popup_52d24243de4ac3db08a119ce5a6930b0)
;
marker_14dd398b4b90d2fcde7451d7e0af1e0e.bindTooltip(
`<div>
Restaurant Africain Tokadiane 50,Rue du transvaal 21000 Dijon
</div>`,
{"sticky": true}
);
var marker_4215322568237b45b0f80c0d01a92a53 = L.marker(
[47.3138846, 5.0488444],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_57d55bd5404adae4b632901321290f1b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_4215322568237b45b0f80c0d01a92a53.setIcon(icon_57d55bd5404adae4b632901321290f1b);
var popup_6d019523910437e567ef01618f87860d = L.popup({"maxWidth": 250});
var html_bf9b4621e7a10aec699d45c8d897e0bf = $(`<div id="html_bf9b4621e7a10aec699d45c8d897e0bf" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">West Africa</b><br> 64 Rue d'Auxonne<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_6d019523910437e567ef01618f87860d.setContent(html_bf9b4621e7a10aec699d45c8d897e0bf);
marker_4215322568237b45b0f80c0d01a92a53.bindPopup(popup_6d019523910437e567ef01618f87860d)
;
marker_4215322568237b45b0f80c0d01a92a53.bindTooltip(
`<div>
West Africa
</div>`,
{"sticky": true}
);
var marker_ff0a38ae645ebc7c0fe70aa86d34de43 = L.marker(
[47.3294425, 5.0487692],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_395a30e89c733559b5577c38b11cbee0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_ff0a38ae645ebc7c0fe70aa86d34de43.setIcon(icon_395a30e89c733559b5577c38b11cbee0);
var popup_6342d573f44ed7c961611eab719d95c8 = L.popup({"maxWidth": 250});
var html_6de1bcdc3767e947b75d5a8c44bf15e9 = $(`<div id="html_6de1bcdc3767e947b75d5a8c44bf15e9" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Ararat'S Foodies</b><br> 8 Bd de la Marne<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_6342d573f44ed7c961611eab719d95c8.setContent(html_6de1bcdc3767e947b75d5a8c44bf15e9);
marker_ff0a38ae645ebc7c0fe70aa86d34de43.bindPopup(popup_6342d573f44ed7c961611eab719d95c8)
;
marker_ff0a38ae645ebc7c0fe70aa86d34de43.bindTooltip(
`<div>
Ararat'S Foodies
</div>`,
{"sticky": true}
);
var marker_a6140c1b9ad406747435921e3a78fdf7 = L.marker(
[47.322598, 5.0426141],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_574203ad3b3931fd4d73afbd405a5a91 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_a6140c1b9ad406747435921e3a78fdf7.setIcon(icon_574203ad3b3931fd4d73afbd405a5a91);
var popup_a3bdc037d008ff8d5509c337adef63b2 = L.popup({"maxWidth": 250});
var html_54161fbd7f45447cfd3d72ea676c4f1c = $(`<div id="html_54161fbd7f45447cfd3d72ea676c4f1c" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Aïda Healthy Noodle</b><br> 4 Rue de la Chouette<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_a3bdc037d008ff8d5509c337adef63b2.setContent(html_54161fbd7f45447cfd3d72ea676c4f1c);
marker_a6140c1b9ad406747435921e3a78fdf7.bindPopup(popup_a3bdc037d008ff8d5509c337adef63b2)
;
marker_a6140c1b9ad406747435921e3a78fdf7.bindTooltip(
`<div>
Aïda Healthy Noodle
</div>`,
{"sticky": true}
);
var marker_a9e22a94ae01cc8c0e2ee21dc8a80e7d = L.marker(
[47.3224203, 5.0434715],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_0a48b8ccbb32242bc7adb372f8af9d07 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_a9e22a94ae01cc8c0e2ee21dc8a80e7d.setIcon(icon_0a48b8ccbb32242bc7adb372f8af9d07);
var popup_2a5c8ef00f074d7e81108060ae3e557e = L.popup({"maxWidth": 250});
var html_5b922f028f2109f13d7073719a560a05 = $(`<div id="html_5b922f028f2109f13d7073719a560a05" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">La Paillote</b><br> 7 Rue Jeannin<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_2a5c8ef00f074d7e81108060ae3e557e.setContent(html_5b922f028f2109f13d7073719a560a05);
marker_a9e22a94ae01cc8c0e2ee21dc8a80e7d.bindPopup(popup_2a5c8ef00f074d7e81108060ae3e557e)
;
marker_a9e22a94ae01cc8c0e2ee21dc8a80e7d.bindTooltip(
`<div>
La Paillote
</div>`,
{"sticky": true}
);
var marker_ca73a8af03da274165f0e47753771ed3 = L.marker(
[47.357815, 5.0517345],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_d0275a1f888ecf3609221c988c33e20d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_ca73a8af03da274165f0e47753771ed3.setIcon(icon_d0275a1f888ecf3609221c988c33e20d);
var popup_6250ea8603540cb8bdcf94ef8c079e48 = L.popup({"maxWidth": 250});
var html_3745dcbb8e92be72c5bca003442af8af = $(`<div id="html_3745dcbb8e92be72c5bca003442af8af" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">TRAN</b><br> Rte de Langres<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_6250ea8603540cb8bdcf94ef8c079e48.setContent(html_3745dcbb8e92be72c5bca003442af8af);
marker_ca73a8af03da274165f0e47753771ed3.bindPopup(popup_6250ea8603540cb8bdcf94ef8c079e48)
;
marker_ca73a8af03da274165f0e47753771ed3.bindTooltip(
`<div>
TRAN
</div>`,
{"sticky": true}
);
var marker_9dc00e83eaac5e045d5668f8be802b6e = L.marker(
[47.355908, 5.051387],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_03d9f31ac9319123a01a165ec7faebe6 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "red", "prefix": "glyphicon"}
);
marker_9dc00e83eaac5e045d5668f8be802b6e.setIcon(icon_03d9f31ac9319123a01a165ec7faebe6);
var popup_79686bb6807706cf2c0cb5a10c8d85a0 = L.popup({"maxWidth": 250});
var html_6b730ea75398c6a26e07a9b49ae56913 = $(`<div id="html_6b730ea75398c6a26e07a9b49ae56913" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">TRAN express</b><br> La Toison d'or, Centre commercial Toison d'Or<br> 21000 Dijon<br> Restaurant </div> </div>`)[0];
popup_79686bb6807706cf2c0cb5a10c8d85a0.setContent(html_6b730ea75398c6a26e07a9b49ae56913);
marker_9dc00e83eaac5e045d5668f8be802b6e.bindPopup(popup_79686bb6807706cf2c0cb5a10c8d85a0)
;
marker_9dc00e83eaac5e045d5668f8be802b6e.bindTooltip(
`<div>
TRAN express
</div>`,
{"sticky": true}
);
var marker_e80f8f5fe1007aa351e289357ee21f06 = L.marker(
[47.3257485, 5.0427794],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_7e4c664a697e0f78b32ad4c20945832b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "blue", "prefix": "glyphicon"}
);
marker_e80f8f5fe1007aa351e289357ee21f06.setIcon(icon_7e4c664a697e0f78b32ad4c20945832b);
var popup_3a9f48f1ef662aea94d78cf7455874d4 = L.popup({"maxWidth": 250});
var html_0e4116b886d18f3b5f3fca78cec3bbc7 = $(`<div id="html_0e4116b886d18f3b5f3fca78cec3bbc7" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Maison des seniors</b><br> Rue Mère Javouhey<br> Dijon 21000<br> EHPAD/École/Senior </div> </div>`)[0];
popup_3a9f48f1ef662aea94d78cf7455874d4.setContent(html_0e4116b886d18f3b5f3fca78cec3bbc7);
marker_e80f8f5fe1007aa351e289357ee21f06.bindPopup(popup_3a9f48f1ef662aea94d78cf7455874d4)
;
marker_e80f8f5fe1007aa351e289357ee21f06.bindTooltip(
`<div>
Maison des seniors
</div>`,
{"sticky": true}
);
var marker_417340c555649391b99f2fa7359e279b = L.marker(
[47.3189349, 5.02824],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_7aec0f87bee98f4138b288d72405a9ac = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_417340c555649391b99f2fa7359e279b.setIcon(icon_7aec0f87bee98f4138b288d72405a9ac);
var popup_e0a917bd113fbb2a376630339139e387 = L.popup({"maxWidth": 250});
var html_b47f3b57c2d8e07861213fb771f8c7b3 = $(`<div id="html_b47f3b57c2d8e07861213fb771f8c7b3" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Bar restaurant l'Equipe</b><br> 36 Rue du Faubourg Raines<br> 21000 Dijon<br> Bar </div> </div>`)[0];
popup_e0a917bd113fbb2a376630339139e387.setContent(html_b47f3b57c2d8e07861213fb771f8c7b3);
marker_417340c555649391b99f2fa7359e279b.bindPopup(popup_e0a917bd113fbb2a376630339139e387)
;
marker_417340c555649391b99f2fa7359e279b.bindTooltip(
`<div>
Bar restaurant l'Equipe
</div>`,
{"sticky": true}
);
var marker_3bfd5aeef1fbc370387470f64925b3ee = L.marker(
[47.3303337, 5.0235707],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_b3846c95b46ef12d0c99a52b9cf630e7 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_3bfd5aeef1fbc370387470f64925b3ee.setIcon(icon_b3846c95b46ef12d0c99a52b9cf630e7);
var popup_9176ceb0bea2a532fbb1bdc9a37698f8 = L.popup({"maxWidth": 250});
var html_d887e15dcc6b95c09e1382fe741cb5e4 = $(`<div id="html_d887e15dcc6b95c09e1382fe741cb5e4" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Brasserie Les Lilas</b><br> 76 Av. Victor Hugo<br> 21000 Dijon<br> Bar </div> </div>`)[0];
popup_9176ceb0bea2a532fbb1bdc9a37698f8.setContent(html_d887e15dcc6b95c09e1382fe741cb5e4);
marker_3bfd5aeef1fbc370387470f64925b3ee.bindPopup(popup_9176ceb0bea2a532fbb1bdc9a37698f8)
;
marker_3bfd5aeef1fbc370387470f64925b3ee.bindTooltip(
`<div>
Brasserie Les Lilas
</div>`,
{"sticky": true}
);
var marker_917aab7670edb486e398dc059351f597 = L.marker(
[47.3278882, 5.0382958],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_c3013bd24890f74cac4ebc150fa00961 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_917aab7670edb486e398dc059351f597.setIcon(icon_c3013bd24890f74cac4ebc150fa00961);
var popup_dc1f90021e9be5a6b98d3bebe1b1b460 = L.popup({"maxWidth": 250});
var html_3ebc86e895c79a2b8e6e2124e1674f9d = $(`<div id="html_3ebc86e895c79a2b8e6e2124e1674f9d" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">L'Antre II Mondes</b><br> 21 Rue d'Ahuy<br> 21000 Dijon<br> Bar </div> </div>`)[0];
popup_dc1f90021e9be5a6b98d3bebe1b1b460.setContent(html_3ebc86e895c79a2b8e6e2124e1674f9d);
marker_917aab7670edb486e398dc059351f597.bindPopup(popup_dc1f90021e9be5a6b98d3bebe1b1b460)
;
marker_917aab7670edb486e398dc059351f597.bindTooltip(
`<div>
L'Antre II Mondes
</div>`,
{"sticky": true}
);
var marker_ff98c12e500323c13b31fd8e207af674 = L.marker(
[47.3288548, 5.0224791],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_3ddb92f1701e76f9f38ec71d47a9fc7d = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_ff98c12e500323c13b31fd8e207af674.setIcon(icon_3ddb92f1701e76f9f38ec71d47a9fc7d);
var popup_1d86d7c2c05f972fb9b5dcfe04dc9c8a = L.popup({"maxWidth": 250});
var html_b155c60336d589a195ec325288ccc712 = $(`<div id="html_b155c60336d589a195ec325288ccc712" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Le Bilboquet</b><br> 54 Rue de Talant<br> 21000 Dijon<br> Bar </div> </div>`)[0];
popup_1d86d7c2c05f972fb9b5dcfe04dc9c8a.setContent(html_b155c60336d589a195ec325288ccc712);
marker_ff98c12e500323c13b31fd8e207af674.bindPopup(popup_1d86d7c2c05f972fb9b5dcfe04dc9c8a)
;
marker_ff98c12e500323c13b31fd8e207af674.bindTooltip(
`<div>
Le Bilboquet
</div>`,
{"sticky": true}
);
var marker_5eb4c5a8bdc133aeaf40dfbf330620e9 = L.marker(
[47.298782, 5.0200776],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_ac8e0888d217b9d56b08607b3b284e24 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "purple", "prefix": "glyphicon"}
);
marker_5eb4c5a8bdc133aeaf40dfbf330620e9.setIcon(icon_ac8e0888d217b9d56b08607b3b284e24);
var popup_2c5d394ea4c1c8c83c63da93c46baefa = L.popup({"maxWidth": 250});
var html_dc826afac15545868edd985806d95328 = $(`<div id="html_dc826afac15545868edd985806d95328" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Le Bon Coin</b><br> 43 Av. Roland Carraz<br> 21300 Chenôve<br> Bar </div> </div>`)[0];
popup_2c5d394ea4c1c8c83c63da93c46baefa.setContent(html_dc826afac15545868edd985806d95328);
marker_5eb4c5a8bdc133aeaf40dfbf330620e9.bindPopup(popup_2c5d394ea4c1c8c83c63da93c46baefa)
;
marker_5eb4c5a8bdc133aeaf40dfbf330620e9.bindTooltip(
`<div>
Le Bon Coin
</div>`,
{"sticky": true}
);
var marker_ea99a0bb9ae722150db8b65b964e5ed3 = L.marker(
[47.3242803, 5.0397306],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_811eee6069f6cdb8f92468cb99c71cef = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_ea99a0bb9ae722150db8b65b964e5ed3.setIcon(icon_811eee6069f6cdb8f92468cb99c71cef);
var popup_cffd01db25ee843b284752a9027a4d46 = L.popup({"maxWidth": 250});
var html_e461eb729a21e0af2133e4c671db2669 = $(`<div id="html_e461eb729a21e0af2133e4c671db2669" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Bistrot des Halles</b><br> 10 Rue Bannelier<br> 21000 Dijon<br> Bistro </div> </div>`)[0];
popup_cffd01db25ee843b284752a9027a4d46.setContent(html_e461eb729a21e0af2133e4c671db2669);
marker_ea99a0bb9ae722150db8b65b964e5ed3.bindPopup(popup_cffd01db25ee843b284752a9027a4d46)
;
marker_ea99a0bb9ae722150db8b65b964e5ed3.bindTooltip(
`<div>
Bistrot des Halles
</div>`,
{"sticky": true}
);
var marker_84ce6ee67e37df7b06723864aadd1ce0 = L.marker(
[47.0209015, 4.8427933],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_92a4cff2a5ae53ac7ebec1028314319c = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_84ce6ee67e37df7b06723864aadd1ce0.setIcon(icon_92a4cff2a5ae53ac7ebec1028314319c);
var popup_b9a2bd80c0d7ee1cb3752d1cde1e2e86 = L.popup({"maxWidth": 250});
var html_7debfdc1e99aab99b240e3da9a80bbdc = $(`<div id="html_7debfdc1e99aab99b240e3da9a80bbdc" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Biz'tro "Chic & Gourmand"</b><br> 4 Pl. Madeleine<br> 21200 Beaune<br> Bistro </div> </div>`)[0];
popup_b9a2bd80c0d7ee1cb3752d1cde1e2e86.setContent(html_7debfdc1e99aab99b240e3da9a80bbdc);
marker_84ce6ee67e37df7b06723864aadd1ce0.bindPopup(popup_b9a2bd80c0d7ee1cb3752d1cde1e2e86)
;
marker_84ce6ee67e37df7b06723864aadd1ce0.bindTooltip(
`<div>
Biz'tro "Chic & Gourmand"
</div>`,
{"sticky": true}
);
var marker_317b9976953f1a287092a95c48f717c4 = L.marker(
[47.0228254, 4.8392376],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_6a2324146eb4c32cc1f07e3d53eba58e = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_317b9976953f1a287092a95c48f717c4.setIcon(icon_6a2324146eb4c32cc1f07e3d53eba58e);
var popup_c0811fb9cc89e6396f3d1e130f856183 = L.popup({"maxWidth": 250});
var html_e148699b6cf7fe68327f43d02d909b92 = $(`<div id="html_e148699b6cf7fe68327f43d02d909b92" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Le Bistro de L'Hôtel</b><br> 3 Rue Samuel Legay<br> 21200 Beaune<br> Bistro </div> </div>`)[0];
popup_c0811fb9cc89e6396f3d1e130f856183.setContent(html_e148699b6cf7fe68327f43d02d909b92);
marker_317b9976953f1a287092a95c48f717c4.bindPopup(popup_c0811fb9cc89e6396f3d1e130f856183)
;
marker_317b9976953f1a287092a95c48f717c4.bindTooltip(
`<div>
Le Bistro de L'Hôtel
</div>`,
{"sticky": true}
);
var marker_1dc9a169feb6fc8a28742a7f0539e0ba = L.marker(
[47.021411, 4.84182],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_f0baa2c439a6805adffdd4400a4e3803 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_1dc9a169feb6fc8a28742a7f0539e0ba.setIcon(icon_f0baa2c439a6805adffdd4400a4e3803);
var popup_3e4d40a8c4ca3262e55c9306fbd5049a = L.popup({"maxWidth": 250});
var html_e44665fc533bd1ea49f1790953e38f8b = $(`<div id="html_e44665fc533bd1ea49f1790953e38f8b" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Le Bistro Des Cocottes</b><br> 3 Pl. Madeleine<br> 21200 Beaune<br> Bistro </div> </div>`)[0];
popup_3e4d40a8c4ca3262e55c9306fbd5049a.setContent(html_e44665fc533bd1ea49f1790953e38f8b);
marker_1dc9a169feb6fc8a28742a7f0539e0ba.bindPopup(popup_3e4d40a8c4ca3262e55c9306fbd5049a)
;
marker_1dc9a169feb6fc8a28742a7f0539e0ba.bindTooltip(
`<div>
Le Bistro Des Cocottes
</div>`,
{"sticky": true}
);
var marker_161827ca2ea6161953783de6301a6a54 = L.marker(
[47.3175265, 5.030767],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_8ef5ffeb07760722958732c2a56fe260 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_161827ca2ea6161953783de6301a6a54.setIcon(icon_8ef5ffeb07760722958732c2a56fe260);
var popup_18e8099fd12e2b85da7c26da256df397 = L.popup({"maxWidth": 250});
var html_79a51a9687842bd17c45291826806403 = $(`<div id="html_79a51a9687842bd17c45291826806403" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Le Comptoir de la Cité</b><br> 12 Parvis de l'Unesco<br> 21000 Dijon<br> Bistro </div> </div>`)[0];
popup_18e8099fd12e2b85da7c26da256df397.setContent(html_79a51a9687842bd17c45291826806403);
marker_161827ca2ea6161953783de6301a6a54.bindPopup(popup_18e8099fd12e2b85da7c26da256df397)
;
marker_161827ca2ea6161953783de6301a6a54.bindTooltip(
`<div>
Le Comptoir de la Cité
</div>`,
{"sticky": true}
);
var marker_e60bb2ea283a1028082b2a2cc4a56f84 = L.marker(
[47.3189241, 5.0338522],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_224338624c48c3739e38ab3013aded7b = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_e60bb2ea283a1028082b2a2cc4a56f84.setIcon(icon_224338624c48c3739e38ab3013aded7b);
var popup_039a78c211d85637c6ea5a1f4846784c = L.popup({"maxWidth": 250});
var html_18d1d1ecc3caaa5713f20c755615dff2 = $(`<div id="html_18d1d1ecc3caaa5713f20c755615dff2" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Thé Vin</b><br> 72 Rue Monge<br> 21000 Dijon<br> Bistro </div> </div>`)[0];
popup_039a78c211d85637c6ea5a1f4846784c.setContent(html_18d1d1ecc3caaa5713f20c755615dff2);
marker_e60bb2ea283a1028082b2a2cc4a56f84.bindPopup(popup_039a78c211d85637c6ea5a1f4846784c)
;
marker_e60bb2ea283a1028082b2a2cc4a56f84.bindTooltip(
`<div>
Thé Vin
</div>`,
{"sticky": true}
);
var marker_b72bdb0d6f65d40e63f75a5e3d7c9c96 = L.marker(
[47.3222717, 5.03922],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_681e19d084385ddacd5400d70831fdd0 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_b72bdb0d6f65d40e63f75a5e3d7c9c96.setIcon(icon_681e19d084385ddacd5400d70831fdd0);
var popup_053c7111ce316ec2904617d7fe109840 = L.popup({"maxWidth": 250});
var html_f9f0c4c953b74014237eb4c33de5f952 = $(`<div id="html_f9f0c4c953b74014237eb4c33de5f952" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Au Moulin à Vent</b><br> 8 Pl. François Rude<br> 21000 Dijon<br> Brasserie </div> </div>`)[0];
popup_053c7111ce316ec2904617d7fe109840.setContent(html_f9f0c4c953b74014237eb4c33de5f952);
marker_b72bdb0d6f65d40e63f75a5e3d7c9c96.bindPopup(popup_053c7111ce316ec2904617d7fe109840)
;
marker_b72bdb0d6f65d40e63f75a5e3d7c9c96.bindTooltip(
`<div>
Au Moulin à Vent
</div>`,
{"sticky": true}
);
var marker_5c6d6c0c537a73fcd7880381ec5d7bb0 = L.marker(
[47.3282974, 5.0494999],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_413904200ac575aa78cf987bfaa0e586 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_5c6d6c0c537a73fcd7880381ec5d7bb0.setIcon(icon_413904200ac575aa78cf987bfaa0e586);
var popup_5ca93bf904dae43b7be8049aef4b4393 = L.popup({"maxWidth": 250});
var html_8cd108f4897d4f227b441205192ef074 = $(`<div id="html_8cd108f4897d4f227b441205192ef074" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Bar Brasserie - Le Tigre</b><br> 17 Bd Georges Clemenceau<br> 21000 Dijon<br> Brasserie </div> </div>`)[0];
popup_5ca93bf904dae43b7be8049aef4b4393.setContent(html_8cd108f4897d4f227b441205192ef074);
marker_5c6d6c0c537a73fcd7880381ec5d7bb0.bindPopup(popup_5ca93bf904dae43b7be8049aef4b4393)
;
marker_5c6d6c0c537a73fcd7880381ec5d7bb0.bindTooltip(
`<div>
Bar Brasserie - Le Tigre
</div>`,
{"sticky": true}
);
var marker_8953556f22c51583dcef12e9552f2767 = L.marker(
[47.3218389, 5.0422999],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_b0d53e96bbdbea9aed5f03713ceee5d3 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_8953556f22c51583dcef12e9552f2767.setIcon(icon_b0d53e96bbdbea9aed5f03713ceee5d3);
var popup_e0119e6881d073e29a59505d52256401 = L.popup({"maxWidth": 250});
var html_686cb4968d6d1087db0a41066783b435 = $(`<div id="html_686cb4968d6d1087db0a41066783b435" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Brasserie Des Beaux-Arts</b><br> 1-3 Pl. des Ducs de Bourgogne<br> 21000 Dijon<br> Brasserie </div> </div>`)[0];
popup_e0119e6881d073e29a59505d52256401.setContent(html_686cb4968d6d1087db0a41066783b435);
marker_8953556f22c51583dcef12e9552f2767.bindPopup(popup_e0119e6881d073e29a59505d52256401)
;
marker_8953556f22c51583dcef12e9552f2767.bindTooltip(
`<div>
Brasserie Des Beaux-Arts
</div>`,
{"sticky": true}
);
var marker_6e868be49b046ac2da5dfcb9b35041ec = L.marker(
[47.3413955, 5.0614386],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_aac4d3fb855dc8ddaeed5a04d5757307 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_6e868be49b046ac2da5dfcb9b35041ec.setIcon(icon_aac4d3fb855dc8ddaeed5a04d5757307);
var popup_5a63418a4fff76e6de7f2e7ee5b0f030 = L.popup({"maxWidth": 250});
var html_9ee599e36f810bd5ea3cf35063efb8ba = $(`<div id="html_9ee599e36f810bd5ea3cf35063efb8ba" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Brasserie du Marché de Gros</b><br> 1 Rue Léon Delessard<br> 21000 Dijon<br> Brasserie </div> </div>`)[0];
popup_5a63418a4fff76e6de7f2e7ee5b0f030.setContent(html_9ee599e36f810bd5ea3cf35063efb8ba);
marker_6e868be49b046ac2da5dfcb9b35041ec.bindPopup(popup_5a63418a4fff76e6de7f2e7ee5b0f030)
;
marker_6e868be49b046ac2da5dfcb9b35041ec.bindTooltip(
`<div>
Brasserie du Marché de Gros
</div>`,
{"sticky": true}
);
var marker_16bc98fb815dd038e8df504dee85c02f = L.marker(
[47.0242688, 4.8386608],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_3c553ad1993748370ec4ac71baaffe59 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_16bc98fb815dd038e8df504dee85c02f.setIcon(icon_3c553ad1993748370ec4ac71baaffe59);
var popup_ca7d42b804a01a0cd5d4d6acfea1686e = L.popup({"maxWidth": 250});
var html_7496b8460ff3f6827bdeae6a2b61377c = $(`<div id="html_7496b8460ff3f6827bdeae6a2b61377c" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">Brasserie le Monge</b><br> 7 Pl. Monge<br> 21200 Beaune<br> Brasserie </div> </div>`)[0];
popup_ca7d42b804a01a0cd5d4d6acfea1686e.setContent(html_7496b8460ff3f6827bdeae6a2b61377c);
marker_16bc98fb815dd038e8df504dee85c02f.bindPopup(popup_ca7d42b804a01a0cd5d4d6acfea1686e)
;
marker_16bc98fb815dd038e8df504dee85c02f.bindTooltip(
`<div>
Brasserie le Monge
</div>`,
{"sticky": true}
);
var marker_40862272bb1aef419a08030fb7f78475 = L.marker(
[47.3266497, 5.0330878],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);
var icon_1fe71a79ea1e04b432358285d1418d28 = L.AwesomeMarkers.icon(
{"extraClasses": "fa-rotate-0", "icon": "info-sign", "iconColor": "white", "markerColor": "gray", "prefix": "glyphicon"}
);
marker_40862272bb1aef419a08030fb7f78475.setIcon(icon_1fe71a79ea1e04b432358285d1418d28);
var popup_d5ad45e41f93b16945adea608287ef41 = L.popup({"maxWidth": 250});
var html_3a572d6863366613ea0d47fbe64041fb = $(`<div id="html_3a572d6863366613ea0d47fbe64041fb" style="width: 100.0%; height: 100.0%;"> <div style="font-size: 12px; width: 200px;"> <b style="font-size: 14px;">La Brasserie du Marais</b><br> 20 Rue Jacques Cellerier<br> 21000 Dijon<br> Brasserie </div> </div>`)[0];
popup_d5ad45e41f93b16945adea608287ef41.setContent(html_3a572d6863366613ea0d47fbe64041fb);
marker_40862272bb1aef419a08030fb7f78475.bindPopup(popup_d5ad45e41f93b16945adea608287ef41)
;
marker_40862272bb1aef419a08030fb7f78475.bindTooltip(
`<div>
La Brasserie du Marais
</div>`,
{"sticky": true}
);
var marker_33bcd5763a9af552e1aee6f8ddec7dd5 = L.marker(
[47.3658302, 5.0502657],
{}
).addTo(marker_cluster_03106bee5fadef45cec6e762cd25e8a4);