Beispiel #1
0
 /// <summary>
 /// Constructor makes thee link to the more fine grained GIS functions, interface injection
 /// </summary>
 /// <param name="gisOperations"></param>
 public GisCommonTasks(IGisOperations gisOperations, IMessageBoxCustom messageBoxCustom)
 {
     this.gisOperations = gisOperations;
     this.messageBoxCustom = messageBoxCustom;
 }
Beispiel #2
0
 /// <summary>
 /// Make the link to the more fine gis operations, intialise the Bingmap service
 /// </summary>
 /// <param name="gisOperations"></param>
 public GisRouting(IGisOperations gisOperations, IMessageBoxCustom messageBoxCustom)
 {
     this.gisOperations = gisOperations;
     routing = new Routing(BingMapKey);
     this.messageBoxCustom = messageBoxCustom;
 }