Skip to content

Commit

Permalink
Ensure bicycle crossing are drawn at crossings with highway=service. Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Phyks committed Jul 22, 2021
1 parent 209fe1c commit 8531892
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Track width at z14 was smaller than in other zoom levels. See #411.
* Add a thin contour on buildings at mid zooms. See #411.
* Ensure bicycle crossing are drawn at crossings with highway=service. See #503.


## v0.6
Expand Down
2 changes: 1 addition & 1 deletion project.mml
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ Layer:
p.tags->'direction' AS direction
FROM planet_osm_point as p
JOIN planet_osm_line h
ON (st_intersects(p.way,h.way) and h.highway is not null and h.highway not in ('footway','cycleway','path','pedestrian','steps','service'))
ON (st_intersects(p.way,h.way) and h.highway is not null and h.highway not in ('footway','cycleway','path','pedestrian','steps'))
WHERE
(
(
Expand Down

0 comments on commit 8531892

Please sign in to comment.