Пример #1
0
 public override MapPoint XYToLatLon(double x, double y)
 {
     if (Srid > 100000)
     {
         TransverseMercatorHelper.Local2000ToBL(x, y, Srid, out double lon, out double lat);
         return(new MapPoint()
         {
             X = lon, Y = lat
         });
     }
     throw new NotImplementedException();
 }