/Main/src/DynamicDataDisplay.Maps/DeepZoom/DeepZoomViewer.cs
# · C# · 41 lines · 0 code · 6 blank · 35 comment · 0 complexity · 5fb429c51530b2c365f4b2064d0fa313 MD5 · raw file
- //using System;
- //using System.Collections.Generic;
- //using System.Linq;
- //using System.Text;
- //using Microsoft.Research.DynamicDataDisplay.Charts.Maps;
- //using System.Xml;
- //using System.Xml.Serialization;
- //using System.IO;
-
- //namespace Microsoft.Research.DynamicDataDisplay.Maps.DeepZoom
- //{
- // public class DeepZoomViewer : Map
- // {
- // private DeepZoomTileServer tileServer = new DeepZoomTileServer();
-
- // public DeepZoomViewer()
- // {
- // SourceTileServer = tileServer;
- // Mode = TileSystemMode.OnlineOnly;
- // TileProvider = new DeepZoomTileProvider();
-
- // ProportionsConstraint.ProportionRatio = 1;
- // }
-
- // public DeepZoomViewer(string imagePath)
- // : this()
- // {
- // ImagePath = imagePath;
- // }
-
- // public string ImagePath
- // {
- // get { return tileServer.ImagePath; }
- // set
- // {
- // tileServer.ImagePath = value;
- // }
- // }
-
- // }
- //}