-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (37 loc) · 1.31 KB
/
index.html
File metadata and controls
43 lines (37 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MapMLify - WMS to MapML Converter</title>
<link rel="stylesheet" href="src/style/main.css" />
<script type="module" src="dist/mapml.js"></script>
</head>
<body>
<header>
<h1>MapMLify</h1>
<p>Convert Web Service (WMS,WMTS,ESRI) layers to functional MapML</p>
</header>
<main>
<section class="input-section">
<label for="wms-url">WMS/WMTS/ESRI Capabilities URL:</label>
<div class="input-group">
<input type="text" id="wms-url" list="wms-presets"
placeholder="Type, paste, or select from list..."
autocomplete="off" />
<datalist id="wms-presets">
<option value="">Loading...</option>
</datalist>
<button id="load-btn">Load Service</button>
<input type="file" id="file-input" accept=".xml,text/xml,application/xml" style="display: none;" />
<button id="load-file-btn" style="display: none;">Load from File</button>
</div>
</section>
<section id="service-info" class="service-info hidden">
<h2>Service Information</h2>
<div id="service-details"></div>
</section>
</main>
<script type="module" src="src/script/main.js"></script>
</body>
</html>