/** * 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()); }
/** * 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()); }
/** * 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()); }
/** * 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()); }