template_mst.html
3.07 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
<div class='container-fluid customScrollBar'>
<h5 class="alert alert-info">{{{ajudaCaracter}}}</h5>
<form class="form-horizontal" role="form" id=i3GEOuploadf target="i3GEOuploadiframe" action="{{{locaplic}}}/ferramentas/upload/upload.php" method="post" ENCTYPE="multipart/form-data">
<div class="input-group-btn">
<button style="margin-right:10px;" type="button" class="btn btn-primary btn-raised pull-left" onclick="$(this).parent().find('input[type=file]').click();">SHP</button>
<input name="i3GEOuploadshp" onchange="$(this).parent().find('.form-control').html($(this).val().split(/[\\|/]/).pop());" style="display: none;" type="file">
<span class="form-control upload"></span>
</div>
<br>
<div class="input-group-btn">
<button style="margin-right:10px;" type="button" class="btn btn-primary btn-raised pull-left" onclick="$(this).parent().find('input[type=file]').click();">SHX</button>
<input name="i3GEOuploadshx" onchange="$(this).parent().find('.form-control').html($(this).val().split(/[\\|/]/).pop());" style="display: none;" type="file">
<span class="form-control upload"></span>
</div>
<br>
<div class="input-group-btn">
<button style="margin-right:10px;" type="button" class="btn btn-primary btn-raised pull-left" onclick="$(this).parent().find('input[type=file]').click();">DBF</button>
<input name="i3GEOuploaddbf" onchange="$(this).parent().find('.form-control').html($(this).val().split(/[\\|/]/).pop());" style="display: none;" type="file">
<span class="form-control upload"></span>
</div>
<br>
<div class="input-group-btn">
<button style="margin-right:10px;" type="button" class="btn btn-primary btn-raised pull-left" onclick="$(this).parent().find('input[type=file]').click();">PRJ (opcional)</button>
<input name="i3GEOuploadprj" onchange="$(this).parent().find('.form-control').html($(this).val().split(/[\\|/]/).pop());" style="display: none;" type="file">
<span class="form-control upload"></span>
</div>
<br>
<div class='form-group label-fixed condensed'>
<label class="control-label" for="tipo">{{{tipoGeom}}}</label>
<div style="width: 100%;" class="input-group">
<select class="form-control" id="tipo" name="tipo">
<option value="">{{{naoConhecido}}}</option>
<option value="1">{{{pontual}}}</option>
<option value="5">{{{poligonal}}}</option>
<option value="3">{{{linear}}}</option>
</select><b class="caret careti"></b>
</div>
</div>
<div class='form-group label-fixed condensed'>
<label class="control-label" for="tipo">{{{projecao}}}</label>
<div style="width: 100%;" class="input-group"></div>
<div id=i3GEOuploadListaepsg style="text-align: left; overflow: auto; height: 70px; margin-top:8px;"></div>
</div>
<hr />
<button name="submit" onclick="i3GEOF.upload.submete()" class='btn btn-primary btn-sm btn-raised'>{{{envia}}}</button>
<input type=hidden name=g_sid value="{{{sid}}}">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000">
</form>
<iframe name=i3GEOuploadiframe style="text-align: left; border: 1px solid gray;" width="98%" height="60px"></iframe>
</div>