* @param marker the marker to add
* @param old If true, doesn't add this marker to the markers array. Used by the "swap" method
*/
private void addMarker(final Marker marker, final boolean old) {
if (!mapRendered) {
addListener(MAP_RENDERED_EVENT, new Function() {
public void execute() {
doAddMarker(marker, old);
}
});
} else {