Steve Bennett

Results 226 comments of Steve Bennett

Is there any way to use the voicing package? It doesn't seem to be published on NPM. Using the source directly is a bit tricky as my project is JS....

If I understand this right, then #4268 was implemented, you could achieve this by setting half the width and height as the "global padding" options. The current solution is definitely...

See also the long discussion in #6076. There definitely seems to be a mismatch between, on the one hand, the events, status functions and documentation, and on the other, what...

Just want to add a very concrete demonstration that `load` does not do what the docs say it does. Specifically: >Fired immediately after all necessary resources have been downloaded and...

@gmaclennan Thanks for your suggestions above. I found I had to modify onMapTilesLoaded a bit more to get it to work for me: ``` map.onMapTilesLoaded = function(sourceId, cb) { process.nextTick(()...

I ran into another issue today. `map.on("load")` never fires, nor is `map.loaded()` true for a map with no style.

Today I found that @gmaclennan's first version (onMapStyleLoaded) sometimes doesn't work. It fires twice, with `isStyleLoaded()` returning false, but then the `styledata` doesn't fire the next time. I'm surprised this...

I have just run into this problem *again*, in Mapbox GL JS 3.0.1, with mapbox-gl-draw. An intermittent bug, where my code worked fine for a while...until it suddenly doesn't. You...

Huh, I have just realised that an easy workaround in my case is to simply do add this: `map.fire("load");`