forked from diegomatuk/Covid19_Lima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
folium.html
1941 lines (1302 loc) · 166 KB
/
folium.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.6.0/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.6.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://rawcdn.githack.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>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>
#map_cfd5275f597b4ac4aaafb224bf2229b0 {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_cfd5275f597b4ac4aaafb224bf2229b0" ></div>
</body>
<script>
var map_cfd5275f597b4ac4aaafb224bf2229b0 = L.map(
"map_cfd5275f597b4ac4aaafb224bf2229b0",
{
center: [-12.0432, -77.0141],
crs: L.CRS.EPSG3857,
zoom: 15,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_0bbfc607c9594a0ca4ce45da99a11f70 = L.tileLayer(
"https://cartodb-basemaps-{s}.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png",
{"attribution": "\u0026copy; \u003ca href=\"http://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"http://cartodb.com/attributions\"\u003eCartoDB\u003c/a\u003e, CartoDB \u003ca href =\"http://cartodb.com/attributions\"\u003eattributions\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 18, "maxZoom": 18, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_dd61478ddbf6499c83153693861e1801 = L.polyline(
[[-12.1892992, -76.9933358], [-12.1894718, -76.9935028]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_2919f084d0474e86a081c5048c735bb4 = L.polyline(
[[-12.1894718, -76.9935028], [-12.1897539, -76.9937435]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_69e9ffb475024cef884e9dfbf5cc151c = L.polyline(
[[-12.1897539, -76.9937435], [-12.1895594, -76.9941055]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ae9c85ee14ff4ee8918e15acf5f27283 = L.polyline(
[[-12.1895594, -76.9941055], [-12.190213, -76.9946801]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_7356773e29234f23b97f51567da9287d = L.polyline(
[[-12.190213, -76.9946801], [-12.1895341, -76.9954137]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_9d82607746ec4cbf8cc2e106d62b306e = L.polyline(
[[-12.1895341, -76.9954137], [-12.1902906, -76.9961192]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_6494cc5c11f044a3bc50e03e93d2a515 = L.polyline(
[[-12.1902906, -76.9961192], [-12.1910349, -76.9968452]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_746103d1f18d4ade837bcbff05d31ccd = L.polyline(
[[-12.1910349, -76.9968452], [-12.1917912, -76.9975788]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5932abc3686e425f9c427598af7042b2 = L.polyline(
[[-12.1917912, -76.9975788], [-12.1925648, -76.9983159]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_4217de4a2ae544b688932e4fe5d5b93c = L.polyline(
[[-12.1925648, -76.9983159], [-12.1921732, -76.9987448]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_4bea8f0aabcb4f55b07183ad666a34d8 = L.polyline(
[[-12.1921732, -76.9987448], [-12.1926467, -76.9992331], [-12.1929233, -76.9994236]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_2d9fc8818f634fe4abb45ff452854533 = L.polyline(
[[-12.1929233, -76.9994236], [-12.1933063, -76.999661], [-12.1936684, -76.9998292], [-12.1938244, -76.999891], [-12.1939888, -76.9999378], [-12.1941678, -76.9999548]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_1bc791b708d64ba3bd8020c6035ecc3b = L.polyline(
[[-12.1941678, -76.9999548], [-12.1941917, -77.0001664], [-12.194194, -77.0002388], [-12.1941849, -77.0003018], [-12.1941278, -77.0004209], [-12.1940741, -77.0005005]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_40c442e3bfcd4d08a33ba1ebe70c4f7f = L.polyline(
[[-12.1940741, -77.0005005], [-12.1942025, -77.0005841], [-12.1945074, -77.0008848], [-12.1946148, -77.000972], [-12.1946726, -77.0010245], [-12.1947506, -77.0011871], [-12.1948117, -77.0012913], [-12.1948969, -77.0013738], [-12.1950915, -77.0014573]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_f4fbb1d84ad140538cce894805d3dbcf = L.polyline(
[[-12.1950915, -77.0014573], [-12.1951717, -77.0015434]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_52c3cb573fcd4351a493a84046435404 = L.polyline(
[[-12.1951717, -77.0015434], [-12.1953533, -77.0013573]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_0312a9fa5c8241de8439cccca1c526f5 = L.polyline(
[[-12.1953533, -77.0013573], [-12.1973597, -76.9994062]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_940ed281f80d42a6ad9f801d987cb4e5 = L.polyline(
[[-12.1973597, -76.9994062], [-12.198106, -76.9986718], [-12.1983519, -76.9984408], [-12.1998649, -76.9969915], [-12.2004347, -76.9964379]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5382687e71e0440792bfcd592c3ef204 = L.polyline(
[[-12.2004347, -76.9964379], [-12.2004706, -76.9964411], [-12.2005008, -76.9964546], [-12.2018336, -76.9976624]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_d99fa4f348e240f099719aae0e3c811c = L.polyline(
[[-12.2018336, -76.9976624], [-12.2018762, -76.9977015]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_321b16a6a25742acb98ddd3cfade0149 = L.polyline(
[[-12.2018762, -76.9977015], [-12.2019202, -76.9977417]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2019202, -77.0015434], [-12.1892992, -76.9933358]],
{}
);
var poly_line_c0fe6e37b46849969a5286e31817aa64 = L.polyline(
[[-12.2019202, -76.9977417], [-12.2019666, -76.9977843]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_d5170681a9554c39a4be9ac8864de2b0 = L.polyline(
[[-12.2019666, -76.9977843], [-12.1998489, -76.999866]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5b83198a005c4c81873ce6975f10c983 = L.polyline(
[[-12.1998489, -76.999866], [-12.1994698, -77.0002111]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_a026020e0f9344e584eda7e384f2e121 = L.polyline(
[[-12.1994698, -77.0002111], [-12.1986819, -77.0009632]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_458aa18e0789427ab3fb41402f97f9ee = L.polyline(
[[-12.1986819, -77.0009632], [-12.1994901, -77.0019195]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_fb79e3a790614fab9186ddac8f441b1c = L.polyline(
[[-12.1994901, -77.0019195], [-12.2004683, -77.0031138]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2019666, -77.0031138], [-12.1986819, -76.9977417]],
{}
);
var poly_line_380dca5e7281458baaf69513168870c3 = L.polyline(
[[-12.2004683, -77.0031138], [-12.1994901, -77.0019195]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_90fdaf75dc2c47ae8be5b9bd056e4b5c = L.polyline(
[[-12.1994901, -77.0019195], [-12.1986819, -77.0009632]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_4cfaab8b1f8948c3983e387e8d3c466c = L.polyline(
[[-12.1986819, -77.0009632], [-12.1994698, -77.0002111]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_0582a6f8dc7f4461af30ee18549541fa = L.polyline(
[[-12.1994698, -77.0002111], [-12.1998489, -76.999866]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2004683, -77.0031138], [-12.1986819, -76.999866]],
{}
);
var poly_line_c4b76ce16d31438eb91a07cc904c74e1 = L.polyline(
[[-12.1998489, -76.999866], [-12.1994698, -77.0002111]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_8a3f532af84c4ed9a24d8988fb95c3d0 = L.polyline(
[[-12.1994698, -77.0002111], [-12.1986819, -77.0009632]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_f6ec90a48db04459ba10759c186a2524 = L.polyline(
[[-12.1986819, -77.0009632], [-12.1979911, -77.0001443]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ef27835db201496dbeb731fb734e7264 = L.polyline(
[[-12.1979911, -77.0001443], [-12.1973597, -76.9994062]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_e794699dd121485384ddae22fbda9af7 = L.polyline(
[[-12.1973597, -76.9994062], [-12.1972722, -76.9993071]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ab85cb288a8c4dfab33be79cd1c405b6 = L.polyline(
[[-12.1972722, -76.9993071], [-12.1952852, -77.0012682]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_541a870d135c4a9cb04747176819a0ef = L.polyline(
[[-12.1952852, -77.0012682], [-12.1950915, -77.0014573]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_f3d7f2c7e949493ab53e45693d528a4e = L.polyline(
[[-12.1950915, -77.0014573], [-12.1948969, -77.0013738], [-12.1948117, -77.0012913], [-12.1947506, -77.0011871], [-12.1946726, -77.0010245], [-12.1946148, -77.000972], [-12.1945074, -77.0008848], [-12.1942025, -77.0005841], [-12.1940741, -77.0005005]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_eb1144c698f24948a4c458255e6f27e3 = L.polyline(
[[-12.1940741, -77.0005005], [-12.1941278, -77.0004209], [-12.1941849, -77.0003018], [-12.194194, -77.0002388], [-12.1941917, -77.0001664], [-12.1941678, -76.9999548]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_61a1bd80bcb9402983665af3b5e93349 = L.polyline(
[[-12.1941678, -76.9999548], [-12.1939888, -76.9999378], [-12.1938244, -76.999891], [-12.1936684, -76.9998292], [-12.1933063, -76.999661], [-12.1929233, -76.9994236]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_4b0c4541745e4516a038b7bc115282ed = L.polyline(
[[-12.1929233, -76.9994236], [-12.1926467, -76.9992331], [-12.1921732, -76.9987448]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_860a9bae249d437fb0fc27de9effd61f = L.polyline(
[[-12.1921732, -76.9987448], [-12.1925648, -76.9983159]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_6e11816d55f14344b1135828686007a5 = L.polyline(
[[-12.1925648, -76.9983159], [-12.1917912, -76.9975788]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_e75c9b4fa8914326b2f2df36fd20cef1 = L.polyline(
[[-12.1917912, -76.9975788], [-12.1910349, -76.9968452]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_642be0a546b04e5ca157e65d8ab07637 = L.polyline(
[[-12.1910349, -76.9968452], [-12.1902906, -76.9961192]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_78e541c358fc44139bba5c03ed8e2986 = L.polyline(
[[-12.1902906, -76.9961192], [-12.1895341, -76.9954137]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_f8083b6a19a847bc83dde1905a001ee4 = L.polyline(
[[-12.1895341, -76.9954137], [-12.190213, -76.9946801]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_93758ef4a5ee47ab8a74f4428e570647 = L.polyline(
[[-12.190213, -76.9946801], [-12.1901893, -76.9939176]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_fc27e779f1c842a2aa0e30bb7ed33c4c = L.polyline(
[[-12.1901893, -76.9939176], [-12.1899679, -76.9938686], [-12.1897539, -76.9937435]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_0137d1baec5f4990938e5a2e2704912a = L.polyline(
[[-12.1897539, -76.9937435], [-12.1894718, -76.9935028]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_162897c0d58e48a3ad0eac3d9c9556e1 = L.polyline(
[[-12.1894718, -76.9935028], [-12.1892992, -76.9933358]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.1998489, -77.0014573], [-12.1892992, -76.9933358]],
{}
);
var poly_line_c2e461f1fd154a8eaaf02fe20908ad20 = L.polyline(
[[-12.1998489, -76.999866], [-12.1994698, -77.0002111]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_d5c7e7806bf74c698a6057ecca3a7f3c = L.polyline(
[[-12.1994698, -77.0002111], [-12.1986819, -77.0009632]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_e9b9391f33864a81b8c55c180b51cbe7 = L.polyline(
[[-12.1986819, -77.0009632], [-12.1979911, -77.0001443]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_99b49ecd0a1245af8f01edab318da63b = L.polyline(
[[-12.1979911, -77.0001443], [-12.1973597, -76.9994062]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_a64c35bd28034c9eaf75e3485cb6ed07 = L.polyline(
[[-12.1973597, -76.9994062], [-12.1972722, -76.9993071]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_53929c085b1c4e42857d821628a4580e = L.polyline(
[[-12.1972722, -76.9993071], [-12.1952852, -77.0012682]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_dd527d36c42d473ba0e0fc7bcf4069d5 = L.polyline(
[[-12.1952852, -77.0012682], [-12.1950915, -77.0014573]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_2e4cd202f82f4605b57fc044d426e4c3 = L.polyline(
[[-12.1950915, -77.0014573], [-12.1948969, -77.0013738], [-12.1948117, -77.0012913], [-12.1947506, -77.0011871], [-12.1946726, -77.0010245], [-12.1946148, -77.000972], [-12.1945074, -77.0008848], [-12.1942025, -77.0005841], [-12.1940741, -77.0005005]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_af6046aea6fd45228ba79ad5c8f5c741 = L.polyline(
[[-12.1940741, -77.0005005], [-12.1941278, -77.0004209], [-12.1941849, -77.0003018], [-12.194194, -77.0002388], [-12.1941917, -77.0001664], [-12.1941678, -76.9999548]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_95d6749bdcad4b64a5b9928d2f7dff98 = L.polyline(
[[-12.1941678, -76.9999548], [-12.1939888, -76.9999378], [-12.1938244, -76.999891], [-12.1936684, -76.9998292], [-12.1933063, -76.999661], [-12.1929233, -76.9994236]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_d2a525c4550b4f0f9d0368309b123cb2 = L.polyline(
[[-12.1929233, -76.9994236], [-12.1926467, -76.9992331], [-12.1921732, -76.9987448]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ab372ec93f614553a832dc032114c79b = L.polyline(
[[-12.1921732, -76.9987448], [-12.1925648, -76.9983159]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_22f2f600f7f1414f862db39f983643fd = L.polyline(
[[-12.1925648, -76.9983159], [-12.1917912, -76.9975788]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_346e8410e4074fd6a0eb8d5542be3eb8 = L.polyline(
[[-12.1917912, -76.9975788], [-12.1910349, -76.9968452]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5ba1771017174398bc6bae3ec2a276f2 = L.polyline(
[[-12.1910349, -76.9968452], [-12.1902906, -76.9961192]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_1be2fa158a054ff9b8f8c54a2a3431bf = L.polyline(
[[-12.1902906, -76.9961192], [-12.1895341, -76.9954137]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5df84fe9b942454caa63655bb62ed99f = L.polyline(
[[-12.1895341, -76.9954137], [-12.190213, -76.9946801]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_8d5fbe6273a24ad69dbe58eee4cbe625 = L.polyline(
[[-12.190213, -76.9946801], [-12.1901893, -76.9939176]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_def4cb45a63a46269baed3a0cd68a704 = L.polyline(
[[-12.1901893, -76.9939176], [-12.1899679, -76.9938686], [-12.1897539, -76.9937435]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_eb2d322960024ac08be201712a21aaad = L.polyline(
[[-12.1897539, -76.9937435], [-12.1894718, -76.9935028]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_7f21ef8e70cf42b8ae41f002c9daeea1 = L.polyline(
[[-12.1894718, -76.9935028], [-12.1892992, -76.9933358]],
{"bubblingMouseEvents": true, "color": "blue", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "blue", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.1998489, -77.0014573], [-12.1892992, -76.9933358]],
{}
);
var poly_line_744077eb2a084ca78163797adf7f9a7a = L.polyline(
[[-12.1892992, -76.9933358], [-12.1894718, -76.9935028]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ce7851addf404f46ab96b764b62f2e9c = L.polyline(
[[-12.1894718, -76.9935028], [-12.1897539, -76.9937435]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_0d0853a118f54ece879370cea7bc79be = L.polyline(
[[-12.1897539, -76.9937435], [-12.1895594, -76.9941055]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ccece29d3e774d32b52970a319222b25 = L.polyline(
[[-12.1895594, -76.9941055], [-12.190213, -76.9946801]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_b966db2dc06e4e2ca0143092efdf0432 = L.polyline(
[[-12.190213, -76.9946801], [-12.1895341, -76.9954137]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_4b4fe75a1efe4232b69347773bde7d71 = L.polyline(
[[-12.1895341, -76.9954137], [-12.1902906, -76.9961192]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_a39655fd58704b1782539d280edf2163 = L.polyline(
[[-12.1902906, -76.9961192], [-12.1910349, -76.9968452]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_bde98e5c359945ddb2168c63b8f472d2 = L.polyline(
[[-12.1910349, -76.9968452], [-12.1917912, -76.9975788]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_b17c16cab4484dea8cf5ce49ea9803bd = L.polyline(
[[-12.1917912, -76.9975788], [-12.1925648, -76.9983159]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5b1764ddce664ea98493aa34f0b124e7 = L.polyline(
[[-12.1925648, -76.9983159], [-12.1921732, -76.9987448]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_0faa007fe18a4655b1bd4b9598f344fc = L.polyline(
[[-12.1921732, -76.9987448], [-12.1926467, -76.9992331], [-12.1929233, -76.9994236]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_03fd3680f4a2420f9c012c061c82b977 = L.polyline(
[[-12.1929233, -76.9994236], [-12.1933063, -76.999661], [-12.1936684, -76.9998292], [-12.1938244, -76.999891], [-12.1939888, -76.9999378], [-12.1941678, -76.9999548]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_94cd1e0b520c41f189124fe659ad7c95 = L.polyline(
[[-12.1941678, -76.9999548], [-12.1941917, -77.0001664], [-12.194194, -77.0002388], [-12.1941849, -77.0003018], [-12.1941278, -77.0004209], [-12.1940741, -77.0005005]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_3c88058757884fbbaa0362201b66d8ff = L.polyline(
[[-12.1940741, -77.0005005], [-12.1942025, -77.0005841], [-12.1945074, -77.0008848], [-12.1946148, -77.000972], [-12.1946726, -77.0010245], [-12.1947506, -77.0011871], [-12.1948117, -77.0012913], [-12.1948969, -77.0013738], [-12.1950915, -77.0014573]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_863fcae82ba940d69af91288e84185aa = L.polyline(
[[-12.1950915, -77.0014573], [-12.1951717, -77.0015434]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_50f18a0b2cdb44ec849aae729f69d9fe = L.polyline(
[[-12.1951717, -77.0015434], [-12.1953533, -77.0013573]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_b782d5e0dbdf47c39d4295b7ca6afcbb = L.polyline(
[[-12.1953533, -77.0013573], [-12.1973597, -76.9994062]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_b0812b7e51684a3f8395a70b51028b2b = L.polyline(
[[-12.1973597, -76.9994062], [-12.198106, -76.9986718], [-12.1983519, -76.9984408], [-12.1998649, -76.9969915], [-12.2004347, -76.9964379]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ca497b33b1164784965b5f7e7e1a048b = L.polyline(
[[-12.2004347, -76.9964379], [-12.2005324, -76.9963449]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_b40999e8b57742cbaf84ed0237abd506 = L.polyline(
[[-12.2005324, -76.9963449], [-12.2062325, -76.9907416], [-12.2091573, -76.9878887]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_93e3758f852640198682495d93132c45 = L.polyline(
[[-12.2091573, -76.9878887], [-12.2092768, -76.987846], [-12.2093946, -76.9878606], [-12.209502, -76.9878946], [-12.2096072, -76.9879464]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_1036524280654bf8857a03e7f42b14b1 = L.polyline(
[[-12.2096072, -76.9879464], [-12.2120105, -76.9905007]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_ebb425791d65456ca0b372e156ef372c = L.polyline(
[[-12.2120105, -76.9905007], [-12.2135175, -76.9920087], [-12.2137324, -76.992116], [-12.2140077, -76.9921401], [-12.2144455, -76.992116], [-12.2148282, -76.9921213], [-12.2153053, -76.9922367], [-12.2157221, -76.9924271], [-12.2161467, -76.9926287], [-12.2161989, -76.9926717]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2161989, -77.0015434], [-12.1892992, -76.987846]],
{}
);
var poly_line_0d4bfb05aa5546669a10bca03be6e27f = L.polyline(
[[-12.2161989, -76.9926717], [-12.2165528, -76.9929361], [-12.2168124, -76.9932], [-12.2170512, -76.9934435]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_c5676b0b02b342c4bf5117e9ff69ee61 = L.polyline(
[[-12.2170512, -76.9934435], [-12.217095, -76.9935306]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_6ea9528c18594eadadef37056669d80e = L.polyline(
[[-12.217095, -76.9935306], [-12.2166289, -76.9938061]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_227c1ca609cc48afa82600713618bbbf = L.polyline(
[[-12.2166289, -76.9938061], [-12.2167847, -76.9942715], [-12.2168952, -76.9948415], [-12.217053, -76.995642]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_c57a2be0f81047c3a47f842cd09d01f1 = L.polyline(
[[-12.217053, -76.995642], [-12.2172163, -76.9965648], [-12.2172605, -76.9966778]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2172605, -76.9966778], [-12.2161989, -76.9926717]],
{}
);
var poly_line_054ceb14376b4d949da81311aec39525 = L.polyline(
[[-12.2172605, -76.9966778], [-12.2178107, -76.9964926]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_65191190dab844ddb7b7a18f31d32316 = L.polyline(
[[-12.2178107, -76.9964926], [-12.217848, -76.996606]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5c4ab0371ae34b37abeb9019c440b204 = L.polyline(
[[-12.217848, -76.996606], [-12.2182291, -76.9956811]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_8b1ddfc8909a4099b68ab42440d6c5f1 = L.polyline(
[[-12.2182291, -76.9956811], [-12.2185237, -76.9949661]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_b555afb779514d2b932f6a3d59dc033c = L.polyline(
[[-12.2185237, -76.9949661], [-12.2187954, -76.9943074]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_c703a2bd0cf445398c256a1de77f6173 = L.polyline(
[[-12.2187954, -76.9943074], [-12.2188453, -76.9941933]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_fd93cc289f014aff8dd2a8f7d7102e64 = L.polyline(
[[-12.2188453, -76.9941933], [-12.2192858, -76.994383]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_9e7d49cfd2834bb5948efe5c448fd2af = L.polyline(
[[-12.2192858, -76.994383], [-12.2202249, -76.9947874]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2202249, -76.9966778], [-12.2172605, -76.9941933]],
{}
);
var poly_line_6436f3a34f074f3a99faffa07b9e8d12 = L.polyline(
[[-12.2202249, -76.9947874], [-12.2192858, -76.994383]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_1661b2ff2d874b55ac48187a958a3ff2 = L.polyline(
[[-12.2192858, -76.994383], [-12.219647, -76.99359]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_d24d26f11b3641b2bae6dc1e7f2de21b = L.polyline(
[[-12.219647, -76.99359], [-12.2191862, -76.9933818]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_6fe9d0c4d5ce4a9db4ebdef11b6d0b4b = L.polyline(
[[-12.2191862, -76.9933818], [-12.2192676, -76.993188]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_82cdaca6cbf349cca105e05404e4b9db = L.polyline(
[[-12.2192676, -76.993188], [-12.2194667, -76.9927139], [-12.2194861, -76.9925608]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_3ad43c0b6e314651b1f45c3cd50378b6 = L.polyline(
[[-12.2194861, -76.9925608], [-12.2193919, -76.9923595], [-12.219295, -76.9922546], [-12.2190899, -76.9922234], [-12.2190038, -76.9922259]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_3b6f94d59bca4e9abda7d7e69c1783dd = L.polyline(
[[-12.2190038, -76.9922259], [-12.2189645, -76.992265], [-12.2182025, -76.9926477], [-12.2175175, -76.9928186]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_842a085a5d004836a7840a5a9db16ce4 = L.polyline(
[[-12.2175175, -76.9928186], [-12.2174396, -76.9928345], [-12.2172269, -76.9928407], [-12.2168946, -76.9928352], [-12.2165841, -76.9927652], [-12.2161989, -76.9926717]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_42aa39beed174ecab338e94ca4f1bb55 = L.polyline(
[[-12.2161989, -76.9926717], [-12.2161467, -76.9926287], [-12.2157221, -76.9924271], [-12.2153053, -76.9922367], [-12.2148282, -76.9921213], [-12.2144455, -76.992116], [-12.2140077, -76.9921401], [-12.2137324, -76.992116], [-12.2135175, -76.9920087], [-12.2120105, -76.9905007]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_cd90f2cf36094adb9b7de3eaed12b017 = L.polyline(
[[-12.2120105, -76.9905007], [-12.2121733, -76.9907645], [-12.2122755, -76.9910356], [-12.2123928, -76.9914292], [-12.2124555, -76.9917781], [-12.212475, -76.9920133], [-12.2124631, -76.9922715], [-12.2124372, -76.9924869], [-12.2123794, -76.9927584], [-12.2123097, -76.9929936], [-12.2122198, -76.9932312], [-12.2114483, -76.995047], [-12.2112875, -76.9953653], [-12.2110121, -76.9957964], [-12.2108476, -76.9960113], [-12.2105811, -76.9963321], [-12.2103543, -76.996542], [-12.2101519, -76.996705], [-12.2097509, -76.9969865], [-12.2094967, -76.9971778], [-12.2092655, -76.9973819], [-12.2090393, -76.9976622], [-12.208879, -76.9979239], [-12.2087636, -76.998186], [-12.2086677, -76.9984494], [-12.2086136, -76.9987253], [-12.2085617, -76.9991114]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_dc3e692337a8435bb6cdafd607e8093f = L.polyline(
[[-12.2085617, -76.9991114], [-12.2085054, -76.9994843], [-12.2084632, -76.9996813], [-12.2083225, -77.000012], [-12.2081888, -77.0002513]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_66ba8929d00740f7b0eec4e30ef3f3d3 = L.polyline(
[[-12.2081888, -77.0002513], [-12.2076048, -77.0011097]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_eeebcf639fb14744b78b749883436dea = L.polyline(
[[-12.2076048, -77.0011097], [-12.2059679, -76.9989117], [-12.2059309, -76.9988783], [-12.2058965, -76.9988717], [-12.2058413, -76.9988745], [-12.2040925, -76.9997242]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_4f288dbb3632446fb7bfa0e47b1bf462 = L.polyline(
[[-12.2040925, -76.9997242], [-12.2039929, -76.9997726]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_23791bb09bb5469cb1d2a75eeea8487f = L.polyline(
[[-12.2039929, -76.9997726], [-12.2028188, -77.0003332]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_dc2dfdfd83854fe1abbeef0ba4992cee = L.polyline(
[[-12.2028188, -77.0003332], [-12.2016376, -77.0008972]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_26afaf15fd834024a7686845f6ecd50f = L.polyline(
[[-12.2016376, -77.0008972], [-12.2005548, -77.0014383]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_d659d93ca59b40349d289f5efd72d5bc = L.polyline(
[[-12.2005548, -77.0014383], [-12.1994901, -77.0019195]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_c5686860bdf046ae92d29f5a70e6a889 = L.polyline(
[[-12.1994901, -77.0019195], [-12.1986819, -77.0009632]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_9662cf9f6bdc4b5aa021f32ac0672788 = L.polyline(
[[-12.1986819, -77.0009632], [-12.1979911, -77.0001443]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_c2fab5b56c1c46479a4100c4229d2727 = L.polyline(
[[-12.1979911, -77.0001443], [-12.1973597, -76.9994062]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_e42d4b18ac0c422b874e7263590209a6 = L.polyline(
[[-12.1973597, -76.9994062], [-12.1972722, -76.9993071]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_1c80a32ef42c424aadd7303e4f467fbd = L.polyline(
[[-12.1972722, -76.9993071], [-12.1952852, -77.0012682]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_7baa4a32b1394fcba9b1801680b9d687 = L.polyline(
[[-12.1952852, -77.0012682], [-12.1950915, -77.0014573]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5af0b1ae825a48d3a0e36c83cd3d1cd8 = L.polyline(
[[-12.1950915, -77.0014573], [-12.1948969, -77.0013738], [-12.1948117, -77.0012913], [-12.1947506, -77.0011871], [-12.1946726, -77.0010245], [-12.1946148, -77.000972], [-12.1945074, -77.0008848], [-12.1942025, -77.0005841], [-12.1940741, -77.0005005]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_33e8dc155f564e529ee4e5c3f685b355 = L.polyline(
[[-12.1940741, -77.0005005], [-12.1941278, -77.0004209], [-12.1941849, -77.0003018], [-12.194194, -77.0002388], [-12.1941917, -77.0001664], [-12.1941678, -76.9999548]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_f8eba69ff9f747ddad522a14da9e1d90 = L.polyline(
[[-12.1941678, -76.9999548], [-12.1939888, -76.9999378], [-12.1938244, -76.999891], [-12.1936684, -76.9998292], [-12.1933063, -76.999661], [-12.1929233, -76.9994236]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_e5cbe7cdde9049c3b526c9785229bc93 = L.polyline(
[[-12.1929233, -76.9994236], [-12.1926467, -76.9992331], [-12.1921732, -76.9987448]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_104b2c0a8b314c1099b8c136536c1493 = L.polyline(
[[-12.1921732, -76.9987448], [-12.1925648, -76.9983159]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_5dc9e6568ab54a1b9a5424a98e09f0e8 = L.polyline(
[[-12.1925648, -76.9983159], [-12.1917912, -76.9975788]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_c82ccacf74d94d23a75ab6dc1a3bc453 = L.polyline(
[[-12.1917912, -76.9975788], [-12.1910349, -76.9968452]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_f8d4770add1a4d7f897d5c6458644d5f = L.polyline(
[[-12.1910349, -76.9968452], [-12.1902906, -76.9961192]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_601a4b0331844a74940bc6ad4291cc6d = L.polyline(
[[-12.1902906, -76.9961192], [-12.1895341, -76.9954137]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_afe43350b5b44e438054d515ad7c413c = L.polyline(
[[-12.1895341, -76.9954137], [-12.190213, -76.9946801]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_56e27cc604e24213b578b4e7eb6973a7 = L.polyline(
[[-12.190213, -76.9946801], [-12.1901893, -76.9939176]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_524dfc1200294eb680dec0bb8ef409d3 = L.polyline(
[[-12.1901893, -76.9939176], [-12.1899679, -76.9938686], [-12.1897539, -76.9937435]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_16d39db2b26c466a9036cbe7bde6c611 = L.polyline(
[[-12.1897539, -76.9937435], [-12.1894718, -76.9935028]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
var poly_line_58f0d5af21f74046b51273db666f9734 = L.polyline(
[[-12.1894718, -76.9935028], [-12.1892992, -76.9933358]],
{"bubblingMouseEvents": true, "color": "green", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "green", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1, "smoothFactor": 1.0, "stroke": true, "weight": 5}
).addTo(map_cfd5275f597b4ac4aaafb224bf2229b0);
map_cfd5275f597b4ac4aaafb224bf2229b0.fitBounds(
[[-12.2202249, -77.0019195], [-12.1892992, -76.9905007]],
{}
);
var poly_line_27c80f3576a54da2ab110e50ddce6a52 = L.polyline(