Revision 35469 branches/v2_0_0_prep/libraries/libRemoteServices/src/org/gvsig/remoteclient/wmts/struct/WMTSLayer.java

View differences:

WMTSLayer.java
31 31
 * @author Nacho Brodin (nachobrodin@gmail.com)
32 32
 */
33 33
public abstract class WMTSLayer extends WMTSBaseStruct {
34
	protected WMTSBoundingBox       wgs84bbox                        = null;
35
	protected WMTSBoundingBox       bbox                             = null;
34
	protected WMTSBoundingBox       wgs84bbox                    = null;
35
	protected WMTSBoundingBox       bbox                         = null;
36 36
	//WMTSStyle
37
	private ArrayList               style                            = null;
38
	private ArrayList               imageFormat                      = null;
39
	private ArrayList               infoFormat                       = null;
40
	private WMTSDimension           dimension                        = null;
41
	private String                  metadata                         = null;
37
	private ArrayList               style                        = null;
38
	private ArrayList               imageFormat                  = null;
39
	private ArrayList               infoFormat                   = null;
40
	private WMTSDimension           dimension                    = null;
41
	private String                  metadata                     = null;
42 42
	//WMTSTileMatrixSetLink
43
	private ArrayList               tileMatrixSetLinkList            = null;
44
	private WMTSResourceURL         resourceURL                      = null;
45
	protected WMTSServerDescription status                           = null;
43
	private ArrayList               tileMatrixSetLinkList        = null;
44
	private WMTSResourceURL         resourceURL                  = null;
45
	protected WMTSServerDescription status                       = null;
46
	protected boolean               forceLongitudeFirstAxisOrder = false;
46 47
	
48
	/**
49
	 * Sets longitude first in the axis order read from the capabilities file
50
	 * @param force
51
	 */
52
	public void setForceLongitudeFirstAxisOrder(boolean force) {
53
		this.forceLongitudeFirstAxisOrder = force;
54
	}
55
	
47 56
	public WMTSLayer(WMTSServerDescription status) {
48 57
		this.status = status;
49 58
	}

Also available in: Unified diff