forked from tobinbradley/quality-of-life-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.html
76 lines (67 loc) · 2.47 KB
/
report.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Exploring neighborhood character, economics, education, engagement, environment, health, housing, safety and transportation.">
<meta name="author" content="Tobin Bradley">
<title>Charlotte/Mecklenburg Quality of Life Explorer</title>
<!-- preconnect for performance -->
<link rel="preconnect" href="https://www.google-analytics.com">
<link rel="preconnect" href="https://storage.googleapis.com">
<!-- icon and theme stuff -->
<link rel="icon" href="img/favicon.png" type="image/png"><!-- 32×32 -->
<link rel="icon" href="img/logo.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png"><!-- 180×180 -->
<meta name="theme-color" content="#2A4365"/>
<link rel="manifest" href="manifest.json">
</head>
<body class="bg-stone-300">
<main class="mx-auto">
<div id="controls" ></div>
<div id="cover" style="page-break-after: always;"></div>
<div id="mapContainer"></div>
<div id="reportSection"></div>
</main>
<svg
style="position: absolute; width: 0; height: 0; overflow: hidden"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
role="img"
aria-label="SVG Icons"
>
<defs>
<symbol id="icon-printer" viewBox="0 0 32 32">
<path d="M8 2h16v4h-16v-4z"></path>
<path d="M30 8h-28c-1.1 0-2 0.9-2 2v10c0 1.1 0.9 2 2 2h6v8h16v-8h6c1.1 0 2-0.9 2-2v-10c0-1.1-0.9-2-2-2zM4 14c-1.105 0-2-0.895-2-2s0.895-2 2-2 2 0.895 2 2-0.895 2-2 2zM22 28h-12v-10h12v10z"></path>
</symbol>
</defs>
</svg>
<script type="module" src="/src/report.js"></script>
<!-- Google Analytics -->
<script>
;(function (i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r
;(i[r] =
i[r] ||
function () {
;(i[r].q = i[r].q || []).push(arguments)
}),
(i[r].l = 1 * new Date())
;(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0])
a.async = 1
a.src = g
m.parentNode.insertBefore(a, m)
})(
window,
document,
"script",
"//www.google-analytics.com/analytics.js",
"ga"
)
ga("create", "UA-48797957-1", "auto")
ga("send", "pageview")
</script>
</body>
</html>