LatLng constructor
根据纬度latitude
和经度longitude
创建经纬度对象
latitude
取值范围 -90.0,90.0
.
latitude
取值范围 -180.0,179.0
Implementation
const LatLng(double latitude, double longitude)
: latitude =
(latitude < -90.0 ? -90.0 : (90.0 < latitude ? 90.0 : latitude)),
longitude = (longitude + 180.0) % 360.0 - 180.0;