Ryan Hamley
Ryan Hamley
The issue is the use of Object.assign which is interesting because the library uses a Babel plugin that is supposed to replace Object.assign with a polyfill. It seems as though...
@bangrrrt You can include a [polyfill for Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill). As long as it is included before the GL Directions script, everything should work fine. Here's [a demo I made that works...
We had a PR https://github.com/mapbox/mapbox-gl-js/pull/9427 submitted awhile back for `Marker#setColor` but it was closed because it wasn't flexible enough to accommodate any arbitrary marker element. It gets a bit tricky...
I'm having trouble recreating this error. Does it happen every time? How long does it usually take to create the error? I'm also using Safari on iOS 12.3.1.
Hi @hulsizer and @nbertrand-bh thanks for your patience. ~I took a look at this and my initial diagnosis is that this may be related to a [known Safari bug](https://bugs.webkit.org/show_bug.cgi?id=174980#c2) in...
@Diegodlt Can you share a minimal example of what you're seeing? I can only partially replicate it when the line is really far offscreen and no longer visible and the...
Can you provide a code example using a site like JSFiddle or CodePen?
This example is great @Diegodlt Thanks so much for providing that
@CodeAmend All the publicly available events are listed in our docs. You can view all the map events starting [here](https://docs.mapbox.com/mapbox-gl-js/api/#map.event:resize) for example.
We'll need to be careful that any changes in handling 204 errors don't exacerbate the problem of overdrawing in sparse tile sets as in https://github.com/mapbox/mapbox-gl-js/issues/6768. This issue was partially fixed...