gpt4 book ai didi

google-maps - 如何禁用谷歌地图卫星 View ?

转载 作者:行者123 更新时间:2023-12-03 05:11:45 26 4
gpt4 key购买 nike

我正在开发 Google Maps Javascript API V 3。

一切正常,但我想禁用右上角区域中带有“卫星”按钮的“ map ”按钮。

我该怎么做?

最佳答案

var myOptions = {
zoom: 2,
center: **Your LatLng object**,
mapTypeControlOptions: {
mapTypeIds: [google.maps.MapTypeId.ROADMAP, google.maps.MapTypeId.HYBRID]
}, // here´s the array of controls
disableDefaultUI: true, // a way to quickly hide all controls
mapTypeControl: true,
scaleControl: true,
zoomControl: true,
zoomControlOptions: {
style: google.maps.ZoomControlStyle.LARGE
},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); // displays in <article id="map_canvas"></article>
//map.mapTypeControl = false; // OPTIONAL: hides the map control

关于google-maps - 如何禁用谷歌地图卫星 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5976854/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com