-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.html
More file actions
35 lines (27 loc) · 1.07 KB
/
map.html
File metadata and controls
35 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="images/icon.ico" type="image/x-icon">
<title>Goal</title>
<!-- Leaflet CSS -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.3/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin=""/>
<!-- Our CSS -->
<link rel="stylesheet" type="text/css" href="static/style.css">
</head>
<body>
<!-- The div where we will inject our map -->
<div id="map"></div>
<!-- Leaflet JS-->
<script src="https://unpkg.com/leaflet@1.3.3/dist/leaflet.js"
integrity="sha512-tAGcCfR4Sc5ZP5ZoVz0quoZDYX5aCtEm/eu1KhSLj2c9eFrylXZknQYmxUssFaVJKvvc0dJQixhGjG2yXWiV9Q=="
crossorigin=""></script>
<!-- d3 JavaScript -->
<script src="https://d3js.org/d3.v6.min.js"></script>
<!-- Our JS -->
<script type="text/javascript" src="static/js/config.js"></script>
<script type="text/javascript" src="static/js/map.js"></script>
</body>
</html>