Example #1
0
 public LatLngBounds()
 {
     NorthEast = new LatLng();
     SouthWest = new LatLng();
 }
Example #2
0
 public static LatLngBounds BoundsOf(LatLng point)
 {
     return(new LatLngBounds {
         NorthEast = point, SouthWest = point
     });
 }