forked from scottgruber/web-maps-workshop
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex-step5.html
41 lines (32 loc) · 1.19 KB
/
index-step5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Map Tools Workshop</title>
<meta
name="description"
content="Leaflet and GeoJSON Mapping Tools Workshop"/>
<meta name="author" content="Scott Gruber" />
<link href="https://fonts.googleapis.com/css?family=Lora:400,700" rel="stylesheet">
<script src="lib/leaflet/leaflet.js"></script>
<link rel="stylesheet" href="lib/leaflet/leaflet.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header><h1>Map Tools Workshop</h1></header>
<main>
<div id="map"></div>
</main>
<aside>
<p>This workshop introduces Leaflet, OpenStreetMap, MapBox and GeoJSON.</p>
</aside>
<footer>
<ul>
<li><a href="https://github.com/uclaioes/map-tools-workshop/">Map Tools Workshop GitHub Repo</a></li>
<li><a href="https://uclaioes.github.io/map-tools-workshop/">On GitHub Pages</a></li>
<li><a href="https://query.data.world/s/iqvqg22xfo5mjki4k5hz4g5ed2nc64"> California Wind Turbines 2000-2018 via data.world</a></li>
</ul>
</footer>
<script src="js/map-step5.js"></script>
</body>
</html>