The Mandelbrot set is a fractal set popular for its pleasing aesthetics and simple definition. Here we generate map tiles procedurally, visualizing points in the complex plane with HTML5 Canvas. As you can imagine, this approach suggests myriad possibilities both for computational visualization and post-processing of raster (image) tiles in the client.
var po = org.polymaps;
var map = po.map()
.container(document.getElementById("map").appendChild(po.svg("svg")))
.zoomRange([0, 20])
.zoom(1)
.center({lat: 0, lon: 0})
.add(po.interact())
.add(po.hash());
map.add(po.procedural()
.worker("mandelbrot-worker.js"));
map.add(po.compass()
.pan("none"));