Exemplo n.º 1
0
        public reverseZoekForm()
        {
            view = ArcMap.Document.ActiveView;
            map  = view.FocusMap;

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

            InitializeComponent();
        }
Exemplo n.º 2
0
        public reverseZoekForm()
        {
            view = ArcMap.Document.ActiveView;
            map = view.FocusMap;

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

            InitializeComponent();
        }
Exemplo n.º 3
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();
        }
Exemplo n.º 4
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();
        }
Exemplo n.º 5
0
        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();
        }