diff --git a/server/db/postgres/initialblocks.go b/server/db/postgres/initialblocks.go index 96baa18..d3d638f 100644 --- a/server/db/postgres/initialblocks.go +++ b/server/db/postgres/initialblocks.go @@ -11,5 +11,15 @@ const ( ) func (this *PostgresAccessor) FindNextInitialBlocks(s settings.Settings, layers []*layer.Layer, limit int) (*db.InitialBlocksResult, error) { + + //zoom/mapblock-width + //13 1 + //12 2 + //11 4 + //10 8 + //9 16 + + //Zoom 9: + //10 mapblocks height * 16 * 16 == 2560 return nil, nil }