/**
* The latitude of the point, in decimal degrees (WGS84 datum).
*
* <p>
* The latitude of the point, in decimal degrees. The value cannot be null
* and must be between or equal to -90.0 and 90.0 degrees.
*
* @return the latitude of the point
*/
@NotNull(message = "{Model.Coordinates.Latitude.NotNull}")
@DecimalMax(value = "90", message = "{Model.Coordinates.Latitude.MaxValue}")
@DecimalMin(value = "-90",
message = "{Model.Coordinates.Latitude.MinValue}")
Double getLatitude();
Coordinates.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:pinetrail
作者:
评论列表
文章目录