mapbox / mapbox-studio-classic

https://www.mapbox.com/mapbox-studio/
BSD 3-Clause "New" or "Revised" License
1.14k stars 229 forks source link

Breaks in roads, corners and roundabouts. #1582

Closed 0XE4 closed 6 years ago

0XE4 commented 6 years ago

I am having the issue when exporting to a PNG. You can see 'breaks' or cracks along the roads, mostly on anything that isn't at a 90 degree angle.

Is this due to cartoCSS needing changes, or an issue with the renderer itself?

take

ajashton commented 6 years ago

It looks like you're using line-cap: butt - you'll want to use line-cap: square or line-cap: round to hide these cracks. It's not a bug, just the nature of that particular line-cap style. (butt is useful for some things, but not road networks.)

0XE4 commented 6 years ago

Thank you @ajashton