According to https://www.mapbox.com/mapbox-gl-js/style-spec/ a layer with type='fill' draws "a filled polygon with an optional stroked border".
type: 'fill',
paint: {
'fill-color': 'orange',
'fill-opacity': 0.5,
'fill-outline-color': 'red'
}
The stroke around the polygon is drawn, but very thin, so it is hardly noticable.
Question: Is there a way to draw a stronger, thicker, stroke line (stroke) around the polygon?
I also found https://github.com/mapbox/mapbox-gl-js/issues/4087 which argues, that the settings are confusing as they are now. I agree with that.