Disable double left click on google map

前端 未结 6 2168
清酒与你
清酒与你 2021-02-03 22:14

May I know how can I disable double click on google map so that the info window will not close when I double click on google map? Can it be done through google map api?

6条回答
  •  轮回少年
    2021-02-03 23:08

    You can disable double-click zoom on Google Maps by setting the following google.maps.MapOptions object property:

    disableDoubleClickZoom: true
    

    Sample code:

    var mapOptions = {
        scrollwheel: false,
        disableDoubleClickZoom: true, // <---
        panControl: false,
        streetViewControl: false,
        center: defaultMapCenter
    };
    

提交回复
热议问题