-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcluster.html
More file actions
1138 lines (633 loc) · 41.6 KB
/
cluster.html
File metadata and controls
1138 lines (633 loc) · 41.6 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_997a0e18245e43a0bd1f4a94ac3376ab {
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_997a0e18245e43a0bd1f4a94ac3376ab" ></div>
</body>
<script>
var bounds = null;
var map_997a0e18245e43a0bd1f4a94ac3376ab = L.map(
'map_997a0e18245e43a0bd1f4a94ac3376ab', {
center: [-28.767792910930233, -52.16337499790697],
zoom: 5,
maxBounds: bounds,
layers: [],
worldCopyJump: false,
crs: L.CRS.EPSG3857,
zoomControl: true,
});
var tile_layer_766ea15afc6447c8acc339f7d6504a58 = 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_997a0e18245e43a0bd1f4a94ac3376ab);
var marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831 = L.markerClusterGroup({});
map_997a0e18245e43a0bd1f4a94ac3376ab.addLayer(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var marker_a95036b710d84e3c8838c8237e593077 = L.marker(
[-29.37620887, -51.10695392],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_793c4bae1c424fb7ab8f0149a83f18fc = L.popup({maxWidth: '300'
});
var html_86a2bf15175645fbb596059a1e90c1ea = $(`<div id="html_86a2bf15175645fbb596059a1e90c1ea" style="width: 100.0%; height: 100.0%;">101: Sicredi Pioneira RS</div>`)[0];
popup_793c4bae1c424fb7ab8f0149a83f18fc.setContent(html_86a2bf15175645fbb596059a1e90c1ea);
marker_a95036b710d84e3c8838c8237e593077.bindPopup(popup_793c4bae1c424fb7ab8f0149a83f18fc)
;
var marker_2ae52b24aa1c4ca0a9203c5bf3653406 = L.marker(
[-30.043535, -51.22262],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var icon_cc7be677049b4fd481f0f41ebfdb8b47 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_2ae52b24aa1c4ca0a9203c5bf3653406.setIcon(icon_cc7be677049b4fd481f0f41ebfdb8b47);
var popup_d80b77a8300348a2a651091dd1d4fcd2 = L.popup({maxWidth: '300'
});
var html_88ef14f844a446f2b2ee6e29fa3a8e59 = $(`<div id="html_88ef14f844a446f2b2ee6e29fa3a8e59" style="width: 100.0%; height: 100.0%;">105: Sicredi MP</div>`)[0];
popup_d80b77a8300348a2a651091dd1d4fcd2.setContent(html_88ef14f844a446f2b2ee6e29fa3a8e59);
marker_2ae52b24aa1c4ca0a9203c5bf3653406.bindPopup(popup_d80b77a8300348a2a651091dd1d4fcd2)
;
var marker_461235c40690421b81b91d48f12859a4 = L.marker(
[-30.044875, -51.229894],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var icon_e2fed6b8625141c7a9809eacdd30aa21 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_461235c40690421b81b91d48f12859a4.setIcon(icon_e2fed6b8625141c7a9809eacdd30aa21);
var popup_3da46438bf544d27bb64195d2b0c9566 = L.popup({maxWidth: '300'
});
var html_e90f3c8444504c898fb1178d4b8e8dd8 = $(`<div id="html_e90f3c8444504c898fb1178d4b8e8dd8" style="width: 100.0%; height: 100.0%;">106: Sicredi Ajuris RS</div>`)[0];
popup_3da46438bf544d27bb64195d2b0c9566.setContent(html_e90f3c8444504c898fb1178d4b8e8dd8);
marker_461235c40690421b81b91d48f12859a4.bindPopup(popup_3da46438bf544d27bb64195d2b0c9566)
;
var marker_57f0bc74d3124eca8014ffca962cd1de = L.marker(
[-29.64076289, -50.57344233],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_0577a0e11937498caae0302e2c81ffc5 = L.popup({maxWidth: '300'
});
var html_429713d0bc2341bfaad2df4e3b97dc30 = $(`<div id="html_429713d0bc2341bfaad2df4e3b97dc30" style="width: 100.0%; height: 100.0%;">109: Sicredi Nordeste RS</div>`)[0];
popup_0577a0e11937498caae0302e2c81ffc5.setContent(html_429713d0bc2341bfaad2df4e3b97dc30);
marker_57f0bc74d3124eca8014ffca962cd1de.bindPopup(popup_0577a0e11937498caae0302e2c81ffc5)
;
var marker_33f8ec633c0744d89a4e38d88cebcd95 = L.marker(
[-30.03003677, -51.22866046],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_bda9114252fc4c1a9cb271428f4fc364 = L.popup({maxWidth: '300'
});
var html_b92c828a2e244732904c98bb9b28260d = $(`<div id="html_b92c828a2e244732904c98bb9b28260d" style="width: 100.0%; height: 100.0%;">116: Sicredi União Metropolitana RS</div>`)[0];
popup_bda9114252fc4c1a9cb271428f4fc364.setContent(html_b92c828a2e244732904c98bb9b28260d);
marker_33f8ec633c0744d89a4e38d88cebcd95.bindPopup(popup_bda9114252fc4c1a9cb271428f4fc364)
;
var marker_77ae6d80dc9b46b79d896d803b92402f = L.marker(
[-29.48891444, -51.81281687],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_75a51d19d98c4942bb77a0311e23f693 = L.popup({maxWidth: '300'
});
var html_fd82f1a35b6d4c2aafb8a4729bcbc0db = $(`<div id="html_fd82f1a35b6d4c2aafb8a4729bcbc0db" style="width: 100.0%; height: 100.0%;">119: Sicredi Ouro Branco RS</div>`)[0];
popup_75a51d19d98c4942bb77a0311e23f693.setContent(html_fd82f1a35b6d4c2aafb8a4729bcbc0db);
marker_77ae6d80dc9b46b79d896d803b92402f.bindPopup(popup_75a51d19d98c4942bb77a0311e23f693)
;
var marker_3d65888665c247cbaf4c14fea9f08408 = L.marker(
[-30.045293, -51.229378],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var icon_4044e87bc7ee4b85a45325d35bf8ed6f = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_3d65888665c247cbaf4c14fea9f08408.setIcon(icon_4044e87bc7ee4b85a45325d35bf8ed6f);
var popup_39dad9ce2c4142158870e95f6ed48768 = L.popup({maxWidth: '300'
});
var html_dfd6c187d96841dfb890afd4145a94cd = $(`<div id="html_dfd6c187d96841dfb890afd4145a94cd" style="width: 100.0%; height: 100.0%;">131: Sicredi COOABCred RS</div>`)[0];
popup_39dad9ce2c4142158870e95f6ed48768.setContent(html_dfd6c187d96841dfb890afd4145a94cd);
marker_3d65888665c247cbaf4c14fea9f08408.bindPopup(popup_39dad9ce2c4142158870e95f6ed48768)
;
var marker_40396aeeb5f142d6ab2fcbfc77558841 = L.marker(
[-29.23991721, -51.87302313],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_c00ee51cface4d69bda9963442c28412 = L.popup({maxWidth: '300'
});
var html_65f558b65a6241e389dfa817d679b5ba = $(`<div id="html_65f558b65a6241e389dfa817d679b5ba" style="width: 100.0%; height: 100.0%;">136: Sicredi Região dos Vales RS</div>`)[0];
popup_c00ee51cface4d69bda9963442c28412.setContent(html_65f558b65a6241e389dfa817d679b5ba);
marker_40396aeeb5f142d6ab2fcbfc77558841.bindPopup(popup_c00ee51cface4d69bda9963442c28412)
;
var marker_f6345c21737645f5820febc4ac423fac = L.marker(
[-30.04581998, -52.89341256],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_954335206b7f456f9c73ccd390a5daaf = L.popup({maxWidth: '300'
});
var html_cefa9f32f47040d399b1dc5943774283 = $(`<div id="html_cefa9f32f47040d399b1dc5943774283" style="width: 100.0%; height: 100.0%;">155: Sicredi Centro Leste RS</div>`)[0];
popup_954335206b7f456f9c73ccd390a5daaf.setContent(html_cefa9f32f47040d399b1dc5943774283);
marker_f6345c21737645f5820febc4ac423fac.bindPopup(popup_954335206b7f456f9c73ccd390a5daaf)
;
var marker_c058c7a9950e476998ed0c735ef2deee = L.marker(
[-29.71976843, -52.42992859],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_d4e1338fbdd04cd095e85f7e16307218 = L.popup({maxWidth: '300'
});
var html_543383f196a546cf80c0ef58910b2b1c = $(`<div id="html_543383f196a546cf80c0ef58910b2b1c" style="width: 100.0%; height: 100.0%;">156: Sicredi Vale do Rio Pardo RS</div>`)[0];
popup_d4e1338fbdd04cd095e85f7e16307218.setContent(html_543383f196a546cf80c0ef58910b2b1c);
marker_c058c7a9950e476998ed0c735ef2deee.bindPopup(popup_d4e1338fbdd04cd095e85f7e16307218)
;
var marker_dabcd3e3a3064b19a9eff166ccb6fb99 = L.marker(
[-30.048956, -51.215561],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var icon_1d3aeb83f4304623be1b6e5eb31c2b81 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_dabcd3e3a3064b19a9eff166ccb6fb99.setIcon(icon_1d3aeb83f4304623be1b6e5eb31c2b81);
var popup_741c6f5f39eb4e4b8585e63d1ebba6e0 = L.popup({maxWidth: '300'
});
var html_fd9a2d0d43284768895bebebf0b310e3 = $(`<div id="html_fd9a2d0d43284768895bebebf0b310e3" style="width: 100.0%; height: 100.0%;">157: Sicredi Pol RS</div>`)[0];
popup_741c6f5f39eb4e4b8585e63d1ebba6e0.setContent(html_fd9a2d0d43284768895bebebf0b310e3);
marker_dabcd3e3a3064b19a9eff166ccb6fb99.bindPopup(popup_741c6f5f39eb4e4b8585e63d1ebba6e0)
;
var marker_77eda54b97724e209f80e86bd51d50df = L.marker(
[-29.29829681, -51.50381763],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_0a52cf31f04e4382a898ae3bacf2ea79 = L.popup({maxWidth: '300'
});
var html_74ce6e9af42e4c209549b64894df513c = $(`<div id="html_74ce6e9af42e4c209549b64894df513c" style="width: 100.0%; height: 100.0%;">167: Sicredi Serrana RS</div>`)[0];
popup_0a52cf31f04e4382a898ae3bacf2ea79.setContent(html_74ce6e9af42e4c209549b64894df513c);
marker_77eda54b97724e209f80e86bd51d50df.bindPopup(popup_0a52cf31f04e4382a898ae3bacf2ea79)
;
var marker_f2ebff9ac95140e4b1e7b6c0cba7d0e7 = L.marker(
[-29.4654544, -51.9678277],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_27c737f972f14d2f921d7d484bd1df9e = L.popup({maxWidth: '300'
});
var html_9c36ae5f6c964e368edf5282c61c6999 = $(`<div id="html_9c36ae5f6c964e368edf5282c61c6999" style="width: 100.0%; height: 100.0%;">179: Sicredi Integração RS/MG</div>`)[0];
popup_27c737f972f14d2f921d7d484bd1df9e.setContent(html_9c36ae5f6c964e368edf5282c61c6999);
marker_f2ebff9ac95140e4b1e7b6c0cba7d0e7.bindPopup(popup_27c737f972f14d2f921d7d484bd1df9e)
;
var marker_36a0f117a55f4cad963a4daae8c746aa = L.marker(
[-30.04435, -51.220672],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var icon_b763aa3dbc674994a3dd3fb8ab1ccdd3 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_36a0f117a55f4cad963a4daae8c746aa.setIcon(icon_b763aa3dbc674994a3dd3fb8ab1ccdd3);
var popup_6cad415cbfe54b58ad809c9e467bf5ad = L.popup({maxWidth: '300'
});
var html_9c721b5016b14472abd2df233d10ee94 = $(`<div id="html_9c721b5016b14472abd2df233d10ee94" style="width: 100.0%; height: 100.0%;">185: Sicredi Mil RS</div>`)[0];
popup_6cad415cbfe54b58ad809c9e467bf5ad.setContent(html_9c721b5016b14472abd2df233d10ee94);
marker_36a0f117a55f4cad963a4daae8c746aa.bindPopup(popup_6cad415cbfe54b58ad809c9e467bf5ad)
;
var marker_6396e275f16e4ebdb78db598994738f5 = L.marker(
[-29.16689901, -51.17886021],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var icon_58a1eefb332547ac91a0d08e80b23b65 = L.AwesomeMarkers.icon({
icon: 'info-sign',
iconColor: 'white',
markerColor: 'red',
prefix: 'glyphicon',
extraClasses: 'fa-rotate-0'
});
marker_6396e275f16e4ebdb78db598994738f5.setIcon(icon_58a1eefb332547ac91a0d08e80b23b65);
var popup_0745da72c6504f779564c6af586e6105 = L.popup({maxWidth: '300'
});
var html_173be45899624ce8843bccf61d8a8aa2 = $(`<div id="html_173be45899624ce8843bccf61d8a8aa2" style="width: 100.0%; height: 100.0%;">202: Sicredi Cooperucs</div>`)[0];
popup_0745da72c6504f779564c6af586e6105.setContent(html_173be45899624ce8843bccf61d8a8aa2);
marker_6396e275f16e4ebdb78db598994738f5.bindPopup(popup_0745da72c6504f779564c6af586e6105)
;
var marker_34b5df584df2480fb2acb536ec9f3bb6 = L.marker(
[-28.45990677, -52.81927949],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_bb0863b32c784d81b1bb20208eb33922 = L.popup({maxWidth: '300'
});
var html_6d45ecd812fe4a8a82d1c9e163fe7590 = $(`<div id="html_6d45ecd812fe4a8a82d1c9e163fe7590" style="width: 100.0%; height: 100.0%;">211: Sicredi Alto Jacuí RS</div>`)[0];
popup_bb0863b32c784d81b1bb20208eb33922.setContent(html_6d45ecd812fe4a8a82d1c9e163fe7590);
marker_34b5df584df2480fb2acb536ec9f3bb6.bindPopup(popup_bb0863b32c784d81b1bb20208eb33922)
;
var marker_4a3857887bbe478c8e3824510f22333a = L.marker(
[-27.63340581, -52.2758769],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_843e41bb2ebf4954b74048bef59de363 = L.popup({maxWidth: '300'
});
var html_9e58e541fd61428ebd17a3f10d0a7797 = $(`<div id="html_9e58e541fd61428ebd17a3f10d0a7797" style="width: 100.0%; height: 100.0%;">217: Sicredi Uniestados</div>`)[0];
popup_843e41bb2ebf4954b74048bef59de363.setContent(html_9e58e541fd61428ebd17a3f10d0a7797);
marker_4a3857887bbe478c8e3824510f22333a.bindPopup(popup_843e41bb2ebf4954b74048bef59de363)
;
var marker_2478770141fe4020a7c2275dd1f705d9 = L.marker(
[-28.73144514, -52.84192697],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_563b97ce4b5a43dba11d4981c9b194c4 = L.popup({maxWidth: '300'
});
var html_14b63cb6b6d44d5ba72dc2623d49e6ba = $(`<div id="html_14b63cb6b6d44d5ba72dc2623d49e6ba" style="width: 100.0%; height: 100.0%;">218: Sicredi Espumoso RS/MG</div>`)[0];
popup_563b97ce4b5a43dba11d4981c9b194c4.setContent(html_14b63cb6b6d44d5ba72dc2623d49e6ba);
marker_2478770141fe4020a7c2275dd1f705d9.bindPopup(popup_563b97ce4b5a43dba11d4981c9b194c4)
;
var marker_4e4c132580cb4df898959db4eab69beb = L.marker(
[-27.90900634, -52.2704858],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_4f498f2e062846a8a7d90e7fbfd4d18a = L.popup({maxWidth: '300'
});
var html_3b589941adab445fb425f2ac3afc3c54 = $(`<div id="html_3b589941adab445fb425f2ac3afc3c54" style="width: 100.0%; height: 100.0%;">221: Sicredi Sul Minas RS/MG</div>`)[0];
popup_4f498f2e062846a8a7d90e7fbfd4d18a.setContent(html_3b589941adab445fb425f2ac3afc3c54);
marker_4e4c132580cb4df898959db4eab69beb.bindPopup(popup_4f498f2e062846a8a7d90e7fbfd4d18a)
;
var marker_1892eab28aa74ab29c3b054158b07462 = L.marker(
[-28.44845393, -52.19677693],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_ea0d666584ab48ea90336ba03145f876 = L.popup({maxWidth: '300'
});
var html_e11c0f653ea0468d89a0ce837ca82f8f = $(`<div id="html_e11c0f653ea0468d89a0ce837ca82f8f" style="width: 100.0%; height: 100.0%;">226: Sicredi Aliança RS/SC</div>`)[0];
popup_ea0d666584ab48ea90336ba03145f876.setContent(html_e11c0f653ea0468d89a0ce837ca82f8f);
marker_1892eab28aa74ab29c3b054158b07462.bindPopup(popup_ea0d666584ab48ea90336ba03145f876)
;
var marker_5fc5ced9d3d241e5be758111a77ad4a9 = L.marker(
[-28.26176713, -52.40709509],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_44a69de03bc64ed3b858f0481f668d4e = L.popup({maxWidth: '300'
});
var html_8da095c57f794cfc9ff08c992cfe2326 = $(`<div id="html_8da095c57f794cfc9ff08c992cfe2326" style="width: 100.0%; height: 100.0%;">228: Sicredi Integração de Estados RS/SC</div>`)[0];
popup_44a69de03bc64ed3b858f0481f668d4e.setContent(html_8da095c57f794cfc9ff08c992cfe2326);
marker_5fc5ced9d3d241e5be758111a77ad4a9.bindPopup(popup_44a69de03bc64ed3b858f0481f668d4e)
;
var marker_5cc1a85026ff4d599e8e1fd226b910b5 = L.marker(
[-27.90062087, -53.31495391],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_0dd64f73e9b840e2b8e1f0004aff9f09 = L.popup({maxWidth: '300'
});
var html_e97acac64b0b42589a122a3d9a7f032b = $(`<div id="html_e97acac64b0b42589a122a3d9a7f032b" style="width: 100.0%; height: 100.0%;">229: Sicredi Grande Palmeira RS</div>`)[0];
popup_0dd64f73e9b840e2b8e1f0004aff9f09.setContent(html_e97acac64b0b42589a122a3d9a7f032b);
marker_5cc1a85026ff4d599e8e1fd226b910b5.bindPopup(popup_0dd64f73e9b840e2b8e1f0004aff9f09)
;
var marker_98cccababd7a455eb5cba3f6e97ef312 = L.marker(
[-27.47040343, -53.1685306],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_f43d26f953214cbca25169555c6494bc = L.popup({maxWidth: '300'
});
var html_587d8f4a84354066aeef85bb61798a2c = $(`<div id="html_587d8f4a84354066aeef85bb61798a2c" style="width: 100.0%; height: 100.0%;">230: Sicredi Alto Uruguai RS/Sc</div>`)[0];
popup_f43d26f953214cbca25169555c6494bc.setContent(html_587d8f4a84354066aeef85bb61798a2c);
marker_98cccababd7a455eb5cba3f6e97ef312.bindPopup(popup_f43d26f953214cbca25169555c6494bc)
;
var marker_98731ac3bdfd490395e99fdd372b470d = L.marker(
[-28.62495019, -52.87146717],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_5c4f63a0c28544cda94da52d67340f62 = L.popup({maxWidth: '300'
});
var html_4b3a34f6f1c04adf9a39f433f820eb64 = $(`<div id="html_4b3a34f6f1c04adf9a39f433f820eb64" style="width: 100.0%; height: 100.0%;">244: Sicredi Integração Rota das Terras RS</div>`)[0];
popup_5c4f63a0c28544cda94da52d67340f62.setContent(html_4b3a34f6f1c04adf9a39f433f820eb64);
marker_98731ac3bdfd490395e99fdd372b470d.bindPopup(popup_5c4f63a0c28544cda94da52d67340f62)
;
var marker_a8762439517348fbbc874ca7bcfdb994 = L.marker(
[-28.82773795, -52.50986617],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_b3f1735fc58045a5a4ec021dd85f13e9 = L.popup({maxWidth: '300'
});
var html_e18de455bc3a448b9be8d615dad88976 = $(`<div id="html_e18de455bc3a448b9be8d615dad88976" style="width: 100.0%; height: 100.0%;">247: Sicredi Botucarai RS</div>`)[0];
popup_b3f1735fc58045a5a4ec021dd85f13e9.setContent(html_e18de455bc3a448b9be8d615dad88976);
marker_a8762439517348fbbc874ca7bcfdb994.bindPopup(popup_b3f1735fc58045a5a4ec021dd85f13e9)
;
var marker_10c9ac7fa6fd4837b0d811b3fae423a6 = L.marker(
[-27.94359518, -52.92546106],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_ca9956e1f4e349c8b09dcaf2ee9c180f = L.popup({maxWidth: '300'
});
var html_819757b181d84494859ddb13d2f85630 = $(`<div id="html_819757b181d84494859ddb13d2f85630" style="width: 100.0%; height: 100.0%;">258: Sicredi Região da Produção RS/SC</div>`)[0];
popup_ca9956e1f4e349c8b09dcaf2ee9c180f.setContent(html_819757b181d84494859ddb13d2f85630);
marker_10c9ac7fa6fd4837b0d811b3fae423a6.bindPopup(popup_ca9956e1f4e349c8b09dcaf2ee9c180f)
;
var marker_428e7dfab55746df92d806a9b5cfd468 = L.marker(
[-28.36922673, -51.63532399],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_c2e6e557849f45d98aee3b7fc2cc9788 = L.popup({maxWidth: '300'
});
var html_bbee1a535c9d4a36ac98582f46edb092 = $(`<div id="html_bbee1a535c9d4a36ac98582f46edb092" style="width: 100.0%; height: 100.0%;">259: Sicredi Ibiraiaras RS/MG</div>`)[0];
popup_c2e6e557849f45d98aee3b7fc2cc9788.setContent(html_bbee1a535c9d4a36ac98582f46edb092);
marker_428e7dfab55746df92d806a9b5cfd468.bindPopup(popup_c2e6e557849f45d98aee3b7fc2cc9788)
;
var marker_036a1236b81642a88698794bed844493 = L.marker(
[-28.08417106, -52.02213253],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_3dd02ef8b243429d8ece3838ba8df554 = L.popup({maxWidth: '300'
});
var html_8a1d51c8b73d4458854baa193c71cd39 = $(`<div id="html_8a1d51c8b73d4458854baa193c71cd39" style="width: 100.0%; height: 100.0%;">268: Sicredi Altos da Serra RS/SC</div>`)[0];
popup_3dd02ef8b243429d8ece3838ba8df554.setContent(html_8a1d51c8b73d4458854baa193c71cd39);
marker_036a1236b81642a88698794bed844493.bindPopup(popup_3dd02ef8b243429d8ece3838ba8df554)
;
var marker_6f21a01676c84762944c0001bfc76de0 = L.marker(
[-27.77966022, -54.23530221],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_819dbab8caa04661afaa906792fabdaa = L.popup({maxWidth: '300'
});
var html_fe24fbecbd3b425cb8f08f6ff6ebdc80 = $(`<div id="html_fe24fbecbd3b425cb8f08f6ff6ebdc80" style="width: 100.0%; height: 100.0%;">306: Sicredi Noroeste RS</div>`)[0];
popup_819dbab8caa04661afaa906792fabdaa.setContent(html_fe24fbecbd3b425cb8f08f6ff6ebdc80);
marker_6f21a01676c84762944c0001bfc76de0.bindPopup(popup_819dbab8caa04661afaa906792fabdaa)
;
var marker_24fd54eb83944758a39bca724f94433c = L.marker(
[-28.14784088, -54.73999724],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_b571dbe6dd714906b5a80dd7cae4c780 = L.popup({maxWidth: '300'
});
var html_26ad0a2fe8b0401d976ec20215f7cde1 = $(`<div id="html_26ad0a2fe8b0401d976ec20215f7cde1" style="width: 100.0%; height: 100.0%;">307: Sicredi União RS</div>`)[0];
popup_b571dbe6dd714906b5a80dd7cae4c780.setContent(html_26ad0a2fe8b0401d976ec20215f7cde1);
marker_24fd54eb83944758a39bca724f94433c.bindPopup(popup_b571dbe6dd714906b5a80dd7cae4c780)
;
var marker_7ca98fc5b5504449860c4776bd1714f2 = L.marker(
[-27.67449261, -53.80281387],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_ea313d5de6504601a1fcec6902aa07f4 = L.popup({maxWidth: '300'
});
var html_d32ef4a983344880a9be2eaa4d901769 = $(`<div id="html_d32ef4a983344880a9be2eaa4d901769" style="width: 100.0%; height: 100.0%;">313: Sicredi Celeiro RS/SC</div>`)[0];
popup_ea313d5de6504601a1fcec6902aa07f4.setContent(html_d32ef4a983344880a9be2eaa4d901769);
marker_7ca98fc5b5504449860c4776bd1714f2.bindPopup(popup_ea313d5de6504601a1fcec6902aa07f4)
;
var marker_89e59f853924416ebf7ebf6c78aea983 = L.marker(
[-28.64244661, -53.60524076],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_e98fda4d6a084b61b2ce05ca9403acc1 = L.popup({maxWidth: '300'
});
var html_36139a9377db4926881da9c660c8368c = $(`<div id="html_36139a9377db4926881da9c660c8368c" style="width: 100.0%; height: 100.0%;">333: Sicredi Planalto RS/SC</div>`)[0];
popup_e98fda4d6a084b61b2ce05ca9403acc1.setContent(html_36139a9377db4926881da9c660c8368c);
marker_89e59f853924416ebf7ebf6c78aea983.bindPopup(popup_e98fda4d6a084b61b2ce05ca9403acc1)
;
var marker_ee9fd544e3af488d8723180fb5ad9314 = L.marker(
[-28.38853654, -53.91806684],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_9db21ed9a53c400882bf3befe1d2b3dd = L.popup({maxWidth: '300'
});
var html_75514537649e435fb0069407834d64fc = $(`<div id="html_75514537649e435fb0069407834d64fc" style="width: 100.0%; height: 100.0%;">361: Sicredi das Culturas RS</div>`)[0];
popup_9db21ed9a53c400882bf3befe1d2b3dd.setContent(html_75514537649e435fb0069407834d64fc);
marker_ee9fd544e3af488d8723180fb5ad9314.bindPopup(popup_9db21ed9a53c400882bf3befe1d2b3dd)
;
var marker_b799baba03d842a4b1714d1e8e33c09c = L.marker(
[-29.64566336, -53.25869169],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_2817185098df46f2ace60287419ed517 = L.popup({maxWidth: '300'
});
var html_06720229638a4b0ca778112226ef74e9 = $(`<div id="html_06720229638a4b0ca778112226ef74e9" style="width: 100.0%; height: 100.0%;">403: Sicredi Centro Serra RS</div>`)[0];
popup_2817185098df46f2ace60287419ed517.setContent(html_06720229638a4b0ca778112226ef74e9);
marker_b799baba03d842a4b1714d1e8e33c09c.bindPopup(popup_2817185098df46f2ace60287419ed517)
;
var marker_ad38ca802ecf4eba8823d44297a716d2 = L.marker(
[-29.6855818, -53.80867539],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_6182a8ebf52443bc9f534d0caab743ce = L.popup({maxWidth: '300'
});
var html_496f8a1ce015414c8b6aae30c2f01d55 = $(`<div id="html_496f8a1ce015414c8b6aae30c2f01d55" style="width: 100.0%; height: 100.0%;">434: Sicredi Região Centro</div>`)[0];
popup_6182a8ebf52443bc9f534d0caab743ce.setContent(html_496f8a1ce015414c8b6aae30c2f01d55);
marker_ad38ca802ecf4eba8823d44297a716d2.bindPopup(popup_6182a8ebf52443bc9f534d0caab743ce)
;
var marker_40661737fec242bb96c2726bdb5ec116 = L.marker(
[-29.19146017, -54.86907585],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_a1559197d2be4a39aa4bad3696123fb9 = L.popup({maxWidth: '300'
});
var html_fea118d850874ef6ac0165fec33a143e = $(`<div id="html_fea118d850874ef6ac0165fec33a143e" style="width: 100.0%; height: 100.0%;">437: Sicredi Vale do Jaguari RS</div>`)[0];
popup_a1559197d2be4a39aa4bad3696123fb9.setContent(html_fea118d850874ef6ac0165fec33a143e);
marker_40661737fec242bb96c2726bdb5ec116.bindPopup(popup_a1559197d2be4a39aa4bad3696123fb9)
;
var marker_c25883a0f4f24f64a94f2c21673a66d3 = L.marker(
[-29.1286369, -56.5571335],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_d4509ff8bb7f4739add0970cfe633032 = L.popup({maxWidth: '300'
});
var html_a71537608cf947a397ba33f40131a34f = $(`<div id="html_a71537608cf947a397ba33f40131a34f" style="width: 100.0%; height: 100.0%;">523: Sicredi Pampa Gaúcho</div>`)[0];
popup_d4509ff8bb7f4739add0970cfe633032.setContent(html_a71537608cf947a397ba33f40131a34f);
marker_c25883a0f4f24f64a94f2c21673a66d3.bindPopup(popup_d4509ff8bb7f4739add0970cfe633032)
;
var marker_fc4b61387be246a5b881a2327d3d175b = L.marker(
[-31.33050184, -54.10708329],
{
icon: new L.Icon.Default()
}
).addTo(marker_cluster_cc0cffdb5fe145a593431fe2ecf9d831);
var popup_9d4fc4a6cb5344cea0818a9ee2403112 = L.popup({maxWidth: '300'
});