如何在谷歌地图加载所有需要的DOM元素后运行一个函数?
我写了一些jquery来给控件一个新的位置, 现在我需要运行此功能的最佳点。
尽快,控件在DOM内部之后。
_options.map = new google.maps.Map( document.getElementById( $this.attr('id') ), mapOptions);
google.maps.event.addListenerOnce(_options.map, 'idle', function(){
Query('.gmnoprint:eq(2)').css('left','14%');
});
答案 0 :(得分:1)
试试这个:
google.maps.event.addListenerOnce(map, 'idle', function(){
// do something only the first time the map is loaded
});