-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlista-de-polos.kml
1778 lines (1733 loc) · 73.4 KB
/
lista-de-polos.kml
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
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<!--
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
SEMPRE QUE FOR ACRESCENTAR NOVOS POLOS, IR ATÉ AS ÚLTIMAS LINHAS
-->
<Document>
<name>NOVO CAMPUS EAD</name>
<description>Polos de Apoio Presencial</description>
<Style id="icon-ci-1-normal">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>images/icon-1.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>0</scale>
</LabelStyle>
</Style>
<Style id="icon-ci-1-highlight">
<IconStyle>
<scale>1.1</scale>
<Icon>
<href>images/icon-1.png</href>
</Icon>
</IconStyle>
<LabelStyle>
<scale>1.1</scale>
</LabelStyle>
</Style>
<StyleMap id="icon-ci-1">
<Pair>
<key>normal</key>
<styleUrl>#icon-ci-1-normal</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#icon-ci-1-highlight</styleUrl>
</Pair>
</StyleMap>
<Folder>
<name>POLOS FASE I</name>
<Placemark>
<name>POLO ALTAMIRA - PA</name>
<description>
Endereço: Travessa Agrário Cavalcante, 1120, Sudam I, Altamira, PA
Telefone: (93) 3515-2414 / (93) 3515-3995
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/altamira
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-52.2175358,-3.204323,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO BAURU - SP</name>
<description>
Endereço: Rua Antônio dos Reis, 8-43 – Higienópolis – CEP: 17.013-024 – Bauru – SP
Telefone: (14) 3223-6791
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/bauru
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-49.0593889,-22.3261846,0
</coordinates>
</Point>
</Placemark>
<!--
<Placemark>
<name>POLO BELO HORIZONTE - MG</name>
<description>
Endereço: Avenida Amazonas, 491 – 15º Andar – Centro – Belo Horizonte – MG
Telefone: (31) 3270-4500
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/belo-horizonte
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.9393015,-19.9197001,0
</coordinates>
</Point>
</Placemark>
-->
<Placemark>
<name>POLO BELO HORIZONTE - PRAÇA DA LIBEDADE - MG</name>
<description>
Endereço: Rua da Bahia, 2020 - Campus Praça da Liberdade - Prédio 1 – 2º Andar, Belo Horizonte - MG
Telefone: (31) 3244-7242
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/belo-horizonte-praca-da-liberdade
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.939301,-19.919700,0
</coordinates>
</Point>
</Placemark>
<!-- Placemark>
<name>Jandira - SP</name>
<description>
Endereço: Via Expressa Mauri Sebastião Barufi, 08 - Sala 104 - 1º Andar - CEP: 06606-035, Jandira - SP
Telefone: (11) 3808-9559 ou (11) 95160-6116
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/jandira-sp
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.903695,-23.530990,0
</coordinates>
</Point>
</Placemark -->
<!-- <Placemark>
<name>Limeira - SP</name>
<description>
Endereço: Praça Dr. Luciano Esteves, 149 - Sala 15 - Centro - Limeira
Telefone: (19) 3442-7434
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sao-paulo/limeira
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.402463,-22.560188,0
</coordinates>
</Point>
</Placemark> -->
<Placemark>
<name>Porto Alegre - RS</name>
<description>
Endereço: Rua Cel. Joaquim Pedro Salgado, 80 - Rio Branco, Porto Alegre - RS
Telefone: (51) 3316-1290 e (55) 3316-1261
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/rio-grande-do-sul/porto-alegre
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-51.197434,-30.034181,0
</coordinates>
</Point>
</Placemark>
<!-- Placemark>
<name>Pouso Alegre - MG</name>
<description>
Endereço: Rua Cel. Otavio Meyer, 160 - 2º Piso – Centro - CEP: 37.550-000 (Galleria PA Shopping). Pouso Alegre - MG
Telefone: (35) 3421-1406
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/pouso-alegre
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-45.938776,-22.229245,0
</coordinates>
</Point>
</Placemark -->
<Placemark>
<name>Uberlandia - MG</name>
<description>
Endereço: Rua José Antonio Teodoro - 5 - Nossa Senhora Aparecida - Uberlândia / MG - Matriz
Telefone: (34) 3305-1719
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/minas-gerais/uberlandia
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-48.265706,-18.910789,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO BERTIOGA - SP</name>
<description>
Endereço: Rua Passeio do Ipê, 99 - Riviera de São Lourenço, Bertioga - SP
Telefone: (13) 3317-2876
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/bertioga
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.0304966,-23.7912085,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO BRASÍLIA - DF</name>
<description>
Endereço: SCS Q. 08, Bloco B-60, Sala 460, 4º andar, Ed. Venâncio 2000 - Brasília, DF
Telefone: (61) 3224-9844 e (61) 3224-6954
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/brasilia
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.8847719,-15.7952239,0
</coordinates>
</Point>
</Placemark>
<!--Placemark>
<name>Sobradinho - Brasília - DF</name>
<description>
Endereço: Quadra 6, Comercio Local 24 SN, Sobradinho - CEP: 73026-660 - Brasília/DF
Telefone: (61) 3026-5605 | (61) 98162-0772 |(61) 98313-5832
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sobradinho
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.892721, -15.795246,0
</coordinates>
</Point>
</Placemark -->
<Placemark>
<name>POLO CAMPINA GRANDE - PB</name>
<description>
Endereço: R. José Nogueira Pereira, 96 - Três Irmãs, CEP: 58423-210 , Campina Grande - PB
Telefone: (83) 3339-6147
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/campina-grande
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-35.9217851,-7.2488091,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO CAMPINAS</name>
<description>
Endereço: R. Dr. Delfino Cintra, 100 - Vila Itapura, CEP: 13010-219, Campinas - SP
Telefone: (19) 3233-3400
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/campinas
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.048825,-22.8671366,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO FRANCA - SP</name>
<description>
Endereço: Rua Campos Sales, 1289 - Centro, Franca - SP
Telefone: (16) 3724-2495
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/franca
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.4008049,-20.542677,0
</coordinates>
</Point>
</Placemark>
<!-- Placemark>
<name>Polo São João Clímaco - São Paulo - SP</name>
<description>
Endereço: Rua São João Clímaco n° 407 - conjunto 05 e 06. São Paulo - SP
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sao-joao-climaco
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.5933374,-23.6244475,0
</coordinates>
</Point>
</Placemark -->
<Placemark>
<name>Polo São Paulo - Guaianases - SP</name>
<description>
Endereço: Rua Serra do Mar, 58, Guaianazes - SP
Telefone: (11) 3808-9559 / (11) 2557-8191
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/guaianases
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.417224,-23.545114,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO GUARATINGUETÁ - SP</name>
<description>
Endereço: Rua Sylvio Gonçalves Dias, 78 e 82, Guaratinguetá - SP
Telefone: (12) 2103-3504
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/guaratingueta
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-45.2015666,-22.7862368,0
</coordinates>
</Point>
</Placemark>
<!--Placemark>
<name>POLO GUARULHOS - SP</name>
<description>
Endereço: Rua João Gonçalves, 254 - Centro, Guarulhos. CEP: 07010-010.
Telefone: (11) 3808-9559/ (11) 95160-6116 | Whatsapp: (11) 99719-8242
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/guarulhos
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.5298894,-23.4678803,0
</coordinates>
</Point>
</Placemark-->
<Placemark>
<name>POLO IMPERATRIZ - MA</name>
<description>
Endereço: Avenida Dorgival Pinheiro de Sousa, nº 1111, Centro, Imperatriz - MA - CEP: 65903-270
Telefone: (99) 3525-9758
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/imperatriz
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.4802123,-5.5249282,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO ITANHAÉM - SP</name>
<description>
Endereço: Avenida João Mariano Ferreira, nº 151, Vila São Paulo - CEP: 11740-000,Itanhaém - SP
Telefone: (13) 4109-1759 e (13) 99618-5792 (Vivo com WhatsApp)
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/itanhaem
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.7853697,-24.1821356,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO ITAPEVA - SP</name>
<description>
Endereço: Prefeito Felipe Marinho, 110, Jardim Ferrari, Itapeva - SP
Telefone: (15) 3521-4737
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/itapeva
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-48.8797281,-23.9897052,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO LINS - SP</name>
<description>
Endereço: R. Campos Sales, 389 - Centro - CEP. 16400-055, Lins - SP
Telefone: (14) 3533-5500
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/lins
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-49.7501234,-21.6757882,0
</coordinates>
</Point>
</Placemark>
<!--<Placemark>
<name>POLO LONDRINA - PR</name>
<description>
Endereço: Tupi, 582, Centro, CEP 86020-350, Londrina - PR
Telefone: (43) 3037-9155 / (43) 99698-1668
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/londrina
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-51.1705011,-23.3109853,0
</coordinates>
</Point>
</Placemark>-->
<Placemark>
<name>POLO MACAÉ - RJ</name>
<description>
Endereço: Rua Tenente Rui Lopes Ribeiro, 171 – Centro, Macaé - RJ
Telefone: (22) 2762-4189 / (22) 99773-6172
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/macae
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-41.778823,-22.37703,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO MACEIO - AL</name>
<description>
Endereço: Travessa Senhor do Bonfim, 156 - Poço - Maceió - AL
Telefone: (82) 3221-2333
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/maceio
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-35.718890,-9.647337,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO NOVA IGUAÇU - RJ</name>
<description>
Endereço: : Rua Prefeito João Luiz Nascimento, 96 – Centro – Nova Iguaçu – RJ
Telefone: (21) 4113-2919
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/nova-iguacu
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.454525, -22.757227,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO MAUÁ - SP</name>
<description>
Endereço: Rua Onze de Junho, 166 - Jd. Pilar, Mauá - SP
Telefone: (11) 4513-6991 - (11) 2312-9576
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/maua
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.4574271,-23.6741452,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo São Paulo - Perus - SP</name>
<description>
Endereço: R. Juvêncio de Araújo Figueiredo, 609 – Perus - São Paulo – SP – CEP: 05204-140
Telefone: (11) 9 9468-0780
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/perus
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.7595785,-23.4063523,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO PETRÓPOLIS - RJ</name>
<description>
Endereço: Rua Mal. Deodoro, 80, Centro, Petrópolis - RJ
Telefone: (24) 2243-9188
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/petropolis
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.1777193,-22.5118752,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO PRESIDENTE PRUDENTE - SP</name>
<description>
Endereço: Rua Guadalajara, nº 1394 – Vila Santa Teresa - CEP.19023-330 , Presidente Prudente - SP
Telefone: (18) 3903-1222
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/presidente-prudente
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-51.4042567,-22.1089952,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO RIBEIRÃO PRETO - SP</name>
<description>
Endereço: R. Lafaiete, 695 - Centro - CEP: 14015-080, Ribeirão Preto - SP. Entrada pela Rua Florência de Abreu, 714
Telefone: (16) 4009-0261 | Whatsapp (16) 99963-5812
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/ribeirao-preto
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.809478,-21.1798093,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO São Bernardo do Campo - Rudge Ramos - SP</name>
<description>
Endereço: Rua Alfeu Taváres, 149 - Rudge Ramos, São Bernardo do Campo - SP
Telefone: (11) 4366-5000
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/rudge-ramos
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.5749135,-23.6544605,0
</coordinates>
</Point>
</Placemark>
<!-- Placemark>
<name>POLO SALVADOR - BA</name>
<description>
Endereço: Avenida Anita Garibaldi, 449, Federação - CEP: 40210-750 - Salvador - BA
Telefone: (71) 3052-2677
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/salvador
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-38.506961,-12.993087,0
</coordinates>
</Point>
</Placemark -->
<Placemark>
<name>POLO SANTOS - SP</name>
<description>
Endereço: RUA DA PAZ, 72 - BOQUEIRÃO - CEP: 11045-520., Santos - SP
Telefone: (13) 3221-8300
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/santos
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.328952,-23.9687662,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO SÃO JOSÉ DO RIO PRETO - SP</name>
<description>
Endereço: Rua Voluntários de São Paulo, 3587, Centro, CEP: 15015-200, São José do Rio Preto - SP
Telefone: (17) 3222-7450
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sao-jose-do-rio-preto
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-49.3822656,-20.813818,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO SÃO JOSÉ DOS CAMPOS - SP</name>
<description>
Endereço: Rua Coronel José Monteiro, 621 - CEP: 12210-140,São José dos Campos - SP
Telefone: (12) 3942-3600
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sao-jose-dos-campos
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-45.8816385,-23.1820044,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO SOROCABA - SP</name>
<description>
Endereço: R. Dr. Armando Sales de Oliveira, 504, Vila Trujillo - CEP: 18060-370 - Sorocaba - SP
Telefone: (15) 3221-9977
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sorocaba
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.471770,-23.493076,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO VITÓRIA - ES</name>
<description>
Endereço: Avenida Maruípe, 2833 - CEP: 29045-235 - Loja 01, Vitória - ES
Telefone: (27) 3024-1996
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/vitoria
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-40.3064979,-20.2918491,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO VOLTA REDONDA - RJ</name>
<description>
Endereço: Av. Maranhão, 101, Retiro, Volta Redonda - RJ
Telefone: (24) 3346-4061 – (24) 3338-8456 | Whatsapp: (24) 98844-8456
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/volta-redonda
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-44.1260836,-22.502426,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO PORTO VELHO - RO</name>
<description>
Endereço: Rua Afonso Pena, 1142 - B. Nossa Senhora das Graças - CEP: 76804-120, Porto Velho - RO
Telefone: (69) 3223-1724
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/porto-velho
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-63.8932099,-8.7613512,0
</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>POLOS FASE II</name>
<Placemark>
<name>POLO CERES - GO</name>
<description>
Endereço: Av. Brasil, Qd. 13 s/nº - Bairro Jardim Morada Verde - 3º Piso - Sala: C203 - Ceres (GO) - CEP.: 76300-000
Telefone: (62) 3323-1040
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/cidade-ocidental
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-49.615712,-15.310112,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO GUARAPARI - ES</name>
<description>
Endereço: Rua Matias Coutinho, 206 - Bairro Itapebussu, CEP: 29210-160 - Guarapari - ES
Telefone: (27) 3362-8004 (27) 99823-9371 (27) 98834-0506
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/guarapari
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-40.507025,-20.650393,0
</coordinates>
</Point>
</Placemark>
<!--
<Placemark>
<name>POLO JOÃO PESSOA - PB</name>
<description>
Endereço: Rua Rodopiano Ferreira da Nóbrega, 435 - Mangabeira II - CEP: 58.057-010, João Pessoa - PB
Telefone: (83) 3239-1045 (83) 3239-1616
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/joao-pessoa
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-34.861051,-7.11532,0
</coordinates>
</Point>
</Placemark>
-->
<Placemark>
<name>POLO PARELHEIROS - SP</name>
<description>
Endereço: Avenida Sadamu Inoue, 5617. Jardim Aladim, São Paulo - SP. CEP: 04883-215
Telefone: (11) 5921-1356
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/parelheiros
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.7361177,-23.8185404,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo Juiz de Fora (Granbery) - MG</name>
<description>
Endereço: Rua Batista de Oliveira, 1145 – SALA JP 110 – Centro – CEP: 36.010-532 - Juiz de Fora - MG
Telefone: (32) 2101-1835
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/juiz-de-fora
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.3433999,-21.7624237,0
</coordinates>
</Point>
</Placemark>
<!-- Placemark>
<name>POLO NITERÓI - RJ</name>
<description>
Endereço: R. Visconde do Uruguai, 480 - 3º andar - Centro - CEP 24030-078 Niterói - RJ
Telefone: (21) 3629-3838 (21) 3629-2323
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/niteroi/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.104335,-22.880766,0
</coordinates>
</Point>
</Placemark -->
<Placemark>
<name>POLO PASSO FUNDO - RS</name>
<description>
Endereço: Avenida Brasil Oeste, 1623 - Boqueirão, Passo Fundo - RS
Telefone: (54) 3312-1988
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/passo-fundo/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-52.408335,-28.261163,0
</coordinates>
</Point>
</Placemark>
<!-- <Placemark>
<name>POLO PIRACICABA, CENTRO - SP</name>
<description>
Endereço: Rua Dom Pedro II, 791 - CEP: 13.400-390, Piracicaba - SP
– Piracicaba, SP.
Telefone: 3124-1862
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/piracicaba
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-47.6503779,-22.727791,0
</coordinates>
</Point>
</Placemark> -->
<Placemark>
<name>Polo Rio de Janeiro (Centro) - RJ</name>
<description>
Endereço: Rua Camerino, 130 - Centro, CEP: 20.080-010, Rio de Janeiro - RJ
Telefone: (21) 2516-7363 / (21) 2516-7407 / (21) 2253-7884 / (21) 2253-8116 | Celular: WhatsApp: (21) 98053-6200 / Claro (21) 97303-1700 / OI (21) 98903-9500 / Vivo (21) 99840-9202 / Tim (21) 98321-2071
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/rio-de-janeiro-centro
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.209587,-22.903539,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo Engenheiro Paulo de Frontin - RJ</name>
<description>
Endereço: Avenida João Batista Ferrini nº 132. Loja 03, Centro - Engenheiro Paulo de Frontin - RJ.
Telefone: (24) 2463-9939
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/engenheiro-paulo-de-frontim
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-43.677685, -22.550341,
</coordinates>
</Point>
</Placemark>
<!-- Placemark>
<name>Polo Rio Bonito - RJ</name>
<description>
Endereço: Avenida Sete de Maio, 640, Centro - Rio Bonito - RJ.
Telefone: (21) 2734-6679
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/rio-bonito
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-42.629410,-22.712323,
</coordinates>
</Point>
</Placemark -->
<Placemark>
<name>POLO SANTA MARIA - RS</name>
<description>
Endereço: Rua Dr. Turi, 2003. CEP 97050-180, Santa Maria - RS
Telefone: (55) 3028-7000
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/santa-maria/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-53.807487,-29.685807,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo São Paulo - Jabaquara - SP</name>
<description>
Endereço: R. Jaguarão, 32 - Cidade Vargas, CEP: 04318-040, São Paulo - SP
Telefone: (11) 2369-6286
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sao-paulo-jabaquara
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.646389,-23.652222,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo Vergueiro - São Bernardo do Campo - SP</name>
<description>
Av. Senador Vergueiro, 1301, Jardim do Mar, São Bernardo do Campo - SP
Telefone: (11) 4366-5000
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/vergueiro
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.555903,-23.683288,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo Planalto - São Bernardo do Campo - SP</name>
<description>
Av. Dom Jaime de Barros Câmara, 1000, Planalto. São Bernardo do Campo - SP
Telefone: (11) 4366-5000
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/planalto
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.571501,-23.706675,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Polo São Paulo - Santo Amaro - SP</name>
<description>
Endereço: Avenida João Dias, 242 - Santo Amaro - CEP: 04.724-000, São Paulo - SP
Telefone: (11) 2148-0150
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/santo-amaro/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.7,-23.65,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO URUGUAIANA - RS</name>
<description>
Endereço: Rua Tiradentes, 3432 - Centro - CEP: 97510-501, Uruguaiana - RS
Telefone: (55) 3412-4355
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/uruguaiana
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-57.088208,-29.749501,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO CURITIBA - PR</name>
<description>
Endereço: Rua XV de Novembro, 1456 - Conjunto 201, 2º Andar - Centro - Curitiba - PR
Telefone: (41) 3011-6602
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/curitiba/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-49.273252,-25.428356,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO DIADEMA - SP</name>
<description>
Endereço: Rua Oriente Monti, 115, Centro, Diadema, SP, 09.910-250 - Diadema, SP
Telefone: (11) 4226-9000
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/diadema/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-46.626608, -23.690091,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO SOBRAL - CE</name>
<description>
Endereço: Rua Dr. Monte, 503 - Centro - CEP: 62011200 - Sobral - CE
Telefone: (88) 3614-8290
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/sobral/
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-40.353782,-3.682359,0
</coordinates>
</Point>
</Placemark>
</Folder>
<Folder>
<name>POLOS FASE III</name>
<Placemark>
<name>POLO ARANTINA - MG</name>
<description>
Endereço: Rua Prefeita Dona Terezinha, 901 - Centro - CEP: 37360-000 - Arantina - MG
Telefone: (32) 3296-1420
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/arantina
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-44.25289,-21.911208,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO BLUMENAU - SC</name>
<description>
Endereço: Rua Dr. Leo de Carvalho, 74 - 3º Andar, Blumenau - SC
Telefone: (47) 3037-7020
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/blumenau
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-49.066025,-26.918752,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO DOM PEDRITO - RS</name>
<description>
Endereço: Rua Andrade Neves, 1068 - CEP: 96450-000, Dom Pedrito - RS
Telefone: (53) 3243-7600
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/dom-pedrito
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>
<coordinates>
-54.677469,-30.981847,0
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>POLO EMBU-GUAÇU - SP</name>
<description>
Endereço: Rua Serafim Luiz Martin, nº 80, Centro, CEP: 06900-000 - Embu-Guaçu - SP
Telefone: (11) 4396-5438
Página: http://portal.metodista.br/ead/graduacao-a-distancia/polos/embu-guacu
</description>
<styleUrl>#icon-ci-1</styleUrl>
<Point>