Hi,
I have a small issue in displaying mouse coordinates in my Thinkgeo Web edition application
We have already a featuere “MouseCoordinate” and its working fine with given code.
wfMap.MapTools.MouseCoordinate.MouseCoordinateType = MouseCoordinateType.LongitudeLatitude;
wfMap.MapTools.MouseCoordinate.Enabled = true;
But MouseCoordinate is displaying in some projection shown in below pic(Top right Corner).
But I wanted to display it like normal lat long format like 10,10
And here i am using Mercator projection
Proj4Projection _proj = new Proj4Projection();
_proj.InternalProjectionParametersString = Proj4Projection.GetEpsgParametersString(4326);
_proj.ExternalProjectionParametersString = Proj4Projection.GetEsriParametersString(54004);
Please suggest me how to convert or resolve this…
Thanks,
Ashok