public reverseZoekForm()
        {
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

            gpExtension   = geopunt4arcgisExtension.getGeopuntExtension();
            reverseFC     = gpExtension.reverseLayer;
            adresLocation = new dataHandler.adresLocation(adresCallback, timeout: gpExtension.timeout);

            InitializeComponent();
        }
        public reverseZoekForm()
        {
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            reverseFC = gpExtension.reverseLayer;
            adresLocation = new dataHandler.adresLocation(adresCallback, timeout: gpExtension.timeout);

            InitializeComponent();
        }
Example #3
0
        public catalogForm()
        {
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

            wgs = geopuntHelper.wgs84;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            InitializeComponent();
            initGui();
        }
Example #4
0
        public catalogForm()
        {
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

            wgs = geopuntHelper.wgs84;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            InitializeComponent();
            initGui();
        }
Example #5
0
 private void initGui()
 {
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
     try
     {
         maxRowCsvNum.Value = (decimal)gpExtension.csvMaxRows;
         timeOutnum.Value = (decimal)(gpExtension.timeout / 1000);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + " : " + ex.StackTrace);
     }
 }
 private void initGui()
 {
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
     try
     {
         maxRowCsvNum.Value = (decimal)gpExtension.csvMaxRows;
         timeOutnum.Value   = (decimal)(gpExtension.timeout / 1000);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + " : " + ex.StackTrace);
     }
 }
Example #7
0
        public gipodForm()
        {
            //globals
            view = ArcMap.Document.ActiveView;

            wgs = geopuntHelper.wgs84;
            lam72 = geopuntHelper.lam72;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            gipod = new dataHandler.gipod(timeout: gpExtension.timeout);

            InitializeComponent();
            // set the rest of the GUI
            initGUI();
        }
Example #8
0
        public gipodForm()
        {
            //globals
            view = ArcMap.Document.ActiveView;

            wgs   = geopuntHelper.wgs84;
            lam72 = geopuntHelper.lam72;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            gipod       = new dataHandler.gipod(timeout: gpExtension.timeout);

            InitializeComponent();
            // set the rest of the GUI
            initGUI();
        }
Example #9
0
        public AboutGeopunt4arcgisForm()
        {
            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            InitializeComponent();
            this.Text = String.Format("About {0}", ThisAddIn.Name);
            this.labelProductName.Text = String.Format("Naam: {0}", ThisAddIn.Name);
            this.labelVersion.Text = String.Format("Versie: {0} van {1}", ThisAddIn.Version, ThisAddIn.Date);
            this.labelAuthor.Text = String.Format("Auteur: {0}", ThisAddIn.Author);
            this.labelCompanyName.Text = String.Format("In opdracht van: {0}", ThisAddIn.Company);
            //string rootFolder = Path.GetDirectoryName(this.GetType().Assembly.Location);
            //htmlLocation = Path.Combine( rootFolder, "Resources/about.html");

            descriptionWebBox.DocumentText = getHtml();
        }
Example #10
0
        public AboutGeopunt4arcgisForm()
        {
            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            InitializeComponent();
            this.Text = String.Format("About {0}", ThisAddIn.Name);
            this.labelProductName.Text = String.Format("Naam: {0}", ThisAddIn.Name);
            this.labelVersion.Text     = String.Format("Versie: {0} van {1}", ThisAddIn.Version, ThisAddIn.Date);
            this.labelAuthor.Text      = String.Format("Auteur: {0}", ThisAddIn.Author);
            this.labelCompanyName.Text = String.Format("In opdracht van: {0}", ThisAddIn.Company);
            //string rootFolder = Path.GetDirectoryName(this.GetType().Assembly.Location);
            //htmlLocation = Path.Combine( rootFolder, "Resources/about.html");

            descriptionWebBox.DocumentText = getHtml();
        }
Example #11
0
        public capakeyForm()
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

            wgs = geopuntHelper.wgs84;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            capakey = new dataHandler.capakey(timeout: gpExtension.timeout);

            InitializeComponent();

            initGui();
        }
Example #12
0
        public capakeyForm()
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

            wgs = geopuntHelper.wgs84;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            capakey = new dataHandler.capakey(timeout: gpExtension.timeout);

            InitializeComponent();

            initGui();
        }
Example #13
0
        public zoekAdresForm()
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

            wgs = geopuntHelper.wgs84;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            adresFC = gpExtension.adresLayer;

            //dataHandlers
            adresSuggestion = new dataHandler.adresSuggestion(sugCallback, timeout: gpExtension.timeout);
            adresLocation = new dataHandler.adresLocation(timeout: gpExtension.timeout);

            //init UI
            InitializeComponent();
        }
Example #14
0
        public zoekAdresForm()
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

            wgs = geopuntHelper.wgs84;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            adresFC     = gpExtension.adresLayer;

            //dataHandlers
            adresSuggestion = new dataHandler.adresSuggestion(sugCallback, timeout: gpExtension.timeout);
            adresLocation   = new dataHandler.adresLocation(timeout: gpExtension.timeout);

            //init UI
            InitializeComponent();
        }
Example #15
0
        public poiSearchForm()
        {
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;
            Type factoryType = Type.GetTypeFromProgID("esriGeometry.SpatialReferenceEnvironment");
            System.Object obj = Activator.CreateInstance(factoryType);
            spatialReferenceFactory = obj as ISpatialReferenceFactory3;

            wgs = spatialReferenceFactory.CreateGeographicCoordinateSystem(4326);

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            poiDH = new dataHandler.poi(timeout: gpExtension.timeout);

            graphics = new List<IElement>();

            InitializeComponent();
            initGui();
        }
Example #16
0
        public elevationForm()
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

            lam72 = geopuntHelper.lam72;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            lineFC = gpExtension.profileLineLayer;
            pointsFC = gpExtension.profilePointsLayer;
            dhm = new dataHandler.dhm(timeout: gpExtension.timeout);

            ESRI.ArcGIS.Framework.ICommandBars commandBars = ArcMap.Application.Document.CommandBars;
            UID toolID = new UIDClass();
            toolID.Value = ThisAddIn.IDs.geopuntElevationTool;
            mouseCmd = commandBars.Find(toolID, false, false);

            InitializeComponent();
            initGui();
        }
Example #17
0
        public elevationForm()
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

            lam72 = geopuntHelper.lam72;

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
            lineFC      = gpExtension.profileLineLayer;
            pointsFC    = gpExtension.profilePointsLayer;
            dhm         = new dataHandler.dhm(timeout: gpExtension.timeout);

            ESRI.ArcGIS.Framework.ICommandBars commandBars = ArcMap.Application.Document.CommandBars;
            UID toolID = new UIDClass();

            toolID.Value = ThisAddIn.IDs.geopuntElevationTool;
            mouseCmd     = commandBars.Find(toolID, false, false);

            InitializeComponent();
            initGui();
        }
        public batchGeocodeForm( )
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

            Type factoryType = Type.GetTypeFromProgID("esriGeometry.SpatialReferenceEnvironment");
            System.Object obj = Activator.CreateInstance(factoryType);
            spatialReferenceFactory = obj as ISpatialReferenceFactory3;

            lam72 = spatialReferenceFactory.CreateProjectedCoordinateSystem(31370);

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            loc = new dataHandler.adresLocation( timeout: gpExtension.timeout);
            sug = new dataHandler.adresSuggestion( timeout: gpExtension.timeout);

            graphics = new List<IElement>();

            InitializeComponent();

            initGui();
        }
        public batchGeocodeForm( )
        {
            //set global objects
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

            Type factoryType = Type.GetTypeFromProgID("esriGeometry.SpatialReferenceEnvironment");

            System.Object obj = Activator.CreateInstance(factoryType);
            spatialReferenceFactory = obj as ISpatialReferenceFactory3;

            lam72 = spatialReferenceFactory.CreateProjectedCoordinateSystem(31370);

            gpExtension = geopunt4arcgisExtension.getGeopuntExtension();

            loc = new dataHandler.adresLocation(timeout: gpExtension.timeout);
            sug = new dataHandler.adresSuggestion(timeout: gpExtension.timeout);

            graphics = new List <IElement>();

            InitializeComponent();

            initGui();
        }
 public geopunt4arcgisExtension()
 {
     gpExtension = this;
     loadSettings();
 }
 public geopunt4arcgisExtension()
 {
     gpExtension = this;
     loadSettings();
 }
 public geopuntAddressCmd()
 {
     view        = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntMetaCatalogCmd()
 {
     view        = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntBatchGeocodingTool()
 {
     view = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
Example #25
0
 public geopuntElevationTool()
 {
     view        = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntCapakeyCmd()
 {
     view = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntSettingsCmd()
 {
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
Example #28
0
 public aboutCmd()
 {
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntBatchGeocodingCmd()
 {
     view        = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
Example #30
0
 public aboutCmd()
 {
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntReverseTool()
 {
     view = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntSettingsCmd()
 {
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }
 public geopuntMetaCatalogCmd()
 {
     view = ArcMap.Document.ActiveView;
     gpExtension = geopunt4arcgisExtension.getGeopuntExtension();
 }