| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace XdCxRhDW.Api
 
- {
 
-     /// <summary>
 
-     /// 对应地图上一个点
 
-     /// </summary>
 
-     public class MapDot
 
-     {
 
-         public MapDot() { }
 
-         public MapDot(double lon, double lat, double alt)
 
-         {
 
-             this.Lon = lon;
 
-             this.Lat = lat;
 
-             this.Alt = alt;
 
-         }
 
-         public double Lon { get; set; }
 
-         public double Lat { get; set; }
 
-         public double Alt { get; set; }
 
-     }
 
-     public class ErrDistanceMapPoints
 
-     {
 
-         public double ErrDistance { get; set; }//单位m
 
-         public string ErrDistanceKm => $"{ErrDistance / 1e3}km";
 
-         public List<(double lon, double lat)> MapDots { get; set; } = new List<(double lon, double lat)>();
 
-     }
 
-     public class MapSatInfo
 
-     {
 
-         public int? SatCode { get; set; }
 
-         public double SatLon { get; set; }
 
-         public double SatLat { get; set; }
 
-     }
 
- }
 
 
  |