vote up 1 vote down star

I cannot import the Google Map JS file in page with HTTPS protocol in IE8 (all other browsers work fine).

Does anyone know how to solve this problem?

flag

51% accept rate
Are you using the AJAX API Loader or the old way? – Mauricio Scheffer Apr 23 at 3:05
I use the sample code from Google API Playground to test it. But it still doesn't work. code.google.com/apis/ajax/… – Billy Apr 23 at 3:20

1 Answer

vote up 1 vote down

I know that Google Maps API isn't available over a secure connection, not sure what IE8 will do with it:

http://code.google.com/support/bin/answer.py?answer=65301&topic=10946

I would expect a warning about unsecured content. How does IE8 fail?

Based on :

http://stackoverflow.com/questions/780129/page-with-https-protocol-cannot-import-google-map-js-in-ie8 http://stackoverflow.com/questions/776639/problem-of-import-js-file-in-https-page-in-ie8

Seems like IE8 is going to silently load the page and just ignore the unsecured content (hence the object unexpected error). It also seems like IE7 mode should work (but show a secured/unsecured warning), are you sure you got the meta tag right? It should look like this:

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
link|flag
IE6, IE7, FF, Chrome all work fine. IE8 has the object expected error. – Billy Apr 23 at 3:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.