I found a code snippet on http://www.41latitude.com/post/1268734799/google-styled-maps:
[
{
featureType: "administrative",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
},{
featureType: "poi",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
},{
featureType: "water",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
},{
featureType: "road",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
}
]
I should be able to use it in my maps, but is there somebody who can tell me how I can use this snippet? I can’t find anything about it in the API of Google Maps V3.
As @ceejayoz suggested in the other answer, you are trying to use the new Styled Map features of the v3 Maps API. Here’s a very basic example of how you could use the above style in a simple map:
Screenshot:
You may also want to check out the Google Maps APIs Styling Wizard which will allow you to graphically edit styles.