Skip to content

Instantly share code, notes, and snippets.

@mokolodi1
Forked from Plou/googlemap.js
Last active April 20, 2022 06:12
Show Gist options
  • Save mokolodi1/34bc7bf8182e89bb93cb9a8b2855b9fa to your computer and use it in GitHub Desktop.
Save mokolodi1/34bc7bf8182e89bb93cb9a8b2855b9fa to your computer and use it in GitHub Desktop.
Hide "points of interest" in google maps
// Reference: https://developers.google.com/maps/documentation/javascript/style-reference
let map = new google.maps.Map(document.getElementById('map-canvas'), {
disableDefaultUI: true,
styles: [
{
featureType: "poi",
elementType: "labels",
stylers: [
{ visibility: "off" }
]
}
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment