-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
42 lines (26 loc) · 854 Bytes
/
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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Demo de Google Maps</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<style media="screen">
#gmap_canvas img{
max-width:none !important;
background:none!important
}
</style>
<!-- Google Maps -->
<script src="https://maps.googleapis.com/maps/api/js?key=SU-API_KEY" async defer></script>
</head>
<body onload="cargar_mapa()">
<div class="container">
<h1>Usando GoogleMaps <small>ejemplo</small></h1>
<div id='gmap_canvas' style='height:350px;width:100%;'></div>
</div>
<script src="js/app.js" charset="utf-8"></script>
</body>
</html>