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.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
z-order:
filter: { $zoom: {min: 14} }
draw:
flatlines:
# let roads sort themselves past zoom 14
order: function() { return feature.sort_rank; }
# but give them all the same outline
outline:
order: 352 # magic number
bridges-tunnels:
filter: { any: [is_bridge: true, is_tunnel: true] }
draw:
flatlines:
outline:
# except bridges and tunnels, their outlines should also self-sort
order: function() { return feature.sort_rank; }
was supposed to handle this but it works only sometimes.
The text was updated successfully, but these errors were encountered:
Expected: bridge will be marked by rendering of road outline of bridge above road below bridge
What happens: roads are rendered like on junction
layers are used correctly in OSM data
https://mapzen.com/tangram/play/?#18.25000/50.08117/19.89062
It seems that
was supposed to handle this but it works only sometimes.
The text was updated successfully, but these errors were encountered: