Revision 2613 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

View differences:

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

  
3
import java.awt.geom.Rectangle2D;
3 4
import java.util.List;
4 5

  
5 6
import org.gvsig.raster.wmts.ogc.WMTSStatus;
......
8 9
public interface WMTSLayer {
9 10
	public WMTSBoundingBox getWGS84BBox();
10 11
	
12
	public Rectangle2D getWGS84BBoxTransformed(String epsg);
13
	
11 14
	public String getMetadata();
12 15
	
13 16
	public List<String> getFormat();
......
43 46
	public List<WMTSResourceURL> getResourceURL();
44 47
	
45 48
	/**
49
	 * Gets dimensions
50
	 * @return
51
	 */
52
	public List<WMTSDimension> getDimensions();
53
	
54
	/**
46 55
	 * If the layer has a template to build the URL, this method checks whether
47 56
	 * the format requested needs a template. If the template is needed the entire 
48 57
	 * URL will be returned.
......
59 68
	 * </UL>
60 69
	 * @return
61 70
	 */
62
	public void buildResourceURLListFromTemplate(WMTSStatus status, String defaultDimension);
71
	public void buildResourceURLListFromTemplate(WMTSStatus status);
63 72
}

Also available in: Unified diff