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>
  
  <!-- Load cartodb.js -->
  <link rel="stylesheet" href="http://libs.cartocdn.com/cartodb.js/v3/3.12/themes/css/cartodb.css" />
  <script src="http://libs.cartocdn.com/cartodb.js/v3/3.12/cartodb.js"></script>
  
</head>
<body>
  <div id="map"></div>
</body>
</html>
 
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}
#map {
  height: 100%;
  width: 100%;
}
 
$(document).ready(function () {
  cartodb.createVis('map', 'http://eric.cartodb.com/api/v2/viz/22a36ecc-0eb6-11e3-8f2f-5404a6a69006/viz.json', {
    cartodb_logo: false
  })
  .done(function (vis, layers) {
    layers[1].hide();
  });
});
Output

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

Dismiss x
public
Bin info
ebrelsfordpro
0viewers