// Add an info window to highlight a point of interest
map.getInfoWindow().open(map.getCenter(),
new InfoWindowContent("Porter Hall 222, CMU Information Systems"));
view.getContent().setWidget(null); // clearing the current child widget. probalby not the way to go though...
view.getContent().add(map.asWidget());
}
}