/// <summary>
 /// Retrieves the desired Map Provider that is specified within the applications Web.Config.
 /// </summary>
 /// <param name="helper"></param>
 /// <returns>An instance if IMap to use to render the map.</returns>
 public static IMap DefaultMap(this AjaxHelper helper)
 {
     return(DefaultMap(helper, "D" + GuidUtils.NewShortGuid()));
 }
 public static GoogleMap GoogleMap(this AjaxHelper helper)
 {
     return(GoogleMap(helper, "G" + GuidUtils.NewShortGuid()));
 }
Beispiel #3
0
 public static BingMap BingMap(this AjaxHelper helper)
 {
     return(BingMap(helper, "B" + GuidUtils.NewShortGuid()));
 }