44 lines
687 B
C#
44 lines
687 B
C#
|
namespace HL_FristAidPlatform_RealTimeVideo
|
|||
|
{
|
|||
|
public class MyLngLatPoint
|
|||
|
{
|
|||
|
private double _x;
|
|||
|
|
|||
|
private double _y;
|
|||
|
|
|||
|
public double X
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return _x;
|
|||
|
}
|
|||
|
set
|
|||
|
{
|
|||
|
_x = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public double Y
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return _y;
|
|||
|
}
|
|||
|
set
|
|||
|
{
|
|||
|
_y = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public MyLngLatPoint()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public MyLngLatPoint(double x, double y)
|
|||
|
{
|
|||
|
_x = x;
|
|||
|
_y = y;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|