- Validaciones HTML5 (algunos errores no se pueden quitar por la librería FancyBox) - Actualización de FancyBox a v1.3.4 - Limpieza de ficheros git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_Web/trunk@9 4d6e3d7e-063e-4044-a2d3-903626ba9061
105 lines
5.1 KiB
HTML
105 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="initial-scale=0, user-scalable=no" />
|
|
|
|
<link rel="stylesheet" href="css/main.css"/>
|
|
<link rel="stylesheet" href="css/_print/main.css" media="print"/>
|
|
<!--[if IE]><link rel="stylesheet" href="_/css/_patches/win-ie-all.css" media="all" /><![endif]-->
|
|
<!--[if IE 7]><link rel="stylesheet" href="_/css/_patches/win-ie7.css" media="all" /><![endif]-->
|
|
<!--[if lt IE 7]><link rel="stylesheet" href="_/css/_patches/win-ie-old.css" media="all" /><![endif]-->
|
|
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
|
|
|
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>
|
|
<link href="http://fonts.googleapis.com/css?family=Mako:regular" rel="stylesheet" type="text/css" />
|
|
|
|
<link href="styles.css" rel="stylesheet" type="text/css" />
|
|
<title>Tienda y dirección en Madrid. Cocinas y baños Arribas</title>
|
|
<meta name="description" content ="¿Cómo llegar a Cocinas y Baños Arribas en Madrid? Aquí encontrarás su mapa y dirección."/>
|
|
</head>
|
|
<body id="index" onLoad="initialize()">
|
|
<div id="inner-wrap-map">
|
|
<header>
|
|
<section id="logo">
|
|
<h1><a href="index.html">Arribas</a></h1>
|
|
<p><span class="coloured-1">«</span> desde 1980 <span class="coloured-1">»</span></p>
|
|
</section><!--logo ends here-->
|
|
</header>
|
|
|
|
<nav id="top">
|
|
<a href="index.html">Inicio</a>
|
|
<a href="acerca-de.html">Empresa </a>
|
|
<a href="galeria-exposiciones.html">Exposiciones</a>
|
|
<a href="galeria-montajes.html">Montajes</a>
|
|
<a href="ofertas.html">Ofertas</a>
|
|
<a href="#" class="current">Tienda</a>
|
|
<a href="contacto.php">Contacto</a>
|
|
<!--a href="service.html">services</a-->
|
|
</nav>
|
|
|
|
</div><!--inner-wrap-map ends here-->
|
|
<div id="map_canvas"></div>
|
|
<!--scripts-->
|
|
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
|
|
<script>
|
|
function initialize() {
|
|
var latlng = new google.maps.LatLng(40.39093,-3.743423);
|
|
var settings = {
|
|
zoom: 15,
|
|
center: latlng,
|
|
mapTypeControl: true,
|
|
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
|
|
navigationControl: true,
|
|
navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
|
|
mapTypeId: google.maps.MapTypeId.ROADMAP};
|
|
var map = new google.maps.Map(document.getElementById("map_canvas"), settings);
|
|
var contentString = '<div id="content">'+
|
|
'<div id="siteNotice">'+
|
|
'</div>'+
|
|
'<h1 id="firstHeading" class="firstHeading">Arribas</h1>'+
|
|
'<div id="bodyContent">'+
|
|
'<h2>Mobiliario de Cocina y Electrodomésticos</h2>'+
|
|
'<div id="address">'+
|
|
'<p>Vía Carpetana, 342 (Esquina Luis Feito)<br/>28047 Madrid<br/>Teléfonos: 91 465 28 42 / 91 465 27 41<br/>Fax: 91 462 33 88<br/></p>'+
|
|
'</div>'+
|
|
'<h2>Mobiliario y accesorios de Baño</h2>'+
|
|
'<div id="address">'+
|
|
'<p>Vía Carpetana, 340<br/>28047 Madrid<br/>Teléfono y fax: 91 462 54 55</p>'+
|
|
'</div>'+
|
|
'<!--<figure><img src="images/outside.jpg" width="400" height="260" alt="bar outside"/></figure>-->'
|
|
'</div>'+
|
|
'</div>';
|
|
var infowindow = new google.maps.InfoWindow({
|
|
content: contentString
|
|
});
|
|
|
|
var companyImage = new google.maps.MarkerImage('images/barsign.png',
|
|
new google.maps.Size(150,90),
|
|
new google.maps.Point(0,0),
|
|
new google.maps.Point(50,50)
|
|
);
|
|
|
|
var companyShadow = new google.maps.MarkerImage('images/bar-shadow.png',
|
|
new google.maps.Size(180,110),
|
|
new google.maps.Point(0,0),
|
|
new google.maps.Point(50, 45));
|
|
|
|
var companyPos = new google.maps.LatLng(40.39093,-3.743423);
|
|
|
|
var companyMarker = new google.maps.Marker({
|
|
position: companyPos,
|
|
map: map,
|
|
icon: companyImage,
|
|
shadow: companyShadow,
|
|
title:"Arribas",
|
|
zIndex: 3});
|
|
|
|
google.maps.event.addListener(companyMarker, 'click', function() {
|
|
infowindow.open(map,companyMarker);
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|