/// <summary> /// Searches for the closest point on the routing network that's routable for the given profiles. /// </summary> public static RouterPoint Resolve(this RouterBase router, IProfileInstance profile, float latitude, float longitude, float searchDistanceInMeter = Constants.SearchDistanceInMeter) { return(router.Resolve(new IProfileInstance[] { profile }, latitude, longitude, searchDistanceInMeter)); }