Example #1
0
        /// <summary>
        /// Calculates isochrones for the given profile based on the given limits.
        /// </summary>
        public static List <LocalGeo.Polygon> CalculateIsochrones(this RouterBase router, Profile profile, Coordinate origin, List <float> limits, int zoom = 16)
        {
            var routerOrigin = router.Resolve(profile, origin);

            return(router.CalculateIsochrones(profile, routerOrigin, limits, zoom));
        }
Example #2
0
 /// <summary>
 /// Calculates isochrones for the given profile based on the given limits.
 /// </summary>
 public static List <LocalGeo.Polygon> CalculateIsochrones(this RouterBase router, Profile profile, RouterPoint origin, List <float> limits, int zoom = 16)
 {
     return(router.CalculateIsochrones(profile, origin, limits, zoom, CancellationToken.None));
 }