$(document).ready(function() { $(".coursePageGallery a").colorbox({ maxWidth:'95%', maxHeight:'95%' }); function initialize() { var latlng = new google.maps.LatLng(37.202067780793485,-1.8932167323183235); var myOptions = { zoom: 10, center: latlng, streetViewControl: true, mapTypeId: google.maps.MapTypeId.TERRAIN }; var hotelMap = new google.maps.Map(document.getElementById("map"), myOptions); var image = new google.maps.MarkerImage('/images/hotelIcon.png', new google.maps.Size(41, 36), new google.maps.Point(0,0), new google.maps.Point(12, 36)); var marker = new google.maps.Marker({ icon: image, map: hotelMap, position: latlng, title:"Hotel Valle del Este" }); } initialize(); });