jQuery(document).ready(function(){ var myOptions = { zoom: 14, scrollwheel: false, navigationControl: false, mapTypeControl: false, scaleControl: false, draggable: false, center: new google.maps.LatLng(41.643242, 2.743010), mapTypeId: google.maps.MapTypeId.ROADMAP, styles: [{"featureType":"administrative","stylers":[{"visibility":"off"}]},{"featureType":"poi","stylers":[{"visibility":"simplified"}]},{"featureType":"road","stylers":[{"visibility":"simplified"}]},{"featureType":"water","stylers":[{"visibility":"simplified"}]},{"featureType":"transit","stylers":[{"visibility":"simplified"}]},{"featureType":"landscape","stylers":[{"visibility":"simplified"}]},{"featureType":"road.highway","stylers":[{"visibility":"off"}]},{"featureType":"road.local","stylers":[{"visibility":"on"}]},{"featureType":"road.highway","elementType":"geometry","stylers":[{"visibility":"on"}]},{"featureType":"water","stylers":[{"color":"#84afa3"},{"lightness":52}]},{"stylers":[{"saturation":-77}]},{"featureType":"road"}] }; var map = new google.maps.Map(document.getElementById('map_contact'), myOptions); var myLatlng = new google.maps.LatLng(41.643242, 2.743010); var marker = new google.maps.Marker({ position: myLatlng, map: map }); });