public static void GetEpsg3857MapCoordinates(
double latitudeAsDecimalDegrees,
double longitudeAsDecimalDegrees,
double west,
double north,
double east,
double south,
bool isBoundingBoxInDecimalDegrees,
double width,
double 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 Double,
height As Double,
<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 Double
Dim height As Double
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,
double width,
double 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 : float *
height : float *
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,
double width,
double 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 : double,
height : double,
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 REAL8,
height AS REAL8,
x OUT REAL8,
y OUT REAL8
) AS VOID
No code example is currently available or this language may not be supported.