- 948 312 555 - 659 093 029
- catálogo
var latlng = new google.maps.LatLng(42.774642,-1.639473); var options = { zoom: 15, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP };
var map = new google.maps.Map(document.getElementById('mapa'), options); var ico1 = new google.maps.MarkerImage("/img/ico-maps.png", new google.maps.Size(34, 53), new google.maps.Point((0), 0), new google.maps.Point(16, 42));
var marker = new google.maps.Marker({ position: new google.maps.LatLng(42.774642,-1.639473), map: map, icon: ico1, title: 'DISNIRUÑA', draggable: false });
var contentString = '
'; var infowindow = new google.maps.InfoWindow({content: contentString});
google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,marker); });
map.setCenter(latlng);