Files @ bdc2be1924e8
Branch filter:

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

mkanning@CL-ENS241-10.cedarville.edu
Fixed some bugs with the markers used for tracking balloon and creating routes

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