Skip to content

Commit

Permalink
Add regression test for mapbox/mapbox-gl-native#8460
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Jun 16, 2017
1 parent 24938a6 commit a222ef1
Show file tree
Hide file tree
Showing 2 changed files with 74 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,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]
]
}
}
}
]
}

0 comments on commit a222ef1

Please sign in to comment.