org.geomajas.layer.tms.xml.Origin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geomajas-layer-tms Show documentation
Show all versions of geomajas-layer-tms Show documentation
Geomajas server: Layer TMS - Implementation
/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/
package org.geomajas.layer.tms.xml;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAttribute;
/**
* Represents the Origin tag in the TMS description/capabilities XML file.
*
* @author Pieter De Graef
*/
public class Origin implements Serializable {
private static final long serialVersionUID = 100L;
private double x;
private double y;
public Origin() {
}
@XmlAttribute(name = "x")
public double getX() {
return x;
}
public void setX(double x) {
this.x = x;
}
@XmlAttribute(name = "y")
public double getY() {
return y;
}
public void setY(double y) {
this.y = y;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy