Bounds.java 553 Bytes
Newer Older
Matthias Betz's avatar
Matthias Betz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package de.hft.stuttgart.citygml.green.osm.jaxb;

import jakarta.xml.bind.annotation.XmlAttribute;

public class Bounds {

	@XmlAttribute(name = "minlat")
	private double minLat;

	@XmlAttribute(name = "minlon")
	private double minLon;

	@XmlAttribute(name = "maxlat")
	private double maxLat;

	@XmlAttribute(name = "maxlon")
	private double maxLon;

	public double getMaxLat() {
		return maxLat;
	}

	public double getMaxLon() {
		return maxLon;
	}

	public double getMinLat() {
		return minLat;
	}

	public double getMinLon() {
		return minLon;
	}

}