Skip to content

Commit 67ecd3f

Browse files
committed
Tune style to get closer to the original version -- more opaque cell colors and road outlines
1 parent b1171e6 commit 67ecd3f

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

web/src/RenderNeighbourhood.svelte

+10-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,16 @@
8080
filter={["==", ["get", "kind"], "cell"]}
8181
paint={{
8282
"fill-color": ["get", "color"],
83-
"fill-opacity": 0.3,
83+
"fill-opacity": 0.8,
84+
}}
85+
/>
86+
87+
<LineLayer
88+
{...layerId("interior-roads-outlines")}
89+
filter={["==", ["get", "kind"], "interior_road"]}
90+
paint={{
91+
"line-width": 12,
92+
"line-color": "black",
8493
}}
8594
/>
8695

web/src/common/zorder.ts

+1
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ const layerZorder = [
8282
"debug-filters",
8383

8484
"cells",
85+
"interior-roads-outlines",
8586
"interior-roads",
8687

8788
"compare-route",

0 commit comments

Comments
 (0)