Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
some clarifying comments
- Loading branch information
Showing
with
11 additions
and
1 deletion.
-
+11
−1
scene.js
|
@@ -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 |
|
|
}, |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.