//CONTACT - map function initializeGmap() { var latlng = new google.maps.LatLng(51.974346,-0.328796); var set_draggable = true; var settings = { zoom: 9, center: latlng, mapTypeControl: true, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, navigationControl: true, navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}, mapTypeId: google.maps.MapTypeId.ROADMAP, draggable: set_draggable, scrollwheel: false }; var map = new google.maps.Map(document.getElementById("map_canvas"), settings); /* var infobox = new InfoBox({ content: document.getElementById("infobox"), disableAutoPan: false, maxWidth: 150, pixelOffset: new google.maps.Size(-140, 0), zIndex: null, boxStyle: { opacity: 0.75, width: "280px" }, closeBoxMargin: "30px 15px 10px 10px", closeBoxURL: "./img/icon_cross_sw.png", infoBoxClearance: new google.maps.Size(1, 1) });*/ var companyImage = new google.maps.MarkerImage('./images/map_pin.png', new google.maps.Size(22,34), // The origin for this image new google.maps.Point(0,0), // The anchor for this image new google.maps.Point(11,34) ); var companyShadow = new google.maps.MarkerImage('./images/map_pin_shadow.png', new google.maps.Size(42,34), new google.maps.Point(0,0), new google.maps.Point(11,34)); // Shapes define the clickable region of the icon. var shape = { coord: [25,3,27,4,29,5,30,6,32,7,32,8,33,9,34,10,34,11,35,12,35,13,36,14,36,15,36,16,36,17,36,18,36,19,36,20,36,21,36,22,36,23,36,24,36,25,35,26,35,27,35,28,34,29,33,30,33,31,32,32,31,33,30,34,29,35,28,36,27,37,26,38,27,39,29,40,30,41,31,42,32,43,32,44,32,45,32,46,32,47,31,48,30,49,29,50,27,51,12,51,10,50,9,49,8,48,7,47,7,46,7,45,7,44,7,43,8,42,9,41,10,40,12,39,13,38,12,37,11,36,10,35,9,34,9,33,8,32,7,31,6,30,5,29,5,28,4,27,4,26,3,25,3,24,3,23,3,22,3,21,3,20,3,19,3,18,3,17,3,16,3,15,3,14,4,13,4,12,5,11,5,10,6,9,7,8,7,7,9,6,10,5,12,4,14,3], type: 'poly' }; var companyPos = new google.maps.LatLng(51.974346,-0.328796); var companyMarker = new google.maps.Marker({ position: companyPos, map: map, icon: companyImage, shadow: companyShadow, shape: shape, title:"Rocket Rigs", zIndex: 3}); /*google.maps.event.addListener(companyMarker, 'click', function() { infobox.open(map,companyMarker); map.panTo(companyPos); });*/ }