Merge pull request #928 from pnorman/patch-1

Change default max zoom to 20
This commit is contained in:
Tom MacWright
2013-03-08 07:48:46 -08:00
+1 -1
View File
@@ -172,7 +172,7 @@ iD.Background = function() {
if (!arguments.length) return source;
source = _;
cache = {};
tile.scaleExtent((source.data && source.data.scaleExtent) || [1, 17]);
tile.scaleExtent((source.data && source.data.scaleExtent) || [1, 20]);
setPermalink(source);
return background;
};