I have a SVG which can be zoomed and also a \"reset\" button. I\'m resetting the zoom with
zoom.transform(selection, d3.zoomIdentity)
This wor
Also set scale in the reset
$("#reset-zoom-button").click(() => { zoom.transform(container, d3.zoomIdentity.scale(1) ); })