From 67d44a04bad365157ce38ade5237461e66449914 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 1 May 2007 15:21:18 +0000 Subject: [PATCH] #690 - force overview map extent rectangle to have non-negative dimensions - thanks openlayers git-svn-id: http://svn.openlayers.org/trunk/openlayers@3107 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Control/OverviewMap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/OpenLayers/Control/OverviewMap.js b/lib/OpenLayers/Control/OverviewMap.js index cb5301125b..b3fb971c60 100644 --- a/lib/OpenLayers/Control/OverviewMap.js +++ b/lib/OpenLayers/Control/OverviewMap.js @@ -520,8 +520,8 @@ OpenLayers.Control.OverviewMap.prototype = this.ovmap.size.w - this.wComp); this.extentRectangle.style.top = parseInt(top) + 'px'; this.extentRectangle.style.left = parseInt(left) + 'px'; - this.extentRectangle.style.height = parseInt(bottom - top)+ 'px'; - this.extentRectangle.style.width = parseInt(right - left) + 'px'; + this.extentRectangle.style.height = parseInt(Math.max(bottom - top, 0))+ 'px'; + this.extentRectangle.style.width = parseInt(Math.max(right - left, 0)) + 'px'; }, /**