以纬度为例子:
int MyLatDegree = (int)MyLatitude;
float MyLatMinute = (int)(Mathf.Abs(MyLatitude) * 60) % 60;
float MyLatSecond = (int)(Mathf.Abs(MyLatitude) * 3600) % 60;
以纬度为例子:
int MyLatDegree = (int)MyLatitude;
float MyLatMinute = (int)(Mathf.Abs(MyLatitude) * 60) % 60;
float MyLatSecond = (int)(Mathf.Abs(MyLatitude) * 3600) % 60;