function initialize() { var styles = [ { "stylers": [ { "saturation": -100 }, { "gamma": 1 } ] }, { "elementType": "labels.text.stroke", "stylers": [ { "visibility": "off" } ] }, { "featureType": "poi.business", "elementType": "labels.text", "stylers": [ { "visibility": "off" } ] }, { "featureType": "poi.business", "elementType": "labels.icon", "stylers": [ { "visibility": "off" } ] }, { "featureType": "poi.place_of_worship", "elementType": "labels.text", "stylers": [ { "visibility": "off" } ] }, { "featureType": "poi.place_of_worship", "elementType": "labels.icon", "stylers": [ { "visibility": "off" } ] }, { "featureType": "road", "elementType": "geometry", "stylers": [ { "visibility": "simplified" } ] }, { "featureType": "water", "stylers": [ { "visibility": "on" }, { "saturation": 50 }, { "gamma": 0 }, { "hue": "#50a5d1" } ] }, { "featureType": "administrative.neighborhood", "elementType": "labels.text.fill", "stylers": [ { "color": "#333333" } ] }, { "featureType": "road.local", "elementType": "labels.text", "stylers": [ { "weight": 0.5 }, { "color": "#333333" } ] }, { "featureType": "transit.station", "elementType": "labels.icon", "stylers": [ { "gamma": 1 }, { "saturation": 50 } ] } ]; styledMap = new google.maps.StyledMapType(styles, {name: "Raycox Turf"}); latlng = new google.maps.LatLng(51.546715, -2.433300); var myOptions = { scrollwheel: false, navigationControl: false, mapTypeControl: false, scaleControl: false, draggable: true, zoom: 14, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP, mapTypeControl: false } map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); marker = new google.maps.Marker({ position: latlng, map: map, title:"Raycox Turf" }); map.mapTypes.set('map_style', styledMap); map.setMapTypeId('map_style'); }