-
-
Notifications
You must be signed in to change notification settings - Fork 336
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Line pattern mixed render test (#2943)
- Loading branch information
1 parent
b29c996
commit ddaa9b2
Showing
2 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
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
159
metrics/integration/render-tests/line-pattern/mixed/style.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} | ||
] | ||
} |