-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmapa_da_rota.html
2187 lines (1429 loc) · 196 KB
/
mapa_da_rota.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<script>
L_NO_TOUCH = false;
L_DISABLE_3D = false;
</script>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.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-glyphicons.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_6b1193974ac340ea05508426703061a0 {
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_6b1193974ac340ea05508426703061a0" ></div>
</body>
<script>
var map_6b1193974ac340ea05508426703061a0 = L.map(
"map_6b1193974ac340ea05508426703061a0",
{
center: [-23.56172134471026, -46.68310021693162],
crs: L.CRS.EPSG3857,
zoom: 1,
zoomControl: true,
preferCanvas: false,
}
);
var tile_layer_acd7cbf471104a51e4042a8d73ca217c = L.tileLayer(
"https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",
{"attribution": "\u0026copy; \u003ca href=\"https://www.openstreetmap.org/copyright\"\u003eOpenStreetMap\u003c/a\u003e contributors \u0026copy; \u003ca href=\"https://carto.com/attributions\"\u003eCARTO\u003c/a\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}
);
tile_layer_acd7cbf471104a51e4042a8d73ca217c.addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c48472dcb15e60ef0075af183ba8bc7b = L.polyline(
[[-23.5441932, -46.7234819], [-23.544315, -46.7224434], [-23.5443633, -46.7220082], [-23.544402, -46.7217246], [-23.5444234, -46.7215933], [-23.5444322, -46.7215438], [-23.5444705, -46.721327], [-23.5445283, -46.7210487], [-23.5445818, -46.7208261], [-23.5446713, -46.7204877], [-23.5448031, -46.720069], [-23.5450647, -46.7193864]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_559ff109f385176a8723c83e537ca56c = L.polyline(
[[-23.5450647, -46.7193864], [-23.5451715, -46.719156], [-23.5452383, -46.719012]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_3472902f8e98cabb527c44eb59bb8482 = L.polyline(
[[-23.5452383, -46.719012], [-23.5453515, -46.7188], [-23.5453921, -46.7187201]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5139714733efc9c02e2a06d44096be95 = L.polyline(
[[-23.5453921, -46.7187201], [-23.5455849, -46.7183919], [-23.545603, -46.7183612], [-23.5458779, -46.7179304], [-23.5462727, -46.7174218]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_509baaaee377b9de29c51ced6ac6cb75 = L.polyline(
[[-23.5462727, -46.7174218], [-23.5464508, -46.7171919]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_98df3cc8eee9c3aae1d3c95c2354816b = L.polyline(
[[-23.5464508, -46.7171919], [-23.5468364, -46.716776]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8e6a836ecfef84eb67df4641b5931bd7 = L.polyline(
[[-23.5468364, -46.716776], [-23.5470098, -46.7165673]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8943307e14c29a68608c896e06505dc3 = L.polyline(
[[-23.5470098, -46.7165673], [-23.5473298, -46.7162154], [-23.5476403, -46.715874], [-23.547664, -46.7158479]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_bdb9239fbe6442d460319d57a337dbd0 = L.polyline(
[[-23.547664, -46.7158479], [-23.5477286, -46.7157756], [-23.5478371, -46.7156542]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_da68079189e6798ade7a35338fc3ec44 = L.polyline(
[[-23.5478371, -46.7156542], [-23.5476815, -46.715474], [-23.5476336, -46.7154186]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_9883e19cb4cd25151aed1ad32f7941b2 = L.polyline(
[[-23.5476336, -46.7154186], [-23.5476008, -46.7153835], [-23.5471431, -46.7148945], [-23.547033, -46.714832]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_18e23c6fdcfc6735c757ffaa03ed9300 = L.polyline(
[[-23.547033, -46.714832], [-23.5470311, -46.7148219]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_970c486978b0b2ad5d33926d72abc6e1 = L.polyline(
[[-23.5470311, -46.7148219], [-23.5470245, -46.7148058], [-23.5470142, -46.7147923], [-23.5470009, -46.7147824]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_37e9d1d71121a6b82bbf604b736b9e7d = L.polyline(
[[-23.5470009, -46.7147824], [-23.5469793, -46.7147759], [-23.546957, -46.7147787]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8b5c7ff4550189f98c5b0d46cb4b3175 = L.polyline(
[[-23.546957, -46.7147787], [-23.546829, -46.7146718]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_48e7df9c3f74dc8b8cc979bc33399497 = L.polyline(
[[-23.546829, -46.7146718], [-23.5464678, -46.7142462]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_13a2355705a243e561ea3deb1578a744 = L.polyline(
[[-23.5464678, -46.7142462], [-23.5462965, -46.7140596], [-23.5460624, -46.7138045]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_a1b5e809c535e60c4b522c3cf6ed73eb = L.polyline(
[[-23.5460624, -46.7138045], [-23.5460321, -46.7136676], [-23.5460152, -46.7135915]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_45639b9a1626f0abab5aa3552e74cb7c = L.polyline(
[[-23.5460152, -46.7135915], [-23.5459789, -46.7133794]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5dd2e6c2d087feb5e36b73df532ef169 = L.polyline(
[[-23.5459789, -46.7133794], [-23.5459578, -46.7132136]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_a514b0295faa3d271b99c0f00b869e59 = L.polyline(
[[-23.5459578, -46.7132136], [-23.5459379, -46.7115553], [-23.5459371, -46.7112246]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_1dff936ca790966d4d632d0b72b294a8 = L.polyline(
[[-23.5459371, -46.7112246], [-23.5459534, -46.7111565], [-23.5459924, -46.7109266]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_af96e7ec9215966675381915fbd20148 = L.polyline(
[[-23.5459924, -46.7109266], [-23.546044, -46.7109051], [-23.546089, -46.7108701], [-23.5461306, -46.7108132], [-23.5461546, -46.7107453], [-23.5461588, -46.7106726]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_50d304694f6a6abc826ac76c88eaccf6 = L.polyline(
[[-23.5461588, -46.7106726], [-23.5461445, -46.7106064], [-23.5461136, -46.7105472], [-23.5460688, -46.7105], [-23.5460135, -46.7104683]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_81ddfa72de57347255a69d70493e77a9 = L.polyline(
[[-23.5460135, -46.7104683], [-23.545918, -46.7102446]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_00d11218425aac2d6aed516f7dc5a731 = L.polyline(
[[-23.545918, -46.7102446], [-23.545928, -46.7097957]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_92c4ca7fac48da2d34a233f3112ad636 = L.polyline(
[[-23.545928, -46.7097957], [-23.5459243, -46.709364]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5ad169d13be31e10ed7cd73c47972504 = L.polyline(
[[-23.5459243, -46.709364], [-23.5459196, -46.7088321], [-23.5459164, -46.708461]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_97a8b94452b32d3abde3d8b821a46e62 = L.polyline(
[[-23.5459164, -46.708461], [-23.5459077, -46.70796], [-23.5459033, -46.7077082]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_278190827f991b9390d3e472b4dc6c9f = L.polyline(
[[-23.5459033, -46.7077082], [-23.545902, -46.7076356]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_544e70f633fd181f3b6e221bb781cba0 = L.polyline(
[[-23.545902, -46.7076356], [-23.5458943, -46.7068608]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_80e1de16ee72c61cfe1f98e400d9474e = L.polyline(
[[-23.5458943, -46.7068608], [-23.5458916, -46.7063235]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_210d1e7dbf9787ba1bed9fb4cbc88ec5 = L.polyline(
[[-23.5458916, -46.7063235], [-23.5458882, -46.7058895]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8833f390192a8e749bcd67be46ffcb1b = L.polyline(
[[-23.5458882, -46.7058895], [-23.5454929, -46.7058637]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_fa0aeb48198f00cd0074ac2395b2a570 = L.polyline(
[[-23.5454929, -46.7058637], [-23.5451982, -46.7058246]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_9d8f722bae727c4f9670828c6e0cd5e9 = L.polyline(
[[-23.5451982, -46.7058246], [-23.5449922, -46.7057745]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_4668f33100ca260fc5c7e4c1cfe3b18e = L.polyline(
[[-23.5449922, -46.7057745], [-23.5449783, -46.7057586]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_388aded54604548e30af6005c738899d = L.polyline(
[[-23.5449783, -46.7057586], [-23.5449707, -46.7057498], [-23.5449411, -46.7057392]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_795b1f0e712b2036a5bfc3019fd9d7ca = L.polyline(
[[-23.5449411, -46.7057392], [-23.5449093, -46.7057458], [-23.5448845, -46.7057687]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c7303ec09751b57c038bc1fe0e11e3cb = L.polyline(
[[-23.5448845, -46.7057687], [-23.5447521, -46.7057868]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_aae7938e368dec7712bdfce7ccf0df3c = L.polyline(
[[-23.5447521, -46.7057868], [-23.5445567, -46.70573]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_772556fdcbbdf26aae131fa360f7e22f = L.polyline(
[[-23.5445567, -46.70573], [-23.544456, -46.7056589]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e429f86e7df8bb5e98a06c3e825aa792 = L.polyline(
[[-23.544456, -46.7056589], [-23.5444564, -46.705644], [-23.5444504, -46.7056216], [-23.5444383, -46.7056023], [-23.5444213, -46.705588], [-23.5444199, -46.7055874]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_6782f4d7a6b9586c8e7572d7cb52d81f = L.polyline(
[[-23.5444199, -46.7055874], [-23.5442804, -46.7053894]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_b9467de1272332d7552be9dc56de852b = L.polyline(
[[-23.5442804, -46.7053894], [-23.5442721, -46.7053717], [-23.544214, -46.7052479], [-23.5440792, -46.7049633]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_13f2bed883a3c3321e24c1bad9d9a5f6 = L.polyline(
[[-23.5440792, -46.7049633], [-23.5440442, -46.7048543], [-23.544016, -46.7047665], [-23.5439762, -46.7045999]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e1c0d620ae166bc9f91c4f7fb30c2418 = L.polyline(
[[-23.5439762, -46.7045999], [-23.5439571, -46.7045197]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_81fbeddd0f741fb2fdc57896edfd11cb = L.polyline(
[[-23.5439571, -46.7045197], [-23.5439404, -46.7044496]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c058f3799f6f798fefec97b1adfd2ee6 = L.polyline(
[[-23.5439404, -46.7044496], [-23.5435287, -46.702527], [-23.5434197, -46.7020183]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_9e73d4b5a401a8b011f956b4a548e1e1 = L.polyline(
[[-23.5434197, -46.7020183], [-23.5433285, -46.7016162], [-23.5432829, -46.7014153]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8a7019522a7ff99024baacb6f8235e2f = L.polyline(
[[-23.5432829, -46.7014153], [-23.5432537, -46.7012864]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_0e85a9bf32863217344fc4fc3b8c6998 = L.polyline(
[[-23.5432537, -46.7012864], [-23.5431131, -46.7007582], [-23.5430841, -46.7006741], [-23.5430417, -46.7005976]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_546bac8380b668dba22166afae624c76 = L.polyline(
[[-23.5430417, -46.7005976], [-23.5429992, -46.7005474], [-23.5429273, -46.7004963], [-23.5421724, -46.7002369]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_a062b2959f7def90c24c83ec8e9ccd0e = L.polyline(
[[-23.5421724, -46.7002369], [-23.5411679, -46.6999593], [-23.5409684, -46.6999042]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ad82768f109d009fb608d44c690bd600 = L.polyline(
[[-23.5409684, -46.6999042], [-23.5409738, -46.6998459], [-23.5410041, -46.6995193], [-23.5410171, -46.699394], [-23.541023, -46.6993377], [-23.5410327, -46.6992113], [-23.5410367, -46.6991498], [-23.5410462, -46.6990036], [-23.5410353, -46.6987539]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_eb4215ef20269bcf6d92eb3e8afc668d = L.polyline(
[[-23.5410353, -46.6987539], [-23.5409409, -46.6984312], [-23.5408661, -46.6981676], [-23.5407764, -46.6977801], [-23.5407087, -46.6974903]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ada7cc682fc9f6570b6f4d4d446fb371 = L.polyline(
[[-23.5407087, -46.6974903], [-23.5406825, -46.6973871], [-23.5406774, -46.6973669], [-23.5406436, -46.6972535]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_822c410a528864abc90d02a257a36150 = L.polyline(
[[-23.5406436, -46.6972535], [-23.5405766, -46.6972797], [-23.5405428, -46.6972925], [-23.5405016, -46.6973038], [-23.5403387, -46.69733], [-23.5399956, -46.6973693]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8a629e3c522e890bd26a6eee8d7a41ae = L.polyline(
[[-23.5399956, -46.6973693], [-23.5393207, -46.6974463], [-23.5389402, -46.6974915], [-23.5387216, -46.6975174], [-23.5386789, -46.6975225], [-23.5385596, -46.6975366]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_421212362b7aa716b571a03bfde9e038 = L.polyline(
[[-23.5385596, -46.6975366], [-23.5383679, -46.6975584], [-23.5377647, -46.6976272], [-23.5371223, -46.6976565], [-23.5367104, -46.6976617], [-23.5366391, -46.6976584]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_65d858bd0cdefdbc980ec5316b5d3acc = L.polyline(
[[-23.5366391, -46.6976584], [-23.5364595, -46.6975822], [-23.5363304, -46.6975312], [-23.5361694, -46.697495], [-23.536044, -46.6975003], [-23.5359136, -46.6975352], [-23.5354169, -46.6976975], [-23.5350988, -46.6978125]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_974c2a6738a4ba9ebe5372c6e9d31f80 = L.polyline(
[[-23.5350988, -46.6978125], [-23.5345661, -46.6978907]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e39d11d293da27cdefdefc90f9a64195 = L.polyline(
[[-23.5345661, -46.6978907], [-23.5345289, -46.6978618], [-23.5344917, -46.6978329], [-23.5344578, -46.6977813], [-23.5344474, -46.6977243], [-23.5344537, -46.697634]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_84f730f050b9891704fbd225d0a40b7a = L.polyline(
[[-23.5344537, -46.697634], [-23.534431, -46.6976058], [-23.5343349, -46.6974861], [-23.5340483, -46.6971286]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_05c8272360fc5d27763b6ad5df1eebff = L.polyline(
[[-23.5340483, -46.6971286], [-23.5335581, -46.696513], [-23.5335118, -46.6964548], [-23.532976, -46.6957802], [-23.5325167, -46.6952006]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e144fc1a2c255e118945f04fd5d4d3dc = L.polyline(
[[-23.5325167, -46.6952006], [-23.5322039, -46.6952951], [-23.5321064, -46.6953385], [-23.5320308, -46.6953772], [-23.5319501, -46.6954184]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_bd01376cd9e66b88c7c94f4bc3f420d8 = L.polyline(
[[-23.5319501, -46.6954184], [-23.531754, -46.6954914], [-23.5316286, -46.6955182], [-23.5314921, -46.6955316], [-23.530996, -46.695534]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_34db4ea807b43834eba68322b385f995 = L.polyline(
[[-23.530996, -46.695534], [-23.5305562, -46.695535], [-23.5303959, -46.6955344], [-23.5302785, -46.695534]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_1f110ea685775d4ba002be414571cbc9 = L.polyline(
[[-23.5302785, -46.695534], [-23.5302796, -46.6954365], [-23.5302894, -46.6944953], [-23.5302892, -46.6943938]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5286c3f13ba11719cc605f43e9d1431f = L.polyline(
[[-23.5302892, -46.6943938], [-23.5302912, -46.6943225], [-23.5302976, -46.6937085], [-23.5303003, -46.6934541]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ffc3546aa7e10cb76ff1938714b6e51d = L.polyline(
[[-23.5303003, -46.6934541], [-23.5303016, -46.6933265]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c0efeb19c02e739eb1594dc0c5b6bd80 = L.polyline(
[[-23.5303016, -46.6933265], [-23.530303, -46.6931931], [-23.5303066, -46.6928514], [-23.530307, -46.6928061]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_447b2edb77fdb3c2c9a5c64ceeab58ef = L.polyline(
[[-23.530307, -46.6928061], [-23.53031, -46.6925237], [-23.5303102, -46.692503]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c0cc55266a89534b8200ee8c254be553 = L.polyline(
[[-23.5303102, -46.692503], [-23.5302128, -46.6924042], [-23.5301209, -46.692334], [-23.5300514, -46.6922971], [-23.5293853, -46.6920832], [-23.5293047, -46.6920598], [-23.5292766, -46.6920517]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_545615ec3cb2a290dfe2991a5d9206c4 = L.polyline(
[[-23.5292766, -46.6920517], [-23.5292561, -46.6920251], [-23.5283431, -46.6908385], [-23.5282648, -46.6907489]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_b4d61675e480c72c71826e0bce5cf71d = L.polyline(
[[-23.5282648, -46.6907489], [-23.5283493, -46.6906091], [-23.5283934, -46.6905362]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ec83894b752442e09ef535b97edb9d7c = L.polyline(
[[-23.5283934, -46.6905362], [-23.5284354, -46.6904668], [-23.5285216, -46.6903242], [-23.52892, -46.6896656], [-23.5289619, -46.6895964]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_14d67971e1642f13cafa554e11778981 = L.polyline(
[[-23.5289619, -46.6895964], [-23.5289464, -46.6895853], [-23.5287829, -46.689468], [-23.5278512, -46.6887833], [-23.5278169, -46.6887574], [-23.5277288, -46.6886912]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ca4b11691d1df654b1c0ea00a4a12d7f = L.polyline(
[[-23.5277288, -46.6886912], [-23.5276933, -46.6886669], [-23.5273077, -46.6884026]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_0ebc34f957ac130f73a072a13326a054 = L.polyline(
[[-23.5273077, -46.6884026], [-23.5272321, -46.6883508], [-23.527206, -46.6883329]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_7631bd39e6d403ee97ecb237523af2c3 = L.polyline(
[[-23.527206, -46.6883329], [-23.5270584, -46.6882318]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_336013b134f2a00c868ed2836ae05040 = L.polyline(
[[-23.5270584, -46.6882318], [-23.5267475, -46.6880178], [-23.5264078, -46.6877758], [-23.5261893, -46.6876202], [-23.5261131, -46.6875659], [-23.5260717, -46.6875368]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_f4d039227682a33186a943e348cc3175 = L.polyline(
[[-23.5260717, -46.6875368], [-23.5260724, -46.6874686], [-23.5260738, -46.6873347], [-23.5260778, -46.6869654], [-23.5260791, -46.6868344]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_59193c163cd434e10a49fd8264e515f4 = L.polyline(
[[-23.5260791, -46.6868344], [-23.5260498, -46.6868356], [-23.525016, -46.6868259]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_517124c04c18802a1d85f5ba79878644 = L.polyline(
[[-23.525016, -46.6868259], [-23.5250217, -46.6862483], [-23.5250226, -46.6861544]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_7d876e2520a1c2a334ffecde556ad0f9 = L.polyline(
[[-23.5250226, -46.6861544], [-23.5250234, -46.6860758], [-23.5250291, -46.6855016], [-23.5250295, -46.6854628], [-23.5250302, -46.6853921]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_bdcfef42773dba4b3627d7cfe3cae441 = L.polyline(
[[-23.5250302, -46.6853921], [-23.5250309, -46.6853223], [-23.5250311, -46.6852976], [-23.5250367, -46.6847327], [-23.5250384, -46.6845588], [-23.5250416, -46.6842382], [-23.5250484, -46.6840593], [-23.5250564, -46.683978]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ff716d13010cdd03c8b921c06f7d7eb9 = L.polyline(
[[-23.5250564, -46.683978], [-23.5250682, -46.6839227], [-23.5251018, -46.68376], [-23.5251424, -46.6836239], [-23.5252132, -46.683428], [-23.5252445, -46.6833463], [-23.5253232, -46.6831344], [-23.525444, -46.6827834], [-23.5254977, -46.6826223], [-23.5255433, -46.6824733]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_df6d9a504ef25e60d24493ecce3c715f = L.polyline(
[[-23.5255433, -46.6824733], [-23.5255624, -46.6823854], [-23.5255771, -46.6822708], [-23.5255943, -46.6821025], [-23.5256029, -46.6819154], [-23.5256045, -46.6818729], [-23.5256085, -46.6817652]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_0f432d346d35b3769d87bfc793910644 = L.polyline(
[[-23.5256085, -46.6817652], [-23.5256109, -46.6816361]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_46607dd6820f895efde1ce8b970a3a9b = L.polyline(
[[-23.5256109, -46.6816361], [-23.5256152, -46.6815492], [-23.5256512, -46.6808259], [-23.5256902, -46.6801063], [-23.525816, -46.679217], [-23.5258382, -46.6790598], [-23.525926, -46.6783734], [-23.5259872, -46.6778833]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_cf4b854472f0c9708fc4e88566cf35ae = L.polyline(
[[-23.5259872, -46.6778833], [-23.5263984, -46.677695]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_a8e4e5ae0b8bdd2cfcbd3fc3e7c210e8 = L.polyline(
[[-23.5263984, -46.677695], [-23.5264837, -46.6776602], [-23.5265177, -46.6776464], [-23.5267752, -46.6775414], [-23.5269461, -46.6774717], [-23.527132, -46.6773959]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ad4ef17feed22b19ee60bb36fa08cb7a = L.polyline(
[[-23.527132, -46.6773959], [-23.5267053, -46.676711], [-23.5266406, -46.6766071]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_856837823eabd448621c485c3d65e904 = L.polyline(
[[-23.5266406, -46.6766071], [-23.5266069, -46.67661], [-23.5262955, -46.6766077], [-23.526144, -46.6766066]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5f879ea5f79c41c6bdb9617568e4854c = L.polyline(
[[-23.526144, -46.6766066], [-23.5261653, -46.676233], [-23.5261747, -46.6759904], [-23.5261741, -46.6757517], [-23.5261771, -46.675517]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_3e5141e946371cf12f45c4a6aaa75b89 = L.polyline(
[[-23.5261771, -46.675517], [-23.5261778, -46.6754667], [-23.5261888, -46.67513], [-23.5262217, -46.6745406], [-23.5262352, -46.6744335], [-23.526257, -46.6743285], [-23.5263216, -46.6741195], [-23.5263939, -46.6739372], [-23.5264584, -46.6737863]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_61192ee078d2cdd6a4014687037fc86b = L.polyline(
[[-23.5264584, -46.6737863], [-23.5264871, -46.6737238], [-23.5265563, -46.6735943]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_0b1e1de333d18bae4656201dfb8c77f3 = L.polyline(
[[-23.5265563, -46.6735943], [-23.5265723, -46.6735644], [-23.5267611, -46.6732113], [-23.5268032, -46.6731325]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_9ca425f3b034f726d28c83ffe19873d6 = L.polyline(
[[-23.5268032, -46.6731325], [-23.5270079, -46.6727495], [-23.5270682, -46.6726368]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_08b757914c5e2f1b5c707c93ac4047c9 = L.polyline(
[[-23.5270682, -46.6726368], [-23.5271142, -46.6725507], [-23.5271534, -46.6724774], [-23.5274795, -46.6718963]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_28135a9115ac2b01721d078e94a54d48 = L.polyline(
[[-23.5274795, -46.6718963], [-23.5275929, -46.6716943], [-23.527864, -46.6712111], [-23.5278664, -46.6712067], [-23.5279308, -46.671092]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_876548b1bd964acdbd6ad33aad5ef1f0 = L.polyline(
[[-23.5279308, -46.671092], [-23.5279917, -46.6709835], [-23.5280117, -46.6709474], [-23.5281667, -46.6706693], [-23.5285685, -46.669948], [-23.5286518, -46.6697985], [-23.5291123, -46.6689804], [-23.5296593, -46.6679901], [-23.5296699, -46.6679709], [-23.5299104, -46.6675315], [-23.5300196, -46.667332]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_f6b648b14757c0df78d77b3e2449d052 = L.polyline(
[[-23.5300196, -46.667332], [-23.5299241, -46.6672746]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8338207ab8449736f32b646e8d807d6a = L.polyline(
[[-23.5299241, -46.6672746], [-23.5298816, -46.6673521], [-23.5298185, -46.6674671], [-23.5298063, -46.6674895], [-23.5296728, -46.6677331], [-23.5296552, -46.6677652], [-23.5295776, -46.667906], [-23.5294267, -46.6681773]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_f906990dcc08e1487b0439b4815a729e = L.polyline(
[[-23.5294267, -46.6681773], [-23.5293731, -46.6682736], [-23.5288195, -46.6692692], [-23.5285225, -46.6698032], [-23.5279203, -46.670886], [-23.527899, -46.6709238], [-23.5278388, -46.6710312]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_59af4bb8b6fff5c60505450a817b4027 = L.polyline(
[[-23.5278388, -46.6710312], [-23.5277746, -46.6711457], [-23.5277724, -46.6711497], [-23.5277202, -46.6712426], [-23.5275802, -46.6714923], [-23.5275014, -46.6716328], [-23.5271977, -46.6721741], [-23.527062, -46.6724159], [-23.5270223, -46.6724902], [-23.5269732, -46.672582]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_b368dd8acb3b44cfb8d982a63b74b752 = L.polyline(
[[-23.5269732, -46.672582], [-23.5269145, -46.6726918], [-23.526742, -46.6730145]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_258bb8020f5b9da85b2dfc483ccefa08 = L.polyline(
[[-23.526742, -46.6730145], [-23.5268032, -46.6731325]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ae72cf8a55bacaabea8857337aa17ede = L.polyline(
[[-23.5268032, -46.6731325], [-23.5270079, -46.6727495], [-23.5270682, -46.6726368]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_4d4d2ce61ac7d1f8c2aa9e5969a0e065 = L.polyline(
[[-23.5270682, -46.6726368], [-23.5271142, -46.6725507], [-23.5271534, -46.6724774], [-23.5274795, -46.6718963]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_1f98b497c06259156ef586377b2d60df = L.polyline(
[[-23.5274795, -46.6718963], [-23.527558, -46.6719443], [-23.5284286, -46.6724769], [-23.5285174, -46.6725313]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_26a7585422257e5bf26e8894be0bee2d = L.polyline(
[[-23.5285174, -46.6725313], [-23.5286261, -46.6725977], [-23.5294975, -46.6731308], [-23.5295738, -46.6731775]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_87a355998d9bddeb92a3f36ef08680e7 = L.polyline(
[[-23.5295738, -46.6731775], [-23.5296537, -46.6732264], [-23.5311159, -46.6741209]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5f8e355d76552e2d1204151fa84472a5 = L.polyline(
[[-23.5311159, -46.6741209], [-23.5313692, -46.6738111], [-23.5315344, -46.6736144], [-23.5315993, -46.6735371]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_2c0fd942f633b7461ce3c59bb92d29e7 = L.polyline(
[[-23.5315993, -46.6735371], [-23.5316999, -46.6736039], [-23.5317218, -46.6736181], [-23.5318288, -46.6736876]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_1c74874e194032676a2445feb1c9a6d8 = L.polyline(
[[-23.5318288, -46.6736876], [-23.5318727, -46.6736131]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_f97c0948c4362e9a78a569ba2309b367 = L.polyline(
[[-23.5318727, -46.6736131], [-23.5319026, -46.6735659], [-23.5322827, -46.6729662]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_6583868c21f6ae82ae1a3ca8fc7b5c7f = L.polyline(
[[-23.5322827, -46.6729662], [-23.5323798, -46.6728052], [-23.532537, -46.6725441]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8305e513ba22fa9e1faede458a349458 = L.polyline(
[[-23.532537, -46.6725441], [-23.5325512, -46.6725213], [-23.5328118, -46.6721039], [-23.5328776, -46.6720029]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_27e812a166feba877fcc3e54595e40fb = L.polyline(
[[-23.5328776, -46.6720029], [-23.5329323, -46.6719207], [-23.5336676, -46.6708112], [-23.5337481, -46.6706897]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8594e2e65f90a1aa48a42d03ad3f25be = L.polyline(
[[-23.5337481, -46.6706897], [-23.5337994, -46.6706162], [-23.5344073, -46.6697332], [-23.5345388, -46.6695427], [-23.5346092, -46.6694342]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_8d41c02df120632e80d830ff8316e51b = L.polyline(
[[-23.5346092, -46.6694342], [-23.5346757, -46.6693315], [-23.535155, -46.668585], [-23.5352177, -46.6684909], [-23.535236, -46.6684634], [-23.5353334, -46.6683172]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_2cbc9e19f6ef480e53c24c2115d0b7c1 = L.polyline(
[[-23.5353334, -46.6683172], [-23.5353797, -46.6682477], [-23.5355943, -46.6679257], [-23.5361173, -46.6671601], [-23.5361402, -46.6671267], [-23.5362106, -46.66702]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_42ddc2ddaa7b70978b2a2dfd8145f164 = L.polyline(
[[-23.5362106, -46.66702], [-23.5362623, -46.6669452], [-23.5367411, -46.6662526]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e10bc15789e15e7b5e7d6d89e0f6950b = L.polyline(
[[-23.5367411, -46.6662526], [-23.5371032, -46.6657148]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e499855aef0e9fbefd6055dac0b05930 = L.polyline(
[[-23.5371032, -46.6657148], [-23.5373149, -46.6653849], [-23.5376331, -46.6648891], [-23.5376798, -46.6648163]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_ce5ee5de7faaa327457b944ea8c6e23a = L.polyline(
[[-23.5376798, -46.6648163], [-23.5379234, -46.6649286], [-23.5380595, -46.6649913]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_809ed20cf5749f90cea614a7abab0f67 = L.polyline(
[[-23.5380595, -46.6649913], [-23.5381813, -46.6650519], [-23.5382125, -46.6650674]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_529628058f2644ae4cfa4cbb951381e1 = L.polyline(
[[-23.5382125, -46.6650674], [-23.5382983, -46.6651107]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_b319ceb5ae153e9d80b30de3eec04e33 = L.polyline(
[[-23.5382983, -46.6651107], [-23.5383311, -46.6650481], [-23.5383416, -46.6650282], [-23.538373, -46.6649799], [-23.5384065, -46.6649424], [-23.5384295, -46.6649199], [-23.5384824, -46.6648776]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c6c03463481a171b4816ef309bc161cd = L.polyline(
[[-23.5384824, -46.6648776], [-23.538586, -46.6648384], [-23.5386912, -46.664821], [-23.5388656, -46.6647989], [-23.5391605, -46.6648028]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_05ebff50d30c2bd212c37a062961c65d = L.polyline(
[[-23.5391605, -46.6648028], [-23.5391813, -46.6647982], [-23.539473, -46.6647232], [-23.5395887, -46.6647104]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_e2e103d670141a6212b477e74f37e23a = L.polyline(
[[-23.5395887, -46.6647104], [-23.5396901, -46.6646573], [-23.5398328, -46.6645763], [-23.5399597, -46.6644569]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_32e78622c60468727527457179959655 = L.polyline(
[[-23.5399597, -46.6644569], [-23.5400457, -46.6643962], [-23.5400888, -46.6643367], [-23.5401147, -46.6642648]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_9ed394c20ff8adc6d95dbf552b4ec23b = L.polyline(
[[-23.5401147, -46.6642648], [-23.5402086, -46.6643028], [-23.5402476, -46.6643183]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_4a94a9db8881f1242e579ee3dbbef043 = L.polyline(
[[-23.5402476, -46.6643183], [-23.5403186, -46.6643464], [-23.5403489, -46.6643584], [-23.5410174, -46.6646292], [-23.5410985, -46.6646634], [-23.5414938, -46.6648217]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_7454e34da599cb1ea740894c198bb766 = L.polyline(
[[-23.5414938, -46.6648217], [-23.5430417, -46.665489]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_16fc366bf687f5967ef71fb51d278d89 = L.polyline(
[[-23.5430417, -46.665489], [-23.5433806, -46.6656245], [-23.5434292, -46.6656439], [-23.5435633, -46.6656975]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_d91312d5542e4e03d14f3ef987a75dd4 = L.polyline(
[[-23.5435633, -46.6656975], [-23.5442592, -46.6659729]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_6f386c37367110f2c24fab53428e8862 = L.polyline(
[[-23.5442592, -46.6659729], [-23.5446986, -46.6660868], [-23.5448398, -46.6661229]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_7ea371b68ad7e4e47d1599e93bc10cdf = L.polyline(
[[-23.5448398, -46.6661229], [-23.5449479, -46.6661508], [-23.5449584, -46.6661535], [-23.5449744, -46.6661576], [-23.5450861, -46.6661867], [-23.5453612, -46.6662394], [-23.5453916, -46.6662408], [-23.5454564, -46.6662429]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_2fa234c60ab99453c093092242725a1f = L.polyline(
[[-23.5454564, -46.6662429], [-23.5455206, -46.6662457], [-23.5459673, -46.6662439], [-23.5460354, -46.6662431], [-23.5465098, -46.6662348]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_993296da8d2cde62c2b95e7e44a63cff = L.polyline(
[[-23.5465098, -46.6662348], [-23.5469917, -46.6662369]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_bcecdd1114064551753bd5b8a50994bf = L.polyline(
[[-23.5469917, -46.6662369], [-23.5470869, -46.6662381]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_c986af6f143f31fb171fd97839d596f7 = L.polyline(
[[-23.5470869, -46.6662381], [-23.5476432, -46.666217], [-23.5478018, -46.666211], [-23.547967, -46.6662062]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_24ebf4c91a85d28447192e4076e9da87 = L.polyline(
[[-23.547967, -46.6662062], [-23.5482629, -46.6661977], [-23.5484846, -46.6661824], [-23.5486484, -46.6661787], [-23.5493293, -46.6661817], [-23.5494091, -46.6661724]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_d31ba651b24cef66ae836dd249312009 = L.polyline(
[[-23.5494091, -46.6661724], [-23.5496611, -46.6661431], [-23.5498157, -46.6660899], [-23.5499291, -46.6660398], [-23.5500754, -46.6659539], [-23.5502726, -46.6658784], [-23.5504638, -46.66581], [-23.5506611, -46.6657531], [-23.5508504, -46.6657075]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_235647bcea27e2114424577e07eabc48 = L.polyline(
[[-23.5508504, -46.6657075], [-23.5511049, -46.6656706], [-23.5512438, -46.6656518]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_5755ba9e16f32653ef148f75462b00ff = L.polyline(
[[-23.5512438, -46.6656518], [-23.5514596, -46.6656444], [-23.5515948, -46.665678], [-23.5519551, -46.6658409]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_0a0853f3bfdffd95bd59581a190233d5 = L.polyline(
[[-23.5519551, -46.6658409], [-23.5520288, -46.665905], [-23.5520781, -46.6659553], [-23.5521599, -46.6660297], [-23.5522279, -46.6661045], [-23.552299, -46.6661809], [-23.5524984, -46.6663341], [-23.5526971, -46.6664433], [-23.5529588, -46.6665638]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_59da10edeadab35792e50738b4122070 = L.polyline(
[[-23.5529588, -46.6665638], [-23.5531684, -46.6666743]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_cf09cedeea6b14926be504e609e8332f = L.polyline(
[[-23.5531684, -46.6666743], [-23.5549727, -46.6675434]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_11349efc6becf7f55f6812d38aebe050 = L.polyline(
[[-23.5549727, -46.6675434], [-23.5551835, -46.6676482], [-23.5552565, -46.667684]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);
var poly_line_11ed106785ce0caa9c84a40d3449b22e = L.polyline(
[[-23.5552565, -46.667684], [-23.5554963, -46.6676302]],
{"bubblingMouseEvents": true, "color": "#3388ff", "dashArray": null, "dashOffset": null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "fillRule": "evenodd", "lineCap": "round", "lineJoin": "round", "noClip": false, "opacity": 1.0, "smoothFactor": 1.0, "stroke": true, "weight": 3}
).addTo(map_6b1193974ac340ea05508426703061a0);