-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (48 loc) · 2.32 KB
/
index.html
File metadata and controls
69 lines (48 loc) · 2.32 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en" ng-app="earthApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://api.mapbox.com/mapbox-gl-js/v0.40.0/mapbox-gl.css' rel='stylesheet' />
<!-- <link rel="stylesheet" href="https://unpkg.com/leaflet@1.2.0/dist/leaflet.css" /> -->
<link rel="stylesheet" href="style.css">
<title>EQ Mapping</title>
</head>
<body>
<!-- <div class='mainContainer'> -->
<!-- <div class'BiggestBox'> -->
<!-- <div class="mainNavBox">
<div class="itemBox">
<div class="navList" class="leftBoxes" class="navItems" ><a ui-sref="list">List </a></div>
<div class="settings" class="leftBoxes" class="navItems">Settings </div>
<div class="logo" class="leftBoxes" class="navItems" ><a ui-sref="home">
<img src="./img/eqMap.png" style="width: 60px; max-height: 60px" alt="Earthquake Map logo"/>
</a>
</div>
<div class="about" class="rightBoxes" class="navItems"><a ui-sref="about"> About </a></div>
<div class="contact" class="rightBoxes" class="navItems"><a ui-sref="contact"> Contact </a></div>
</div>
</div> -->
<nav-dir></nav-dir>
<ui-view></ui-view>
<!-- <div id='mainMapBox'>
<div id="feedColumn" class='ListBox'>
<div id="feedSelector"></div>
</div>
<div id='map' class='mapBox'></div>
</div> -->
<!-- </div> -->
<!-- </div> -->
</body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.5/angular.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/1.0.3/angular-ui-router.js"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v0.40.0/mapbox-gl.js'></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<!-- <script src="https://unpkg.com/leaflet@1.2.0/dist/leaflet.js"></script> -->
<script src="./app.js"></script>
<script src="./src/earthMap/earthCtrl.js"></script>
<script src="./src/earthMap/earthService.js"></script>
<script src="./src/list/listCtrl.js"></script>
<script src="./navDir.js"></script>
</body>
</html>