Exemplo n.º 1
0
        protected SpatialDisplayTool(MapControl mapControl)
        {
            if (mapControl==null)
                throw new ArgumentNullException();

            m_MapControl = mapControl;
        }
Exemplo n.º 2
0
 public MapControlAction(MapControl control, DisplayToolId id, ToolStripItem[] items)
 {
     m_Control = control;
     m_ToolId = id;
     m_Elements = new UserActionSupport(items);
     m_Elements.SetHandler(Do);
 }
Exemplo n.º 3
0
 public ZoomRectangleTool(MapControl display)
     : base(display)
 {
 }
Exemplo n.º 4
0
 public NewCenterTool(MapControl mapControl)
     : base(mapControl)
 {
 }
Exemplo n.º 5
0
 public MagnifyTool(MapControl mapControl) : base(mapControl)
 {
     m_Scale     = mapControl.MapScale / 20.0;
     m_IsStarted = false;
 }
Exemplo n.º 6
0
 public PanTool(MapControl display)
     : base(display)
 {
 }
Exemplo n.º 7
0
 public MagnifyTool(MapControl mapControl)
     : base(mapControl)
 {
     m_Scale = mapControl.MapScale/20.0;
     m_IsStarted = false;
 }