示例#1
0
文件: Location.cs 项目: cwx521/Husky
 public Location(decimal latitude, decimal longitude, LatLonType type)
 {
     Lat        = latitude;
     Lon        = longitude;
     LatLonType = type;
 }
示例#2
0
文件: Location.cs 项目: cwx521/Husky
 public Location(double latitude, double longitude, LatLonType type)
 {
     Lat        = (decimal)latitude;
     Lon        = (decimal)longitude;
     LatLonType = type;
 }