public final class

LatLngBounds

extends Object
implements Parcelable
java.lang.Object
   ↳ com.google.android.gms.maps.model.LatLngBounds

Class Overview

An immutable class representing a latitude/longitude aligned rectangle.

Summary

Nested Classes
class LatLngBounds.Builder This is a builder that is able to create a minimum bound based on a set of LatLng points. 
Constants
String NULL
[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final LatLngBoundsCreator CREATOR
public final LatLng northeast Northeast corner of the bound.
public final LatLng southwest Southwest corner of the bound.
Public Constructors
LatLngBounds(LatLng southwest, LatLng northeast)
Creates a new bounds based on a southwest and a northeast corner.
Public Methods
static LatLngBounds.Builder builder()
Creates a new builder.
boolean contains(LatLng point)
Returns whether this contains the given LatLng.
int describeContents()
boolean equals(Object o)
int hashCode()
LatLngBounds including(LatLng point)
Returns a new LatLngBounds that extends this LatLngBounds to include the given LatLng.
String toString()
void writeToParcel(Parcel out, int flags)
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Constants

public static final String NULL

Constant Value: "SAFE_PARCELABLE_NULL_STRING"

Fields

public static final LatLngBoundsCreator CREATOR

public final LatLng northeast

Northeast corner of the bound.

public final LatLng southwest

Southwest corner of the bound.

Public Constructors

public LatLngBounds (LatLng southwest, LatLng northeast)

Creates a new bounds based on a southwest and a northeast corner.

The bounds conceptually includes all points where:

  • the latitude is in the range [northeast.latitude, southwest.latitude];
  • the longitude is in the range [southwest.longtitude, northeast.longitude] if southwest.longtitude ≤ northeast.longitude; and
  • the longitude is in the range [southwest.longitude, 180) ∪ [-180, northeast.longitude] if southwest.longtitude > northeast.longitude.

Parameters
southwest southwest corner
northeast northeast corner
Throws
IllegalArgumentException if the latitude of the northeast corner is below the latitude of the southwest corner.

Public Methods

public static LatLngBounds.Builder builder ()

Creates a new builder.

public boolean contains (LatLng point)

Returns whether this contains the given LatLng.

Parameters
point the LatLng to test
Returns
  • true if this contains the given point; false if not.

public int describeContents ()

public boolean equals (Object o)

public int hashCode ()

public LatLngBounds including (LatLng point)

Returns a new LatLngBounds that extends this LatLngBounds to include the given LatLng. This will return the smallest LatLngBounds that contains both this and the extra point.

In particular, it will consider extending the bounds both in the eastward and westward directions (one of which may wrap around the world) and choose the smaller of the two. In the case that both directions result in a LatLngBounds of the same size, this will extend it in the eastward direction.

Parameters
point a LatLng to be included in the new bounds
Returns

public String toString ()

public void writeToParcel (Parcel out, int flags)