-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.37 KB
/
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
34
<html>
<head>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link href="https://getbootstrap.com/docs/3.3/examples/dashboard/dashboard.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/vue"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCzHXWiF16G93ftLn4XfObHnw3hv_W-G8o&callback=initMap" async defer></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>
<body>
<div class="container" id="app">
<div class="form-group">
<label>Saisissez une adresse:</label>
<input type="text" placeholder="Saisissez votre adresse" class="form-control" id="address"/>
</div>
<button id="submit" class="btn btn-default">Valider</button>
<div class="panel panel-default">
<mapp></mapp>
</div>
</div>
<script type="text/javascript" src="./js/components.js"></script>
<script type="text/javascript" src="./js/map.js"></script>
<script type="text/javascript" src="./js/app.js"></script>
<script type="text/javascript" src="./js/bootstrap.min.js"></script>
<script>
// Bloc initialisation
$(document).ready(function(){
app.map.initMap();
$('#submit').click(function(){
app.map.geocodeAddress();
});
});
</script>
</body>
</html>