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

Syntax

Visual Basic
Public Shared Sub LLToPixel ( _
	latLong As PointD, _
	zoomLevel As Integer, _
	<OutAttribute> ByRef x As Long, _
	<OutAttribute> ByRef y As Long, _
	tileSize As Integer _
)
C#
public static void LLToPixel(
	PointD latLong,
	int zoomLevel,
	out long x,
	out long y,
	int tileSize
)
Visual C++
public:
static void LLToPixel(
	PointD latLong, 
	int zoomLevel, 
	[OutAttribute] long long% x, 
	[OutAttribute] long long% y, 
	int tileSize
)
JavaScript
EGIS.ShapeFileLib.TileUtil.llToPixel = function(latLong, zoomLevel, x, y, tileSize);

Parameters

latLong
Type: EGIS.ShapeFileLib..::..PointD
zoomLevel
Type: System..::..Int32
x
Type: System..::..Int64%
y
Type: System..::..Int64%
tileSize
Type: System..::..Int32

See Also