Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

lazy load google maps api v3 jQuery callback

I do lazy loading of the google maps api v3 javascript

The documentation says about putting as a callback parameter in the url the name of the function, which will be executed, when the script has loaded.

 $(document).ready(function(){
   var s = document.createElement("script");
   s.type = "text/javascript";
   s.src  = "http://maps.google.com/maps/api/js?v=3&sensor=true&callback=gmap_draw";
   $("head").append(s);
 });

So I must define the gmap_draw() function.

When I enclose this function in the domready block, it is not visible.

Any workarounds of this issue ? (except putting the function out of the domready block)

like image 517
astropanic Avatar asked Nov 05 '10 00:11

astropanic


2 Answers

Another option is to use Google Loader:

$.getScript('https://www.google.com/jsapi', function()
{
    google.load('maps', '3', { other_params: 'sensor=false', callback: function()
    {
        // Callback code here
    }});
});
like image 120
Jonathan Avatar answered Nov 09 '22 18:11

Jonathan


Because the callback must be global, you could make one by accessing window from within the ready handler.

$(document).ready(function(){
   var s = document.createElement("script");
   s.type = "text/javascript";
   s.src  = "http://maps.google.com/maps/api/js?v=3&sensor=true&callback=gmap_draw";
   window.gmap_draw = function(){
       alert ("Callback code here");
   };
   $("head").append(s);  
});
like image 30
Chris Laplante Avatar answered Nov 09 '22 16:11

Chris Laplante