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 @ 459

History | View | Annotate | Download (2.47 KB)

1 443 llmarques
/**
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 459 llmarques
import org.gvsig.tools.dispose.Disposable;
29 443 llmarques
import org.gvsig.tools.swing.api.Component;
30
import org.gvsig.view3d.swing.api.View3DSwingManager.TYPE;
31
32
33
/**
34 448 llmarques
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
35 443 llmarques
 *
36
 */
37 459 llmarques
public interface MapControl3D extends Component, Disposable{
38 443 llmarques
39
    /**
40
     *
41
     * @return
42
     */
43
    public MapContext getMapContext();
44
45
    /**
46
     *
47
     * @return
48
     */
49
    public TYPE getType();
50
51
    /**
52
     *
53
     * @return
54
     */
55
    public double getVerticalExaggeration();
56
57
    /**
58
     *
59
     */
60
    public void hideAtmosphere();
61
62
    /**
63
     *
64
     */
65
    public void hideMiniMap();
66
67
    /**
68
     *
69
     */
70
    public void hideNorthIndicator();
71
72
    /**
73
     *
74
     */
75
    public void hideScale();
76
77
    /**
78
     *
79
     */
80
    public void hideStarBackground();
81
82
    /**
83
     *
84
     */
85
    public void reloadLayers();
86
87
    /**
88
     *
89
     */
90
    public void setMapContext(MapContext theMapContext);
91
92
    /**
93
     *
94
     */
95
    public void setVerticalExaggeration(double verticalExaggeration);
96
97
    /**
98
     *
99
     */
100
    public void showAtmosphere();
101
102
    /**
103
     *
104
     */
105
    public void showMiniMap();
106
107
    /**
108
     *
109
     */
110
    public void showNortIndicator();
111
112
    /**
113
     *
114
     */
115
    public void showScale();
116
117
    /**
118
     *
119
     */
120
    public void showStarBackgroundLayer();
121
122
    /**
123
     *
124
     */
125
    public void synchronizeViewPorts();
126
127
    /**
128
     *
129
     */
130
    public void synchronizeLayers();
131
132
}