Hi,
I have an image that covers (almost) the full earth surface, it works
fine in GE as an overlay, but in Google maps it doesn't show.


  var imageBounds = new google.maps.LatLngBounds(
    new google.maps.LatLng(-60,-180),
    new google.maps.LatLng(90,180));
  tempLayer = new google.maps.GroundOverlay(<png>, imageBounds);
  tempLayer.setMap(map);

If I "resize" it to cover only (-160; 160) longitude, then it works
(but it's distorted of course).

  var imageBounds = new google.maps.LatLngBounds(
    new google.maps.LatLng(-60,-160),
    new google.maps.LatLng(90,160));

Is there a limit to the west/east bounds of a ground overlay ?

Thanks,
Laurent

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to