forked from rodolfoprr/GoogleMapsAPIv3MapaPersonalizado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (21 loc) · 788 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8" />
<title>Google Maps API v3: Criando um mapa personalizado</title>
<link rel="stylesheet" type="text/css" href="css/estilo.css">
</head>
<body>
<div id="mapa" style="height: 500px; width: 700px">
</div>
<script src="js/jquery.min.js"></script>
<!-- Maps API Javascript -->
<script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<!-- Caixa de informação -->
<script src="js/infobox.js"></script>
<!-- Agrupamento dos marcadores -->
<script src="js/markerclusterer.js"></script>
<!-- Arquivo de inicialização do mapa -->
<script src="js/mapa.js"></script>
</body>
</html>