I am trying to work with d3.js to create a map using datamaps.github.io and the map is not displaying. I am attaching the code because I need some help to resolve this challenge... I have actually followed this solution on stackoverflow Datamaps are showing small size map of India and I am still not able to resolve it...
<html>
<head>
<title></title>
<script src="d3.min.js"></script>
<script src="topojson.min.js"></script>
<script src="datamaps.world.min.js"></script>
<script src="jquery-2.1.4.min.js"></script>
<script>
var map = new Datamap({
element: document.getElementById('container'),
scope: 'world'
});
</script>
</head>
<body>
<div id="container" style="position: relative; width: 500px; height: 300px;"></div>
</body>