Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="https://rawgithub.com/markmarkoh/datamaps/master/dist/datamaps.world.js"></script>
<div id="container" style="position: relative; width: 500px; height: 300px;"></div>
<script>
    var data;
    var map = new Datamap({
        element: document.getElementById('container'),
        fills: {
            HIGH: '#afafaf',
            LOW: '#123456',
            MEDIUM: 'blue',
            UNKNOWN: '#FFFFFF',
            defaultFill: 'green'
        },
      data: {},
        geographyConfig: {
            popupTemplate: function(geo, data) {
                if ( !data ) return;
                return ['<div class="hoverinfo"><strong>',
                    'Number of things in ' + geo.properties.name,
                    ': ' + data.numberOfThings,
                    '</strong></div>'].join('');
            }
        }
    });
    map.legend();
  window.setTimeout(function() {
    map.updateChoropleth({USA: {fillKey: "blue", numberOfThings: 333}});
  }, 1000);
</script>
</body>
</html>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers