Subversion Repositories Projects

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2287 - 1

2
namespace GMap.NET
3
{
4
   using System;
5
 
6
   /// <summary>
7
   /// types of great maps, legacy, not used anymore,
8
   /// left for old ids                                          
9
   /// </summary>
10
   public enum MapType
11
   {
12
      None = 0, // displays no map
13
 
14
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
15
      GoogleMap = 1,
16
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
17
      GoogleSatellite = 4,
18
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
19
      GoogleLabels = 8,
20
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
21
      GoogleTerrain = 16,
22
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
23
      GoogleHybrid = 20,
24
 
25
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
26
      GoogleMapChina = 22,
27
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
28
      GoogleSatelliteChina = 24,
29
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
30
      GoogleLabelsChina = 26,
31
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
32
      GoogleTerrainChina = 28,
33
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
34
      GoogleHybridChina = 29,
35
 
36
      OpenStreetMap = 32, //
37
      OpenStreetOsm = 33, //
38
      OpenStreetMapSurfer = 34, //
39
      OpenStreetMapSurferTerrain = 35, //
40
      OpenSeaMapLabels = 36, //
41
      OpenSeaMapHybrid = 37, //
42
      OpenCycleMap = 38,  //
43
 
44
      YahooMap = 64,
45
      YahooSatellite = 128,
46
      YahooLabels = 256,
47
      YahooHybrid = 333,
48
 
49
      BingMap = 444,
50
      BingMap_New = 455,
51
      BingSatellite = 555,
52
      BingHybrid = 666,
53
 
54
      ArcGIS_StreetMap_World_2D = 777,
55
      ArcGIS_Imagery_World_2D = 788,
56
      ArcGIS_ShadedRelief_World_2D = 799,
57
      ArcGIS_Topo_US_2D = 811,
58
 
59
      #region -- use these numbers to clean up old stuff --
60
      //ArcGIS_MapsLT_Map_Old= 877,
61
      //ArcGIS_MapsLT_OrtoFoto_Old = 888,
62
      //ArcGIS_MapsLT_Map_Labels_Old = 890,
63
      //ArcGIS_MapsLT_Map_Hybrid_Old = 899, 
64
      //ArcGIS_MapsLT_Map=977,
65
      //ArcGIS_MapsLT_OrtoFoto=988,
66
      //ArcGIS_MapsLT_Map_Labels=990,
67
      //ArcGIS_MapsLT_Map_Hybrid=999,
68
      //ArcGIS_MapsLT_Map=978,
69
      //ArcGIS_MapsLT_OrtoFoto=989,
70
      //ArcGIS_MapsLT_Map_Labels=991,
71
      //ArcGIS_MapsLT_Map_Hybrid=998, 
72
      #endregion
73
 
74
      ArcGIS_World_Physical_Map = 822,
75
      ArcGIS_World_Shaded_Relief = 833,
76
      ArcGIS_World_Street_Map = 844,
77
      ArcGIS_World_Terrain_Base = 855,
78
      ArcGIS_World_Topo_Map = 866,
79
 
80
      MapsLT_Map = 1000,
81
      MapsLT_OrtoFoto = 1001,
82
      MapsLT_Map_Labels = 1002,
83
      MapsLT_Map_Hybrid = 1003,
84
      MapsLT_Map_2_5D = 1004,       // 2.5D only for zoom 10 & 11
85
      MapsLT_OrtoFoto_2010 = 1101,  // new but only partial coverage
86
      MapsLT_Map_Hybrid_2010 = 1103, // --..--
87
 
88
      KarteLV_Map = 1500,
89
 
90
      PergoTurkeyMap = 2001,
91
      SigPacSpainMap = 3001,
92
 
93
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
94
      GoogleMapKorea = 4001,
95
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
96
      GoogleSatelliteKorea = 4002,
97
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
98
      GoogleLabelsKorea = 4003,
99
      [Obsolete("check http://greatmaps.codeplex.com/discussions/252531", false)]
100
      GoogleHybridKorea = 4005,
101
 
102
      YandexMapRu = 5000,
103
      YandexMapRuSatellite = 5001,
104
      YandexMapRuLabels = 5002,
105
      YandexMapRuHybrid = 5003,
106
 
107
      MapBenderWMS = 6000,
108
 
109
      MapyCZ_Map = 7000,
110
      MapyCZ_MapTurist = 7001,
111
      MapyCZ_Satellite = 7002,
112
      MapyCZ_Labels = 7003,
113
      MapyCZ_Hybrid = 7004,
114
      MapyCZ_History = 7005,
115
      MapyCZ_HistoryHybrid = 7006,
116
 
117
      NearMap = 8000,
118
      NearMapSatellite = 8001,
119
      NearMapLabels = 8002,
120
      NearMapHybrid = 8003,
121
 
122
      OviMap = 9000,
123
      OviMapSatellite = 9001,
124
      OviMapHybrid = 9002,
125
      OviMapTerrain = 9003,
126
   }
127
}