}
private static boolean containsCenterLongitude(final LatLngBounds boxBounds,
final GwtGeocell northWest) {
final Bounds bounds = northWest.getBounds();
final Point centerTop = new Point(boxBounds.getNorthEast().getLatitude(),
bounds.getCenter().getLongitude());
return bounds.contains(centerTop);
}