namespace GMap.NET { using System.Collections.Generic; /// /// directions interface /// interface DirectionsProvider { DirectionsStatusCode GetDirections(out GDirections direction, PointLatLng start, PointLatLng end, bool avoidHighways, bool avoidTolls, bool walkingMode, bool sensor, bool metric); DirectionsStatusCode GetDirections(out GDirections direction, string start, string end, bool avoidHighways, bool avoidTolls, bool walkingMode, bool sensor, bool metric); /// /// service may provide more than one route alternative in the response /// /// /// /// /// /// /// /// /// /// IEnumerable GetDirections(out DirectionsStatusCode status, string start, string end, bool avoidHighways, bool avoidTolls, bool walkingMode, bool sensor, bool metric); /// /// service may provide more than one route alternative in the response /// /// /// /// /// /// /// /// /// /// IEnumerable GetDirections(out DirectionsStatusCode status, PointLatLng start, PointLatLng end, bool avoidHighways, bool avoidTolls, bool walkingMode, bool sensor, bool metric); } }