Skip to content

Commit

Permalink
Add regression test for mapbox/mapbox-gl-native#9792
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Aug 17, 2017
1 parent 9781e79 commit e4b78f2
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,56 @@
{
"version": 8,
"metadata": {
"test": {
"width": 64,
"height": 64
}
},
"sources": {
"geojson": {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"icon": "marker"
},
"geometry": {
"type": "Point",
"coordinates": [
-10,
0
]
}
},
{
"type": "Feature",
"properties": {
"icon": "nonesuch"
},
"geometry": {
"type": "Point",
"coordinates": [
10,
0
]
}
}
]
}
}
},
"sprite": "local://sprites/light",
"layers": [
{
"id": "symbol",
"type": "symbol",
"source": "geojson",
"layout": {
"icon-image": "{icon}"
}
}
]
}

0 comments on commit e4b78f2

Please sign in to comment.