editormapfile.js
103 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
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
/*
Title: editormapfile.js
Funções que controlam a interface do editor de mapfiles (temas)
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@gmail.com
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.
Arquivo:
i3geo/admin/js/editormapfile.js
*/
contaN = 0;
objcontype = [
{texto:"MS_INLINE",valor:"0"},
{texto:"MS_SHAPEFILE",valor:"1"},
{texto:"MS_TILED_SHAPEFILE",valor:"2"},
{texto:"MS_SDE",valor:"3"},
{texto:"MS_OGR",valor:"4"},
{texto:"MS_TILED_OGR",valor:"5"},
{texto:"MS_POSTGIS",valor:"6"},
{texto:"MS_WMS",valor:"7"},
{texto:"MS_ORACLESPATIAL",valor:"8"},
{texto:"MS_WFS",valor:"9"},
{texto:"MS_GRATICULE",valor:"10"},
{texto:"MS_RASTER",valor:"12"},
{texto:"MS_PLUGIN",valor:"13"}
];
objbool_tf = [
{texto:"MS_TRUE",valor:"0"},
{texto:"MS_FALSE",valor:"1"}
];
objbool_of = [
{texto:"MS_ON",valor:"2"},
{texto:"MS_OFF",valor:"3"}
];
objbool_yn = [
{texto:"MS_YES",valor:"4"},
{texto:"MS_NO",valor:"5"}
];
objmapunits = [
{texto:"MS_INCHES",valor:"0"},
{texto:"MS_FEET",valor:"1"},
{texto:"MS_MILES",valor:"2"},
{texto:"MS_METERS",valor:"3"},
{texto:"MS_KILOMETERS",valor:"4"},
{texto:"MS_DD",valor:"5"},
{texto:"MS_PIXELS",valor:"6"}
];
objlayertypes = [
{texto:"MS_LAYER_POINT",valor:"0"},
{texto:"MS_LAYER_LINE",valor:"1"},
{texto:"MS_LAYER_POLYGON",valor:"2"},
{texto:"MS_LAYER_RASTER",valor:"3"},
{texto:"MS_LAYER_ANNOTATION",valor:"4"},
{texto:"MS_LAYER_QUERY",valor:"5"},
{texto:"MS_LAYER_CIRCLE",valor:"6"},
{texto:"MS_LAYER_TILEINDEX",valor:"7"},
{texto:"MS_LAYER_CHART",valor:"8"}
];
objstatus = [
{texto:"MS_ON",valor:"1"},
{texto:"MS_OFF",valor:"0"},
{texto:"MS_DEFAULT",valor:"2"}
];
objfonttypes = [
{texto:"MS_TRUETYPE",valor:"0"},
{texto:"MS_BITMAP",valor:"1"}
];
objposition = [
{texto:"MS_UL",valor:"0"},
{texto:"MS_LR",valor:"1"},
{texto:"MS_UR",valor:"2"},
{texto:"MS_LL",valor:"3"},
{texto:"MS_CR",valor:"4"},
{texto:"MS_CL",valor:"5"},
{texto:"MS_UC",valor:"6"},
{texto:"MS_WMS",valor:"7"},
{texto:"MS_LC",valor:"8"},
{texto:"MS_CC",valor:"9"},
{texto:"MS_AUTO",valor:"10"},
{texto:"MS_XY",valor:"11"},
{texto:"MS_FOLLOW",valor:"12"}
];
objfontstyle = [
{texto:"MS_TINY",valor:"0"},
{texto:"MS_SMALL",valor:"1"},
{texto:"MS_MEDIUM",valor:"2"},
{texto:"MS_LARGE",valor:"3"},
{texto:"MS_GIANT",valor:"4"},
];
objshapetype = [
{texto:"MS_SHAPE_POINT",valor:"0"},
{texto:"MS_SHAPE_LINE",valor:"1"},
{texto:"MS_SHAPE_POLYGON",valor:"2"},
{texto:"MS_SHAPE_NULL",valor:"3"}
];
objshapefiletype = [
{texto:"MS_SHP_POINT",valor:"0"},
{texto:"MS_SHP_ARC",valor:"1"},
{texto:"MS_SHP_POLYGON",valor:"2"},
{texto:"MS_SHP_MULTIPOINT",valor:"3"}
];
objalignment = [
{texto:"MS_ALIGN_LEFT",valor:"0"},
{texto:"MS_ALIGN_CENTER",valor:"1"},
{texto:"MS_ALIGN_RIGHT",valor:"2"}
];
objtipooriginal = [
{texto:"poligonal",valor:"poligonal"},
{texto:"linear",valor:"linear"},
{texto:"pontual",valor:"pontual"}
];
YAHOO.namespace("admin.container");
/*
Function: initMenu
Inicializa a árvore de edição
*/
function initMenu()
{
if(!letraAtual){
letraAtual = "";
}
ativaBotaoAdicionaMapfile("adiciona");
ativaBotaoVerificarOrfaos("semmapfiles");
core_carregando("ativa");
core_carregando("buscando temas...");
core_ativaPainelAjuda("ajuda","botaoAjuda");
core_pegaMapfiles("montaArvore()",letraAtual);
}
function ativaBotaoVerificarOrfaos(idBotao)
{
var temp = function(){
core_montaEditor("","450px","660px","","Verificar");
verificaOrfaos();
};
//cria o botão de adição de um novo menu
new YAHOO.widget.Button(idBotao,{ onclick: { fn: temp } });
}
function ativaBotaoAdicionaMapfile(idBotao)
{
var adiciona = function()
{
core_montaEditor("adicionaNovoMapfile()","450px","660px","","","Mapfile");
ins = "<p><b>Nome do novo arquivo mapfile (sem .map) </b>não utilize caracteres acentuados ou espaços em branco</p>";
ins += "<input size=50 type=text id='Ecodigo' value='' /></p>";
ins += "<p><b>Título do novo tema</b></p>";
ins += "<p>Em português: </p>";
ins += "<input size=50 type=text id='Etitulo' value='' /></p>";
ins += "<p>Espanhol (opcional): </p>";
ins += "<input size=50 type=text id='EtituloES' value='' /></p>";
ins += "<p>Inglês: (opcional)</p>";
ins += "<input size=50 type=text id='EtituloEN' value='' /></p>";
ins += "<p>Italiano: (opcional)</p>";
ins += "<input size=50 type=text id='EtituloIT' value='' /></p>";
$i("editor_bd").innerHTML = ins;
};
//cria o botão de adição de um novo menu
new YAHOO.widget.Button(idBotao,{ onclick: { fn: adiciona } });
}
/*
Function: montaArvore
Monta a árvore
<PEGALAYERS>
*/
function montaArvore()
{
YAHOO.example.treeExample = new function()
{
tree = "";
function changeIconMode()
{buildTree();}
function loadNodeData(node, fnLoadComplete)
{
if(node.data.codigoMap == undefined){
fnLoadComplete.call();
return;
}
var sUrl = "../php/editormapfile.php?funcao=pegaLayers&codigoMap="+node.data.codigoMap;
var callback =
{
success: function(oResponse)
{
var dados = YAHOO.lang.JSON.parse(oResponse.responseText);
montaRaizTema(node,dados);
oResponse.argument.fnLoadComplete();
},
failure: function(oResponse)
{
oResponse.argument.fnLoadComplete();
},
argument:
{
"node": node,
"fnLoadComplete": fnLoadComplete
},
timeout: 25000
};
YAHOO.util.Connect.asyncRequest('GET', sUrl, callback);
}
function buildTree()
{
tree = new YAHOO.widget.TreeView("tabela");
tree.setDynamicLoad(loadNodeData, 0);
var root = tree.getRoot();
if(letraAtual == ""){
var tempNode = new YAHOO.widget.TextNode('Todos', root, false);
tempNode.isLeaf = true;
}
else{
var tempNode = new YAHOO.widget.TextNode(letraAtual, root, false);
tempNode.isLeaf = true;
}
core_carregando("desativa");
}
buildTree();
}();
montaNosRaiz("nao");
tree.draw();
}
function montaNosRaiz(redesenha)
{
var root = tree.getRoot();
var nos = new Array();
var conteudo = "";
for (var i=0, j=$mapfiles.length; i<j; i++)
{
conteudo = "";
var iconePlus = true;
if($mapfiles[i].extensao != "map"){
iconePlus = false;
conteudo += "<b>("+$mapfiles[i].extensao+") </b>";
}
conteudo += " <img style=\"width:12px;position:relative;cursor:pointer;top:2px\" onclick=\"excluirMapfile('"+$mapfiles[i].codigo+"')\" title=excluir src=\"../imagens/01.png\" />";
if(iconePlus)
{conteudo += " <img style=\"width:12px;position:relative;cursor:pointer;top:2px\" onclick=\"clonarMapfile('"+$mapfiles[i].codigo+"')\" title='cria uma cópia' src=\"../imagens/clonar.png\" />";}
conteudo += " <img style=\"width:12px;position:relative;cursor:pointer;top:2px\" onclick=\"limparCacheMapfile('"+$mapfiles[i].codigo+"')\" title='limpa o chache de imagens se houver' src=\"../imagens/limparcache.png\" />";
conteudo += " <img style=\"width:12px;position:relative;cursor:pointer;top:2px\" onclick=\"editorTemaMapfile('"+$mapfiles[i].codigo+"')\" title='editar tema associado' src=\"../imagens/03.png\" />";
if(iconePlus){
conteudo += "<a style='border:solid white 0px;text-decoration:none;' href='../php/editortexto.php?mapfile="+$mapfiles[i].codigo+"' target=_self > <img title='Editor de textos' style=\"border:0px solid white;width:12px;position:relative;cursor:pointer;top:2px\" src=\"../imagens/06.png\" /></a>";
}
conteudo += " <img style=\"width:12px;position:relative;cursor:pointer;top:2px\" onclick=\"testarMapfile('"+$mapfiles[i].codigo+"')\" title='testar!' src=\"../imagens/41.png\" />";
conteudo += " <img width=20px style=\"position:relative;cursor:pointer;top:2px\" onclick=\"javascript:window.open('../../ms_criamapa.php?layers="+$mapfiles[i].codigo+"')\" title='abrir no i3Geo' src=\"../../imagens/i3geo2.jpg\" />";
conteudo += "<b> <span>"+$mapfiles[i].codigo+" <span style=color:gray id='idNome_"+$mapfiles[i].codigo+"'>"+$mapfiles[i].nome+"</span></span>";
if($mapfiles[i].imagem != "" && $i("mostraMini").checked == true){
conteudo += "</b><br><img src='../../temas/miniaturas/"+$mapfiles[i].imagem+"'/>";
}
var d = {html:conteudo,tipo:"mapfile",id_tema:$mapfiles[i].id_tema,id:$mapfiles[i].codigo,codigoMap:$mapfiles[i].codigo};
var tempNode = new YAHOO.widget.HTMLNode(d, root, false,iconePlus);
nos.push(tempNode);
}
if(redesenha=="sim")
tree.draw();
return nos;
}
function testarMapfile(codigoMap)
{
window.open("../../testamapfile.php?map="+codigoMap+".map");
}
/*
Function: montaRaizTema
Monta as opções de edição básicas de um LAYER
<LISTACLASSES>
*/
function montaRaizTema(no,dados)
{
var tempNodeR = "";
//no que permite listar os grupos de usuarios registrados para o mapfile
if(!tree.getNodeByProperty("etiquetaGrupousrTema",no.data.codigoMap))
{
var d = {tipo:"etiqueta",etiquetaGrupousrTema:no.data.id_tema,html:"<i>Grupos de usuários que podem utilizar</i>"};
tempNodeR = new YAHOO.widget.HTMLNode(d, no, true,true);
tempNodeR.isLeaf = false;
var conteudo = "<span style=\"cursor:pointer;\" onclick=\"editorGrupousr('"+no.data.id_tema+"','"+no.data.codigoMap+"')\" ><img style='position:relative;top:2px' src=\"../imagens/05.png\" /><i>Adicionar um novo</i></span>";
var d = {html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
}
//adiciona a lista de grupos de usuarios no no
for (var i=0, j=dados.gruposusr.length; i<j; i++)
{
tempNode = new YAHOO.widget.HTMLNode(montaNoGruposUsrTema(dados.gruposusr[i]), tempNodeR, false,true);
//tempNode.setDynamicLoad(loadLayerData, 0);
tempNode.isLeaf = true;
}
//no que permite listar os layers de um mapfile
if(!tree.getNodeByProperty("etiquetaLayers",no.data.codigoMap))
{
var d = {tipo:"etiqueta",etiquetaLayers:no.data.codigoMap,html:"<i>Layers</i>"};
tempNodeR = new YAHOO.widget.HTMLNode(d, no, true,true);
tempNodeR.isLeaf = false;
var conteudo = "<span style=\"cursor:pointer;\" onclick=\"adicionaNovoLayer('"+no.data.codigoMap+"')\" ><img style='position:relative;top:2px' src=\"../imagens/05.png\" /><i>Adicionar um novo</i></span>";
var d = {html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
}
//adiciona a lista de layers no no
for (var i=0, j=dados.layers.length; i<j; i++)
{
tempNode = new YAHOO.widget.HTMLNode(montaNoLayer(no.data.codigoMap,dados.layers[i]), tempNodeR, false,true);
tempNode.setDynamicLoad(loadLayerData, 0);
tempNode.isLeaf = false;
}
tree.draw();
}
function loadLayerData(node, fnLoadComplete)
{
var sUrl = "../php/editormapfile.php?funcao=listaClasses&codigoMap="+node.data.codigoMap+"&codigoLayer="+node.data.codigoLayer;
var callback =
{
success: function(oResponse)
{
var dados = YAHOO.lang.JSON.parse(oResponse.responseText);
montaParametrosTemas(node,dados,false);
oResponse.argument.fnLoadComplete();
},
failure: function(oResponse)
{
oResponse.argument.fnLoadComplete();
},
argument:
{
"node": node,
"fnLoadComplete": fnLoadComplete
},
timeout: 25000
};
YAHOO.util.Connect.asyncRequest('GET', sUrl, callback);
}
function montaNoGruposUsrTema(dados){
var conteudo = " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"excluirGrupoUsrTema('"+dados.id_tema+"','"+dados.id_grupo+"','"+dados.codigo_tema+"')\" title=excluir width='10px' heigth='10px' src=\"../imagens/01.png\" /> <span>"+dados.nome+"</span>";
var d = {html:conteudo,id:"usr_"+dados.id_tema+"_"+dados.id_grupo};
return d;
}
function montaNoLayer(codigo,indice){
var conteudo = " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"sobeDesce('sobe','layer','"+codigo+"','"+indice+"')\" title=sobe src=\"../imagens/34.png\" />";
conteudo += " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"sobeDesce('desce','layer','"+codigo+"','"+indice+"')\" title=desce src=\"../imagens/33.png\" />";
conteudo += " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"excluirLayer('"+codigo+"','"+indice+"')\" title=excluir width='10px' heigth='10px' src=\"../imagens/01.png\" /> <span>"+indice+"</span>";
var d = {html:conteudo,id:codigo+"_"+indice,codigoMap:codigo,codigoLayer:indice};
return d;
}
function iconMode()
{
var newVal = parseInt(this.value);
if (newVal != currentIconMode)
{currentIconMode = newVal;}
}
/*
Function: montaParametrosTemas
Complementa as opções de edição básicas de um LAYER
<LISTAESTILOS>
*/
function montaParametrosTemas(no,dados,redesenha)
{
var codigoMap = no.data.codigoMap;
var codigoLayer = no.data.codigoLayer;
var id = codigoMap+"_"+codigoLayer;
var conteudo = "";
var tempNodeR = "";
if(!tree.getNodeByProperty("etiquetaDados",id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorDados('"+codigoMap+"','"+codigoLayer+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='' src=\"../imagens/06.png\" /> Conexão com os dados</span>";
var d = {tipo:"etiquetaDados",etiquetaDados:id,html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
if(!tree.getNodeByProperty("etiquetaTitulo",id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorTitulo('"+codigoMap+"','"+codigoLayer+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='' src=\"../imagens/06.png\" /> Título, escala, extensão</span>";
var d = {tipo:"etiquetaTitulo",etiquetaTitulo:id,html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
if(!tree.getNodeByProperty("etiquetaComport",id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorComport('"+codigoMap+"','"+codigoLayer+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='' src=\"../imagens/06.png\" /> Comportamento no mapa</span>";
var d = {tipo:"etiquetaComport",etiquetaComport:id,html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
if(!tree.getNodeByProperty("etiquetaDispo",id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorDispo('"+codigoMap+"','"+codigoLayer+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='' src=\"../imagens/06.png\" /> Disponibilidade (download, wms,...)</span>";
var d = {tipo:"etiquetaDispo",etiquetaDispo:id,html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
//rever
if(!tree.getNodeByProperty("etiquetaMetadados",id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorMetadados('"+codigoMap+"','"+codigoLayer+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='edita metadados' src=\"../imagens/06.png\" /> Miscelânea</span>";
var d = {tipo:"etiquetaMetadados",etiquetaMetadados:id,html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
if(!tree.getNodeByProperty("etiquetaClasses",id))
{
var d = {id:id,codigoMap:codigoMap,codigoLayer:codigoLayer,tipo:"etiquetaClasses",etiquetaClasses:id,html:"<i> Classes</i>"};
tempNodeR = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNodeR.isLeaf = false;
conteudo = "<span style='cursor:pointer;' onclick=\"adicionaNovaClasse('"+codigoMap+"','"+codigoLayer+"')\" ><img style='position:relative;top:2px' src=\"../imagens/05.png\" /> Adicionar uma classe</span>";
var d = {html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
conteudo = "<span style='cursor:pointer;' onclick=\"classesAuto('"+codigoMap+"','"+codigoLayer+"')\" ><img style='position:relative;top:2px' src=\"../imagens/classificar.gif\" /> Criar classes automaticamente</span>";
var d = {html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
conteudo = "<span style='cursor:pointer;' onclick=\"window.open('../../testamapfile.php?solegenda=sim&map="+no.data.codigoMap+"')\" > <img style='position:relative;top:2px' src=\"../imagens/41.png\" /> Testar</span>";
var d = {html:conteudo};
var tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
}
for (var i=0, j=dados.length; i<j; i++)
{
var d = conteudoNoClasse(no.data.codigoMap,codigoLayer,dados[i].indice,dados[i].nome);
var tempNode = new YAHOO.widget.HTMLNode(d,tempNodeR, false,true);
tempNode.setDynamicLoad(loadClasseData, iconMode);
tempNode.isLeaf = false;
}
tree.draw();
}
function loadClasseData(node, fnLoadComplete)
{
var sUrl = "../php/editormapfile.php?funcao=listaEstilos&codigoMap="+node.data.codigoMap+"&codigoLayer="+node.data.codigoLayer+"&indiceClasse="+node.data.indiceClasse;
var callback =
{
success: function(oResponse)
{
var dados = YAHOO.lang.JSON.parse(oResponse.responseText);
montaParametrosClasses(node,dados,false);
oResponse.argument.fnLoadComplete();
},
failure: function(oResponse)
{
oResponse.argument.fnLoadComplete();
},
argument:
{
"node": node,
"fnLoadComplete": fnLoadComplete
},
timeout: 25000
};
YAHOO.util.Connect.asyncRequest('GET', sUrl, callback);
}
function conteudoNoClasse(codigoMap,codigoLayer,indice,nome){
var conteudo = " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"sobeDesce('sobe','classe','"+codigoMap+"','"+codigoLayer+"','"+indice+"')\" title=sobe src=\"../imagens/34.png\" />";
conteudo += " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"sobeDesce('desce','classe','"+codigoMap+"','"+codigoLayer+"','"+indice+"')\" title=desce src=\"../imagens/33.png\" />";
conteudo += " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"excluirClasse('"+codigoMap+"','"+codigoLayer+"','"+indice+"')\" title=excluir width='10px' heigth='10px' src=\"../imagens/01.png\" /> <span>"+indice+" "+nome+"</span>";
var d = {classes:codigoMap+"_"+codigoLayer,html:conteudo,id:codigoMap+"_"+codigoLayer+"_"+indice,codigoMap:codigoMap,codigoLayer:codigoLayer,indiceClasse:indice};
return d;
}
function montaParametrosClasses(no,dados,redesenha)
{
var codigoMap = no.data.codigoMap;
var codigoLayer = no.data.codigoLayer;
var indiceClasse = no.data.indiceClasse;
var conteudo = "";
var tempNode = "";
var tempNodeR = "";
if(!tree.getNodeByProperty("etiquetaClasseGeral",no.data.id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorClasseGeral('"+codigoMap+"','"+codigoLayer+"','"+indiceClasse+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='edita características da classe' src=\"../imagens/06.png\" /> Editar características gerais</span>";
var d = {tipo:"etiquetaClasseGeral",etiquetaClasseGeral:codigoMap+"_"+codigoLayer+"_"+indiceClasse,html:conteudo};
tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
if(!tree.getNodeByProperty("etiquetaClasseLabel",no.data.id))
{
conteudo = "<span style=cursor:pointer; onclick=\"editorClasseLabel('"+codigoMap+"','"+codigoLayer+"','"+indiceClasse+"')\" ><img width='10px' heigth='10px' style=\"position:relative;top:0px\" title='edita identificadores de texto' src=\"../imagens/06.png\" /> Editar toponímia</span>";
var d = {tipo:"etiquetaClasseLabel",etiquetaClasseLabel:codigoMap+"_"+codigoLayer+"_"+indiceClasse,html:conteudo};
tempNode = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNode.isLeaf = true;
}
if(!tree.getNodeByProperty("etiquetaEstilo",no.data.id))
{
var d = {tipo:"etiquetaEstilo",etiquetaEstilo:codigoMap+"_"+codigoLayer+"_"+indiceClasse,html:"<i>Estilos</i>"};
tempNodeR = new YAHOO.widget.HTMLNode(d, no, false,true);
tempNodeR.isLeaf = false;
conteudo = "<span onclick=\"adicionaNovoEstilo('"+codigoMap+"','"+codigoLayer+"','"+indiceClasse+"')\" style=\"cursor:pointer;\" ><img style=\"position:relative;top:2px\" src=\"../imagens/05.png\" /> Adicionar um novo</span>";
var d = {tipo:"etiquetaEstilo",etiquetaEstilo:codigoMap+"_"+codigoLayer+"_"+indiceClasse,html:conteudo};
tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
}
for (var i=0, j=dados.length; i<j; i++)
{
var d = conteudoNoEstilo(codigoMap,codigoLayer,indiceClasse,dados[i].estilo);
tempNode = new YAHOO.widget.HTMLNode(d, tempNodeR, false,true);
tempNode.isLeaf = true;
}
tree.draw();
}
function conteudoNoEstilo(codigoMap,codigoLayer,indice,estilo){
var conteudo = " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"sobeDesce('sobe','estilo','"+codigoMap+"','"+codigoLayer+"','"+indice+"','"+estilo+"')\" title=sobe src=\"../imagens/34.png\" />";
conteudo += " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"sobeDesce('desce','estilo','"+codigoMap+"','"+codigoLayer+"','"+indice+"','"+estilo+"')\" title=desce src=\"../imagens/33.png\" />";
conteudo += " <img style=\"position:relative;cursor:pointer;top:0px\" onclick=\"excluirEstilo('"+codigoMap+"','"+codigoLayer+"','"+indice+"','"+estilo+"')\" title=excluir width='10px' heigth='10px' src=\"../imagens/01.png\" /> ";
conteudo += "<img width='10px' heigth='10px' style=\"position:relative;cursor:pointer;top:0px\" onclick=\"editorEstilo('"+codigoMap+"','"+codigoLayer+"','"+indice+"','"+estilo+"')\" title='classes' src=\"../imagens/06.png\" /> <span>"+estilo+"</span>";
var d = {estilos:codigoMap+"_"+codigoLayer+"_"+indice,html:conteudo,id:codigoMap+"_"+codigoLayer+"_"+indice+"_"+estilo,codigoMap:codigoMap,codigoLayer:codigoLayer,indiceClasse:indice,indiceEstilo:estilo};
return d;
}
function editorDeTexto(codigoMap)
{
core_carregando("ativa");
core_carregando("buscando texto...");
sUrl = "../php/editormapfile.php?funcao=pegaTextoMapfile&codigoMap="+codigoMap;
var callback =
{
success:function(o)
{
core_montaEditor("","600px","800px","","Editor");
var ins = "<input type=button id=salvarTexto value='Salvar' />";
ins += "<textarea id='editorArea' rows='19' cols='70'>"+YAHOO.lang.JSON.parse(o.responseText)+"</textarea>";
var temp = function()
{
core_carregando("ativa");
core_carregando("salvando texto...");
var callback1 =
{
success:function(o)
{
$i("editorArea").innerHTML = YAHOO.lang.JSON.parse(o.responseText);
core_carregando("desativa");
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
var linhas = $i("editorArea").value.split("\n");
var tempLinhas = "";
for(var i=0, j=linhas.length; i<j; i++)
{tempLinhas += linhas[i]+"xxxxxxxx";}
sUrl = "../php/editormapfile.php?funcao=salvaTextoMapfile&codigoMap="+codigoMap+"&texto="+tempLinhas;
core_makeRequest(sUrl,callback1,"GET");
};
$i("editor_bd").innerHTML = ins;
new YAHOO.widget.Button("salvarTexto",{ onclick: { fn: temp }});
core_carregando("desativa");
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
/*
Function: verificaOrfaos
Verifica se existem temas cadastrados no banco de dados e que não possuem mapfile associado.
É mostrada ujma lista dos casos e opção para apagar o registro do banco ou criar novamente o mapfile
<VERIFICAORFAOS>
*/
function verificaOrfaos()
{
sUrl = "../php/menutemas.php?funcao=verificaOrfaos";
core_carregando("ativa");
core_carregando(" verificando");
var callback =
{
success:function(o)
{
try
{
if(YAHOO.lang.JSON.parse(o.responseText) == "erro")
{
core_carregando("<span style=color:red >Erro</span>");
setTimeout("core_carregando('desativa')",3000);
}
else
{
core_carregando("desativa");
var ins = "<p>Os temas listados a seguir não possuem mapfiles criados. Você pode excluir o registro do tema (remoção do banco de dados) clicando na opção 'excluir' ou criar o mapfile na opção existente no formulário principal.",
d = YAHOO.lang.JSON.parse(o.responseText),
n = d.length,
i,ima;
for(i=0;i<n;i++){
ima = '<img src="../imagens/01.png" title="excluir" onclick="excluirOrfao(\''+d[i].codigo_tema+'\')" style="position:relative;cursor:pointer;top:4px;left:-2px">';
ins += "<p>"+ima+d[i].nome_tema+" <span style=color:gray >"+d[i].codigo_tema+" id: "+d[i].id_tema+"</span>";
}
$i("editor_bd").innerHTML = ins;
}
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
function excluirOrfao(codigo_tema){
excluirMapfile(codigo_tema);
YAHOO.admin.container.panelEditor.destroy();
YAHOO.admin.container.panelEditor = null;
}
/*
Function: adicionaNovoMapfile
Adiciona um novo mapfile
<CRIARNOVOMAP>
*/
function adicionaNovoMapfile()
{
var nome = $i("Etitulo").value;
var it = $i("EtituloIT").value;
var es = $i("EtituloES").value;
var en = $i("EtituloEN").value;
var codigo = $i("Ecodigo").value;
if(codigo === "")
{alert("Digite o nome do arquivo");return;}
sUrl = "../php/editormapfile.php?funcao=criarNovoMap&nome="+nome+"&codigo="+codigo+"&it="+it+"&en="+en+"&es="+es;
core_carregando("ativa");
core_carregando(" adicionando um novo mapfile");
var callback =
{
success:function(o)
{
try
{
if(YAHOO.lang.JSON.parse(o.responseText) == "erro")
{
core_carregando("<span style=color:red >Código já existe</span>");
setTimeout("core_carregando('desativa')",3000);
}
else
{
YAHOO.admin.container.panelEditor.destroy();
YAHOO.admin.container.panelEditor = null;
core_pegaMapfiles("montaArvore()");
}
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
/*
Function: adicionaNovoLayer
Adiciona um novo layer
<CRIARNOVOLAYER>
*/
function adicionaNovoLayer(codigoMap)
{
core_carregando("ativa");
core_carregando(" adicionando um novo layer");
sUrl = "../php/editormapfile.php?funcao=criarNovoLayer&codigoMap="+codigoMap;
var callback =
{
success:function(o)
{
try
{
if(YAHOO.lang.JSON.parse(o.responseText) == "erro")
{
core_carregando("<span style=color:red >Erro</span>");
setTimeout("core_carregando('desativa')",3000);
}
else
{
var dados = YAHOO.lang.JSON.parse(o.responseText);
var no = tree.getNodeByProperty("etiquetaLayers",codigoMap);
var tempNode = new YAHOO.widget.HTMLNode(montaNoLayer(codigoMap,dados.layers[0]), no, false,true);
tempNode.setDynamicLoad(loadLayerData, iconMode);
tempNode.isLeaf = false;
tree.draw();
editorGeral(codigoMap,dados.layers[0]);
core_carregando("desativa");
}
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
/*
Function: adicionaNovaClasse
Adiciona uma nova classe
<CRIARNOVACLASSE>
*/
function adicionaNovaClasse(codigoMap,codigoLayer,indiceClasse)
{
core_carregando("ativa");
core_carregando(" adicionando uma nova classe");
sUrl = "../php/editormapfile.php?funcao=criarNovaClasse&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
var callback =
{
success:function(o)
{
try
{
if(YAHOO.lang.JSON.parse(o.responseText) == "erro")
{
core_carregando("<span style=color:red >Erro</span>");
setTimeout("core_carregando('desativa')",3000);
}
else
{
var no = tree.getNodeByProperty("etiquetaClasses",codigoMap+"_"+codigoLayer);
var dados = YAHOO.lang.JSON.parse(o.responseText);
var d = conteudoNoClasse(codigoMap,codigoLayer,dados[0].indice,"");
var tempNode = new YAHOO.widget.HTMLNode(d,no, false,true);
tempNode.setDynamicLoad(loadClasseData, iconMode);
tempNode.isLeaf = false;
tree.draw();
core_carregando("desativa");
}
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
/*
Function: classesAuto
Adiciona classes automaticamente
<AUTOCLASSESLAYER>
*/
function classesAuto(codigoMap,codigoLayer)
{
function on_editorCheckBoxChange(p_oEvent)
{
var itemExpressao = document.getElementById("itemExpressao").value;
var itemNome = document.getElementById("itemNome").value;
if(itemNome == "")
{itemNome = itemExpressao;}
if(p_oEvent.newValue.get("value") == "OK" && itemExpressao != "")
{
core_carregando("ativa");
core_carregando(" gerando as classes");
var sUrl = "../php/editormapfile.php?funcao=autoClassesLayer&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&itemExpressao="+itemExpressao+"&itemNome="+itemNome;
var callback2 =
{
success:function(o)
{
try
{
var dados = YAHOO.lang.JSON.parse(o.responseText);
var nos = tree.getNodesByProperty("classes",codigoMap+"_"+codigoLayer);
if(nos){
for (var i=0, j=nos.length; i<j; i++)
{tree.removeNode(nos[i],false);}
}
var no = tree.getNodeByProperty("etiquetaClasses",codigoMap+"_"+codigoLayer);
montaParametrosTemas(no,dados);
core_carregando("desativa");
YAHOO.admin.container.panelEditorAutoClasses.destroy();
YAHOO.admin.container.panelEditorAutoClasses = null;
}
catch(e){core_handleFailure(o,o.responseText);core_carregando("desativa");}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback2);
}
else
{
YAHOO.admin.container.panelEditorAutoClasses.destroy();
YAHOO.admin.container.panelEditorAutoClasses = null;
}
};
if(!YAHOO.admin.container.panelEditorAutoClasses)
{
var novoel = document.createElement("div");
novoel.id = "janela_editor_auto";
var ins = '<div class="hd">Editor</div>';
ins += "<div class='bd' style='height:354px;overflow:auto'>";
ins += "<div id='okcancel_checkbox'></div><div id='editor_bd'></div>";
novoel.innerHTML = ins;
document.body.appendChild(novoel);
var editorBotoes = new YAHOO.widget.ButtonGroup({id:"okcancel_checkbox_id", name: "okcancel_checkbox_id", container: "okcancel_checkbox" });
editorBotoes.addButtons([
{ label: "Criar classes", value: "OK", checked: false},
{ label: "Cancela", value: "CANCEL", checked: false }
]);
editorBotoes.on("checkedButtonChange", on_editorCheckBoxChange);
YAHOO.admin.container.panelEditorAutoClasses = new YAHOO.widget.Panel("janela_editor_auto", { fixedcenter:true,close:true,width:"400px", height:"400px",overflow:"auto", visible:false,constraintoviewport:true } );
YAHOO.admin.container.panelEditorAutoClasses.render();
var sUrl = "../php/editormapfile.php?funcao=pegaItensLayer&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
var callback =
{
success:function(o)
{
try
{
var itens = core_comboObjeto(YAHOO.lang.JSON.parse(o.responseText).itens,"","","");
var ins = "<p>Item da tabela de atributos que será utilizado para compor a expressão de seleção de cada classe</p>";
ins += "<select id='itemExpressao' >";
ins += itens;
ins += "</select></p>";
ins += "<p>Item da tabela de atributos que será utilizado para compor o nome de cada classe</p>";
ins += "<select id='itemNome' >";
ins += itens;
ins += "</select></p>";
$i("editor_bd").innerHTML = ins;
core_carregando("desativa");
}
catch(e){core_handleFailure(o,o.responseText);core_carregando("desativa");}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
YAHOO.admin.container.panelEditorAutoClasses.show();
}
/*
Function: adicionaNovoEstilo
Adiciona um novo estilo
<CRIARNOVOESTILO>
*/
function adicionaNovoEstilo(codigoMap,codigoLayer,indiceClasse)
{
core_carregando("ativa");
core_carregando(" adicionando um novo estilo");
sUrl = "../php/editormapfile.php?funcao=criarNovoEstilo&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse;
var callback =
{
success:function(o)
{
try
{
if(YAHOO.lang.JSON.parse(o.responseText) == "erro")
{
core_carregando("<span style=color:red >Erro</span>");
setTimeout("core_carregando('desativa')",3000);
}
else
{
var no = tree.getNodeByProperty("etiquetaEstilo",codigoMap+"_"+codigoLayer+"_"+indiceClasse);
var dados = YAHOO.lang.JSON.parse(o.responseText);
var d = conteudoNoEstilo(codigoMap,codigoLayer,indiceClasse,dados[0].estilo);
var tempNode = new YAHOO.widget.HTMLNode(d,no, false,true);
tempNode.isLeaf = true;
tree.draw();
core_carregando("desativa");
}
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
}
/*
Function: limparCacheMapfile
Exclui o cache de imagens referentes ao mapfile
<LIMPARCACHEMAPFILE>
*/
function limparCacheMapfile(codigoMap)
{
var mensagem = " limpando "+codigoMap;
var sUrl = "../php/editormapfile.php?funcao=limparCacheMapfile&codigoMap="+codigoMap;
var handleYes = function()
{
this.hide();
core_carregando("ativa");
core_carregando(mensagem);
var callback =
{
success:function(o)
{
try
{core_carregando("desativa");}
catch(e){core_handleFailure(o,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
};
var handleNo = function()
{this.hide();};
var mensagem = "Exclui o cache temporário de renderização?";
var largura = "300";
core_dialogoContinua(handleYes,handleNo,mensagem,largura);
}
/*
Function: excluirMapfile
Exclui um mapfile
<EXCLUIRMAPFILE>
*/
function excluirMapfile(codigoMap)
{
var mensagem = " excluindo "+codigoMap;
var no = tree.getNodeByProperty("id",codigoMap);
var sUrl = "../php/editormapfile.php?funcao=excluirMapfile&codigoMap="+codigoMap;
core_excluiNoTree(sUrl,no,mensagem,codigoMap);
}
/*
Function: clonarMapfile
Exclui um mapfile
<CLONARMAPFILE>
*/
function clonarMapfile(codigoMap)
{
var sUrl = "../php/editormapfile.php?funcao=clonarMapfile&codigomap="+codigoMap;
var handleYes = function()
{
var novonome = $i("clonarComo").value;
this.hide();
if(novonome == "")
{return;}
core_carregando("ativa");
core_carregando("Copiando...");
var callback =
{
success:function(o)
{
try
{
core_carregando("desativa");
initMenu();
}
catch(e){core_handleFailure(o,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl+"&novomap="+novonome,callback);
};
var handleNo = function()
{this.hide();};
var mensagem = "Nome do novo arquivo:<br><input type=text value='' id=clonarComo />";
var largura = "300";
core_dialogoPergunta(handleYes,handleNo,mensagem,largura);
}
/*
Function: excluirLayer
Exclui um layer
<EXCLUIRLAYER>
*/
function excluirLayer(codigoMap,codigoLayer)
{
var mensagem = " excluindo "+codigoLayer;
var no = tree.getNodeByProperty("id",codigoMap+"_"+codigoLayer);
var sUrl = "../php/editormapfile.php?funcao=excluirLayer&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_excluiNoTree(sUrl,no,mensagem,codigoLayer);
}
function excluirGrupoUsrTema(id_tema,id_grupo,codigo_mapa){
var handleYes = function()
{
this.hide();
core_carregando("ativa");
var mensagem = " excluindo ";
core_carregando(mensagem);
var sUrl = "../php/editormapfile.php?funcao=excluirGrupoUsrTema&id_tema="+id_tema+"&id_grupo="+id_grupo;
var callback =
{
success:function(o)
{
try
{
core_carregando("desativa");
var no = tree.getNodeByProperty("id",codigo_mapa);
tree.removeChildren(no) ;
no.expand();
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
};
var handleNo = function()
{this.hide();};
var mensagem = "Exclui restrição?";
var largura = "300";
core_dialogoContinua(handleYes,handleNo,mensagem,largura);
}
/*
Function: excluirClasse
Exclui uma classe
<EXCLUIRCLASSE>
*/
function excluirClasse(codigoMap,codigoLayer,indiceClasse)
{
var handleYes = function()
{
this.hide();
core_carregando("ativa");
var mensagem = " excluindo "+indiceClasse;
core_carregando(mensagem);
var sUrl = "../php/editormapfile.php?funcao=excluirClasse&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse;
var callback =
{
success:function(o)
{
try
{
var no = tree.getNodesByProperty("id",codigoMap+"_"+codigoLayer+"_"+indiceClasse);
tree.removeNode(no[0]);
tree.draw();
core_carregando("desativa");
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
};
var handleNo = function()
{this.hide();};
var mensagem = "Exclui a classe?";
var largura = "300";
core_dialogoContinua(handleYes,handleNo,mensagem,largura);
}
/*
Function: excluirEstilo
Exclui um estilo
<EXCLUIRESTILO>
*/
function excluirEstilo(codigoMap,codigoLayer,indiceClasse,indiceEstilo)
{
var handleYes = function()
{
this.hide();
core_carregando("ativa");
var mensagem = " excluindo "+indiceEstilo;
core_carregando(mensagem);
var sUrl = "../php/editormapfile.php?funcao=excluirEstilo&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse+"&indiceEstilo="+indiceEstilo;
var callback =
{
success:function(o)
{
try
{
var no = tree.getNodesByProperty("id",codigoMap+"_"+codigoLayer+"_"+indiceClasse+"_"+indiceEstilo);
tree.removeNode(no[0]);
tree.draw();
core_carregando("desativa");
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback);
};
var handleNo = function()
{this.hide();};
var mensagem = "Exclui o estilo?";
var largura = "300";
core_dialogoContinua(handleYes,handleNo,mensagem,largura);
}
/*
Function: editorDados
Abre o editor de conexão com a fonte dos dados de um layer
<PEGACONEXAO>
*/
function editorDados(codigoMap,codigoLayer)
{
core_montaEditor("","450px","650px","","Conexão");
var sUrl = "../php/editormapfile.php?funcao=pegaConexao&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorDados");
}
/*
Function: editorComport
Abre o editor das opções que controlam o comportamento do layer no mapa
<PEGACOMPORT>
*/
function editorComport(codigoMap,codigoLayer)
{
core_montaEditor("","450px","650px","","Comportamento");
var sUrl = "../php/editormapfile.php?funcao=pegaComport&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorComport");
}
/*
Function: editorTitulo
Abre o editor de título e descrição
<PEGACONEXAO>
*/
function editorTitulo(codigoMap,codigoLayer)
{
core_montaEditor("","450px","650px","","Título");
var sUrl = "../php/editormapfile.php?funcao=pegaTitulo&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorTitulo");
}
/*
Function: editorDispo
Abre o editor que define a disponibilidade dos dados
<PEGADISPO>
*/
function editorDispo(codigoMap,codigoLayer)
{
core_montaEditor("","450px","650px","","Disponibilidade");
var sUrl = "../php/editormapfile.php?funcao=pegaDispo&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorDispo");
}
//depreciado
function editorConexao(codigoMap,codigoLayer)
{editorDados(codigoMap,codigoLayer);}
/*
Function: editorMetadados
Abre o editor de metadados
<PEGAMETADADOS>
*/
function editorMetadados(codigoMap,codigoLayer)
{
core_montaEditor("","450px","500px","","Metadados");
var sUrl = "../php/editormapfile.php?funcao=pegaMetadados&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorMetadados");
}
/*
Function: editorGeral
Abre o editor de dados gerais de um layer
<PEGAGERAL>
*/
function editorGeral(codigoMap,codigoLayer)
{
core_montaEditor("","450px","500px","","Geral");
var sUrl = "../php/editormapfile.php?funcao=pegaGeral&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorGeral");
}
function editorGrupousr(id_tema,codigo_mapa)
{
core_montaEditor("","350px","200px","","Grupo usuario");
$i("editor_bd").innerHTML = "<input type=hidden value='"+codigo_mapa+"' id='Ecodigo_mapa_usr'/><input type=hidden value='"+id_tema+"' id='Eid_tema_usr'/>";
var sUrl = "../php/gruposusuarios.php?funcao=pegaGrupos";
core_pegaDados("Obtendo dados...",sUrl,"montaEditorGrupousr");
}
/*
Function: editorClasseGeral
Abre o editor de dados gerais de uma classe
<PEGAGERAL>
*/
function editorClasseGeral(codigoMap,codigoLayer,indiceClasse)
{
core_montaEditor("","450px","500px","","Classe");
var sUrl = "../php/editormapfile.php?funcao=pegaClasseGeral&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorClasseGeral");
}
/*
Function: editorClasseLabel
Abre o editor dos labels de um layer
<PEGACLASSELABEL>
*/
function editorClasseLabel(codigoMap,codigoLayer,indiceClasse)
{
core_montaEditor("","450px","500px","","Label");
var sUrl = "../php/editormapfile.php?funcao=pegaClasseLabel&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorClasseLabel");
}
/*
Function: editorEstilo
Abre o editor de dados gerais de um estilo
<PEGAESTILO>
*/
function editorEstilo(codigoMap,codigoLayer,indiceClasse,indiceEstilo)
{
core_montaEditor("","450px","500px","","Estilo");
var sUrl = "../php/editormapfile.php?funcao=pegaEstilo&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse+"&indiceEstilo="+indiceEstilo;
core_pegaDados("Obtendo dados...",sUrl,"montaEditorEstilo");
}
function montaEditorComport(dados)
{
var param = {
"linhas":[
{ajuda:"Sets the current status of the layer. Often modified by MapServer itself. Default turns the layer on permanently",
titulo:"Status",id:"",value:dados.status,tipo:"text",div:"<div id=cStatus ></div>"},
{ajuda:"Indica se o tema irá ser mostrado na ferramenta de identificação",
titulo:"Identifica (IDENTIFICA)",id:"",value:dados.identifica,tipo:"text",div:"<div id=cIdentifica ></div>"},
{ajuda:"Sets the opacity level (or the inability to see through the layer) of all classed pixels for a given layer. The value can either be an integer in the range (0-100) or the named symbol 'ALPHA'. A value of 100 is opaque and 0 is fully transparent. Implemented in MapServer 5.0, to replace the deprecated TRANSPARENCY parameter.The 'ALPHA' symbol directs the MapServer rendering code to honor the indexed or alpha transparency of pixmap symbols used to style a layer. This is only needed in the case of RGB output formats, and should be used only when necessary as it is expensive to render transparent pixmap symbols onto an RGB map image.",
titulo:"Opacity",id:"opacity",value:dados.opacity,tipo:"text"},
{ajuda:"Indica se a extensão geográfica do mapa deve ser alterada quando o tema for adicionado ao mapa",
titulo:"Aplica extensao (APLICAEXTENSAO)",id:"",value:dados.aplicaextensao,tipo:"text",div:"<div id=cAplicaextensao ></div>"},
{ajuda:"Indica se o usuário pode incluir comentários no tema",
titulo:"Permite comentar (PERMITECOMENTARIO)",id:"",value:dados.permitecomentario,tipo:"text",div:"<div id=cPermitecomentario ></div>"},
{ajuda:"Temporizador (em segundos) para atualização automática da camada. A camada será redesenhada continuamente a cada intervalo de tempo definido",
titulo:"Temporizador em segundos (METADATA: TEMPORIZADOR)",id:"temporizador",value:dados.temporizador,tipo:"text"},
{ajuda:"Indica se as classes serão mostradas ou não na legenda. Por padrão é SIM. ",
titulo:"Classe (CLASSE)",id:"",value:dados.classe,tipo:"text",div:"<div id=cClasse ></div>"},
{ajuda:"URL de uma imagem que será utilizada em substituição à geração normal da legenda ",
titulo:"URL da legenda (opcional) (LEGENDAIMG)",id:"legendaimg",value:dados.legendaimg,tipo:"text"},
{ajuda:"Indica se o tema é mostrado no mapa mas não nas listas da legenda e na guia 'temas'",
titulo:"Escondido (ESCONDIDO)",id:"",value:dados.escondido,tipo:"text",div:"<div id=cEscondido ></div>"},
{ajuda:"Aplica efeitos de transição nas operações de zoom e pan na interface Openlayers",
titulo:"Efeitos de transição zoom (TRANSITIONEFFECT)",id:"",value:dados.transitioneffect,tipo:"text",div:"<div id=cTransitioneffect ></div>"},
{ajuda:"Sets the color index to treat as transparent for raster layers.",
titulo:"Offsite (R,G,B) (utilize -1,-1,-1 para anular o valor)",id:"offsite",value:dados.offsite,tipo:"text"},
{ajuda:"Maximum scale at which this LAYER is drawn. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Maxscale (utilize -1 para anular o valor)",id:"maxscale",value:dados.maxscale,tipo:"text"},
{ajuda:"Minimum scale at which this LAYER is drawn. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Minscale (utilize -1 para anular o valor)",id:"minscale",value:dados.minscale,tipo:"text"},
{ajuda:"Item name in attribute table to use for class annotation (i.e. labeling).",
titulo:"Labelitem",id:"labelitem",value:dados.labelitem,tipo:"text"},
{ajuda:"Maximum scale at which this LAYER is labeled. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Labelmaxscale (utilize -1 para anular o valor)",id:"labelmaxscale",value:dados.labelmaxscale,tipo:"text"},
{ajuda:"Minimum scale at which this LAYER is labeled. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Labelminscale (utilize -1 para anular o valor)",id:"labelminscale",value:dados.labelminscale,tipo:"text"},
{ajuda:"The scale at which symbols and/or text appear full size. This allows for dynamic scaling of objects based on the scale of the map. If not set then this layer will always appear at the same size. Scaling only takes place within the limits of MINSIZE and MAXSIZE as described above. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Symbolscale (utilize -1 para anular o valor)",id:"symbolscale",value:dados.symbolscale,tipo:"text"},
{ajuda:"Sensitivity for point based queries (i.e. via mouse and/or map coordinates). Given in TOLERANCEUNITS. If the layer is a POINT or a LINE, the default is 3. For all other layer types, the default is 0. To restrict polygon searches so that the point must occur in the polygon set the tolerance to zero.",
titulo:"Tolerance",id:"tolerance",value:dados.tolerance,tipo:"text"},
{ajuda:" ",
titulo:"Tolerance units",id:"",value:dados.toleranceunits,tipo:"text",div:"<div id=cToleranceunits ></div>"},
{ajuda:"Sets the unit of CLASS object SIZE values (default is pixels). Useful for simulating buffering",
titulo:"Sizeunits",id:"",value:dados.sizeunits,tipo:"text",div:"<div id=cSizeunits ></div>"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
if($i("cAplicaextensao")){
temp = "<select id='aplicaextensao' >";
temp += core_combosimnao(dados.aplicaextensao);
temp += "</select>";
$i("cAplicaextensao").innerHTML = temp;
}
if($i("cPermitecomentario")){
temp = "<select id='permitecomentario' >";
temp += core_combosimnao(dados.permitecomentario);
temp += "</select>";
$i("cPermitecomentario").innerHTML = temp;
}
if($i("cClasse")){
temp = "<p><select id='classe' >";
temp += core_combosimnao(dados.classe);
temp += "</select>";
$i("cClasse").innerHTML = temp;
}
if($i("cEscondido")){
temp = "<select id='escondido' >";
temp += core_combosimnao(dados.escondido);
temp += "</select>";
$i("cEscondido").innerHTML = temp;
}
if($i("cIdentifica")){
temp = "<select id='identifica' >";
temp += core_combosimnao(dados.identifica);
temp += "</select>";
$i("cIdentifica").innerHTML = temp;
}
if($i("cTransitioneffect")){
temp = "<select id='transitioneffect' >";
temp += core_combosimnao(dados.transitioneffect);
temp += "</select>";
$i("cTransitioneffect").innerHTML = temp;
}
temp = "<select id='status' >";
temp += core_comboObjeto(objstatus,"valor","texto",dados.status);
temp += "</select>";
$i("cStatus").innerHTML = temp;
temp = "<select id='sizeunits' >";
temp += core_comboObjeto(objmapunits,"valor","texto",dados.sizeunits);
temp += "</select>";
$i("cSizeunits").innerHTML = temp;
temp = "<select id='toleranceunits' >";
temp += core_comboObjeto(objmapunits,"valor","texto",dados.toleranceunits);
temp += "</select>";
$i("cToleranceunits").innerHTML = temp;
var temp = function()
{salvarDadosEditor('comport',dados.codigoMap,dados.codigoLayer,false);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
}
function montaEditorGrupousr(dados){
var temp = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
temp += "<p>Escolha o grupo de usuários:</p><select id='Eid_grupousr' >";
temp += core_comboObjeto(dados,"id_grupo","nome");
temp += "</select>";
$i("editor_bd").innerHTML += temp;
var tempf = function()
{salvarDadosEditor('grupousr');};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: tempf }});
}
function montaEditorTitulo(dados)
{
var param = {
"linhas":[
{ajuda:"Elemento 'NAME'. Não confunda com o nome que aparece no mapa ou na árvore de temas. Normalmente o código recebe o mesmo nome do arquivo mapfile, sem a extensão '.map'",
titulo:"Código do layer",id:"name",value:dados.name,tipo:"text"},
{ajuda:"Name of a group that this layer belongs to. The group name can then be reference as a regular layer name in the template files, allowing to do things like turning on and off a group of layers at once.",
titulo:"Group",id:"group",value:dados.group,tipo:"text"},
{ajuda:"Nome que será utilizado na legenda do mapa e na guia 'Temas'",
titulo:"Título (METADATA: TEMA)",id:"tema",value:dados.tema,tipo:"text"},
{ajuda:"Denominador da escala da fonte dos dados utilizado pelo tema. É utilizado para apresentar a indicação de compatibilidade entre a escala do tema e a escala do mapa que está sendo visto.",
titulo:"Escala (ESCALA)",id:"escala",value:dados.escala,tipo:"text"},
{ajuda:"Extensão geográfica máxima do tema, no formato xmin ymin xmax ymax. É utilizado na opção de 'zoom para o tema'. Quando o tema é baseado em shapefile, esse metadata não é necessário, pois o mapserver consegue calcular a extensão. Já em outros tipos de dados, como Postgis, o parâmetro é necessário. Nesse caso, se não for indicado, o botão de zoom para o tema não será visível para o usuário",
titulo:"Extensao (EXTENSAO)",id:"extensao",value:dados.extensao,tipo:"text"},
{ajuda:"Ícone que será mostrado na árvore de camadas. A imagem deve existir na web e deve ser incluído o caminho completo ou relativo em relação ao local da interface HTML do mapa.",
titulo:"Ícone (METADATA: ICONETEMA)",id:"iconetema",value:dados.iconetema,tipo:"text"},
{ajuda:"Mensagem que será mostrada no rodapé do mapa quando o tema estiver visível. É útil para apresentar ao usuário observações especiais sobre o uso daquele tema.",
titulo:"Mensagem (MENSAGEM)",id:"mensagem",value:dados.mensagem,tipo:"text"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
var temp = function()
{salvarDadosEditor('titulo',dados.codigoMap,dados.codigoLayer,false);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
}
function montaEditorDispo(dados)
{
var param = {
"linhas":[
{ajuda:"Indica se o usuário pode fazer download do tema. Se sim, o ícone de download será mostrado na árvore de camadas disponíveis no mapa.",
titulo:"Permite download (METADATA: DOWNLOAD)",id:"",value:dados.download,tipo:"text",div:"<div id=cDownload ></div>"},
{ajuda:"Endereço de um arquivo pré-existente para download dos dados (caminho completo no servidor). Se definido, o sistema irá usar esse arquivo ao invés de gerar os dados, quando o usuário clicar nas opções de download. Se não for definido, o arquivo de download é gerado diretamente do original, convertendo do banco ou copiando o arquivo definido em DATA.",
titulo:"Arquivo download (ARQUIVODOWNLOAD)",id:"arquivodownload",value:dados.arquivodownload,tipo:"text"},
{ajuda:"Endereço de um arquivo KMZ ou KML pré-existente para download dos dados (caminho completo no servidor). Se definido, o sistema irá usar esse arquivo ao invés de gerar os dados, quando o usuário clicar nas opções de visualização de KML ou KMZ. Se não for definido, o arquivo é gerado diretamente do original.",
titulo:"Arquivo KML ou KMZ (ARQUIVOKMZ)",id:"arquivokmz",value:dados.arquivokmz,tipo:"text"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
if($i("cDownload")){
temp = "<select id='download' >";
temp += core_combosimnao(dados.download);
temp += "</select>";
$i("cDownload").innerHTML = temp;
}
var temp = function()
{salvarDadosEditor('dispo',dados.codigoMap,dados.codigoLayer,false);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
}
function montaEditorDados(dados)
{
var idsForms = ["connection","data","tileitem","tileindex","type","tipooriginal"];
var param = {
"linhas":[
{ajuda:"Type of connection. Default is local.",
titulo:"Connectiontype",id:"",value:"",div:"<div id=cConnectiontype ></div>",tipo:"text"},
{ajuda:"Aplica a conversão de caracteres nas ferramentas que obtém os dados descritivos referentes aos elementos do LAYER. Em alguns casos, a conversão pode provocar problemas de acentuação. Se isso ocorrer, na ferramenta tabela por exemplo, experimente marcar essa opção como 'nao'",
titulo:"Conversão de caracteres (METADATA: CONVCARACTER)",id:"",value:dados.convcaracter,tipo:"text",div:"<div id=cConvcaracter ></div>"},
{ajuda:"Database connection string to retrieve remote data.An SDE connection string consists of a hostname, instance name, database name, username and password separated by commas.A PostGIS connection string is basically a regular PostgreSQL connection string, it takes the form of 'user=nobody password=****** dbname=dbname host=localhost port=5432' An Oracle connection string: user/pass[@db] . Se vc tiver problemas com acentuação, experimente algo como: user=postgres password=postgres dbname=pgutf8 host=localhost port=5432 options='-c client_encoding=LATIN1'",
titulo:"Connection",id:"connection",value:dados.connection,tipo:"text"},
{ajuda:"Full filename of the spatial data to process. No file extension is necessary for shapefiles. Can be specified relative to the SHAPEPATH option from the Map Object.If this is an SDE layer, the parameter should include the name of the layer as well as the geometry column, i.e. 'mylayer,shape,myversion'.If this is a PostGIS layer, the parameter should be in the form of '<columnname> from <tablename>', where 'columnname' is the name of the column containing the geometry objects and 'tablename' is the name of the table from which the geometry data will be read.For Oracle, use 'shape FROM table' or 'shape FROM (SELECT statement)' or even more complex Oracle compliant queries! Note that there are important performance impacts when using spatial subqueries however. Try using MapServer's FILTER whenever possible instead. You can also see the SQL submitted by forcing an error, for instance by submitting a DATA parameter you know won't work, using for example a bad column name. Exemplo postgis: the_geom FROM (select * FROM biomas) as foo USING UNIQUE gid USING SRID=4291 . Exemplo shapefile: c://ms4w/Apache/htdocs/geodados/brasil/limitespol/localidades.shp",
titulo:"Data",id:"data",value:dados.data,tipo:"text"},
{ajuda:"Specifies how the data should be drawn. Need not be the same as the shapefile type. For example, a polygon shapefile may be drawn as a point layer, but a point shapefile may not be drawn as a polygon layer. Common sense rules. Annotation means that a label point will be calculated for the features, but the feature itself will not be drawn although a marker symbol can be optionally drawn. this allows for advanced labeling like numbered highway shields. Points are labeled at that point. Polygons are labeled first using a centroid, and if that doesn't fall in the polygon a scanline approach is used to guarantee the label falls within the feature. Lines are labeled at the middle of the longest arc in the visible portion of the line. Query only means the layer can be queried but not drawn.In order to differentiate between POLYGONs and POLYLINEs (which do not exist as a type), simply respectively use or ommit the COLOR keyword when classifying. If you use it, it's a polygon with a fill color, otherwise it's a polyline with only an OUTLINECOLOR.For CHART layers, see the Dynamic Charting howto.A circle must be defined by a a minimum bounding rectangle. That is, 2 points that define the smallest square that can contain it. These 2 points are the two opposite corners of said box",
titulo:"Type",id:"",value:dados.type,tipo:"text",div:"<div id=cType ></div>"},
{ajuda:"Ativa ou não a manutenção de um cache para armazenar as imagens geradas para montar o mapa. Essa opção afeta apenas as interfaces do i3Geo que utilizam o modo TILE (como a interface OpenLayers). O cache é mantido no diretório temporário utilizado pelo i3Geo, na pasta chamada cache. Para cada camada é criada uma sub-pasta. Para limpar o cache, utilize a opção existente junto ao nó principal desse mapfile",
titulo:"Cache de mapas. Camadas WMS são acessadas diretamente do servidor de origem quando o cache estiver inativo. (CACHE)",id:"",value:dados.cache,tipo:"text",div:"<div id=cCache ></div>"},
{ajuda:"Projeção",
titulo:"Projection",id:"projection",value:dados.projection,tipo:"text"},
{ajuda:"This parameter allows for data specific attribute filtering that is done at the same time spatial filtering is done, but before any CLASS expressions are evaluated. For OGR and shapefiles the string is simply a mapserver regular expression. For spatial databases the string is a SQL WHERE clause that is valid with respect to the underlying database.For example: FILTER type='road' and size <2",
titulo:"Filter",id:"filter",value:dados.filter,tipo:"text"},
{ajuda:"Item to use with simple FILTER expressions. OGR and shapefiles only.",
titulo:"Filteritem",id:"filteritem",value:dados.filteritem,tipo:"text"},
{ajuda:"Item that contains the location of an individual tile, default is 'location'.",
titulo:"tileitem",id:"tileitem",value:dados.tileitem,tipo:"text"},
{ajuda:"Name of the tileindex file or layer. A tileindex is similar to an ArcInfo library index. The tileindex contains polygon features for each tile. The item that contains the location of the tiled data is given using the TILEITEM parameter. When a file is used as the tileindex for shapefile or raster layers, the tileindex should be a shapefile. For CONNECTIONTYPE OGR layers, any OGR supported datasource can be a tileindex. Normally the location should contain the path to the tile file relative to the shapepath, not relative to the tileindex itself. If the DATA parameter contains a value then it is added to the end of the location. When a tileindex layer is used, it works similarly to directly referring to a file, but any supported feature source can be used (ie. postgres, oracle).NOTE: All files in the tileindex should have the same coordinate system, and for vector files the same set of attributes in the same order.",
titulo:"tileindex",id:"tileindex",value:dados.tileindex,tipo:"text"},
{ajuda:"Tipo de representação das feições mostradas da camada. É importante definir esse parâmetro para que as funções de geração de SLD funcionem corretamente.",
titulo:"Tipo de representação (tipooriginal) - para temas do tipo WMS",id:"",value:dados.tipooriginal,tipo:"text",div:"<div id=cTipooriginal ></div>"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
ins += " <input type=button title='Testar' value='Testar' id=testarEditor />";
if(dados.postgis_mapa.length > 0)
{
ins += "<p>Os seguintes 'alias' estão definidos em ms_configura como nomes de conexões: ";
ins += dados.postgis_mapa;
ins += "<br>Os campos em cores não são compatíveis com o tipo de conexão.</p><br>";
}
if(dados.colunas != "" && dados.colunas != undefined)
{
ins += "<p>O layer possuí as seguintes colunas na tabela de atributos: ";
ins += dados.colunas+"</p><br>";
}
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
if($i("cCache")){
temp = "<select id='cache' >";
temp += core_combosimnao(dados.cache);
temp += "</select>";
$i("cCache").innerHTML = temp;
}
if($i("cTipooriginal")){
temp = "<select id='tipooriginal' >";
temp += core_comboObjeto(objtipooriginal,"valor","texto",dados.tipooriginal);
temp += "</select>";
$i("cTipooriginal").innerHTML = temp;
}
temp = "<select id='connectiontype' >";
temp += core_comboObjeto(objcontype,"valor","texto",dados.connectiontype);
temp += "</select>";
$i("cConnectiontype").innerHTML = temp;
temp = "<select id='type' >";
temp += core_comboObjeto(objlayertypes,"valor","texto",dados.type);
temp += "</select>";
$i("cType").innerHTML = temp;
if($i("cConvcaracter")){
temp = "<select id='convcaracter' >";
temp += core_combosimnao(dados.convcaracter);
temp += "</select>";
$i("cConvcaracter").innerHTML = temp;
}
var temp = function()
{salvarDadosEditor('conexao',dados.codigoMap,dados.codigoLayer,false);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
var temp = function()
{salvarDadosEditor('conexao',dados.codigoMap,dados.codigoLayer,"","",true);};
new YAHOO.widget.Button("testarEditor",{ onclick: { fn: temp }});
core_desativaforms(idsForms);
$i("connectiontype").onchange = function(){
core_desativaforms(idsForms);
var valor = $i("connectiontype").value,
d = [];
//["connection","data","tileitem","tileindex"]
if(valor == 0 || valor == 10)
{d = [];}
if(valor == 1 || valor == 12)
{d = ["data","type"];}
if(valor == 2)
{d = ["tileitem","tileindex","type"];}
if(valor == 3 || valor == 4 || valor == 6 || valor == 8 || valor == 13)
{d = idsForms;}
if(valor == 5)
{d = ["connection","tileitem","tileindex","type"];}
if(valor == 7 || valor == 9)
{d = ["connection","type","tipooriginal"];}
core_ativaforms(d);
};
$i("connectiontype").onchange.call();
}
function montaEditorMetadados(dados)
{
var paramRaster = {
"linhas":[
{ajuda:"A palete é válida apenas para temas RASTER. Entre com o endereço do arquivo no servidor. Veja exemplo em i3geo/localhost/symbols/testepalete.txt",
titulo:"Arquivo com palete de cores (opcional e serve apenas para temas raster) (PALLETEFILE)",id:"palletefile",value:dados.palletefile,tipo:"text"},
{ajuda:"Quantas cores em cada nível da palete. Veja exemplo em i3geo/localhost/symbols/testepalete.txt",
titulo:"Passo (opcional e serve apenas para temas raster) (PALLETESTEP)",id:"palletestep",value:dados.palletestep,tipo:"text"}
]
};
var paramVetor = {
"linhas":[
{ajuda:"Indica se o usuário pode abrir o editor de SQL para poder alterar o elemento DATA do Mapfile.",
titulo:"Permite editar SQL (EDITORSQL)",id:"",value:dados.editorsql,tipo:"text",div:"<div id=cEditorsql ></div>"},
{ajuda:"Formato das datas existentes na tabela de atributos p.e. iso8601",
titulo:"Linha do tempo: LTEMPOFORMATODATA",id:"ltempoformatodata",value:dados.ltempoformatodata,tipo:"text"},
{ajuda:"Item que indica a data de início de um evento",
titulo:"Linha do tempo: LTEMPOITEMINICIO",id:"ltempoiteminicio",value:dados.ltempoiteminicio,tipo:"text"},
{ajuda:"Item que indica a data final de um evento (opcional)",
titulo:"Linha do tempo: LTEMPOITEMFIM",id:"ltempoitemfim",value:dados.ltempoitemfim,tipo:"text"},
{ajuda:"Item que contém o título de cada evento",
titulo:"Linha do tempo: LTEMPOITEMTITULO",id:"ltempoitemtitulo",value:dados.ltempoitemtitulo,tipo:"text"},
{ajuda:"Item com a descrição do evento (opcional)",
titulo:"Linha do tempo: LTEMPOITEMDESCRICAO",id:"ltempoitemdescricao",value:dados.ltempoitemdescricao,tipo:"text"},
{ajuda:"Item para etiquetas do título (opcional)",
titulo:"Linha do tempo: LTEMPOITEMTIP",id:"ltempoitemtip",value:dados.ltempoitemtip,tipo:"text"},
{ajuda:"Item com o endereço de uma imagem que será incluída no menu popup, aberto quando o usuário clica em um evento (opcional)",
titulo:"Linha do tempo: LTEMPOITEMIMAGEM",id:"ltempoitemimagem",value:dados.ltempoitemimagem,tipo:"text"},
{ajuda:"Link para uma página que será incluído no menu popup",
titulo:"Linha do tempo: LTEMPOITEMLINK",id:"ltempoitemlink",value:dados.ltempoitemlink,tipo:"text"},
{ajuda:"Endereço da imagem do ícone que irá representar o evento (opcional)",
titulo:"Linha do tempo: LTEMPOITEMICONE",id:"ltempoitemicone",value:dados.ltempoitemicone,tipo:"text"},
{ajuda:"Aplica conversão do código de caracteres? Pode ser necessário para corrigir problemas de acentuação",
titulo:"Linha do tempo: LTEMPOCONVENCODE",id:"",value:dados.ltempoconvencode,tipo:"text",div:"<div id=cLtempoconvencode ></div>"},
]
};
var paramNaoOWS = {
"linhas":[
{ajuda:"É possível a geração de classes automaticamente por meio da definição de colunas na tabela de atributos do tema que armazenam as informações sobre cor, tamanho, etc. Esse metadata é utilizado para definir qual a coluna da tabela que identifica unicamente cada classe. Para cada valor será criada uma classe.<br>O tema que utiliza a geração de classes de forma automática, deve ter definido apenas uma classe. Essa classe será utilizada como padrão para geração das demais.",
titulo:"Auto-legenda: id das classes (CLASSESITEM)",id:"classesitem",value:dados.classesitem,tipo:"text"},
{ajuda:"Nome da coluna que será utilizada para compor o nome das classes geradas automaticamente.",
titulo:"Auto-legenda: nome das classes (CLASSESNOME)",id:"classesnome",value:dados.classesnome,tipo:"text"},
{ajuda:"Nome da coluna que definirá a cor do símbolo utilizado em cada classe. As cores devem ser definidas em RGB.",
titulo:"Auto-legenda: cor da classe (CLASSESCOR)",id:"classescor",value:dados.classescor,tipo:"text"},
{ajuda:"Nome da coluna que definirá o símbolo utilizado em cada classe.",
titulo:"Auto-legenda: símbolo (CLASSESSIMBOLO)",id:"classessimbolo",value:dados.classessimbolo,tipo:"text"},
{ajuda:"Nome da coluna que definirá o tamanho de cada símbolo.",
titulo:"Auto-legenda: tamanho (CLASSESTAMANHO)",id:"classestamanho",value:dados.classestamanho,tipo:"text"}
]
};
var param = {
"linhas":[
{ajuda:"Nome da coluna da tabela de atributos do tema que será utilizado na ferramenta busca rápida. Entre apenas uma coluna",
titulo:"Item utilizado no busca rápida (itembuscarapida)",id:"itembuscarapida",value:dados.itembuscarapida,tipo:"text"},
{ajuda:"Nomes das colunas da tabela de atributos do tema, que serão mostradas na ferramenta de identificação. Se for vazio, todas as colunas serão mostradas. A lista de itens deve ser separada por ',' e grafada em caixa alta no caso de shapefile.",
titulo:"Itens (ITENS)",id:"itens",value:dados.itens,tipo:"text"},
{ajuda:"Lista com os 'alias', ou apelidos, para os nomes das colunas listados no metadata 'itens'. Os alias devem ser separados por ',' e seguir a ordem definida em ITENS.",
titulo:"Nomes dos itens (ITENSDESC)",id:"itensdesc",value:dados.itensdesc,tipo:"text"},
{ajuda:"Lista de links que serão incluídos em cada resultado de busca da ferramenta de identificação. A lista de links deve ser separada por ',', podendo-se incluir '' para indicar que o item não tem link. Exemplo de uso para inclusão de links para o site do IBGE quando um município é clicado no mapa:<br>ITENS 'codigo,nome2,uf'<br>ITENSDESC 'codigo do IBGE,nome do município,uf'<br>ITENSLLINK ',http://www.ibge.gov.br/munic2001/tabelas.php?codmun=[codigo]&descricao=[nome],'<br>Podem ser incluídos comandos javascript, para isso utilize sempre aspas simples para fechar o link e acrescente o código javascript, exemplo:<br>ITENSLINK \",'../ferramentas/identifica/testelink.php?sid='+i3GEO.configura.sid\"",
titulo:"Links dos itens (ITENSLINK)",id:"itenslink",value:dados.itenslink,tipo:"text"},
{ajuda:"Template utilizado no gerador de KML para definir o conteúdo dos balões de informação. O template utiliza o caractere '%' para iniciar e fechar o nome de uma coluna. O template pode usar também elementos HTML, por exemplo: <code>'<b>Nome do municipio</b>: %NOMEMUN%'</code>. Se o template não for especificado, o i3Geo irá utilizar o metadata ITENS e ITENSDESC. Se esses não forem especificados, será utilizado o nome original da coluna.",
titulo:"KML template (DESCRIPTION_TEMPLATE)",id:"description_template",value:dados.description_template,tipo:"text"},
{ajuda:"Lista de colunas que serão utilizadas na opção de inclusão de 'etiquetas'. As etiquetas são mostradas no mapa quando o usuário estaciona o mouse por alguns instantes sobre o mapa. Separe a lista com ','.",
titulo:"Etiqueta (TIP)",id:"tip",value:dados.tip,tipo:"text"}
]
};
var paramOWS = {
"linhas":[
{ajuda:"space-delimited list of EPSG projection codes supported by the remote server. You normally get this from the servers capabilities output. This value should be upper case (EPSG:4236.....not epsg:4236) to avoid problems with case sensitive platforms. The value is used to set the SRS WMS URL parameter",
titulo:"wms_srs",id:"wms_srs",value:dados.wms_srs,tipo:"text"},
{ajuda:"comma-separated list of layers to be fetched from the remote WMS server. This value is used to set the LAYERS and QUERY_LAYERS WMS URL parameters.",
titulo:"wms_name",id:"wms_name",value:dados.wms_name,tipo:"text"},
{ajuda:"the version of the WMS protocol supported by the remote WMS server and that will be used for issuing GetMap requests",
titulo:"wms_server_version",id:"wms_server_version",value:dados.wms_server_version,tipo:"text"},
{ajuda:"the image format to use in GetMap requests",
titulo:"wms_format",id:"wms_format",value:dados.wms_format,tipo:"text"},
{ajuda:"",
titulo:"wms_auth_username",id:"wms_auth_username",value:dados.wms_auth_username,tipo:"text"},
{ajuda:"msEncrypt-style authorization string. Empty strings are also accepted",
titulo:"wms_auth_password",id:"wms_auth_password",value:dados.wms_auth_password,tipo:"text"},
{ajuda:"the authorization type to use for a proxy connection. Supported types include: basic, digest, ntlm, any (the underlying http library picks the best among the opotions supported by the remote server), anysafe (the underlying http library picks only safe methods among the options supported by the remote server)",
titulo:"wms_auth_type",id:"wms_auth_type",value:dados.wms_auth_type,tipo:"text"},
{ajuda:"the maximum time to wait for a remote WMS layer to load, set in seconds (default is 30 seconds). This metadata can be added at the layer level so that it affects only that layer, or it can be added at the map level (in the web object) so that it affects all of the layers. Note that wms_connectiontimeout at the layer level has priority over the map level.",
titulo:"wms_connectiontimeout",id:"wms_connectiontimeout",value:dados.wms_connectiontimeout,tipo:"text"},
{ajuda:"the bounding box of this layer in geographic coordinates in the format lon_min lat_min lon_max lat_max. If it is set then MapServer will request the layer only when the map view overlaps that bounding box. You normally get this from the servers capabilities output.",
titulo:"wms_latlonboundingbox",id:"wms_latlonboundingbox",value:dados.wms_latlonboundingbox,tipo:"text"},
{ajuda:"",
titulo:"wms_proxy_auth_type",id:"wms_proxy_auth_type",value:dados.wms_proxy_auth_type,tipo:"text"},
{ajuda:"",
titulo:"wms_proxy_host",id:"wms_proxy_host",value:dados.wms_proxy_host,tipo:"text"},
{ajuda:"",
titulo:"wms_proxy_port",id:"wms_proxy_port",value:dados.wms_proxy_port,tipo:"text"},
{ajuda:"the type of the proxy connection. Valid values are http and socks5, which are case sensitive",
titulo:"wms_proxy_type",id:"wms_proxy_type",value:dados.wms_proxy_type,tipo:"text"},
{ajuda:"",
titulo:"wms_proxy_username",id:"wms_proxy_username",value:dados.wms_proxy_username,tipo:"text"},
{ajuda:"",
titulo:"wms_proxy_password",id:"wms_proxy_password",value:dados.wms_proxy_password,tipo:"text"},
{ajuda:"Can be used to specify an inline SLD document",
titulo:"wms_sld_body",id:"wms_sld_body",value:dados.wms_sld_body,tipo:"text"},
{ajuda:"can be used to specify a link to an SLD document",
titulo:"wms_sld_url",id:"wms_sld_url",value:dados.wms_sld_url,tipo:"text"},
{ajuda:"name of style to use for the STYLES parameter in GetMap requests for this layer.",
titulo:"wms_style",id:"wms_style",value:dados.wms_style,tipo:"text"},
{ajuda:"specifies the color to be used as the background of the map. The general format of BGCOLOR is a hexadecimal encoding of an RGB value where two hexadecimal characters are used for each of Red, Green, and Blue color values. The values can range between 00 and FF for each (0 and 255, base 10). The format is 0xRRGGBB; either upper or lower case characters are allowed for RR, GG, and BB values. The '0x' prefix shall have a lower case 'x'",
titulo:"wms_bgcolor",id:"wms_bgcolor",value:dados.wms_bgcolor,tipo:"text"},
{ajuda:"specifies whether the map background is to be made transparent or not. TRANSPARENT can take on two values, 'TRUE' or 'FALSE'. If not specified, MapServer sets default to 'TRUE'",
titulo:"wms_transparent",id:"wms_transparent",value:dados.wms_transparent,tipo:"text"},
{ajuda:"value to use for the TIME parameter in GetMap requests for this layer",
titulo:"wms_time",id:"wms_time",value:dados.wms_time,tipo:"text"},
{ajuda:"Metadata espec&iacut;fico do i3Geo. Indica se o layer é do tipo TILECACHE",
titulo:"É do tipo TileCache (0 ou 1 indicam não ou sim) - wms_tile",id:"wms_tile",value:dados.wms_tile,tipo:"text"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
if(dados.colunas != "")
{
ins += "<p>O layer possuí as seguintes colunas na tabela de atributos: ";
ins += dados.colunas+"</p>";
}
ins += core_geraLinhas(param);
if(dados.type !== 3 && dados.type !== 4)
{ins += core_geraLinhas(paramVetor);}
if(dados.connectiontype !== 7 && dados.connectiontype !== 9)
{ins += core_geraLinhas(paramNaoOWS);}
if(dados.type === 3)
{ins += core_geraLinhas(paramRaster);}
if(dados.connectiontype === 7 || dados.connectiontype === 9)
{ins += core_geraLinhas(paramOWS);}
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
if($i("cEditorsql")){
temp = "<select id='editorsql' >";
temp += core_combosimnao(dados.editorsql);
temp += "</select>";
$i("cEditorsql").innerHTML = temp;
}
if($i("cLtempoconvencode")){
temp = "<select id='ltempoconvencode' >";
temp += core_combosimnao(dados.ltempoconvencode);
temp += "</select>";
$i("cLtempoconvencode").innerHTML = temp;
}
var temp = function()
{salvarDadosEditor('metadados',dados.codigoMap,dados.codigoLayer);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
}
function montaEditorClasseGeral(dados)
{
var re = /C_/g;
dados.expression = dados.expression.replace(re,"]");
var re = /_C/g;
dados.expression = dados.expression.replace(re,"[");
var re = /_A_/g;
dados.expression = dados.expression.replace(re,"'");
var param = {
"linhas":[
{ajuda:"Nome da classe para ser mostrada na legenda",
titulo:"Name",id:"name",value:dados.name,tipo:"text"},
{ajuda:"Descrição da classe (mostrada na legenda quando o mouse é sobreposto",
titulo:"Title",id:"title",value:dados.title,tipo:"text"},
{ajuda:"Sets the current display status of the class. Default turns the class on",
titulo:"Status",id:"",value:dados.status,tipo:"text",div:"<div id=cStatus ></div>"},
{ajuda:"Four types of expressions are now supported to define class membership. String comparisons, regular expressions, simple logical expressions, and string functions. If no expression is given, then all features are said to belong to this class.<br>String comparisons are case sensitive and are the fastest to evaluate. No special delimiters are necessary although string must be quoted if they contain special characters. (As a matter of good habit, it is recommended you quote all strings).<br>Regular expressions function just like previous versions of MapServer. However, you must now delimit a regular expression using /regex/. No quotes should be used.<br><br>Logical expressions allow you to build fairly complex tests based on one or more attributes and therefore are only available with shapefiles. Logical expressions are delimited by parentheses '(expression)'. Attribute names are delimited by square brackets '[ATTRIBUTE]'. These names are case sensitive and must match the items in the shapefile. For example: EXPRESSION ([POPULATION] > 50000 AND '[LANGUAGE]' eq 'FRENCH') ... The following logical operators are supported: =,>,<,<=,>=,=,or,and,lt,gt,ge,le,eq,ne. As you might expect this level of complexity is slower to process.<br>One string function exists: length(). This obviously computes the length of a string. An example follows:<br>EXPRESSION (length('[NAME_E]') < 8)<br>String comparisons and regular expressions work from the classitem defined at the layer level. You may mix expression types within the different classes of a layer",
titulo:"Expression",id:"expression",value:dados.expression,tipo:"text"},
{ajuda:"Full filename of the legend image for the CLASS. This image is used when building a legend (or requesting a legend icon via MapScript or the CGI application).",
titulo:"Keyimage",id:"keyimage",value:dados.keyimage,tipo:"text"},
{ajuda:"Maximum scale at which this CLASS is drawn. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Maxscale",id:"maxscale",value:dados.maxscale,tipo:"text"},
{ajuda:"Minimum scale at which this CLASS is drawn. Scale is given as the denominator of the actual scale fraction, for example for a map at a scale of 1:24,000 use 24000.",
titulo:"Minscale",id:"minscale",value:dados.minscale,tipo:"text"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
if(dados.colunas != "")
{
ins += "<p>O layer possuí as seguintes colunas na tabela de atributos: ";
ins += dados.colunas+"</p>";
}
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
temp = "<select id='status' >";
temp += core_comboObjeto(objstatus,"valor","texto",dados.status);
temp += "</select>";
$i("cStatus").innerHTML = temp;
var temp = function()
{salvarDadosEditor('classeGeral',dados.codigoMap,dados.codigoLayer,dados.indiceClasse);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
}
function montaEditorClasseLabel(dados)
{
var param = {
"linhas":[
{ajuda:"Color to draw text with.",
titulo:"Color",id:"color",value:dados.color,tipo:"cor"},
{ajuda:"Text size. Use integer to give the size in pixels of your TrueType font based label, or any of theother 5 listed keywords to bitmap fonts.",
titulo:"Size",id:"size",value:dados.size,tipo:"text"},
{ajuda:"Position of the label relative to the labeling point (layers only). First letter is Y position, second letter is X position. Auto tells MapServer to calculate a label position that will not interfere with other labels. With points and polygons, MapServer selects from the 8 outer positions (i.e. excluding cc). With lines, it only uses lc or uc, until it finds a position that doesn't collide with labels that have already been drawn. If all positions cause a conflict, then the label is not drawn (Unless the label's FORCE a parameter is set to true). Auto placement is only available with cached labels.",
titulo:"Position",id:"position",value:dados.position,tipo:"text"},
{ajuda:"Padding, in pixels, around labels. Useful for maintaining spacing around text to enhance readability. Available only for cached labels. Default is 0.",
titulo:"Buffer",id:"buffer",value:dados.buffer,tipo:"text"},
{ajuda:"Font alias (as defined in the FONTSET) to use for labeling",
titulo:"Font",id:"",value:dados.font,tipo:"text",div:"<div id=cFont ></div>"},
{ajuda:"Type of font to use. Generally bitmap fonts are faster to draw then TrueType fonts. However,TrueType fonts are scalable and available in a variety of faces. Be sure to set the FONT parameter ifyou select TrueType",
titulo:"Type",id:"",value:dados.type,tipo:"text",div:"<div id=cType ></div>"},
{ajuda:"Can text run off the edge of the map? Default is true",
titulo:"Partials",id:"",value:dados.partials,tipo:"text",div:"<div id=cPartials ></div>"},
{ajuda:"Forces labels for a particular class on, regardless of collisions. Available only for cached labels. Default is false.",
titulo:"Force",id:"",value:dados.force,tipo:"text",div:"<div id=cForce ></div>"},
{ajuda:"Color to draw a background rectangle (i.e. billboard). Off by default.",
titulo:"Backgroundcolor",id:"backgroundcolor",value:dados.backgroundcolor,tipo:"cor"},
{ajuda:"Color to draw a background rectangle (i.e. billboard) shadow. Off by default.",
titulo:"Backgroundshadowcolor",id:"backgroundshadowcolor",value:dados.backgroundshadowcolor,tipo:"cor"},
{ajuda:"Color to draw a one pixel outline around the text.",
titulo:"Outlinecolor",id:"outlinecolor",value:dados.outlinecolor,tipo:"cor"},
{ajuda:"Color of drop shadow.",
titulo:"Shadowcolor",id:"shadowcolor",value:dados.shadowcolor,tipo:"text"},
{ajuda:"Shadow offset in pixels.",
titulo:"Shadowsizex",id:"shadowsizex",value:dados.shadowsizex,tipo:"text"},
{ajuda:"Shadow offset in pixels.",
titulo:"Shadowsizey",id:"shadowsizey",value:dados.shadowsizey,tipo:"text"},
{ajuda:"How far should the background rectangle be offset? Default is 1.",
titulo:"Backgroundshadowsizex",id:"backgroundshadowsizex",value:dados.backgroundshadowsizex,tipo:"text"},
{ajuda:"How far should the background rectangle be offset? Default is 1.",
titulo:"Backgroundshadowsizey",id:"backgroundshadowsizey",value:dados.backgroundshadowsizey,tipo:"text"},
{ajuda:"Minimum font size to use when scaling text (pixels). Default is 4.",
titulo:"Minsize",id:"minsize",value:dados.minsize,tipo:"text"},
{ajuda:"Maximum font size to use when scaling text (pixels). Default is 256.",
titulo:"Maxsize",id:"maxsize",value:dados.maxsize,tipo:"text"},
{ajuda:"Offset values for labels, relative to the lower left hand corner of the label and the label point. Given in pixels. In the case of rotated text specify the values as if all labels are horizontal and any rotation will be compensated for.",
titulo:"Offsetx",id:"offsetx",value:dados.offsetx,tipo:"text"},
{ajuda:"Offset values for labels, relative to the lower left hand corner of the label and the label point. Given in pixels. In the case of rotated text specify the values as if all labels are horizontal and any rotation will be compensated for.",
titulo:"Offsety",id:"offsety",value:dados.offsety,tipo:"text"},
{ajuda:"Angle, given in degrees, to draw the label or AUTO to allow the software to compute the angle, AUTO is valid for LINE layers only. FOLLOW was introduced in version 4.10 and tells map server to compute a curved label for appropriate linear features",
titulo:"Angle (utilize MS_FOLLOW para textos curvos)",id:"angle",value:dados.angle,tipo:"text"},
{ajuda:"Cálculo automático do ângulo quando os elementos forem lineares",
titulo:"Autoangle",id:"",value:dados.angle,tipo:"text",div:"<div id=cAutoangle ></div>"},
{ajuda:"Should text be antialiased? Note that this requires more available colors, decreased drawing performance, and results in slightly larger output images.",
titulo:"Antialias",id:"antialias",value:dados.antialias,tipo:"text"},
{ajuda:"Character that represents an end-of-line condition in label text, thus resulting in a multi-line label.",
titulo:"Wrap",id:"wrap",value:dados.wrap,tipo:"text"},
{ajuda:"Minimum size a feature must be to be labeled. Given in pixels. For line data the overall length of the displayed line is used, for polygons features the smallest dimension of the bounding box is used. Auto keyword tells MapServer to only label features that are larger than their corresponding label. Available for cached labels only.",
titulo:"Minfeaturesize",id:"minfeaturesize",value:dados.minfeaturesize,tipo:"text"},
{ajuda:"Minimum distance between duplicate labels. Given in pixels.",
titulo:"Mindistance",id:"mindistance",value:dados.mindistance,tipo:"text"},
{ajuda:"Supported encoding format to be used for labels. If the format is not supported, the label will not be drawn. Requires the iconv library (present on most systems). The library is always detected if present on the system, but if not the label will not be drawn. Required for displaying international characters in MapServer. More information can be found at: http://www.foss4g.org/FOSS4G/MAPSERVER/mpsnf-i18n-en.html.",
titulo:"Encoding",id:"encoding",value:dados.encoding,tipo:"text"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
if(dados.colunas != "")
{
ins += "<p>O layer possuí as seguintes colunas na tabela de atributos: ";
ins += dados.colunas+"</p>";
}
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
temp = "<select id='font' >";
temp += core_comboObjeto(dados.fontes,"","",dados.font);
temp += "</select>";
$i("cFont").innerHTML = temp;
temp = "<select id='type' >";
temp += core_comboObjeto(objfonttypes,"valor","texto",dados.type);
temp += "</select>";
$i("cType").innerHTML = temp;
temp = "<select id='partials' >";
temp += core_comboObjeto(objbool_tf,"valor","texto",dados.partials);
temp += "</select>";
$i("cPartials").innerHTML = temp;
temp = "<select id='force' >";
temp += core_comboObjeto(objbool_tf,"valor","texto",dados.force);
temp += "</select>";
$i("cForce").innerHTML = temp;
temp = "<select id='autoangle' >";
temp += core_comboObjeto(objbool_tf,"valor","texto",dados.autoangle);
temp += "</select>";
$i("cAutoangle").innerHTML = temp;
var temp = function()
{salvarDadosEditor('classeLabel',dados.codigoMap,dados.codigoLayer,dados.indiceClasse);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
}
function montaEditorEstilo(dados)
{
var param = {
"linhas":[
{ajuda:"The symbol name or number to use for all features if attribute tables are not used. The number is the index of the symbol in the symbol file, starting at 1, the 5th symbol in the file is therefore symbol number 5. You can also give your symbols names using the NAME keyword in the symbol definition file, and use those to refer to them. Default is 0, which results in a single pixel, single width line, or solid polygon fill, depending on layer type.You can also specify a gif or png filename. The path is relative to the location of the mapfile.",
titulo:"Symbolname",id:"",value:dados.symbolname,tipo:"text",div:"<div id=cSymbolname ></div>"},
{ajuda:"Color to use for drawing features.",
titulo:"Color",id:"color",value:dados.color,tipo:"cor"},
{ajuda:"Background-color to use for drawing features.",
titulo:"Backgroundcolor",id:"backgroundcolor",value:dados.backgroundcolor,tipo:"cor"},
{ajuda:"Height, in pixels, of the symbol/pattern to be used. Only useful with scalable symbols. Default is 1. For symbols of Type HATCH, the SIZE is the distance between hatched lines. For its use with hatched lines, see Example#8 in the SYMBOL examples.",
titulo:"Size",id:"size",value:dados.size,tipo:"text"},
{ajuda:"Color to use for outlining polygons and certain marker symbols. Line symbols do not support outline colors.",
titulo:"Outlinecolor",id:"outlinecolor",value:dados.outlinecolor,tipo:"cor"},
{ajuda:"Width refers to the thickness of line work drawn, in pixels. Default is 1. For symbols of Type HATCH, the WIDTH is how thick the hatched lines are. For its use with hatched lines, see Example#8 in the SYMBOL examples.",
titulo:"Width",id:"width",value:dados.width,tipo:"text"},
{ajuda:"Height, in pixels, of the symbol/pattern to be used. Only useful with scalable symbols. Default is 1. For symbols of Type HATCH, the SIZE is the distance between hatched lines. For its use with hatched lines, see Example#8 in the SYMBOL examples.",
titulo:"Minsize",id:"minsize",value:dados.minsize,tipo:"text"},
{ajuda:"Maximum size in pixels to draw a symbol. Default is 50.",
titulo:"Maxsize",id:"maxsize",value:dados.maxsize,tipo:"text"},
{ajuda:"Offset values for shadows, hollow symbols, etc ...",
titulo:"Offsetx",id:"offsetx",value:dados.offsetx,tipo:"text"},
{ajuda:"Offset values for shadows, hollow symbols, etc ...",
titulo:"Offsety",id:"offsety",value:dados.offsety,tipo:"text"},
{ajuda:"Should TrueType fonts and Cartoline symbols be antialiased.",
titulo:"Antialias",id:"antialias",value:dados.antialias,tipo:"text"},
{ajuda:"Minimum width in pixels to draw the line work.",
titulo:"Minwidth",id:"minwidth",value:dados.minwidth,tipo:"text"},
{ajuda:"Maximun width in pixels to draw the line work.",
titulo:"Maxwidth",id:"maxwidth",value:dados.maxwidth,tipo:"text"},
{ajuda:"Angle, given in degrees, to draw the line work. Default is 0. For symbols of Type HATCH, this is the angle of the hatched lines. For its use with hatched lines, see Example#8 in the SYMBOL examples.",
titulo:"Angle",id:"angle",value:dados.angle,tipo:"text"}
]
};
var ins = "<input type=button title='Salvar' value='Salvar' id=salvarEditor />";
ins += core_geraLinhas(param);
ins += "<br><br><br>";
$i("editor_bd").innerHTML = ins;
temp = "<input type='text' value='"+dados.symbolname+"' id='symbolname' size='50'>";
temp += "<div id='listaSimbolos' style='overflow:auto;width:400px;height:50px;'></div>";
$i("cSymbolname").innerHTML = temp;
var temp = function()
{salvarDadosEditor('estilo',dados.codigoMap,dados.codigoLayer,dados.indiceClasse,dados.indiceEstilo);};
new YAHOO.widget.Button("salvarEditor",{ onclick: { fn: temp }});
escolheSimbolo = function(nome){
$i("symbolname").value = nome;
};
//lista os simbolos
var sUrl = "../php/editormapfile.php?funcao=editasimbolo&tipo="+dados.type+"&opcao=listaSimbolos&onclick=escolheSimbolo(this.title)";
var callback =
{
success:function(o)
{
try
{
var re = new RegExp("ms_tmp", "g");
var t = o.responseText.replace(re,"../../../ms_tmp/");
var re = new RegExp("\\\\", "g");
t = t.replace(re,"");
$i("listaSimbolos").innerHTML = t;
}
catch(e){}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback,'POST');
}
/*
Function: salvarDadosEditor
Altera um mapfile conforme o editor específico de uma característica
<alterarConexao>
<alterarMetadados>
<alterarGeral>
<alterarClasseLabel>
<alterarEstilo>
*/
function salvarDadosEditor(tipo,codigoMap,codigoLayer,indiceClasse,indiceEstilo,testar)
{
var campos = [], par = "", prog = "", temp, re;
if(arguments.length < 6){testar = false;}
if(tipo == "grupousr"){
campos = [];
par = "&id_tema="+$i("Eid_tema_usr").value+"&id_grupo="+$i("Eid_grupousr").value;
prog = "../php/editormapfile.php?funcao=adicionaGrupoUsrTema";
}
if(tipo == "comport")
{
campos = new Array("aplicaextensao","permitecomentario","temporizador","classe","legendaimg","escondido","identifica","transitioneffect","status","offsite","opacity","maxscale","minscale","labelitem","labelmaxscale","labelminscale","symbolscale","tolerance","toleranceunits","sizeunits");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
prog = "../php/editormapfile.php?funcao=alterarComport";
}
if(tipo == "dispo")
{
campos = new Array("download","arquivodownload","arquivokmz");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
prog = "../php/editormapfile.php?funcao=alterarDispo";
}
if(tipo == "titulo")
{
//
//validação
//
var valorTeste = $i("extensao").value;
if(valorTeste != ""){
var teste1 = valorTeste.split(" ");
if(teste1.length != 4)
{alert("Sao necessarios 4 valores em extensao");return;}
if(teste1[0]*1 > teste1[2]*1)
{alert("xmin maior que xmax em extensao");return;}
if(teste1[1]*1 > teste1[3]*1)
{alert("ymin maior que ymax em extensao");return;}
}
var valorTeste = $i("escala").value;
if(valorTeste != ""){
var teste1 = valorTeste * 1;
if(teste1 <= 0){}
{alert("Valor de escala incorreto");return;}
}
campos = new Array("name","tema","iconetema","mensagem","escala","extensao","group");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
prog = "../php/editormapfile.php?funcao=alterarTitulo";
}
if(tipo == "conexao")
{
campos = new Array("cache","projection","type","connection","data","connectiontype","tileitem","tileindex","filteritem","filter","tipooriginal","convcaracter");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
prog = "../php/editormapfile.php?funcao=alterarConexao";
}
if(tipo == "metadados")
{
campos = new Array("wms_tile","legendaimg","wms_srs","wms_name","wms_server_version","wms_format","wms_auth_username","wms_auth_password","wms_auth_type","wms_connectiontimeout","wms_latlonboundingbox","wms_proxy_auth_type","wms_proxy_host","wms_proxy_port","wms_proxy_type","wms_proxy_username","wms_proxy_password","wms_sld_body","wms_sld_url","wms_style","wms_bgcolor","wms_transparent","wms_time","itembuscarapida","ltempoformatodata","ltempoiteminicio","ltempoitemfim","ltempoitemtitulo","ltempoitemdescricao","ltempoitemtip","ltempoitemimagem","ltempoitemicone","ltempoitemlink","editorsql","ltempoconvencode","description_template","palletefile","palletestep","classestamanho","classessimbolo","classescor","classesnome","classesitem","identifica","transitioneffect","extensao","escondido","classe","tip","itenslink","itens","itensdesc");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer;
prog = "../php/editormapfile.php?funcao=alterarMetadados";
}
if(tipo == "classeGeral")
{
campos = new Array("status","minscale","maxscale","name","title","keyimage");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse;
temp = $i("expression").value;
re = /]/g;
temp = temp.replace(re,"C_");
re = "[";
temp = temp.replace(re,"_C");
re = /'/g;
temp = temp.replace(re,"_A_");
par += "&expression="+temp;
prog = "../php/editormapfile.php?funcao=alterarClasseGeral";
}
if(tipo == "classeLabel")
{
campos = new Array("encoding","force","partials","mindistance","minfeaturesize","wrap","antialias","buffer","autoangle","angle","offsety","offsetx","position","maxsize","minsize","size","backgroundshadowsizey","backgroundshadowsizex","shadowsizey","shadowsizex","shadowcolor","outlinecolor","color","backgroundshadowcolor","backgroundcolor","type","font");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse;
prog = "../php/editormapfile.php?funcao=alterarClasseLabel" ;
}
if(tipo == "estilo")
{
campos = new Array("angle","maxwidth","minwidth","width","outlinecolor","backgroundcolor","antialias","offsety","offsetx","maxsize","minsize","size","color","symbolname");
par = "&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse+"&indiceEstilo="+indiceEstilo;
prog = "../php/editormapfile.php?funcao=alterarEstilo";
}
prog += "&testar="+testar;
try{
for (var i=0;i<campos.length;i++){
if($i(campos[i]))
{par += "&"+campos[i]+"="+($i(campos[i]).value);}
}
}catch(e){alert(e);}
core_carregando("ativa");
core_carregando(" gravando o registro do layer= "+codigoLayer);
var sUrl = prog+par;
var callback =
{
success:function(o)
{
try
{
if(YAHOO.lang.JSON.parse(o.responseText) == "erro")
{
core_carregando("<span style=color:red >Não foi possível salvar.</span>");
setTimeout("core_carregando('desativa')",3000);
}
else
{
if(testar == false){
if(tipo=="conexao")
{montaEditorDados(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="comport")
{montaEditorComport(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="dispo")
{montaEditorDispo(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="titulo")
{montaEditorTitulo(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="metadados")
{montaEditorMetadados(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="geral")
{
var d = YAHOO.lang.JSON.parse(o.responseText);
montaEditorGeral(d);
if(d.name != codigoLayer)
{
core_pegaMapfiles("montaArvore()");
YAHOO.admin.container.panelEditor.destroy();
YAHOO.admin.container.panelEditor = null;
}
}
if(tipo=="classeGeral")
{montaEditorClasseGeral(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="classeLabel")
{montaEditorClasseLabel(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo=="estilo")
{montaEditorEstilo(YAHOO.lang.JSON.parse(o.responseText));}
if(tipo =="grupousr"){
var no = tree.getNodeByProperty("id",$i("Ecodigo_mapa_usr").value);
tree.removeChildren(no) ;
no.expand();
}
}
else{
window.open("../../testamapfile.php?map="+YAHOO.lang.JSON.parse(o.responseText).url);
}
core_carregando("desativa");
}
}
catch(e){core_handleFailure(e,o.responseText);}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
core_makeRequest(sUrl,callback,'POST');
}
function sobeDesce(movimento,tipo,codigoMap,codigoLayer,indiceClasse,indiceEstilo)
{
var movimenta = "", no;
if(tipo == "layer")
{
no = tree.getNodeByProperty("id",codigoMap+"_"+codigoLayer);
movimenta = core_movimentaNo(movimento,no);
indiceClasse = "";
indiceEstilo = "";
}
if(tipo == "classe")
{
no = tree.getNodeByProperty("id",codigoMap+"_"+codigoLayer+"_"+indiceClasse);
movimenta = true;
indiceEstilo = "";
}
if(tipo == "estilo")
{
no = tree.getNodeByProperty("id",codigoMap+"_"+codigoLayer+"_"+indiceClasse+"_"+indiceEstilo);
movimenta = true;
}
var callback =
{
success: function(o)
{
core_carregando("desativa");
var no = "";
if(tipo == "classe")
{
no = tree.getNodeByProperty("id",codigoMap+"_"+codigoLayer);
tree.removeChildren(no) ;
no.expand();
}
if(tipo == "estilo")
{
no = tree.getNodeByProperty("id",codigoMap+"_"+codigoLayer+"_"+indiceClasse);
tree.removeChildren(no);
no.expand();
}
},
failure:core_handleFailure,
argument: { foo:"foo", bar:"bar" }
};
if(movimenta)
{
var sUrl = "../php/editormapfile.php?funcao=movimentaNo&tipo="+tipo+"&movimento="+movimento+"&codigoMap="+codigoMap+"&codigoLayer="+codigoLayer+"&indiceClasse="+indiceClasse+"&indiceEstilo="+indiceEstilo;
core_carregando("ativa");
core_carregando(" modificando a ordem");
core_makeRequest(sUrl,callback);
}
}
//YAHOO.util.Event.addListener(window, "load", initMenu);