-
Notifications
You must be signed in to change notification settings - Fork 0
/
NN_map.html
765 lines (517 loc) · 61.8 KB
/
NN_map.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
<!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>
<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_9791d00dbf92e1a810efb8987daf0cda {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
.leaflet-container { font-size: 1rem; }
</style>
</head>
<body>
<div class="folium-map" id="map_9791d00dbf92e1a810efb8987daf0cda" ></div>
</body>
<script>
var map_9791d00dbf92e1a810efb8987daf0cda = L.map(
"map_9791d00dbf92e1a810efb8987daf0cda",
{
center: [28.26369960393583, 2.532736476742567],
crs: L.CRS.EPSG3857,
zoom: 5,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_50e8dfe0a5adb128a328066aba4270f6 = 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_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_9376c1175332a894ac6fe03c57e54814 = L.polyline(
[[35.296200355539305, -0.6308943791233627], [35.764669861618174, -0.6385228721029494]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_aa36a50e4aaec1c64621579808f6c0a6 = L.polyline(
[[35.764669861618174, -0.6385228721029494], [35.44918324966744, -1.190169859963361]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_7aa8b0372b20e42f89bb226f07c63826 = L.polyline(
[[35.44918324966744, -1.190169859963361], [35.09386653891107, -1.3050719250355387]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_74a6ee7e658b1a95b1c9666e8f1646ef = L.polyline(
[[35.09386653891107, -1.3050719250355387], [34.902640341355855, 0.1392463649215896]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_11db98408689f2552610e5ce930c4f32 = L.polyline(
[[34.902640341355855, 0.1392463649215896], [35.46218588186893, 0.1493365139649395]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_c84bc9a54c0f6ee7de2a1b41fe8e2d99 = L.polyline(
[[35.46218588186893, 0.1493365139649395], [35.93201942608232, 0.0904398275922097]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_840266304c67c4f90203b9af43684921 = L.polyline(
[[35.93201942608232, 0.0904398275922097], [35.813046463470606, 0.5694170789298727]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_3b29ec25de9917ab68886b9ad4588c37 = L.polyline(
[[35.813046463470606, 0.5694170789298727], [36.18853715591629, 1.333283175918548]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_790021677324c2652beaeb93691f1a3c = L.polyline(
[[36.18853715591629, 1.333283175918548], [36.27324467599264, 1.959467585432068]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_c32a5ae84b0f9dff7588e29664d8fa78 = L.polyline(
[[36.27324467599264, 1.959467585432068], [36.60142381857663, 2.447714136400702]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_a7c5c202df18c1ecdb5482df4d006ace = L.polyline(
[[36.60142381857663, 2.447714136400702], [36.486392523896086, 2.830831848958548]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_86abaf9af2437617520b6879270772fa = L.polyline(
[[36.486392523896086, 2.830831848958548], [36.27005929051847, 2.757143870341438]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_5da1a81ceca7d5be0749aaa639d625f7 = L.polyline(
[[36.27005929051847, 2.757143870341438], [36.77689786422052, 3.061762233024984]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_56624998bc4a8221b22ae679a584f155 = L.polyline(
[[36.77689786422052, 3.061762233024984], [36.76501461607444, 3.4720763729153434]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_10d45270e5e3006398dcca5b83ecbdea = L.polyline(
[[36.76501461607444, 3.4720763729153434], [36.51683226876352, 3.941006191693771]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_17af1e24393ca384de66cf4400c3cfbc = L.polyline(
[[36.51683226876352, 3.941006191693771], [36.748084619608704, 4.048849684697587]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_2900cf3bd39bd1f169dfe57ddccedf6f = L.polyline(
[[36.748084619608704, 4.048849684697587], [36.751370719402615, 5.056020784121796]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_67e0accf3f92036c4744904ee084eaaa = L.polyline(
[[36.751370719402615, 5.056020784121796], [36.26908615848911, 5.422452390185012]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_0fef521d92b4d66f6eba33c6a73af805 = L.polyline(
[[36.26908615848911, 5.422452390185012], [36.15900481147412, 4.774869447914043]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_f96e63d5019b40f14451f1ee098b6bc1 = L.polyline(
[[36.15900481147412, 4.774869447914043], [35.79900986542172, 4.521379595563214]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_4662061c3a8877a7308c3423a8d72283 = L.polyline(
[[35.79900986542172, 4.521379595563214], [34.95345206165129, 5.725036503708584]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_5a87c7a3ec58082d5a333f672e3a4d3f = L.polyline(
[[34.95345206165129, 5.725036503708584], [34.502826059855366, 5.07798280437208]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_5d6971084cff91ceac99805e9102b455 = L.polyline(
[[34.502826059855366, 5.07798280437208], [34.042378946205126, 5.911362600156607]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_08c4c4f3581bbd9133a7c3a1d103c4e3 = L.polyline(
[[34.042378946205126, 5.911362600156607], [33.282524206818, 6.053809763182035]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_671340596452611b811b384629c731c3 = L.polyline(
[[33.282524206818, 6.053809763182035], [33.511829180249954, 6.8997590410161225]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_77a6354931e9f4d93158c334092217ca = L.polyline(
[[33.511829180249954, 6.8997590410161225], [31.955938738687887, 5.333190371372399]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_c8e000040b39418d9430c826d8d8e9cf = L.polyline(
[[31.955938738687887, 5.333190371372399], [32.66128596532275, 3.6169431483232586]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_e72bfad6e8f1b01a31c338b87453c536 = L.polyline(
[[32.66128596532275, 3.6169431483232586], [33.81422010147054, 2.8631981952155785]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_c7148e25d303608a547e55eec40edc38 = L.polyline(
[[33.81422010147054, 2.8631981952155785], [34.73839418834752, 3.2427974402632604]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_01b967700624b7bb40a9a31231a0cf6c = L.polyline(
[[34.73839418834752, 3.2427974402632604], [35.6379619206028, 1.8173461651210223]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_8c31e3002e9d2511674c50b75de37ec8 = L.polyline(
[[35.6379619206028, 1.8173461651210223], [35.40515853278408, 1.3073156121840586]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_85a887a83786e675a80634a3eae401b7 = L.polyline(
[[35.40515853278408, 1.3073156121840586], [33.76279003924629, 1.0270772414119165]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_07610d1572689be25de984da3004a1ab = L.polyline(
[[33.76279003924629, 1.0270772414119165], [33.45966283649376, -0.2883729270845345]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_a0712918797fbab4e70ffd5a4e26c8b4 = L.polyline(
[[33.45966283649376, -0.2883729270845345], [31.816538141995515, -2.249519543163279]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_45f53613fbed7ea0038b663a63df4f37 = L.polyline(
[[31.816538141995515, -2.249519543163279], [30.480364531014217, -2.191130284518381]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_fa201609cfa73afc43a430ae2394e403 = L.polyline(
[[30.480364531014217, -2.191130284518381], [29.744440066983355, 0.1086220527051839]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_f584b11af6dc153c7a3465ba58014120 = L.polyline(
[[29.744440066983355, 0.1086220527051839], [28.249419780279137, -0.3303390882375075]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_377c86fbfe1ae766c8ba47ed42ed0f5e = L.polyline(
[[28.249419780279137, -0.3303390882375075], [27.545055652260142, 2.381567602195319]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_6f6c5d69dd81fa05be22bbb3a89ceedb = L.polyline(
[[27.545055652260142, 2.381567602195319], [30.933992867758484, 2.834607252037329]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_22567d9975e2748ae95cfa1c91a86776 = L.polyline(
[[30.933992867758484, 2.834607252037329], [35.60054920929722, 6.152598039821688]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_067c3a3e58a7c3fd0020682a83a4c82f = L.polyline(
[[35.60054920929722, 6.152598039821688], [35.613123170650965, 7.1052541566622605]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_c9147e5de1c189db87c08fc76d04fc67 = L.polyline(
[[35.613123170650965, 7.1052541566622605], [36.03303576772034, 7.109690288132645]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_1b79fed940d136bb97f16245d75d62bb = L.polyline(
[[36.03303576772034, 7.109690288132645], [36.43278157236339, 6.635370989379098]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_d189513c1689369499cd98e4a8cb4412 = L.polyline(
[[36.43278157236339, 6.635370989379098], [36.50346211968182, 6.261865489216131]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_3e33b1084e51eafcaa9b7770792dd0a7 = L.polyline(
[[36.50346211968182, 6.261865489216131], [36.82235312080604, 5.763150083323804]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_8fc976ca03ff6e76434cfb2354782350 = L.polyline(
[[36.82235312080604, 5.763150083323804], [36.86260854166051, 6.904511394217683]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_3661a43f92e2e36b01ef8e64ab07d23f = L.polyline(
[[36.86260854166051, 6.904511394217683], [36.64053281122228, 7.40571841010044]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_efce6e85db9a91904e45725f413f7795 = L.polyline(
[[36.64053281122228, 7.40571841010044], [36.89907839948236, 7.7495318667300195]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_884c93782165c6234ef03815425cf353 = L.polyline(
[[36.89907839948236, 7.7495318667300195], [36.76538298507258, 8.313966251398202]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_99f1ac27d82d3df65d26369b0957b753 = L.polyline(
[[36.76538298507258, 8.313966251398202], [36.41712149981625, 7.898783647062214]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_7b9df31529f505411e7b31ac7839cf93 = L.polyline(
[[36.41712149981625, 7.898783647062214], [35.57326138432242, 8.140242110555384]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_d267f31908add201f4956f5e817aab92 = L.polyline(
[[35.57326138432242, 8.140242110555384], [26.775168952709706, 8.380191744407986]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_7e5db98626a671940747c0732668c3be = L.polyline(
[[26.775168952709706, 8.380191744407986], [24.51205291251023, 9.470264665447573]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_0a4a9614e05b56de05ebe68799c025e3 = L.polyline(
[[24.51205291251023, 9.470264665447573], [23.583178263820248, 5.511228140710925]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_d058239bbaeff723f48a55db0b1e6f4e = L.polyline(
[[23.583178263820248, 5.511228140710925], [20.33181281620421, 5.741643799108222]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_715704d11e7a4955b8a7630f3eafdfc8 = L.polyline(
[[20.33181281620421, 5.741643799108222], [22.15021362262505, 0.8247914747884242]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_97da28c8c2933e20ad2e9f8682e108a4 = L.polyline(
[[22.15021362262505, 0.8247914747884242], [28.065129096278785, -8.127105814811237]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var poly_line_042daf4ee38547bbf58dcac016d01773 = L.polyline(
[[28.065129096278785, -8.127105814811237], [35.296200355539305, -0.6308943791233627]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 0.7, "smoothFactor": 1.0, "stroke": true, "weight": 1}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_bd0638fb268602cf96adf0ab2dae58dc = L.circleMarker(
[31.955938738687887, 5.333190371372399],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_d9d11c32d5e2af78f9609ebc8f6744ad = L.circleMarker(
[36.51683226876352, 3.941006191693771],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_98f6e1294f8bb35a787f59aecd43193f = L.circleMarker(
[33.81422010147054, 2.8631981952155785],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_6e51b78d579d7f19874b06373f330c71 = L.circleMarker(
[33.76279003924629, 1.0270772414119165],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_3dc2585596a259f32de396fa84c27ea7 = L.circleMarker(
[29.744440066983355, 0.1086220527051839],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_5b53cfe38b166f86f7b12d542345b60a = L.circleMarker(
[31.816538141995515, -2.249519543163279],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_34f0e9c962b2edcc88da6b9232297bb1 = L.circleMarker(
[34.502826059855366, 5.07798280437208],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_e561d895bbf9636b5bb1823c841045d7 = L.circleMarker(
[24.51205291251023, 9.470264665447573],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_ce3c7a50fcd19fa1ac4cb706306fa06c = L.circleMarker(
[32.66128596532275, 3.6169431483232586],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_adf4f6ebfd5c453c7a3e6a9f0be99f2f = L.circleMarker(
[36.751370719402615, 5.056020784121796],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_7350304a233cf6e1afa36d73f99621e5 = L.circleMarker(
[35.296200355539305, -0.6308943791233627],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_e98d7381fb8092b9633059c082780f32 = L.circleMarker(
[34.73839418834752, 3.2427974402632604],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_cb4a8b6f360c4b4001ac07e8c0e33629 = L.circleMarker(
[34.042378946205126, 5.911362600156607],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_0ce8df353b9d22ffbe59a6251b011174 = L.circleMarker(
[36.82235312080604, 5.763150083323804],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_0ab906d68e586f5ef28e1fc6033314f8 = L.circleMarker(
[28.065129096278785, -8.127105814811237],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_5fd8611d6733d3ddaecc16c489af4ccf = L.circleMarker(
[35.09386653891107, -1.3050719250355387],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_647f5d56b2765be6c3b60fc9e1114e92 = L.circleMarker(
[36.76538298507258, 8.313966251398202],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_dcde97d6f38eeaf9902da03d3373f296 = L.circleMarker(
[35.764669861618174, -0.6385228721029494],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_3a40ebf5687480358d241e3687364bda = L.circleMarker(
[33.511829180249954, 6.8997590410161225],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_1e36428059d2c77042e43510f41699ca = L.circleMarker(
[30.480364531014217, -2.191130284518381],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_4d5b54edcd0383e58e8dd9e725e2592c = L.circleMarker(
[36.64053281122228, 7.40571841010044],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_d9b328a75addbf96bd1d03287ae6df35 = L.circleMarker(
[36.60142381857663, 2.447714136400702],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_f74ef8e9b29c3b68ad7be2eb1a7026da = L.circleMarker(
[36.15900481147412, 4.774869447914043],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_724a18c05d2fcb3f46a56cf49fa3a226 = L.circleMarker(
[35.44918324966744, -1.190169859963361],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_948155a9003dc2274236a027792db31f = L.circleMarker(
[35.57326138432242, 8.140242110555384],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_3756684de88a532eab77a3cd0928e762 = L.circleMarker(
[36.41712149981625, 7.898783647062214],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_00adcddd5e96cb04b778564ad24710c5 = L.circleMarker(
[35.93201942608232, 0.0904398275922097],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_bb43e99937c5af17cf828dc17920e334 = L.circleMarker(
[36.26908615848911, 5.422452390185012],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_8a5e2aa8b65b6aa9a9c803eb87665df2 = L.circleMarker(
[36.27005929051847, 2.757143870341438],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_10c5eedaebb5ad1a6323177aee376f7f = L.circleMarker(
[36.27324467599264, 1.959467585432068],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_c7efde9979fc8f789b0f82a55454fa69 = L.circleMarker(
[35.60054920929722, 6.152598039821688],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_60f467046d63a4413efc78af8911f3c0 = L.circleMarker(
[35.813046463470606, 0.5694170789298727],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_5ca24be242a5939ff39183b7fbb7149b = L.circleMarker(
[36.89907839948236, 7.7495318667300195],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_8e02da67540a47ebada1634bac035b25 = L.circleMarker(
[36.43278157236339, 6.635370989379098],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_7aee80c2ead1b2d958cef10a8f80dbe8 = L.circleMarker(
[35.79900986542172, 4.521379595563214],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_c84e91d0d58afe4276880e3abcaedc5c = L.circleMarker(
[27.545055652260142, 2.381567602195319],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_d56493ad7086d04b52798fa88ccf681b = L.circleMarker(
[33.282524206818, 6.053809763182035],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_3f663b6e5cde2d7ee0a4931acd178099 = L.circleMarker(
[35.46218588186893, 0.1493365139649395],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_e499f53922c70a3b715d61861d240d5f = L.circleMarker(
[34.902640341355855, 0.1392463649215896],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_935bb61fc399556ce0488d51937d833b = L.circleMarker(
[30.933992867758484, 2.834607252037329],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_cdbc799135a8dfa9f7c0ceb49d7e739c = L.circleMarker(
[28.249419780279137, -0.3303390882375075],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_3cb7c42a4a0705e5977db6605e7f1104 = L.circleMarker(
[23.583178263820248, 5.511228140710925],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_3a81e1301879503e3b4acbb9df14a2ff = L.circleMarker(
[26.775168952709706, 8.380191744407986],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_2e343030a128f72b2af44c7fd4f194b0 = L.circleMarker(
[36.86260854166051, 6.904511394217683],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_94e9a27de101c42cf8d102517d238092 = L.circleMarker(
[35.613123170650965, 7.1052541566622605],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_6e2fd9c3387546242954e08b65fc3c45 = L.circleMarker(
[36.50346211968182, 6.261865489216131],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_953e156572abda0d7df4134179317135 = L.circleMarker(
[33.45966283649376, -0.2883729270845345],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_4fcc96f03463287a8ac03e167a6b4cbb = L.circleMarker(
[34.95345206165129, 5.725036503708584],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_b1360fc2b27b45ae4a66111a2939f6c2 = L.circleMarker(
[35.6379619206028, 1.8173461651210223],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_e8aa961effe929aa38d70d83f6b90e53 = L.circleMarker(
[36.76501461607444, 3.4720763729153434],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_74be8676aec320daa1c52cb0f194772d = L.circleMarker(
[36.03303576772034, 7.109690288132645],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_70ea463b70d8c4964bfce084ee7437f5 = L.circleMarker(
[36.486392523896086, 2.830831848958548],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_522cbc15ea67246ad021e044ed3f5f21 = L.circleMarker(
[35.40515853278408, 1.3073156121840586],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_b35f740f2c7a19dd2b0f4fe4baffb9f8 = L.circleMarker(
[22.15021362262505, 0.8247914747884242],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_d0abd5f3304e0eb914de34297e7d76c8 = L.circleMarker(
[20.33181281620421, 5.741643799108222],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_7fe53b5e1bc96c981cbebff181e8001b = L.circleMarker(
[36.18853715591629, 1.333283175918548],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_408261a9ff59f5d7e0af256ae87a3a04 = L.circleMarker(
[36.77689786422052, 3.061762233024984],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
var circle_marker_916a4825cc7217c0aac93022a8526dc0 = L.circleMarker(
[36.748084619608704, 4.048849684697587],
{"bubblingMouseEvents": true, "color": "red", "dashArray": null, "dashOffset": null, "fill": true, "fillColor": "red", "fillOpacity": 1, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "opacity": 1.0, "radius": 5, "stroke": true, "weight": 3}
).addTo(map_9791d00dbf92e1a810efb8987daf0cda);
</script>
</html>