Exemple #1
0
 /**
  * Set the projection on all MapViewManagers to be the projection of the first display.
  *
  * @throws RemoteException On badness
  * @throws VisADException On badness
  */
 public void center() throws VisADException, RemoteException {
   center(getViewManagers());
 }
Exemple #2
0
 /**
  * Center all of the MapViewManager-s at the given point
  *
  * @param mp Set all view managers projection to the
  * @throws RemoteException On badness
  * @throws VisADException On badness
  */
 public void center(MapProjection mp) throws VisADException, RemoteException {
   center(mp, getViewManagers());
 }
Exemple #3
0
 /**
  * Zoom and center all of the MapViewManager-s at the given rect
  *
  * @param pr The projection rect to zoom and center to
  * @throws RemoteException On badness
  * @throws VisADException On badness
  */
 public void center(ProjectionRect pr) throws VisADException, RemoteException {
   center(pr, getViewManagers());
 }
Exemple #4
0
 /**
  * Center all of the MapViewManager-s at the given point
  *
  * @param el The point
  * @throws RemoteException On badness
  * @throws VisADException On badness
  */
 public void center(EarthLocation el) throws VisADException, RemoteException {
   center(el, getViewManagers());
 }