// Api de google maps

  function initialize() { 
    var latlng = new google.maps.LatLng(42.656418600011364, -2.038264274597168); 
    var myOptions = { 
      zoom: 12, 
      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"), 
        myOptions); 
	var companyPos = new google.maps.LatLng(42.656418600011364, -2.038264274597168);
	
	var companyLogo = new google.maps.MarkerImage('img/logo.png',
    new google.maps.Size(36,47),
    new google.maps.Point(0,0),
    new google.maps.Point(22,38)
	);
	var companyShadow = new google.maps.MarkerImage('',
    new google.maps.Size(130,50),
    new google.maps.Point(0,0),
    new google.maps.Point(65, 50)
	);
	var companyPos = new google.maps.LatLng(42.656418600011364, -2.038264274597168);
	var companyMarker = new google.maps.Marker({
    position: companyPos,
    map: map,
    icon: companyLogo,
    shadow: companyShadow,
    title:"Lácteos Mendi"
	}); 
}
