Statistics
| Revision:

gvsig-3d / 2.1 / trunk / org.gvsig.view3d / org.gvsig.view3d.swing / org.gvsig.view3d.swing.api / src / main / java / org / gvsig / view3d / swing / api / MapControl3D.java @ 448

History | View | Annotate | Download (2.42 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2015 gvSIG Association
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24

    
25
package org.gvsig.view3d.swing.api;
26

    
27
import org.gvsig.fmap.mapcontext.MapContext;
28
import org.gvsig.tools.swing.api.Component;
29
import org.gvsig.view3d.swing.api.View3DSwingManager.TYPE;
30

    
31

    
32
/**
33
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
34
 *
35
 */
36
public interface MapControl3D extends Component{
37
    
38
    /**
39
     * 
40
     * @return
41
     */
42
    public MapContext getMapContext();
43
    
44
    /**
45
     * 
46
     * @return
47
     */
48
    public TYPE getType();
49
    
50
    /**
51
     * 
52
     * @return
53
     */
54
    public double getVerticalExaggeration();
55

    
56
    /**
57
     * 
58
     */
59
    public void hideAtmosphere();
60

    
61
    /**
62
     * 
63
     */
64
    public void hideMiniMap();
65

    
66
    /**
67
     * 
68
     */
69
    public void hideNorthIndicator();
70

    
71
    /**
72
     * 
73
     */
74
    public void hideScale();
75

    
76
    /**
77
     * 
78
     */
79
    public void hideStarBackground();
80

    
81
    /**
82
     * 
83
     */
84
    public void reloadLayers();
85

    
86
    /**
87
     * 
88
     */
89
    public void setMapContext(MapContext theMapContext);
90

    
91
    /**
92
     * 
93
     */
94
    public void setVerticalExaggeration(double verticalExaggeration);
95

    
96
    /**
97
     * 
98
     */
99
    public void showAtmosphere();
100

    
101
    /**
102
     * 
103
     */
104
    public void showMiniMap();
105

    
106
    /**
107
     * 
108
     */
109
    public void showNortIndicator();
110

    
111
    /**
112
     * 
113
     */
114
    public void showScale();
115

    
116
    /**
117
     * 
118
     */
119
    public void showStarBackgroundLayer();
120

    
121
    /**
122
     * 
123
     */
124
    public void synchronizeViewPorts();
125
    
126
    /**
127
     * 
128
     */
129
    public void synchronizeLayers();
130

    
131
}