Hi,
The map isn't loading in IE11, I think since the latest release, because IE can't handle the function() shorthand in JavaScript.
JS error message:
SCRIPT1003: ':' expected
terratype.renderer.js (391,25)
This is in turn this line:
getPosition(tag) {
It's solved by rewriting it to:
getPosition: function (tag) {
I can maybe find time to make a pull request out of this but it feels a bit overkill? :)
Hi,
The map isn't loading in IE11, I think since the latest release, because IE can't handle the function() shorthand in JavaScript.
JS error message:
This is in turn this line:
getPosition(tag) {It's solved by rewriting it to:
getPosition: function (tag) {I can maybe find time to make a pull request out of this but it feels a bit overkill? :)