applying patch provided by eikeon for position parameter constructor of TileSource. At some point I hope to deprecate most of these constructors that have more than two positional parameters.

This commit is contained in:
thatcher 2013-03-12 20:12:08 -04:00
parent f28fea8f74
commit b3146683f2

View File

@ -65,7 +65,7 @@ $.TileSource = function( width, height, tileSize, tileOverlap, minLevel, maxLeve
height: args[1],
tileSize: args[2],
tileOverlap: args[3],
minlevel: args[4],
minLevel: args[4],
maxLevel: args[5]
};
}