Google Map Api选项 - 未注册

时间:2012-10-11 15:43:36

标签: jquery google-maps google-maps-api-3

我已尝试根据此页面向我的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/

我在哪里错了?

1 个答案:

答案 0 :(得分:1)

disable false是默认行为。尝试

disableDoubleClickZoom:true,
disableDefaultUI:true,
keyboardShortcuts:true,

请参阅the documentation

中的示例