-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (33 loc) · 1.21 KB
/
index.html
File metadata and controls
49 lines (33 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Adrian Chuquipiondo">
<!--title-->
<title>City of Toronto Poster Boards by 2021 Population Ethnic Origin</title>
<!-- Your CSS -->
<link rel="stylesheet" href="style.css">
<!--Link to Leaflet CSS document-->
<link
rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
>
<!--Link to Leaflet JS API-->
<script
src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""
></script>
<!-- Link to JS data -->
<script src="./data/to_areaLine.js" defer></script>
<script src="./data/pop_byEthnicOrigin.js" defer></script>
<script src="./data/poster_Address.js" defer></script>
<script src="./data/poster_Demo.js" defer></script>
<script src="./data/poster_Pop.js" defer></script>
<!-- Your JS -->
<script src="main.js" defer></script>
</head>
<body>
<div id="mapid"></div>
</body>
</html>