I\'m working on a web site that is using the Google JavaScript Client Library to load some APIs that are exposed via Google Cloud Endpoints. The endpoints were developed in Pyth
I have had similar issues with loading Google APIs for the Google Earth plugin in IE 10 and 11. The only resolution we have found (Other than Google fixing this) is to force IE 10 to run in IE 9 mode. Every version of IE includes the rendering engines from the previous major versions. You can test this manualy by going into the developer tools in IE and set which IE rendering engine you want to use.
You can force IE to render in a specific mode by adding this meta tag in your html file:
It HAS to be the first meta tag in the HTML file, or it will be ignored by IE. This meta tag will be ignored by other browsers. This will however make your entire page render with the IE 9 engine so you do lose cpabilities present in IE 10 and 11. If you need IE 10 functionality this solution will not work for you. If IE 9 compatibility is part of your requirements, this may be a work around for this problem
This link has more info on the IE compatibility modes