Files @ f2c2ba4ef3d4
Branch filter:

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

mkanning@CL-ENS241-10.cedarville.edu
Removed unneeded code and verified use of functions. project is essentially
complete except for some live testing and cache testing/experiments

namespace GMap.NET
{
   /// <summary>
   /// tile access mode
   /// </summary>
   public enum AccessMode
   {
      /// <summary>
      /// access only server
      /// </summary>
      ServerOnly,

      /// <summary>
      /// access first server and caches localy
      /// </summary>
      ServerAndCache,

      /// <summary>
      /// access only cache
      /// </summary>
      CacheOnly,
   }
}