-
Notifications
You must be signed in to change notification settings - Fork 1
/
indexmapa.html
70 lines (61 loc) · 3.15 KB
/
indexmapa.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
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="style2.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Mapa</title>
<style>
#map {
height: 600px;
width: 95%;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg py-3 fixed-top" data-bs-theme="dark">
<div class="container-fluid" >
<a class="navbar-brand" href="#">
<img src="img/logo - exe.svg" alt="Logo" width="36" height="30" class="d-inline-block align-text-top">
Energy Point
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="indexmapa.html" >Mapa</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html" >Login</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<h1 class="iphonetxt"> Mapa dos postos de abastecimento em Sorocaba</h1>
<div id="map" class="container-fluid"></div>
<button id="toggleStatus" class="btn btn-primary">Alterar Status</button>
</main>
<footer class="foter">
<div>
<a href="https://facebook.com/"><img width="50px" height="20px" src="img/facebook.svg" alt="facebook" target="_blank" ></a>
<a href="https://www.instagram.com/"><img width="50px" height="20px" src="img/instagram.svg" alt="instagram" target="_blank"></a>
<a href="https://getsupport.apple.com/?caller=support.header&cid=gn-ols-contact-mgs_lp-get_help"><img width="50px" height="20px" src="img/whatsapp.svg" alt="whatsapp" target="_blank"></a>
</div>
</footer>
<script src="mainmapa.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCkt4yhdVigPNPmBmJHK0AibQIla-W3COI&callback=initMap" async defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>