var styledMap = new google.maps.StyledMapType(styles);
var mapOptions = {
    
    
    scrollwheel: false,
    navigationControl: false,
    mapTypeControl: false,
    scaleControl: false,
    draggable: false,
    disableDoubleClickZoom: true,
    overviewMapControl: false,
    panControl: false,
    rotateControl: false,
    streetViewControl: false,
    zoomControl:false,
    noClear: true,
    zoom: 6,
    center: new google.maps.LatLng(12.1, 122), 
    mapTypeId: google.maps.MapTypeId.SATELLITE
};
var map = new google.maps.Map(document.getElementById('map-canvas'),
    mapOptions);
map.mapTypes.set('map_style', styledMap);`enter code here`
center: new google.maps.LatLng(12.1, 122),