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
1 Answer
Reset to default 6There 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});
版权声明:本文标题:javascript - Is there a way to showhide all the UI controls from google map after initialised? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743865315a2552475.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论