-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathJustin_fs.html
43 lines (33 loc) · 1.5 KB
/
Justin_fs.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>Migration Map: Top 10 States by generation</title>
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin="" />
<!-- Our CSS -->
<link rel="stylesheet" type="text/css" href="css/migrationmapstyle.css">
</head>
<body>
<!-- The div that holds our map -->
<div id="migrationmapid"></div>
<!-- Leaflet JS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<script src="http://sashakavun.github.io/leaflet-canvasicon/leaflet-canvasicon.js"></script>
<script type="text/javascript" src="js/leaflet-piechart.js"></script>
<script type="text/javascript"></script>
<!-- D3 JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.3/d3.min.js"></script>
<!-- API key -->
<script type="text/javascript" src="Code/config.js"></script>
<!-- <script type="text/javascript" src="static/js/config.js"></script> -->
<!-- Our JavaScript -->
<script type="text/javascript" src="js/migration_map_gen.js"></script>
</body>
</html>