Screencast

Good news: I used a KDE zoom effect to make the window I was working in a tad bigger. Bad news: ffmpeg doubled my mouse cursor. Doh! This is a 10-mile high overview. Next month I’ll do an in-depth look and some passable cartography.

Here’s what a Leaflet configuration to serve up the tiles looks like:

1
2
3
4
5
6
7
8
9
var myTiles = new L.TileLayer('http://localhost/~gandalf/mbtiles-server.php?db=demo.mbtiles&z={z}&x={x}&y={y}',
{
attribution: 'My TileMill Project',
maxZoom: 18,
minZoon: 14
});

var map = new L.Map('map');
map.setView( new L.LatLng(35.2272,-80.8407), 14).addLayer(myTiles);

Resources