コード例 #1
0
ファイル: VMManager.java プロジェクト: nbearson/IDV
 /**
  * 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());
 }
コード例 #2
0
ファイル: VMManager.java プロジェクト: nbearson/IDV
 /**
  * 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());
 }
コード例 #3
0
ファイル: VMManager.java プロジェクト: nbearson/IDV
 /**
  * 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());
 }
コード例 #4
0
ファイル: VMManager.java プロジェクト: nbearson/IDV
 /**
  * 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());
 }