Files @ 6b1dee8bd7ef
Branch filter:

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

mkanning@CL-ENS241-10.cedarville.edu
fixed some mapping bugs and found converter for GPS

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,
   }
}