Open GoogleCodeExporter opened 8 years ago
RESOLVED:
For some reason, when the web page was launched from the Apache server, the
"window.google.loader" object was not being created. I added the following
code to my init() function, and it works now:
function init()
if (! ('loader' in window.google))
{
window.google.loader={};
window.google.loader.KeyVerified=true;
window.google.loader.ApiKey="abcdefghijklmnopqrstuvwxyz";
window.google.loader.LoadFailure=false;
}
google.earth.createInstance("map3d",initCB, failureCB {databae: xxx} );
}
This issue can be CLOSED.
Original comment by ksandber...@hotmail.com
on 21 Aug 2013 at 4:45
Original issue reported on code.google.com by
ksandber...@hotmail.com
on 20 Aug 2013 at 7:51