I'm currently working on implementing Google Maps into my website and I have encountered an issue regarding the color scheme. Here's a snapshot of how it currently looks: https://i.sstatic.net/CxRKX.png
However, I came across a website with a Google Map that has a grayed-out style like this: https://i.sstatic.net/hN7Nd.png
Can anyone guide me on how to change my Google Map to achieve the same grayed out style? Any help would be greatly appreciated. Below is the code snippet in case it's needed.
function markers(position, zoom) {
if (typeof zoom === "undefined") {
zoom = 12;
}
var center = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
var map = new google.maps.Map(document.getElementById('map'), {
zoom: zoom,
scrollwheel: false,
center: center,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
var markers = [];
var flag;
var group = [];
....
}
var markerCluster = new MarkerClusterer(map, markers);
}