/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 10//namespace Microsoft.Research.DynamicDataDisplay.Maps.DeepZoom 11//{ 12// public class DeepZoomViewer : Map 13// { 14// private DeepZoomTileServer tileServer = new DeepZoomTileServer(); 15 16// public DeepZoomViewer() 17// { 18// SourceTileServer = tileServer; 19// Mode = TileSystemMode.OnlineOnly; 20// TileProvider = new DeepZoomTileProvider(); 21 22// ProportionsConstraint.ProportionRatio = 1; 23// } 24 25// public DeepZoomViewer(string imagePath) 26// : this() 27// { 28// ImagePath = imagePath; 29// } 30 31// public string ImagePath 32// { 33// get { return tileServer.ImagePath; } 34// set 35// { 36// tileServer.ImagePath = value; 37// } 38// } 39 40// } 41//}