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