-
Notifications
You must be signed in to change notification settings - Fork 0
/
recover.html
66 lines (58 loc) · 2.16 KB
/
recover.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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Material Design for Bootstrap fonts and icons -->
<link rel="stylesheet" href="node_modules/typeface-roboto/index.css">
<link rel="stylesheet" href="node_modules/material-design-icons/iconfont/material-icons.css">
<!-- Material Design for Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap-material-design/dist/css/bootstrap-material-design.min.css" integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
<link rel="stylesheet" href="css/custom_material.css"/>
<!--<link type="text/css" rel="stylesheet" href="https://cdn.firebase.com/libs/firebaseui/2.6.2/firebaseui.css" />
-->
<title>Iturramasat</title>
<style>
.nav-fixed{
position:absolute;
top:0px;
left:0px;
right:0px;
z-index: 1000;
}
html, body {
overflow:hidden;
width:100%;
height:100%;
}
.map {
position:absolute;
width:100%;
height:100%;
}
</style>
</head>
<body>
<!-- dark -->
<ul class="nav nav-tabs bg-dark nav-fixed">
<li class="nav-item">
<a class="nav-link active" href="#">Recuperar Satélite</a>
</li>
<li class="nav-item">
<a class="nav-link" href="material.html">Atrás</a>
</li>
</ul>
<div class="map" id="mainMap">
</div>
<script src="https://www.gstatic.com/firebasejs/4.5.0/firebase.js"></script>
<!--<script src="https://cdn.firebase.com/libs/firebaseui/2.6.2/firebaseui.js"></script>-->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDEsuhhp_I-tm9UOjI-hWjqs9x82P_CxJI&callback=initMap">
</script>
<script src="node_modules/socket.io-client/dist/socket.io.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="config.js"></script>
<script src="js/recover.js"></script>
<script src="js/map.js"></script>
</body>