classe_arvoredecamadas.js
34.9 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
/*jslint white:false,undef: false, rhino: true, onevar: true, evil: false */
/*
Title: Árvore de camadas
Arquivo:
i3geo/classesjs/classe_arvoredecamadas.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;
tanto a versão 2 da Licença.
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.arvoreDeCamadas
Monta a árvore com os temas existentes no mapa atual. A árvore contém as opções de ligar e desligar temas.
Permite controlar quais as opções que serão mostradas na árvore.
Exemplos:
Para alterar as opções da árvore, modifique as propriedades
i3GEO.arvoreDeCamadas.OPCOESTEMAS = false;
*/
i3GEO.arvoreDeCamadas = {
/*
Propriedade: ARRASTARORDEM
Ativa a opção de arrastar um tema para alterar a ordem de desenho das camadas
Default:
{true}
Type:
{voolean}
*/
ARRASTARORDEM: true,
/*
Propriedade: ARRASTARLIXEIRA
Ativa a opção de arrastar um tema para a lixeria quando se quer removê-lo do mapa.
Default:
{true}
Type:
{voolean}
*/
ARRASTARLIXEIRA: true,
/*
Propriedade: EXPANDIDA
Indica se a árvore será montada de forma expandida ou não. Se true, os nós do primeiro nível serão abertos na inicialização da árvore.
Default:
{false}
Tipo:
{Boolena}
*/
EXPANDIDA: false,
/*
Propriedade: LEGENDAEXPANDIDA
Indica se a legenda da árvore será montada de forma expandida ou não.
Default:
{false}
Tipo:
{Boolena}
*/
LEGENDAEXPANDIDA: false,
/*
Propriedade: OPCOESICONES
Inclui ou não os ícones de opções em cada tema (farol, zoom para o tema, etc)
Default:
{true}
Tipo:
{boolean}
*/
OPCOESICONES: true,
/*
Propriedade: OPCOESTEMAS
Inclui ou não o nó com as opções de manipulação de cada tema.
Default:
true
Tipo:
{Boolean}
*/
OPCOESTEMAS: true,
/*
Propriedade: OPCOESLEGENDA
Inclui ou não o nó para mostrar a legenda do tema.
Default:
true
Tipo:
{Boolean}
*/
OPCOESLEGENDA: true,
/*
Propriedade: AGUARDALEGENDA
Ativa a opção de aguarde para mostrar a legenda de um tema quando o usuário estaciona o mouse sobre o nome de um tema.
Default:
{true}
Tipo:
{Boolean}
*/
AGUARDALEGENDA: false,
/*
Variavel: CAMADAS
Objeto com a lista de camadas existentes no mapa. É definido na inicialização ou no redesenho do mapa.
Este objeto é construído nas operações em PHP de inicialização ou redesenho do mapa.
Exemplo:
"temas":[
{
"name":"estadosl", //código do layer
"status":2, //ver constante MS_STATUS do Mapserver
"tema":"Limite Estadual",
"transparency":100,
"type":1, //ver constante MS_TYPE do Mapserver
"sel":"nao",
"escala":"250000",
"download":"",
"features":"nao",
"connectiontype":1, //ver constante MS_CONNECTIONTYPE do Mapserver
"zoomtema":"sim",
"contextoescala":"nao",
"etiquetas":""
}
]
Tipo:
{JSON}
*/
CAMADAS: "",
/*
Variavel: ARVORE
Objeto com a árvore criada com YAHOO.widget.TreeView
Tipo:
{YAHOO.widget.TreeView}
*/
ARVORE: null,
/*
Variavel: IDHTML
Armazena o ID do elemento DOM onde a árvore foi inserida.
Tipo:
{String}
*/
IDHTML: null,
/*
Variavel: SID
Código da seção aberta no servidor pelo i3Geo
Tipo:
{String}
*/
SID: null,
/*
Variavel: LOCAPLIC
Endereço da aplicação i3geo. Utilizado para definir o caminho para a chamada em AJAX.
Exemplo: 'http://localhost/i3geo'
Tipo:
{String}
*/
LOCAPLIC: null,
/*
Variavel: ATIVATEMA
Nome da função que será incluída no evento onclick do elemento checkbox adicionado no início do nome de um tema.
Tipo:
{String}
*/
ATIVATEMA: "",
/*
Function: cria
Cria a árvore com as opções de manipulação das camadas existentes no mapa
Parametros:
onde {String} - ID do elemento DOM onde a árvore será inserida. Se for definido como "" o id será buscado da variável IDHTML.
temas {JSON} - Objeto JSON com as camadas e propriedades
g_sid {String} - Código da seção PHP criada ao abrir o i3Geo
funcaoTema {String} - (opcional) Nome da função que será incluida no evento disparado quando o usuário clicar no checkbox de um tema
*/
cria: function(onde,temas,g_sid,g_locaplic,funcaoTema){
//YAHOO.log("Criando a árvore de camadas", "i3geo");
if(arguments.length == 5){
i3GEO.arvoreDeCamadas.ATIVATEMA = funcaoTema;
}
this.SID = g_sid;
this.LOCAPLIC = g_locaplic;
if(onde !== "")
{this.IDHTML = onde;}
if(this.IDHTML === ""){return;}
this.atualiza(temas);
},
/*
Function: atualiza
Atualiza a árvore de camadas.
Antes de executar a atualização, essa função verifica se é necessário fazê-lo.
O objeto CAMADAS é comparado com o parâmetro "temas" para verificar se existem diferenças que
justifiquem a atualização.
Parametro:
temas {JSON} - Objeto com a lista de camadas e propriedades (veja CAMADAS)
*/
atualiza: function(temas){
if(this.comparaTemas(temas,this.CAMADAS)){return;}
var currentIconMode,newVal,root,tempNode,titulo,d,c,ltema,temaNode,i,j,n,nk,k,incluidos=[];
if(!document.getElementById(i3GEO.arvoreDeCamadas.IDHTML)){return;}
document.getElementById(i3GEO.arvoreDeCamadas.IDHTML).innerHTML = "";
this.CAMADAS = temas;
YAHOO.example.treeExample = function(){
function changeIconMode(){
newVal = parseInt(this.value,10);
if (newVal != currentIconMode)
{currentIconMode = newVal;}
buildTree();
}
function buildTree(){
i3GEO.arvoreDeCamadas.ARVORE = new YAHOO.widget.TreeView(i3GEO.arvoreDeCamadas.IDHTML);
root = i3GEO.arvoreDeCamadas.ARVORE.getRoot();
tempNode = new YAHOO.widget.TextNode('', root, false);
tempNode.isLeaf = false;
tempNode.enableHighlight = false;
}
buildTree();
}();
root = i3GEO.arvoreDeCamadas.ARVORE.getRoot();
titulo = "<table><tr><td><b>"+$trad("a7")+"</b></td><td>";
if(i3GEO.arvoreDeCamadas.ARRASTARLIXEIRA === true)
{titulo += "<img id='i3geo_lixeira' title='"+$trad("t2")+"' src='"+i3GEO.util.$im("branco.gif")+"' />";}
titulo += "</td></tr></table>";
d = {html:titulo};
tempNode = new YAHOO.widget.HTMLNode(d, root, true,true);
tempNode.enableHighlight = false;
//
//monta a árvore.
//se i3GEO.configura.grupoLayers estiver definido
//o processo é diferenciado
//
if (i3GEO.configura.grupoLayers === ""){
c = temas.length;
for (i=0, j=c; i<j; i++){
ltema = temas[i];
d = {html:i3GEO.arvoreDeCamadas.montaTextoTema(ltema),id:ltema.name,tipo:"tema"};
temaNode = new YAHOO.widget.HTMLNode(d, tempNode, i3GEO.arvoreDeCamadas.EXPANDIDA,true);
temaNode.setDynamicLoad(i3GEO.arvoreDeCamadas.montaOpcoes, currentIconMode);
temaNode.expanded = false;
temaNode.enableHighlight = false;
}
}
else{
nk = temas.length;
c = i3GEO.configura.grupoLayers.length;
//grupos
for(i=0;i<c; i++){
d = {html:"<b>"+i3GEO.configura.grupoLayers[i].nome+"</b>"};
temaNode = new YAHOO.widget.HTMLNode(d, tempNode, false,true);
temaNode.expanded = false;
temaNode.enableHighlight = false;
n = i3GEO.configura.grupoLayers[i].layers.length;
//layers de um grupo
for(j=0;j<n; j++){
//busca na lista de temas
for(k=0;k<nk; k++){
ltema = temas[k];
if(ltema.name === i3GEO.configura.grupoLayers[i].layers[j]){
d = {html:i3GEO.arvoreDeCamadas.montaTextoTema(ltema),id:ltema.name,tipo:"tema"};
temaNode = new YAHOO.widget.HTMLNode(d, tempNode, i3GEO.arvoreDeCamadas.EXPANDIDA,true);
temaNode.setDynamicLoad(i3GEO.arvoreDeCamadas.montaOpcoes, currentIconMode);
temaNode.expanded = false;
temaNode.enableHighlight = false;
incluidos.push(ltema.name);
}
}
}
}
//inclui os temas não agrupados
d = {html:"<b>Outros</b>"};
temaNode = new YAHOO.widget.HTMLNode(d, tempNode, false,true);
temaNode.expanded = false;
temaNode.enableHighlight = false;
c = incluidos.length;
for(k=0;k<nk; k++){
ltema = temas[k];
n = false;
for(j=0;j<c; j++){
if(incluidos[j] === ltema.name)
{n = true;}
}
if (n === false){
d = {html:i3GEO.arvoreDeCamadas.montaTextoTema(ltema),id:ltema.name,tipo:"tema"};
temaNode = new YAHOO.widget.HTMLNode(d, tempNode, i3GEO.arvoreDeCamadas.EXPANDIDA,true);
temaNode.setDynamicLoad(i3GEO.arvoreDeCamadas.montaOpcoes, currentIconMode);
temaNode.expanded = false;
temaNode.enableHighlight = false;
}
}
}
document.getElementById(i3GEO.arvoreDeCamadas.IDHTML).style.textAlign="left";
i3GEO.arvoreDeCamadas.ARVORE.draw();
if(i3GEO.arvoreDeCamadas.ARRASTARORDEM === true || i3GEO.arvoreDeCamadas.ARRASTARLIXEIRA === true)
{this.ativaDragDrop();}
//
//verifica se a ferramenta identifica está ativa para atualizar a lista de temas
//
try{
if($i("i3GEOidentificalistaTemas")){
i3GEOF.identifica.listaTemas();
g_tipoacao = "identifica";
}
}
catch(r){}
},
/*
Function: ativaDragDrop
Ativa a funcionalidade de arrastar um tema para mudar sua ordem de desenho ou excluir do mapa
*/
ativaDragDrop: function(){
var Dom,Event,DDM;
Dom = YAHOO.util.Dom;
Event = YAHOO.util.Event;
DDM = YAHOO.util.DragDropMgr;
YAHOO.example.DDList = "";
YAHOO.example.DDApp = {
init: function()
{
var ddtarget,i,ltema,ddlist;
if($i("i3geo_lixeira") && i3GEO.arvoreDeCamadas.ARRASTARLIXEIRA === true)
{ddtarget = new YAHOO.util.DDTarget("i3geo_lixeira");}
i = i3GEO.arvoreDeCamadas.CAMADAS.length-1;
if (i3GEO.arvoreDeCamadas.CAMADAS.length-1 >= 0){
do{
ltema = i3GEO.arvoreDeCamadas.CAMADAS[i];
if($i("arrastar_"+ltema.name))
{ddlist = new YAHOO.example.DDList("arrastar_"+ltema.name);}
}
while(i--);
}
}
};
YAHOO.example.DDList = function(id, sGroup, config) {
YAHOO.example.DDList.superclass.constructor.call(this, id, sGroup, config);
this.logger = this.logger || YAHOO;
Dom.setStyle(this.getDragEl(), "opacity", 0.67); // The proxy is slightly transparent
this.goingUp = false;
this.lastY = 0;
};
YAHOO.extend(
YAHOO.example.DDList, YAHOO.util.DDProxy, {
startDrag: function(x, y){
var dragEl,clickEl;
this.logger.log(this.id + " startDrag");
// make the proxy look like the source element
dragEl = this.getDragEl();
clickEl = this.getEl();
Dom.setStyle(clickEl, "visibility", "hidden");
dragEl.innerHTML = clickEl.innerHTML;
Dom.setStyle(dragEl, "color", Dom.getStyle(clickEl, "color"));
Dom.setStyle(dragEl, "backgroundColor", Dom.getStyle(clickEl, "backgroundColor"));
Dom.setStyle(dragEl, "border", "4px solid gray");
Dom.setStyle(dragEl, "z-index", "5000");
},
endDrag: function(e){
var srcEl,proxy,a,thisid,proxyid;
srcEl = this.getEl();
proxy = this.getDragEl();
// Show the proxy element and animate it to the src element's location
Dom.setStyle(proxy, "visibility", "");
a = new YAHOO.util.Motion(
proxy,{
points:
{to: Dom.getXY(srcEl)}
},
0.2,
YAHOO.util.Easing.easeOut
);
proxyid = proxy.id;
thisid = this.id;
// Hide the proxy and show the source element when finished with the animation
a.onComplete.subscribe(
function(){
Dom.setStyle(proxyid, "visibility", "hidden");
Dom.setStyle(thisid, "visibility", "");
}
);
a.animate();
if ($i("i3geo_lixeira"))
{$i("i3geo_lixeira").style.border = "0px solid blue";}
},
onDragDrop: function(e, id){
var pt,region,tema,destEl,els,lista,noid;
if (DDM.interactionInfo.drop.length === 1){
pt = DDM.interactionInfo.point;
region = DDM.interactionInfo.sourceRegion;
if (!region.intersect(pt)){
DDM.refreshCache();
//exclui tema
if(DDM.getDDById(id).id == "i3geo_lixeira"){
if(i3GEO.arvoreDeCamadas.ARRASTARLIXEIRA === true){
i3GEO.janela.abreAguarde("ajaxCorpoMapa",$trad("o1"));
tema = (this.getEl()).id.split("arrastar_")[1];
i3GEO.contadorAtualiza++;
i3GEO.php.excluitema(i3GEO.atualiza,tema);
i3GEO.temaAtivo = "";
}
}
//muda ordem de desenho do tema
else{
if(i3GEO.arvoreDeCamadas.ARRASTARORDEM === true){
i3GEO.janela.abreAguarde("i3GEO.atualiza",$trad("o1"));
destEl = Dom.get(id);
noid = id.split("arrastar_")[1];
destEl.appendChild(this.getEl());
els = i3GEO.arvoreDeCamadas.listaLigadosDesligados();
lista = els[2].join(",");
i3GEO.contadorAtualiza++;
i3GEO.php.reordenatemas(i3GEO.atualiza,lista);
}
}
}
}
},
onDrag: function(e){
// Keep track of the direction of the drag for use during onDragOver
var y;
y = Event.getPageY(e);
if (y < this.lastY)
{this.goingUp = true;}
else
if (y > this.lastY)
{this.goingUp = false;}
this.lastY = y;
},
onDragOver: function(e, id) {
var srcEl,destEl;
srcEl = this.getEl();
destEl = Dom.get(id);
// We are only concerned with list items, we ignore the dragover
// notifications for the list.
if ($i("i3geo_lixeira") && id == "i3geo_lixeira")
{$i("i3geo_lixeira").style.border = "1px solid red";}
else{destEl.style.textDecoration="underline";}
},
onDragOut: function(e, id)
{$i(id).style.textDecoration="none";}
}
);
Event.onDOMReady(YAHOO.example.DDApp.init, YAHOO.example.DDApp, true);
},
/*
Function: montaOpcoes
Abre o segundo nível da árvore de temas, mostrando as opções disponíveis para cada tema.
Nesse segundo nível são mostrados alguns ícones como o farol, excluir, etc, além do nó de opções e legenda.
Parametro:
node {YAHOO.widget.HTMLNode} - Nó que foi clicado
*/
montaOpcoes: function(node){
//YAHOO.log("Montando as opções da árvore de camadas", "i3geo");
var d,conteudo,opcoesNode,idtema,ltema,farol,mfarol,tnome,iconesNode;
idtema = node.data.id;
ltema = i3GEO.arvoreDeCamadas.pegaTema(idtema);
if(i3GEO.arvoreDeCamadas.OPCOESICONES === true){
farol = "maisamarelo.png";
mfarol = "";
if (ltema.escala*1 < i3GEO.parametros.mapscale*1){
farol = "maisverde.png";
mfarol = $trad("t9");
}
if (ltema.escala*1 > i3GEO.parametros.mapscale*1){
farol = "maisvermelho.png";
mfarol = $trad("t10");
}
if (ltema.escala === 0){
farol = "maisamarelo.png";
mfarol = $trad("t11");
}
tnome = " <img id='farol"+ltema.name+"' src='"+i3GEO.util.$im(farol)+"' title='"+mfarol+"' />";
tnome += " <img id='idx"+ltema.name+"' class='x' src='"+i3GEO.util.$im("branco.gif")+"' title='"+$trad("t12")+"' onclick='i3GEO.tema.exclui(\""+ltema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t12a")+"','exclui')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";
tnome += " <img class='sobe' src='"+i3GEO.util.$im("branco.gif") +"' title='"+$trad("t13")+"' onclick='i3GEO.tema.sobe(\""+ltema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t14")+"','sobe')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";
tnome += " <img class='desce' src='"+i3GEO.util.$im("branco.gif") +"' title='"+$trad("t15")+"' onclick='i3GEO.tema.desce(\""+ltema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t16")+"','desce')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";
tnome += " <img class='fonte' src='"+i3GEO.util.$im("branco.gif") +"' title='"+$trad("a9")+"' onclick='i3GEO.tema.fonte(\""+ltema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("a9")+"','fonte')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";
//a operação de zoom para o tema não funciona na interface flamingo
if( (ltema.zoomtema == "sim") && (i3GEO.Interface.ATUAL != "flamingo"))
{tnome += " <img class='extent' src='"+i3GEO.util.$im("branco.gif") +"' title='"+$trad("t17")+"' onclick='i3GEO.tema.zoom(\""+ltema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t18")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";}
d = {html:tnome};
iconesNode = new YAHOO.widget.HTMLNode(d, node, false,true);
iconesNode.enableHighlight = false;
iconesNode.isLeaf = true;
}
if(i3GEO.arvoreDeCamadas.OPCOESTEMAS === true){
conteudo = $trad("t18a");
d = {html:conteudo,idopcoes:ltema.name};
opcoesNode = new YAHOO.widget.HTMLNode(d, node, false,true);
opcoesNode.enableHighlight = false;
opcoesNode.setDynamicLoad(i3GEO.arvoreDeCamadas.mostraOpcoes, 1);
}
if(i3GEO.arvoreDeCamadas.OPCOESLEGENDA === true){
conteudo = $trad("p3");
d = {html:conteudo,idlegenda:ltema.name};
opcoesNode = new YAHOO.widget.HTMLNode(d, node, i3GEO.arvoreDeCamadas.LEGENDAEXPANDIDA,true);
opcoesNode.setDynamicLoad(i3GEO.arvoreDeCamadas.mostraLegenda, 1);
opcoesNode.enableHighlight = false;
}
node.loadComplete();
//YAHOO.log("Opções OK", "i3geo");
},
/*
Function: mostraOpcoes
Monta os nós filhos do nó "opções"
Parametro:
node {YAHOO.widget.HTMLNode}
*/
mostraOpcoes: function(node){
//YAHOO.log("Mostrando as opções da árvore de camadas", "i3geo");
var idtema,ltema,tnome,d,n;
idtema = node.data.idopcoes;
ltema = i3GEO.arvoreDeCamadas.pegaTema(idtema);
if(navm)
{tnome = "<span onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t19")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" >"+$trad("t20")+"</span> <a class=ajuda_usuario target=_blank href='"+i3GEO.configura.locaplic+"/ajuda_usuario.php?idcategoria=5&idajuda=42' > </a>"+$inputText("","","tr"+ltema.name,"","3",ltema.transparency)+" <a class='tic' onclick='i3GEO.tema.mudatransp(\""+ltema.name+"\")' href='#' /a>";}
else
{tnome = "<span onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t19")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" >"+$trad("t20")+"</span> <a class=ajuda_usuario target=_blank href='"+i3GEO.configura.locaplic+"/ajuda_usuario.php?idcategoria=5&idajuda=42' > </a>"+$inputText("","","tr"+ltema.name,"","3",ltema.transparency)+"<img class='tic' style='position:relative;top:3px;' onclick='i3GEO.tema.mudatransp(\""+ltema.name+"\")' src='"+i3GEO.util.$im("branco.gif")+"' />";}
d = {html:tnome};
n = new YAHOO.widget.HTMLNode(d, node, false,true);
n.enableHighlight = false;
n.isLeaf = true;
if(navm)
{tnome = "<span onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t21a")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />"+$trad("t21")+" </span> <a class=ajuda_usuario target=_blank href='"+i3GEO.configura.locaplic+"/ajuda_usuario.php?idcategoria=5&idajuda=43' > </a>"+$inputText("","","nn"+ltema.name,"","8","")+" <a class='tic' onclick='i3GEO.tema.mudanome(\""+ltema.name+"\")' href='#' />";}
else
{tnome = "<span onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t21a")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />"+$trad("t21")+" </span> <a class=ajuda_usuario target=_blank href='"+i3GEO.configura.locaplic+"/ajuda_usuario.php?idcategoria=5&idajuda=43' > </a>"+$inputText("","","nn"+ltema.name,"","10","")+"<img class='tic' style='position:relative;top:3px;' onclick='i3GEO.tema.mudanome(\""+ltema.name+"\")' src='"+i3GEO.util.$im("branco.gif")+"' />";}
d = {html:tnome};
n = new YAHOO.widget.HTMLNode(d, node, false,true);
n.enableHighlight = false;
n.isLeaf = true;
if ((ltema.type < 3) && (ltema.connectiontype != 7)){
if(i3GEO.Interface.ATUAL != "flamingo")
{i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t22"),$trad("t23"),'i3GEO.tema.dialogo.procuraratrib(\"'+ltema.name+'\")',node);}
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t24"),$trad("t25"),'i3GEO.tema.dialogo.toponimia(\"'+ltema.name+'\")',node);
if(i3GEO.Interface.ATUAL == "padrao"){
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t26"),$trad("t27"),'i3GEO.tema.dialogo.etiquetas(\"'+ltema.name+'\")',node);
}
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t28"),$trad("t29"),'i3GEO.tema.dialogo.filtro(\"'+ltema.name+'\")',node);
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t30"),$trad("t31"),'i3GEO.tema.dialogo.tabela(\"'+ltema.name+'\")',node);
if(i3GEO.parametros.versaoms > 4){
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t37"),$trad("t37"),'i3GEO.tema.dialogo.graficotema(\"'+ltema.name+'\")',node);
}
}
if (ltema.type < 4){
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t32"),$trad("t33"),'i3GEO.tema.dialogo.editaLegenda(\"'+ltema.name+'\")',node);
}
if(i3GEO.Interface.ATUAL == "padrao"){
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t34"),$trad("t35"),'i3GEO.navega.destacaTema.inicia(\"'+ltema.name+'\")',node);
}
i3GEO.arvoreDeCamadas.adicionaOpcaoTema($trad("t38"),$trad("t39"),'i3GEO.tema.dialogo.sld(\"'+ltema.name+'\")',node);
node.loadComplete();
//YAHOO.log("Opções OK", "i3geo");
},
/*
Function: adicionaOpcaoTema
Adiciona uma nova opção no nó de opções de um tema
Parametros:
dica {String} - dica que será mostrada na janela de mensagens do mapa quando o usuário sobrepoem o mouse
titulo {String} - título que será mostrado no nó
onclick {String} - string que define o evento onclick sobre o título da opção
node {String} - objeto node da árvore (YUI) que receberá o novo nó
*/
adicionaOpcaoTema:function(dica,titulo,onclick,node){
var tnome,d,n;
tnome = "<a href='#' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+dica+"','');\" onclick="+onclick+">"+titulo+" </a>";
d = {html:tnome};
n = new YAHOO.widget.HTMLNode(d, node, false,true);
n.enableHighlight = false;
n.isLeaf = true;
},
/*
Function: mostraLegenda
Monta os nós filhos do nó "legenda"
Parametro:
node - {YAHOO.widget.HTMLNode}
*/
mostraLegenda: function(node){
//YAHOO.log("Mostrando a legenda da árvore de camadas", "i3geo");
var idtema,ltema,retorna;
idtema = node.data.idlegenda;
ltema = i3GEO.arvoreDeCamadas.pegaTema(idtema);
retorna = function(retorno){
var original,i,re,tabela,linhas,linha,colunas,id,exp,incluir,d,nodeLeg,elementos,nelementos,inputs,desativar,nindices;
if(retorno.data.legenda){
original = retorno;
retorno = retorno.data.legenda;
if (retorno[0]){
if ((navn) && (!retorno[0].imagem)){tabela = retorno;}
else{
i = retorno[0].imagem;
re = new RegExp("tiff", "g");
i = i.replace(re,'png');
tabela = "<img src='"+i+"' />";
}
retorno = "";
}
else{
linhas = retorno.split("#");
if (linhas.length > 1){
linhas = retorno.split("|");
tabela = "<table>";
linha = linhas.length-1;
if(linha >= 0){
do{
colunas = linhas[linha].split("#");
id = colunas[0]+"-"+colunas[1];
re = new RegExp("'", "g");
exp = colunas[3].replace(re,'"');
tabela += "<tr style='border-top:1px solid rgb(240,240,240);'><td><img src='"+colunas[4]+"' </td><td style='text-align:left'>"+colunas[2]+"</td></tr>";
}
while(linha--);
}
tabela += "</table><br>";
}
else{tabela = retorno;}
}
}
else {tabela = "<img src='"+retorno.data[0].imagem+"' />";} //o tema é um wms
incluir = "<div style='text-align:left' id='"+idtema+"verdiv"+"'>"+tabela+"</div>";
d = {html:incluir};
nodeLeg = new YAHOO.widget.HTMLNode(d, node, false,false);
nodeLeg.enableHighlight = false;
node.loadComplete();
//
//desliga os checkbox que foram desativados
//pega os objetos input
//
elementos = document.getElementById(idtema+"verdiv").getElementsByTagName("input");
nelementos = elementos.length;
inputs = [];
i = 0;
if (nelementos > 0){
do{
if (elementos[i].type == "checkbox"){inputs.push(elementos[i]);}
i++;
}
while(i < nelementos);
}
if(original.data.desativar){
desativar = original.data.desativar;
nindices = desativar.length;
i = 0;
if (nindices > 0){
do{
inputs[desativar[i]].checked = false;
i++;
}
while(i < nindices);
}
}
};
if(i3GEO.configura.templateLegenda !== "")
{i3GEO.php.criaLegendaHTML(retorna,idtema,i3GEO.configura.templateLegenda);}
else
{i3GEO.php.criaLegendaHTML(retorna,idtema);}
},
/*
Function: atualizaLegenda
Atualiza a legenda de um tema.
A legenda precisa ser atualizada emalgumas circunstâncias, como quando é feitoumzoom no mapa.
Parametro:
id {String} - ID (name) do tema
*/
atualizaLegenda: function(idtema){
//YAHOO.log("Atualizando a legenda da árvore de camadas", "i3geo");
var node;
if(document.getElementById(idtema+"verdiv"))
{
node = i3GEO.arvoreDeCamadas.ARVORE.getNodeByProperty("idlegenda",idtema);
if(node)
{
i3GEO.arvoreDeCamadas.ARVORE.removeChildren(node);
this.mostraLegenda(node);
//atualiza as janelas individuais com as legendas de cada tema
if($i("janelaLegenda"+idtema+"_corpo"))
{i3GEO.tema.mostralegendajanela(idtema,"","abrejanela");}
}
}
//YAHOO.log("Legenda OK", "i3geo");
},
/*
Function: inverteStatusClasse
Liga ou desliga uma classe da legenda.
A chamada dessa função é definida em aplicmap/legenda2.htm
Parametro:
leg {Object input} - objeto do tipo INPUT com o id da classe e o id do tema
*/
inverteStatusClasse: function (leg){
//YAHOO.log("Invertendo o status da árvore de camadas", "i3geo");
var temp = function()
{i3GEO.atualiza("");};
i3GEO.php.inverteStatusClasse(temp,leg.name,leg.value);
},
/*
Function: montaTextoTema
Monta o texto com o título do tema. Esse texto é o que será mostrado nos nós principais da árvore e
contém o checkbox para ligar e desligar o tema.
Parametro:
tema - {Object} - objeto JSON com as propriedades do tema
Return:
{String} - texto formatado
*/
montaTextoTema: function(tema){
var ck,html;
if(tema.status == 2){ck = ' CHECKED ';}
else
{ck = "";}
html = "<p id='arrastar_"+tema.name+"' style='text-align:left;font-size:11px;' ><input class=inputsb style='cursor:pointer;' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t3")+"','ligadesliga')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" type='checkbox' name=\"layer\" value='"+tema.name+"' "+ ck ;
if(i3GEO.arvoreDeCamadas.ATIVATEMA !== "")
{html += "onclick=\""+i3GEO.arvoreDeCamadas.ATIVATEMA+"\"";}
else
{html += "onclick='i3GEO.util.criaBotaoAplicar(\"i3GEO.arvoreDeCamadas.aplicaTemas\",\""+$trad("p14")+"\",\"i3geoBotaoAplicarCamadas\",this)'";}
html += " />";
if (tema.contextoescala == "sim")
{html += " <img src="+i3GEO.util.$im("contextoescala.png")+" title='"+$trad("t36")+"' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t36")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";}
if (tema.sel == "sim"){
html += " <img src="+i3GEO.util.$im("estasel.png")+" title='"+$trad("t4")+"' onclick='i3GEO.tema.limpasel(\""+tema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t5")+"','limpasel')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";
html += " <img src="+i3GEO.util.$im("zoomsel.gif")+" title='"+$trad("t4a")+"' onclick='i3GEO.tema.zoomsel(\""+tema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t5")+"','zoomsel')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";
}
if ((tema.download == "sim") || (tema.download == "SIM"))
{html += " <img src="+i3GEO.util.$im("down1.gif") +" title='download' onclick='i3GEO.tema.dialogo.download(\""+tema.name+"\")' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t6")+"','download')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" />";}
if(i3GEO.arvoreDeCamadas.AGUARDALEGENDA)
{html += " <span style='cursor:move' onclick=\"i3GEO.tema.mostralegendajanela('"+tema.name+"','"+tema.tema+"','abrejanela');\" onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t7a")+"','');i3GEO.tema.mostralegendajanela('"+tema.name+"','"+tema.tema+"','ativatimer');\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('');i3GEO.tema.mostralegendajanela('"+tema.name+"','','desativatimer');\" >"+tema.tema+"</span>";}
else
{html += " <span style='cursor:move' onmouseover=\"javascript:i3GEO.ajuda.mostraJanela('"+$trad("t7")+"','')\" onmouseout=\"javascript:i3GEO.ajuda.mostraJanela('')\" >"+tema.tema+"</span>";}
html += "</p>";
return(html);
},
/*
Function: atualizaFarol
Atualiza o farol de cada tema.
O farol identifica a compatibilidade da escala do mapa com a escala de cada tema
Parametro:
mapscale {Numeric} - escala de comparação com a escala de cada tema
*/
atualizaFarol: function(mapscale)
{
//YAHOO.log("Atualizando o farol da árvore de camadas", "i3geo");
var farol,l,ltema,escala;
farol = "maisamarelo.png";
l = i3GEO.arvoreDeCamadas.CAMADAS.length-1;
if (l >= 0){
do{
ltema = i3GEO.arvoreDeCamadas.CAMADAS[l];
escala = ltema.escala;
if (escala*1 < mapscale*1)
{farol = "maisverde.png";}
if (escala*1 > mapscale*1)
{farol = "maisvermelho.png";}
if (escala*1 === 0)
{farol = "maisamarelo.png";}
if ($i("farol"+ltema.name)){
$i("farol"+ltema.name).src = i3GEO.configura.locaplic+"/imagens/"+farol;
}
}
while(l--);
}
//YAHOO.log("Farol OK", "i3geo");
},
/*
Function: aplicaTemas
Refaz o mapa ligando e desligando os temas conforme consta na árvore de camadas
*/
aplicaTemas: function(){
//YAHOO.log("Mudando status ligado/desligado de um tema", "i3geo");
var t,temp;
t = i3GEO.arvoreDeCamadas.listaLigadosDesligados();
//
//zera o contador de tempo
//
temp = function(){
i3GEO.atualiza();
i3GEO.janela.fechaAguarde("redesenha");
};
clearTimeout(tempoBotaoAplicar);
tempoBotaoAplicar = "";
i3GEO.janela.abreAguarde("redesenha",$trad("o1"));
i3GEO.php.ligatemas(temp,t[1].toString(),t[0].toString());
},
/*
Function: listaLigadosDesligados
Lista os temas que estão ligados e os que estão desligados
tendo como fonte de busca os checkbox existentes na árvore.
Esse método é mais demorado pois varre a árvore toda. Porém, obtém o status verdadeiro do tema.
Return:
{Array} - array com os códigos dos temas [0]=ligados [1]=desligados [2]=todos na ordem encontrada
*/
listaLigadosDesligados: function(){
var nos,ligados,desligados,todos,n,i,no,cs,csn,j,c;
nos = i3GEO.arvoreDeCamadas.ARVORE.getNodesByProperty("tipo","tema");
ligados = [];
desligados = [];
todos = [];
n = nos.length;
i=0;
do{
try{
no = nos[i].getEl();
cs = no.getElementsByTagName("input");
csn = cs.length;
for(j=0;j<csn;j++){
c = cs[j];
if(c.name=="layer"){
if(c.checked === true)
{ligados.push(c.value);}
else
{desligados.push(c.value);}
todos.push(c.value);
}
}
i++;
} catch(e){i++;}
}
while(i<n);
return ([ligados,desligados,todos]);
},
/*
Function: comparaTemas
Compara se dois objetos com as camadas são iguais
Parametros:
novo {JSON} - objeto novo
atual {JSON} - objeto atual
Return:
{Boolean}
*/
comparaTemas: function(novo,atual){
try{
var novon = novo.length,i;
if(novon != atual.length)
{return (false);}
for (i=0;i<novon;i++){
if(novo[i].name != atual[i].name)
{return (false);}
if(novo[i].tema != atual[i].tema)
{return (false);}
if(novo[i].sel != atual[i].sel)
{return (false);}
}
return(true);
}
catch(e){return true;}
},
/*
Function: pegaTema
Procura um tema no objeto CAMADAS.
Parametro:
idtema - {String} ID do tema que será procurado
Return:
{JSON}
*/
pegaTema: function(idtema){
var c,i,v = "";
c = i3GEO.arvoreDeCamadas.CAMADAS.length;
for (i=0; i<c; i++){
if(i3GEO.arvoreDeCamadas.CAMADAS[i].name == idtema){
v = i3GEO.arvoreDeCamadas.CAMADAS[i];
}
}
return v;
},
/*
Function: filtraCamadas
Busca temas na variável i3GEO.arvoreDeCamadas.CAMADAS aplicando um filtro
Parameters:
propriedade {string} - propriedade de CAMADAS que será filtrado
valor - valor do filtro
operador {string} - operador entre propriedade e valor igual|diferente
camadas {array} - array do tipo i3GEO.arvoreDeCamadas.CAMADAS
Return:
{Array}
*/
filtraCamadas: function(propriedade,valor,operador,camadas){
var resultado = [],
i = 0,
temp,
nelementos = camadas.length,
ltema;
if (nelementos > 0){
do{
ltema = camadas[i];
temp = eval("ltema."+propriedade);
if(operador === "igual"){
if(temp === valor)
{resultado.push(ltema);}
}
if(operador === "diferente"){
if(temp !== valor)
{resultado.push(ltema);}
}
i++;
}
while(i < nelementos);
}
return resultado;
}
};
//
//para efeitos de compatibilidade
i3GEO.arvoreDeCamadas.IDHTML = "listaTemas";
//YAHOO.log("carregou classe arvoredecamadas", "Classes i3geo");