Fixed URLs for underlying libraries...
forked from mbostock's block: Cellular automata
xxxxxxxxxx
<html>
<head>
<script type="text/javascript" src="https://polymaps.org/polymaps.min.js?2.5.1"></script>
<script type="text/javascript" src="https://polymaps.org/ex/procedural.js?2.0.2"></script>
<style type="text/css">
@import url("https://github.com/simplegeo/polymaps/raw/v2.2.0/examples/example.css");
#map {
background: #ddd;
}
</style>
</head>
<body id="map">
<script type="text/javascript">
var po = org.polymaps;
var map = po.map()
.container(document.getElementById("map").appendChild(po.svg("svg")))
.zoomRange([0, 5])
.zoom(1)
.tileSize({x: 512, y: 512})
.center({lat: 0, lon: 0})
.add(po.interact())
.add(po.hash());
map.add(po.procedural()
.zoom(function(z) { return Math.min(4, z); })
.worker("cell-worker.js"));
map.add(po.compass()
.pan("none"));
</script>
</body>
</html>
Modified http://polymaps.org/polymaps.min.js?2.5.1 to a secure url
Modified http://polymaps.org/ex/procedural.js?2.0.2 to a secure url
https://polymaps.org/polymaps.min.js?2.5.1
https://polymaps.org/ex/procedural.js?2.0.2