classe_navega.js
47.7 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
/*jslint plusplus:false,white:false,undef: false, rhino: true, onevar: true, evil: true */
/*
Title: Navegação sobre o mapa
Arquivo:
i3geo/classesjs/classe_navega.js
Licenca:
GPL2
I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil
Desenvolvedor: Edmar Moretti edmar.moretti@mma.gov.br
Este programa é software livre; você pode redistribuí-lo
e/ou modificá-lo sob os termos da Licença Pública Geral
GNU conforme publicada pela Free Software Foundation;
Este programa é distribuído na expectativa de que seja útil,
porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita
de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA.
Consulte a Licença Pública Geral do GNU para mais detalhes.
Você deve ter recebido uma cópia da Licença Pública Geral do
GNU junto com este programa; se não, escreva para a
Free Software Foundation, Inc., no endereço
59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*/
if(typeof(i3GEO) === 'undefined'){
i3GEO = [];
}
/*
Classe: i3GEO.navega
Realiza operações de navegação do mapa, como zoom, pan, etc..
Quando todos os argumentos da função forem opcionais, basta usar nomeFuncao(),
nos casos em que os primeiros argumentos forem opcionais e os demais obrigatórios,
utilize "" no lugar do argumento que se quer usar o default, exemplo,
nomeFuncao("","",10)
*/
i3GEO.navega = {
/*
Propriedade: TEMPONAVEGAR
Tempo em milisegundos que será esperado para executar uma operação de navegação sobre o mapa.
Controla o lapso de tempo utilizado para disparar as funções do tipo navegação
Tipo:
{Numeric}
Default:
{1500}
*/
TEMPONAVEGAR: 600,
/*
Propriedade: FATORZOOM
Valor utilizado nas operações de zoom in e out. Fator de zoom.
Default:
{2}
Tipo:
{Numeric}
*/
FATORZOOM: 2,
/*
Variavel: timerNavega
Objeto do tipo timer utilizado no contador de tempo para o delay de execução das funções de navegação
*/
timerNavega: null,
/*
Function: zoomin
Aproxima o mapa aplicando um fator de modificação da escala
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
*/
zoomin: function(locaplic,sid){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomin()");}
if(i3GEO.Interface.ATUAL === "openlayers"){
i3geoOL.zoomIn();
return;
}
if(arguments.length === 2){
i3GEO.configura.locaplic = locaplic;
i3GEO.configura.sid = sid;
}
i3GEO.janela.abreAguarde("i3GEO.atualiza",$trad("o1"));
//i3GEO.contadorAtualiza++;
i3GEO.php.aproxima(i3GEO.atualiza,i3GEO.navega.FATORZOOM);
},
/*
Function: zoomout
Afasta o mapa aplicando um fator de modificação da escala
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
*/
zoomout: function(locaplic,sid){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomout()");}
if(i3GEO.Interface.ATUAL === "openlayers"){
i3geoOL.zoomOut();
return;
}
if(arguments.length === 2){
i3GEO.configura.locaplic = locaplic;
i3GEO.configura.sid = sid;
}
i3GEO.janela.abreAguarde("i3GEO.atualiza",$trad("o1"));
//i3GEO.contadorAtualiza++;
i3GEO.php.afasta(i3GEO.atualiza,i3GEO.navega.FATORZOOM);
},
/*
Function: zoomponto
Centraliza o mapa em um ponto e acrescenta o ponto como uma nova camada no mapa
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
x {Numeric} - coordenada em décimos de grau da longitude
y {Numeric} - coordenada em décimos de grau da latitude
tamanho {Numeric} - opcional, tamanho do símbolo do ponto que será inserido no mapa
simbolo {String} - opcional, nome do símbolo para o ponto
cor {String} - opcional, cor em r g b (p.ex. "255 0 0")
*/
zoomponto: function(locaplic,sid,x,y,tamanho,simbolo,cor){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomponto()");}
if(!simbolo)
{simbolo = "ponto";}
if(!tamanho)
{tamanho = 15;}
if(!cor)
{cor = "255 0 0";}
//YAHOO.log("zoomponto", "i3geo");
if(locaplic !== ""){i3GEO.configura.locaplic = locaplic;}
if(sid !== ""){i3GEO.configura.sid = sid;}
var f = "i3GEO.navega.timerNavega = null;i3GEO.janela.abreAguarde('i3GEO.atualiza','"+$trad('o1')+"');"+
"i3GEO.php.zoomponto(i3GEO.atualiza,"+x+","+y+","+tamanho+",'"+simbolo+"','"+cor+"');";
if(i3GEO.navega.timerNavega !== undefined)
{clearTimeout(i3GEO.navega.timerNavega);}
i3GEO.navega.timerNavega = setTimeout(f,i3GEO.navega.TEMPONAVEGAR);
},
/*
Function: zoompontoIMG
Centraliza o mapa em um ponto de coordenadas medidas na imagem do mapa
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
x {Numeric} - coordenada x da imagem
y {Numeric} - coordenada y da imagem
*/
zoompontoIMG: function(locaplic,sid,x,y){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoompontoIMG()");}
if(locaplic !== ""){i3GEO.configura.locaplic = locaplic;}
if(sid !== ""){i3GEO.configura.sid = sid;}
i3GEO.janela.abreAguarde('i3GEO.atualiza',$trad('o1'));
//i3GEO.contadorAtualiza++;
i3GEO.php.pan(i3GEO.atualiza,'','',x,y);
},
/*
Function: xy2xy
Desloca o mapa de um ponto de coordenadas xy para um segundo ponto
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
xi {Numeric} - coordenada x inicial
yi {Numeric} - coordenada y inicial
xf {Numeric} - coordenada x final
yf {Numeric} - coordenada y final
ext {String} - extensão geográfica do mapa
tipoimagem {String} - tipo de imagem atual do mapa (sepia,nenhum,cinza)
*/
xy2xy: function(locaplic,sid,xi,yi,xf,yf,ext,tipoimagem){
//alert(xi+" "+xf)
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.xy2xy()");}
var disty,distx,ex,novoxi,novoxf,novoyf,nex;
if(locaplic !== "")
{i3GEO.configura.locaplic = locaplic;}
if(sid !== "")
{i3GEO.configura.sid = sid;}
disty = (yi * -1) + yf;
distx = (xi * -1) + xf;
ex = ext.split(" ");
novoxi = (ex[0] * 1) - distx;
novoxf = (ex[2] * 1) - distx;
novoyi = (ex[1] * 1) - disty;
novoyf = (ex[3] * 1) - disty;
if ((distx === 0)&&(disty === 0))
{return false;}
else{
nex = novoxi+" "+novoyi+" "+novoxf+" "+novoyf;
i3GEO.navega.zoomExt(i3GEO.configura.locaplic,i3GEO.configura.sid,tipoimagem,nex);
return true;
}
},
/*
Function: localizaIP
Localiza as coordenadas baseadas no número IP do usuário.
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
funcao {Function} - função que será executada ao concluir a chamada AJAX. Essa função receberá o objeto JSON obtido.
*/
localizaIP: function(locaplic,sid,funcao){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.localizaIP()");}
if(locaplic !== "")
{i3GEO.configura.locaplic = locaplic;}
if(sid !== "")
{i3GEO.configura.sid = sid;}
//YAHOO.log("localizaIP", "i3geo");
i3GEO.php.localizaIP(funcao);
},
/*
Function: zoomIP
Mostra no mapa um ponto baseado na localização do usuário.
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
*/
zoomIP: function(locaplic,sid){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomIP()");}
try
{
if(arguments.length > 0){
i3GEO.configura.locaplic = locaplic;
i3GEO.configura.sid = sid;
}
var mostraIP = function(retorno)
{
if (retorno.data.latitude !== null)
{i3GEO.navega.zoomponto(locaplic,sid,retorno.data.longitude,retorno.data.latitude);}
else
{alert("Nao foi possivel identificar a localizacao.");}
};
i3GEO.navega.localizaIP(locaplic,sid,mostraIP);
}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
},
/*
Function: zoomExt
Aplica uma nova extensão geográfica ao mapa.
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
tipoimagem {String} - Utlize "" para aplicar o default. Tipo de imagem que será retornada na imagem do mapa que será criada
ext {String} - Extensão geográfica no formato xmin ymin xmax ymax
*/
zoomExt: function(locaplic,sid,tipoimagem,ext){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomExt()");}
//YAHOO.log("zoomExt", "i3geo");
if(locaplic !== "")
{i3GEO.configura.locaplic = locaplic;}
if(sid !== "")
{i3GEO.configura.sid = sid;}
if(tipoimagem === "")
{tipoimagem = "nenhum";}
var f = "i3GEO.navega.timerNavega = null;i3GEO.janela.abreAguarde('i3GEO.atualiza','"+$trad('o1')+"');"+
"i3GEO.php.mudaext(i3GEO.atualiza,'"+tipoimagem+"','"+ext+"');";
if(i3GEO.navega.timerNavega !== undefined)
{clearTimeout(i3GEO.navega.timerNavega);}
i3GEO.navega.timerNavega = setTimeout(f,i3GEO.navega.TEMPONAVEGAR);
},
/*
Function: aplicaEscala
Aplica ao mapa um novo valor de escala tendo como base o valor do denminador
Utilize "" caso vc queira usar locaplic e sid default.
Parametros:
locaplic {String} - endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX. Pode ser ""
sid {String} - código da seção aberta no servidor pelo i3geo. pode ser ""
escala {Numeric} - denominador da escala
*/
aplicaEscala: function(locaplic,sid,escala){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.aplicaEscala()");}
//YAHOO.log("aplicaescala", "i3geo");
if(i3GEO.Interface.ATUAL === "padrao"){
if(locaplic !== "")
{i3GEO.configura.locaplic = locaplic;}
if(sid !== "")
{i3GEO.configura.sid = sid;}
var f = "i3GEO.navega.timerNavega = null;i3GEO.janela.abreAguarde('i3GEO.atualiza','"+$trad('o1')+"');"+
"i3GEO.php.mudaescala(i3GEO.atualiza,"+escala+");";
if(i3GEO.navega.timerNavega !== undefined)
{clearTimeout(i3GEO.navega.timerNavega);}
i3GEO.navega.timerNavega = setTimeout(f,i3GEO.navega.TEMPONAVEGAR);
}
if(i3GEO.Interface.ATUAL === "googlemaps"){
i3GeoMap.setZoom(i3GEO.Interface.googlemaps.escala2nzoom(escala));
}
if(i3GEO.Interface.ATUAL === "openlayers"){
i3geoOL.zoomToScale(escala,true);
}
},
/*
Function: panFixo
Desloca o mapa para uma determinada direção com uma distância fixa.
Parametros:
locaplic {String} - (opcional) endereço do i3geo utilizado na geração da URL para fazer a chamada AJAX
sid {String} - (opcional) código da seção aberta no servidor pelo i3geo
direcao {String} - norte,sul,leste,oeste,sudeste,sudoeste,nordeste,noroeste
w {Numeric} - largura da imagem do mapa em pixels
h {Numeric} - altura da imagem do mapa em pixels
escala {Numeric} - escala do mapa
*/
panFixo: function(locaplic,sid,direcao,w,h,escala){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.panFixo()");}
//YAHOO.log("panfixo", "i3geo");
var x,y,f;
if(locaplic !== "")
{i3GEO.configura.locaplic = locaplic;}
if(sid !== "")
{i3GEO.configura.sid = sid;}
if(w === "")
{w = i3GEO.parametros.w;}
if(h === "")
{h = i3GEO.parametros.h;}
if(escala === "")
{escala = i3GEO.parametros.mapscale;}
if (direcao === "norte"){
y = h / 6;
x = w / 2;
}
if (direcao === "sul"){
y = h - (h / 6);
x = w / 2;
}
if (direcao === "leste"){
x = w - (w / 6);
y = h / 2;
}
if (direcao === "oeste"){
x = w / 6;
y = h / 2;
}
if (direcao === "nordeste"){
y = h / 6;
x = w - (w / 6);
}
if (direcao === "sudeste"){
y = h - (h / 6);
x = w - (w / 6);
}
if (direcao === "noroeste"){
y = h / 6;
x = w / 6;
}
if (direcao === "sudoeste"){
y = h - (h / 6);
x = w / 6;
}
if(i3GEO.Interface.ATUAL === "openlayers"){
i3geoOL.pan(x,y);
return;
}
f = "i3GEO.navega.timerNavega = null;i3GEO.janela.abreAguarde('i3GEO.atualiza','"+$trad('o1')+"');"+
"i3GEO.php.pan(i3GEO.atualiza,"+escala+",'',"+x+","+y+");";
try
{clearTimeout(i3GEO.navega.timerNavega);}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
i3GEO.navega.timerNavega = setTimeout(f,i3GEO.navega.TEMPONAVEGAR);
},
/*
Function: panFixoNorte
Desloca o mapa para o norte
*/
panFixoNorte: function(){
i3GEO.navega.panFixo('','','norte','','','');
},
/*
Function: panFixoSul
Desloca o mapa para o sul
*/
panFixoSul: function(){
i3GEO.navega.panFixo('','','sul','','','');
},
/*
Function: panFixoOeste
Desloca o mapa para o oeste
*/
panFixoOeste: function(){
i3GEO.navega.panFixo('','','oeste','','','');
},
/*
Function: panFixoLeste
Desloca o mapa para o leste
*/
panFixoLeste: function(){
i3GEO.navega.panFixo('','','leste','','','');
},
/*
Function: mostraRosaDosVentos
Mostra sobre o mapa a rosa dos ventos.
A rosa permite que o usuário navegue no mapa sem ter de alterar a opção atual de navegação.
A rosa é mostrada apenas se a variável i3GEO.configura.mostraRosaDosVentos for = a "sim".<b>
Para que a rosa seja mostrada, é necessário que esta função esteja registrada em
i3GEO.eventos.MOUSEPARADO
*/
mostraRosaDosVentos: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.mostraRosaDosVentos()");}
var novoel,setas,i;
try{
if(i3GEO.configura.mostraRosaDosVentos === "nao")
{return;}
if(g_tipoacao === "area")
{return;}
}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
if(objposicaocursor.imgx < 10 || objposicaocursor.imgy < 10 || objposicaocursor.imgy > (i3GEO.parametros.h - 10))
{return;}
if (!$i("i3geo_rosa")){
novoel = document.createElement("div");
novoel.id = "i3geo_rosa";
novoel.style.position="absolute";
novoel.style.zIndex=5000;
if(navn)
{novoel.style.opacity=".7";}
else
{novoel.style.filter = "alpha(opacity=70)";}
document.body.appendChild(novoel);
}
setas = "<table id='rosaV' >";
setas += "<tr onclick=\"javascript:i3GEO.configura.mostraRosaDosVentos='nao'\"><td></td><td></td><td style=cursor:pointer >x</td></tr><tr>";
setas += "<td><img class='rosanoroeste' title='noroeste' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','noroeste','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td>";
setas += "<td><img class='rosanorte' title='norte' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','norte','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td>";
setas += "<td><img class='rosanordeste' title='nordeste' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','nordeste','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td></tr>";
setas += "<tr><td><img class='rosaoeste' title='oeste' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','oeste','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td>";
setas += "<td><table><tr>";
setas += "<td><img class='rosamais' title='aproxima' onclick=\"i3GEO.navega.zoomin('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"')\" src='"+$im("branco.gif")+"' </td>";
setas += "<td><img class='rosamenos' title='afasta' onclick=\"i3GEO.navega.zoomout('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"')\" src='"+$im("branco.gif")+"' </td>";
setas += "</tr></table></td>";
setas += "<td><img class='rosaleste' title='leste' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','leste','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td></tr>";
setas += "<tr><td><img class='rosasudoeste' title='sudoeste' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','sudoeste','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td>";
setas += "<td><img class='rosasul' title='sul' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','sul','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td>";
setas += "<td><img class='rosasudeste' title='sudeste' src='"+$im("branco.gif")+"' onclick=\"i3GEO.navega.panFixo('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','sudeste','"+i3GEO.parametros.w+"','"+i3GEO.parametros.h+"','"+i3GEO.parametros.mapscale+"')\" /></td></tr></table>";
i = $i("i3geo_rosa");
i.innerHTML = setas;
i.style.top = objposicaocursor.telay - 27;
i.style.left = objposicaocursor.telax - 27;
i.style.display="block";
if($i("img")){
YAHOO.util.Event.addListener(
$i("img"),
"mousemove",
function(){
var i = $i("i3geo_rosa");
i.style.display="none";
YAHOO.util.Event.removeListener(escondeRosa);
}
);
}
i3GEO.ajuda.mostraJanela('Clique nas pontas da rosa para navegar no mapa. Clique em x para parar de mostrar essa opção.');
},
/*
Classe: i3GEO.navega.autoRedesenho
Controla o redesenho automático do mapa por meio de um temporizador
*/
autoRedesenho: {
/*
Propriedade: INTERVALO
Intervalo de tempo, em milisegundos, que será utilizado para disparar o desenho do mapa
Tipo:
{Integer}
Default:
{0}
*/
INTERVALO: 0,
/*
Variavel: ID
Guarda o valor do ID do elemento HTML que receberá o contador de tempo
Tipo:
{String}
*/
ID: "tempoRedesenho",
/*
Function: ativa
Ativa o auto-redesenho do mapa
Parametros:
id {String} - id do elemento onde o contador de tempo será mostrado no mapa. Por default, utiliza "tempoRedesenho".
*/
ativa: function(id){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.autoRedesenho.ativa()");}
if(arguments.length === 0)
{id = "tempoRedesenho";}
i3GEO.navega.autoRedesenho.ID = id;
if (($i(id)) && i3GEO.navega.autoRedesenho.INTERVALO > 0)
{$i(id).style.display = "block";}
if (i3GEO.navega.autoRedesenho.INTERVALO > 0)
{i3GEO.navega.tempoRedesenho = setTimeout('i3GEO.navega.autoRedesenho.redesenha()',i3GEO.navega.autoRedesenho.INTERVALO);}
if (($i(id)) && (i3GEO.navega.autoRedesenho.INTERVALO > 0)){
$i(id).innerHTML = i3GEO.navega.autoRedesenho.INTERVALO/1000;
i3GEO.navega.contaTempoRedesenho = setTimeout('i3GEO.navega.autoRedesenho.contagem()',1000);
}
},
/*
Function: desativa
Desativa o auto-redesenho do mapa
*/
desativa:function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.autoRedesenho.desativa()");}
i3GEO.navega.autoRedesenho.INTERVALO = 0;
clearTimeout(i3GEO.navega.tempoRedesenho);
clearTimeout(i3GEO.navega.contaTempoRedesenho);
i3GEO.navega.tempoRedesenho = "";
i3GEO.navega.contaTempoRedesenho = "";
if ($i(i3GEO.navega.autoRedesenho.ID))
{$i(i3GEO.navega.autoRedesenho.ID).style.display = "none";}
},
/*
Function: redesenha
Redesenha o mapa quando o contador de tempo chegar a zero
*/
redesenha: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.autoRedesenho.redesenha()");}
clearTimeout(i3GEO.navega.tempoRedesenho);
clearTimeout(i3GEO.navega.contaTempoRedesenho);
if(i3GEO.Interface.ATUAL === "openlayers")
{i3GEO.Interface.openlayers.atualizaMapa();}
if(i3GEO.Interface.ATUAL === "googlemaps")
{i3GEO.Interface.googlemaps.redesenha();}
else{
//i3GEO.contadorAtualiza++;
i3GEO.atualiza("");
}
i3GEO.navega.autoRedesenho.ativa(i3GEO.navega.autoRedesenho.ID);
},
/*
Function: contagem
Faz a contagem do tempo
*/
contagem: function(){
if ($i(i3GEO.navega.autoRedesenho.ID))
{$i(i3GEO.navega.autoRedesenho.ID).innerHTML = parseInt($i(i3GEO.navega.autoRedesenho.ID).innerHTML,10) - 1;}
i3GEO.navega.contaTempoRedesenho = setTimeout('i3GEO.navega.autoRedesenho.contagem()',1000);
}
},
/*
Classe: i3GEO.navega.zoomBox
Controla o desenho de um box na tela para executar o zoom por box
*/
zoomBox: {
/*
Function: inicia
Marca o início do desenho do box, capturando a posição do mouse
*/
inicia: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomBox.inicia()");}
if(i3GEO.navega.timerNavega !== null)
{return;}
if(g_tipoacao !== 'zoomli')
{return;}
if(!$i("i3geoboxZoom"))
{i3GEO.navega.zoomBox.criaBox();}
var i = $i("i3geoboxZoom").style;
i.width=0;
i.height=0;
i.visibility="visible";
i.display="block";
i.left = objposicaocursor.telax + g_postpx;
i.top = objposicaocursor.telay + g_postpx;
boxxini = objposicaocursor.telax;
boxyini = objposicaocursor.telay;
tamanhox = 0;
tamanhoy = 0;
if(i3GEO.eventos.MOUSEMOVE.toString().search("i3GEO.navega.zoomBox.desloca()") < 0)
{i3GEO.eventos.MOUSEMOVE.push("i3GEO.navega.zoomBox.desloca()");}
if(i3GEO.eventos.MOUSEUP.toString().search("i3GEO.navega.zoomBox.termina()") < 0)
{i3GEO.eventos.MOUSEUP.push("i3GEO.navega.zoomBox.termina()");}
},
/*
Function: criaBox
Cria o DIV que será utilizado para desenhar o box no mapa
*/
criaBox: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomBox.criaBox()");}
if(i3GEO.navega.timerNavega !== null){return;}
if(!$i("i3geoboxZoom")){
var novoel,temp;
novoel = document.createElement("div");
novoel.style.width = "0px";
novoel.style.height = "0px";
novoel.id = "i3geoboxZoom";
novoel.style.display = "none";
novoel.style.fontSize = "0px";
if(navn)
{novoel.style.opacity = 0.25;}
novoel.style.backgroundColor = "gray";
novoel.style.position="absolute";
novoel.style.border = "2px solid #ff0000";
if (navm)
{novoel.style.filter = "alpha(opacity=25)";}
novoel.onmousemove = function(){
var b,wb,hb;
b = $i("i3geoboxZoom").style;
wb = parseInt(b.width,10);
hb = parseInt(b.height,10);
if (navm){
if(wb > 2)
{b.width = wb - 2;}
if(hb > 2)
{b.height = hb - 2;}
}
else{
b.width = wb - 2 + "px";
b.height = hb - 2 + "px";
}
};
novoel.onmouseup = function()
{i3GEO.navega.zoomBox.termina();};
document.body.appendChild(novoel);
if(i3GEO.Interface.ATUAL === "padrao"){
$i("img").title = "";
i3GEO.util.mudaCursor(i3GEO.configura.cursores,"zoom","i3geoboxZoom",i3GEO.configura.locaplic);
temp = "zoom";
if(i3GEO.Interface.ATIVAMENUCONTEXTO)
{temp = "zoom_contexto";}
i3GEO.util.mudaCursor(i3GEO.configura.cursores,temp,"img",i3GEO.configura.locaplic);
}
}
},
/*
Function: desloca
Desloca o box conforme o mouse é movimentado
*/
desloca: function(){
var bxs,ppx,py;
if(i3GEO.navega.timerNavega !== null)
{return;}
if(g_tipoacao !== 'zoomli')
{return;}
bxs = $i("i3geoboxZoom").style;
if(bxs.display !== "block")
{return;}
ppx = objposicaocursor.telax;
py = objposicaocursor.telay;
if (navm){
if ((ppx > boxxini) && ((ppx - boxxini - 2) > 0))
{bxs.width = ppx - boxxini - 2;}
if ((py > boxyini) && ((py - boxyini - 2) > 0))
{bxs.height = py - boxyini - 2;}
if (ppx < boxxini)
{bxs.left = ppx;bxs.width = boxxini - ppx + 2;}
if (py < boxyini)
{bxs.top = py;bxs.height = boxyini - py + 2;}
}
else{
if (ppx > boxxini)
{bxs.width = ppx - boxxini + "px";}
if (py > boxyini)
{bxs.height = py - boxyini + "px";}
if (ppx < boxxini)
{bxs.left = ppx + "px";bxs.width = boxxini - ppx + "px";}
if (py < boxyini)
{bxs.top = py + "px";bxs.height = boxyini - py + "px";}
}
},
/*
Function: termina
Para o desenho do box, captura seu tamanho e faz o zoom no mapa
*/
termina: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.zoomBox.termina()");}
var valor,v,x1,y1,x2,y2,limpa,f;
if(g_tipoacao !== 'zoomli'){
i3GEO.eventos.MOUSEDOWN.remove("i3GEO.navega.zoomBox.inicia()");
i3GEO.eventos.MOUSEUP.remove("i3GEO.navega.zoomBox.termina()");
return;
}
try{
if(i3GEO.navega.timerNavega !== null)
{return;}
valor = i3GEO.calculo.rect2ext("i3geoboxZoom",i3GEO.parametros.mapexten,i3GEO.parametros.pixelsize);
v = valor[0];
x1 = valor[1];
y1 = valor[2];
x2 = valor[3];
y2 = valor[4];
limpa = function(){
var bxs = $i("i3geoboxZoom").style;
bxs.display="none";
bxs.visibility="hidden";
bxs.width = 0;
bxs.height = 0;
};
if((x1 === x2) || (y1 === y2))
{limpa.call();return;}
// se o retangulo for negativo pula essa parte para n� gerar erro
i3GEO.parametros.mapexten=v;
limpa.call();
i3GEO.eventos.MOUSEMOVE.remove("i3GEO.navega.zoomBox.desloca()");
i3GEO.eventos.MOUSEUP.remove("i3GEO.navega.zoomBox.termina()");
if(i3GEO.Interface.ATUAL === "googlemaps"){
i3GEO.Interface.googlemaps.zoom2extent(v);
return;
}
f = "i3GEO.navega.timerNavega = null;i3GEO.navega.zoomExt('"+i3GEO.configura.locaplic+"','"+i3GEO.configura.sid+"','"+i3GEO.configura.tipoimagem+"','"+v+"')";
if(i3GEO.navega.timerNavega !== undefined)
{clearTimeout(i3GEO.navega.timerNavega);}
i3GEO.navega.timerNavega = setTimeout(f,i3GEO.navega.TEMPONAVEGAR);
}
catch(e){limpa.call();return;}
}
},
/*
Classe: i3GEO.navega.entorno
Controla o desenho do entorno do mapa (modo tile)
*/
entorno:{
/*
Function: ativaDesativa
Ajusta o mapa para ativar ou desativar o desenho do entorno
Ao ser chamada, essa função muda o modo atual, ativando ou desativando o entorno
*/
ativaDesativa: function(){
if(i3GEO.Interface.ATUAL === "googlemaps")
{alert("Essa operação não funciona nessa interface");return;}
if(i3GEO.Interface.ATUAL === "openlayers")
{i3GEO.Interface.openlayers.inverteModoTile();return;}
var letras,l;
if(i3GEO.parametros.mapfile === "")
{alert("Essa opcao nao pode ser ativada. Consulte o administrador do sistema. Mapfile nao esta exposto.");return;}
if (i3GEO.configura.entorno === "sim"){
letras=["L","O","N","S"];
for (l=0;l<4; l++){
if ($i("img"+letras[l])){
$i("img"+letras[l]).style.display = "none";
$i("img"+letras[l]).src = "";
}
}
$left("img",0);
$top("img",0);
i3GEO.configura.entorno = "nao";
alert("Entorno desativado");
$i("img").style.visibility = "visible";
$i("img").style.display = "block";
}
else{
i3GEO.navega.entorno.geraURL();
letras=["L","O","N","S"];
for (l=0;l<4; l++){
if ($i("img"+letras[l])){
$i("img"+letras[l]).style.width = i3GEO.parametros.w;
$i("img"+letras[l]).style.height = i3GEO.parametros.h;
$i("img"+letras[l]).style.display = "block";
}
}
i3GEO.configura.entorno = "sim";
i3GEO.navega.entorno.ajustaPosicao();
alert("Entorno ativado. o desenho do mapa pode demorar mais.");
}
},
/*
Function: geraURL
Gera as URLs que serão utilizadas na tag IMG dos elementos do entorno do mapa
*/
geraURL: function(){
var nny,nnx,sy,sx,lx,ly,ox,oy,u,sul,norte,leste,oeste;
nny = (i3GEO.parametros.h / 2) * -1;
nnx = i3GEO.parametros.w / 2;
sy = i3GEO.parametros.h + (i3GEO.parametros.h / 2);
sx = i3GEO.parametros.w / 2;
lx = i3GEO.parametros.w + (i3GEO.parametros.w / 2);
ly = i3GEO.parametros.h / 2;
ox = (parseInt(i3GEO.parametros.w/2,10)) * -1;
oy = i3GEO.parametros.h / 2;
u = window.location.protocol+"\/\/"+window.location.host+i3GEO.parametros.cgi+"?map="+i3GEO.parametros.mapfile;
u += "&mode=map&imgext="+i3GEO.parametros.mapexten+"&mapsize="+nnx+" "+oy;
sul = u+"&imgxy="+sx/2+" "+sy/2;
norte = u+"&imgxy="+nnx/2+" "+nny/2;
leste = u+"&imgxy="+lx/2+" "+ly/2;
oeste = u+"&imgxy="+ox/2+" "+oy/2;
$i("imgS").src=sul;
$i("imgN").src=norte;
$i("imgL").src=leste;
$i("imgO").src=oeste;
},
/*
Function: ajustaPosicao
Ajusta a posição das imagens do entorno do mapa
*/
ajustaPosicao: function(){
$left("img",i3GEO.parametros.w*-1);
$left("imgS",i3GEO.parametros.w*-1);
$left("imgL",i3GEO.parametros.w);
$left("imgO",i3GEO.parametros.w*-3);
$left("imgN",i3GEO.parametros.w*-1);
$top("img",i3GEO.parametros.h*-1);
$top("imgS",i3GEO.parametros.h*-1);
$top("imgL",i3GEO.parametros.h*-1);
$top("imgN",i3GEO.parametros.h*-1);
$top("imgO",i3GEO.parametros.h*-1);
}
},
/*
Classe: i3GEO.navega.lente
Ativa e controla a lente de aumento.
A lente de aumento é um box que pode ser ativado sobre o mapa
mostrando uma imagem ampliada da região onde está o mouse
*/
lente:{
/*
Propriedade: POSICAOX
Define a posição em x da lente em relação ao corpo do mapa
Tipo:
{numeric}
Default:
{0}
*/
POSICAOX: 0,
/*
Propriedade: POSICAOY
Define a posição em y da lente em relação ao corpo do mapa
Tipo:
{numeric}
Default:
{0}
*/
POSICAOY:0,
/*
Variavel: ESTAATIVA
Indica se a lente foi ou não aberta
*/
ESTAATIVA: "nao",
/*
Function: inicia
Ativa a lente de aumento criando os elementos gráficos
necessários e ativando os eventos que controlam a apresentação
da lente
*/
inicia: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.lente.inicia()");}
//insere lente de aumento
var novoel,novoimg,temp;
if (!$i("lente")){
novoel = document.createElement("div");
novoel.id = 'lente';
novoel.style.clip='rect(0px,0px,0px,0px)';
novoimg = document.createElement("img");
novoimg.src="";
novoimg.id='lenteimg';
novoel.appendChild(novoimg);
document.body.appendChild(novoel);
novoel = document.createElement("div");
novoel.id = 'boxlente';
document.body.appendChild(novoel);
}
temp = $i('boxlente').style;
temp.borderWidth = '1' + g_postpx;
temp.borderColor = "red";
temp.display = "block";
$i("lente").style.display = "block";
i3GEO.navega.lente.ESTAATIVA = "sim";
i3GEO.navega.lente.atualiza();
if(i3GEO.eventos.NAVEGAMAPA.toString().search("i3GEO.navega.lente.atualiza()") < 0)
{i3GEO.eventos.NAVEGAMAPA.push("i3GEO.navega.lente.atualiza()");}
if(i3GEO.eventos.MOUSEMOVE.toString().search("i3GEO.navega.lente.movimenta()") < 0)
{i3GEO.eventos.MOUSEMOVE.push("i3GEO.navega.lente.movimenta()");}
},
/*
Function: atualiza
Atualiza a imagem da lente aberta
*/
atualiza: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.lente.atualiza()");}
var temp = function(retorno){
try{
var pos,volta,nimg,olente,oboxlente,olenteimg;
retorno = retorno.data;
if (retorno === "erro")
{alert("A lente nao pode ser criada");return;}
volta = retorno.split(",");
nimg = volta[2];
olente = $i('lente');
oboxlente = $i('boxlente');
olenteimg = $i('lenteimg');
olenteimg.src = nimg;
olenteimg.style.width=volta[0] * 1.5;
olenteimg.style.height=volta[1] * 1.5;
olente.style.zIndex=1000;
olenteimg.style.zIndex=1000;
oboxlente.style.zIndex=1000;
pos = i3GEO.util.pegaPosicaoObjeto($i(i3GEO.Interface.IDMAPA));
olente.style.left = pos[0] + i3GEO.navega.lente.POSICAOX + "px";
olente.style.top = pos[1] + i3GEO.navega.lente.POSICAOY + "px";
oboxlente.style.left = pos[0] + i3GEO.navega.lente.POSICAOX + "px";
oboxlente.style.top = pos[1] + i3GEO.navega.lente.POSICAOY + "px";
oboxlente.style.display='block';
oboxlente.style.visibility='visible';
olente.style.display='block';
olente.style.visibility='visible';
i3GEO.janela.fechaAguarde("ajaxabrelente");
}
catch(e){
i3GEO.janela.fechaAguarde();
if(typeof(console) !== 'undefined'){console.error(e);}
}
};
if(i3GEO.navega.lente.ESTAATIVA === "sim"){
i3GEO.janela.abreAguarde("ajaxabrelente",$trad("o1"));
i3GEO.php.aplicaResolucao(temp,1.5);
}
else{
i3GEO.navega.lente.desativa();
}
},
/*
Function: desativa
Desativa alente aberta
*/
desativa: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.lente.desativa()");}
$i("lente").style.display = "none";
$i("boxlente").style.display = "none";
$i('boxlente').style.borderWidth = 0;
i3GEO.navega.lente.ESTAATIVA = "nao";
i3GEO.eventos.MOUSEMOVE.remove("i3GEO.navega.lente.movimenta()");
i3GEO.eventos.NAVEGAMAPA.remove("i3GEO.navega.lente.atualiza()");
},
/*
Function: movimenta
Movimenta a imagem dentro da lente para refletir a posição do mouse
*/
movimenta: function(){
try{
if(i3GEO.navega.lente.ESTAATIVA === "sim"){
var pos,esq,topo,clipt,i;
if ($i("lente").style.visibility === "visible")
{pos = i3GEO.util.pegaPosicaoObjeto($i(i3GEO.Interface.IDMAPA));}
esq = (objposicaocursor.telax - pos[0]) * 2.25;
topo = (objposicaocursor.telay - pos[1]) * 2.25;
clipt = "rect("+ (topo - 40) + " " + (esq + 40) + " " + (topo + 40) + " " + (esq - 40) +")";
i = $i("lente").style;
i.clip = clipt;
eval("i." + g_tipotop + "= (pos[1] - (topo - 40)) + g_postpx");
eval("i." + g_tipoleft + "= (pos[0] - (esq - 40)) + g_postpx");
}
}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
}
},
/*
Classe: i3GEO.navega.destacaTema
Destaca um tema mostrando-o sobre os outros em um box que segue o mouse
*/
destacaTema:{
/*
Propriedade: TAMANHO
Tamanho do box
Tipo:
{Integer}
Default:
{75}
*/
TAMANHO: 75,
/*
Indica se o destaque está ou não ativo
Tipo:
{sim|nao}
*/
ESTAATIVO: "nao",
/*
Tema que está sendo destacado
Tipo:
{Código do tema}
*/
TEMA: "",
/*
Function: inicia
Inicia o destaque de um tema
Parametros:
tema {String} - código do tema
*/
inicia: function(tema){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.destacaTema.inicia()");}
var novoel,novoeli,janela,pos;
if (!$i("img_d")){
pos = i3GEO.util.pegaPosicaoObjeto($i(i3GEO.Interface.IDMAPA));
novoel = document.createElement("div");
novoel.id = "div_d";
novoel.style.zIndex = 5000;
document.body.appendChild(novoel);
$i("div_d").innerHTML = "<input style='position:relative;top:0px;left:0px'' type=image src='' id='img_d' />";
$i("div_d").style.left = parseInt(pos[0],10);
$i("div_d").style.top = parseInt(pos[1],10);
$i("img_d").style.left = 0;
$i("img_d").style.top = 0;
$i("img_d").style.width = i3GEO.parametros.w;
$i("img_d").style.height = i3GEO.parametros.h;
$i("div_d").style.clip = 'rect(0 75 75 0)';
novoeli = document.createElement("div");
novoeli.id = "div_di";
novoel.appendChild(novoeli);
$i("div_di").innerHTML = "<p style='position:absolute;top:0px;left:0px'>+-</p>";
}
i3GEO.navega.destacaTema.TEMA = tema;
i3GEO.navega.destacaTema.ESTAATIVO = "sim";
i3GEO.navega.destacaTema.atualiza();
janela = i3GEO.janela.cria(160,0,"","center","center","Feche para parar destaque ","ativadesativaDestaque");
YAHOO.util.Event.addListener(janela[0].close, "click", i3GEO.navega.destacaTema.desativa);
if(i3GEO.eventos.NAVEGAMAPA.toString().search("i3GEO.navega.destacaTema.atualiza()") < 0)
{i3GEO.eventos.NAVEGAMAPA.push("i3GEO.navega.destacaTema.atualiza()");}
if(i3GEO.eventos.MOUSEMOVE.toString().search("i3GEO.navega.destacaTema.movimenta()") < 0)
{i3GEO.eventos.MOUSEMOVE.push("i3GEO.navega.destacaTema.movimenta()");}
},
/*
Function: atualiza
Atualiza o destaque
É definido para o evento de navegação do mapa
*/
atualiza: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.destacaTema.atualiza()");}
if(i3GEO.navega.destacaTema.ESTAATIVO === "nao")
{return;}
var temp = function(retorno){
var m,novoel;
retorno = retorno.data;
m = new Image();
m.src = retorno;
$i("div_d").innerHTML = "";
$i("div_d").style.display="block";
novoel = document.createElement("input");
novoel.id = "img_d";
novoel.style.position = "relative";
novoel.style.top = "0px";
novoel.style.left = "0px";
novoel.type = "image";
novoel.src = m.src;
novoel.style.display = "block";
$i("div_d").appendChild(novoel);
i3GEO.janela.fechaAguarde("ajaxdestaca");
};
i3GEO.janela.abreAguarde("ajaxdestaca","Aguarde...gerando imagem");
i3GEO.php.geradestaque(temp,i3GEO.navega.destacaTema.TEMA,i3GEO.parametros.mapexten);
},
/*
Function: desativa
Desativa o destaque
*/
desativa: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.destacaTema.desativa()");}
i3GEO.eventos.NAVEGAMAPA.remove("i3GEO.navega.destacaTema.atualiza()");
i3GEO.eventos.MOUSEMOVE.push("i3GEO.navega.destacaTema.movimenta()");
i3GEO.navega.destacaTema.ESTAATIVO = "nao";
document.body.removeChild($i("div_d"));
},
/*
Function: movimenta
Movimenta o destaque conforme o mouse move
É definido para o evento de deslocamento do mouse
*/
movimenta: function(){
if(i3GEO.navega.destacaTema.ESTAATIVO === "sim")
{$i("div_d").style.clip = 'rect('+(objposicaocursor.imgy - i3GEO.navega.destacaTema.TAMANHO)+" "+(objposicaocursor.imgx - 10)+" "+(objposicaocursor.imgy - 10)+" "+(objposicaocursor.imgx - i3GEO.navega.destacaTema.TAMANHO)+')';}
}
},
/*
Classe: i3GEO.navega.barraDeZoom
Controla a barra (slide) de zoom
*/
barraDeZoom: {
/*
Function: cria
Cria os elementos HTML para a barra de zoom
Return:
{string} - código html
*/
cria: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.barraDeZoom.cria()");}
var temp = "",estilo;
if (navn)
{temp += '<div style="text-align:center;position:relative;left:9px" >';}
estilo = "top:4px;";
if(navm)
{estilo = "top:4px;left:-2px;";}
temp += '<div id="vertMaisZoom" style="'+estilo+'"></div><div id="vertBGDiv" name="vertBGDiv" tabindex="0" x2:role="role:slider" state:valuenow="0" state:valuemin="0" state:valuemax="200" title="Zoom" >';
temp += '<div id="vertHandleDivZoom" ><img alt="" class="slider" src="'+i3GEO.util.$im("branco.gif")+'" /></div></div>';
if(navm)
{temp += '<div id=vertMenosZoom style="left:-1px;" ></div>';}
else
{temp += '<div id=vertMenosZoom ></div>';}
if (navn){temp += '</div>';}
return temp;
},
/*
Function: ativa
Ativa os botões da barra de zoom
*/
ativa: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.barraDeZoom.ativa()");}
var temp;
$i("vertMaisZoom").onmouseover = function(){
i3GEO.ajuda.mostraJanela('Amplia o mapa mantendo o centro atual.');
};
$i("vertMaisZoom").onclick = function(){
if (!$i("imgtemp")){
$i("vertHandleDivZoom").onmousedown.call();
g_fatordezoom = 0;
$i("vertHandleDivZoom").onmousemove.call();
g_fatordezoom = -1;
}
$i("vertHandleDivZoom").onmousemove.call();
i3GEO.barraDeBotoes.BOTAOCLICADO = 'zoomin';
try{
clearTimeout(i3GEO.navega.timerNavega);
}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
i3GEO.navega.timerNavega = setTimeout("$i('vertBGDiv').onmouseup.call();",i3GEO.navega.TEMPONAVEGAR);
if(g_fatordezoom < -6){
$i("vertBGDiv").onmouseup.call();
}
};
$i("vertMenosZoom").onmouseover = function(){
i3GEO.ajuda.mostraJanela('Reduz o mapa mantendo o centro atual.');
};
$i("vertMenosZoom").onclick = function(){
if (!$i("imgtemp")){
$i("vertHandleDivZoom").onmousedown.call();
g_fatordezoom = 0;
$i("vertHandleDivZoom").onmousemove.call();
g_fatordezoom = 1;
}
$i("vertHandleDivZoom").onmousemove.call();
i3GEO.barraDeBotoes.BOTAOCLICADO = 'zoomout';
try{
clearTimeout(i3GEO.navega.timerNavega);
}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
i3GEO.navega.timerNavega = setTimeout("$i('vertBGDiv').onmouseup.call();",i3GEO.navega.TEMPONAVEGAR);
if(g_fatordezoom > 6){
$i("vertBGDiv").onmouseup.call();
}
};
verticalSlider = YAHOO.widget.Slider.getVertSlider("vertBGDiv","vertHandleDivZoom", 0, 70);
verticalSlider.onChange = function(offsetFromStart)
{g_fatordezoom = (offsetFromStart - 35) / 5;};
verticalSlider.setValue(35,true);
if($i("vertBGDiv")){
$i("vertBGDiv").onmouseup = function(){
verticalSlider.setValue(35,true);
if(g_fatordezoom != 0){
temp = i3GEO.navega.TEMPONAVEGAR;
i3GEO.navega.TEMPONAVEGAR = 0;
i3GEO.navega.aplicaEscala(i3GEO.configura.locaplic,i3GEO.configura.sid,i3geo_ns);
i3GEO.navega.TEMPONAVEGAR = temp;
}
g_fatordezoom = 0;
};
}
if($i("vertHandleDivZoom")){
$i("vertHandleDivZoom").onmousedown = function(){
var iclone,corpo;
$i("vertHandleDivZoom").onmouseout = function(e){
if (!e) e = window.event;
if (g_fatordezoom != 0)
{$i("vertBGDiv").onmouseup.call();}
e.onmouseup.returnValue = false;
e.onmouseout.returnValue = false;
};
i3GEO.barraDeBotoes.BOTAOCLICADO='slidezoom';
if (!$i("imgtemp")){
iclone=document.createElement('IMG');
iclone.style.position = "absolute";
iclone.id = "imgtemp";
iclone.style.border="1px solid blue";
$i("img").parentNode.appendChild(iclone);
iclone = $i("imgtemp");
corpo = $i("img");
if(!corpo)
{return;}
iclone.src = corpo.src;
iclone.style.width = i3GEO.parametros.w;
iclone.style.heigth = i3GEO.parametros.h;
iclone.style.top = corpo.style.top;
iclone.style.left = corpo.style.left;
$i("img").style.display = "none";
iclone.style.display = "block";
}
};
}
if($i("vertHandleDivZoom")){
$i("vertHandleDivZoom").onmousemove = function(){
try{
var iclone,corpo,nt,nl,velhoh,velhow,nh,nw,t,l,fatorEscala;
iclone = $i("imgtemp");
corpo = $i("img");
if(!corpo)
{return;}
nt = 0;
nl = 0;
i3geo_ns = parseInt(i3GEO.parametros.mapscale,10);
if ((g_fatordezoom > 0) && (g_fatordezoom < 7)){
g_fatordezoom = g_fatordezoom + 1;
velhoh = i3GEO.parametros.h;
velhow = i3GEO.parametros.w;
nh = velhoh / g_fatordezoom;
nw = velhow / g_fatordezoom;
t = parseInt(corpo.style.top,10);
l = parseInt(corpo.style.left,10);
nt = t + ((velhoh - nh) * 0.5);
nl = l + ((velhow - nw) * 0.5);
fatorEscala = nh/i3GEO.parametros.h;
i3geo_ns=parseInt(i3GEO.parametros.mapscale / fatorEscala,10);
}
if ((g_fatordezoom < 0) && (g_fatordezoom > -7)){
g_fatordezoom = g_fatordezoom - 1;
velhoh = i3GEO.parametros.h;
velhow = i3GEO.parametros.w;
nh = velhoh * g_fatordezoom * -1;
nw = velhow * g_fatordezoom * -1;
t = parseInt(corpo.style.top,10);
l = parseInt(corpo.style.left,10);
nt = t - ((nh - velhoh) * 0.5);
nl = l - ((nw - velhow) * 0.5);
fatorEscala = nh/i3GEO.parametros.h;
i3geo_ns=parseInt(i3GEO.parametros.mapscale / fatorEscala,10);
}
if(iclone){
iclone.style.width = nw;
iclone.style.height = nh;
if (iclone.style.pixelTop)
{iclone.style.pixelTop=nt;}
else
{iclone.style.top=nt+"px";}
if (iclone.style.pixelLeft)
{iclone.style.pixelLeft=nl;}
else
{iclone.style.left=nl+"px";}
}
if ($i("i3geo_escalanum"))
{$i("i3geo_escalanum").value=i3geo_ns;}
}
catch(e){
if(typeof(console) !== 'undefined'){console.error(e);}
}
};
}
}
},
/*
Classe: i3GEO.navega.dialogo
Abre as telas de diálogo das opções de navegação no mapa atual
*/
dialogo:{
/*
Function: wiki
Abre a janela de diálogo da ferramenta wiki permitindo a navegação integrada com a Wikipédia
*/
wiki: function(){
if(typeof(i3GEOF.wiki) === 'undefined')
{i3GEO.util.dialogoFerramenta("i3GEO.navega.dialogo.wiki()","wiki","wiki");}
},
/*
Function: metar
Abre a janela de diálogo da ferramenta metar permitindo a navegação integrada com a rede de dados meteorológicos
*/
metar: function(){
if(typeof(i3GEOF.metar) === 'undefined')
{i3GEO.util.dialogoFerramenta("i3GEO.navega.dialogo.metar()","metar","metar");}
},
/*
Function: buscaFotos
Abre a janela de diálogo da ferramenta metar permitindo a navegação integrada com serviços de armazenamento de fotografias
*/
buscaFotos: function(){
if(typeof(i3GEOF.buscaFotos) === 'undefined')
{i3GEO.util.dialogoFerramenta("i3GEO.navega.dialogo.buscaFotos()","buscafotos","buscaFotos");}
},
/*
Function: google
Abre a janela de diálogo da ferramenta google permitindo a navegação integrada com o GoogleMaps
*/
google: function(){
if(typeof(console) !== 'undefined'){console.info("i3GEO.navega.dialogo.google()");}
if(i3GEO.eventos.NAVEGAMAPA.toString().search("atualizagoogle()") > 0)
{i3GEO.eventos.NAVEGAMAPA.remove("atualizagoogle()");}
i3GEO.util.criaBox();
g_operacao = "navega";
var idgoogle = "googlemaps"+Math.random();
if(navn){i3GEO.janela.cria((i3GEO.parametros.w/2)+25+"px",(i3GEO.parametros.h/2)+18+"px",i3GEO.configura.locaplic+"/ferramentas/googlemaps/index.php","","","Google maps <a class=ajuda_usuario target=_blank href='"+i3GEO.configura.locaplic+"/ajuda_usuario.php?idcategoria=7&idajuda=68' > </a>",idgoogle);}
else
{i3GEO.janela.cria("530px","330px",i3GEO.configura.locaplic+"/ferramentas/googlemaps/index.php","","","Google maps <a class=ajuda_usuario target=_blank href='"+i3GEO.configura.locaplic+"/ajuda_usuario.php?idcategoria=7&idajuda=68' > </a>",idgoogle);}
atualizagoogle = function(){
try{
parent.frames[idgoogle+"i"].panTogoogle();
}
catch(e){
i3GEO.eventos.NAVEGAMAPA.remove("atualizagoogle()");
}
};
if(i3GEO.eventos.NAVEGAMAPA.toString().search("atualizagoogle()") < 0)
{i3GEO.eventos.NAVEGAMAPA.push("atualizagoogle()");}
},
/*
Function: confluence
Abre a janela de diálogo da ferramenta confluence permitindo a navegação integrada com a localização de confluências
*/
confluence: function(){
if(typeof(i3GEOF.confluence) === 'undefined')
{i3GEO.util.dialogoFerramenta("i3GEO.navega.dialogo.confluence()","confluence","confluence");}
}
}
};
//YAHOO.log("carregou classe navega", "Classes i3geo");