diff --git a/test/integration/render-tests/regressions/mapbox-gl-js#2929/expected.png b/test/integration/render-tests/regressions/mapbox-gl-js#2929/expected.png new file mode 100644 index 00000000000..243cf557ff0 Binary files /dev/null and b/test/integration/render-tests/regressions/mapbox-gl-js#2929/expected.png differ diff --git a/test/integration/render-tests/regressions/mapbox-gl-js#2929/style.json b/test/integration/render-tests/regressions/mapbox-gl-js#2929/style.json new file mode 100644 index 00000000000..e98853160e7 --- /dev/null +++ b/test/integration/render-tests/regressions/mapbox-gl-js#2929/style.json @@ -0,0 +1,60 @@ +{ + "version": 8, + "metadata": { + "test": { + "width": 64, + "height": 64 + } + }, + "center": [ + 0, + 0 + ], + "zoom": 4.5, + "sources": { + "geojson": { + "type": "geojson", + "data": { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [0, 0] + } + } + } + }, + "layers": [ + { + "id": "line1", + "type": "circle", + "source": "geojson", + "minzoom": 4.3, + "paint": { + "circle-color": "red", + "circle-radius": 4, + "circle-translate": [-5, -5] + } + }, + { + "id": "line2", + "type": "circle", + "source": "geojson", + "minzoom": 4.5, + "paint": { + "circle-color": "green", + "circle-radius": 4 + } + }, + { + "id": "line3", + "type": "circle", + "source": "geojson", + "minzoom": 4.7, + "paint": { + "circle-color": "blue", + "circle-radius": 4, + "circle-translate": [5, 5] + } + } + ] +} \ No newline at end of file