Skip to content

Commit

Permalink
Add regression test for mapbox/mapbox-gl-native#8871
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed May 11, 2017
1 parent 3261d29 commit 8b085a2
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"version": 8,
"metadata": {
"test": {
"width": 64,
"height": 64,
"operations": [
[
"wait"
],
[
"addLayer",
{
"id": "circle2",
"type": "circle",
"source": "geojson",
"paint": {
"circle-color": "red",
"circle-radius": 5
}
}
],
[
"wait"
]
]
}
},
"sources": {
"geojson": {
"type": "geojson",
"data": {
"type": "Point",
"coordinates": [
0,
0
]
}
}
},
"layers": [
{
"id": "circle",
"type": "circle",
"source": "geojson",
"paint": {
"circle-color": "blue",
"circle-radius": 10
}
}
]
}

0 comments on commit 8b085a2

Please sign in to comment.