mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
render side-markers also for coastline areas, fixes #9293
This commit is contained in:
@@ -240,7 +240,11 @@ export function svgLines(projection, context) {
|
||||
if (outer) {
|
||||
ways.push(entity.mergeTags(outer.tags));
|
||||
oldMultiPolygonOuters[outer.id] = true;
|
||||
} else if (entity.geometry(graph) === 'line') {
|
||||
} else if (entity.geometry(graph) === 'line'
|
||||
// to render side-markers for coastlines (see
|
||||
// https://github.com/openstreetmap/iD/issues/9293)
|
||||
|| entity.geometry(graph) === 'area' && entity.sidednessIdentifier
|
||||
&& entity.sidednessIdentifier() === 'coastline') {
|
||||
ways.push(entity);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user