最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - disable double click zoom in google maps while drawing - Stack Overflow

programmeradmin3浏览0评论

I want to draw a polyline on the maps. i am not using the Drawing lib from google maps api.. i have written my own..

problem: Before starting the line draw i disabled the double click zoom as below

map.setOptions({disableDoubleClickZoom: false });

double click event is added to line end. after this event i am enabled by calling the

map.setOptions({disableDoubleClickZoom: true });

but still the zoom is happening.

even if i put the stop event code in double click.

 mouseEvent.stop();

I want to draw a polyline on the maps. i am not using the Drawing lib from google maps api.. i have written my own..

problem: Before starting the line draw i disabled the double click zoom as below

map.setOptions({disableDoubleClickZoom: false });

double click event is added to line end. after this event i am enabled by calling the

map.setOptions({disableDoubleClickZoom: true });

but still the zoom is happening.

even if i put the stop event code in double click.

 mouseEvent.stop();
Share Improve this question asked Feb 13, 2014 at 7:14 chiranjeevigkchiranjeevigk 1,6662 gold badges24 silver badges45 bronze badges 4
  • 1 {disableDoubleClickZoom: false} will enable the double-click-zoom – Dr.Molle Commented Feb 13, 2014 at 7:36
  • after changing that the double click zoom is not working... before that both the line stop and zoom was happening.. now only line stop will happen.. but the zoom will not happen.. – chiranjeevigk Commented Feb 15, 2014 at 5:39
  • I had the same issue and pasted the setting into marker section instead of map section. After that it worked... – wenzul Commented Nov 5, 2014 at 19:53
  • Check this: stackoverflow./questions/11278409/… – giovannipds Commented May 30, 2016 at 14:40
Add a ment  | 

1 Answer 1

Reset to default 16

It should be the other way around:

To disable

map.setOptions({disableDoubleClickZoom: true });

To enable

map.setOptions({disableDoubleClickZoom: false });
发布评论

评论列表(0)

  1. 暂无评论