admin管理员组

文章数量:1349680

There is an option on Google Maps disableDefaultUI set to false before loading google Maps.

function initMap(){ 
var mapVar = new google.maps.Map(document.getElementById('map'), {
    zoom: 4,
    center: {lat: -33, lng: 151},
    disableDefaultUI: true
  });
  }

There is an option on Google Maps disableDefaultUI set to false before loading google Maps.

function initMap(){ 
var mapVar = new google.maps.Map(document.getElementById('map'), {
    zoom: 4,
    center: {lat: -33, lng: 151},
    disableDefaultUI: true
  });
  }

Is there any way to hide all the controls using my mapVar variable once the map is rendered?

Removing all controls from a google map - This question is about hiding the map on load.

Share Improve this question edited Feb 26, 2018 at 21:38 kishorekumaru asked Feb 26, 2018 at 2:29 kishorekumarukishorekumaru 1,5782 gold badges22 silver badges34 bronze badges 4
  • Why not just use CSS to target the map ponents (with maximum specificity)? – Obsidian Age Commented Feb 26, 2018 at 2:30
  • Possible duplicate of Removing all controls from a google map – Obsidian Age Commented Feb 26, 2018 at 2:31
  • @ObsidianAge that seems like a very tedious way to do it versus what the API says to do, but it could work – Sterling Archer Commented Feb 26, 2018 at 2:32
  • @ObsidianAge I was referring the documentation, the API has control on each property. I was looking for something like mapVar.disableDefaultUI = true. Unfortunately i don't find anything as such – kishorekumaru Commented Feb 26, 2018 at 2:37
Add a ment  | 

1 Answer 1

Reset to default 6

There is a method to hide controls dynamically.

mapVar.setOptions({disableDefaultUI:true});

In case if we want to hide a single option mapVar.setOptions({zoomControl:false});

本文标签: javascriptIs there a way to showhide all the UI controls from google map after initialisedStack Overflow