-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
30 lines (30 loc) · 1.17 KB
/
map.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
<!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>Map</title>
<link rel="stylesheet" href="css/style.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.4.2/d3.js"
integrity="sha512-c1CuuvAJrV5Tf0jpwRgeeM6rA5v1/kv7eEzkIO6ARsKq2X9O3GCVGMRUJ76zh/plXad4cq0MYG02TyuXRhM4OQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- <script src="https://d3js.org/d3.geo.projection.v0.min.js"></script> -->
<script src="https://d3js.org/topojson.v0.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.26.1/axios.js"
integrity="sha512-MNW6IbpNuZZ2VH9ngFhzh6cUt8L/0rSVa60F8L22K1H72ro4Ki3M/816eSDLnhICu7vwH/+/yb8oB3BtBLhMsA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- Turf to fix geocoordinates -->
<script src="https://unpkg.com/@turf/turf@6/turf.min.js"></script>
</head>
<body>
<div class="map-container"></div>
<script src="script.js"></script>
</body>
</html>