-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (45 loc) · 1.22 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Counties Webapp</title>
<link rel="stylesheet" href="node_modules/ol/ol.css" />
<style>
body {
font-size: 16px;
margin: 24px;
height: calc(100vh - 48px);
display: flex;
flex-flow: column;
}
#map {
flex: 1 1 auto;
}
#current-county-links {
padding-bottom: 1em;
flex: 0 1 auto;
}
.locate {
top: 5.3em;
left: 0.5em;
}
.nowrap {
white-space: nowrap;
}
</style>
<link rel="stylesheet" href="./src/styles/popup.css" />
</head>
<body>
<div id="current-county-links" style="display: none"></div>
<div id="map" class="map"></div>
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
</div>
<!-- this gets used when there's a geolocation error -->
<div id="info" style="display: none"></div>
<script type="module" src="src/map.ts"></script>
</body>
</html>