Lucas Wojciechowski
                                            Lucas Wojciechowski
                                        
                                    @mb12 Until this lands in master, you should be able to implement this functionality downstream by adding your own CSS rules for `mapboxgl-ctrl-*-center`.
We may want to consider using ES6 [getters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/get) / [setters](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/set) in leu of `getFoo` / `setFoo` methods.
It's a bit complex, but I've worked around this by defining a custom jest matcher ```ts expect.extend({ toBeOk(response: Response) { if (response.ok) { return { message: () => 'Ok', pass:...
Just in case anyone else runs into this issue, it is related to this upstream bug https://github.com/browserslist/browserslist/issues/374, and the minimal fix is to add `not android 4.4.3-4.4.4` to your browserslist...
One potential fix: https://github.com/mapbox/mapbox-gl-style-spec/issues/286
_From @jfirebaugh on December 23, 2016 16:36_ If we add these, we should remove `line-gap-width`.
_From @nickidlugash on January 3, 2017 1:16_ > If we add these, we should remove line-gap-width. @jfirebaugh @lucaswoj can you please elaborate on why we should do this?
_From @jfirebaugh on January 3, 2017 1:22_ Because it's equivalent functionality -- you can replace a pair of fill and casing layers with a single layer with both fill and...
_From @nickidlugash on January 3, 2017 1:55_ Ok, that makes sense. I misunderstood this ticket and thought we were just renaming `line-` to be `line-stroke`. > you can replace a...
@stevage Where are you seeing mention of `line-fill-*`? The proposal is to keep existing properties like `line-color` and add additional stroke properties like `line-stroke-color`. > Are there other systems that...