PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/DynamicDataDisplay.Maps/DeepZoom/DeepZoomViewer.cs

#
C# | 41 lines | 0 code | 6 blank | 35 comment | 0 complexity | 5fb429c51530b2c365f4b2064d0fa313 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. //using System;
  2. //using System.Collections.Generic;
  3. //using System.Linq;
  4. //using System.Text;
  5. //using Microsoft.Research.DynamicDataDisplay.Charts.Maps;
  6. //using System.Xml;
  7. //using System.Xml.Serialization;
  8. //using System.IO;
  9. //namespace Microsoft.Research.DynamicDataDisplay.Maps.DeepZoom
  10. //{
  11. // public class DeepZoomViewer : Map
  12. // {
  13. // private DeepZoomTileServer tileServer = new DeepZoomTileServer();
  14. // public DeepZoomViewer()
  15. // {
  16. // SourceTileServer = tileServer;
  17. // Mode = TileSystemMode.OnlineOnly;
  18. // TileProvider = new DeepZoomTileProvider();
  19. // ProportionsConstraint.ProportionRatio = 1;
  20. // }
  21. // public DeepZoomViewer(string imagePath)
  22. // : this()
  23. // {
  24. // ImagePath = imagePath;
  25. // }
  26. // public string ImagePath
  27. // {
  28. // get { return tileServer.ImagePath; }
  29. // set
  30. // {
  31. // tileServer.ImagePath = value;
  32. // }
  33. // }
  34. // }
  35. //}