xxxxxxxxxx
<html>
<head>
<script src='https://cdn.jsdelivr.net/gh/mapbox/wax/ext/leaflet.js' type='text/javascript'></script>
<script src='https://cdn.jsdelivr.net/gh/mapbox/wax/dist/wax.leaf.js' type='text/javascript'></script>
<link href='https://raw.github.com/mapbox/wax/master/ext/leaflet.css' rel="stylesheet" type="text/css" />
<link href='https://raw.github.com/mapbox/wax/master/theme/controls.css' rel="stylesheet" type="text/css" />
<style type='text/css'>
#map-div {
width:500px;
height:300px;
}
</style>
<body>
<div id='map-div'></div>
<script>
wax.tilejson('https://api.tiles.mapbox.com/v2/mapbox.geography-class.jsonp',
function(tilejson) {
var map = new L.Map('map-div')
.addLayer(new wax.leaf.connector(tilejson))
.setView(new L.LatLng(51.505, -0.09), 1);
wax.leaf.interaction(map, tilejson);
});
</script>
</body>
</html>
Updated missing url https://raw.github.com/mapbox/wax/master/ext/leaflet.js to https://cdn.jsdelivr.net/gh/mapbox/wax/ext/leaflet.js
Updated missing url https://raw.github.com/mapbox/wax/master/dist/wax.leaf.js to https://cdn.jsdelivr.net/gh/mapbox/wax/dist/wax.leaf.js
https://raw.github.com/mapbox/wax/master/ext/leaflet.js
https://raw.github.com/mapbox/wax/master/dist/wax.leaf.js