Added getSrs on RESTResource

This commit is contained in:
Federico C. Guizzardi 2016-04-18 09:58:56 +02:00
parent 8968e36673
commit 9396ff0527

View File

@ -136,7 +136,11 @@ public class RESTResource {
RESTBoundingBox bbox = this.getLatLonBoundingBox();
return bbox.getCRS();
}
public String getSrs(){
return rootElem.getChildText("srs");
}
public double getMinX() {
return this.getLatLonBoundingBox().getMinX();
}