-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 1012 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 1012 Bytes
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
<!doctype html>
<html lang="en">
<head>
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.5.0/build/ol.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.5.0/css/ol.css" type="text/css">
<script src="https://cdn.jsdelivr.net/gh/openlayers/openlayers.github.io@master/en/v6.5.0/build/ol.js"></script>
<script src="https://unpkg.com/ol-layerswitcher@3.8.3"></script>
<link rel="stylesheet" href="https://unpkg.com/ol-layerswitcher@3.8.3/dist/ol-layerswitcher.css" />
<style>
.map {
height: 400px;
width: 100%;
}
</style>
</head>
<body>
<h1>OpenBikeSensor WebApp Lite</h1>
<input type="file" id="csvFileInput" onchange="handleFiles(this.files)"
accept=".csv">
<div id="map" class="map"></div>
<script type="text/javascript" src="js/obshelper.js"></script>
<script type="text/javascript" src="js/obslite.js"></script>
</body>
</html>