java.lang.Object |
↳ |
com.google.android.gms.maps.model.LatLngBounds.Builder |
Class Overview
This is a builder that is able to create a minimum bound based on a set of LatLng points.
Summary
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
LatLngBounds.Builder
()
Public Methods
Creates the LatLng bounds.
Throws |
IllegalStateException |
if no points have been included.
|
Includes this point for building of the bounds. The bounds will be extended in a minimum
way to include this point.
More precisely, it will consider extending the bounds both in the eastward and westward
directions (one of which may cross the antimeridian) 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. For example, adding points (0, -179) and (1, 179)
will create a bound crossing the 180 longitude.
Parameters |
point |
LatLng :
A LatLng to be included in the bounds. |