-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.32 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.32 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
<html>
<head>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDFSV2Kqv0tnIfKHJDPzdnBk7QXA8yZ4YA">
</script>
<script src="js/openLayers/ol.js"></script>
<script src="js/mapViewer.js"></script>
</head>
<body>
<h1>Custom Elements Test</h1>
<div style="width: 400px;display: inline-block;">
<h2>Raw Data Input:</h2>
<textarea id="raw-input" style="width: 100%; height: 200px;"></textarea>
</div>
<div style="width: 400px;display: inline-block;">
<h2 style="margin-bottom:0">Parsed JSON Output:</h2>
<a id="update-output" href="#">Manually update output</a>
<textarea id="json-output" style="width: 100%; height: 200px;"></textarea>
</div>
<div style="width: 400px;display: inline-block;">
<h2 style="margin-bottom:0">Interpreted Map Output:</h2>
<a id="update-output" href="#">Manually update output</a>
<textarea id="output" style="width: 100%; height: 200px;"></textarea>
</div>
<div id="map"></div>
<map-viewer openStreetMap="true" googleMap="true" lat="51.5" long="0.12" zoom="12"></map-viewer>
</body>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="js/data.js"></script>
</html>