I am using d3.js to add visuals on to a leaflet map.
The d3 goes on the map fine. But when I zoom the map then pan the map the SVG is cut off.
I am setting the width and height of the SVG to the width and height of the window, like so:
svg.attr("width", window.innerWidth);
svg.attr("height", window.innerHeight);
When i pan around the map, the SVG stays in the same position it was in originally.
Here is a link to a codepen of the problem:
To re-create the issue, zoom in on the map, then pan the map.
Am i missing something fundamental here?
If you want to make circle on svg then do something like codepen link here
You can zoom pan and the circles will never cut.