[
{
"featureType": "administrative.province",
"elementType": "all",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "administrative.locality",
"elementType": "all",
"stylers": [
{
"invert_lightness": true
},
{
"weight": 0.1
},
{
"gamma": 0.01
}
]
},
{
"featureType": "landscape.natural.terrain",
"elementType": "geometry",
"stylers": [
{
"visibility": "off"
}
]
},
{
"featureType": "administrative.country",
"elementType": "all",
"stylers": [
{
"visibility": "simplified"
},
{
"color": "#ff14ff"
},
{
"hue": "#cc29cc"
}
]
},
{
"featureType": "administrative.locality",
"elementType": "labels.text",
"stylers": [
{
"color": "#a32aa3"
}
]
}
]
var map;
function initialize() {
var mapOptions = {
zoom: 8,
center: new google.maps.LatLng(34.397, 150.644),
styles: style_array_here
};
map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);