Files @ b6ca403cf7f8
Branch filter:

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

mkanning@CL-ENS241-10.cedarville.edu
recalculates humidity corectly

namespace GMap.NET
{
   /// <summary>
   /// routing interface
   /// </summary>
   public interface RoutingProvider
   {
      /// <summary>
      /// get route between two points
      /// </summary>
      MapRoute GetRoute(PointLatLng start, PointLatLng end, bool avoidHighways, bool walkingMode, int Zoom);

      /// <summary>
      /// get route between two points
      /// </summary>
      MapRoute GetRoute(string start, string end, bool avoidHighways, bool walkingMode, int Zoom);
   }
}