From b3146683f24b7e9b2dcc19483857848f27ed1798 Mon Sep 17 00:00:00 2001 From: thatcher Date: Tue, 12 Mar 2013 20:12:08 -0400 Subject: [PATCH] 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. --- src/tilesource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tilesource.js b/src/tilesource.js index 51b0f03f..3b64821b 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -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] }; }