Hi,
There are some map events like TrackLineDraw, TrackCircleDraw , SelectMapShapes etc in Map Suite 2.0, can't find them in Map Suite 3.0. Are they not supported any more?
When the mouse moves on the map, I want to display the world coordinates at the status bar, how to convert the screen coordinates to world coordinates?
In ver 2.0, I created following class to convert the Geodetic projection coordinates to Mercator projection, how to do this in version 3.0?
Class GeodeticToMercatorImplements IProjection '''
X-coordinate
'''
Y-coordinate
''' <returns></returns>After transformation coordinate
Public Function ProjectPoint(ByVal X As Double, ByVal Y As Double) As PointR Implements IProjection.ProjectPoint' Create a MollweidProj.
Dim MercatorProj As MercatorProj = New MercatorProj()Dim Easting As Double = 0Dim Northing As Double = 0' Convert.
MercatorProj.ConvertGeodeticToMercator(Y, X, Easting, Northing)
ProjectPoint =
End
New PointR(Easting, Northing)End Function Class
Public