/// <summary> /// Converts a single point location into an equivalent geographic coordinate /// </summary> /// <param name="position">The client coordinate relative to the map control</param> /// <returns>The geographic ICoordinate interface</returns> public Coordinate PixelToProj(Point position) { return _gdiMapFrame.PixelToProj(position); }
/// <summary> /// Converts a single point location into an equivalent geographic coordinate /// </summary> /// <param name="position">The client coordinate relative to the map control</param> /// <returns>The geographic ICoordinate interface</returns> public Coordinate PixelToProj(System.Drawing.Point position) { return(_gdiMapFrame.PixelToProj(position)); }