forked from brupps/project_3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolylineMap.html
37 lines (27 loc) · 970 Bytes
/
polylineMap.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
<!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>Tornado</title>
<!-- Leaflet CSS -->
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin="" />
<!-- Our CSS -->
<link rel="stylesheet" type="text/css" href="static/css/polylineCSS.css">
</head>
<body>
<!-- The div that holds our map -->
<div id="map"></div>
<!-- Leaflet JS -->
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
<!-- D3 JavaScript -->
<script src="https://d3js.org/d3.v7.min.js"></script>
<!-- my javascript -->
<script type="text/javascript" src="static/polylineMap.js"></script>
</body>
</html>