I am trying to load a google map with some specific parmeters. I understand the problem is most likely that the initMap function needs to be declared globally. However, I h
Not a best way but it fixed my problem.
Call initMap() function manually as a fallback if ever the callback function wont work.
jQuery(document).ready(function($) { initMap(); });
Hope this helps.