我正在使用谷歌地图API V3。 我在地图上添加了一些带有infowindows的标记。 双击(缩放)后选择我的信息窗口的内容。 这不是用户友好...
让我们举个例子: https://developers.google.com/maps/documentation/javascript/examples/infowindow-simple?hl=fr
你知道如何避免在infowindow中选择该文本吗? 感谢。
答案 0 :(得分:3)
我终于找到了答案:
(function($){
$.fn.disableSelection = function() {
return this
.attr('unselectable', 'on')
.css('user-select', 'none')
.css('-moz-user-select', 'none')
.css('-khtml-user-select', 'none')
.css('-webkit-user-select', 'none')
.on('selectstart', false)
.on('contextmenu', false)
.on('keydown', false)
.on('mousedown', false);
};
})(jQuery);
然后,对于我的gmaps div:
$(document).ready(function () {
$('#googleMaps').disableSelection();
}