Ejemplo n.º 1
0
 public GeoRect(GeoPoint southWest, double width, double height)
     : this(southWest.Longitude, southWest.Latitude, width, height)
 {
 }
Ejemplo n.º 2
0
 public static GeoLocation ToGeoLocation(this GeoPoint geoPoint)
 {
     return(new GeoLocation(geoPoint.ToPoint()));
 }
Ejemplo n.º 3
0
 public GeoVector(GeoPoint geoPoint)
     : this(geoPoint.Longitude, geoPoint.Latitude)
 {
 }
Ejemplo n.º 4
0
 public GeoPathLocation(GeoPoint geoPoint) : base(geoPoint.ToPoint())
 {
     Bearing  = 0;
     Progress = 0;
     Distance = 0;
 }