diff --git a/CHANGELOG.md b/CHANGELOG.md index f42e6f218..e0c51516f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ _Breaking developer changes, which may affect downstream projects or sites that #### :sparkles: Usability & Accessibility * Show full relation label as hover-text in _membership editor_, disambiguate relations with duplicate labels by appending the relation id ([#10492]) * More consistently round non-integer initial zoom when zooming in/out when using the zoom buttons or `+`/`-` keyboard shortcuts +* Render map _points_ over _vertices_ ([#11006]) #### :scissors: Operations * Preserve the sum of certain tags (`step_count`, `parking:*:capacity`) during _join_ operation ([#10492], thanks [@ChaitanyaKadu03]) * Preserve total value of `parking:*:capacity` tags during _split_ operation by distributing it proportionally to the resulting ways ([#10492]) @@ -73,6 +74,7 @@ _Breaking developer changes, which may affect downstream projects or sites that [#10966]: https://github.com/openstreetmap/iD/issues/10966 [#10987]: https://github.com/openstreetmap/iD/issues/10987 [#10997]: https://github.com/openstreetmap/iD/issues/10997 +[#11006]: https://github.com/openstreetmap/iD/issues/11006 [#11011]: https://github.com/openstreetmap/iD/issues/11011 [@ChaitanyaKadu03]: https://github.com/ChaitanyaKadu03 diff --git a/modules/svg/osm.js b/modules/svg/osm.js index c585d8c20..467c3ce97 100644 --- a/modules/svg/osm.js +++ b/modules/svg/osm.js @@ -10,7 +10,7 @@ export function svgOsm(projection, context, dispatch) { .attr('class', function(d) { return 'layer-osm ' + d; }); selection.selectAll('.layer-osm.points').selectAll('.points-group') - .data(['points', 'midpoints', 'vertices', 'turns']) + .data(['vertices', 'midpoints', 'points', 'turns']) .enter() .append('g') .attr('class', function(d) { return 'points-group ' + d; });