This example creates a new map type, which the user can select from the map type control. The map type includes custom styles.
Read the documentation.
TypeScript
function initMap(): void { // Create a new StyledMapType object, passing it an array of styles, // and the name to be displayed on the map type control. const styledMapType = new google.maps.StyledMapType( [ { elementType: "geometry", stylers: [{ color: "#ebe3cd" }] }, { elementType: "labels.text.fill", stylers: [{ color: "#523735" }] }, { elementType: "labels.text.stroke", stylers: [{ color: "#f5f1e6" }] }, { featureType: "administrative", elementType: "geometry.stroke", stylers: [{ color: "#c9b2a6" }], }, { featureType: "administrative.land_parcel", elementType: "geometry.stroke", stylers: [{ color: "#dcd2be" }], }, { featureType: "administrative.land_parcel", elementType: "labels.text.fill", stylers: [{ color: "#ae9e90" }], }, { featureType: "landscape.natural", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "poi", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "poi", elementType: "labels.text.fill", stylers: [{ color: "#93817c" }], }, { featureType: "poi.park", elementType: "geometry.fill", stylers: [{ color: "#a5b076" }], }, { featureType: "poi.park", elementType: "labels.text.fill", stylers: [{ color: "#447530" }], }, { featureType: "road", elementType: "geometry", stylers: [{ color: "#f5f1e6" }], }, { featureType: "road.arterial", elementType: "geometry", stylers: [{ color: "#fdfcf8" }], }, { featureType: "road.highway", elementType: "geometry", stylers: [{ color: "#f8c967" }], }, { featureType: "road.highway", elementType: "geometry.stroke", stylers: [{ color: "#e9bc62" }], }, { featureType: "road.highway.controlled_access", elementType: "geometry", stylers: [{ color: "#e98d58" }], }, { featureType: "road.highway.controlled_access", elementType: "geometry.stroke", stylers: [{ color: "#db8555" }], }, { featureType: "road.local", elementType: "labels.text.fill", stylers: [{ color: "#806b63" }], }, { featureType: "transit.line", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "transit.line", elementType: "labels.text.fill", stylers: [{ color: "#8f7d77" }], }, { featureType: "transit.line", elementType: "labels.text.stroke", stylers: [{ color: "#ebe3cd" }], }, { featureType: "transit.station", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "water", elementType: "geometry.fill", stylers: [{ color: "#b9d3c2" }], }, { featureType: "water", elementType: "labels.text.fill", stylers: [{ color: "#92998d" }], }, ], { name: "Styled Map" } ); // Create a map object, and include the MapTypeId to add // to the map type control. const map = new google.maps.Map( document.getElementById("map") as HTMLElement, { center: { lat: 55.647, lng: 37.581 }, zoom: 11, mapTypeControlOptions: { mapTypeIds: ["roadmap", "satellite", "hybrid", "terrain", "styled_map"], }, } ); //Associate the styled map with the MapTypeId and set it to display. map.mapTypes.set("styled_map", styledMapType); map.setMapTypeId("styled_map"); }
JavaScript
function initMap() { // Create a new StyledMapType object, passing it an array of styles, // and the name to be displayed on the map type control. const styledMapType = new google.maps.StyledMapType( [ { elementType: "geometry", stylers: [{ color: "#ebe3cd" }] }, { elementType: "labels.text.fill", stylers: [{ color: "#523735" }] }, { elementType: "labels.text.stroke", stylers: [{ color: "#f5f1e6" }] }, { featureType: "administrative", elementType: "geometry.stroke", stylers: [{ color: "#c9b2a6" }], }, { featureType: "administrative.land_parcel", elementType: "geometry.stroke", stylers: [{ color: "#dcd2be" }], }, { featureType: "administrative.land_parcel", elementType: "labels.text.fill", stylers: [{ color: "#ae9e90" }], }, { featureType: "landscape.natural", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "poi", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "poi", elementType: "labels.text.fill", stylers: [{ color: "#93817c" }], }, { featureType: "poi.park", elementType: "geometry.fill", stylers: [{ color: "#a5b076" }], }, { featureType: "poi.park", elementType: "labels.text.fill", stylers: [{ color: "#447530" }], }, { featureType: "road", elementType: "geometry", stylers: [{ color: "#f5f1e6" }], }, { featureType: "road.arterial", elementType: "geometry", stylers: [{ color: "#fdfcf8" }], }, { featureType: "road.highway", elementType: "geometry", stylers: [{ color: "#f8c967" }], }, { featureType: "road.highway", elementType: "geometry.stroke", stylers: [{ color: "#e9bc62" }], }, { featureType: "road.highway.controlled_access", elementType: "geometry", stylers: [{ color: "#e98d58" }], }, { featureType: "road.highway.controlled_access", elementType: "geometry.stroke", stylers: [{ color: "#db8555" }], }, { featureType: "road.local", elementType: "labels.text.fill", stylers: [{ color: "#806b63" }], }, { featureType: "transit.line", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "transit.line", elementType: "labels.text.fill", stylers: [{ color: "#8f7d77" }], }, { featureType: "transit.line", elementType: "labels.text.stroke", stylers: [{ color: "#ebe3cd" }], }, { featureType: "transit.station", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "water", elementType: "geometry.fill", stylers: [{ color: "#b9d3c2" }], }, { featureType: "water", elementType: "labels.text.fill", stylers: [{ color: "#92998d" }], }, ], { name: "Styled Map" } ); // Create a map object, and include the MapTypeId to add // to the map type control. const map = new google.maps.Map(document.getElementById("map"), { center: { lat: 55.647, lng: 37.581 }, zoom: 11, mapTypeControlOptions: { mapTypeIds: ["roadmap", "satellite", "hybrid", "terrain", "styled_map"], }, }); //Associate the styled map with the MapTypeId and set it to display. map.mapTypes.set("styled_map", styledMapType); map.setMapTypeId("styled_map"); }
CSS
/* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; }
HTML
<!DOCTYPE html> <html> <head> <title>Styled Map Types</title> <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script> <link rel="stylesheet" type="text/css" href="./style.css" /> <script src="./index.js"></script> </head> <body> <div id="map"></div> <!-- Async script executes immediately and must be after any DOM elements used in callback. --> <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&libraries=&v=weekly" async ></script> </body> </html>
All
<!DOCTYPE html> <html> <head> <title>Styled Map Types</title> <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script> <style type="text/css"> /* Always set the map height explicitly to define the size of the div * element that contains the map. */ #map { height: 100%; } /* Optional: Makes the sample page fill the window. */ html, body { height: 100%; margin: 0; padding: 0; } </style> <script> function initMap() { // Create a new StyledMapType object, passing it an array of styles, // and the name to be displayed on the map type control. const styledMapType = new google.maps.StyledMapType( [ { elementType: "geometry", stylers: [{ color: "#ebe3cd" }] }, { elementType: "labels.text.fill", stylers: [{ color: "#523735" }], }, { elementType: "labels.text.stroke", stylers: [{ color: "#f5f1e6" }], }, { featureType: "administrative", elementType: "geometry.stroke", stylers: [{ color: "#c9b2a6" }], }, { featureType: "administrative.land_parcel", elementType: "geometry.stroke", stylers: [{ color: "#dcd2be" }], }, { featureType: "administrative.land_parcel", elementType: "labels.text.fill", stylers: [{ color: "#ae9e90" }], }, { featureType: "landscape.natural", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "poi", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "poi", elementType: "labels.text.fill", stylers: [{ color: "#93817c" }], }, { featureType: "poi.park", elementType: "geometry.fill", stylers: [{ color: "#a5b076" }], }, { featureType: "poi.park", elementType: "labels.text.fill", stylers: [{ color: "#447530" }], }, { featureType: "road", elementType: "geometry", stylers: [{ color: "#f5f1e6" }], }, { featureType: "road.arterial", elementType: "geometry", stylers: [{ color: "#fdfcf8" }], }, { featureType: "road.highway", elementType: "geometry", stylers: [{ color: "#f8c967" }], }, { featureType: "road.highway", elementType: "geometry.stroke", stylers: [{ color: "#e9bc62" }], }, { featureType: "road.highway.controlled_access", elementType: "geometry", stylers: [{ color: "#e98d58" }], }, { featureType: "road.highway.controlled_access", elementType: "geometry.stroke", stylers: [{ color: "#db8555" }], }, { featureType: "road.local", elementType: "labels.text.fill", stylers: [{ color: "#806b63" }], }, { featureType: "transit.line", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "transit.line", elementType: "labels.text.fill", stylers: [{ color: "#8f7d77" }], }, { featureType: "transit.line", elementType: "labels.text.stroke", stylers: [{ color: "#ebe3cd" }], }, { featureType: "transit.station", elementType: "geometry", stylers: [{ color: "#dfd2ae" }], }, { featureType: "water", elementType: "geometry.fill", stylers: [{ color: "#b9d3c2" }], }, { featureType: "water", elementType: "labels.text.fill", stylers: [{ color: "#92998d" }], }, ], { name: "Styled Map" } ); // Create a map object, and include the MapTypeId to add // to the map type control. const map = new google.maps.Map(document.getElementById("map"), { center: { lat: 55.647, lng: 37.581 }, zoom: 11, mapTypeControlOptions: { mapTypeIds: [ "roadmap", "satellite", "hybrid", "terrain", "styled_map", ], }, }); //Associate the styled map with the MapTypeId and set it to display. map.mapTypes.set("styled_map", styledMapType); map.setMapTypeId("styled_map"); } </script> </head> <body> <div id="map"></div> <!-- Async script executes immediately and must be after any DOM elements used in callback. --> <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap&libraries=&v=weekly" async ></script> </body> </html>
Create a starter application from sample
A skeleton starter application using TypeScript, Webpack, and Babel can be generated from this sample using one of the methods below.
Run Locally
Node.js is required to run this sample locally. Follow these instructions to install Node.js and NPM.
npx @googlemaps/js-samples init maptype-styled-simple DESTINATION_FOLDER
Run in Google Cloud Shell
Google Cloud Shell is an interactive shell environment for Google Cloud Platform that makes it easy for you to learn and experiment with GCP and manage your projects and resources from your web browser.
Run in Cloud Shell