private void InitTools()
 {
     AddLayersTool     = new AddLayersTool(AxMap, this);
     EditingTool       = new EditingTool(AxMap, this);
     LayerHandlingTool = new LayerHandlingTool(AxMap, this);
     SelectObjectTool  = new SelectObjectTool(AxMap, this);
     ExportImportTool  = new ExportImportTool(AxMap, this);
     PrintTool         = new PrintTool(AxMap, this);
 }
 /// AddLayersTools Methods
 public bool AddWMSLayer(string baseUrl, string layers, string name, Extents extents, int Epsg, string Format)
 {
     return(AddLayersTool.AddWMSLayer(baseUrl, layers, name, extents, Epsg, Format));
 }
 public bool AddProjectLayers(int Project)
 {
     return(AddLayersTool.AddProjectLayers(Project));
 }
 public bool Redraw(bool reloadLayers = false)
 {
     return(AddLayersTool.Redraw(reloadLayers));
 }
 public bool AddProjectLayer(ResTBPostGISLayer resTBPostGISLayer)
 {
     return(AddLayersTool.AddProjectLayer(resTBPostGISLayer));
 }
 public bool AddProjectLayer(int Project, ResTBPostGISType resTBPostGISType)
 {
     return(AddLayersTool.AddProjectLayer(Project, resTBPostGISType));
 }
 public bool AddRasterLayer(string fileLocation, string layerName, bool autoReproject = true, bool overwriteExistingReprojectedFiles = false)
 {
     return(AddLayersTool.AddRasterLayer(fileLocation, layerName, autoReproject, overwriteExistingReprojectedFiles));
 }
 public bool IsRasterGoogleMercator(string fileLocation)
 {
     return(AddLayersTool.IsRasterGoogleMercator(fileLocation));
 }
 public bool AddSHPLayer()
 {
     return(AddLayersTool.AddSHPLayer());
 }