Mapsui.Viewport.WorldToScreen C# (CSharp) Method

WorldToScreen() public method

public WorldToScreen ( Point worldPosition ) : Point
worldPosition Point
return Point
        public Point WorldToScreen(Point worldPosition)
        {
            return WorldToScreen(worldPosition.X, worldPosition.Y);
        }

Same methods

Viewport::WorldToScreen ( double worldX, double worldY ) : Point

Usage Example

Ejemplo n.º 1
0
 public Point WorldToScreen(double x, double y)
 {
     return(_viewport.WorldToScreen(x, y));
 }
All Usage Examples Of Mapsui.Viewport::WorldToScreen