-
Notifications
You must be signed in to change notification settings - Fork 0
/
arcgis-server.html
66 lines (56 loc) · 2.72 KB
/
arcgis-server.html
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
<html>
<head>
<title>ArcGIS Server Data</title>
<meta http-equiv="Cache-Control" content="no-store" />
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://connectors.tableau.com/libs/tableauwdc-2.3.latest.js" type="text/javascript"></script>
<script src="arcgis-server.js" type="text/javascript"></script>
<script src="arcgistogeojson.js" type="text/javascript"></script>
<style>
.indent-check { margin-left:0; display:bslock; }
</style>
</head>
<body>
<div class="container container-fluid">
<div class="row">
<div class="input-group mb-3">
<div class="form-group">
<label for="txtServerURL">ArcGIS Server Rest URL</label>
<input class="form-control" id="txtServerURL" value="https://gismaps.kingcounty.gov/arcgis/rest/" aria-describedby="URL" placeholder="https://map.ccrpcvt.org/arcgis/rest/">
<small id="emailHelp" class="form-text text-muted">URL to an ArcGIS Server REST Service. Should end in 'arcgis/rest/'</small>
</div>
</div>
</div>
<!--
<div class="row">
<div class="input-group mb-3">
<div class="form-group">
<label for="txtUsername">Username</label>
<input class="form-control" id="txtUsername" value="tableau-enterprise" aria-describedby="username" placeholder="username">
<small id="emailHelp" class="form-text text-muted">(Optional) Username for ArcGIS Server only.</small>
</div>
</div>
</div>
<div class="row">
<div class="input-group mb-3">
<div class="form-group">
<label for="txtAPIToken">API Token</label>
<input type="password" class="form-control" id="txtPassword" aria-describedby="Token" value="" placeholder="API Token">
<small id="emailHelp" class="form-text text-muted">(Optional) Password for ArcGIS Server.</small>
</div>
</div>
</div>
-->
<div class="row vertical-center-row">
<div id="liststyles"></div>
</div>
<div class="row">
<div class="text-center">
<button type="button" id="submitButton" class="btn btn-success" style="margin: 10px;">Connect</button>
</div>
</div>
</div>
</body>
</html>