Commit afa02bc69f4bdeda187221f3ad9ebcc2f768034f
1 parent
afdccdbd
Exists in
master
and in
7 other branches
--no commit message
Showing
7 changed files
with
328 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,249 @@ |
1 | +function treeviewNew(treeviewName, skinName, treeviewParent, rootDir) | |
2 | +{ | |
3 | + if (treeviewName == null || treeviewName == "") | |
4 | + return false; | |
5 | + if (rootDir == null) | |
6 | + rootDir = g_locaplic+"/classesjs/jsobjects"; | |
7 | + jsUIGblAddSkin("jsUI-Treeview", skinName, rootDir); | |
8 | + if (treeviewParent == null || treeviewParent == "" || treeviewParent == undefined) | |
9 | + treeviewParent = document.body; | |
10 | + if (typeof(treeviewParent) != "object") | |
11 | + treeviewParent = document.getElementById(treeviewParent); | |
12 | + var tvDiv = document.createElement("div"); | |
13 | + //tvDiv.style.height = "100%"; | |
14 | + tvDiv.style.width = "100%"; | |
15 | + tvDiv.style.overflow = "auto"; //era auto | |
16 | + tvDiv.className = "TreeviewMain"; | |
17 | + tvDiv.id = treeviewName; | |
18 | + treeviewParent.appendChild(tvDiv); | |
19 | + var tbObject = TreeviewPvtConstructTaskbar(treeviewName, tvDiv, treeviewParent, rootDir); | |
20 | + return tbObject; | |
21 | +} | |
22 | + | |
23 | +// Private constructor method | |
24 | +// Used to attach taskbar elements and methods to a given instance of the treeview | |
25 | +function TreeviewPvtConstructTaskbar(treeviewName, treeviewDiv, treeviewParent, rootDir) | |
26 | +{ | |
27 | + var tbObject; | |
28 | + treeviewName = document.getElementById(treeviewName); | |
29 | + eval("treeviewName.element = treeviewDiv"); //element | |
30 | + /*eval(treeviewName + ".createItem = TreeviewPubCreateItem"); //method | |
31 | + eval(treeviewName + ".itemClick = doNothing"); //event | |
32 | + eval(treeviewName + ".itemExpand = doNothing"); //event | |
33 | + eval(treeviewName + ".TreeviewParent = treeviewParent"); //private property | |
34 | + eval(treeviewName + ".rootDir = rootDir"); //private property | |
35 | + eval("tbObject = " + treeviewName); //assignment*/ | |
36 | + eval("treeviewName.createItem = TreeviewPubCreateItem"); //method | |
37 | + eval("treeviewName.itemClick = doNothing"); //event | |
38 | + eval("treeviewName.itemExpand = doNothing"); //event | |
39 | + eval("treeviewName.TreeviewParent = treeviewParent"); //private property | |
40 | + eval("treeviewName.rootDir = rootDir"); //private property | |
41 | + eval("tbObject = treeviewName"); //assignment | |
42 | + return tbObject; | |
43 | +} | |
44 | + | |
45 | +function TreeviewPubCreateItem(itemID, itemName, itemImg, hasChildren, preload, show, parentID) //public name: createItem | |
46 | +{ | |
47 | + var naveg; | |
48 | + if (document.all) | |
49 | + naveg = "IE"; | |
50 | + else | |
51 | + naveg = "MOZ"; | |
52 | + var tbItem = document.createElement("ul"); | |
53 | + //tbItem.style.backgroundColor="gray"; | |
54 | + tbItem.id = itemID; | |
55 | + if (parentID == null) | |
56 | + tbItem.style.marginBottom = "0px"; | |
57 | + tbItem.className = "TreeviewItem"; | |
58 | + if (naveg == "MOZ") | |
59 | + tbItem.style.overflow = "auto"; | |
60 | + else | |
61 | + tbItem.style.overflow = "hidden"; | |
62 | + tbItem.hasChildren = hasChildren; | |
63 | + tbItem.preload = preload; | |
64 | + //tbItem.onmouseover = TreeviewPvtItemOver; | |
65 | + //tbItem.onmouseout = TreeviewPvtItemOut; | |
66 | + if (!show) | |
67 | + tbItem.style.display = "none"; | |
68 | + var tbImg = document.createElement("img"); | |
69 | + tbImg.className = "mais"; | |
70 | + tbImg.src = this.rootDir + "/../../imagens/branco.gif"; | |
71 | + if (hasChildren == false) | |
72 | + tbImg.className = "menos"; | |
73 | + else if (hasChildren == true) | |
74 | + tbImg.className = "mais"; | |
75 | + else | |
76 | + tbImg.src = this.rootDir + "/jsUI-Treeview/unknown.gif"; | |
77 | + tbImg.onclick = TreeviewPvtExpandClick; | |
78 | + //incluido pelo edmar | |
79 | + if (hasChildren != false) | |
80 | + {tbItem.appendChild(tbImg);} | |
81 | + | |
82 | + if (typeof(itemImg)=="object") | |
83 | + {var tbIcon = itemImg;} | |
84 | + else | |
85 | + { | |
86 | + var tbIcon = document.createElement("img"); | |
87 | + //tbIcon.src = itemImg; | |
88 | + tbIcon.src = this.rootDir + "/../../imagens/branco.gif"; | |
89 | + tbIcon.className = itemImg; | |
90 | + } | |
91 | + if (itemImg != null) | |
92 | + { | |
93 | + tbIcon.onclick = TreeviewPvtItemClick; | |
94 | + tbIcon.ondblclick = TreeviewPvtExpandClick; | |
95 | + tbIcon.style.marginRight = "4px"; | |
96 | + //tbIcon.align = "absmiddle"; | |
97 | + tbItem.appendChild(tbIcon); | |
98 | + } | |
99 | + var tbText = document.createElement("span"); | |
100 | + //tbText.style.backgroundColor="gray" | |
101 | + tbText.className = "TreeviewItemTextOut"; | |
102 | + //tbText.ondblclick = TreeviewPvtExpandClick; | |
103 | + tbText.ondblclick = TreeviewPvtExpandClick; | |
104 | + tbText.innerHTML += itemName; | |
105 | + tbItem.appendChild(tbText); | |
106 | + if (parentID == null || parentID == "") | |
107 | + this.element.appendChild(tbItem); | |
108 | + else | |
109 | + { | |
110 | + var parentObj = document.getElementById(parentID); | |
111 | + if (parentObj.hasChildren != false) | |
112 | + { | |
113 | + parentObj.appendChild(tbItem); | |
114 | + if (show) | |
115 | + { | |
116 | + parentObj.childNodes[0].className = "menos"; | |
117 | + //see if there are hidden children and show them too | |
118 | + var allArray = parentObj.childNodes; | |
119 | + if (allArray.length > 0) | |
120 | + { | |
121 | + for (var a=0;a<allArray.length;a++) | |
122 | + { | |
123 | + if (allArray[a].tagName == "UL") | |
124 | + allArray[a].style.display = "block"; | |
125 | + } | |
126 | + } | |
127 | + } | |
128 | + if (!show) | |
129 | + parentObj.childNodes[0].className = "mais"; | |
130 | + } | |
131 | + } | |
132 | +} | |
133 | + | |
134 | +var oldClass = ""; | |
135 | +function TreeviewPvtItemOver(e) | |
136 | +{ | |
137 | + if (this.childNodes[2].className != "TreeviewItemTextOver") | |
138 | + oldClass = this.childNodes[2].className; | |
139 | + if (this.childNodes[2].className != "TreeviewItemTextClicked") | |
140 | + this.childNodes[2].className = "TreeviewItemTextOver"; | |
141 | + if (!e) | |
142 | + var e = window.event; | |
143 | + e.cancelBubble = true; | |
144 | + if (e.stopPropagation) | |
145 | + e.stopPropagation(); | |
146 | +} | |
147 | + | |
148 | +function TreeviewPvtItemOut(e) | |
149 | +{ | |
150 | + this.childNodes[2].className = oldClass; | |
151 | + if (!e) | |
152 | + var e = window.event; | |
153 | + e.cancelBubble = true; | |
154 | + if (e.stopPropagation) | |
155 | + e.stopPropagation(); | |
156 | +} | |
157 | + | |
158 | +function TreeviewPvtItemClick(e) | |
159 | +{ | |
160 | + if (!e) | |
161 | + var e = window.event; | |
162 | + | |
163 | + var currTree = TreeviewPvtFindRootObject(this); | |
164 | + node = currTree.element; | |
165 | + | |
166 | + var allArray = getAllDescendants(node, "UL"); | |
167 | + | |
168 | + for (var a=0;a<allArray.length;a++) | |
169 | + { | |
170 | + if (allArray[a].childNodes[2]) | |
171 | + allArray[a].childNodes[2].className="TreeviewItemTextOut"; | |
172 | + } | |
173 | + this.parentNode.childNodes[2].className = "TreeviewItemTextClicked"; | |
174 | + oldClass = "TreeviewItemTextClicked"; | |
175 | + | |
176 | + currTree.itemClick(this.parentNode.id); | |
177 | + | |
178 | + e.cancelBubble = true; | |
179 | + if (e.stopPropagation) | |
180 | + e.stopPropagation(); | |
181 | + e.returnValue = true; | |
182 | + | |
183 | +} | |
184 | + | |
185 | +function TreeviewPvtExpandClick(e) | |
186 | +{ | |
187 | + if (!e) | |
188 | + var e = window.event; | |
189 | + | |
190 | + var currTree = TreeviewPvtFindRootObject(this); | |
191 | + var node = this.parentNode.childNodes[0]; | |
192 | + var currSrc = node.className; | |
193 | + if (currSrc == "mais") | |
194 | + { | |
195 | + var allArray = this.parentNode.childNodes; | |
196 | + var hiddenChildren = false; | |
197 | + if (allArray.length > 0) | |
198 | + { | |
199 | + for (var a=0;a<allArray.length;a++) | |
200 | + { | |
201 | + if (allArray[a].tagName == "UL") | |
202 | + { | |
203 | + allArray[a].style.display = "block"; | |
204 | + hiddenChildren = true; | |
205 | + } | |
206 | + } | |
207 | + node.className = "menos"; | |
208 | + } | |
209 | + if (!hiddenChildren) | |
210 | + node.className = "menos"; | |
211 | + currTree.itemExpand(this.parentNode.id); | |
212 | + } | |
213 | + else if (currSrc == "menos") | |
214 | + { | |
215 | + node.className = "mais"; | |
216 | + var allArray = getAllDescendants(node.parentNode, "UL"); | |
217 | + for (var a=0;a<allArray.length;a++) | |
218 | + { | |
219 | + if (allArray[a].preload) | |
220 | + { | |
221 | + if (allArray[a].parentNode == node.parentNode) | |
222 | + allArray[a].style.display = "none"; | |
223 | + } | |
224 | + else | |
225 | + { | |
226 | + if (allArray[a].parentNode == node.parentNode) | |
227 | + allArray[a].parentNode.removeChild(allArray[a]); | |
228 | + } | |
229 | + } | |
230 | + } | |
231 | + else if (currSrc == "unknown.gif") | |
232 | + currTree.itemExpand(this.parentNode.id); | |
233 | + else if (currSrc == "ponto") | |
234 | + objectEvent(node.parentNode.childNodes[1], "onclick", browser); | |
235 | + | |
236 | + e.cancelBubble = true; | |
237 | + if (e.stopPropagation) | |
238 | + e.stopPropagation(); | |
239 | + e.returnValue = false; | |
240 | +} | |
241 | + | |
242 | +function TreeviewPvtFindRootObject(currTree) | |
243 | +{ | |
244 | + while(currTree.tagName != "DIV") | |
245 | + currTree = currTree.parentNode; | |
246 | + var obj = eval ("document.getElementById('" + currTree.id + "')"); | |
247 | + currTree = obj; | |
248 | + return currTree; | |
249 | +} | |
0 | 250 | \ No newline at end of file | ... | ... |
... | ... | @@ -0,0 +1,39 @@ |
1 | +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> | |
2 | + | |
3 | +<html><head><title>Index - I3Geo</title><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script><script language=JavaScript src="../javascript/searchdata.js"></script></head><body id=IndexPage onLoad="NDOnLoad()"><script language=JavaScript><!-- | |
4 | +if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script> | |
5 | + | |
6 | +<!-- Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) --> | |
7 | +<!-- http://www.naturaldocs.org --> | |
8 | + | |
9 | +<!-- saved from url=(0026)http://www.naturaldocs.org --> | |
10 | + | |
11 | + | |
12 | + | |
13 | + | |
14 | +<div id=Index><div class=IPageTitle>Index</div><div class=INavigationBar><a href="General.html#Symbols">$#!</a> · <a href="General.html#Numbers">0-9</a> · <a href="General2.html#A">A</a> · <a href="General3.html#B">B</a> · <a href="General4.html#C">C</a> · <a href="General5.html#D">D</a> · <a href="General5.html#E">E</a> · <a href="General6.html#F">F</a> · <a href="General7.html#G">G</a> · <a href="General8.html#H">H</a> · <a href="General9.html#I">I</a> · <a href="General10.html#J">J</a> · K · <a href="General10.html#L">L</a> · <a href="General11.html#M">M</a> · <a href="General12.html#N">N</a> · <a href="General12.html#O">O</a> · <a href="General13.html#P">P</a> · <a href="General14.html#Q">Q</a> · <a href="General14.html#R">R</a> · <a href="General15.html#S">S</a> · <a href="General16.html#T">T</a> · <a href="General16.html#U">U</a> · <a href="General16.html#V">V</a> · <a href="#W">W</a> · <a href="#X">X</a> · Y · <a href="#Z">Z</a></div><table border=0 cellspacing=0 cellpadding=0><tr><td class=IHeading id=IFirstHeading><a name="W"></a>W</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><span class=ISymbol>w</span>, <span class=IParent>Mapa.<span class=HB> </span>objmapa</span><div class=ISubIndex><a href="../files/classesjs/iniciamma-js.html#Mapa.objmapa.w" id=link1756 onMouseOver="ShowTip(event, 'tt885', 'link1756')" onMouseOut="HideTip('tt885')" class=IFile>classesjs\<span class=HB> </span>iniciamma.js</a><a href="../files/classesjs/temp-js.html#Mapa.objmapa.w" id=link1757 onMouseOver="ShowTip(event, 'tt885', 'link1757')" onMouseOut="HideTip('tt885')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/iniciamma-js.html#Mapa.objmapa.w" id=link1758 onMouseOver="ShowTip(event, 'tt885', 'link1758')" onMouseOut="HideTip('tt885')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>iniciamma.js</a><a href="../files/classesjs/zerocal/temp-js.html#Mapa.objmapa.w" id=link1759 onMouseOver="ShowTip(event, 'tt885', 'link1759')" onMouseOut="HideTip('tt885')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCaguarde</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCaguarde" id=link1760 onMouseOver="ShowTip(event, 'tt886', 'link1760')" onMouseOut="HideTip('tt886')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCaguarde" id=link1761 onMouseOver="ShowTip(event, 'tt886', 'link1761')" onMouseOut="HideTip('tt886')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCativa</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCativa" id=link1762 onMouseOver="ShowTip(event, 'tt887', 'link1762')" onMouseOut="HideTip('tt887')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCativa" id=link1763 onMouseOver="ShowTip(event, 'tt887', 'link1763')" onMouseOut="HideTip('tt887')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCchamadados</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCchamadados" id=link1764 onMouseOver="ShowTip(event, 'tt888', 'link1764')" onMouseOut="HideTip('tt888')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCchamadados" id=link1765 onMouseOver="ShowTip(event, 'tt888', 'link1765')" onMouseOut="HideTip('tt888')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCcriano</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCcriano" id=link1766 onMouseOver="ShowTip(event, 'tt889', 'link1766')" onMouseOut="HideTip('tt889')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCcriano" id=link1767 onMouseOver="ShowTip(event, 'tt889', 'link1767')" onMouseOut="HideTip('tt889')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCgetcapabilities</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCgetcapabilities" id=link1768 onMouseOver="ShowTip(event, 'tt890', 'link1768')" onMouseOut="HideTip('tt890')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCgetcapabilities" id=link1769 onMouseOver="ShowTip(event, 'tt890', 'link1769')" onMouseOut="HideTip('tt890')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCinicia</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCinicia" id=link1770 onMouseOver="ShowTip(event, 'tt891', 'link1770')" onMouseOut="HideTip('tt891')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCinicia" id=link1771 onMouseOver="ShowTip(event, 'tt891', 'link1771')" onMouseOut="HideTip('tt891')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WClistafuncoes</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WClistafuncoes" id=link1772 onMouseOver="ShowTip(event, 'tt892', 'link1772')" onMouseOut="HideTip('tt892')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WClistafuncoes" id=link1773 onMouseOver="ShowTip(event, 'tt892', 'link1773')" onMouseOut="HideTip('tt892')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WClistaServicos</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WClistaServicos" id=link1774 onMouseOver="ShowTip(event, 'tt893', 'link1774')" onMouseOut="HideTip('tt893')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WClistaServicos" id=link1775 onMouseOver="ShowTip(event, 'tt893', 'link1775')" onMouseOut="HideTip('tt893')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WClistatemas</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WClistatemas" id=link1776 onMouseOver="ShowTip(event, 'tt894', 'link1776')" onMouseOut="HideTip('tt894')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WClistatemas" id=link1777 onMouseOver="ShowTip(event, 'tt894', 'link1777')" onMouseOut="HideTip('tt894')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCmostraDados</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCmostraDados" id=link1778 onMouseOver="ShowTip(event, 'tt895', 'link1778')" onMouseOut="HideTip('tt895')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCmostraDados" id=link1779 onMouseOver="ShowTip(event, 'tt895', 'link1779')" onMouseOut="HideTip('tt895')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCmostraFuncoes</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCmostraFuncoes" id=link1780 onMouseOver="ShowTip(event, 'tt896', 'link1780')" onMouseOut="HideTip('tt896')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCmostraFuncoes" id=link1781 onMouseOver="ShowTip(event, 'tt896', 'link1781')" onMouseOut="HideTip('tt896')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCmostraParFuncoes</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCmostraParFuncoes" id=link1782 onMouseOver="ShowTip(event, 'tt897', 'link1782')" onMouseOut="HideTip('tt897')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCmostraParFuncoes" id=link1783 onMouseOver="ShowTip(event, 'tt897', 'link1783')" onMouseOut="HideTip('tt897')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCmostraTemas</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCmostraTemas" id=link1784 onMouseOver="ShowTip(event, 'tt898', 'link1784')" onMouseOut="HideTip('tt898')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCmostraTemas" id=link1785 onMouseOver="ShowTip(event, 'tt898', 'link1785')" onMouseOut="HideTip('tt898')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCselParFuncao</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCselParFuncao" id=link1786 onMouseOver="ShowTip(event, 'tt899', 'link1786')" onMouseOut="HideTip('tt899')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCselParFuncao" id=link1787 onMouseOver="ShowTip(event, 'tt899', 'link1787')" onMouseOut="HideTip('tt899')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCverMapa</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCverMapa" id=link1788 onMouseOver="ShowTip(event, 'tt900', 'link1788')" onMouseOut="HideTip('tt900')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCverMapa" id=link1789 onMouseOver="ShowTip(event, 'tt900', 'link1789')" onMouseOut="HideTip('tt900')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>WCwsdl</span><div class=ISubIndex><a href="../files/classesjs/wscliente-js.html#WCwsdl" id=link1790 onMouseOver="ShowTip(event, 'tt901', 'link1790')" onMouseOut="HideTip('tt901')" class=IFile>classesjs\<span class=HB> </span>wscliente.js</a><a href="../files/classesjs/zerocal/wscliente-js.html#WCwsdl" id=link1791 onMouseOver="ShowTip(event, 'tt901', 'link1791')" onMouseOut="HideTip('tt901')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>wscliente.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>wd(depreciado)</span><div class=ISubIndex><a href="../files/classesjs/temp-js.html#wd(depreciado)" id=link1792 onMouseOver="ShowTip(event, 'tt902', 'link1792')" onMouseOut="HideTip('tt902')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/temp-js.html#wd(depreciado)" id=link1793 onMouseOver="ShowTip(event, 'tt902', 'link1793')" onMouseOut="HideTip('tt902')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>wdocaf</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#wdocaf" id=link1794 onMouseOver="ShowTip(event, 'tt903', 'link1794')" onMouseOut="HideTip('tt903')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#wdocaf" id=link1795 onMouseOver="ShowTip(event, 'tt903', 'link1795')" onMouseOut="HideTip('tt903')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#wdocaf" id=link1796 onMouseOver="ShowTip(event, 'tt903', 'link1796')" onMouseOut="HideTip('tt903')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#wdocaf" id=link1797 onMouseOver="ShowTip(event, 'tt903', 'link1797')" onMouseOut="HideTip('tt903')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>wdocaf2</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#wdocaf2" id=link1798 onMouseOver="ShowTip(event, 'tt904', 'link1798')" onMouseOut="HideTip('tt904')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#wdocaf2" id=link1799 onMouseOver="ShowTip(event, 'tt904', 'link1799')" onMouseOut="HideTip('tt904')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#wdocaf2" id=link1800 onMouseOver="ShowTip(event, 'tt904', 'link1800')" onMouseOut="HideTip('tt904')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#wdocaf2" id=link1801 onMouseOver="ShowTip(event, 'tt904', 'link1801')" onMouseOut="HideTip('tt904')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>wdocafechaf</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#wdocafechaf" id=link1802 onMouseOver="ShowTip(event, 'tt905', 'link1802')" onMouseOut="HideTip('tt905')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#wdocafechaf" id=link1803 onMouseOver="ShowTip(event, 'tt905', 'link1803')" onMouseOut="HideTip('tt905')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#wdocafechaf" id=link1804 onMouseOver="ShowTip(event, 'tt905', 'link1804')" onMouseOut="HideTip('tt905')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#wdocafechaf" id=link1805 onMouseOver="ShowTip(event, 'tt905', 'link1805')" onMouseOut="HideTip('tt905')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/funcoes_gerais-php.html#web_services" class=ISymbol>web services</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/mapa_controle-php.html#Webservices" id=link1806 onMouseOver="ShowTip(event, 'tt906', 'link1806')" onMouseOut="HideTip('tt906')" class=ISymbol>Webservices</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>wiki</span><div class=ISubIndex><a href="../files/classesjs/ferramentas-js.html#wiki" id=link1807 onMouseOver="ShowTip(event, 'tt907', 'link1807')" onMouseOut="HideTip('tt907')" class=IFile>classesjs\<span class=HB> </span>ferramentas.js</a><a href="../files/classesjs/zerocal/ferramentas-js.html#wiki" id=link1808 onMouseOver="ShowTip(event, 'tt907', 'link1808')" onMouseOut="HideTip('tt907')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>ferramentas.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_bbox" id=link1809 onMouseOver="ShowTip(event, 'tt908', 'link1809')" onMouseOut="HideTip('tt908')" class=ISymbol>wms_bbox</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_bbox2txt" id=link1810 onMouseOver="ShowTip(event, 'tt909', 'link1810')" onMouseOut="HideTip('tt909')" class=ISymbol>wms_bbox2txt</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_descricao" id=link1811 onMouseOver="ShowTip(event, 'tt910', 'link1811')" onMouseOut="HideTip('tt910')" class=ISymbol>wms_descricao</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_descricaon" id=link1812 onMouseOver="ShowTip(event, 'tt911', 'link1812')" onMouseOut="HideTip('tt911')" class=ISymbol>wms_descricaon</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_descricaov" id=link1813 onMouseOver="ShowTip(event, 'tt912', 'link1813')" onMouseOut="HideTip('tt912')" class=ISymbol>wms_descricaov</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_estilos" id=link1814 onMouseOver="ShowTip(event, 'tt913', 'link1814')" onMouseOut="HideTip('tt913')" class=ISymbol>wms_estilos</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_exceptions" id=link1815 onMouseOver="ShowTip(event, 'tt914', 'link1815')" onMouseOut="HideTip('tt914')" class=ISymbol>wms_exceptions</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_formats" id=link1816 onMouseOver="ShowTip(event, 'tt915', 'link1816')" onMouseOut="HideTip('tt915')" class=ISymbol>wms_formats</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_formatsinfo" id=link1817 onMouseOver="ShowTip(event, 'tt916', 'link1817')" onMouseOut="HideTip('tt916')" class=ISymbol>wms_formatsinfo</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_layer2html" id=link1818 onMouseOver="ShowTip(event, 'tt917', 'link1818')" onMouseOut="HideTip('tt917')" class=ISymbol>wms_layer2html</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_layer3html" id=link1819 onMouseOver="ShowTip(event, 'tt918', 'link1819')" onMouseOut="HideTip('tt918')" class=ISymbol>wms_layer3html</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_layer4html" id=link1820 onMouseOver="ShowTip(event, 'tt919', 'link1820')" onMouseOut="HideTip('tt919')" class=ISymbol>wms_layer4html</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_layers" id=link1821 onMouseOver="ShowTip(event, 'tt920', 'link1821')" onMouseOut="HideTip('tt920')" class=ISymbol>wms_layers</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_onlineresource" id=link1822 onMouseOver="ShowTip(event, 'tt921', 'link1822')" onMouseOut="HideTip('tt921')" class=ISymbol>wms_onlineresource</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_srs" id=link1823 onMouseOver="ShowTip(event, 'tt922', 'link1823')" onMouseOut="HideTip('tt922')" class=ISymbol>wms_srs</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_title" id=link1824 onMouseOver="ShowTip(event, 'tt923', 'link1824')" onMouseOut="HideTip('tt923')" class=ISymbol>wms_title</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_version" id=link1825 onMouseOver="ShowTip(event, 'tt924', 'link1825')" onMouseOut="HideTip('tt924')" class=ISymbol>wms_version</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#wms_xpnode2content" id=link1826 onMouseOver="ShowTip(event, 'tt925', 'link1826')" onMouseOut="HideTip('tt925')" class=ISymbol>wms_xpnode2content</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wscliente-php.html#WS_Cliente" id=link1827 onMouseOver="ShowTip(event, 'tt926', 'link1827')" onMouseOut="HideTip('tt926')" class=ISymbol>WS Cliente</a></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/classesjs/zerocal/wscliente-js.html#wscliente.js" class=ISymbol>wscliente.js</a></td></tr><tr><td class=IHeading><a name="X"></a>X</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/wmswfs-php.html#xml2html" id=link1828 onMouseOver="ShowTip(event, 'tt927', 'link1828')" onMouseOut="HideTip('tt927')" class=ISymbol>xml2html</a></td></tr><tr><td class=ISymbolPrefix>$</td><td class=IEntry><a href="../files/classesphp/classe_menutemas-php.html#Menutemas.$xmlsistemas" id=link1829 onMouseOver="ShowTip(event, 'tt928', 'link1829')" onMouseOut="HideTip('tt928')" class=ISymbol>xmlsistemas</a>, <span class=IParent>Menutemas</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/funcoes_gerais-php.html#xy2imagem" id=link1830 onMouseOver="ShowTip(event, 'tt929', 'link1830')" onMouseOut="HideTip('tt929')" class=ISymbol>xy2imagem</a></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/funcoes_gerais-php.html#xy2wkt" id=link1831 onMouseOver="ShowTip(event, 'tt930', 'link1831')" onMouseOut="HideTip('tt930')" class=ISymbol>xy2wkt</a></td></tr><tr><td class=IHeading><a name="Z"></a>Z</td><td></td></tr><tr><td class=ISymbolPrefix id=IFirstSymbolPrefix> </td><td class=IEntry><a href="../files/zerocal/index-htm.html#zerocal/index.htm" class=ISymbol>zerocal/<span class=HB> </span>index.htm</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/zerocal/index-html.html#zerocal/index.html" class=ISymbol>zerocal/<span class=HB> </span>index.html</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomboxf</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#zoomboxf" id=link1832 onMouseOver="ShowTip(event, 'tt931', 'link1832')" onMouseOut="HideTip('tt931')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#zoomboxf" id=link1833 onMouseOver="ShowTip(event, 'tt931', 'link1833')" onMouseOut="HideTip('tt931')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#zoomboxf" id=link1834 onMouseOver="ShowTip(event, 'tt931', 'link1834')" onMouseOut="HideTip('tt931')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomboxf" id=link1835 onMouseOver="ShowTip(event, 'tt931', 'link1835')" onMouseOut="HideTip('tt931')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomiauto</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#zoomiauto" id=link1836 onMouseOver="ShowTip(event, 'tt932', 'link1836')" onMouseOut="HideTip('tt932')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#zoomiauto" id=link1837 onMouseOver="ShowTip(event, 'tt932', 'link1837')" onMouseOut="HideTip('tt932')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#zoomiauto" id=link1838 onMouseOver="ShowTip(event, 'tt932', 'link1838')" onMouseOut="HideTip('tt932')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomiauto" id=link1839 onMouseOver="ShowTip(event, 'tt932', 'link1839')" onMouseOut="HideTip('tt932')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomIP</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#zoomIP" id=link1840 onMouseOver="ShowTip(event, 'tt933', 'link1840')" onMouseOut="HideTip('tt933')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#zoomIP" id=link1841 onMouseOver="ShowTip(event, 'tt933', 'link1841')" onMouseOut="HideTip('tt933')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#zoomIP" id=link1842 onMouseOver="ShowTip(event, 'tt933', 'link1842')" onMouseOut="HideTip('tt933')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomIP" id=link1843 onMouseOver="ShowTip(event, 'tt933', 'link1843')" onMouseOut="HideTip('tt933')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomoauto</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#zoomoauto" id=link1844 onMouseOver="ShowTip(event, 'tt934', 'link1844')" onMouseOut="HideTip('tt934')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#zoomoauto" id=link1845 onMouseOver="ShowTip(event, 'tt934', 'link1845')" onMouseOut="HideTip('tt934')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#zoomoauto" id=link1846 onMouseOver="ShowTip(event, 'tt934', 'link1846')" onMouseOut="HideTip('tt934')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomoauto" id=link1847 onMouseOver="ShowTip(event, 'tt934', 'link1847')" onMouseOut="HideTip('tt934')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/mapa_controle-php.html#zoomponto" id=link1848 onMouseOver="ShowTip(event, 'tt935', 'link1848')" onMouseOut="HideTip('tt935')" class=ISymbol>zoomponto</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomPonto</span><div class=ISubIndex><span class=IParent>Global</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#zoomPonto" id=link1849 onMouseOver="ShowTip(event, 'tt936', 'link1849')" onMouseOut="HideTip('tt936')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#zoomPonto" id=link1850 onMouseOver="ShowTip(event, 'tt936', 'link1850')" onMouseOut="HideTip('tt936')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#zoomPonto" id=link1851 onMouseOver="ShowTip(event, 'tt936', 'link1851')" onMouseOut="HideTip('tt936')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomPonto" id=link1852 onMouseOver="ShowTip(event, 'tt936', 'link1852')" onMouseOut="HideTip('tt936')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div><a href="../files/classesphp/classe_navegacao-php.html#Navegacao.zoomPonto" id=link1853 onMouseOver="ShowTip(event, 'tt937', 'link1853')" onMouseOut="HideTip('tt937')" class=IParent>Navegacao</a></div></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/mapa_controle-php.html#zoomtema" id=link1854 onMouseOver="ShowTip(event, 'tt938', 'link1854')" onMouseOut="HideTip('tt938')" class=ISymbol>zoomtema</a></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><a href="../files/classesphp/classe_temas-php.html#Temas.zoomTema" id=link1855 onMouseOver="ShowTip(event, 'tt939', 'link1855')" onMouseOut="HideTip('tt939')" class=ISymbol>zoomTema</a>, <span class=IParent>Temas</span></td></tr><tr><td class=ISymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomtemaf</span><div class=ISubIndex><a href="../files/classesjs/ferramentas-js.html#zoomtemaf" id=link1856 onMouseOver="ShowTip(event, 'tt940', 'link1856')" onMouseOut="HideTip('tt940')" class=IFile>classesjs\<span class=HB> </span>ferramentas.js</a><a href="../files/classesjs/temp-js.html#zoomtemaf" id=link1857 onMouseOver="ShowTip(event, 'tt940', 'link1857')" onMouseOut="HideTip('tt940')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/ferramentas-js.html#zoomtemaf" id=link1858 onMouseOver="ShowTip(event, 'tt940', 'link1858')" onMouseOut="HideTip('tt940')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>ferramentas.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomtemaf" id=link1859 onMouseOver="ShowTip(event, 'tt940', 'link1859')" onMouseOut="HideTip('tt940')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr><tr><td class=ISymbolPrefix id=ILastSymbolPrefix> </td><td class=IEntry><span class=ISymbol>zoomtot</span><div class=ISubIndex><a href="../files/classesjs/funcoes-js.html#zoomtot" id=link1860 onMouseOver="ShowTip(event, 'tt941', 'link1860')" onMouseOut="HideTip('tt941')" class=IFile>classesjs\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/temp-js.html#zoomtot" id=link1861 onMouseOver="ShowTip(event, 'tt941', 'link1861')" onMouseOut="HideTip('tt941')" class=IFile>classesjs\<span class=HB> </span>temp.js</a><a href="../files/classesjs/zerocal/funcoes-js.html#zoomtot" id=link1862 onMouseOver="ShowTip(event, 'tt941', 'link1862')" onMouseOut="HideTip('tt941')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>funcoes.js</a><a href="../files/classesjs/zerocal/temp-js.html#zoomtot" id=link1863 onMouseOver="ShowTip(event, 'tt941', 'link1863')" onMouseOut="HideTip('tt941')" class=IFile>classesjs\<span class=HB> </span>zerocal\<span class=HB> </span>temp.js</a></div></td></tr></table> | |
15 | +<!--START_ND_TOOLTIPS--> | |
16 | +<div class=CToolTip id="tt885"><div class=CVariable>Largura do mapa criado</div></div><div class=CToolTip id="tt886"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function WCaguarde()</td></tr></table></blockquote>Gera mensagem de aguarde.</div></div><div class=CToolTip id="tt887"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCativa(</td><td class=PParameter nowrap>id</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Ativa uma opção.</div></div><div class=CToolTip id="tt888"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCchamadados(</td><td class=PParameter nowrap>retorno</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Busca os dados de uma função de um serviço</div></div><div class=CToolTip id="tt889"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCcriano(</td><td class=PParameter nowrap>idnovo,</td></tr><tr><td></td><td class=PParameter nowrap>texto,</td></tr><tr><td></td><td class=PParameter nowrap>imagem,</td></tr><tr><td></td><td class=PParameter nowrap>pai,</td></tr><tr><td></td><td class=PParameter nowrap>tipo</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Cria um nó na árvore de opções</div></div><div class=CToolTip id="tt890"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCgetcapabilities(</td><td class=PParameter nowrap>tipo</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Executa ajax para buscar resultado do getcapabilities.</div></div><div class=CToolTip id="tt891"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function WCinicia()</td></tr></table></blockquote>Monta a árvore de opções e preenche a DIV arvore. </div></div><div class=CToolTip id="tt892"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function WClistafuncoes()</td></tr></table></blockquote>Busca a lista de funções de um WS</div></div><div class=CToolTip id="tt893"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WClistaServicos(</td><td class=PParameter nowrap>tipo</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Lista os serviços cadastrados.</div></div><div class=CToolTip id="tt894"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function WClistatemas()</td></tr></table></blockquote>Busca a lista de temas de um WMS ou WFS</div></div><div class=CToolTip id="tt895"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCmostraDados(</td><td class=PParameter nowrap>retorno</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Mostra os dados de uma função de um serviço</div></div><div class=CToolTip id="tt896"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCmostraFuncoes(</td><td class=PParameter nowrap>retorno</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Mostra o retorno da chamada ajax que busca a lista de temas</div></div><div class=CToolTip id="tt897"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCmostraParFuncoes(</td><td class=PParameter nowrap>retorno</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Mostra o retorno da chamada ajax que busca as funcoes de um WS</div></div><div class=CToolTip id="tt898"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCmostraTemas(</td><td class=PParameter nowrap>retorno</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Mostra o retorno da chamada ajax que busca a lista de temas</div></div><div class=CToolTip id="tt899"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function WCselParFuncao(</td><td class=PParameter nowrap>funcao</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Lista os parâmetros de uma função para o usuário digitar os valores.</div></div><div class=CToolTip id="tt900"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function WCverMapa()</td></tr></table></blockquote>Mostra o mapa</div></div><div class=CToolTip id="tt901"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function WCwsdl()</td></tr></table></blockquote>Abre o servico WSDL em uma nova janela</div></div><div class=CToolTip id="tt902"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>wd</td></tr></table></blockquote>Indica se a janela interna foi clicada. </div></div><div class=CToolTip id="tt903"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wdocaf(</td><td class=PParameter nowrap>wlargura,</td></tr><tr><td></td><td class=PParameter nowrap>waltura,</td></tr><tr><td></td><td class=PParameter nowrap>wsrc,</td></tr><tr><td></td><td class=PParameter nowrap>nx,</td></tr><tr><td></td><td class=PParameter nowrap>ny,</td></tr><tr><td></td><td class=PParameter nowrap>texto</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Abre a janela docável para executar algum programa.</div></div><div class=CToolTip id="tt904"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wdocaf2(</td><td class=PParameter nowrap>wlargura,</td></tr><tr><td></td><td class=PParameter nowrap>waltura,</td></tr><tr><td></td><td class=PParameter nowrap>wsrc,</td></tr><tr><td></td><td class=PParameter nowrap>nx,</td></tr><tr><td></td><td class=PParameter nowrap>ny,</td></tr><tr><td></td><td class=PParameter nowrap>texto</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Abre uma segunda janela docável para executar algum programa relativo a outra janela.</div></div><div class=CToolTip id="tt905"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wdocafechaf(</td><td class=PParameter nowrap>odoca</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Fecha uma janela docável.</div></div><div class=CToolTip id="tt906"><div class=CSection>Processa serviços OGC.</div></div><div class=CToolTip id="tt907"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function wiki()</td></tr></table></blockquote>Abre a janela de busca na wikipedia.</div></div><div class=CToolTip id="tt908"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_bbox(</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna o BBOX de um WMS.</div></div><div class=CToolTip id="tt909"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_bbox2txt(</td><td class=PParameter nowrap>$node</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Convert a BoundingBox node into a text string de um wms.</div></div><div class=CToolTip id="tt910"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_descricao (</td><td class=PParameter nowrap>$dom,</td></tr><tr><td></td><td class=PParameter nowrap>$xp</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna a descrição de um serviço (nó).</div></div><div class=CToolTip id="tt911"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_descricaon (</td><td class=PParameter nowrap>$dom,</td></tr><tr><td></td><td class=PParameter nowrap>$xp,</td></tr><tr><td></td><td class=PParameter nowrap>$n</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna a descrição de um serviço (filho de um nó).</div></div><div class=CToolTip id="tt912"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_descricaov (</td><td class=PParameter nowrap>$dom,</td></tr><tr><td></td><td class=PParameter nowrap>$xp,</td></tr><tr><td></td><td class=PParameter nowrap>$attrib</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna a descrição de um serviço (atributo).</div></div><div class=CToolTip id="tt913"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_estilos (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna os estilos de um WMS.</div></div><div class=CToolTip id="tt914"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_exceptions (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna as exceptions de um WMS.</div></div><div class=CToolTip id="tt915"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_formats (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna os formatos de imagem de um WMS.</div></div><div class=CToolTip id="tt916"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_formatsinfo (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna os formatos existentes de retorno da opção getfeatureinfo.</div></div><div class=CToolTip id="tt917"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_layer2html(</td><td class=PType nowrap> </td><td class=PParameter nowrap>$node,</td></tr><tr><td></td><td class=PType nowrap>$tipo </td><td class=PParameter nowrap>,</td></tr><tr><td></td><td class=PType nowrap> </td><td class=PParameter nowrap>$layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Convert a Layer node into an HTML representation wms.</div></div><div class=CToolTip id="tt918"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_layer3html(</td><td class=PParameter nowrap>$node</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Convert a Layer node into an HTML representation sem radio.</div></div><div class=CToolTip id="tt919"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_layer4html(</td><td class=PParameter nowrap>$layer</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Convert a Layer into an HTML WMS.</div></div><div class=CToolTip id="tt920"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_layers (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna os layers de um WMS.</div></div><div class=CToolTip id="tt921"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_onlineresource (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna o recurso on-line de um WMS.</div></div><div class=CToolTip id="tt922"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_srs(</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna os SRSs WMS.</div></div><div class=CToolTip id="tt923"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_title (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna o título de um WMS.</div></div><div class=CToolTip id="tt924"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_version (</td><td class=PParameter nowrap>$dom</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Retorna a versao.</div></div><div class=CToolTip id="tt925"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function wms_xpnode2content(</td><td class=PParameter nowrap>$xp_node</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Read the content child node of an element tag node WMS.</div></div><div class=CToolTip id="tt926"><div class=CSection>Funções de leitura de web services e montagem da lista de serviços para conexão remota.</div></div><!--END_ND_TOOLTIPS--> | |
17 | + | |
18 | + | |
19 | +<!--START_ND_TOOLTIPS--> | |
20 | +<div class=CToolTip id="tt927"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function xml2html (</td><td class=PParameter nowrap>$str</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Converte caracteres XML em HTML.</div></div><div class=CToolTip id="tt928"><div class=CVariable><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>protected $xmlsistemas</td></tr></table></blockquote>xml com a lista de sistemas</div></div><div class=CToolTip id="tt929"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function xy2imagem(</td><td class=PParameter nowrap>$map_file,</td></tr><tr><td></td><td class=PParameter nowrap>$xy</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Converte coordenadas geograficas em coordenadas de imagem e retorna um ponto.</div></div><div class=CToolTip id="tt930"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function xy2wkt(</td><td class=PParameter nowrap>$xy</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Converte coordenadas em wkt.</div></div><!--END_ND_TOOLTIPS--> | |
21 | + | |
22 | + | |
23 | +<!--START_ND_TOOLTIPS--> | |
24 | +<div class=CToolTip id="tt931"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function zoomboxf (</td><td class=PParameter nowrap>tipo</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Faz o zoom no mapa utilizando a opção de desenhar um retângulo.</div></div><div class=CToolTip id="tt932"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function zoomiauto()</td></tr></table></blockquote>Aproxima o mapa tendo o centro como referência.</div></div><div class=CToolTip id="tt933"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function zoomIP()</td></tr></table></blockquote>Localiza no mapa o usuário baseado em seu número IP.</div></div><div class=CToolTip id="tt934"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function zoomoauto()</td></tr></table></blockquote>Afasta o mapa tendo o centro como referência.</div></div><div class=CToolTip id="tt935"><div class=CProperty>Desloca o centro do mapa para um ponto específico.</div></div><div class=CToolTip id="tt936"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function zoomPonto()</td></tr></table></blockquote>Localiza uma coordenada no mapa.</div></div><div class=CToolTip id="tt937"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function zoomPonto(</td><td class=PParameter nowrap>$xy</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Desloca o centro do mapa para um ponto específico.</div></div><div class=CToolTip id="tt938"><div class=CProperty>Muda a extensão geográfica do mapa de acordo com a abrangência de um tema.</div></div><div class=CToolTip id="tt939"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function zoomTema()</td></tr></table></blockquote>Zoom para um tema.</div></div><div class=CToolTip id="tt940"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td><table border=0 cellspacing=0 cellpadding=0><tr><td class=PBeforeParameters nowrap>function zoomtemaf(</td><td class=PParameter nowrap>tema</td><td class=PAfterParameters nowrap>)</td></tr></table></td></tr></table></blockquote>Zoom para o tema</div></div><div class=CToolTip id="tt941"><div class=CFunction><blockquote><table border=0 cellspacing=0 cellpadding=0 class=Prototype><tr><td>function zoomtot()</td></tr></table></blockquote>Zoom para a extensão default.</div></div><!--END_ND_TOOLTIPS--> | |
25 | + | |
26 | +</div><!--Index--> | |
27 | + | |
28 | + | |
29 | +<div id=Footer>http://mapas.mma.gov.br/i3geo · Última atualização Dec 29th · <a href="http://www.naturaldocs.org">Generated by Natural Docs</a></div><!--Footer--> | |
30 | + | |
31 | + | |
32 | +<div id=Menu><div id=MTitle>I3Geo<div id=MSubTitle>Interface Integrada para Internet de Ferramentas de Geoprocessamento</div></div><div class="MLink MEntry"><a href="http://mapas.mma.gov.br/i3geo">I3Geo no MMA</a></div><div class="MFile MEntry"><a href="../files/ms_criamapa-php.html">Inicializa o I3Geo via URL ms_criamapa.php</a></div><div class="MFile MEntry"><a href="../files/ms_configura-php.html">Variáveis de inicialização ms_configura.php</a></div><div class="MFile MEntry"><a href="../files/classesjs/configura-js.html">Variáveis de Configuração da Interface configura.js.</a></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent2')">Programas especiais</a><div class=MGroupContent id=MGroupContent2><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent1')">Mobile</a><div class=MGroupContent id=MGroupContent1><div class="MFile MEntry"><a href="../files/mobile/inicia-php.html">Abre o mapa</a></div><div class="MFile MEntry"><a href="../files/mobile/adicionatema-php.html">Adiciona um tema ao mapa</a></div><div class="MFile MEntry"><a href="../files/mobile/desligar-php.html">Desliga um tema que está visível no mapa</a></div><div class="MFile MEntry"><a href="../files/mobile/index-php.html">i3geo mobile</a></div><div class="MFile MEntry"><a href="../files/mobile/mobile-php.html">Interface do mapa</a></div><div class="MFile MEntry"><a href="../files/mobile/ligar-php.html">Liga um tema que não está visível no mapa</a></div><div class="MFile MEntry"><a href="../files/mobile/localizar-php.html">Localiza um lugar no mapa.</a></div><div class="MFile MEntry"><a href="../files/mobile/escala-php.html">Mostra a escala</a></div><div class="MFile MEntry"><a href="../files/mobile/legenda-php.html">Mostra a legenda do mapa</a></div><div class="MFile MEntry"><a href="../files/mobile/index-htm.html">Redirecionador HTM do i3geo mobile</a></div><div class="MFile MEntry"><a href="../files/mobile/index-html.html">Redirecionador HTML do i3geo mobile</a></div></div></div><div class="MFile MEntry"><a href="../files/ogc-htm.html">Ajuda OGC</a></div><div class="MFile MEntry"><a href="../files/wscliente-htm.html">Aplicativo para acesso a web services</a></div><div class="MFile MEntry"><a href="../files/datadownload-htm.html">Aplicativo para download de dados</a></div><div class="MFile MEntry"><a href="../files/geradordelinks-htm.html">Aplicativo para geração de links</a></div><div class="MFile MEntry"><a href="../files/ogc-php.html">Gerador automático de web services OGC</a></div><div class="MFile MEntry"><a href="../files/zerocal/index-htm.html">Redirecionador HTM para o ms_criamapa.<span class=HB> </span>php com interface zerocal</a></div><div class="MFile MEntry"><a href="../files/zerocal/index-html.html">Redirecionador HTML para o ms_criamapa.<span class=HB> </span>php com interface zerocal</a></div><div class="MFile MEntry"><a href="../files/index-htm.html">Redirecionador para o ms_criamapa.<span class=HB> </span>php com extensão HTM</a></div><div class="MFile MEntry"><a href="../files/index-html.html">Redirecionador para o ms_criamapa.<span class=HB> </span>php com extensão HTML</a></div><div class="MFile MEntry"><a href="../files/ms_registraip-php.html">Registra o IP do usuário para criação do mapa de visitantes.</a></div><div class="MFile MEntry"><a href="../files/testainstal-php.html">Testa a instalação do I3Geo.</a></div><div class="MFile MEntry"><a href="../files/testamapfile-php.html">Testa um mapfile.</a></div></div></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent3')">Exemplos - diretório exemplos</a><div class=MGroupContent id=MGroupContent3><div class="MFile MEntry"><a href="../files/exemplos/mashup-htm.html">Mashup</a></div></div></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent4')">Interfaces - diretório aplicmap</a><div class=MGroupContent id=MGroupContent4><div class="MFile MEntry"><a href="../files/aplicmap/admin-htm.html">Administração de mapfiles (experimental)</a></div><div class="MFile MEntry"><a href="../files/aplicmap/geral-htm.html">Interface normal</a></div><div class="MFile MEntry"><a href="../files/aplicmap/zerocal-htm.html">Interface zerocal</a></div><div class="MFile MEntry"><a href="../files/aplicmap/minima-htm.html">Mínima</a></div><div class="MFile MEntry"><a href="../files/aplicmap/openlayers-htm.html">OpenLayers (experimental)</a></div><div class="MFile MEntry"><a href="../files/aplicmap/simples1-htm.html">Simples 1</a></div><div class="MFile MEntry"><a href="../files/aplicmap/simples2-htm.html">Simples 2</a></div></div></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent6')">Programas frontend - diretório classesjs</a><div class=MGroupContent id=MGroupContent6><div class="MFile MEntry"><a href="../files/classesjs/compactajs-php.html">A - Compacta js e css</a></div><div class="MFile MEntry"><a href="../files/classesjs/i3geoadmin-js.html">Administração de mapfiles</a></div><div class="MFile MEntry"><a href="../files/classesjs/i3geo-js.html">Carrega os scripts do i3geo.</a></div><div class="MFile MEntry"><a href="../files/classesjs/wscliente-js.html">Cliente de web service</a></div><div class="MFile MEntry"><a href="../files/classesjs/datadownload-js.html">DataDownLoad</a></div><div class="MFile MEntry"><a href="../files/classesjs/ferramentas-js.html">Ferramentas</a></div><div class="MFile MEntry"><a href="../files/classesjs/ferramentasadmin-js.html">Ferramentas da interface de administração</a></div><div class="MFile MEntry"><a href="../files/classesjs/funcoes-js.html">Funções gerais</a></div><div class="MFile MEntry"><a href="../files/classesjs/temp-js.html">Funções gerais</a></div><div class="MFile MEntry"><a href="../files/classesjs/i3geonaocompacto-js.html">i3geonaocompacto.js</a></div><div class="MFile MEntry"><a href="../files/classesjs/iniciamma-js.html">Inicialização do i3geo.</a></div><div class="MFile MEntry"><a href="../files/classesjs/menususpenso-js.html">Menu suspenso</a></div><div class="MFile MEntry"><a href="../files/classesjs/redesenho-js.html">Redesenho</a></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent5')">Zerocal</a><div class=MGroupContent id=MGroupContent5><div class="MFile MEntry"><a href="../files/classesjs/zerocal/i3geoadmin-js.html">Administração de mapfiles</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/i3geo-js.html">Carrega os scripts do i3geo.</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/wscliente-js.html">Cliente de web service</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/compactajs-php.html">Compacta js e css para a interface zerocal</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/configura-js.html">Configuração da interface.</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/datadownload-js.html">DataDownLoad</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/ferramentas-js.html">Ferramentas</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/ferramentasadmin-js.html">Ferramentas da interface de administração</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/temp-js.html">Funções gerais</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/funcoes-js.html">Funções gerais</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/i3geonaocompacto-js.html">i3geonaocompacto.js</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/iniciamma-js.html">Inicialização do i3geo.</a></div><div class="MFile MEntry"><a href="../files/classesjs/zerocal/redesenho-js.html">Redesenho</a></div></div></div></div></div><div class="MGroup MEntry"><a href="javascript:ToggleMenu('MGroupContent7')">Programas backend - diretório classesphp</a><div class=MGroupContent id=MGroupContent7><div class="MFile MEntry"><a href="../files/classesphp/pega_variaveis-php.html">A - Carrega as variáveis passadas como POST ou GET</a></div><div class="MFile MEntry"><a href="../files/classesphp/mapa_controle-php.html">A - Controle das requisições em Ajax</a></div><div class="MFile MEntry"><a href="../files/classesphp/carrega_ext-php.html">A - Extensões PHP</a></div><div class="MFile MEntry"><a href="../files/classesphp/funcoes_gerais-php.html">A - Funções compartilhadas</a></div><div class="MFile MEntry"><a href="../files/classesphp/mapa_inicia-php.html">A - Inicializa o mapa</a></div><div class="MFile MEntry"><a href="../files/classesphp/admin-php.html">Administração</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_analise-php.html">Análise</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_atributos-php.html">Atributos</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_alteraclasse-php.html">Classes e estilos</a></div><div class="MFile MEntry"><a href="../files/classesphp/class-palette-php.html">Degradê</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_escala-php.html">Escala</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_estatistica-php.html">Estatística</a></div><div class="MFile MEntry"><a href="../files/classesphp/graficos-php.html">Gráficos R</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_imagem-php.html">Imagem</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_legenda-php.html">Legenda</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_mapa-php.html">Mapa</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_menutemas-php.html">Menu</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_vermultilayer-php.html">Multilayer</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_navegacao-php.html">Navegação</a></div><div class="MFile MEntry"><a href="../files/classesphp/wmswfs-php.html">OGC</a></div><div class="MFile MEntry"><a href="../files/classesphp/graficopizza-php.html">Pizza</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_selecao-php.html">Seleção</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_shp-php.html">Shape</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_temas-php.html">Temas</a></div><div class="MFile MEntry"><a href="../files/classesphp/classe_toponimia-php.html">Toponímia</a></div><div class="MFile MEntry"><a href="../files/classesphp/wscliente-php.html">WS Cliente</a></div></div></div><div class="MIndex MEntry"><a href="Classes.html">Class Index</a></div><div class="MIndex MEntry" id=MSelected>Everything</div><div class="MIndex MEntry"><a href="Files.html">File Index</a></div><div class="MIndex MEntry"><a href="Functions.html">Function Index</a></div><div class="MIndex MEntry"><a href="Properties.html">Property Index</a></div><div class="MIndex MEntry"><a href="Variables.html">Variable Index</a></div><script type="text/javascript"><!-- | |
33 | +var searchPanel = new SearchPanel("searchPanel", "HTML", "../search"); | |
34 | +--></script><div id=MSearchPanel class=MSearchPanelInactive><input type=text id=MSearchField value=Search onFocus="searchPanel.OnSearchFieldFocus(true)" onBlur="searchPanel.OnSearchFieldFocus(false)" onKeyUp="searchPanel.OnSearchFieldChange()"><select id=MSearchType onFocus="searchPanel.OnSearchTypeFocus(true)" onBlur="searchPanel.OnSearchTypeFocus(false)" onChange="searchPanel.OnSearchTypeChange()"><option id=MSearchEverything selected value="General">Everything</option><option value="Classes">Classes</option><option value="Files">Files</option><option value="Functions">Functions</option><option value="Properties">Properties</option><option value="Variables">Variables</option></select></div><div id=MSearchResultsWindow><iframe src="" frameborder=0 name=MSearchResults id=MSearchResults></iframe><a href="javascript:searchPanel.CloseResultsWindow()" id=MSearchResultsWindowClose>Close</a></div><script language=JavaScript><!-- | |
35 | +if (document.getElementById){for (var menu = 1; menu < 8; menu++){document.getElementById("MGroupContent" + menu).style.display = "none";};}// --></script></div><!--Menu--> | |
36 | + | |
37 | + | |
38 | +<script language=JavaScript><!-- | |
39 | +if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html> | |
0 | 40 | \ No newline at end of file | ... | ... |
... | ... | @@ -0,0 +1,20 @@ |
1 | +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> | |
2 | + | |
3 | +<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body id=SearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!-- | |
4 | +if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script> | |
5 | + | |
6 | +<!-- Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) --> | |
7 | +<!-- http://www.naturaldocs.org --> | |
8 | + | |
9 | +<!-- saved from url=(0026)http://www.naturaldocs.org --> | |
10 | + | |
11 | + | |
12 | + | |
13 | + | |
14 | +<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_9_quo_sco><div class=IEntry><a href="../files/ms_configura-php.html#$mensagemInicia=I3Geo_versão_3.9;" target=_parent class=ISymbol>9”;</a>, <span class=IParent>$mensagemInicia=”I3Geo versão 3</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!-- | |
15 | +document.getElementById("Loading").style.display="none"; | |
16 | +document.getElementById("NoMatches").style.display="none"; | |
17 | +var searchResults = new SearchResults("searchResults", "HTML"); | |
18 | +searchResults.Search(); | |
19 | +--></script></div><script language=JavaScript><!-- | |
20 | +if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html> | |
0 | 21 | \ No newline at end of file | ... | ... |
... | ... | @@ -0,0 +1,20 @@ |
1 | +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> | |
2 | + | |
3 | +<html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body id=SearchResultsPage onLoad="NDOnLoad()"><script language=JavaScript><!-- | |
4 | +if (browserType) {document.write("<div id=" + browserType + ">");if (browserVer) {document.write("<div id=" + browserVer + ">"); }}// --></script> | |
5 | + | |
6 | +<!-- Generated by Natural Docs, version Development Release 02-10-2007 (1.35 base) --> | |
7 | +<!-- http://www.naturaldocs.org --> | |
8 | + | |
9 | +<!-- saved from url=(0026)http://www.naturaldocs.org --> | |
10 | + | |
11 | + | |
12 | + | |
13 | + | |
14 | +<div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_9_quo_sco><div class=IEntry><a href="../files/ms_configura-php.html#$mensagemInicia=I3Geo_versão_3.9;" target=_parent class=ISymbol>9”;</a>, <span class=IParent>$mensagemInicia=”I3Geo versão 3</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!-- | |
15 | +document.getElementById("Loading").style.display="none"; | |
16 | +document.getElementById("NoMatches").style.display="none"; | |
17 | +var searchResults = new SearchResults("searchResults", "HTML"); | |
18 | +searchResults.Search(); | |
19 | +--></script></div><script language=JavaScript><!-- | |
20 | +if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html> | |
0 | 21 | \ No newline at end of file | ... | ... |
8.23 KB
49 Bytes
8.23 KB