Exemplo n.º 1
0
 public LatLngBounds(GeoCoordinates sw, GeoCoordinates ne)
 {
     this.SouthWest = sw;
     this.NorthEast = ne;
 }
Exemplo n.º 2
0
 public static bool Validate(GeoCoordinates latLng)
 {
     return(Validate(latLng.Latitude, latLng.Longitude));
 }