Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2498 - 1

2
namespace GMap.NET
3
{
4
   /// <summary>
5
   /// routing interface
6
   /// </summary>
7
   public interface RoutingProvider
8
   {
9
      /// <summary>
10
      /// get route between two points
11
      /// </summary>
12
      MapRoute GetRoute(PointLatLng start, PointLatLng end, bool avoidHighways, bool walkingMode, int Zoom);
13
 
14
      /// <summary>
15
      /// get route between two points
16
      /// </summary>
17
      MapRoute GetRoute(string start, string end, bool avoidHighways, bool walkingMode, int Zoom);
18
   }
19
}