mapbox / simplespec-to-gl-style

Converts GeoJSON styled with simplestyle-spec to a GL Style
ISC License
31 stars 6 forks source link

`type: fill` does not have stroke properties #12

Closed bsudekum closed 8 years ago

bsudekum commented 8 years ago

closes https://github.com/mapbox/simplespec-to-gl-style/issues/2

Because of this, we need to mutate type polygon and force it to be a linestring.

/cc @jfirebaugh for review

jfirebaugh commented 8 years ago

Don't mutate the GeoJSON type in place -- that will result in changing the GeoJSON data in the output.

bsudekum commented 8 years ago

@jfirebaugh Updated, no longer mutating.

jfirebaugh commented 8 years ago

:+1: