javascript 隐藏Google地图控件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 隐藏Google地图控件相关的知识,希望对你有一定的参考价值。


https://developers.google.com/maps/documentation/javascript/controls


var myOptions = {
	zoom: 13,  // create a custom field to let the user override this value
	scrollwheel: false, // disable scrollwheel zoom, this should always be the default  >_<
	center: latlng,
	styles:
	[ { ... } ],
	zoomControl: false,  // hide zoom controls
	mapTypeControl: false, // hide map controls
}


Additional control boolean options:

{
  zoomControl: boolean,
  mapTypeControl: boolean,
  scaleControl: boolean,
  streetViewControl: boolean,
  rotateControl: boolean,
  fullscreenControl: boolean
}


To disable the whole UI:

disableDefaultUI: true



以上是关于javascript 隐藏Google地图控件的主要内容,如果未能解决你的问题,请参考以下文章

缩放控制和街景没有显示在我的 Google 地图上?

隐藏谷歌地图平面图

在 Google 地图上重新排序控件

Google Maps Android Studio - 如何禁用地图控件?

如何隐藏或显示 Google 地图图层?

html Google地图自定义缩放控件