Merge pull request #307 from bbinet/null-extent

Check for not null extent
This commit is contained in:
Bruno Binet
2013-03-07 02:06:18 -08:00
+1 -1
View File
@@ -50,7 +50,7 @@ ol.source.TiledWMS = function(tiledWMSOptions) {
var projectionExtent = projection.getExtent(); var projectionExtent = projection.getExtent();
extent = goog.isDef(extent) ? extent : projectionExtent; extent = goog.isDef(extent) ? extent : projectionExtent;
if (goog.isDef(extent) && projection.isGlobal() && if (!goog.isNull(extent) && projection.isGlobal() &&
extent.minX === projectionExtent.minX && extent.minX === projectionExtent.minX &&
extent.maxX === projectionExtent.maxX) { extent.maxX === projectionExtent.maxX) {
var numCols = Math.ceil( var numCols = Math.ceil(