Google映射自定义控件回调

时间:2015-06-21 13:41:39

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

当我向谷歌地图添加自定义控件时,我想通过jQuery插件添加工具提示。
在DOM中加载控件时是否有可用的回调?

添加控件的代码可以在这里找到: https://developers.google.com/maps/documentation/javascript/examples/control-custom

编辑:
我从2011年发现了一个类似的问题:
Is there an event for when google maps controls are loaded?

这有什么解决方案吗?

1 个答案:

答案 0 :(得分:1)

我通过添加空闲侦听器(一次)来解决问题:

google.maps.event.addListenerOnce(this.gmap, 'idle', _.bind(function() { 
    this.activateTooltip(); 
}, this)); 

它等待DOM加载包含自定义控件。