Returns a projected point to its Lat Long equivalent

Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Function ProjectionToLatLong ( _
	projPoint As PointD _
) As PointD
C#
public static PointD ProjectionToLatLong(
	PointD projPoint
)
Visual C++
public:
static PointD ProjectionToLatLong(
	PointD projPoint
)
JavaScript
EGIS.ShapeFileLib.ShapeFile.projectionToLatLong = function(projPoint);

Parameters

projPoint
Type: EGIS.ShapeFileLib..::..PointD

Return Value

Remarks

If UseMercatorProjection is true then returned point will be transformed to Lat Long.

If UseMercatorProjection is false then projPoint is returned

See Also