Interface for Point Conversion objects. Recommend using the functions that take and return Point2D objects.

interface IPointConversion {
    GeoToPixels(coord: Point2D): Point2D;
    PixelsToGeo(pixel: Point2D): Point2D;
}

Implemented by

Methods