-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdondeestamos.html
76 lines (63 loc) · 2.17 KB
/
dondeestamos.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
71
72
73
74
75
76
<!DOCTYPE html>
<head>
<title>GamerZone.com | Donde Estamos</title>
<meta charset="UTF-8">
<link href="imagenes/icono.ico" type="image/x-icon" rel="shortcut icon" />
<link rel=stylesheet href="CSS/style.css" type="text/css">
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">// <![CDATA[
function mostrarGoogleMaps()
{
//Creamos el punto a partir de las coordenadas:
var punto = new google.maps.LatLng(42.213333, -8.693190);
//Configuramos las opciones indicando Zoom, punto(el que hemos creado) y tipo de mapa
var myOptions = {
zoom: 16, center: punto, mapTypeId: google.maps.MapTypeId.ROADMAP
};
//Creamos el mapa e indicamos en qué caja queremos que se muestre
var map = new google.maps.Map(document.getElementById("mostrarMapa"), myOptions);
//Opcionalmente podemos mostrar el marcador en el punto que hemos creado.
var marker = new google.maps.Marker({
position:punto,
map: map,
title:"Título del mapa"});
}
// ]]>
</script>
<style type="text/css">
#contenido{background: none;
border-radius: 0;
box-shadow: none;}
</style>
</head>
<body onload="mostrarGoogleMaps()">
<section id="contenedor">
<header id="header">
</header>
<nav id="menu">
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="noticias/index.html">Noticias</a></li>
<li><a href="dondeestamos.html">Donde Estamos</a></li>
<li><a href="galeria.html">Galeria</a></li>
<li><a href="Contacto.html">Contacto</a></li>
<div class="clear"></div>
</ul>
</nav>
<section id="contenido">
<div id="mostrarMapa" style="width: 450px; height: 350px; display:inline-block;"> </div>
<div id="datos">
<h3>DONDE ESTAMOS</h3>
<p>
Colegio de Fomento Montecastelo</br>
Dr. Paz Pardo, 84, 36214 Vigo, Pontevedra, PO, España</br>
colegiomontecastelo.com</br>
986 41 24 88</p>
</div>
</section>
<footer id="footer">
<h2>Copyright © 2014 WebMaster GamerZone.Com All Rights Reserved</h2>
</footer>
</section>
</body>
</html>