|
|
|
@ -140,7 +140,8 @@
|
|
|
|
|
*/
|
|
|
|
|
L.GridLayer.DynamicTiles = L.GridLayer.extend({
|
|
|
|
|
createTile: function (coords, done) { // done = (err, tile)
|
|
|
|
|
// console.log("createTile", coords, this.options, this.options.nodes);
|
|
|
|
|
// console.log("createTile", coords, this.options, this.options.nodes);
|
|
|
|
|
// console.log("createTile", coords);
|
|
|
|
|
var tile = document.createElement('div'),
|
|
|
|
|
node = this.options.nodes[coords.x+","+coords.y+","+coords.z],
|
|
|
|
|
defer = false;
|
|
|
|
@ -217,13 +218,16 @@ function getjson (url, callback) {
|
|
|
|
|
var TILESIZE = 256;
|
|
|
|
|
var map = L.map('map', {
|
|
|
|
|
editable: true,
|
|
|
|
|
maxZoom: 100,
|
|
|
|
|
maxZoom: 50, // hangs past 50
|
|
|
|
|
minZoom: 0,
|
|
|
|
|
zoom: 0,
|
|
|
|
|
crs: L.CRS.Simple,
|
|
|
|
|
center: new L.LatLng(0,0),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// HASH! using https://github.com/mlevans/leaflet-hash
|
|
|
|
|
var hash = new L.Hash(map);
|
|
|
|
|
|
|
|
|
|
getjson("index.json", function (err, data) {
|
|
|
|
|
var nodes = (tiler.layoutxyz(tiler.expandzoom(data)));
|
|
|
|
|
map.addLayer( L.gridLayer.dynamicTiles({
|
|
|
|
|