-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcluster2.html
More file actions
1146 lines (637 loc) · 42 KB
/
cluster2.html
File metadata and controls
1146 lines (637 loc) · 42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
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.3.4/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.3.4/dist/leaflet.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css"/>
<link rel="stylesheet" href="https://rawcdn.githack.com/python-visualization/folium/master/folium/templates/leaflet.awesome.rotate.css"/>
<style>html, body {width: 100%;height: 100%;margin: 0;padding: 0;}</style>
<style>#map {position:absolute;top:0;bottom:0;right:0;left:0;}</style>
<meta name="viewport" content="width=device-width,
initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style>#map_5792e807098440a59c6d70a3dee3069a {
position: relative;
width: 100.0%;
height: 100.0%;
left: 0.0%;
top: 0.0%;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/leaflet.markercluster.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.1.0/MarkerCluster.Default.css"/>
</head>
<body>
<div class="folium-map" id="map_5792e807098440a59c6d70a3dee3069a" ></div>
</body>
<script>
var bounds = null;
var map_5792e807098440a59c6d70a3dee3069a = L.map(
'map_5792e807098440a59c6d70a3dee3069a', {
center: [-28.767792910930233, -52.16337499790697],
zoom: 5,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_e426aafc54e04c16831ba34820fdfa81 = L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
{
"attribution": null,
"detectRetina": false,
"maxNativeZoom": 18,
"maxZoom": 18,
"minZoom": 0,
"noWrap": false,
"opacity": 1,
"subdomains": "abc",
"tms": false
}).addTo(map_5792e807098440a59c6d70a3dee3069a);
var marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6 = L.markerClusterGroup({});
map_5792e807098440a59c6d70a3dee3069a.addLayer(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var marker_90c67e69c1cd45398c4ddde7565bdd63 = L.marker(
[-29.37620887, -51.10695392],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_81f9fff615df4762b4e358892efb4d9c = L.popup({maxWidth: '300'
});
var html_1257f1473fec4aa2a2dd0dfe4b105a81 = $(`<div id="html_1257f1473fec4aa2a2dd0dfe4b105a81" style="width: 100.0%; height: 100.0%;">101: Sicredi Pioneira RS</div>`)[0];
popup_81f9fff615df4762b4e358892efb4d9c.setContent(html_1257f1473fec4aa2a2dd0dfe4b105a81);
marker_90c67e69c1cd45398c4ddde7565bdd63.bindPopup(popup_81f9fff615df4762b4e358892efb4d9c)
;
var marker_6e4e2628111042cabbc38e3f56dbd171 = L.marker(
[-30.043535, -51.22262],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var icon_10bf65229ab54e628b1ada410d0dcd2d = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6e4e2628111042cabbc38e3f56dbd171.setIcon(icon_10bf65229ab54e628b1ada410d0dcd2d);
var popup_ee3d0f589942414bb5e4d7637f3956d2 = L.popup({maxWidth: '300'
});
var html_9a05be09293a4733aa600207c61c9760 = $(`<div id="html_9a05be09293a4733aa600207c61c9760" style="width: 100.0%; height: 100.0%;">105: Sicredi MP</div>`)[0];
popup_ee3d0f589942414bb5e4d7637f3956d2.setContent(html_9a05be09293a4733aa600207c61c9760);
marker_6e4e2628111042cabbc38e3f56dbd171.bindPopup(popup_ee3d0f589942414bb5e4d7637f3956d2)
;
var marker_8ea2d20600bd4829874f99b00950b419 = L.marker(
[-30.044875, -51.229894],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var icon_8ae77860e38149d784b8d29609e53994 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_8ea2d20600bd4829874f99b00950b419.setIcon(icon_8ae77860e38149d784b8d29609e53994);
var popup_1163220143c44c3090322cd37546aff1 = L.popup({maxWidth: '300'
});
var html_2be487869560448b9bd93b788b653468 = $(`<div id="html_2be487869560448b9bd93b788b653468" style="width: 100.0%; height: 100.0%;">106: Sicredi Ajuris RS</div>`)[0];
popup_1163220143c44c3090322cd37546aff1.setContent(html_2be487869560448b9bd93b788b653468);
marker_8ea2d20600bd4829874f99b00950b419.bindPopup(popup_1163220143c44c3090322cd37546aff1)
;
var marker_08e144d301754013a7bc84a02fb6bc21 = L.marker(
[-29.64076289, -50.57344233],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_55abdd7811e44520946d590b7bdf01c5 = L.popup({maxWidth: '300'
});
var html_1af3aabe5d0648ba93946732b6b6127c = $(`<div id="html_1af3aabe5d0648ba93946732b6b6127c" style="width: 100.0%; height: 100.0%;">109: Sicredi Nordeste RS</div>`)[0];
popup_55abdd7811e44520946d590b7bdf01c5.setContent(html_1af3aabe5d0648ba93946732b6b6127c);
marker_08e144d301754013a7bc84a02fb6bc21.bindPopup(popup_55abdd7811e44520946d590b7bdf01c5)
;
var marker_48053880d2f948a699e6297cceca02b7 = L.marker(
[-30.03003677, -51.22866046],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_8730276f72e741b48c49423a331ecd4f = L.popup({maxWidth: '300'
});
var html_4504bb2d47af46a7a5c96dbaffa0518d = $(`<div id="html_4504bb2d47af46a7a5c96dbaffa0518d" style="width: 100.0%; height: 100.0%;">116: Sicredi União Metropolitana RS</div>`)[0];
popup_8730276f72e741b48c49423a331ecd4f.setContent(html_4504bb2d47af46a7a5c96dbaffa0518d);
marker_48053880d2f948a699e6297cceca02b7.bindPopup(popup_8730276f72e741b48c49423a331ecd4f)
;
var marker_807c2729d18d4b58b2755d41b7e46071 = L.marker(
[-29.48891444, -51.81281687],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_b3bfdace922b405fb4f3b682eb8247b3 = L.popup({maxWidth: '300'
});
var html_b1258d68295845d68bec909caff8ed1c = $(`<div id="html_b1258d68295845d68bec909caff8ed1c" style="width: 100.0%; height: 100.0%;">119: Sicredi Ouro Branco RS</div>`)[0];
popup_b3bfdace922b405fb4f3b682eb8247b3.setContent(html_b1258d68295845d68bec909caff8ed1c);
marker_807c2729d18d4b58b2755d41b7e46071.bindPopup(popup_b3bfdace922b405fb4f3b682eb8247b3)
;
var marker_57ca53b9bdf9412d8a3d5c1f1980972f = L.marker(
[-30.045293, -51.229378],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var icon_45118ec10d4e415aa63680623703e7aa = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_57ca53b9bdf9412d8a3d5c1f1980972f.setIcon(icon_45118ec10d4e415aa63680623703e7aa);
var popup_118972c2c34343d0bebbcd875ab198f9 = L.popup({maxWidth: '300'
});
var html_b4237c231f4c41089ff6b06cf77c1c0b = $(`<div id="html_b4237c231f4c41089ff6b06cf77c1c0b" style="width: 100.0%; height: 100.0%;">131: Sicredi COOABCred RS</div>`)[0];
popup_118972c2c34343d0bebbcd875ab198f9.setContent(html_b4237c231f4c41089ff6b06cf77c1c0b);
marker_57ca53b9bdf9412d8a3d5c1f1980972f.bindPopup(popup_118972c2c34343d0bebbcd875ab198f9)
;
var marker_1f1933ea30374621a578b6f6b9d4e870 = L.marker(
[-29.23991721, -51.87302313],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_81a8a5c24b8748e2a62392217e28ceea = L.popup({maxWidth: '300'
});
var html_fd61d0316f24475c830814b0c70b4cb9 = $(`<div id="html_fd61d0316f24475c830814b0c70b4cb9" style="width: 100.0%; height: 100.0%;">136: Sicredi Região dos Vales RS</div>`)[0];
popup_81a8a5c24b8748e2a62392217e28ceea.setContent(html_fd61d0316f24475c830814b0c70b4cb9);
marker_1f1933ea30374621a578b6f6b9d4e870.bindPopup(popup_81a8a5c24b8748e2a62392217e28ceea)
;
var marker_8bf966f9948e4755a5bb88309ad5d71f = L.marker(
[-30.04581998, -52.89341256],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_23a91e26a70a4492ae13e5b391252496 = L.popup({maxWidth: '300'
});
var html_5780a364c1874101b9c64d93ae2c750f = $(`<div id="html_5780a364c1874101b9c64d93ae2c750f" style="width: 100.0%; height: 100.0%;">155: Sicredi Centro Leste RS</div>`)[0];
popup_23a91e26a70a4492ae13e5b391252496.setContent(html_5780a364c1874101b9c64d93ae2c750f);
marker_8bf966f9948e4755a5bb88309ad5d71f.bindPopup(popup_23a91e26a70a4492ae13e5b391252496)
;
var marker_93c067fb266c44b592c981ae12d86d13 = L.marker(
[-29.71976843, -52.42992859],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_92f62e74a0de43078c4acdd6132e35cb = L.popup({maxWidth: '300'
});
var html_200df12925ea44d69d137e2ae5ce2e3c = $(`<div id="html_200df12925ea44d69d137e2ae5ce2e3c" style="width: 100.0%; height: 100.0%;">156: Sicredi Vale do Rio Pardo RS</div>`)[0];
popup_92f62e74a0de43078c4acdd6132e35cb.setContent(html_200df12925ea44d69d137e2ae5ce2e3c);
marker_93c067fb266c44b592c981ae12d86d13.bindPopup(popup_92f62e74a0de43078c4acdd6132e35cb)
;
var marker_44734c289f9c42da85acd5dc1dfb838c = L.marker(
[-30.048956, -51.215561],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var icon_7392138d22bc458782c4ec8797c3283c = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_44734c289f9c42da85acd5dc1dfb838c.setIcon(icon_7392138d22bc458782c4ec8797c3283c);
var popup_541c6114927b402193d977c0e1092981 = L.popup({maxWidth: '300'
});
var html_c5ff3ca7496c42ae92e52e01ce1288ca = $(`<div id="html_c5ff3ca7496c42ae92e52e01ce1288ca" style="width: 100.0%; height: 100.0%;">157: Sicredi Pol RS</div>`)[0];
popup_541c6114927b402193d977c0e1092981.setContent(html_c5ff3ca7496c42ae92e52e01ce1288ca);
marker_44734c289f9c42da85acd5dc1dfb838c.bindPopup(popup_541c6114927b402193d977c0e1092981)
;
var marker_4aabab570d10438ab1e28bb4d7f65d1f = L.marker(
[-29.29829681, -51.50381763],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_5653239f22aa4de5806af042c98e0076 = L.popup({maxWidth: '300'
});
var html_91173dc20f574464882822a3f6572955 = $(`<div id="html_91173dc20f574464882822a3f6572955" style="width: 100.0%; height: 100.0%;">167: Sicredi Serrana RS</div>`)[0];
popup_5653239f22aa4de5806af042c98e0076.setContent(html_91173dc20f574464882822a3f6572955);
marker_4aabab570d10438ab1e28bb4d7f65d1f.bindPopup(popup_5653239f22aa4de5806af042c98e0076)
;
var marker_c3cbac255c1c4797baceb3b9f5fc8482 = L.marker(
[-29.4654544, -51.9678277],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_1edcb99a5fbf45cd81280efaa777bf3a = L.popup({maxWidth: '300'
});
var html_6f94f5cee8cd4fc3b6cc1beea16f9b65 = $(`<div id="html_6f94f5cee8cd4fc3b6cc1beea16f9b65" style="width: 100.0%; height: 100.0%;">179: Sicredi Integração RS/MG</div>`)[0];
popup_1edcb99a5fbf45cd81280efaa777bf3a.setContent(html_6f94f5cee8cd4fc3b6cc1beea16f9b65);
marker_c3cbac255c1c4797baceb3b9f5fc8482.bindPopup(popup_1edcb99a5fbf45cd81280efaa777bf3a)
;
var marker_d999419b344d4fdba09658a38cf9c1e4 = L.marker(
[-30.04435, -51.220672],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var icon_fee70371546c4f2a917008ce20092c27 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_d999419b344d4fdba09658a38cf9c1e4.setIcon(icon_fee70371546c4f2a917008ce20092c27);
var popup_120686ef35e642f3a8df34dcbfcdb78b = L.popup({maxWidth: '300'
});
var html_7071cfda0b984f27ab4080dfb94d50a7 = $(`<div id="html_7071cfda0b984f27ab4080dfb94d50a7" style="width: 100.0%; height: 100.0%;">185: Sicredi Mil RS</div>`)[0];
popup_120686ef35e642f3a8df34dcbfcdb78b.setContent(html_7071cfda0b984f27ab4080dfb94d50a7);
marker_d999419b344d4fdba09658a38cf9c1e4.bindPopup(popup_120686ef35e642f3a8df34dcbfcdb78b)
;
var marker_c18ead366cf149ec8e6310d0c82b7f64 = L.marker(
[-29.16689901, -51.17886021],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var icon_90e4bdcd73f246c2990a0ec690cc1043 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_c18ead366cf149ec8e6310d0c82b7f64.setIcon(icon_90e4bdcd73f246c2990a0ec690cc1043);
var popup_b93c3283e10241499896295810562cb7 = L.popup({maxWidth: '300'
});
var html_6ffabe9591034daaa5402d624235bd87 = $(`<div id="html_6ffabe9591034daaa5402d624235bd87" style="width: 100.0%; height: 100.0%;">202: Sicredi Cooperucs</div>`)[0];
popup_b93c3283e10241499896295810562cb7.setContent(html_6ffabe9591034daaa5402d624235bd87);
marker_c18ead366cf149ec8e6310d0c82b7f64.bindPopup(popup_b93c3283e10241499896295810562cb7)
;
var marker_0dda841e8cc44c47851e57315212d4b0 = L.marker(
[-28.45990677, -52.81927949],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_eedc72c6426b4b50bfc6c4689c297eab = L.popup({maxWidth: '300'
});
var html_3f0994b5b30f4e2eb33185b50163040c = $(`<div id="html_3f0994b5b30f4e2eb33185b50163040c" style="width: 100.0%; height: 100.0%;">211: Sicredi Alto Jacuí RS</div>`)[0];
popup_eedc72c6426b4b50bfc6c4689c297eab.setContent(html_3f0994b5b30f4e2eb33185b50163040c);
marker_0dda841e8cc44c47851e57315212d4b0.bindPopup(popup_eedc72c6426b4b50bfc6c4689c297eab)
;
var marker_b679bb380d044bbdaf422043dfdad721 = L.marker(
[-27.63340581, -52.2758769],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_32ab1e88299e4cce8b407a0665b15d97 = L.popup({maxWidth: '300'
});
var html_d86f3696bc274d4aa4606f81e1ed78e8 = $(`<div id="html_d86f3696bc274d4aa4606f81e1ed78e8" style="width: 100.0%; height: 100.0%;">217: Sicredi Uniestados</div>`)[0];
popup_32ab1e88299e4cce8b407a0665b15d97.setContent(html_d86f3696bc274d4aa4606f81e1ed78e8);
marker_b679bb380d044bbdaf422043dfdad721.bindPopup(popup_32ab1e88299e4cce8b407a0665b15d97)
;
var marker_842892e5cbc84956b9e706708dbdef96 = L.marker(
[-28.73144514, -52.84192697],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_fa2ab5e36ab148b6b02a14ca4aac22c2 = L.popup({maxWidth: '300'
});
var html_fcf4f027c2f94ab3952c67278885a16c = $(`<div id="html_fcf4f027c2f94ab3952c67278885a16c" style="width: 100.0%; height: 100.0%;">218: Sicredi Espumoso RS/MG</div>`)[0];
popup_fa2ab5e36ab148b6b02a14ca4aac22c2.setContent(html_fcf4f027c2f94ab3952c67278885a16c);
marker_842892e5cbc84956b9e706708dbdef96.bindPopup(popup_fa2ab5e36ab148b6b02a14ca4aac22c2)
;
var marker_15eeecbde536470fbd3ef0e7bfc11a28 = L.marker(
[-27.90900634, -52.2704858],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_ec2830ec7f1b4458a72538d8975ffea4 = L.popup({maxWidth: '300'
});
var html_1ef8d0f41901403981bbeda0f74f4344 = $(`<div id="html_1ef8d0f41901403981bbeda0f74f4344" style="width: 100.0%; height: 100.0%;">221: Sicredi Sul Minas RS/MG</div>`)[0];
popup_ec2830ec7f1b4458a72538d8975ffea4.setContent(html_1ef8d0f41901403981bbeda0f74f4344);
marker_15eeecbde536470fbd3ef0e7bfc11a28.bindPopup(popup_ec2830ec7f1b4458a72538d8975ffea4)
;
var marker_a13aea810ddb4a8c8c1336bb2b64946d = L.marker(
[-28.44845393, -52.19677693],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_6744169e38774f2db7f80a00293b9981 = L.popup({maxWidth: '300'
});
var html_7d25fd997e954b7a9395a3f8b77459bb = $(`<div id="html_7d25fd997e954b7a9395a3f8b77459bb" style="width: 100.0%; height: 100.0%;">226: Sicredi Aliança RS/SC</div>`)[0];
popup_6744169e38774f2db7f80a00293b9981.setContent(html_7d25fd997e954b7a9395a3f8b77459bb);
marker_a13aea810ddb4a8c8c1336bb2b64946d.bindPopup(popup_6744169e38774f2db7f80a00293b9981)
;
var marker_e7b16246d92645cfb2cab30ef154678e = L.marker(
[-28.26176713, -52.40709509],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_b5842226b9d14ae0a35d294361bffdf6 = L.popup({maxWidth: '300'
});
var html_48dc9427baaa44c3ab6ffea5c51184f4 = $(`<div id="html_48dc9427baaa44c3ab6ffea5c51184f4" style="width: 100.0%; height: 100.0%;">228: Sicredi Integração de Estados RS/SC</div>`)[0];
popup_b5842226b9d14ae0a35d294361bffdf6.setContent(html_48dc9427baaa44c3ab6ffea5c51184f4);
marker_e7b16246d92645cfb2cab30ef154678e.bindPopup(popup_b5842226b9d14ae0a35d294361bffdf6)
;
var marker_f4f6240161004fb5842b6f24a624f5ff = L.marker(
[-27.90062087, -53.31495391],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_40bf9d8f8ac04db983a844c678fa6836 = L.popup({maxWidth: '300'
});
var html_f2361f3db37246e0bbe6336e3362a961 = $(`<div id="html_f2361f3db37246e0bbe6336e3362a961" style="width: 100.0%; height: 100.0%;">229: Sicredi Grande Palmeira RS</div>`)[0];
popup_40bf9d8f8ac04db983a844c678fa6836.setContent(html_f2361f3db37246e0bbe6336e3362a961);
marker_f4f6240161004fb5842b6f24a624f5ff.bindPopup(popup_40bf9d8f8ac04db983a844c678fa6836)
;
var marker_64552dfbe26848d2971c5c14f479b52c = L.marker(
[-27.47040343, -53.1685306],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_ecc4e74c2dde4549914ae5e14f7566f0 = L.popup({maxWidth: '300'
});
var html_9b8936c1fa32463594a987c20f9973c2 = $(`<div id="html_9b8936c1fa32463594a987c20f9973c2" style="width: 100.0%; height: 100.0%;">230: Sicredi Alto Uruguai RS/Sc</div>`)[0];
popup_ecc4e74c2dde4549914ae5e14f7566f0.setContent(html_9b8936c1fa32463594a987c20f9973c2);
marker_64552dfbe26848d2971c5c14f479b52c.bindPopup(popup_ecc4e74c2dde4549914ae5e14f7566f0)
;
var marker_8b8d4b9a85f24252b760441c2dfb5af8 = L.marker(
[-28.62495019, -52.87146717],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_34a4856a76da4dc29f2bce15337d3e0f = L.popup({maxWidth: '300'
});
var html_290a180dfa3e41ca9e25e0b5056556bd = $(`<div id="html_290a180dfa3e41ca9e25e0b5056556bd" style="width: 100.0%; height: 100.0%;">244: Sicredi Integração Rota das Terras RS</div>`)[0];
popup_34a4856a76da4dc29f2bce15337d3e0f.setContent(html_290a180dfa3e41ca9e25e0b5056556bd);
marker_8b8d4b9a85f24252b760441c2dfb5af8.bindPopup(popup_34a4856a76da4dc29f2bce15337d3e0f)
;
var marker_93a59abcff3b4f27b48aa89d7031cb54 = L.marker(
[-28.82773795, -52.50986617],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_5f3cb634c1c5456583a2b4aeb7d2f391 = L.popup({maxWidth: '300'
});
var html_3cd8c30d110741699334d3d136385d62 = $(`<div id="html_3cd8c30d110741699334d3d136385d62" style="width: 100.0%; height: 100.0%;">247: Sicredi Botucarai RS</div>`)[0];
popup_5f3cb634c1c5456583a2b4aeb7d2f391.setContent(html_3cd8c30d110741699334d3d136385d62);
marker_93a59abcff3b4f27b48aa89d7031cb54.bindPopup(popup_5f3cb634c1c5456583a2b4aeb7d2f391)
;
var marker_ac38cc84b24949a9b8526e9a8cbbb96a = L.marker(
[-27.94359518, -52.92546106],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_5288a47d7cac40289a4a35e452086334 = L.popup({maxWidth: '300'
});
var html_7735f4ef4d424df8aded038e1035f3d5 = $(`<div id="html_7735f4ef4d424df8aded038e1035f3d5" style="width: 100.0%; height: 100.0%;">258: Sicredi Região da Produção RS/SC</div>`)[0];
popup_5288a47d7cac40289a4a35e452086334.setContent(html_7735f4ef4d424df8aded038e1035f3d5);
marker_ac38cc84b24949a9b8526e9a8cbbb96a.bindPopup(popup_5288a47d7cac40289a4a35e452086334)
;
var marker_fe1450dfcd294cf3b307e953654d9372 = L.marker(
[-28.36922673, -51.63532399],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_85e891fbe1af466c9781116ebe59fcf8 = L.popup({maxWidth: '300'
});
var html_34c29c52f757492197782c57ca08da72 = $(`<div id="html_34c29c52f757492197782c57ca08da72" style="width: 100.0%; height: 100.0%;">259: Sicredi Ibiraiaras RS/MG</div>`)[0];
popup_85e891fbe1af466c9781116ebe59fcf8.setContent(html_34c29c52f757492197782c57ca08da72);
marker_fe1450dfcd294cf3b307e953654d9372.bindPopup(popup_85e891fbe1af466c9781116ebe59fcf8)
;
var marker_5fd33526d5014159a765e70632ed023a = L.marker(
[-28.08417106, -52.02213253],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_d56f62ec3c3b4e929be048941534d455 = L.popup({maxWidth: '300'
});
var html_e5fd3afffb56461a83f215e1734f8b38 = $(`<div id="html_e5fd3afffb56461a83f215e1734f8b38" style="width: 100.0%; height: 100.0%;">268: Sicredi Altos da Serra RS/SC</div>`)[0];
popup_d56f62ec3c3b4e929be048941534d455.setContent(html_e5fd3afffb56461a83f215e1734f8b38);
marker_5fd33526d5014159a765e70632ed023a.bindPopup(popup_d56f62ec3c3b4e929be048941534d455)
;
var marker_ef8435834d894aad96e4173f6fa8aeb1 = L.marker(
[-27.77966022, -54.23530221],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_c629fa6ec68a4ba5b79bc8b88ac0bfbf = L.popup({maxWidth: '300'
});
var html_2e1d704bb5504f8ba743579371d2ae9d = $(`<div id="html_2e1d704bb5504f8ba743579371d2ae9d" style="width: 100.0%; height: 100.0%;">306: Sicredi Noroeste RS</div>`)[0];
popup_c629fa6ec68a4ba5b79bc8b88ac0bfbf.setContent(html_2e1d704bb5504f8ba743579371d2ae9d);
marker_ef8435834d894aad96e4173f6fa8aeb1.bindPopup(popup_c629fa6ec68a4ba5b79bc8b88ac0bfbf)
;
var marker_5f8098614237465989bd34a2813f0d1c = L.marker(
[-28.14784088, -54.73999724],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_c49914ea65654a72b59338e93f43de12 = L.popup({maxWidth: '300'
});
var html_8c385a1a749f4493bbe3f90cc58b817b = $(`<div id="html_8c385a1a749f4493bbe3f90cc58b817b" style="width: 100.0%; height: 100.0%;">307: Sicredi União RS</div>`)[0];
popup_c49914ea65654a72b59338e93f43de12.setContent(html_8c385a1a749f4493bbe3f90cc58b817b);
marker_5f8098614237465989bd34a2813f0d1c.bindPopup(popup_c49914ea65654a72b59338e93f43de12)
;
var marker_5ab51c3f3d934d7e94abf1bfa4c3a760 = L.marker(
[-27.67449261, -53.80281387],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_0ccfe9f8b2c9487980100bdcf370565e = L.popup({maxWidth: '300'
});
var html_29bc0018114742369f832acf8e6783db = $(`<div id="html_29bc0018114742369f832acf8e6783db" style="width: 100.0%; height: 100.0%;">313: Sicredi Celeiro RS/SC</div>`)[0];
popup_0ccfe9f8b2c9487980100bdcf370565e.setContent(html_29bc0018114742369f832acf8e6783db);
marker_5ab51c3f3d934d7e94abf1bfa4c3a760.bindPopup(popup_0ccfe9f8b2c9487980100bdcf370565e)
;
var marker_6ab64561088849889f9fb03cbf06383c = L.marker(
[-28.64244661, -53.60524076],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_09415cdd36dd40c88a8a58bc26ab47a4 = L.popup({maxWidth: '300'
});
var html_d92f93df499e4078be65e49750c010c1 = $(`<div id="html_d92f93df499e4078be65e49750c010c1" style="width: 100.0%; height: 100.0%;">333: Sicredi Planalto RS/SC</div>`)[0];
popup_09415cdd36dd40c88a8a58bc26ab47a4.setContent(html_d92f93df499e4078be65e49750c010c1);
marker_6ab64561088849889f9fb03cbf06383c.bindPopup(popup_09415cdd36dd40c88a8a58bc26ab47a4)
;
var marker_741d610ec12f40cf9eed7bd1340ab104 = L.marker(
[-28.38853654, -53.91806684],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_ce9d8f55972a45528b9368f4d6f07ee9 = L.popup({maxWidth: '300'
});
var html_17d846199dc644f8afe837c26ee49899 = $(`<div id="html_17d846199dc644f8afe837c26ee49899" style="width: 100.0%; height: 100.0%;">361: Sicredi das Culturas RS</div>`)[0];
popup_ce9d8f55972a45528b9368f4d6f07ee9.setContent(html_17d846199dc644f8afe837c26ee49899);
marker_741d610ec12f40cf9eed7bd1340ab104.bindPopup(popup_ce9d8f55972a45528b9368f4d6f07ee9)
;
var marker_02f192ad50054aeabf78d8c7444ec931 = L.marker(
[-29.64566336, -53.25869169],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_42887d79521a40c4b9cfe489b4430bc8 = L.popup({maxWidth: '300'
});
var html_4d4bbe27a237475d988a7c66bf1e9cdc = $(`<div id="html_4d4bbe27a237475d988a7c66bf1e9cdc" style="width: 100.0%; height: 100.0%;">403: Sicredi Centro Serra RS</div>`)[0];
popup_42887d79521a40c4b9cfe489b4430bc8.setContent(html_4d4bbe27a237475d988a7c66bf1e9cdc);
marker_02f192ad50054aeabf78d8c7444ec931.bindPopup(popup_42887d79521a40c4b9cfe489b4430bc8)
;
var marker_9fee47291243468590e533035a302b51 = L.marker(
[-29.6855818, -53.80867539],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_ab6d125332934e90ad9abda9d97b5836 = L.popup({maxWidth: '300'
});
var html_e929e79e994b4908bb0161e7cb155834 = $(`<div id="html_e929e79e994b4908bb0161e7cb155834" style="width: 100.0%; height: 100.0%;">434: Sicredi Região Centro</div>`)[0];
popup_ab6d125332934e90ad9abda9d97b5836.setContent(html_e929e79e994b4908bb0161e7cb155834);
marker_9fee47291243468590e533035a302b51.bindPopup(popup_ab6d125332934e90ad9abda9d97b5836)
;
var marker_3b75e59df6814e98ba81c908095b7fe8 = L.marker(
[-29.19146017, -54.86907585],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_5473ecfd98e2438890360a77170af42d = L.popup({maxWidth: '300'
});
var html_df627fd39b644a0fa63459d1cda61171 = $(`<div id="html_df627fd39b644a0fa63459d1cda61171" style="width: 100.0%; height: 100.0%;">437: Sicredi Vale do Jaguari RS</div>`)[0];
popup_5473ecfd98e2438890360a77170af42d.setContent(html_df627fd39b644a0fa63459d1cda61171);
marker_3b75e59df6814e98ba81c908095b7fe8.bindPopup(popup_5473ecfd98e2438890360a77170af42d)
;
var marker_33e8dc0c2fe4461ea3c231272ab07ee2 = L.marker(
[-29.1286369, -56.5571335],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_b581ca5add5f4a89a0ed45138513f77f = L.popup({maxWidth: '300'
});
var html_622e03d0d12748ab80f5ca414a6e7f23 = $(`<div id="html_622e03d0d12748ab80f5ca414a6e7f23" style="width: 100.0%; height: 100.0%;">523: Sicredi Pampa Gaúcho</div>`)[0];
popup_b581ca5add5f4a89a0ed45138513f77f.setContent(html_622e03d0d12748ab80f5ca414a6e7f23);
marker_33e8dc0c2fe4461ea3c231272ab07ee2.bindPopup(popup_b581ca5add5f4a89a0ed45138513f77f)
;
var marker_03bdd8652db34d4cb3c85b5a05f79034 = L.marker(
[-31.33050184, -54.10708329],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_8fbb789303de4b14960e65ad6a8e3ea6);
var popup_2790d7be0e824d6ea8e49bbb9494ad3b = L.popup({maxWidth: '300'
});