-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (22 loc) · 897 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
26
<!DOCTYPE html>
<html>
<head>
<title>Community - Economic Impact - Local Ownership - Map showing proximity of staff to office</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<script src="./index.js"></script>
</head>
<body>
<h1>Community - Economic Impact - Local Ownership - Map showing proximity of staff to office</h1>
<div>
<h3>Employees within 20 miles: <span id="counter-20"></span></h3>
<h3>Employees within 30 miles: <span id="counter-30"></span></h3>
<h3>Total Employees: <span id="counter-total"></span></h3>
<h3>Average Commuting Distance: <span id="avg-distance"></span></h3>
</div>
<div id="map"></div>
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCl_N4WA52C1OIL3SstV27lnZZ24i_5Mfs&callback=initMap&libraries=geometry&v=weekly"
async
></script>
</body>
</html>