-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 2.18 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
47
48
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Ottawa Livability Map</title>
<link href="./style.css" rel="stylesheet">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
</head>
<body>
<div id="map-canvas"></div>
<div id="menu">
<label for="wardsLayer">Density by Ward </label><input type="checkbox" id="wardsLayer" onclick="olm.toggleLayer(olm.wardsLayer)" /><br/>
<label for="groceryLayer">Grocery Stores </label><input type="checkbox" id="groceryLayer" onclick="olm.toggleLayer(olm.groceryLayer)" /><br/>
<label for="placesLayer">Important Places </label><input type="checkbox" id="placesLayer" onclick="olm.toggleLayer(olm.placesLayer)" checked/><br/>
<label for="schoolLayer">Elementary Schools </label><input type="checkbox" id="schoolLayer" onclick="olm.toggleLayer(olm.schoolLayer)" checked/><br/>
<label for="transitLayer">Public Transit </label><input type="checkbox" id="transitLayer" onclick="olm.toggleLayer(olm.transitLayer)" /><br/>
</div>
<div id="legend">
<h1>Legend</h1>
<p>Elementary School Rankings<br/>by <a href="http://ontario.compareschoolrankings.org/ChooseReport.aspx">The Fraser Institute</a>:</p>
<dl>
<dt>Green school icon</dt>
<dd>Great school</dd>
<dt>Olive-green school icon</dt>
<dd>Good school</dd>
<dt>Orange school icon</dt>
<dd>Poor school</dd>
<dt>Red school icon</dt>
<dd>Awful school</dd>
<dt>Black school icon</dt>
<dd>No data</dd>
<dt>Shopping card icon</dt>
<dd>Grocery store</dd>
<dt>Home icon</dt>
<dd>Home</dd>
<dt>Office building icon</dt>
<dd>Work</dd>
<dt>Dancers icon</dt>
<dd>Dance studio</dd>
<dt>Train icon</dt>
<dd>Rail station</dd>
</dl>
</div>
<script src="./map.js"></script>
</body>
</html>