

Hi,
I have a site of atlas I am building , i have maps I load polygons of all the world.
Now I have to add also PNG files of whole world and even partial as the images I've loaded.
I've tried to give many SW and NE of the image and it still load distorted.
Is it a known problem? is it optional to add overlay PNG on all the world correctly?
very imported!!!! please help!!!!
as follow :
http://screencast.com/t/qojdHHfui<code>
function overlayAdd() {
var sw = new google.maps.LatLng(-47.683079,-114.744087 );
var ne = new google.maps.LatLng(79.939901,75.672887 );
var bounds = new google.maps.LatLngBounds(sw, ne);
overlay = new ProjectedOverlay(map, 'world.png', bounds, {});
document.getElementById("overlayToggle").innerHTML = '<a href="javascript:overlayRemove()">Remove Overlay</a>';
}
<code>