예제 #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;
 }