mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 19:26:41 +02:00
render points over vertices, fixes #11006
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
+1
-1
@@ -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; });
|
||||
|
||||
Reference in New Issue
Block a user