Google Maps API GeoJSON Not Working With IE 11, But Works In Chrome
I have a google map that loads markers from a GeoJSON file that runs on localhost in Visual Studio 2013. It also runs in chrome (from an IIS server) but will not run in IE version
Solution 1:
Compatibility view in IE prevented the loading of the geoJSON file. I put
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
at the top of the page and it solved the issue.
Many thanks to geocodezip who pointed me in the right direction in the comments above.
Post a Comment for "Google Maps API GeoJSON Not Working With IE 11, But Works In Chrome"