I am using mapsuite 7. Now I want to use the DEM file with it. Currently I have successfully
opened the DEM file using the GdalRasterLayer and I am able to display it on
the map control. Portion of the code is as following :-
winformsMap1.MapUnit = GeographyUnit.DecimalDegree;GdalRasterLayer DEMlayer = new GdalRasterLayer(@"FilePath\DemFile.dem");LayerOverlay layerOverlay = new LayerOverlay();layerOverlay.Layers.Add(DEMlayer);winformsMap1.Overlays.Add(layerOverlay);winformsMap1.Refresh();
Now please guide me
that how I can get the height information with the mouse-move event?.
Hoping for proper support from you people.
Thanks
Atif Ahmed