> I need to pass certain parameter dynamically to loadMaps callback function, > both at 'url' and 'google.load' location (as below) > > https://www.google.com/jsapi?key=XYZ&callback=loadMaps(<parameter>); ... > function loadMaps() { ...
Try https://www.google.com/jsapi?key=XYZ&callback=loadMapsStartup; function loadMapsStartup() { loadMaps(<parameter>); } function loadMaps(something) { ... -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
