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 b
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 }}); });