I would like to convert this svg map example of England into an Arcgis js map
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Raphaël JS Map</title>
<style type="text/css">
.united-kingdom {
background-image: url(img/united_kingdom.png);
background-repeat: no-repeat;
}
.heaven-on-earth {
fill: yellow;
}
</style>
</head>
<body>
<div id="map" class="united-kingdom">
<!-- Raphaël JS Map Here -->
</div>
<h3 id="region-name"></h3>
<script src="raphael-min.js"></script>
<script src="map.js"></script>
</body>
</html>
you can demo the full example at this link Tutorial - Creating an Interactive SVG map - Blog - Parallax
Is it possible to take the svg file converted to a CAD and then imported to ArcGIS ArcMap?