We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maps with tileXYZ layers that contain subdomains can not be opened in IE11
Browser Affected (use this site: https://www.whatsmybrowser.org/ for non expert users)
Browser Version Affected
Steps to reproduce
Expected Result
Current Result
It seems to be due to usage of of (2 times)
of
MapStore2/web/client/components/map/openlayers/plugins/TileProviderLayer.js
Line 35 in a1ff7d2
something like
if (opt.subdomains) { opt.subdomains.map( c => urls.push(template(url.replace("{s}", c), opt))); } else { ['a', 'b', 'c'].map( c => urls.push(template(url.replace("{s}", c), opt))); }
make the application work in IE11.
Check my temp work at: https://github.com/offtherailz/MapStore2/tree/fix_%232685
The text was updated successfully, but these errors were encountered:
Fix geosolutions-it#2685. Changed let of into map
1f844d9
Fix #2685. Removed for of statements (#2714)
956845f
abe7a6b
Fix geosolutions-it#2685. Removed for of statements (geosolutions-it#…
2f69479
…2714)
Fix #2685. Removed for of statements (#2714) (#2731)
7adbcf6
offtherailz
Successfully merging a pull request may close this issue.
Description
Maps with tileXYZ layers that contain subdomains can not be opened in IE11
In case of Bug (otherwise remove this paragraph)
Browser Affected
(use this site: https://www.whatsmybrowser.org/ for non expert users)
Browser Version Affected
Steps to reproduce
Expected Result
Current Result
Other useful information (optional):
It seems to be due to usage of
of
(2 times)MapStore2/web/client/components/map/openlayers/plugins/TileProviderLayer.js
Line 35 in a1ff7d2
not supported in IE 11
something like
make the application work in IE11.
Check my temp work at:
https://github.com/offtherailz/MapStore2/tree/fix_%232685
The text was updated successfully, but these errors were encountered: