-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1006 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Map Test Instrument</title>
<meta charset="utf-8">
<!-- local leaflet include -->
<!--<script type='text/javascript' src="leaflet/leaflet-src.js"></script>-->
<!--<link rel="stylesheet" href="leaflet/leaflet.css"/>-->
<link rel="stylesheet" href="openlayers/ol.css" type="text/css">
<script src="openlayers/ol.js" type="text/javascript"></script>
<!-- uncreatively named JavaScript and CSS files for this app -->
<script type='text/javascript' src="config.js"></script>
<script type='text/javascript' src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<!-- on load, a function from script.js is called, initiating the app -->
<body>
<!-- container for the leaflet-generated web map -->
<div id="map" class="map"></div>
<!-- Button controls Javascript and CSS used to display only those which are relevant -->
<div id="controls">
<button id="startbutton" type="button" onclick="start()" >START</button>
</div>
</body>
</html>