예제 #1
0
        public void Activate()
        {
            UIPositionManager uIPositionManager = this.viewControl.GetUIPositionManager();
            bool flag = false;

            if (this.legend.GetLastView() != null)
            {
                LegendView lastView = this.legend.GetLastView();
                if (lastView.showingPreview)
                {
                    throw new Exception("unimpl");
                }
                this.SetupNonpreviewView();
                uIPositionManager.GetSMPos().setPosition(lastView.GetSourceMapView());
                uIPositionManager.GetVEPos().setPosition(lastView.GetReferenceMapView());
                flag = true;
                this.viewControl.SetVEMapStyle(lastView.GetReferenceMapView().style);
            }
            if (!flag)
            {
                this.SetupNonpreviewView();
                uIPositionManager.GetSMPos().setPosition(new ContinuousCoordinateSystem().GetDefaultView());
                uIPositionManager.GetVEPos().setPosition(this.DefaultReferenceMapPosition());
            }
            uIPositionManager.SetPositionMemory(this.legend);
            this.viewControl.SetOptionsPanelVisibility(OptionsPanelVisibility.LegendOptions);
            this.viewControl.GetLegendPanel().Configure(this.legend, this.mapTileSourceFactory.CreateDisplayableUnwarpedSource(this.sourceMap));
            uIPositionManager.PositionUpdated();
        }
예제 #2
0
 public void Activate()
 {
     try
     {
         UIPositionManager uIPositionManager = this.viewControl.GetUIPositionManager();
         ViewerControlIfc  sMViewerControl   = this.viewControl.GetSMViewerControl();
         bool flag = false;
         if (this.sourceMap.lastView is SourceMapRegistrationView)
         {
             try
             {
                 SourceMapRegistrationView sourceMapRegistrationView = (SourceMapRegistrationView)this.sourceMap.lastView;
                 if (sourceMapRegistrationView.locked)
                 {
                     if (this.sourceMap.ReadyToLock())
                     {
                         this.SetupLockedView();
                         uIPositionManager.GetVEPos().setPosition(sourceMapRegistrationView.GetReferenceMapView());
                         flag = true;
                     }
                 }
                 else
                 {
                     this.SetupUnlockedView();
                     uIPositionManager.GetSMPos().setPosition(sourceMapRegistrationView.GetSourceMapView());
                     uIPositionManager.GetVEPos().setPosition(sourceMapRegistrationView.GetReferenceMapView());
                     flag = true;
                 }
                 this.viewControl.SetVEMapStyle(sourceMapRegistrationView.GetReferenceMapView().style);
             }
             catch (CorrespondencesAreSingularException)
             {
             }
             catch (InsufficientCorrespondencesException)
             {
             }
         }
         if (!flag)
         {
             this.SetupUnlockedView();
             uIPositionManager.GetSMPos().setPosition(new ContinuousCoordinateSystem().GetDefaultView());
             uIPositionManager.GetVEPos().setPosition(this.DefaultReferenceMapPosition(this.drv));
         }
         uIPositionManager.SetPositionMemory(this.sourceMap);
         this.viewControl.SetOptionsPanelVisibility(OptionsPanelVisibility.SourceMapOptions);
         this.viewControl.GetSourceMapInfoPanel().Configure(this.sourceMap);
         this.viewControl.GetSourceMapInfoPanel().Enabled = true;
         this.viewControl.GetTransparencyPanel().Configure(this.sourceMap, sMViewerControl);
         this.viewControl.GetTransparencyPanel().Enabled = true;
         this.viewControl.GetSMViewerControl().SetSnapViewStore(new SourceSnapView(this));
         this.viewControl.GetVEViewerControl().SetSnapViewStore(new RefSnapView(this));
         uIPositionManager.PositionUpdated();
     }
     catch (Exception)
     {
         this.Dispose();
         throw;
     }
 }
        public void Activate()
        {
            ViewerControlIfc  sMViewerControl   = viewControl.GetSMViewerControl();
            UIPositionManager uIPositionManager = viewControl.GetUIPositionManager();

            foreach (SourceMap current in layer.GetBackToFront())
            {
                IDisplayableSource displayableSource = mapTileSourceFactory.CreateDisplayableWarpedSource(current);
                if (displayableSource != null)
                {
                    sMViewerControl.AddLayer(displayableSource);
                }
            }

            uIPositionManager.SetPositionMemory(layer);
            LayerView layerView = (LayerView)layer.lastView;

            viewControl.GetUIPositionManager().switchSlaved();
            if (layerView != null)
            {
                uIPositionManager.GetVEPos().setPosition(layerView.GetReferenceMapView());
                uIPositionManager.GetVEPos().setStyle(layerView.GetReferenceMapView().style);
                return;
            }

            MapRectangle mapRectangle = null;

            try
            {
                mapRectangle = layer.GetUserBoundingBox(mapTileSourceFactory);
            }
            catch (CorrespondencesAreSingularException)
            {
            }
            catch (InsufficientCorrespondencesException)
            {
            }

            LatLonZoom position;

            if (mapRectangle != null)
            {
                Size size = new Size(600, 600);
                position = viewControl.GetVEViewerControl().GetCoordinateSystem()
                           .GetBestViewContaining(mapRectangle, size);
            }
            else
            {
                position = viewControl.GetVEViewerControl().GetCoordinateSystem().GetDefaultView();
            }

            uIPositionManager.GetVEPos().setPosition(position);
        }
예제 #4
0
        public void Activate()
        {
            UIPositionManager uIPositionManager = this.viewControl.GetUIPositionManager();

            uIPositionManager.switchFree();
            uIPositionManager.GetSMPos().setPosition(ContinuousCoordinateSystem.theInstance.GetDefaultView());
            uIPositionManager.GetVEPos().setPosition(MercatorCoordinateSystem.theInstance.GetDefaultView());
        }