From bea82b27ba363b1ac26f9486c4b6c472ecee8069 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 14 Aug 2007 10:05:36 +0000 Subject: [PATCH] Return a pointer to the 404 tile for out of bounds latitudes. --- public/javascripts/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/map.js b/public/javascripts/map.js index a48e71077..4816f762b 100644 --- a/public/javascripts/map.js +++ b/public/javascripts/map.js @@ -41,7 +41,7 @@ function getTileURL(bounds) { if (y < 0 || y >= limit) { - return null; + return OpenLayers.Util.getImagesLocation() + "404.png"; } else { -- 2.43.2