Exemplo n.º 1
0
 private static GWTBounds toGWTBounds(final MQARectLL bounds) {
   final BoundsBuilder bldr = new BoundsBuilder();
   bldr.extend(bounds.getUpperLeft().getLatitude(), bounds.getUpperLeft().getLongitude());
   bldr.extend(bounds.getLowerRight().getLatitude(), bounds.getLowerRight().getLongitude());
   return bldr.getBounds();
 }