jQuery Gmap3:成功回调在哪里?

时间:2013-02-06 14:55:03

标签: jquery-gmap3

我想知道加载我的gmap的时间。我没有在文档和网络上看到任何回调方法。

我正在使用此插件:http://gmap3.net/en/catalog/

任何提示? THX

此致

2 个答案:

答案 0 :(得分:1)

我认为您必须还原并使用Google地图本机功能。在这个问题中概述了答案的问题:How can I check whether Google Maps is fully loaded?

看起来这个代码片段给出了最佳答案:

google.maps.event.addListenerOnce(map, 'idle', function(){
    // do something only the first time the map is loaded
});

答案 1 :(得分:0)

它似乎没有记录,但地图对象上有一个回调属性

  $('#map_canvas').gmap3(
  {
    map: {
      options: {
        zoom: 9,
        center: [view.lat, view.lng]
      },
      callback: function (e) {
         alert("loaded");
      }
    }
  });