Hello Thinkgeo,
I use the following method to convert decimal degree to meters on bing map. But I found after converting, the line length is different. Length1 is 10464 meters and after converting, Length2 is 13252 meters. I compared it to google earth, I found Length 1 is correct. Any idea about this? I also attached the kml file which is the line shape is converting.
public Proj4Projection Prj4Meters()
{
Proj4Projection proj4 = new Proj4Projection();
proj4.InternalProjectionParametersString = Proj4Projection.GetDecimalDegreesParametersString();
proj4.ExternalProjectionParametersString = Proj4Projection.GetBingMapParametersString(); // It works for Bing map, for Google map please use the other one
proj4.Open();
return proj4;
}
Thanks
Mindoc.zip (1.5 MB)