Program.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using Azylee.Core.LogUtils.SimpleLogUtils;
  2. using Azylee.Jsons;
  3. using Azylee.YeahWeb.BaiDuWebAPI.dwz;
  4. using System;
  5. namespace Test.YeahWeb
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. Log log = new Log(true,LogLevel.All,LogLevel.All);
  12. var rs = DwzTool.Create("", "http://www.baidu.com");
  13. Console.WriteLine(Json.Object2String(rs));
  14. //PictureScener.GetInfo(1107006764,(int)TimeStampTool.Get(), "",);
  15. //if (GPSConverter.DeviceGPSToBaiduGPS("", 120.379235583333, 36.19172925, out double x, out double y))
  16. //{
  17. // Console.WriteLine($"120.379235583333 - 36.19172925");
  18. // Console.WriteLine($"{x} - {y}");
  19. //}
  20. //GPSInfoWebModel model = GPSInfoTool.GetInfo("", 40.039669, 252.129464);
  21. //if (model != null)
  22. //{
  23. // GPSInfoModel info = model.ToGPSInfoModel();
  24. // Console.WriteLine(info);
  25. //}
  26. Console.ReadLine();
  27. }
  28. }
  29. }