forked from silvahenrique/hackathon_saude
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMap.html
More file actions
38 lines (34 loc) · 1.39 KB
/
Map.html
File metadata and controls
38 lines (34 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>Meus Locais</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="bower_components/bootstrap/dist/css/bootstrap.css" rel="stylesheet" />
<link href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet" />
<link href="bower_components/jquery-ui/themes/base/jquery-ui.css" rel="stylesheet" />
<link href="css/map.css" rel="stylesheet" />
</head>
<body>
<div id="app">
<div class="pergunta modal">
<h1>QUal é o seu problema</h1>
</div>
<div id="mapa"></div>
<div class="pesquisa">
<input id="origem" type="text" placeholder="Origem" />
<input id="destino" type="text" placeholder="Destino" />
<input type="button" value="Ir" id="btnIr" />
<select id="modo">
</select>
<input type="button" value="Rota" id="btnRota" />
</div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC0_BXBFtq7vwQoJEgGpgAgZfhQjq1s39g"></script>
<script src="bower_components/jquery/dist/jquery.js" type="text/javascript"></script>
<script src="bower_components/jquery-ui/jquery-ui.js" type="text/javascript"></script>
<script src="bower_components/vue/dist/vue.js" type="text/javascript"></script>
<script src="js/map.js"></script>
</body>
</html>