index.html
<!DOCTYPE html>
<html>
<head>
<style>
html, body, #map {
height: 100%;
padding: 0;
margin: 0;
}
</style>
<link rel="stylesheet" href="//libs.cartodb.com/cartodb.js/v2/themes/css/cartodb.css" />
</head>
<body>
<div id="map"></div>
</body>
<script type="infowindow/html" id="infowindow_template">
<div class="cartodb-popup">
<a href="#close" class="cartodb-popup-close-button close">x</a>
<div class="cartodb-popup-content-wrapper">
<div class="cartodb-popup-content">
<h4>{{content.data.sum_incident}}</h4>
<h4>{{content.data.location}} | {{content.data.year}}</h4>
<hr>
<h4>Total # of Victims: {{content.data.sum_total_victims}}</h4>
<h4>Weapon Obtained Legally?: {{content.data.weapons_obtained_legally}}</h4>
<h4>Shooter: {{content.data.shooter}}</h4>
</div>
</div>
<div class="cartodb-popup-tip-container"></div>
</div>
</script>
<script src="//libs.cartocdn.com/cartodb.js/v2/cartodb.js"></script>
<script>
function main() {
var map = L.map('map', {
zoomControl: true,
center: [44.4758825, -73.212072],
zoom: 13
})
L.tileLayer('//a.tiles.mapbox.com/v3/mapbox.mapbox-lacquer/{z}/{x}/{y}.png', {
attribution: 'MapBox'
}).addTo(map);
cartodb.createLayer(map, '//geosprocket.cartodb.com/api/v1/viz/1797/viz.json')
.on('done', function(layer) {
map.addLayer(layer);
L.tileLayer('//a.tiles.mapbox.com/v3/landplanner.map-0wnm9063/{z}/{x}/{y}.png', {
attribution: 'MapBox'
}).addTo(map);
layer.infowindow.set('template', $('#infowindow_template').html());
layer.on('featureOver', function(e, pos, latlng, data) {
console.log(e, pos, latlng, data);
});
layer.on('error', function(err) {
console.log('error: ' + err);
});
}).on('error', function() {
console.log("some error occurred");
});
}
window.onload = main;
</script>
</html>