const g = document.createElementNS('http://www.w3.org/2000/svg', 'g')
SvgVisual.setTranslate(g, x, y)
g.append(pathElement)
const showBadge = node.tag?.showBadge
if (showBadge) {
const badge = document.createElementNS(
'http://www.w3.org/2000/svg',
'circle'
)
badge.setAttribute('r', '8')
badge.setAttribute('fill', '#6c9f44')
badge.setAttribute('stroke', '#496c2e')
g.append(badge)
}
return SvgVisual.from(g, {
width,
height,
fillColor,
showBadge
})