Skip to content

Commit

Permalink
Line pattern mixed render test (#2943)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcristici authored Oct 16, 2024
1 parent b29c996 commit ddaa9b2
Show file tree
Hide file tree
Showing 2 changed files with 159 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.
159 changes: 159 additions & 0 deletions metrics/integration/render-tests/line-pattern/mixed/style.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
{
"version": 8,
"metadata": {
"test": {
"width": 512,
"height": 512,
"ignoreProbing": true
}
},
"zoom": 2,
"sprite": "local://sprites/emerald",
"sources": {
"a": {
"type": "geojson",
"data": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"class": "trunk"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
50,
-30
],
[
-50,
-30
]
]
}
},
{
"type": "Feature",
"properties": {
"class": "path"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
-50,
-20
],
[
50,
-20
]
]
}
},
{
"type": "Feature",
"properties": {
"class": "street"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
-50,
-10
],
[
50,
-10
]
]
}
},
{
"type": "Feature",
"properties": {
"class": "trunk"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
50,
10
],
[
-50,
10
]
]
}
},
{
"type": "Feature",
"properties": {
"class": "path"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
-50,
20
],
[
50,
20
]
]
}
},
{
"type": "Feature",
"properties": {
"class": "street"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
-50,
30
],
[
50,
30
]
]
}
}
]
}
}
},
"layers": [
{
"id": "background",
"type": "background",
"paint": {
"background-color": "white"
}
},
{
"id": "road",
"type": "line",
"source": "a",
"paint": {
"line-width": 10,
"line-pattern": [
"match", ["string", ["get", "class"]],
"street", "generic_icon",
"path", "generic_metro",
"school_icon"
]
}
}
]
}

0 comments on commit ddaa9b2

Please sign in to comment.