cursodsv10.htm
2.21 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Category" content="i3Geo Mapa interativo MMA geoprocessamento sig mobile">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<title>i3GEO - OpenLayers</title>
<script src="../classesjs/i3geo.js"></script>
<script src="../pacotes/openlayers/OpenLayers2131.js"></script>
<link rel="stylesheet" type="text/css" href="../css/black.css">
</head>
<body style='margin-left:7px;background:white;' class=yui-skin-sam >
<div style="top:50px;">
<div id="arvoreDeCamadas" style="width:250px;height:400px;border:1px solid;float:left;">
</div>
<div id=i3geo >
<div id=corpoMapa style="left:255px;width:700px;height:400px;background-image:url('../imagens/i3geo1bw.jpg');">
</div>
</div>
</div>
<div id="logMapa" ></div>
<script>
/************
Antes de iniciar a arvore de camadas, os parametros de configuracao podem ser alterados para ajustar a arvore.
Nesse mapa os parametros sao ajustados separadamente indicando quais as funcoes que operam sobre cada camada
serao ou nao mostradas.
Mais detalhes em:
http://localhost/i3geo/documentacao/files/classesjs/classe_arvoredecamadas-js.html
************/
i3GEO.idioma.MOSTRASELETOR = false; //para nao mostrar as bandeiras de escolha do idioma
i3GEO.configura.mapaRefDisplay = "none";//nao mostra o mapa de referencia
//parametros de configuracao da arvore
i3GEO.arvoreDeCamadas.EXPANDIDA = true;
//opcoes da barra de icones principal
i3GEO.arvoreDeCamadas.LIGARDESLIGARTODOS = false;
//opcoes dos nos abaixo de cada tema
i3GEO.arvoreDeCamadas.FUNCOES = {
farolescala : false,
excluir : false,
sobe : false,
desce : false,
fonte : true,
zoomtema : true,
compartilhar : true,
opacidade : false,
mudanome : false,
procurar : false,
toponimia : false,
etiquetas : false,
filtrar : false,
tabela : true,
grafico : false,
editorlegenda : false,
destacar : false,
cortina : false,
sql : false,
comentar : false,
temporizador : false,
wms : false,
tme : false,
copia : false
};
i3GEO.finalizaAPI = function(){
i3GEO.arvoreDeCamadas.inicia("arvoreDeCamadas");
};
i3GEO.cria();
i3GEO.inicia();
</script>
</body>
</html>