panda.ex.gcloud.vision.images.LatLongRect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube Show documentation
Show all versions of panda-tube Show documentation
Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.
The newest version!
package panda.ex.gcloud.vision.images;
public class LatLongRect {
private LatLng minLatLng;
private LatLng maxLatLng;
public LatLng getMinLatLng() {
return minLatLng;
}
public void setMinLatLng(LatLng minLatLng) {
this.minLatLng = minLatLng;
}
public LatLng getMaxLatLng() {
return maxLatLng;
}
public void setMaxLatLng(LatLng maxLatLng) {
this.maxLatLng = maxLatLng;
}
}