当我向谷歌地图添加自定义控件时,我想通过jQuery插件添加工具提示。
在DOM中加载控件时是否有可用的回调?
添加控件的代码可以在这里找到: https://developers.google.com/maps/documentation/javascript/examples/control-custom
编辑:
我从2011年发现了一个类似的问题:
Is there an event for when google maps controls are loaded?
这有什么解决方案吗?
答案 0 :(得分:1)
我通过添加空闲侦听器(一次)来解决问题:
google.maps.event.addListenerOnce(this.gmap, 'idle', _.bind(function() {
this.activateTooltip();
}, this));
它等待DOM加载包含自定义控件。