Commit 881a50da61090bcc8d959a6e85c30719dbcb3558
1 parent
3be413c3
Exists in
master
and in
7 other branches
correções na ferramenta tme
Showing
2 changed files
with
6 additions
and
4 deletions
Show diff stats
ferramentas/tme/index.js
| ... | ... | @@ -114,7 +114,7 @@ i3GEOF.tme = { |
| 114 | 114 | i3GEOF.tme.tema, |
| 115 | 115 | function(retorno){ |
| 116 | 116 | if($i("i3GEOTMEregioeslista")) |
| 117 | - {$i("i3GEOTMEregioeslista").innerHTML = retorno.dados;} | |
| 117 | + {$i("i3GEOTMEregioeslista").innerHTML = retorno.dados;} | |
| 118 | 118 | if(i3GEOF.tme.ITEMNOMEREGIOES != ""){ |
| 119 | 119 | $i("i3GEOTMEregioes").value = i3GEOF.tme.ITEMNOMEREGIOES; |
| 120 | 120 | } |
| ... | ... | @@ -147,9 +147,9 @@ i3GEOF.tme = { |
| 147 | 147 | '<br><br>'+$trad(3,i3GEOF.tme.dicionario); |
| 148 | 148 | ins += $inputText("","","i3GEOTMEdesc","",48,"") + |
| 149 | 149 | '<br><br>'+$trad(4,i3GEOF.tme.dicionario); |
| 150 | - ins += $inputText("","","i3GEOTMEbarSize","",20,"50000") + | |
| 150 | + ins += $inputText("","","i3GEOTMEbarSize","",20,"5000") + | |
| 151 | 151 | '<br><br>'+$trad(5,i3GEOF.tme.dicionario); |
| 152 | - ins += $inputText("","","i3GEOTMEmaxHeight","",20,"100") + | |
| 152 | + ins += $inputText("","","i3GEOTMEmaxHeight","",20,"2000000") + | |
| 153 | 153 | '<br><br>'+$trad(6,i3GEOF.tme.dicionario) + |
| 154 | 154 | '<div id="i3GEOTMEregioeslista" style="text-align:left;" ></div>' + |
| 155 | 155 | '<p class="paragrafo" >' + | ... | ... |
pacotes/tme/TME_i3geo.php
| ... | ... | @@ -40,13 +40,15 @@ if(!isset($download)){ |
| 40 | 40 | } |
| 41 | 41 | if(!isset($_GET["sid"]) && $verificaSID == true) |
| 42 | 42 | { |
| 43 | - echo "Erro. Acesso não permitido";exit; | |
| 43 | + echo "Erro. Acesso não permitido";exit; | |
| 44 | 44 | } |
| 45 | 45 | if(!isset($dir_tmp)){ |
| 46 | 46 | include(dirname(__FILE__)."/../../ms_configura.php"); |
| 47 | 47 | } |
| 48 | 48 | $colunas = str_replace(","," ",$_GET["colunasvalor"]); |
| 49 | 49 | $colunas = explode(" ",$colunas); |
| 50 | +$barSize = $_GET["barSize"]*1; | |
| 51 | +$maxHeight = $_GET["maxHeight"]*1; | |
| 50 | 52 | if(!isset($parametersTME)){ |
| 51 | 53 | |
| 52 | 54 | //choropleth,prism,bar,symbol | ... | ... |