Statistics
| Revision:

gvsig-raster / org.gvsig.raster.wmts / trunk / org.gvsig.raster.wmts / org.gvsig.raster.wmts.ogc / org.gvsig.raster.wmts.ogc.api / src / main / java / org / gvsig / raster / wmts / ogc / struct / WMTSLayer.java @ 1809

History | View | Annotate | Download (670 Bytes)

1
package org.gvsig.raster.wmts.ogc.struct;
2

    
3
import java.util.List;
4

    
5

    
6
public interface WMTSLayer {
7
        public WMTSBoundingBox getWGS84BBox();
8
        
9
        public String getMetadata();
10
        
11
        public List<String> getFormat();
12
        
13
        public List<String> getInfoFormat();
14
        
15
        public List<String> getKeywords();
16
        
17
        public abstract WMTSBoundingBox getBBox();
18

    
19
        public List<WMTSStyle> getStyle();
20

    
21
        public List<WMTSTileMatrixSetLink> getTileMatrixSetLink();
22
        
23
        /**
24
         * Returns the initial level of this layer inside the matrix set. 
25
         * @return
26
         */
27
        public int getInitialLevel(String tileMatrixSetId);
28
        
29
        /**
30
         * Gets the list of srs's supported
31
         * @return
32
         */
33
        public List<String> getSrsList();
34
}