| 1543 | // before mapping into the SVG's top-left–based pixel space. |
| 1544 | const mapToSvgX = xPercent => (xPercent / 100) * mapWidth |
| 1545 | const mapToSvgY = yPercentFromBottom => { |
| 1546 | const yPercentFromTop = 100 - yPercentFromBottom |
| 1547 | return (yPercentFromTop / 100) * mapHeight |
| 1548 | } |
| 1549 | |
| 1550 | // Container for per-path markers (arrow heads, etc.) |
| 1551 | const defs = document.createElementNS(svgNS, 'defs') |
nothing calls this directly
no outgoing calls
no test coverage detected