public static void GetEpsg3857MapCoordinates(
double latitudeAsDecimalDegrees,
double longitudeAsDecimalDegrees,
double west,
double north,
double east,
double south,
bool isBoundingBoxInDecimalDegrees,
int width,
int height,
out double x,
out double y
)
Public Shared Sub GetEpsg3857MapCoordinates (
latitudeAsDecimalDegrees As Double,
longitudeAsDecimalDegrees As Double,
west As Double,
north As Double,
east As Double,
south As Double,
isBoundingBoxInDecimalDegrees As Boolean,
width As Integer,
height As Integer,
<OutAttribute> ByRef x As Double,
<OutAttribute> ByRef y As Double
)
Dim latitudeAsDecimalDegrees As Double
Dim longitudeAsDecimalDegrees As Double
Dim west As Double
Dim north As Double
Dim east As Double
Dim south As Double
Dim isBoundingBoxInDecimalDegrees As Boolean
Dim width As Integer
Dim height As Integer
Dim x As Double
Dim y As Double
BaseGpsReceiver.GetEpsg3857MapCoordinates(latitudeAsDecimalDegrees,
longitudeAsDecimalDegrees, west,
north, east, south, isBoundingBoxInDecimalDegrees,
width, height, x, y)
public:
static void GetEpsg3857MapCoordinates(
double latitudeAsDecimalDegrees,
double longitudeAsDecimalDegrees,
double west,
double north,
double east,
double south,
bool isBoundingBoxInDecimalDegrees,
int width,
int height,
[OutAttribute] double% x,
[OutAttribute] double% y
)
static member GetEpsg3857MapCoordinates :
latitudeAsDecimalDegrees : float *
longitudeAsDecimalDegrees : float *
west : float *
north : float *
east : float *
south : float *
isBoundingBoxInDecimalDegrees : bool *
width : int *
height : int *
x : float byref *
y : float byref -> unit public static void GetEpsg3857MapCoordinates(
double latitudeAsDecimalDegrees,
double longitudeAsDecimalDegrees,
double west,
double north,
double east,
double south,
boolean isBoundingBoxInDecimalDegrees,
int width,
int height,
/** @attribute OutAttribute */ /** @ref */double x,
/** @attribute OutAttribute */ /** @ref */double y
)
public static function GetEpsg3857MapCoordinates(
latitudeAsDecimalDegrees : double,
longitudeAsDecimalDegrees : double,
west : double,
north : double,
east : double,
south : double,
isBoundingBoxInDecimalDegrees : boolean,
width : int,
height : int,
x : double,
y : double
)
ZylSoft.Gps.BaseGpsReceiver.GetEpsg3857MapCoordinates = function(latitudeAsDecimalDegrees, longitudeAsDecimalDegrees, west, north, east, south, isBoundingBoxInDecimalDegrees, width, height, x, y);
STATIC METHOD GetEpsg3857MapCoordinates(
latitudeAsDecimalDegrees AS REAL8,
longitudeAsDecimalDegrees AS REAL8,
west AS REAL8,
north AS REAL8,
east AS REAL8,
south AS REAL8,
isBoundingBoxInDecimalDegrees AS LOGIC,
width AS LONG,
height AS LONG,
x OUT REAL8,
y OUT REAL8
) AS VOID
No code example is currently available or this language may not be supported.