Files @ 65c134a3d619
Branch filter:

Location: seniordesign-ui/GMap.NET.Core/GMap.NET/RenderMode.cs

mkanning@CL-ENS241-10.cedarville.edu
Initial import of mapping source (huge commit)

namespace GMap.NET
{
   /// <summary>
   /// types of map rendering
   /// </summary>
   public enum RenderMode
   {
      /// <summary>
      /// gdi+ should work anywhere on Windows Forms
      /// </summary>
      GDI_PLUS,

      /// <summary>
      /// only on Windows Presentation Foundation
      /// </summary>
      WPF,
   }
}