Skip to content

Commit

Permalink
Update fill-pattern feature state test (#8927)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juha Alanen authored and mourner committed Nov 6, 2019
1 parent 0013aad commit 063398e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 29 deletions.
3 changes: 2 additions & 1 deletion test/ignores.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
"render-tests/symbol-sort-key/text-ignore-placement": "skip - text drawn over icons",
"render-tests/text-variable-anchor/remember-last-placement": "skip - not sure this is correct behavior",
"render-tests/icon-image/icon-sdf-non-sdf-one-layer": "skip - render sdf icon and normal icon in one layer",
"render-tests/text-variable-anchor/all-anchors-tile-map-mode": "skip - mapbox-gl-js does not need to render tiles"
"render-tests/text-variable-anchor/all-anchors-tile-map-mode": "skip - mapbox-gl-js does not need to render tiles",
"render-tests/fill-pattern/update-feature-state": "https://github.com/mapbox/mapbox-gl-js/issues/7207"
}
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
Expand Up @@ -27,34 +27,42 @@
"geojson": {
"type": "geojson",
"data": {
"type": "Polygon",
"id": 1,
"properties": {
"pattern": "generic_icon"
},
"coordinates": [
[
[
-10,
-10
],
[
-10,
10
],
[
10,
10
],
[
10,
-10
],
[
-10,
-10
]
]
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1,
"properties": {
"pattern": "generic_icon"
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-10,
-10
],
[
-10,
10
],
[
10,
10
],
[
10,
-10
],
[
-10,
-10
]
]
]
}
}
]
}
}
Expand Down

0 comments on commit 063398e

Please sign in to comment.