Skip to content

Instantly share code, notes, and snippets.

@seaofclouds
Forked from ejholmes/gist:3364440
Created August 15, 2012 23:11
Show Gist options
  • Save seaofclouds/3364564 to your computer and use it in GitHub Desktop.
Save seaofclouds/3364564 to your computer and use it in GitHub Desktop.
Base google map style
window.gmaps_style = [
{
featureType: 'all',
elementType: 'all',
stylers: [
{ color: '#1B1B23' }
]
},
{
featureType: 'administrative',
elementType: 'all',
stylers: [
]
},
{
featureType: 'administrative.country',
elementType: 'all',
stylers: [
]
},
{
featureType: 'administrative.land_parcel',
elementType: 'all',
stylers: [
]
},
{
featureType: 'administrative.locality',
elementType: 'all',
stylers: [
]
},
{
featureType: 'administrative.neighborhood',
elementType: 'all',
stylers: [
]
},
{
featureType: 'administrative.province',
elementType: 'all',
stylers: [
]
},
{
featureType: 'landscape',
elementType: 'all',
stylers: [
]
},
{
featureType: 'landscape.man_made',
elementType: 'all',
stylers: [
]
},
{
featureType: 'landscape.natural',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.attraction',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.business',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.government',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.medical',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.park',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.place_of_worship',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.school',
elementType: 'all',
stylers: [
]
},
{
featureType: 'poi.sports_complex',
elementType: 'all',
stylers: [
]
},
{
featureType: 'road',
elementType: 'all',
stylers: [
]
},
{
featureType: 'road.arterial',
elementType: 'all',
stylers: [
]
},
{
featureType: 'road.highway',
elementType: 'all',
stylers: [
]
},
{
featureType: 'road.highway.controlled_access',
elementType: 'all',
stylers: [
]
},
{
featureType: 'road.local',
elementType: 'all',
stylers: [
]
},
{
featureType: 'transit',
elementType: 'all',
stylers: [
]
},
{
featureType: 'transit.line',
elementType: 'all',
stylers: [
]
},
{
featureType: 'transit.station',
elementType: 'all',
stylers: [
]
},
{
featureType: 'transit.station.airport',
elementType: 'all',
stylers: [
]
},
{
featureType: 'transit.station.bus',
elementType: 'all',
stylers: [
]
},
{
featureType: 'transit.station.rail',
elementType: 'all',
stylers: [
]
},
{
featureType: 'water',
elementType: 'all',
stylers: [
{color: '#20202A' }
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment