public GeoCoder(IProvidersBinder binder) : base()
        {
            List <IGeoProvider> providerList = null;

            providerList = binder.Load();
            foreach (var item in providerList)
            {
                this.Add(item);
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Charge un geocoder
 /// </summary>
 /// <param name="binder">Binder des géo-providers</param>
 /// <returns></returns>
 public static IGeoCoder Prepare(IProvidersBinder binder)
 {
     return(new GeoCoder(binder));
 }