-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Edmonton Wards</title>
<link rel="stylesheet" href="libs/leaflet/leaflet.css">
<link rel="stylesheet" href="css/index_and_related.css">
<style>
.col
{
width: 50%;
}
</style>
</head>
<body>
<div class="row">
<div class="col">
<div class="title">
<p class="title-text" align= "center">
City of Edmonton
</p>
</div>
<div class="map" id="edmonton-tile"></div>
</div>
<div class="col">
<div class="title">
<p class="title-text" align= "center">
Neighbourhoods, Wards, & Zoning Bylaw of Edmonton
</p>
</div>
<div class="map" id="edmonton-map"></div>
</div>
</div>
<script src="libs/leaflet/leaflet.js"></script>
<script src="libs/d3/d3.min.js"></script>
<script src="libs/queue/queue.v1.min.js"></script>
<script src="libs/L_D3SvgOverlay/L.D3SvgOverlay.min.js"></script>
<script src="libs/Leaflet_Boundary/BoundaryCanvas.js"></script>
<script src="js/index.js"></script>
</body>
</html>