-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 914 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>News map</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<!-- Axios JS file -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- Mapbox JS files -->
<script src="https://api.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.js"></script>
<!-- Mapox and directory CSS files -->
<link href="https://api.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="container">
<!-- Map pane -->
<div class="map" id="map">
</div>
<!-- Stories pane -->
<div class="stories" id="stories">
</div>
</div>
<!-- Wait till the layout loads and then run the directory JS file -->
<script src="js/scripts.js"></script>
</body>
</html>