-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add regression test for mapbox/mapbox-gl-native#8460
- Loading branch information
1 parent
24938a6
commit a222ef1
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+447 Bytes
test/integration/render-tests/regressions/mapbox-gl-native#8460/expected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions
74
test/integration/render-tests/regressions/mapbox-gl-native#8460/style.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"version": 8, | ||
"metadata": { | ||
"test": { | ||
"width": 64, | ||
"height": 64 | ||
} | ||
}, | ||
"zoom": 0.999, | ||
"sources": { | ||
"a": { | ||
"type": "geojson", | ||
"data": { | ||
"type": "Feature", | ||
"properties": { | ||
"property": 0 | ||
}, | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
-5, | ||
0 | ||
] | ||
} | ||
} | ||
}, | ||
"b": { | ||
"type": "geojson", | ||
"data": { | ||
"type": "Feature", | ||
"properties": { | ||
"property": 0 | ||
}, | ||
"geometry": { | ||
"type": "Point", | ||
"coordinates": [ | ||
5, | ||
0 | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"layers": [ | ||
{ | ||
"id": "a", | ||
"type": "circle", | ||
"source": "a", | ||
"paint": { | ||
"circle-radius": { | ||
"property": "property", | ||
"stops": [ | ||
[{"zoom": 0.0, "value": 0}, 0], | ||
[{"zoom": 0.5, "value": 0}, 10] | ||
] | ||
} | ||
} | ||
}, | ||
{ | ||
"id": "b", | ||
"type": "circle", | ||
"source": "b", | ||
"paint": { | ||
"circle-radius": { | ||
"property": "property", | ||
"stops": [ | ||
[{"zoom": 0.5, "value": 0}, 0], | ||
[{"zoom": 1.5, "value": 0}, 10] | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |