My portal is not loading in IE browser, while trying to google maps API It is a SPA application developed on Angular 5.
Tried below solution too.
Google Maps compatibility IE11 not working because of polyfills.js
My portal is not loading in IE browser, while trying to google maps API It is a SPA application developed on Angular 5.
Tried below solution too.
Google Maps compatibility IE11 not working because of polyfills.js
I had the same issue weeks back, possible solutions
1) You have the exact dependency as it was in package json and if you are having yarn.lock make sure you run yarn install instead of npm install.
2) Uncomment the code in polyfills.js
3) Your map script should be loaded after your main script
4) If all this doesn’t work then comment on index html the google api script and add the JavaScript code to add it or append on the dom in one of your component constructor. Copied from Stack Overflow: https://stackoverflow.com/a/57608295/3012588
5) Finally check your view compatible settings in IE.
I ensured these points now maps working fine on IE and Chrome.