Hello,
I just installed the latest development build (6.0.366) and noticed a change in ManagedProj4Projection object.
I’m using following code to convert coordinates from meters to degrees while on “virtual” world.
For example, if e.WorldCoordinate = {-36609804.7468389,-9862139.10886822,0} , the result in a new dll is {X: -180.0000; Y: -65.9462}, but with an old dll (6.0.0.267) I’m getting {X: 31.1285; Y: -65.9462}
m_DefaultProjection = new ManagedProj4Projection();
m_DefaultProjection.InternalProjectionParametersString = ManagedProj4Projection.GetEpsgParametersString(4326);
m_DefaultProjection.ExternalProjectionParametersString = ManagedProj4Projection.GetSphericalMercatorParametersString();
m_DefaultProjection.Open();
m_DefaultProjection.ConvertToInternalProjection(e.WorldCoordinate.X, e.WorldCoordinate.Y)
Inna