diff --git a/test/integration/render-tests/fill-color/multipolygon/expected.png b/test/integration/render-tests/fill-color/multipolygon/expected.png new file mode 100644 index 00000000000..fa0c6d1ac73 Binary files /dev/null and b/test/integration/render-tests/fill-color/multipolygon/expected.png differ diff --git a/test/integration/render-tests/fill-color/multipolygon/style.json b/test/integration/render-tests/fill-color/multipolygon/style.json new file mode 100644 index 00000000000..0c8c3d86925 --- /dev/null +++ b/test/integration/render-tests/fill-color/multipolygon/style.json @@ -0,0 +1,48 @@ +{ + "version": 8, + "metadata": { + "test": { + "width": 64, + "height": 64 + } + }, + "sources": { + "test": { + "type": "geojson", + "data": { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-5, -5], + [-5, 5], + [ 5, 5], + [ 5, -5] + ] + ], + [ + [ + [ 0, 0], + [ 0, 10], + [10, 10], + [10, 0] + ] + ] + ] + } + } + } + }, + "layers": [ + { + "id": "test", + "type": "fill", + "source": "test", + "paint": { + "fill-color": "red" + } + } + ] + }