mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-22 13:57:28 +02:00
Version 3.0.255
This commit is contained in:
parent
db9c288584
commit
5a26bf273b
1495 changed files with 159465 additions and 5060 deletions
|
@ -6,14 +6,14 @@ namespace TINK.Model.Station
|
|||
{
|
||||
private const double PRECISSION_LATITUDE_LONGITUDE = 0.000000000000001;
|
||||
|
||||
public Position()
|
||||
public Position()
|
||||
{
|
||||
}
|
||||
|
||||
public Position(double p_dLatitude, double p_dLongitude)
|
||||
public Position(double latitude, double longitude)
|
||||
{
|
||||
Latitude = p_dLatitude;
|
||||
Longitude = p_dLongitude;
|
||||
Latitude = latitude;
|
||||
Longitude = longitude;
|
||||
}
|
||||
|
||||
public double Latitude { get; private set; }
|
||||
|
@ -35,7 +35,6 @@ namespace TINK.Model.Station
|
|||
|
||||
return Math.Abs(Latitude - l_oTarget.Latitude) < PRECISSION_LATITUDE_LONGITUDE
|
||||
&& Math.Abs(Longitude - l_oTarget.Longitude) < PRECISSION_LATITUDE_LONGITUDE;
|
||||
|
||||
}
|
||||
|
||||
public override int GetHashCode()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue