Is there a way to give my SVG element dynamic width and height in order to display the entire SVG image?
For example, take a look at this CodePen link.
<svg width="250" height="250" viewBox="0 0 250 250">
Alternatively,
.svg {
width : 250px;
height: 250px;
}
I would like to fit the entire map into a 250x250 box.
I have tried numerous methods but haven't been successful so far...