{
GWT.log("Got callback with status " + status, null);
if (status.equals(GeocoderStatus.OK))
{
InfoWindowJSO info = InfoWindowJSO.newInstance();
info.setPosition(point);
if (responses.length() > 0)
{
info.setContent(responses.get(0).toString());
}
else
{
info.setContent("No results from geocoder");
}
info.open(map.getMapJSO());
}
else
{
Window.alert("Geocoder failed: " + status);
}