mm2000
mm2000

Reputation: 23

Google Map not displaying at all in IE10

The current webpage isn't showing the gmap at all under IE10 but all the other browsers are able to display it properly. Can someone guide me through a possible solution?

I've tried the META http-equiv=X-UA-Compatible content=IE=9 and META http-equiv=X-UA-Compatible content=IE=edge

without success! I'm currently using drupal 7 for the website and a gmap module.

Thanks for the replies

Upvotes: 1

Views: 2080

Answers (1)

Ashwin Parmar
Ashwin Parmar

Reputation: 3045

I have identify your error why it is giving this error it is because You have set this meta tag <meta http-equiv="X-UA-Compatible" content="IE=8">

As per IE10 Browser Standard mode and Other Browser version IE8 Standard which is not support the Console's Following method

Console.log();
Console.info();
Console.warn();

But, If you can set the IE mode to 9 it will be work.

In IE10 Version there is 4 different methods are available in which Console.dir() is used instead of above 3.

In your Javascript file give this error:

"SCRIPT438: Object doesn't support property or method 'warn' Bmain,adsense,geometry,zombie.js, line 70 character 35".

In that case you cannot change the javascript because it is load from the Google CDN.

So, possible you can add the following to your HTML will help you to change the Document Standard Mode to IE=9. <meta http-equiv="X-UA-Compatible" content="IE=8">

Reff: http://msdn.microsoft.com/en-us/library/ie/jj819729(v=vs.85).aspx

Upvotes: 0

Related Questions