ahmetakyuz / ext-js-google-earth-api

Automatically exported from code.google.com/p/ext-js-google-earth-api
0 stars 0 forks source link

GE-API panel doesn't work properly in Explorer browser #8

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. I think fetching some KML files creates this bug.
2. In Explorer instead of GE-API panel you see "ATL 10.00" message and also 
sometimes it writes that the GE won't work.
3. Firefox and Chrome show the website properly.

What is the expected output? What do you see instead?
I expect to see GE-API panel that shows the globe and works. Instead you see 
gray colour on all the panel and in the centre it writes "ATL 10.00". In some 
internet blogs I saw people having "ATL 8.0" text.

What version of the product are you using? On what operating system?
Explorers 8 and 9 on Windows. Checked on couple PCs.

Please provide any additional information below.
I changed some of the initial code that you supplied and all worked fine in 
Explorer. I think I added additional KML file that crashes everything, but I am 
not entirely sure which file and why it does it.

Original issue reported on code.google.com by mger...@gmail.com on 19 Nov 2011 at 1:41

Attachments:

GoogleCodeExporter commented 8 years ago
Even the latest browser (IE9) released by Microsoft does not support HTML5 
100%. The Google Earth plugin that runs fine on Chrome browser, may not run on 
IE9 if you have not specified xlmns attribute in html tag and Doctype 
declaration for xhtml on the top. 

If you're getting ATL 10.00 with a white background when using HTML5, you need 
to do this in order for it to work on IE9:
Replace html5 doctype with this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">

Namaste !

Original comment by rajivsin...@gmail.com on 28 Mar 2012 at 5:13