-
Notifications
You must be signed in to change notification settings - Fork 0
Google Maps API
Kit edited this page Jan 21, 2015
·
1 revision
To use the api call in development simply leave out the api key param.
##Google Maps JavaScript API v3
###API key
Start by aquireing a key by going to the google developers console, create a new project
##Snazzymaps Using these styles in your website is as easy as copying the JSON on any style page.
var styles = [
{
stylers: [
{ hue: "#00ffe6" },
{ saturation: -20 }
]
},{
featureType: "road",
elementType: "geometry",
stylers: [
{ lightness: 100 },
{ visibility: "simplified" }
]
},{
featureType: "road",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
}
];
map.setOptions({styles: styles});