我已尝试根据此页面向我的Google地图添加选项: https://developers.google.com/maps/documentation/javascript/reference#MapOptions
但是,只有draggle:false one才有效!您仍然可以双击,UI仍然存在。
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(-33.8688, 151.2195),
zoom: 13,
mapTypeId: google.maps.MapTypeId.ROADMAP,
draggable:false,
disableDoubleClickZoom:false,
disableDefaultUI:false,
keyboardShortcuts:false,
};
代码链接: http://jsfiddle.net/qcPgL/4/
我在哪里错了?
答案 0 :(得分:1)
disable false是默认行为。尝试
disableDoubleClickZoom:true,
disableDefaultUI:true,
keyboardShortcuts:true,
中的示例