diff --git a/source/Ox.UI/js/Map/Ox.Map.js b/source/Ox.UI/js/Map/Ox.Map.js index 3a73417d..9f23d1c4 100644 --- a/source/Ox.UI/js/Map/Ox.Map.js +++ b/source/Ox.UI/js/Map/Ox.Map.js @@ -873,8 +873,8 @@ Ox.Map = function(options, self) { place.west = -179.99999999; place.east = 179.99999999; } - place.south = Ox.limit(place.south, Ox.MIN_LATITUDE, Ox.MAX_LATITUDE); - place.north = Ox.limit(place.north, Ox.MIN_LATITUDE, Ox.MAX_LATITUDE); + place.south = Ox.limit(place.south, Ox.MIN_LATITUDE, Ox.MAX_LATITUDE - 0.00000001); + place.north = Ox.limit(place.north, Ox.MIN_LATITUDE + 0.00000001, Ox.MAX_LATITUDE); function getCountryCode(components) { countryCode = ''; Ox.forEach(components, function(component) {