Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2498 - 1

2
namespace GMap.NET
3
{
4
   /// <summary>
5
   /// map zooming type
6
   /// </summary>
7
   public enum MouseWheelZoomType
8
   {
9
      /// <summary>
10
      /// zooms map to current mouse position and makes it map center
11
      /// </summary>
12
      MousePositionAndCenter,
13
 
14
      /// <summary>
15
      /// zooms to current mouse position, but doesn't make it map center,
16
      /// google/bing style ;}
17
      /// </summary>
18
      MousePositionWithoutCenter,
19
 
20
      /// <summary>
21
      /// zooms map to current view center
22
      /// </summary>
23
      ViewCenter,        
24
   }
25
}