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
mapbox-gl-js version: 0.45.0 browser: IE 11
Official examples:
The examples work, but throw an error in IE 11 for web_worker_transfer.js.
web_worker_transfer.js
Invalid operand to 'instanceof': Function expected
export function deserialize(input: Serialized): mixed { if (input === null || input === undefined || typeof input === 'boolean' || typeof input === 'number' || typeof input === 'string' || input instanceof Boolean || input instanceof Number || input instanceof String || input instanceof Date || input instanceof RegExp || input instanceof ArrayBuffer || ArrayBuffer.isView(input) || input instanceof ImageData) { return input; }
Does IE 11 require a core-js polyfill to work correctly?
The text was updated successfully, but these errors were encountered:
I think it's because ArrayBuffer is not fully supported in IE.
Sorry, something went wrong.
Closing because IE 11 is no longer supported. Thanks for reporting this.
No branches or pull requests
mapbox-gl-js version: 0.45.0
browser: IE 11
Link to Demonstration
Official examples:
The examples work, but throw an error in IE 11 for
web_worker_transfer.js
.Does IE 11 require a core-js polyfill to work correctly?
The text was updated successfully, but these errors were encountered: