-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpositions.html
More file actions
790 lines (414 loc) · 29.4 KB
/
positions.html
File metadata and controls
790 lines (414 loc) · 29.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>L_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.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/leaflet@1.2.0/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://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<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>
<style> #map_1937ada6cd5a4981ba5ecd825967878d {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_1937ada6cd5a4981ba5ecd825967878d" ></div>
</body>
<script>
var bounds = null;
var map_1937ada6cd5a4981ba5ecd825967878d = L.map(
'map_1937ada6cd5a4981ba5ecd825967878d',
{center: [49.78892942739644,5.820950071281332],
zoom: 11,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_50d4daab724145eb9595fe6ef2c2ad5f = L.tileLayer(
'https://stamen-tiles-{s}.a.ssl.fastly.net/terrain/{z}/{x}/{y}.jpg',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var marker_f1432c541b4f42e58f21ec2fbf0837dc = L.marker(
[49.822849820972905,5.802234848502544],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_c6c124593f44418db6abd47daa7a6f0a = L.popup({maxWidth: '300'});
var html_02dafcd6600548719abfc6e0974da4ac = $('<div id="html_02dafcd6600548719abfc6e0974da4ac" style="width: 100.0%; height: 100.0%;">STAT.A</div>')[0];
popup_c6c124593f44418db6abd47daa7a6f0a.setContent(html_02dafcd6600548719abfc6e0974da4ac);
marker_f1432c541b4f42e58f21ec2fbf0837dc.bindPopup(popup_c6c124593f44418db6abd47daa7a6f0a);
var marker_40e7309262124662bd8d9ad049cd9539 = L.marker(
[49.82276857599028,5.8023102991106565],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_4f78e73b286b468489e940aac6a54cc6 = L.popup({maxWidth: '300'});
var html_ba65ebeb9bb949f08505aa65e779c73c = $('<div id="html_ba65ebeb9bb949f08505aa65e779c73c" style="width: 100.0%; height: 100.0%;">STAT_F</div>')[0];
popup_4f78e73b286b468489e940aac6a54cc6.setContent(html_ba65ebeb9bb949f08505aa65e779c73c);
marker_40e7309262124662bd8d9ad049cd9539.bindPopup(popup_4f78e73b286b468489e940aac6a54cc6);
var marker_ecc25d9047b04a3abcc1204685ddc1d1 = L.marker(
[49.82297346512653,5.802152213852529],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_dd8c28adb3f249beaffff06244441800 = L.popup({maxWidth: '300'});
var html_ec2af718fea241a9a0294ad85890fd32 = $('<div id="html_ec2af718fea241a9a0294ad85890fd32" style="width: 100.0%; height: 100.0%;">STAT_B</div>')[0];
popup_dd8c28adb3f249beaffff06244441800.setContent(html_ec2af718fea241a9a0294ad85890fd32);
marker_ecc25d9047b04a3abcc1204685ddc1d1.bindPopup(popup_dd8c28adb3f249beaffff06244441800);
var marker_9704082afb324676a477a7c7340a4810 = L.marker(
[49.82253094985841,5.80266249134185],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_db34a7d6d5d646c9b2ca1556bbd62c65 = L.popup({maxWidth: '300'});
var html_b146c95f6465446b9f142d9bd6b03890 = $('<div id="html_b146c95f6465446b9f142d9bd6b03890" style="width: 100.0%; height: 100.0%;">STAT_D</div>')[0];
popup_db34a7d6d5d646c9b2ca1556bbd62c65.setContent(html_b146c95f6465446b9f142d9bd6b03890);
marker_9704082afb324676a477a7c7340a4810.bindPopup(popup_db34a7d6d5d646c9b2ca1556bbd62c65);
var marker_f50c13742d80432ab704d4f76fbf37a3 = L.marker(
[49.82258285293858,5.802449527301217],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_f593799a79f7470bb3a38c5efd72187f = L.popup({maxWidth: '300'});
var html_2ecd24e37e0b4554b0b7a6d062071e71 = $('<div id="html_2ecd24e37e0b4554b0b7a6d062071e71" style="width: 100.0%; height: 100.0%;">STAT_C</div>')[0];
popup_f593799a79f7470bb3a38c5efd72187f.setContent(html_2ecd24e37e0b4554b0b7a6d062071e71);
marker_f50c13742d80432ab704d4f76fbf37a3.bindPopup(popup_f593799a79f7470bb3a38c5efd72187f);
var marker_96ce94bf92344f0193ef496e492e3c7d = L.marker(
[49.82255323077777,5.8024168799993],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_b07e1c43606e4d309d6c8fcb7248c4be = L.popup({maxWidth: '300'});
var html_cc21ef645e1443088f5a01c2562d460b = $('<div id="html_cc21ef645e1443088f5a01c2562d460b" style="width: 100.0%; height: 100.0%;">STAT_C2</div>')[0];
popup_b07e1c43606e4d309d6c8fcb7248c4be.setContent(html_cc21ef645e1443088f5a01c2562d460b);
marker_96ce94bf92344f0193ef496e492e3c7d.bindPopup(popup_b07e1c43606e4d309d6c8fcb7248c4be);
var marker_d8ba92c97c124f7fb026484307d5f275 = L.marker(
[49.822325197374745,5.8021920891317595],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_9d9abcd7dd3d4c8ca8e778426da82b87 = L.popup({maxWidth: '300'});
var html_faacf6c87aee4edc99c0f627882e2b31 = $('<div id="html_faacf6c87aee4edc99c0f627882e2b31" style="width: 100.0%; height: 100.0%;">STAT_E</div>')[0];
popup_9d9abcd7dd3d4c8ca8e778426da82b87.setContent(html_faacf6c87aee4edc99c0f627882e2b31);
marker_d8ba92c97c124f7fb026484307d5f275.bindPopup(popup_9d9abcd7dd3d4c8ca8e778426da82b87);
var marker_8d6e608358a14e3191389f291e9f33a5 = L.marker(
[49.82244000157764,5.802314920942426],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_2bcb9d49d73f4fd49ddf4253c46b64cd = L.popup({maxWidth: '300'});
var html_c8d86b059cb24048a0779e7dd115a5bb = $('<div id="html_c8d86b059cb24048a0779e7dd115a5bb" style="width: 100.0%; height: 100.0%;">STAT_G</div>')[0];
popup_2bcb9d49d73f4fd49ddf4253c46b64cd.setContent(html_c8d86b059cb24048a0779e7dd115a5bb);
marker_8d6e608358a14e3191389f291e9f33a5.bindPopup(popup_2bcb9d49d73f4fd49ddf4253c46b64cd);
var marker_81e5b0c4e54143c7bd18801ea6224bba = L.marker(
[49.82284355321754,5.802138435619159],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_e0e28ba59a564f55918a7fa1c5d081ca = L.popup({maxWidth: '300'});
var html_103bac7ced214b0b80408be3222c32f4 = $('<div id="html_103bac7ced214b0b80408be3222c32f4" style="width: 100.0%; height: 100.0%;">STAT_Z</div>')[0];
popup_e0e28ba59a564f55918a7fa1c5d081ca.setContent(html_103bac7ced214b0b80408be3222c32f4);
marker_81e5b0c4e54143c7bd18801ea6224bba.bindPopup(popup_e0e28ba59a564f55918a7fa1c5d081ca);
var marker_3215f7bc504d447ba626a68238988e12 = L.marker(
[49.822912198355965,5.8021959526410445],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_0da7284b853f475e9900b71a66638ad8 = L.popup({maxWidth: '300'});
var html_72dc4eaa2f0b4124ae914d9aea130054 = $('<div id="html_72dc4eaa2f0b4124ae914d9aea130054" style="width: 100.0%; height: 100.0%;">STAT_Y</div>')[0];
popup_0da7284b853f475e9900b71a66638ad8.setContent(html_72dc4eaa2f0b4124ae914d9aea130054);
marker_3215f7bc504d447ba626a68238988e12.bindPopup(popup_0da7284b853f475e9900b71a66638ad8);
var marker_87919b5d2c2141dd8891e267c6ea4d7a = L.marker(
[49.74916561941602,5.936798369771135],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_7ca682937ab24f49a28002085579d685 = L.popup({maxWidth: '300'});
var html_7438f745f633450f944c8f51eac75afd = $('<div id="html_7438f745f633450f944c8f51eac75afd" style="width: 100.0%; height: 100.0%;">M_I</div>')[0];
popup_7ca682937ab24f49a28002085579d685.setContent(html_7438f745f633450f944c8f51eac75afd);
marker_87919b5d2c2141dd8891e267c6ea4d7a.bindPopup(popup_7ca682937ab24f49a28002085579d685);
var marker_b91b6cd18afb40148e748ea2b39b786d = L.marker(
[49.74909839892828,5.93672556281645],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_741df4c49463427e94782ea86f9ce4fe = L.popup({maxWidth: '300'});
var html_75fb5b7e89fc40f9a7ef9dce0a829fd0 = $('<div id="html_75fb5b7e89fc40f9a7ef9dce0a829fd0" style="width: 100.0%; height: 100.0%;">D</div>')[0];
popup_741df4c49463427e94782ea86f9ce4fe.setContent(html_75fb5b7e89fc40f9a7ef9dce0a829fd0);
marker_b91b6cd18afb40148e748ea2b39b786d.bindPopup(popup_741df4c49463427e94782ea86f9ce4fe);
var marker_dc4c00c3827d416fb63936f0a21b74a3 = L.marker(
[49.749076201493494,5.93655505001278],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_83e8836d725c4fcf912e448ac3f55f4e = L.popup({maxWidth: '300'});
var html_d08f25af365f4d908813144e8e0f7df9 = $('<div id="html_d08f25af365f4d908813144e8e0f7df9" style="width: 100.0%; height: 100.0%;">C</div>')[0];
popup_83e8836d725c4fcf912e448ac3f55f4e.setContent(html_d08f25af365f4d908813144e8e0f7df9);
marker_dc4c00c3827d416fb63936f0a21b74a3.bindPopup(popup_83e8836d725c4fcf912e448ac3f55f4e);
var marker_1070e684234246b9a95ddf4fc0c2fdc6 = L.marker(
[49.74910266304646,5.936409286520129],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_4fa038561cde4dca996ae4c1c8e163a2 = L.popup({maxWidth: '300'});
var html_fff6c3b937504971b78089e3f5caeb70 = $('<div id="html_fff6c3b937504971b78089e3f5caeb70" style="width: 100.0%; height: 100.0%;">B</div>')[0];
popup_4fa038561cde4dca996ae4c1c8e163a2.setContent(html_fff6c3b937504971b78089e3f5caeb70);
marker_1070e684234246b9a95ddf4fc0c2fdc6.bindPopup(popup_4fa038561cde4dca996ae4c1c8e163a2);
var marker_b127dc920ea3414cbc2e2fdf9a7fb333 = L.marker(
[49.749025618844286,5.936269801784811],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_54dbba5d49974482ae1ba7252706653b = L.popup({maxWidth: '300'});
var html_0e58de4c1ea2477f99655b51c942b831 = $('<div id="html_0e58de4c1ea2477f99655b51c942b831" style="width: 100.0%; height: 100.0%;">A</div>')[0];
popup_54dbba5d49974482ae1ba7252706653b.setContent(html_0e58de4c1ea2477f99655b51c942b831);
marker_b127dc920ea3414cbc2e2fdf9a7fb333.bindPopup(popup_54dbba5d49974482ae1ba7252706653b);
var marker_abda36e5035443e9acd2ce40dfe8b073 = L.marker(
[49.74902847232831,5.937104542221206],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_fdabba90750844f1a266e4797b3138c2 = L.popup({maxWidth: '300'});
var html_8038f7b325b64677aaafb918248a17a4 = $('<div id="html_8038f7b325b64677aaafb918248a17a4" style="width: 100.0%; height: 100.0%;">E</div>')[0];
popup_fdabba90750844f1a266e4797b3138c2.setContent(html_8038f7b325b64677aaafb918248a17a4);
marker_abda36e5035443e9acd2ce40dfe8b073.bindPopup(popup_fdabba90750844f1a266e4797b3138c2);
var marker_3098fd6017ca45f9a758685c5451fca3 = L.marker(
[49.74901146805921,5.937322376233523],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_4b24686630f14d8b860bdf03d313d50d = L.popup({maxWidth: '300'});
var html_f93027ef8abd48fcbe1ccaffc3f58cdc = $('<div id="html_f93027ef8abd48fcbe1ccaffc3f58cdc" style="width: 100.0%; height: 100.0%;">F</div>')[0];
popup_4b24686630f14d8b860bdf03d313d50d.setContent(html_f93027ef8abd48fcbe1ccaffc3f58cdc);
marker_3098fd6017ca45f9a758685c5451fca3.bindPopup(popup_4b24686630f14d8b860bdf03d313d50d);
var marker_41844da98a1f4439aa1d010769bacddf = L.marker(
[49.748719803294286,5.937456351289697],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_a91124929c8c435e8c9f80a1e7661a02 = L.popup({maxWidth: '300'});
var html_a6d221ab82f744e58adb5ad0dba5f39c = $('<div id="html_a6d221ab82f744e58adb5ad0dba5f39c" style="width: 100.0%; height: 100.0%;">G</div>')[0];
popup_a91124929c8c435e8c9f80a1e7661a02.setContent(html_a6d221ab82f744e58adb5ad0dba5f39c);
marker_41844da98a1f4439aa1d010769bacddf.bindPopup(popup_a91124929c8c435e8c9f80a1e7661a02);
var marker_c8042923cd3d4972b28cb64c8293e5d5 = L.marker(
[49.7485293889652,5.9377242894332465],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_2e3f65f0a0e947fd9e1da821d103f1b9 = L.popup({maxWidth: '300'});
var html_76e376e30b964f2bb2d9c015a86d730b = $('<div id="html_76e376e30b964f2bb2d9c015a86d730b" style="width: 100.0%; height: 100.0%;">H</div>')[0];
popup_2e3f65f0a0e947fd9e1da821d103f1b9.setContent(html_76e376e30b964f2bb2d9c015a86d730b);
marker_c8042923cd3d4972b28cb64c8293e5d5.bindPopup(popup_2e3f65f0a0e947fd9e1da821d103f1b9);
var marker_05105906bc17445bb3fe2ec6929b815d = L.marker(
[49.74831790285771,5.937559901956812],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_9c0a26e415ea410a9fa2d59bd410e613 = L.popup({maxWidth: '300'});
var html_82eed94d93c54d69afb48300b0cfb502 = $('<div id="html_82eed94d93c54d69afb48300b0cfb502" style="width: 100.0%; height: 100.0%;">I</div>')[0];
popup_9c0a26e415ea410a9fa2d59bd410e613.setContent(html_82eed94d93c54d69afb48300b0cfb502);
marker_05105906bc17445bb3fe2ec6929b815d.bindPopup(popup_9c0a26e415ea410a9fa2d59bd410e613);
var marker_424257dd214646e293ec90de00d90fb9 = L.marker(
[49.74817144577898,5.937613047510499],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_437a9dbb6b6d4974b8fdafc26cd92d18 = L.popup({maxWidth: '300'});
var html_c3f2312ae8824aaaabae3be4f1ab9510 = $('<div id="html_c3f2312ae8824aaaabae3be4f1ab9510" style="width: 100.0%; height: 100.0%;">J</div>')[0];
popup_437a9dbb6b6d4974b8fdafc26cd92d18.setContent(html_c3f2312ae8824aaaabae3be4f1ab9510);
marker_424257dd214646e293ec90de00d90fb9.bindPopup(popup_437a9dbb6b6d4974b8fdafc26cd92d18);
var marker_d1807662629b468e9220aab862099a01 = L.marker(
[49.747990098924625,5.937619464116226],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_457f4774ac1349ff9b816b7f1c1c1daa = L.popup({maxWidth: '300'});
var html_d7ce5ae30db247baa78d2c3c40116dcf = $('<div id="html_d7ce5ae30db247baa78d2c3c40116dcf" style="width: 100.0%; height: 100.0%;">K</div>')[0];
popup_457f4774ac1349ff9b816b7f1c1c1daa.setContent(html_d7ce5ae30db247baa78d2c3c40116dcf);
marker_d1807662629b468e9220aab862099a01.bindPopup(popup_457f4774ac1349ff9b816b7f1c1c1daa);
var marker_7f5e93d29283463289da881547fcb3e6 = L.marker(
[49.70738059873032,5.899286328803272],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_78ddfa37901e481dbd99e4144edc7509 = L.popup({maxWidth: '300'});
var html_7957b307535149dd958f3c43f429fd28 = $('<div id="html_7957b307535149dd958f3c43f429fd28" style="width: 100.0%; height: 100.0%;">CROSSROAD</div>')[0];
popup_78ddfa37901e481dbd99e4144edc7509.setContent(html_7957b307535149dd958f3c43f429fd28);
marker_7f5e93d29283463289da881547fcb3e6.bindPopup(popup_78ddfa37901e481dbd99e4144edc7509);
var marker_efbfe3bda88a4e5284a8f3bc644ac89f = L.marker(
[49.707504739874175,5.8997737272809845],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_c11cad1b1b1b41efbffd73fe30c1248f = L.popup({maxWidth: '300'});
var html_05f077147dd14259804abde988c7169c = $('<div id="html_05f077147dd14259804abde988c7169c" style="width: 100.0%; height: 100.0%;">SA_G</div>')[0];
popup_c11cad1b1b1b41efbffd73fe30c1248f.setContent(html_05f077147dd14259804abde988c7169c);
marker_efbfe3bda88a4e5284a8f3bc644ac89f.bindPopup(popup_c11cad1b1b1b41efbffd73fe30c1248f);
var marker_e6ab6c5166b64bdcb77bad252af32add = L.marker(
[49.707707907816186,5.899501994998507],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_cac34c4cf4514c2798d7a2a51d349602 = L.popup({maxWidth: '300'});
var html_9247e3a43490415090393552e97a224c = $('<div id="html_9247e3a43490415090393552e97a224c" style="width: 100.0%; height: 100.0%;">A</div>')[0];
popup_cac34c4cf4514c2798d7a2a51d349602.setContent(html_9247e3a43490415090393552e97a224c);
marker_e6ab6c5166b64bdcb77bad252af32add.bindPopup(popup_cac34c4cf4514c2798d7a2a51d349602);
var marker_bcf26e53b07341d08296222777bb3ec4 = L.marker(
[49.7077595648519,5.89948796753838],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_a88f418ef8074a31b0d6f15e8e52381d = L.popup({maxWidth: '300'});
var html_687b3a49af3f4e9f903e15d1a7d97e26 = $('<div id="html_687b3a49af3f4e9f903e15d1a7d97e26" style="width: 100.0%; height: 100.0%;">B</div>')[0];
popup_a88f418ef8074a31b0d6f15e8e52381d.setContent(html_687b3a49af3f4e9f903e15d1a7d97e26);
marker_bcf26e53b07341d08296222777bb3ec4.bindPopup(popup_a88f418ef8074a31b0d6f15e8e52381d);
var marker_55aebc9c4411481584249a4fa350ae25 = L.marker(
[49.70792719878341,5.899424913964997],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_73dc52deaa594974bf8cbc770bdb2a6a = L.popup({maxWidth: '300'});
var html_096c2f9580c746528684dc079d5db5b8 = $('<div id="html_096c2f9580c746528684dc079d5db5b8" style="width: 100.0%; height: 100.0%;">C</div>')[0];
popup_73dc52deaa594974bf8cbc770bdb2a6a.setContent(html_096c2f9580c746528684dc079d5db5b8);
marker_55aebc9c4411481584249a4fa350ae25.bindPopup(popup_73dc52deaa594974bf8cbc770bdb2a6a);
var marker_c756e87861984f6c96cf40987be8a87c = L.marker(
[49.70804199706796,5.899374944708403],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_81fa566048c74be18db99cf7c6e460c2 = L.popup({maxWidth: '300'});
var html_9aa6a92a67ed4d2fa3c0896083a7ebbc = $('<div id="html_9aa6a92a67ed4d2fa3c0896083a7ebbc" style="width: 100.0%; height: 100.0%;">D</div>')[0];
popup_81fa566048c74be18db99cf7c6e460c2.setContent(html_9aa6a92a67ed4d2fa3c0896083a7ebbc);
marker_c756e87861984f6c96cf40987be8a87c.bindPopup(popup_81fa566048c74be18db99cf7c6e460c2);
var marker_13a46368d67f434bb1da99ef5051576b = L.marker(
[49.70811950786703,5.89934901080926],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_805a9f9c12e542db9480bfa42d80555d = L.popup({maxWidth: '300'});
var html_dff7349caf1d42be9f4020bfb0a2f5f9 = $('<div id="html_dff7349caf1d42be9f4020bfb0a2f5f9" style="width: 100.0%; height: 100.0%;">E</div>')[0];
popup_805a9f9c12e542db9480bfa42d80555d.setContent(html_dff7349caf1d42be9f4020bfb0a2f5f9);
marker_13a46368d67f434bb1da99ef5051576b.bindPopup(popup_805a9f9c12e542db9480bfa42d80555d);
var marker_3074a2a009b441b78d8f2dd6a4079fd2 = L.marker(
[49.70836195412583,5.89928351518909],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_e1f7fc17837e49f79b04292ff20a94ed = L.popup({maxWidth: '300'});
var html_f5343a51e0cd45d9b3a6aa90beb78713 = $('<div id="html_f5343a51e0cd45d9b3a6aa90beb78713" style="width: 100.0%; height: 100.0%;">E1</div>')[0];
popup_e1f7fc17837e49f79b04292ff20a94ed.setContent(html_f5343a51e0cd45d9b3a6aa90beb78713);
marker_3074a2a009b441b78d8f2dd6a4079fd2.bindPopup(popup_e1f7fc17837e49f79b04292ff20a94ed);
var marker_24d5bb12139f4fa4ba09a2810d4823e3 = L.marker(
[49.708631723060364,5.899191291012298],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_58fd72e948284fcda3bed9b2f3ca2e99 = L.popup({maxWidth: '300'});
var html_28c19b1847d44f9eb4bce85cb67e373c = $('<div id="html_28c19b1847d44f9eb4bce85cb67e373c" style="width: 100.0%; height: 100.0%;">F</div>')[0];
popup_58fd72e948284fcda3bed9b2f3ca2e99.setContent(html_28c19b1847d44f9eb4bce85cb67e373c);
marker_24d5bb12139f4fa4ba09a2810d4823e3.bindPopup(popup_58fd72e948284fcda3bed9b2f3ca2e99);
var marker_dacef4a739114f5a90ef92fb47ab7ecb = L.marker(
[49.70754564880496,5.899766552222763],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_9cf9c9e8113e4709889aa56eaf4e95c3 = L.popup({maxWidth: '300'});
var html_2d6afed5e09d4726bcc5e9a93fcf1db0 = $('<div id="html_2d6afed5e09d4726bcc5e9a93fcf1db0" style="width: 100.0%; height: 100.0%;">SAG1</div>')[0];
popup_9cf9c9e8113e4709889aa56eaf4e95c3.setContent(html_2d6afed5e09d4726bcc5e9a93fcf1db0);
marker_dacef4a739114f5a90ef92fb47ab7ecb.bindPopup(popup_9cf9c9e8113e4709889aa56eaf4e95c3);
var marker_de97706307954e69807ae0ab89e958f4 = L.marker(
[49.707553833965854,5.8999051334558485],
{
icon: new L.Icon.Default()
}
)
.addTo(map_1937ada6cd5a4981ba5ecd825967878d);
var popup_f095bd2f6355427a812c7dc36475e6fb = L.popup({maxWidth: '300'});
var html_9e178214c5aa41229d3c9fe1346c2fad = $('<div id="html_9e178214c5aa41229d3c9fe1346c2fad" style="width: 100.0%; height: 100.0%;">SAG2</div>')[0];
popup_f095bd2f6355427a812c7dc36475e6fb.setContent(html_9e178214c5aa41229d3c9fe1346c2fad);
marker_de97706307954e69807ae0ab89e958f4.bindPopup(popup_f095bd2f6355427a812c7dc36475e6fb);
</script>