Slide 43
Slide 43 text
Leaflet/Wax
var url = ‘tilejosn source url’;
// Make a new Leaflet map in your container
div
map = new L.Map('map', {zoomControl:false})
.setView(new L.LatLng(43.059, -73.022), 12);
wax.tilejson(url, function(tilejson) {
// Add MapBox Streets as a base layer
map.addLayer(new
wax.leaf.connector(tilejson));
});