-3

谷歌地图加载所有需要的 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%');
});
4

1 回答 1

1

尝试这个:

google.maps.event.addListenerOnce(map, 'idle', function(){
 // do something only the first time the map is loaded
});
于 2013-08-27T15:33:18.590 回答