* @param east the east boundary
* @param north the north boundary
*/
public void addImageOverlay(final String id, final String imageURL, final int opacity, final double west, final double south, final double east, final double north) {
if (!mapRendered) {
addListener(MAP_RENDERED_EVENT, new Function() {
public void execute() {
doAddImageOverlay(id, imageURL, opacity, west, south, east, north);
}
});
} else {