コード例 #1
0
ファイル: SnapLocation.cs プロジェクト: litfung/iTrip
 public SnapLocation(string account, string name, double lon, double lat, int nation, int city)
 {
     Account   = account;
     Name      = name;
     Longitude = lon;
     Latitude  = lat;
     City      = city;
     Nation    = nation;
     LonLat    = new LocationLonLat(lon, lat);
     _trace.Add(LonLat);
 }
コード例 #2
0
ファイル: SnapLocation.cs プロジェクト: WinHuStudio/iTrip
 public SnapLocation(string account, string name, double lon, double lat, int nation, int city)
 {
     Account = account;
     Name = name;
     Longitude = lon;
     Latitude = lat;
     City = city;
     Nation = nation;
     LonLat = new LocationLonLat(lon, lat);
     _trace.Add(LonLat);
 }