Last active
March 10, 2021 19:27
-
-
Save dtbaker/c838fca76a058c4f307f86d0576f086a to your computer and use it in GitHub Desktop.
Hide street numbers from Google Maps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
#map { | |
width: 750px; | |
height: 500px; | |
} | |
</style> | |
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script> | |
<script type="text/javascript"> | |
// When the window has finished loading create our google map below | |
google.maps.event.addDomListener(window, 'load', init); | |
function init() { | |
// Basic options for a simple Google Map | |
// For more options see: https://developers.google.com/maps/documentation/javascript/reference#MapOptions | |
var mapOptions = { | |
// How zoomed in you want the map to start at (always required) | |
zoom: 11, | |
// The latitude and longitude to center the map (always required) | |
center: new google.maps.LatLng(40.6700, -73.9400), // New York | |
// How you would like to style the map. | |
// This is where you would paste any style found on Snazzy Maps. | |
styles: [ | |
{ | |
"featureType": "administrative.land_parcel", | |
"stylers": [ | |
{ | |
"visibility": "off" | |
} | |
] | |
}, | |
{ | |
"featureType": "landscape", | |
"elementType": "labels.text", | |
"stylers": [ | |
{ | |
"visibility": "off" | |
} | |
] | |
} | |
] | |
}; | |
// Get the HTML DOM element that will contain your map | |
// We are using a div with id="map" seen below in the <body> | |
var mapElement = document.getElementById('map'); | |
// Create the Google Map using our element and options defined above | |
var map = new google.maps.Map(mapElement, mapOptions); | |
// Let's also add a marker while we're at it | |
var marker = new google.maps.Marker({ | |
position: new google.maps.LatLng(40.6700, -73.9400), | |
map: map, | |
title: 'Snazzy!' | |
}); | |
} | |
</script> | |
<div id="map"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment