throw new UnsupportedOperationException();
}
public String convertToString(Object value, Locale locale)
{
GLatLngBounds bounds = (GLatLngBounds)value;
StringBuffer buffer = new StringBuffer();
buffer.append("NE (");
buffer.append(bounds.getNE().getLat());
buffer.append(",");
buffer.append(bounds.getNE().getLng());
buffer.append(")\nSW (");
buffer.append(bounds.getSW().getLat());
buffer.append(",");
buffer.append(bounds.getSW().getLng());
buffer.append(")");
return buffer.toString();
}
};
}