Skip to content

Instantly share code, notes, and snippets.

@jannisg
Created May 12, 2011 02:48
Show Gist options
  • Save jannisg/967843 to your computer and use it in GitHub Desktop.
Save jannisg/967843 to your computer and use it in GitHub Desktop.
B+W Google Map Style
var stylez = [
{
featureType: "water",
elementType: "all",
stylers: [
{ visibility: "simplified" },
{ saturation: -51 },
{ lightness: 22 }
]
},{
featureType: "all",
elementType: "geometry",
stylers: [
{ visibility: "simplified" },
{ saturation: -100 }
]
},{
featureType: "all",
elementType: "labels",
stylers: [
{ saturation: -100 },
{ lightness: 52 },
{ invert_lightness: true },
{ visibility: "off" }
]
},{
featureType: "road.local",
elementType: "labels",
stylers: [
{ visibility: "on" },
{ invert_lightness: true },
{ gamma: 0.69 }
]
},{
featureType: "administrative.locality",
elementType: "labels",
stylers: [
{ visibility: "on" },
{ invert_lightness: true },
{ gamma: 0.62 }
]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment