Skip to content

Commit

Permalink
some clarifying comments
Browse files Browse the repository at this point in the history
  • Loading branch information
saranrapjs committed Mar 23, 2017
1 parent b7a97e5 commit a24caa0
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion scene.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,25 @@
},
layers: {
roads: {
filter: { not: [{ kind: "rail" }, { kind_detail: "trunk" }, { kind_detail: "trunk_link" }] },
filter: {
// here we extend the base "roads" filtering rules, to capture some
// road types that are not explicitly targeted elsewhere
not: [
{ kind: "rail" },
{ kind_detail: "trunk" },
{ kind_detail: "trunk_link" }
]
},
highway: {
visible: false
},
// one-way directional arrows must go as well!
arrows: {
filter: {
none: [{kind:"highway"},{kind:"motorway"}]
}
},
// exit numbers
'highway-exit': {
visible: false
},
Expand Down

0 comments on commit a24caa0

Please sign in to comment.