-
Notifications
You must be signed in to change notification settings - Fork 1
/
map2.html
7099 lines (6416 loc) · 200 KB
/
map2.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_PREFER_CANVAS = false; L_NO_TOUCH = false; L_DISABLE_3D = false;</script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet@1.2.0/dist/leaflet.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css" />
<link rel="stylesheet" href="https://rawgit.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css" />
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<style> #map_fb05d3b4a6fe4325bd94ab8141bc6057 {
position : relative;
width : 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
</head>
<body>
<div class="folium-map" id="map_fb05d3b4a6fe4325bd94ab8141bc6057" ></div>
</body>
<script>
var bounds = null;
var map_fb05d3b4a6fe4325bd94ab8141bc6057 = L.map(
'map_fb05d3b4a6fe4325bd94ab8141bc6057',
{center: [-23.51569424643243,-46.75416811946331],
zoom: 10,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857
});
var tile_layer_1574d143c9ed41bc90c072028d936365 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxZoom": 18,
"minZoom": 1,
"noWrap": false,
"subdomains": "abc"
}
).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_d65d30365af04052bb17c186124c9a48 = L.polyline(
[[-23.498030555555555, -46.80193888888889], [-23.498036111111112, -46.80192777777778]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_bebf5894ff4246b79232dcff386c3525 = L.polyline(
[[-23.498036111111112, -46.80192777777778], [-23.49802777777778, -46.80193888888889]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_de3eb9a05e474146a37cc2981df9003e = L.polyline(
[[-23.498036111111112, -46.80192777777778], [-23.49802777777778, -46.80193888888889]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_2e25f1126e31485cbddf5cf3d92e9d7f = L.polyline(
[[-23.498030555555555, -46.80193888888889], [-23.49805, -46.80193888888889]],
{
"bubblingMouseEvents": true,
"color": "orange",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_d81bf55303944f54a99a86fb9867b5c4 = L.polyline(
[[-23.498036111111112, -46.80192777777778], [-23.49805, -46.80193888888889]],
{
"bubblingMouseEvents": true,
"color": "brown",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "brown",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_e0cb96f174de43c1ae7d00e07727a6c3 = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.49803888888889, -46.80192777777778]],
{
"bubblingMouseEvents": true,
"color": "yellow",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "yellow",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_266d02ae790e42c2bee056357104cb4e = L.polyline(
[[-23.49803888888889, -46.80192777777778], [-23.498036111111112, -46.80195]],
{
"bubblingMouseEvents": true,
"color": "white",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "white",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_0c3af7bfcee84dba8b51160ea9e65152 = L.polyline(
[[-23.49803888888889, -46.80192777777778], [-23.498036111111112, -46.80195]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_60c217577b834b909633a6d47bbdee75 = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.49805277777778, -46.80192777777778]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_06e9cd90886d4f149a4422c4ca548787 = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.49805277777778, -46.80192777777778]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_50c1f7563cc94dd1b07f98af729028c4 = L.polyline(
[[-23.498036111111112, -46.80195], [-23.49805277777778, -46.80192777777778]],
{
"bubblingMouseEvents": true,
"color": "orange",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_c9e74111f173409c96da057fcae7ff48 = L.polyline(
[[-23.49805277777778, -46.80192777777778], [-23.49805277777778, -46.80192777777778]],
{
"bubblingMouseEvents": true,
"color": "brown",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "brown",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_1dd70fb97abd407594bd023020cb66f4 = L.polyline(
[[-23.498036111111112, -46.80195], [-23.498598098754883, -46.80044174194336]],
{
"bubblingMouseEvents": true,
"color": "yellow",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "yellow",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_261945d7788541ca8eab3081ae02aabb = L.polyline(
[[-23.498019444444445, -46.80192777777778], [-23.498598098754883, -46.80044174194336]],
{
"bubblingMouseEvents": true,
"color": "white",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "white",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_cb474dc0dfea4ad884da8db244376057 = L.polyline(
[[-23.498019444444445, -46.80192777777778], [-23.50041111111111, -46.79513333333333]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_592f41cdbafc4f0cb1e69d14aa21b637 = L.polyline(
[[-23.4980525970459, -46.80133819580078], [-23.510303497314453, -46.7881965637207]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_17d19081c55f45faa33f077f0e8738c3 = L.polyline(
[[-23.514244079589844, -46.78767395019531], [-23.516170501708984, -46.78543472290039]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_d4f6458e4b834f91a769b96dcf433d5c = L.polyline(
[[-23.510303497314453, -46.7881965637207], [-23.516170501708984, -46.78543472290039]],
{
"bubblingMouseEvents": true,
"color": "orange",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_27a4df5fad114c7f9c5d0bf2c9aac8cd = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.516170501708984, -46.78543472290039]],
{
"bubblingMouseEvents": true,
"color": "brown",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "brown",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_9d15890e7a094811a1dc19ea8496f8d4 = L.polyline(
[[-23.53126388888889, -46.73902777777778], [-23.512460708618164, -46.76029586791992]],
{
"bubblingMouseEvents": true,
"color": "yellow",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "yellow",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_d38745cf9a174f699f427c875fcf3ef3 = L.polyline(
[[-23.50041111111111, -46.79513333333333], [-23.512460708618164, -46.76029586791992]],
{
"bubblingMouseEvents": true,
"color": "white",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "white",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_cb3e2279d1624f41bb0336f278db56a8 = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.512460708618164, -46.76029586791992]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_913f5e18c69d4e86931c9f1f9f2519d3 = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.518329620361328, -46.7736701965332]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_67dee584254f406db68ca03adc873f78 = L.polyline(
[[-23.5163516998291, -46.77474594116211], [-23.518329620361328, -46.7736701965332]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_14088389124f45f1adee28c99213b795 = L.polyline(
[[-23.514244079589844, -46.78767395019531], [-23.515350341796875, -46.76524353027344]],
{
"bubblingMouseEvents": true,
"color": "orange",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_7fe2f9164cf549bebd344843c958163b = L.polyline(
[[-23.516170501708984, -46.78543472290039], [-23.515350341796875, -46.76524353027344]],
{
"bubblingMouseEvents": true,
"color": "brown",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "brown",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_a8d107fd3dde4a018cd3828370402126 = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.515350341796875, -46.76524353027344]],
{
"bubblingMouseEvents": true,
"color": "yellow",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "yellow",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_243105a69984497eb8d752cd7cebda5a = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.515350341796875, -46.76524353027344]],
{
"bubblingMouseEvents": true,
"color": "white",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "white",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_054e4badad314133931f2c9d2cf16eb1 = L.polyline(
[[-23.512460708618164, -46.76029586791992], [-23.513261795043945, -46.762020111083984]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_4fc2c229679a4689b9e64bb89860db58 = L.polyline(
[[-23.515350341796875, -46.76524353027344], [-23.513261795043945, -46.762020111083984]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_a26ea633b61640baa5d90007a253c862 = L.polyline(
[[-23.518329620361328, -46.7736701965332], [-23.52074432373047, -46.75153350830078]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_ee37da77e5a34f54a794c514da61074f = L.polyline(
[[-23.513261795043945, -46.762020111083984], [-23.52051544189453, -46.749610900878906]],
{
"bubblingMouseEvents": true,
"color": "orange",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_e767fba5b3014c29b291bbc1794348fb = L.polyline(
[[-23.498044444444446, -46.80192777777778], [-23.52051544189453, -46.749610900878906]],
{
"bubblingMouseEvents": true,
"color": "brown",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "brown",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_ff123b32adf743129f2bfaf77f34287b = L.polyline(
[[-23.525677777777776, -46.741144444444444], [-23.525677777777776, -46.741144444444444]],
{
"bubblingMouseEvents": true,
"color": "yellow",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "yellow",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_57fbc1295de94e36b6e2f562cb999283 = L.polyline(
[[-23.51641273498535, -46.75677490234375], [-23.530120849609375, -46.739479064941406]],
{
"bubblingMouseEvents": true,
"color": "white",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "white",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_3eee96e3535842ab954bd7dd794d02c7 = L.polyline(
[[-23.52074432373047, -46.75153350830078], [-23.530485153198242, -46.738067626953125]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_f100c182a7e947259380443d3dc6719b = L.polyline(
[[-23.510303497314453, -46.7881965637207], [-23.530485153198242, -46.738067626953125]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_b9edf5d2b2b54400bb60f85e07a95bc4 = L.polyline(
[[-23.512460708618164, -46.76029586791992], [-23.526378631591797, -46.73904037475586]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_87f26fc4e65d4dcab567e9b41fcd578c = L.polyline(
[[-23.52074432373047, -46.75153350830078], [-23.521085739135742, -46.72722244262695]],
{
"bubblingMouseEvents": true,
"color": "orange",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "orange",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_a85c773f0ea04866bba580add3b2e402 = L.polyline(
[[-23.521692276000977, -46.72188186645508], [-23.522575, -46.71822777777778]],
{
"bubblingMouseEvents": true,
"color": "brown",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "brown",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_e78b2fc5979d4eaab58a046847ab2e88 = L.polyline(
[[-23.52136993408203, -46.732704162597656], [-23.522575, -46.71822777777778]],
{
"bubblingMouseEvents": true,
"color": "yellow",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "yellow",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_6067ad80a2094a50b38e7b67a25c3d66 = L.polyline(
[[-23.530485153198242, -46.738067626953125], [-23.522575, -46.71822777777778]],
{
"bubblingMouseEvents": true,
"color": "white",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "white",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",
"lineJoin": "round",
"noClip": false,
"opacity": 1.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_b789766580fd448798962439d23ef8df = L.polyline(
[[-23.522575, -46.71822777777778], [-23.525615692138672, -46.712242126464844]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_23354b2b10964cab98bce333b79d8b0e = L.polyline(
[[-23.525615692138672, -46.712242126464844], [-23.524682998657227, -46.70822525024414]],
{
"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.0,
"smoothFactor": 1.0,
"stroke": true,
"weight": 1
}).addTo(map_fb05d3b4a6fe4325bd94ab8141bc6057);
var poly_line_50dd685af746413abf4999054b287142 = L.polyline(
[[-23.527650833129883, -46.73991012573242], [-23.520334243774414, -46.7086296081543]],
{
"bubblingMouseEvents": true,
"color": "red",
"dashArray": null,
"dashOffset": null,
"fill": false,
"fillColor": "red",
"fillOpacity": 0.2,
"fillRule": "evenodd",
"lineCap": "round",